Skip to main content
summaryrefslogtreecommitdiffstats
blob: f19304c3efce782e1dba1568ef4724e2ddc2eb92 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
package duplicates_out;

public class A_test962 {
	private Object object;
	public A_test962() {
	  this.object = new Object();
	  System.out.println(extracted());
	}
	protected Object extracted() {
		return /*[*/this.object/*]*/;
	}
}

Back to the top