mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-03-24 00:21:34 +00:00
14 lines
169 B
Java
Vendored
14 lines
169 B
Java
Vendored
package test;
|
|
|
|
public enum EnumWithSpecializedEntry {
|
|
E1,
|
|
|
|
E2 {
|
|
String foo() {
|
|
return name();
|
|
}
|
|
};
|
|
|
|
static class Nested {}
|
|
}
|