Revert "[libc] Use best-fit binary trie to make malloc logarithmic" (#117065)
[llvm-project.git] / libcxx / test / std / numerics / numeric.ops / numeric.ops.midpoint / midpoint.verify.cpp
blob7028e0f32945cd4730b806e260b713b4e5cf227e
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-exception
6 //
7 //===----------------------------------------------------------------------===//
8 //
9 // UNSUPPORTED: c++03, c++11, c++14, c++17
10 // <numeric>
12 // template <class _Tp>
13 // _Tp midpoint(_Tp __a, _Tp __b) noexcept
15 // An overload exists for each of char and all arithmetic types except bool.
17 #include <numeric>
19 #include "test_macros.h"
21 int func1 () { return 1; }
22 int func2 () { return 2; }
24 struct Incomplete;
25 Incomplete *ip = nullptr;
26 void *vp = nullptr;
28 int main(int, char**)
30 (void) std::midpoint(false, true); // expected-error {{no matching function for call to 'midpoint'}}
32 // A couple of odd pointer types that should fail
33 (void) std::midpoint(nullptr, nullptr); // expected-error {{no matching function for call to 'midpoint'}}
34 (void) std::midpoint(func1, func2); // expected-error {{no matching function for call to 'midpoint'}}
35 (void) std::midpoint(ip, ip); // expected-error {{no matching function for call to 'midpoint'}}
36 (void) std::midpoint(vp, vp); // expected-error {{no matching function for call to 'midpoint'}}
38 return 0;