ac8532ffce
#KT-6604 Fixed
11 lines
168 B
Kotlin
Vendored
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("")
|
|
} |