//===----------------------------------------------------------------------===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // //===----------------------------------------------------------------------===// // // class map // map(); #include #include "test_macros.h" 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(int, char**) { return 0; }