aboutsummaryrefslogtreecommitdiff
path: root/src/test/fixtures/label-continue-break-bug.js
blob: ea6ba88852315a2a4bce83304aed30f4c580f42d (plain) (blame)
1
2
3
4
5
6
7
8
9
label_name: {
  break label_name;
}

while_label: while (true) {
  for_label: for (let i = 0; i < 100; i++) {
    continue while_label;
  }
}