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
[AArch64] Fix SVE testsuite failures for ILP32 (PR 83846)
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
cpp1y
/
pr60053.C
blob
a8f5ba1ca3f4007ce7227ab3c9846f7c31820687
1
// PR c++/60053
2
// { dg-do compile { target c++14 } }
3
// { dg-options "" }
4
5
struct A
6
{
7
void foo(auto);
8
};
9
10
void A::foo(auto) {}
11
12
template<typename> struct B
13
{
14
template<typename T> void bar(auto);
15
};