Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
5e49b472f81ed95098eec9749aa2ad0415fac731
/
.
/
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
{}
}