//===----------------------------------------------------------------------===// // // 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. // //===----------------------------------------------------------------------===// // // template class numpunct; // string_type truename() const; #include #include int main() { std::locale l = std::locale::classic(); { typedef char C; const std::numpunct& np = std::use_facet >(l); assert(np.truename() == std::string("true")); } { typedef wchar_t C; const std::numpunct& np = std::use_facet >(l); assert(np.truename() == std::wstring(L"true")); } }