Files
kotlin-fork/idea/testData/quickfix/removeAtFromAnnotationArgument/namedParam.kt.after
T
Mikhail Glukhikh 28484f31e7 Fix "Remove @ from annotation argument" (make consistent PSI)
Three relevant quick-fix tests should be fixed after it
2018-08-07 11:30:31 +03:00

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() {
}