0fbf648971
^KT-61599 Fixed
9 lines
126 B
Kotlin
9 lines
126 B
Kotlin
interface Foo {}
|
|
|
|
fun Any.test() {
|
|
if (this is Foo) {
|
|
<expr>consume(this)</expr>
|
|
}
|
|
}
|
|
|
|
fun consume(obj: Foo) {} |