Files
kotlin-fork/idea/testData/quickfix/addAnnotationTarget/use-site_field_member.kt
T
2018-03-22 10:30:46 +03:00

9 lines
118 B
Kotlin
Vendored

// "Add annotation target" "true"
@Target
annotation class Ann
class Test {
@field:Ann<caret>
var foo = ""
}