Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
1e9b36bdfbe51579937a3499f225d0b232d8cd2b
/
.
/
compiler
/
testData
/
loadJava
/
compiledJava
/
annotations
/
NestedEnumArgument.java
blob: 4a13e72bcedc04d984fd97b30abe41f87ff4293c [
file
]
package
test
;
public
class
NestedEnumArgument
{
public
enum
E
{
FIRST
}
public
@interface
Anno
{
E value
();
}
@Anno
(
E
.
FIRST
)
void
foo
()
{}
}