Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
6fc27c22f44d8051bf2e89f1657c0d9741c281c0
/
.
/
compiler
/
testData
/
loadJava
/
compiledJava
/
annotations
/
StringConcatenationInParam.java
blob: b753b3ba184d219c4fc6976f906d7240e03d707d [
file
] [
log
] [
blame
]
package
test
;
public
interface
StringConcatenationInParam
{
public
@interface
Anno
{
String
value
();
}
@Anno
(
"he"
+
"l"
+
"lo"
)
public
static
class
Class
{
}
}