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