//===----------------------------------------------------------------------===// // // 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 ctype // static const mask* classic_table() throw(); #include #include int main() { typedef std::ctype F; assert(F::classic_table() != 0); }