Files
kotlin-fork/compiler/testData/diagnostics/tests/functionAsExpression/WithoutBody.fir.kt
T

12 lines
172 B
Kotlin
Vendored

// !DIAGNOSTICS: -UNUSED_PARAMETER
annotation class ann
val bas = fun ()
fun bar(a: Any) = fun ()
fun outer() {
bar(fun ())
bar(l@ fun ())
bar(@ann fun ())
}