9 lines
107 B
Kotlin
Vendored
9 lines
107 B
Kotlin
Vendored
class Foo {
|
|
fun foo() {}
|
|
}
|
|
|
|
fun Foo?.test() {
|
|
<caret>if (this@test != null) {
|
|
foo()
|
|
}
|
|
} |