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
[C++ PATCH] Deprecate -ffriend-injection
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
template
/
defarg12.C
blob
7131501e1c2eb6fa9ea4336c7cec3b31ad702590
1
// PR c++/35828
2
// { dg-do compile { target c++11 } }
3
4
template < typename > struct A ;
5
template < template < typename > class = A >
6
void test ()
7
{
8
test ();
9
}
10