Files
kotlin-fork/idea/testData/quickfix/implement/doNotAddHeader.kt
T
2017-07-17 16:09:50 +03:00

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{
}