repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
2014-01-30 Alangi Derick <alangiderick@gmail.com>
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
template
/
non-dependent9.C
blob
c046312d558c36b89c37e291736b533d56c0a6bc
1
// { dg-do compile }
2
3
// Origin: Giovanni Bajo <giovannibajo@libero.it>
4
5
// Two-phase name lookup for address of member:
6
// Overloading function
7
8
struct S
9
{
10
int f();
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;
22
};