mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-11 08:31:30 +00:00
12 lines
191 B
Kotlin
Vendored
12 lines
191 B
Kotlin
Vendored
open class A {
|
|
fun f(): String =
|
|
when (this) {
|
|
is B -> x
|
|
else -> "FAIL"
|
|
}
|
|
}
|
|
|
|
class B(val x: String) : A()
|
|
|
|
fun box() = B("OK").f()
|