Files
kotlin-fork/idea/testData/multiModuleQuickFix/implementMembersInImplClassNonImplInheritor/jvm/jvm.kt.after
T
2017-09-08 15:38:14 +03:00

12 lines
264 B
Plaintext
Vendored

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