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

11 lines
176 B
Plaintext
Vendored

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