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