ac8532ffce
#KT-6604 Fixed
11 lines
277 B
Kotlin
Vendored
11 lines
277 B
Kotlin
Vendored
// "class org.jetbrains.kotlin.idea.quickfix.InitializePropertyQuickFixFactory$InitializeWithConstructorParameter" "false"
|
|
// ERROR: Property must be initialized or be abstract
|
|
open class A(s: String) {
|
|
<caret>val n: Int
|
|
}
|
|
|
|
class B : A("")
|
|
|
|
fun test() {
|
|
val a = A("")
|
|
} |