479e812bbc
#KT-29590 Fixed #KT-19462 Fixed #KT-29124 Fixed
9 lines
129 B
Kotlin
Vendored
9 lines
129 B
Kotlin
Vendored
// WITH_RUNTIME
|
|
// PROBLEM: none
|
|
|
|
fun bar(f: () -> Unit) {}
|
|
fun bar(f: (Int) -> Unit) {}
|
|
|
|
fun test() {
|
|
bar { it<caret> -> }
|
|
} |