From 850f46eeb6de286d4b079373104af87e3aca781c Mon Sep 17 00:00:00 2001 From: Yann Herklotz Date: Fri, 17 Feb 2017 21:55:16 +0000 Subject: Finished functions completely, now moving on to statements --- c_parser/test/in/05.c | 3 +++ c_parser/test/in/06.c | 6 ++++++ 2 files changed, 9 insertions(+) create mode 100644 c_parser/test/in/05.c create mode 100644 c_parser/test/in/06.c (limited to 'c_parser/test/in') diff --git a/c_parser/test/in/05.c b/c_parser/test/in/05.c new file mode 100644 index 0000000..a5ac579 --- /dev/null +++ b/c_parser/test/in/05.c @@ -0,0 +1,3 @@ +int foo(int x, int y) { + {} +} diff --git a/c_parser/test/in/06.c b/c_parser/test/in/06.c new file mode 100644 index 0000000..f182bd9 --- /dev/null +++ b/c_parser/test/in/06.c @@ -0,0 +1,6 @@ +int f(int a, int b, int c) { + int d; + { + int e; + } +} -- cgit