blob: 46d35f003cfc04894617b94d7df494ea2c702db2 [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 <caret>ChildOfInterface : InterfaceWithFuns{
}