File: C.java

package info (click to toggle)
eclipse-jdt-ui 4.29-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 93,280 kB
  • sloc: java: 831,977; xml: 14,578; jsp: 33; makefile: 5
file content (22 lines) | stat: -rw-r--r-- 404 bytes parent folder | download | duplicates (4)
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);	
	}
}