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

12 lines
162 B
Kotlin
Vendored

// "Initialize with constructor parameter" "true"
open class A {
<caret>val n: Int
constructor(n: Int)
}
class B : A(1)
fun test() {
val a = A(1)
}