216b28ec55
#KT-18466 Fixed
12 lines
416 B
Plaintext
Vendored
12 lines
416 B
Plaintext
Vendored
// "Implement members" "true"
|
|
// WITH_RUNTIME
|
|
// ERROR: Header declaration 'InterfaceWithFuns' has no implementation in module light_idea_test_case for JVM
|
|
header interface InterfaceWithFuns {
|
|
fun funInInterface()
|
|
}
|
|
|
|
class ChildOfInterface : InterfaceWithFuns{
|
|
override fun funInInterface() {
|
|
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
|
|
}
|
|
} |