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