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