Files
kotlin-fork/compiler/testData/diagnostics/tests/funInterface/basicFunInterfaceConversion.fir.kt
T
2020-01-17 19:36:11 +03:00

13 lines
240 B
Kotlin
Vendored

// !LANGUAGE: +NewInference +FunctionalInterfaceConversion +SamConversionPerArgument +SamConversionForKotlinFunctions
// !DIAGNOSTICS: -UNUSED_PARAMETER
fun interface Foo {
fun invoke()
}
fun foo(f: Foo) {}
fun test() {
foo {}
}