Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
b32f408767cf86efaa65eb02699fe00bd61d99a6
/
.
/
compiler
/
testData
/
codegen
/
box
/
annotations
/
annotationWithDefaultArgInDifferentModule.kt
blob: 3f888b5e107193c6986a05b137a52bdd3feeb509 [
file
]
// MODULE: lib1
// FILE: lib1.kt
annotation
class
MyConfig
(
vararg val profiles
:
String
=
[],
)
// MODULE: box(lib1)
// FILE: box.kt
@MyConfig
fun box
()
=
"OK"