aboutsummaryrefslogtreecommitdiff
path: root/bootstrap/test2.cff
diff options
context:
space:
mode:
authorlemon <lsof@mailbox.org>2022-08-08 09:21:18 +0200
committerlemon <lsof@mailbox.org>2022-08-08 09:21:18 +0200
commitef9311d79b829e59af10280b7eeef68942de1dfd (patch)
tree3fc7e61d98e89d9f51f5f3b41c68df10312cfdf6 /bootstrap/test2.cff
parentbc32ed90d6eaaca6406998961c50c5f5d5ca5260 (diff)
change label syntax
Diffstat (limited to 'bootstrap/test2.cff')
-rw-r--r--bootstrap/test2.cff6
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;
}
}