• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /**
2  * @suppress
3  */
4 class Some {
5 
6 }
7 
8 
9 /**
10  * @suppress
11  * @author me
12  * @see other
13  */
14 class SomeAgain {
15 
16 }
17 
18 class Same {
19     /**
20      * @suppress
21      */
privateApinull22     fun privateApi() {
23 
24     }
25 
26     /**
27      * @suppress
28      */
29     val privateForSomeReason = ""
30 }
31 
32 /**
33  * @suppress
34  */
35 interface Interface {
36 
37 }