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