minix/external/bsd/libc++/dist/libcxx/test/re/re.regex/re.regex.assign/assign_string_flag.pass.cpp
Lionel Sambuc 4684ddb6aa LLVM Minix changes
- import libcxx
 - reduce targets to the one when compiled as a tools

Change-Id: Iabb8427f80ff8e89463559a28bcb8b4f2bdbc496
2014-07-28 17:05:59 +02:00

31 lines
979 B
C++

//===----------------------------------------------------------------------===//
//
// 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 string_traits, class A>
// basic_regex& assign(const basic_string<charT, string_traits, A>& s,
// flag_type f = regex_constants::ECMAScript);
#include <regex>
#include <cassert>
int main()
{
std::regex r2;
r2.assign(std::string("(a([bc]))"));
assert(r2.flags() == std::regex::ECMAScript);
assert(r2.mark_count() == 2);
r2.assign(std::string("(a([bc]))"), std::regex::extended);
assert(r2.flags() == std::regex::extended);
assert(r2.mark_count() == 2);
}