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++);
|
|
}
|
|
}
|
|
|
|
|