Add test for KT-20007

This commit is contained in:
Mikhail Glukhikh
2017-10-02 17:17:44 +03:00
parent 4c456983eb
commit e47feaf0b8
3 changed files with 40 additions and 0 deletions
@@ -0,0 +1,14 @@
// "Implement members" "true"
// ENABLE_MULTIPLATFORM
// ERROR: Expected interface 'InterfaceWithVals' has no actual declaration in module light_idea_test_case for JVM
fun TODO(s: String): Nothing = null!!
expect interface InterfaceWithVals {
fun funInInterface()
val importantVal: Int
}
class <caret>ChildOfInterface : InterfaceWithVals{
}