Skip to main content
summaryrefslogtreecommitdiffstats
blob: af38cba916a8087caec2f0acf87f0a1d6d078f92 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
public class A {
	A(String s) {
	}
	protected void foo() {
		A a = new A("") {//$NON-NLS-1$
			public void run() {
			}
		};
	}
}

Back to the top