aboutsummaryrefslogtreecommitdiff
path: root/core/testdata/format/tokensInHeaders.kt
blob: df62b024f65ddbca212104a2d9316f576402c584 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
/**
 * Why did the token cross the road?
 *
 * # Because it was Beer o'clock @ [The.bar]
 *
 * ## But __waz *\[sic\]* [it](isitbeeroclock.com)__ really?
 *
 * ### [The.bar] has? [The.foo]est drinks ever!
 *
 * #### _[The.kotlinz] is [The.bestests], [Bar.none]_
 *
 * ##### So many lame code "puns" (in) [The.house]
 *
 * ###### End of the?? [Bar.line]! - we need to go back!
 */
class The {
    object Bar {
        fun none() {}
    }

    fun bar() {}
    fun foo() {}
    fun bestests() {}
    fun kotlinz() {}
    fun house() {}
    fun line() {}
}