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

11 lines
168 B
Kotlin
Vendored

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