Files
kotlin-fork/idea/testData/quickfix/initializeWithConstructorParameter/memberPropertyInClassNameClashInSecondaryConstructor.kt.after
T
2015-11-16 11:30:03 +03:00

14 lines
198 B
Plaintext
Vendored

// "Initialize with constructor parameter" "true"
open class A {
val n: Int
constructor(n: Int, n1: Int) {
this.n = n1
}
}
class B : A(1, 0)
fun test() {
val a = A(1, 0)
}