Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
4f8dad3e4ba00e23b4182ef4c50194b20bd43c8f
/
.
/
compiler
/
testData
/
diagnostics
/
tests
/
functionAsExpression
/
WithoutBody.fir.kt
blob: ccb1f2408b2fddc379ce12f16e9231b41a315086 [
file
]
// !DIAGNOSTICS: -UNUSED_PARAMETER
annotation
class
ann
val bas
=
fun
()
fun bar
(
a
:
Any
)
=
fun
()
fun outer
()
{
bar
(
fun
())
bar
(
l@ fun
())
bar
(
@ann
fun
())
}