Files
kotlin-fork/idea/testData/quickfix/implement/doNotAddHeader.kt.after
T
2017-07-17 16:09:50 +03:00

12 lines
416 B
Plaintext
Vendored

// "Implement members" "true"
// WITH_RUNTIME
// ERROR: Header declaration 'InterfaceWithFuns' has no implementation in module light_idea_test_case for JVM
header interface InterfaceWithFuns {
fun funInInterface()
}
class ChildOfInterface : InterfaceWithFuns{
override fun funInInterface() {
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
}
}