Skip to main content
summaryrefslogtreecommitdiffstats
blob: 65a926887c506e0387c28978c24fe3018172c85a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package simple_out;

public class TestFieldInitializerAnonymous {

	Object field = new Object() {
		{
			if (0 < hashCode())
				;
			else {
				toString();
				toString();
			}
		}
	};

	void foo() {
		toString();
		toString();
	}
}

Back to the top