Files
kotlin-fork/idea/testData/quickfix/implement/doNotAddHeader.kt.after
T
2019-11-13 08:37:25 +09:00

16 lines
397 B
Plaintext
Vendored

// "Implement members" "true"
// ENABLE_MULTIPLATFORM
// ERROR: Expected interface 'InterfaceWithFuns' has no actual declaration in module light_idea_test_case for JVM
fun TODO(s: String): Nothing = null!!
expect interface InterfaceWithFuns {
fun funInInterface()
}
class ChildOfInterface : InterfaceWithFuns{
override fun funInInterface() {
TODO("Not yet implemented")
}
}