summaryrefslogtreecommitdiff
path: root/test/std/depr/depr.c.headers/stdbool_h.pass.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'test/std/depr/depr.c.headers/stdbool_h.pass.cpp')
-rw-r--r--test/std/depr/depr.c.headers/stdbool_h.pass.cpp32
1 files changed, 0 insertions, 32 deletions
diff --git a/test/std/depr/depr.c.headers/stdbool_h.pass.cpp b/test/std/depr/depr.c.headers/stdbool_h.pass.cpp
deleted file mode 100644
index cd4d4c4b21f65..0000000000000
--- a/test/std/depr/depr.c.headers/stdbool_h.pass.cpp
+++ /dev/null
@@ -1,32 +0,0 @@
-//===----------------------------------------------------------------------===//
-//
-// The LLVM Compiler Infrastructure
-//
-// This file is dual licensed under the MIT and the University of Illinois Open
-// Source Licenses. See LICENSE.TXT for details.
-//
-//===----------------------------------------------------------------------===//
-
-// test <stdbool.h>
-
-#include <stdbool.h>
-
-#ifndef __bool_true_false_are_defined
-#error __bool_true_false_are_defined not defined
-#endif
-
-#ifdef bool
-#error bool should not be defined
-#endif
-
-#ifdef true
-#error true should not be defined
-#endif
-
-#ifdef false
-#error false should not be defined
-#endif
-
-int main()
-{
-}