blob: a3b39aab5f00be72dbe391f40bc1fd8a34b38cf4 [file] [log] [blame]
package test0374;
/* Regression test for bug 23118 */
public class A {
void foo() {
for (int i = 0; i < 10; i++) {
continue;
}
}
}