mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-12 00:21:32 +00:00
15 lines
353 B
Kotlin
Vendored
15 lines
353 B
Kotlin
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 <caret>ChildOfInterface : InterfaceWithVals{
|
|
}
|