Implement Members: Do not generate 'header' keyword

#KT-18466 Fixed
This commit is contained in:
Alexey Sedunov
2017-07-04 16:09:20 +03:00
parent 26d6088c82
commit 216b28ec55
4 changed files with 49 additions and 12 deletions
+9
View File
@@ -0,0 +1,9 @@
// "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{
}