blob: 0e1c57f123e5812fc88b1f507fdc7498ba8fb449 [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
//
//===----------------------------------------------------------------------===//
// UNSUPPORTED: c++03, c++11, c++14, c++17
// <map>
// class map
// template<class Key, class T, class Compare, class Allocator>
// synth-three-way-result<pair<const Key, T>>
// operator<=>(const map<Key, T, Compare, Allocator>& x,
// const map<Key, T, Compare, Allocator>& y);
#include <cassert>
#include <map>
#include "test_container_comparisons.h"
int main(int, char**) {
assert(test_ordered_map_container_spaceship<std::map>());
// `std::map` is not constexpr, so no `static_assert` test here.
return 0;
}