d965ad0a98
#KT-36051 Fixed
11 lines
153 B
Kotlin
Vendored
11 lines
153 B
Kotlin
Vendored
// PROBLEM: none
|
|
class Foo
|
|
|
|
class Bar {
|
|
fun Foo?.test() {
|
|
<caret>if (this@Bar != null) {
|
|
bar()
|
|
}
|
|
}
|
|
fun bar() {}
|
|
} |