5095caee50
#KT-30513 Fixed #KT-17071 Fixed
7 lines
105 B
Kotlin
Vendored
7 lines
105 B
Kotlin
Vendored
class Foo(val f: () -> Unit)
|
|
|
|
fun test(foo: Foo?) {
|
|
<caret>if (foo != null) {
|
|
foo.f()
|
|
}
|
|
} |