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

10 lines
159 B
Kotlin
Vendored

// CHOOSE_USE_SITE_TARGET: set
// WITH_RUNTIME
// IS_APPLICABLE: false
annotation class A
class Property {
@A<caret>
val foo: String by lazy { "" }
}