2010-08-13 20:11:23 +02:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
// <regex>
|
|
|
|
|
|
|
|
// template <class charT, class traits = regex_traits<charT>> class basic_regex;
|
|
|
|
|
|
|
|
// basic_regex& operator=(initializer_list<charT> il);
|
|
|
|
|
|
|
|
#include <regex>
|
|
|
|
#include <cassert>
|
|
|
|
|
|
|
|
int main()
|
|
|
|
{
|
|
|
|
#ifdef _LIBCPP_MOVE
|
|
|
|
std::regex r2;
|
|
|
|
r2 = {'(', 'a', '(', '[', 'b', 'c', ']', ')', ')'};
|
|
|
|
assert(r2.flags() == std::regex::ECMAScript);
|
|
|
|
assert(r2.mark_count() == 2);
|
2010-08-22 02:45:01 +02:00
|
|
|
#endif // _LIBCPP_MOVE
|
2010-08-13 20:11:23 +02:00
|
|
|
}
|