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