//===----------------------------------------------------------------------===// // // 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. // //===----------------------------------------------------------------------===// // // basic_string name() const; #include #include int main() { { std::locale loc; assert(loc.name() == "C"); } { std::locale loc("en_US.UTF-8"); assert(loc.name() == "en_US.UTF-8"); } }