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++98, c++03, c++11, c++14, c++17
10 // <numeric>
11 
12 // template <class _Tp>
13 // _Tp midpoint(_Tp __a, _Tp __b) noexcept
14 
15 // An overload exists for each of char and all arithmetic types except bool.
16 
17 #include <numeric>
18 
19 #include "test_macros.h"
20 
21 int main(int, char**)
22 {
23     (void) std::midpoint(false, true); // expected-error {{no matching function for call to 'midpoint'}}
24 
25 //  A couple of odd pointer types that should fail
26     (void) std::midpoint(nullptr, nullptr);     // expected-error {{no matching function for call to 'midpoint'}}
27     (void) std::midpoint((void *)0, (void *)0); // expected-error@numeric:* {{arithmetic on pointers to void}}
28 
29     return 0;
30 }
31