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