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

class A {
}

class B extends A {
	protected void m() { 
		new B();
	}
}

Back to the top