aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/071.sh
diff options
context:
space:
mode:
Diffstat (limited to 'tests/071.sh')
-rw-r--r--tests/071.sh16
1 files changed, 0 insertions, 16 deletions
diff --git a/tests/071.sh b/tests/071.sh
deleted file mode 100644
index 6af34ee..0000000
--- a/tests/071.sh
+++ /dev/null
@@ -1,16 +0,0 @@
-cat <<'EOF' > expected
-579
-975
-EOF
-
-test_diff <<'EOF'
-#define foo 123 + 456
-#define bar() 321 + 654
-
-int printf();
-
-int main() {
- printf("%d\n", foo);
- printf("%d\n", bar());
-}
-EOF