Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
6fc27c22f44d8051bf2e89f1657c0d9741c281c0
/
.
/
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
())
}