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