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

9 lines
132 B
Plaintext
Vendored

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