blob: 6877b34b89327415911a0bb90aefebfeceee53da [file] [log] [blame]
// "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 implemented") //To change body of created functions use File | Settings | File Templates.
}
}