Skip to main content
summaryrefslogtreecommitdiffstats
blob: 6263a135a6b3e2fac1c4eb0983f060de165e309a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package p;

/**
 * @see #A
 * @see #A()
 * @see A#A
 * @see A#A()
 */
enum A {
    A(1), B(2) { }, C, D(), E { }, F() { }
   	;
   	A() {}
    A(int i) { }
}

Back to the top