ac8532ffce
#KT-6604 Fixed
12 lines
162 B
Kotlin
Vendored
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)
|
|
} |