Files
kotlin-fork/j2k/testData/fileOrElement/docComments/primaryConstructorDoc.new.kt
T
2019-04-03 11:23:29 +03:00

15 lines
228 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