Files
kotlin-fork/idea/testData/multiModuleQuickFix/other/implementMembersInImplClassNonImplInheritor/jvm/jvm.kt.after
T
2019-08-27 17:26:08 +07:00

12 lines
268 B
Plaintext
Vendored

// "Implement members" "true"
// DISABLE-ERRORS
abstract actual class Bar {
abstract actual fun foo()
}
class X : Bar() {
override fun foo() {
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
}
}