28484f31e7
Three relevant quick-fix tests should be fixed after it
8 lines
131 B
Kotlin
Vendored
8 lines
131 B
Kotlin
Vendored
// "Remove @ from annotation argument" "true"
|
|
|
|
annotation class Y()
|
|
annotation class X(val value: Y)
|
|
|
|
@X(@Y()<caret>)
|
|
fun foo() {
|
|
} |