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