Files
kotlin-fork/idea/testData/multiModuleQuickFix/implementMembersInActualClassNoExpectMember/jvm/jvm.kt.after
T
2018-08-09 12:59:58 +03:00

12 lines
415 B
Plaintext
Vendored

// "Implement members" "true"
// ERROR: Class 'ExpImpl' is not abstract and does not implement abstract member public abstract actual fun first(): Unit defined in ExpInterface
actual interface ExpInterface {
actual fun first()
}
actual class ExpImpl : ExpInterface {
override fun first() {
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
}
}