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