Files
kotlin-fork/idea/testData/quickfix/implement/hasImplementedInPrimaryConstructor2.kt
T
2020-04-01 12:24:27 +03:00

11 lines
188 B
Kotlin
Vendored

// "Implement members" "true"
// WITH_RUNTIME
abstract class B {
abstract val p: String?
abstract fun test()
}
<caret>class MyImpl2(
override val p: String? = null
) : B() {
}