blob: 319ee462a41b2d5c20bde5f3e2e53f301d7a9e61 [file] [log] [blame]
//===----------------------------------------------------------------------===//
//
// 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
//
//===----------------------------------------------------------------------===//
//
// WARNING: This test was generated by generate_header_inclusion_tests.py
// and should not be edited manually.
//
// clang-format off
// <map>
// Test that <map> includes all the other headers it's supposed to.
#include <map>
#include "test_macros.h"
#if !defined(_LIBCPP_MAP)
# error "<map> was expected to define _LIBCPP_MAP"
#endif
#if TEST_STD_VER > 17 && !defined(_LIBCPP_COMPARE)
# error "<map> should include <compare> in C++20 and later"
#endif
#if TEST_STD_VER > 03 && !defined(_LIBCPP_INITIALIZER_LIST)
# error "<map> should include <initializer_list> in C++11 and later"
#endif