Files
kotlin-fork/compiler/testData/ir/irText/declarations/annotations/delegateFieldWithAnnotations.kt.txt
T
2020-11-26 00:14:03 +03:00

17 lines
295 B
Plaintext
Vendored

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