feed740415
This aligns the behavior with K1 and fixes an issue when the default value was deserialized as FirExpressionStub leading to an exception in FIR2IR when trying to convert it to an IR expression. #KT-60120 Fixed #KT-59610 Fixed
13 lines
167 B
Kotlin
Vendored
13 lines
167 B
Kotlin
Vendored
// MODULE: lib1
|
|
// FILE: lib1.kt
|
|
|
|
annotation class MyConfig(
|
|
vararg val profiles: String = [],
|
|
)
|
|
|
|
// MODULE: box(lib1)
|
|
// FILE: box.kt
|
|
|
|
@MyConfig
|
|
fun box() = "OK"
|