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