blob: 5db688ab1993d2466b49af22807eaf9843b4647f [file] [log] [blame]
package simple_in;
public class TestLabeledStatement {
public static void main() {
/*]*/foo();/*[*/
}
public static void foo() {
the_label:
while(true) {
break the_label;
}
}
}