Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
ba045e44fbc13a4a8bcfa03689115fd0a25366a9
/
.
/
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
{
}
}