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