849b8acbf8
Just in tests that changed after deprecation
12 lines
189 B
Kotlin
Vendored
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) {
|
|
|
|
}
|
|
|