1 /** 2 * Some class with really useless documentation. 3 * 4 * # Beer o'clock - time to go to the [Bar] 5 * 6 * ## But __is [it](isitbeeroclock.com)__ really? 7 * 8 * ### [Bar.hello] to the [Bar.world]! 9 * 10 * #### _Kotlin is amazing, [Bar.none]_ 11 * 12 * ##### We need to go [Bar.deeper] 13 * 14 * ###### End of the [Bar.line] - we need to go back! 15 */ 16 class Bar { foonull17 fun foo() {} hellonull18 fun hello() {} worldnull19 fun world() {} kotlinnull20 fun kotlin() {} nonenull21 fun none() {} deepernull22 fun deeper() {} linenull23 fun line() {} 24 } 25