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

public class A {
	void f(){
		new Secondary();
	}
}

class Secondary {
	void f(){
		
	}
}

Back to the top