Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
847a2ced07911ac5a943ed41390d054d0e81aa1f
/
.
/
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"