Files
kotlin-fork/j2k/testData/fileOrElement/docComments/primaryConstructorDoc.kt
T

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