123456
while (condition A) { while (condition B) { break while; } // ... }
1234567
outer: while (condition A) { while (condition B) { break outer; } // ... }