Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
6fc27c22f44d8051bf2e89f1657c0d9741c281c0
/
.
/
compiler
/
testData
/
loadJava
/
compiledJava
/
annotations
/
AnnotatedField.java
blob: 62c22f1fd49425ec0dcb83bf41c0c1dfec67f4e0 [
file
] [
log
] [
blame
]
package
test
;
public
class
AnnotatedField
{
public
static
@interface
Anno
{
String
value
();
}
@Anno
(
"static"
)
public
static
final
int
x
=
0
;
@Anno
(
"member"
)
public
final
int
y
=
0
;
}