aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/097.sh
diff options
context:
space:
mode:
Diffstat (limited to 'tests/097.sh')
-rw-r--r--tests/097.sh18
1 files changed, 0 insertions, 18 deletions
diff --git a/tests/097.sh b/tests/097.sh
deleted file mode 100644
index c5b8d0d..0000000
--- a/tests/097.sh
+++ /dev/null
@@ -1,18 +0,0 @@
-cat <<'EOF' > expected
-1
-EOF
-
-test_diff <<'EOF'
-int printf();
-
-#define A
-#define B
-
-int main() {
-#if defined A && defined(B)
- printf("1\n");
-#else
- printf("2\n");
-#endif
-}
-EOF