//===----------------------------------------------------------------------===// // // 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_utf8 // : public codecvt // { // // unspecified // }; // bool always_noconv() const throw(); #include #include int main() { { typedef std::codecvt_utf8 C; C c; bool r = c.always_noconv(); assert(r == false); } { typedef std::codecvt_utf8 C; C c; bool r = c.always_noconv(); assert(r == false); } { typedef std::codecvt_utf8 C; C c; bool r = c.always_noconv(); assert(r == false); } }