blob: d37b734202d82a4e80f26c32b3177000734926aa (
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-options -std=c++0x }
#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;
}
|