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 #if !__has_feature(cxx_noexcept)
19 
20 struct X
21 {
22     std::map<int, X> m;
23 };
24 
25 #endif
26 
main()27 int main()
28 {
29 }
30