12 lines
239 B
Kotlin
Vendored
12 lines
239 B
Kotlin
Vendored
// !LANGUAGE: +NewInference +FunctionalInterfaceConversion +SamConversionPerArgument +SamConversionForKotlinFunctions
|
|
// !DIAGNOSTICS: -UNUSED_PARAMETER
|
|
|
|
fun interface Foo {
|
|
fun invoke()
|
|
}
|
|
|
|
fun foo(f: Foo) {}
|
|
|
|
fun test() {
|
|
foo {}
|
|
} |