10 lines
136 B
Kotlin
Vendored
10 lines
136 B
Kotlin
Vendored
class Foo
|
|
|
|
class Bar {
|
|
fun Foo?.test() {
|
|
<caret>if (this@Bar != null) {
|
|
bar()
|
|
}
|
|
}
|
|
fun bar() {}
|
|
} |