11 lines
185 B
Kotlin
Vendored
11 lines
185 B
Kotlin
Vendored
// WITH_STDLIB
|
|
// IGNORE_BACKEND: JS_IR
|
|
// IGNORE_BACKEND: JS_IR_ES6
|
|
|
|
annotation class A(val x: String)
|
|
|
|
fun foo(m: Map<String, Int>) {
|
|
@A("foo/test")
|
|
val test by lazy { 42 }
|
|
}
|