//===----------------------------------------------------------------------===// // // 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. // //===----------------------------------------------------------------------===// // // class messages // catalog open(const basic_string& name, const locale&) const; #include #include // As far as I can tell, the messages facet is untestable. I have a best // effort implementation in the hopes that in the future I will learn how // to test it. template class F : public std::messages { public: explicit F(std::size_t refs = 0) : std::messages(refs) {} }; int main() { }