repo.or.cz
/
netbsd-mini2440.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
No empty .Rs/.Re
[netbsd-mini2440.git]
/
gnu
/
dist
/
gcc4
/
gcc
/
testsuite
/
g++.dg
/
template
/
non-dependent10.C
blob
0adac25f08da97de9348c0a00b8fa8fb467acf51
1
// { dg-do compile }
2
3
// Origin: Giovanni Bajo <giovannibajo@libero.it>
4
5
// Two-phase name lookup for address of member:
6
// Detecting overloading function error during parsing
7
8
struct S
9
{
10
int f(char);
11
int f(int);
12
};
13
14
template<int (S::*p)()>
15
struct X
16
{};
17
18
template <class T>
19
struct Foo
20
{
21
X<&S::f> x; // { dg-error "convert|no type" }
22
};