brintos

brintos / llvm-project-archived public Read only

0
0
Text · 809 B · 74ed999 Raw
29 lines · cpp
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-exception6//7//===----------------------------------------------------------------------===//8 9// <map>10 11// class multimap12 13// multimap();14 15#include <map>16 17#include "test_macros.h"18 19struct X {20  std::multimap<int, X> m;21  std::multimap<int, X>::iterator i;22  std::multimap<int, X>::const_iterator ci;23#if TEST_STD_VER <= 1724  // These reverse_iterator specializations require X to be complete in C++20.25  std::multimap<int, X>::reverse_iterator ri;26  std::multimap<int, X>::const_reverse_iterator cri;27#endif // TEST_STD_VER <= 1728};29