aboutsummaryrefslogtreecommitdiff
path: root/core/testdata/format/linksInHeaders.kt
blob: 18efd34b260a8a71b04c6cf4bb732216e39eb957 (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
/**
 * Some class with really useless documentation.
 *
 * # Beer o'clock - time to go to the [Bar]
 *
 * ## But __is [it](isitbeeroclock.com)__ really?
 *
 * ### [Bar.hello] to the [Bar.world]!
 *
 * #### _Kotlin is amazing, [Bar.none]_
 *
 * ##### We need to go [Bar.deeper]
 *
 * ###### End of the [Bar.line] - we need to go back!
 */
class Bar {
    fun foo() {}
    fun hello() {}
    fun world() {}
    fun kotlin() {}
    fun none() {}
    fun deeper() {}
    fun line() {}
}