14c2690447
in a function literal If there are no arguments, any number of them might be expected
8 lines
122 B
Kotlin
Vendored
8 lines
122 B
Kotlin
Vendored
// !DIAGNOSTICS: -UNUSED_PARAMETER
|
|
|
|
fun foo(g: () -> Int) {}
|
|
fun foo(f: (Int) -> Int) {}
|
|
|
|
fun test() {
|
|
foo { -> 42 }
|
|
} |