Files
kotlin-fork/compiler/testData/diagnostics/tests/overload/EmptyArgumentListInLambda.kt
T
2021-10-19 11:58:23 +03:00

9 lines
139 B
Kotlin
Vendored

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