//===----------------------------------------------------------------------===// // // 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 codecvt // int encoding() const throw(); #include #include typedef std::codecvt F; int main() { std::locale l = std::locale::classic(); const F& f = std::use_facet(l); assert(f.encoding() == 1); }