1=== pkg/Simple.java ===
2package pkg;
3
4public class Simple {
5  State state;
6
7  enum State {ONE, TWO, THREE}
8}
9