Files
kotlin-fork/compiler/testData/diagnostics/tests/overload/EmptyArgumentListInLambda.fir.kt
T

8 lines
138 B
Kotlin
Vendored

// !DIAGNOSTICS: -UNUSED_PARAMETER
fun foo(g: () -> Int) {}
fun foo(f: (Int) -> Int) {}
fun test() {
<!AMBIGUITY!>foo<!> { -> 42 }
}