479e812bbc
#KT-29590 Fixed #KT-19462 Fixed #KT-29124 Fixed
8 lines
119 B
Kotlin
Vendored
8 lines
119 B
Kotlin
Vendored
// WITH_RUNTIME
|
|
|
|
fun bar(f: () -> Unit) {}
|
|
fun bar(g: (Int, Int) -> Unit) {}
|
|
|
|
fun test() {
|
|
bar(f = { -><caret> })
|
|
} |