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
/cp
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
cpp1y
/
regress1.C
blob
d4566d0a216fc2bb00dce0244258b0db786619ff
1
// PR c++/60409
2
// { dg-do compile { target c++14 } }
3
4
struct A
5
{
6
void foo();
7
};
8
9
template<typename T> void bar(T)
10
{
11
(A().foo)();
12
}