fad7818bf0
So #KT-21881 Fixed
18 lines
237 B
Kotlin
Vendored
18 lines
237 B
Kotlin
Vendored
// PROBLEM: none
|
|
// WITH_RUNTIME
|
|
class Foo
|
|
|
|
class Test {
|
|
fun foo(): Any = ""
|
|
|
|
fun bar() {}
|
|
|
|
fun test(a: Any) {
|
|
foo().apply {
|
|
<caret>if (this is Foo) {
|
|
bar()
|
|
}
|
|
}
|
|
}
|
|
}
|