aboutsummaryrefslogtreecommitdiffstats
path: root/cparser/tests/handwritten/unclosed-paren.c
diff options
context:
space:
mode:
authorBernhard Schommer <bernhardschommer@gmail.com>2015-10-26 10:10:36 +0100
committerBernhard Schommer <bernhardschommer@gmail.com>2015-10-26 10:10:36 +0100
commit52c4f2622a32a88f9470111542b547514e6b21cc (patch)
treed2060251ae147a565e2d6297666effc5fe7fa7a0 /cparser/tests/handwritten/unclosed-paren.c
parent94163429293cef7410320f79fc5964fc546fccef (diff)
parentccda0e12fd38bc0ab7b932b03264cd8154843b58 (diff)
downloadcompcert-52c4f2622a32a88f9470111542b547514e6b21cc.tar.gz
compcert-52c4f2622a32a88f9470111542b547514e6b21cc.zip
Merge branch 'clean' of git://github.com/fpottier/CompCert into fpottier-clean
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;
+}