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

9 lines
142 B
Plaintext
Vendored

// CHOOSE_USE_SITE_TARGET: property
// WITH_RUNTIME
annotation class A
class Property {
@property:A
val foo: String by lazy { "" }
}