//===----------------------------------------------------------------------===// // // 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 multimap // multimap(); #include struct X { std::multimap m; std::multimap::iterator i; std::multimap::const_iterator ci; std::multimap::reverse_iterator ri; std::multimap::const_reverse_iterator cri; }; int main() { }