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

17 lines
317 B
Kotlin
Vendored

open class SuperFoo {
public fun bar(): String {
if (this is Foo) {
superFoo() // Smart cast
return baz() // Cannot be cast
}
return baz()
}
public fun baz() = "OK"
}
class Foo : SuperFoo() {
public fun superFoo() {}
}
fun box(): String = Foo().bar()