diff options
Diffstat (limited to 'libcxx/test/re/re.regex/re.regex.construct/string.pass.cpp')
-rw-r--r-- | libcxx/test/re/re.regex/re.regex.construct/string.pass.cpp | 35 |
1 files changed, 0 insertions, 35 deletions
diff --git a/libcxx/test/re/re.regex/re.regex.construct/string.pass.cpp b/libcxx/test/re/re.regex/re.regex.construct/string.pass.cpp deleted file mode 100644 index b58b8e03cd2..00000000000 --- a/libcxx/test/re/re.regex/re.regex.construct/string.pass.cpp +++ /dev/null @@ -1,35 +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> - -// template <class charT, class traits = regex_traits<charT>> class basic_regex; - -// template <class ST, class SA> -// basic_regex(const basic_string<charT, ST, SA>& s); - -#include <regex> -#include <cassert> - -template <class String> -void -test(const String& p, unsigned mc) -{ - std::basic_regex<typename String::value_type> r(p); - assert(r.flags() == std::regex_constants::ECMAScript); - assert(r.mark_count() == mc); -} - -int main() -{ - test(std::string("\\(a\\)"), 0); - test(std::string("\\(a[bc]\\)"), 0); - test(std::string("\\(a\\([bc]\\)\\)"), 0); - test(std::string("(a([bc]))"), 2); -} |