Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
49ce95ac6651db5c91015f9b0de5c3bff2185e61
/
.
/
compiler
/
testData
/
loadJava
/
compiledJava
/
enum
/
EnumWithSpecializedEntry.java
blob: e3a2ca79730bdcb7ca84cbf449f5593dc43c3fce [
file
]
package
test
;
public
enum
EnumWithSpecializedEntry
{
E1
,
E2
{
String
foo
()
{
return
name
();
}
};
static
class
Nested
{}
}