Files
kotlin-fork/idea/testData/multiModuleQuickFix/other/implementMembersInImplClassNonImplInheritor/jvm/jvm.kt.after
T
2019-11-13 08:37:25 +09:00

12 lines
196 B
Plaintext
Vendored

// "Implement members" "true"
// DISABLE-ERRORS
abstract actual class Bar {
abstract actual fun foo()
}
class X : Bar() {
override fun foo() {
TODO("Not yet implemented")
}
}