blob: 6c2c07ef77183b8326e43834b36dfb8eff328c79 [file] [log] [blame]
package simple_out;
public class TestLabeledStatement {
public static void main() {
the_label:
while(true) {
break the_label;
}
}
public static void foo() {
the_label:
while(true) {
break the_label;
}
}
}