Files
kotlin-fork/compiler/testData/diagnostics/tests/funInterface/basicFunInterfaceConversion.kt
T

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 {}
}