blob: 0e08d06d3e9e85ac81f1ff1cfaec2e13798e256c [file] [log] [blame]
Marshall Clow330ab332019-03-14 16:25:55 +00001//===----------------------------------------------------------------------===//
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
Marshall Clow6b03a1b2019-05-29 15:17:55 +000021int func1 () { return 1; }
22int func2 () { return 2; }
23
24struct Incomplete;
25Incomplete *ip = nullptr;
26void *vp = nullptr;
27
Marshall Clow330ab332019-03-14 16:25:55 +000028int main(int, char**)
29{
Marshall Clow6b03a1b2019-05-29 15:17:55 +000030 (void) std::midpoint(false, true); // expected-error {{no matching function for call to 'midpoint'}}
Marshall Clow330ab332019-03-14 16:25:55 +000031
32// A couple of odd pointer types that should fail
Marshall Clow6b03a1b2019-05-29 15:17:55 +000033 (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'}}
Louis Dionne6b77ebd2019-10-23 10:40:15 -070037
Marshall Clow330ab332019-03-14 16:25:55 +000038 return 0;
39}