8 lines
88 B
Kotlin
Vendored
8 lines
88 B
Kotlin
Vendored
class C {
|
|
fun foo(){}
|
|
}
|
|
|
|
fun Any.f() {
|
|
if (this !is C) return
|
|
<caret>foo()
|
|
} |