Sign in
gnu
/
gcc
/
92f254d8f9fc5a632ca835c4a1e1af171ea1a66d
/
.
/
libjava
/
testsuite
/
libjava.compile
/
Twice.java
blob: d80760f4dd5cf9b9d3c1e97f1451abc3e73310da [
file
]
// Simple compiler test.
public
class
Twice
{
Twice
(
boolean
q
)
{
if
(
q
)
for
(
int
p
=
0
;
p
<
10
;
p
++);
else
for
(
int
p
=
0
;
p
<
10
;
p
++);
}
}