llvm/libcxx/test/std/containers/associative/multimap/multimap.nonmember/compare.three_way.pass.cpp

//===----------------------------------------------------------------------===//
//
// 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 multimap

// template<class Key, class T, class Compare, class Allocator>
//   synth-three-way-result<pair<const Key, T>>
//     operator<=>(const multimap<Key, T, Compare, Allocator>& x,
//                 const multimap<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::multimap>());
  // `std::multimap` is not constexpr, so no `static_assert` test here.
  return 0;
}