Skip to main content
summaryrefslogtreecommitdiffstats
blob: 9ea4920d9b0556d9c092e68ae45f70d9c4fa1885 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
// 8, 18 -> 8, 26  replaceAll == true, removeDeclaration == true
package p2;

import p1.C;

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

Back to the top