blob: d552b88fba92704648e842b6cccd4918b4a3bfe9 [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;
}
}
}