Files
kotlin-fork/compiler/fir/analysis-tests/testData/resolve/smartcasts/boundSmartcasts/thisAssignment.kt
T
2021-02-18 10:10:38 +03:00

13 lines
116 B
Kotlin
Vendored

interface A {
fun foo()
}
fun Any.test() {
if (this is A) {
val a = this
a.foo()
}
}