Files
kotlin-fork/idea/testData/quickfix/createFromUsage/createSecondaryConstructor/classWithoutBody.kt.after
T

9 lines
110 B
Plaintext
Vendored

// "Create secondary constructor" "true"
class A {
constructor(i: Int)
}
fun test() {
val a = A(1)
}