blob: d9d6c9379899048b778e09a35dffb664c55771f3 [file] [log] [blame]
// "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("")
}