Files
kotlin/idea/testData/multiModuleQuickFix/implementMembersInImplClassNonImplInheritor/jvm/jvm.kt.after
2017-09-15 18:29:06 +03: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.
}
}