]> git.ipfire.org Git - thirdparty/gcc.git/blame - libstdc++-v3/testsuite/26_numerics/headers/cmath/types_std_c++0x_neg.cc
Update copyright years.
[thirdparty/gcc.git] / libstdc++-v3 / testsuite / 26_numerics / headers / cmath / types_std_c++0x_neg.cc
CommitLineData
7b936140 1// { dg-do compile { target { ! c++17 } } }
a6d99bb4 2
83ffe9cd 3// Copyright (C) 2007-2023 Free Software Foundation, Inc.
a6d99bb4
BK
4//
5// This file is part of the GNU ISO C++ Library. This library is free
6// software; you can redistribute it and/or modify it under the
7// terms of the GNU General Public License as published by the
748086b7 8// Free Software Foundation; either version 3, or (at your option)
a6d99bb4
BK
9// any later version.
10
11// This library is distributed in the hope that it will be useful,
12// but WITHOUT ANY WARRANTY; without even the implied warranty of
13// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14// GNU General Public License for more details.
15
16// You should have received a copy of the GNU General Public License along
748086b7
JJ
17// with this library; see the file COPYING3. If not see
18// <http://www.gnu.org/licenses/>.
a6d99bb4
BK
19
20#include <cmath>
21
22namespace gnu
23{
f245e3a0
JW
24 // C++11 changes from TR1.
25 using std::assoc_laguerre; // { dg-error "has not been declared" }
26 using std::assoc_legendre; // { dg-error "has not been declared" }
27 using std::beta; // { dg-error "has not been declared" }
28 using std::comp_ellint_1; // { dg-error "has not been declared" }
29 using std::comp_ellint_2; // { dg-error "has not been declared" }
30 using std::comp_ellint_3; // { dg-error "has not been declared" }
31 using std::conf_hyperg; // { dg-error "has not been declared" }
32 using std::cyl_bessel_i; // { dg-error "has not been declared" }
33 using std::cyl_bessel_j; // { dg-error "has not been declared" }
34 using std::cyl_bessel_k; // { dg-error "has not been declared" }
35 using std::cyl_neumann; // { dg-error "has not been declared" }
36 using std::ellint_1; // { dg-error "has not been declared" }
37 using std::ellint_2; // { dg-error "has not been declared" }
38 using std::ellint_3; // { dg-error "has not been declared" }
39 using std::expint; // { dg-error "has not been declared" }
40 using std::hermite; // { dg-error "has not been declared" }
41 using std::hyperg; // { dg-error "has not been declared" }
42 using std::laguerre; // { dg-error "has not been declared" }
43 using std::legendre; // { dg-error "has not been declared" }
44 using std::riemann_zeta; // { dg-error "has not been declared" }
45 using std::sph_bessel; // { dg-error "has not been declared" }
46 using std::sph_legendre; // { dg-error "has not been declared" }
47 using std::sph_neumann; // { dg-error "has not been declared" }
a6d99bb4 48}