5095caee50
#KT-30513 Fixed #KT-17071 Fixed
12 lines
147 B
Kotlin
Vendored
12 lines
147 B
Kotlin
Vendored
class Foo(val bar: Bar)
|
|
|
|
class Bar {
|
|
operator fun invoke() {}
|
|
}
|
|
|
|
fun test(foo: Foo?) {
|
|
<caret>if (foo != null) {
|
|
foo.bar()
|
|
}
|
|
}
|