1 // Simple compiler test.
2 
3 public class Twice
4 {
Twice(boolean q)5   Twice (boolean q)
6     {
7       if (q)
8 	for (int p = 0; p < 10; p++);
9       else
10 	for (int p = 0; p < 10; p++);
11     }
12 }
13 
14 
15