74ba0080b1
Try to report most mismatch errors on the 'impl' declaration. Only report a mismatch error on the 'header' declaration if no error would be otherwise reported on any 'impl' declaration in the compilation unit. Also render declaration kind in the message #KT-18447 In Progress
13 lines
417 B
Plaintext
Vendored
13 lines
417 B
Plaintext
Vendored
// "Implement members" "true"
|
|
// WITH_RUNTIME
|
|
// ERROR: 'header' interface '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.
|
|
}
|
|
}
|