aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/093.sh
diff options
context:
space:
mode:
Diffstat (limited to 'tests/093.sh')
-rw-r--r--tests/093.sh20
1 files changed, 0 insertions, 20 deletions
diff --git a/tests/093.sh b/tests/093.sh
deleted file mode 100644
index a22e168..0000000
--- a/tests/093.sh
+++ /dev/null
@@ -1,20 +0,0 @@
-cat <<'EOF' > expected
-42
-246
-221
-EOF
-
-test_diff <<'EOF'
-int printf();
-
-#define A(x) x
-#define B(x) x+x
-#define C(x, y) x*y
-
-int main() {
- printf("%d\n", A(42));
- printf("%d\n", B
- (123));
- printf("%d\n", C (13, 17));
-}
-EOF