aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.6/libstdc++-v3/testsuite/tr1/8_c_compatibility/complex/51083.cc
blob: f41914ee91e0964208d4200a0ae28dc01c2204d7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
// { dg-options "-std=gnu++0x" }
//
// Copyright (C) 2011 Free Software Foundation, Inc.
//
// This file is part of the GNU ISO C++ Library.  This library is free
// software; you can redistribute it and/or modify it under the
// terms of the GNU General Public License as published by the
// Free Software Foundation; either version 3, or (at your option)
// any later version.
//
// This library is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License along
// with this library; see the file COPYING3.  If not see
// <http://www.gnu.org/licenses/>.

#include <tr1/complex>

namespace a
{
  template<typename> class Mat { };

  template<typename T> struct Mat2 : Mat<T> { };

  template<typename T> int arg(Mat<T>) { return 1; }
  template<typename T> int conj(Mat<T>) { return 1; }
  template<typename T> int imag(Mat<T>) { return 1; }
  template<typename T> int norm(Mat<T>) { return 1; }
  template<typename T> int proj(Mat<T>) { return 1; }
  template<typename T> int real(Mat<T>) { return 1; }

  template<typename T, typename U> int pow(Mat<T>, U) { return 1; }
  template<typename T, typename U> int pow(T, Mat<U>) { return 1; }
}

int main()
{
  int __attribute__((unused)) i;

  using namespace std::tr1;

  a::Mat2< std::complex<double> > c;
  i = arg(c);
  i = conj(c);
  i = imag(c);
  i = norm(c);
  i = proj(c);
  i = real(c);
  i = pow(std::complex<float>(), c);
  i = pow(c, std::complex<float>());
}