blob: 311706a7fd609b55b50f7b2b9f422b062b3b0ea4 [file] [log] [blame]
//===----------------------------------------------------------------------===//
//
// 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;
// void swap(basic_regex& e);
#include <regex>
#include <cassert>
int main()
{
std::regex r1("(a([bc]))");
std::regex r2;
r2.swap(r1);
assert(r1.flags() == std::regex::ECMAScript);
assert(r1.mark_count() == 0);
assert(r2.flags() == std::regex::ECMAScript);
assert(r2.mark_count() == 2);
}