Sign in
gnu
/
gcc.git
/
82b61df521d17a96f60e56ede06a55a8894b1c2e
/
.
/
libjava
/
testsuite
/
libjava.compile
/
Twice.java
blob: d80760f4dd5cf9b9d3c1e97f1451abc3e73310da [
file
] [
log
] [
blame
]
// 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
++);
}
}