aboutsummaryrefslogtreecommitdiffstats
path: root/c_compiler/test/in/Add.c
diff options
context:
space:
mode:
Diffstat (limited to 'c_compiler/test/in/Add.c')
-rw-r--r--c_compiler/test/in/Add.c8
1 files changed, 1 insertions, 7 deletions
diff --git a/c_compiler/test/in/Add.c b/c_compiler/test/in/Add.c
index b672efb..b3b1f05 100644
--- a/c_compiler/test/in/Add.c
+++ b/c_compiler/test/in/Add.c
@@ -3,13 +3,7 @@ int main() {
int y = 29;
int z = 84;
- {
- {
- z = x + y + x + y - x;
- }
- }
+ z = (9 + 2 + 3) / 2 + 3 / (2 + 1);
- z = 2 + z - 2;
-
return z;
}