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

import p1.C;

class D {
	void f() {
		int j= C.CONSTANT;	
	}	
}

Back to the top