Files
kotlin-fork/compiler/testData/diagnostics/tests/annotations/onFunctionParameter.kt
T
2015-05-20 09:24:56 +03:00

9 lines
188 B
Kotlin
Vendored

annotation class ann
fun test(@ann <!UNUSED_PARAMETER!>p<!>: Int) {
}
val bar = fun(@ann <!UNUSED_PARAMETER!>g<!>: Int) {}
val bas = { <!DEPRECATED_LAMBDA_SYNTAX!>(@ann t: Int)<!> -> }