// FIR_IDENTICAL // !DIAGNOSTICS: -UNUSED_PARAMETER @Target(AnnotationTarget.EXPRESSION) @Retention(AnnotationRetention.SOURCE) @Repeatable annotation class Ann fun bar(block: (T) -> Int) {} fun foo() { bar @Ann @[Ann] { x -> x } bar @Ann @[Ann] label@{ x -> x } }