Files
kotlin-fork/idea/testData/quickfix/removeAtFromAnnotationArgument/simple.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

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