Files
kotlin-fork/analysis/low-level-api-fir/testdata/contextCollector/smartCasts/extensionReceiver.kt
T
2023-09-04 15:47:56 +00:00

9 lines
126 B
Kotlin

interface Foo {}
fun Any.test() {
if (this is Foo) {
<expr>consume(this)</expr>
}
}
fun consume(obj: Foo) {}