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 multimap
13
14// multimap();
15
16#include <map>
17
18struct X
19{
20    std::multimap<int, X> m;
21    std::multimap<int, X>::iterator i;
22    std::multimap<int, X>::const_iterator ci;
23    std::multimap<int, X>::reverse_iterator ri;
24    std::multimap<int, X>::const_reverse_iterator cri;
25};
26
27int main()
28{
29}
30