Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
4f8dad3e4ba00e23b4182ef4c50194b20bd43c8f
/
.
/
compiler
/
testData
/
diagnostics
/
tests
/
funInterface
/
basicFunInterfaceConversion.kt
blob: d80171851330058d80c22317562846431157a93a [
file
]
// FIR_IDENTICAL
// !LANGUAGE: +FunctionalInterfaceConversion +SamConversionPerArgument +SamConversionForKotlinFunctions
// !DIAGNOSTICS: -UNUSED_PARAMETER
fun
interface
Foo
{
fun invoke
()
}
fun foo
(
f
:
Foo
)
{}
fun test
()
{
foo
{}
}