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