6ca22fbf34
#KT-30082 Fixed
6 lines
109 B
Kotlin
Vendored
6 lines
109 B
Kotlin
Vendored
// WITH_RUNTIME
|
|
class Foo(val bar: () -> Int)
|
|
|
|
fun bar(foo: Foo?) {
|
|
foo?.<caret>let { it.bar.invoke() }
|
|
} |