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
/
defarg12.C
blob
d11848af22867d79e92dff07ae2da14856008a68
1
// PR c++/35828
2
// { dg-options "-std=c++0x" }
3
4
template < typename > struct A ;
5
template < template < typename > class = A >
6
void test ()
7
{
8
test ();
9
}
10