e96dcef571
#KT-60292 Fixed
10 lines
148 B
Kotlin
Vendored
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 }
|
|
}
|