13 lines
409 B
Plaintext
Vendored
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.
|
|
}
|
|
}
|