mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-11 15:53:46 +00:00
13 lines
326 B
Kotlin
Vendored
13 lines
326 B
Kotlin
Vendored
// "Implement members" "true"
|
|
// ENABLE_MULTIPLATFORM
|
|
// ERROR: Expected interface 'InterfaceWithFuns' has no actual declaration in module light_idea_test_case for JVM
|
|
|
|
fun TODO(s: String): Nothing = null!!
|
|
|
|
expect interface InterfaceWithFuns {
|
|
fun funInInterface()
|
|
}
|
|
|
|
class <caret>ChildOfInterface : InterfaceWithFuns{
|
|
}
|