diff options
Diffstat (limited to 'bootstrap/test2.cff')
| -rw-r--r-- | bootstrap/test2.cff | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/bootstrap/test2.cff b/bootstrap/test2.cff index 83e12fe..0d5d086 100644 --- a/bootstrap/test2.cff +++ b/bootstrap/test2.cff @@ -48,13 +48,13 @@ extern fn main() void { let i = v.Int; ! v.#tag++; - #:outer for let i = 0; i++ < 10; { + #'outer for let i = 0; i++ < 10; { printf("%d\n", i); while #t { if i < 2 { - continue #:outer; + continue #'outer; } - break #:outer; + break #'outer; } } |