aboutsummaryrefslogtreecommitdiff
path: root/plugins/javadoc8/testdata/javadoc/suppress.kt
blob: 90f6c131d853a88f738f06def2ba3b821c1b2eba (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
28
29
30
31
32
33
34
35
36
37
/**
 * @suppress
 */
class Some {

}


/**
 * @suppress
 * @author me
 * @see other
 */
class SomeAgain {

}

class Same {
    /**
     * @suppress
     */
    fun privateApi() {

    }

    /**
     * @suppress
     */
    val privateForSomeReason = ""
}

/**
 * @suppress
 */
interface Interface {

}