From dd95046b3d6bb6603529e20f2d15b14fe4144a94 Mon Sep 17 00:00:00 2001 From: François Pottier Date: Fri, 23 Oct 2015 13:45:27 +0200 Subject: Added some handwritten .c files in tests/handwritten/. --- cparser/tests/handwritten/unclosed-paren.c | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 cparser/tests/handwritten/unclosed-paren.c (limited to 'cparser/tests/handwritten/unclosed-paren.c') diff --git a/cparser/tests/handwritten/unclosed-paren.c b/cparser/tests/handwritten/unclosed-paren.c new file mode 100644 index 00000000..b0ef6747 --- /dev/null +++ b/cparser/tests/handwritten/unclosed-paren.c @@ -0,0 +1,5 @@ +int main (void) +{ + int y = 7; + int x = (3 * (2 + x) - y * y; +} -- cgit