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