Skip to main content
summaryrefslogtreecommitdiffstats
blob: 0eb48a8f1427254e6fca42ff2dd85378977b00ed (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// 3, 33 -> 3, 40  removeDeclaration == false, replaceAll == true
class C {
	public static final boolean I_EXIST= true;
	
	static {
		boolean beans= true;
	}
}

class D {
	int object_oriented_programming() {
		return false || (!false && true && (false != true));
	}
}

class CPlusPlus extends C {
	public static final int JAVA= true ? 0xCAFEBABE : OxO;
	
	void beans() {
		System.err.println(true);	
	}
}

Back to the top