summaryrefslogtreecommitdiff
path: root/test/std/re/re.syn/regex.pass.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'test/std/re/re.syn/regex.pass.cpp')
-rw-r--r--test/std/re/re.syn/regex.pass.cpp21
1 files changed, 0 insertions, 21 deletions
diff --git a/test/std/re/re.syn/regex.pass.cpp b/test/std/re/re.syn/regex.pass.cpp
deleted file mode 100644
index 32fcb82f1a9c6..0000000000000
--- a/test/std/re/re.syn/regex.pass.cpp
+++ /dev/null
@@ -1,21 +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.
-//
-//===----------------------------------------------------------------------===//
-
-// <regex>
-
-// typedef basic_regex<char> regex;
-
-#include <regex>
-#include <type_traits>
-#include "test_macros.h"
-
-int main()
-{
- static_assert((std::is_same<std::basic_regex<char>, std::regex>::value), "");
-}