//===----------------------------------------------------------------------===// // // The LLVM Compiler Infrastructure // // This file is distributed under the University of Illinois Open Source // License. See LICENSE.TXT for details. // //===----------------------------------------------------------------------===// // // template struct regex_traits; // locale_type imbue(locale_type l); #include #include #include int main() { { std::regex_traits t; std::locale loc = t.imbue(std::locale("en_US")); assert(loc.name() == "C"); assert(t.getloc().name() == "en_US"); } }