aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/074.sh
diff options
context:
space:
mode:
Diffstat (limited to 'tests/074.sh')
-rw-r--r--tests/074.sh20
1 files changed, 0 insertions, 20 deletions
diff --git a/tests/074.sh b/tests/074.sh
deleted file mode 100644
index f7ac0fe..0000000
--- a/tests/074.sh
+++ /dev/null
@@ -1,20 +0,0 @@
-cat <<'EOF' > expected
-5
-6 6
-7 7
-EOF
-
-cat <<'EOF' > header.h
-#define A __LINE__
-EOF
-
-test_diff <<'EOF'
-#define B __LINE__
-#include "header.h"
-int printf();
-int main() {
- printf("%d\n", __LINE__);
- printf("%d %d\n", B, B);
- printf("%d %d\n", A, A);
-}
-EOF