blob: 3e2017d25ac163cc7db38766f7f63ba417d9436f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
/**
* An emphasised class.
*
* _This class [Bar] is awesome._
*
* _Even more awesomer is the function [Bar.foo]_
*
* _[Bar.hello] is also OK_
*/
class Bar {
fun foo() {}
fun hello() {}
}
|