e409c60780
FL-23390 ^KT-64168 Fixed
18 lines
347 B
Kotlin
Vendored
18 lines
347 B
Kotlin
Vendored
/**
|
|
* This class [Foo] is documented.
|
|
*/
|
|
class Foo {
|
|
/**
|
|
* This member function is documented
|
|
*/
|
|
fun someMemberFunction() {
|
|
|
|
}
|
|
|
|
/**
|
|
* This member property is documented.
|
|
* It will return the 'The Answer to the Ultimate Question of Life, The Universe, and Everything'
|
|
*/
|
|
val someMemberProperty = 42
|
|
}
|