aboutsummaryrefslogtreecommitdiffstats
path: root/cparser/tests/handwritten/missing-operator.c
diff options
context:
space:
mode:
authorBernhard Schommer <bernhardschommer@gmail.com>2015-10-26 13:00:45 +0100
committerBernhard Schommer <bernhardschommer@gmail.com>2015-10-26 13:00:45 +0100
commit51b059d9a5559cf06e13e82bcda3da9f1c70fad1 (patch)
treed2060251ae147a565e2d6297666effc5fe7fa7a0 /cparser/tests/handwritten/missing-operator.c
parent94163429293cef7410320f79fc5964fc546fccef (diff)
parent52c4f2622a32a88f9470111542b547514e6b21cc (diff)
downloadcompcert-51b059d9a5559cf06e13e82bcda3da9f1c70fad1.tar.gz
compcert-51b059d9a5559cf06e13e82bcda3da9f1c70fad1.zip
Merge branch 'fpottier-clean'
Diffstat (limited to 'cparser/tests/handwritten/missing-operator.c')
-rw-r--r--cparser/tests/handwritten/missing-operator.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/cparser/tests/handwritten/missing-operator.c b/cparser/tests/handwritten/missing-operator.c
new file mode 100644
index 00000000..d93e91f4
--- /dev/null
+++ b/cparser/tests/handwritten/missing-operator.c
@@ -0,0 +1,5 @@
+int main (void)
+{
+ int y = 7, z = 8;
+ int x = (3 * (2 x) - y * y);
+}