diff --git a/testdata/parser/negative/23.pdl b/testdata/parser/negative/23.pdl new file mode 100644 index 0000000000000000000000000000000000000000..a737914568840c723779867c487a772d09b7ee19 --- /dev/null +++ b/testdata/parser/negative/23.pdl @@ -0,0 +1,14 @@ +#version 100 + +int main(int a) { +outer: + while (a >= 2) { + a -= 2; + while (a < 10) { +unreach: a++; + if (a % 5 == 0) + break outer; + } + } + goto unreach; +} \ No newline at end of file