Files
kotlin-fork/idea/testData/intentions/addAnnotationUseSiteTarget/property/local.kt
T
2018-03-23 13:03:00 +03:00

10 lines
133 B
Kotlin
Vendored

// IS_APPLICABLE: false
annotation class A
class Property {
fun test() {
@A<caret>
val foo: String = ""
}
}