/* * ReforatEnumBug.java * * Created on Sep 2, 2007, 2:13:13 PM */ package test; public class ReforatEnumBug { public enum A { A1(1), A2(2), A3(3); private int length; A(int length) { this.length= length; } public int getLength() { return length; } } private A a; public ReforatEnumBug() { a= A.A1; } }