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