Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
6f1b95d296c5592d3a3e71cc638994fa2ba4e4f7
/
.
/
compiler
/
testData
/
codegen
/
box
/
annotations
/
annotationWithDefaultArgInDifferentModule.kt
blob: 75d97dbf6bc57749cae2cbdac3980d696f1cfdb2 [
file
]
// JVM_ABI_K1_K2_DIFF: K2 serializes annotation parameter default values (KT-59526).
// MODULE: lib1
// FILE: lib1.kt
annotation
class
MyConfig
(
vararg val profiles
:
String
=
[],
)
// MODULE: box(lib1)
// FILE: box.kt
@MyConfig
fun box
()
=
"OK"