enum MyEnumTest { FOO; MyEnumTest Foo = FOO; { MyEnumTest foo = FOO; } static MyEnumTest Bar = FOO; MyEnumTest() { System.out.println(Bar); } }