Skip to main content
summaryrefslogtreecommitdiffstats
blob: 0483b5a02cea18e2fed50d81a8598b587e81ebd3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package nested_out;

public class A_test652 {
	public void foo() {
		Runnable run= new Runnable() {
			public void run() {
				foo();
			}
		};
		
		extracted();
	}

	protected void extracted() {
		/*[*/foo();/*]*/
	}
}

Back to the top