aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/template/explicit-args2.C
blob: 3b5537bade7baee163cd54b7497864c09e33cfb0 (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
// PR c++/37177
// { dg-do compile { target c++11 } }

#include <typeinfo>

namespace N1
{
  template<class T> bool foo();
}

struct S
{
  template <class T>
  static bool foo();

  template <class T>
  bool bar();
};

template<class T> bool foo();

int main()
{
  (void)(&S::bar<int>);
  decltype(&S::bar<int>) a;
  typeid(&S::bar<int>);

  (void*)(&S::foo<int>);
  (void)(&S::foo<int>);
  decltype(&S::foo<int>) b;
  typeid(&S::foo<int>);

  (void*)(&N1::foo<int>);
  (void)(&N1::foo<int>);
  decltype(&N1::foo<int>) c;
  typeid(&N1::foo<int>);

  (void*)(&foo<int>);
  (void)(&foo<int>);
  decltype(&foo<int>) d;
  typeid(&foo<int>);

  &foo<int> == 0;
}