mirror of
git://gcc.gnu.org/git/gcc.git
synced 2024-12-19 05:39:06 +08:00
ee9dd3721b
From-SVN: r26263
15 lines
169 B
Java
15 lines
169 B
Java
// 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++);
|
|
}
|
|
}
|
|
|
|
|