Files
kotlin-fork/idea/testData/quickfix/implement/doNotAddHeader.kt.after
T
2017-09-16 19:47:40 +03:00

13 lines
409 B
Plaintext
Vendored

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