Files
kotlin-fork/idea/testData/checker/custom/noUnusedParameterWhenCustom.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

12 lines
189 B
Kotlin
Vendored

annotation class MyTestAnnotation
fun unused(<warning descr="[UNUSED_PARAMETER] Parameter 'p' is never used">p</warning>: Int) {
}
@MyTestAnnotation
fun unusedButAnnotated(p: Int) {
}