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