summaryrefslogtreecommitdiff
path: root/05/main.c
diff options
context:
space:
mode:
authorpommicket <pommicket@gmail.com>2022-02-04 19:31:45 -0500
committerpommicket <pommicket@gmail.com>2022-02-04 19:31:45 -0500
commitdfce9118b9cbfae1fb287f5e4488b971407522cd (patch)
treea0497c7c78b68ee90797a070c48b1f46b6f76473 /05/main.c
parentd1167f03d03c2a6ab75fce410706e3098dfd3090 (diff)
parsing break, continue, return
Diffstat (limited to '05/main.c')
-rw-r--r--05/main.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/05/main.c b/05/main.c
index c5d1b72..3fed294 100644
--- a/05/main.c
+++ b/05/main.c
@@ -1,5 +1,6 @@
int f(void) {
-blah:blah:blah:;
+ lbl1:break;;;
+ continue;a:break;return;return 6+3<<sizeof(int);
}