Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
4fb420f3f193efd659908a29789182d7973897e4
/
.
/
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
()
{}
}