1 //===----------------------------------------------------------------------===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is dual licensed under the MIT and the University of Illinois Open
6 // Source Licenses. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 
10 // <map>
11 
12 // class map
13 
14 // map();
15 
16 #include <map>
17 
18 struct X
19 {
20     std::map<int, X> m;
21     std::map<int, X>::iterator i;
22     std::map<int, X>::const_iterator ci;
23     std::map<int, X>::reverse_iterator ri;
24     std::map<int, X>::const_reverse_iterator cri;
25 };
26 
main()27 int main()
28 {
29 }
30