Skip to main content
summaryrefslogtreecommitdiffstats
blob: bae6c85efbfe657cb85ce2ab44b1c5de548fb165 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
package p;
class A {
	private final class Inner extends A {
		public void bar() {
				// TODO the return is misaligned
return;
		}
	}

	public void foo() {
		A foo= new Inner();
	}
}

Back to the top