mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-08 15:53:19 +00:00
13 lines
223 B
Java
13 lines
223 B
Java
package test;
|
|
|
|
import java.util.Set;
|
|
import java.util.EnumSet;
|
|
|
|
public enum staticField {
|
|
INSTANCE;
|
|
|
|
public static int foo = 42;
|
|
|
|
public static final Set<staticField> INSTANCES = EnumSet.of(INSTANCE);
|
|
}
|