aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/test_keywords.sh
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_keywords.sh')
-rw-r--r--tests/test_keywords.sh14
1 files changed, 0 insertions, 14 deletions
diff --git a/tests/test_keywords.sh b/tests/test_keywords.sh
deleted file mode 100644
index 0bdb6f7..0000000
--- a/tests/test_keywords.sh
+++ /dev/null
@@ -1,14 +0,0 @@
-cat <<'EOF' > expected
-
-
-int printf ();
-int main () {}
-EOF
-
-test_cpp <<'EOF'
-// A keyword is treated as a normal identifier in preprocessing phase.
-#define auto int
-
-auto printf();
-auto main() {}
-EOF