Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
534b00eff856e0e4dcaf105df9a043d9b1263ff7
/
.
/
compiler
/
testData
/
codegen
/
box
/
evaluate
/
objectConstValInAnnotationArgument.kt
blob: a56db966025a428ec40a0ac80ccd3d6d15adcd12 [
file
]
annotation
class
Key
(
val value
:
String
)
object
Messanger
{
const
val DEFAULT_TEXT
=
"OK"
fun message
(
@Key
(
value
=
DEFAULT_TEXT
)
text
:
String
=
DEFAULT_TEXT
):
String
{
return
text
}
}
fun box
():
String
{
return
Messanger
.
message
()
}