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

10 lines
183 B
Kotlin
Vendored

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