Skip to main content
summaryrefslogtreecommitdiffstats
blob: 03cba9a1376d328f139e597d7c7ebe0d74a73b47 (plain) (blame)
1
2
3
4
5
6
7
8
//6, 13, 6, 16
package p;
enum A {
	ONE, TWO();
	public void f(){
		int var=0;
	}
}

Back to the top