Files
kotlin-fork/compiler/testData/ir/irText/declarations/annotations/localDelegatedPropertiesWithAnnotations.kt
T
2023-08-23 11:09:35 +00:00

10 lines
148 B
Kotlin
Vendored

// FIR_IDENTICAL
// WITH_STDLIB
annotation class A(val x: String)
fun foo(m: Map<String, Int>) {
@A("foo/test")
val test by lazy { 42 }
}