Files
kotlin-fork/native/objcexport-header-generator/testData/headers/classWithKDoc/Foo.kt
T
2024-01-08 15:25:19 +00:00

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
}