1// { dg-do compile }
2// { dg-options "-std=gnu++11" }
3// { dg-require-cmath "" }
4
5// Copyright (C) 2011-2015 Free Software Foundation, Inc.
6//
7// This file is part of the GNU ISO C++ Library.  This library is free
8// software; you can redistribute it and/or modify it under the
9// terms of the GNU General Public License as published by the
10// Free Software Foundation; either version 3, or (at your option)
11// any later version.
12//
13// This library is distributed in the hope that it will be useful,
14// but WITHOUT ANY WARRANTY; without even the implied warranty of
15// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16// GNU General Public License for more details.
17//
18// You should have received a copy of the GNU General Public License along
19// with this library; see the file COPYING3.  If not see
20// <http://www.gnu.org/licenses/>.
21
22#include <cmath>
23
24// libstdc++/48933
25
26struct Foo { };
27
28template Foo std::atan2<Foo, Foo>(Foo, Foo); // { dg-error "not match" }
29template Foo std::acosh<Foo>(Foo); // { dg-error "not match" }
30template Foo std::asinh<Foo>(Foo); // { dg-error "not match" }
31template Foo std::atanh<Foo>(Foo); // { dg-error "not match" }
32template Foo std::cbrt<Foo>(Foo); // { dg-error "not match" }
33template Foo std::copysign<Foo, Foo>(Foo, Foo); // { dg-error "not match" }
34template Foo std::erf<Foo>(Foo); // { dg-error "not match" }
35template Foo std::erfc<Foo>(Foo); // { dg-error "not match" }
36template Foo std::exp2<Foo>(Foo); // { dg-error "not match" }
37template Foo std::expm1<Foo>(Foo); // { dg-error "not match" }
38template Foo std::fdim<Foo, Foo>(Foo, Foo); // { dg-error "not match" }
39template Foo std::fma<Foo, Foo, Foo>(Foo(), Foo(), Foo()); // { dg-error "not match" }
40template Foo std::fmax<Foo, Foo>(Foo, Foo); // { dg-error "not match" }
41template Foo std::fmin<Foo, Foo>(Foo, Foo); // { dg-error "not match" }
42template Foo std::hypot<Foo, Foo>(Foo, Foo); // { dg-error "not match" }
43template int std::ilogb<Foo>(Foo); // { dg-error "not match" }
44template Foo std::lgamma<Foo>(Foo); // { dg-error "not match" }
45template long long std::llrint<Foo>(Foo); // { dg-error "not match" }
46template long long std::llround<Foo>(Foo); // { dg-error "not match" }
47template Foo std::log1p<Foo>(Foo); // { dg-error "not match" }
48template Foo std::log2<Foo>(Foo); // { dg-error "not match" }
49template Foo std::logb<Foo>(Foo); // { dg-error "not match" }
50template long std::lrint<Foo>(Foo); // { dg-error "not match" }
51template long std::lround<Foo>(Foo); // { dg-error "not match" }
52template Foo std::nearbyint<Foo>(Foo); // { dg-error "not match" }
53template Foo std::nextafter<Foo>(Foo, Foo); // { dg-error "not match" }
54template Foo std::nexttoward<Foo>(Foo, long double); // { dg-error "not match" }
55template Foo std::remainder<Foo, Foo>(Foo, Foo); // { dg-error "not match" }
56template Foo std::remquo<Foo>(Foo, Foo, int*); // { dg-error "not match" }
57template Foo std::rint<Foo>(Foo); // { dg-error "not match" }
58template Foo std::round<Foo>(Foo); // { dg-error "not match" }
59template Foo std::scalbln<Foo>(Foo, long); // { dg-error "not match" }
60template Foo std::scalbn<Foo>(Foo, int); // { dg-error "not match" }
61template Foo std::tgamma<Foo>(Foo); // { dg-error "not match" }
62template Foo std::trunc<Foo>(Foo); // { dg-error "not match" }
63