Skip to main content

This CGIT instance is deprecated, and repositories have been moved to Gitlab or Github. See the repository descriptions for specific locations.

summaryrefslogtreecommitdiffstats
blob: b576dda6ff0b124f1b6228d3dafa0f3ecfcb35fa (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package b137984;
public class C {
	C2 c2;
	C2.C3 c3;
	C(int c) {
		c2 = new C2(c);
		c3 = c2.new C3(c);
	}
	class C2 {
		C2(int x) {}
		class C3 {
			C3(int x) {}
		}
	}
}

Back to the top