aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs152/pr145963/C.java
blob: b255175c9aade64844a3ac92565c2aa18fbc7d52 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
package pack;

public class C {

	public void method1() {
		new C().method2();
	}
	
	public void method2() {
	}
	
}