aboutsummaryrefslogtreecommitdiffstats
path: root/cparser/tests/handwritten/unclosed-paren.c
diff options
context:
space:
mode:
Diffstat (limited to 'cparser/tests/handwritten/unclosed-paren.c')
-rw-r--r--cparser/tests/handwritten/unclosed-paren.c5
1 files changed, 5 insertions, 0 deletions
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;
+}