Files
kotlin-fork/compiler/testData/codegen/box/smartCasts/implicitReceiverInWhen.kt
T
2018-06-14 19:54:30 +03:00

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()