Files
kotlin-fork/idea/testData/quickfix/removeAtFromAnnotationArgument/namedParam.kt
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
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() {
}