8 lines
131 B
Kotlin
Vendored
8 lines
131 B
Kotlin
Vendored
// WITH_RUNTIME
|
|
|
|
annotation class A(val x: String)
|
|
|
|
fun foo(m: Map<String, Int>) {
|
|
@A("foo/test")
|
|
val test by lazy { 42 }
|
|
} |