-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathStatements.test
More file actions
50 lines (47 loc) · 805 Bytes
/
Statements.test
File metadata and controls
50 lines (47 loc) · 805 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
package foo.bar;
import foo.bar.baz;
import foo.*;
public class Statements {
{
int i = 0;
if (i < 5) {
i = 6;
}
if (i < 7) {
break;
}
else {
}
if (i == 10)
System.out.println(i);
}
public static void main(String[] args) {
label: for (i = 5; i != 3; i++) {
while (i == 1) {
continue;
}
return;
do
i = 1;
while (true);
;;
;
switch( kdfjd) {
case (1) : throw new Error();
break;
case (2) : return i;
default : continue label;
}
synchronized(new Object()) {
try {
break label;
}
catch (Exception e) {
}
finally {
System.out.println(i);
}
}
}
}
}