aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/120.sh
diff options
context:
space:
mode:
Diffstat (limited to 'tests/120.sh')
-rw-r--r--tests/120.sh21
1 files changed, 0 insertions, 21 deletions
diff --git a/tests/120.sh b/tests/120.sh
deleted file mode 100644
index b3724cd..0000000
--- a/tests/120.sh
+++ /dev/null
@@ -1,21 +0,0 @@
-cat <<'EOF' > expected
-42
-123
-EOF
-test_diff <<'EOF'
-int printf(const char*, ...);
-
-int main() {
- // TODO: check if "foo" is expanded to "foo" or not once '#' operator is implemented.
-#define foo foo
- int foo = 42;
- printf("%d\n", foo);
-
- // TODO: check if "a" is expanded to "a" or not once '#' operator is implemented.
-#define a b
-#define b c
-#define c a
- int a = 123;
- printf("%d\n", a);
-}
-EOF