1 //===----------------------------------------------------------------------===// 2 // 3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 4 // See https://llvm.org/LICENSE.txt for license information. 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 6 // 7 //===----------------------------------------------------------------------===// 8 9 // <map> 10 11 // class map 12 13 // map(); 14 15 #include <map> 16 17 struct X 18 { 19 std::map<int, X> m; 20 std::map<int, X>::iterator i; 21 std::map<int, X>::const_iterator ci; 22 std::map<int, X>::reverse_iterator ri; 23 std::map<int, X>::const_reverse_iterator cri; 24 }; 25 26 int main(int, char**) 27 { 28 29 return 0; 30 } 31