15 lines
227 B
Kotlin
Vendored
15 lines
227 B
Kotlin
Vendored
internal class CtorComment {
|
|
var myA: String
|
|
|
|
/**
|
|
* This constructor is especially useful
|
|
*/
|
|
init {
|
|
myA = "str"
|
|
}
|
|
}
|
|
|
|
/**
|
|
* This constructor is especially useful
|
|
*/
|
|
internal class CtorComment2 |