Files
kotlin-fork/idea/testData/checker/custom/noUnusedParameterWhenCustom.kt
T

12 lines
190 B
Kotlin

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