4d9b19da82
#KT-18539 Fixed
21 lines
504 B
Plaintext
Vendored
21 lines
504 B
Plaintext
Vendored
// "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 ChildOfInterface : InterfaceWithVals{
|
|
override fun funInInterface() {
|
|
TODO("Not yet implemented")
|
|
}
|
|
|
|
override val importantVal: Int
|
|
get() = TODO("Not yet implemented")
|
|
}
|