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

10 lines
111 B
Plaintext
Vendored

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