Skip to main content
summaryrefslogtreecommitdiffstats
blob: cdfe7f570a7fabfaa8582856fa31ecb9d3e3d627 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
class F {
	public void foo() {
		F foo = new F() {
			public void bar() {
				// comment
				return;
			}
		};
	}
}

Back to the top