Files
kotlin-fork/compiler/testData/ir/irText/declarations/annotations/delegateFieldWithAnnotations.kt.txt
T
2021-09-23 06:59:33 +00:00

18 lines
325 B
Plaintext
Vendored

open annotation class Ann : Annotation {
constructor() /* primary */ {
super/*Any*/()
/* <init>() */
}
}
val test1: Int /* by */
field = lazy<Int>(initializer = local fun <anonymous>(): Int {
return 42
}
)
get(): Int {
return #test1$delegate.getValue<Int>(thisRef = null, property = ::test1)
}