aboutsummaryrefslogtreecommitdiffstats
path: root/c_parser/test/in/11.c
diff options
context:
space:
mode:
Diffstat (limited to 'c_parser/test/in/11.c')
-rw-r--r--c_parser/test/in/11.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/c_parser/test/in/11.c b/c_parser/test/in/11.c
new file mode 100644
index 0000000..7b6c0b5
--- /dev/null
+++ b/c_parser/test/in/11.c
@@ -0,0 +1,10 @@
+int f() {
+ int x = 0;
+
+ while(x < 5) {
+ int y = 0;
+ x++;
+ }
+
+ return x;
+}