216b28ec55
#KT-18466 Fixed
9 lines
273 B
Kotlin
Vendored
9 lines
273 B
Kotlin
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 <caret>ChildOfInterface : InterfaceWithFuns{
|
|
} |