Files
kotlin-fork/compiler/testData/ir/irText/declarations/annotations/delegateFieldWithAnnotations.kt.txt
T
2024-02-16 10:19:38 +00:00

19 lines
326 B
Kotlin
Vendored

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)
}
open annotation class Ann : Annotation {
constructor() /* primary */ {
super/*Any*/()
/* <init>() */
}
}