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