Files
kotlin-fork/compiler/testData/diagnostics/tests/annotations/onFunctionParameter.kt
T
Denis Zharkov 849b8acbf8 Replace annotations with brackets in testData
Just in tests that changed after deprecation
2015-05-07 22:36:16 +03:00

9 lines
193 B
Kotlin

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