repo.or.cz
/
gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Fortran: Fix PR 47485.
[gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
cpp0x
/
variadic-nested1.C
blob
abfb49a712cad878349daab7c4ab2db861735e59
1
// PR c++/71833
2
// { dg-do compile { target c++11 } }
3
4
template < typename ... Ts > struct A
5
{
6
template < Ts ..., typename ... Us > struct B {};
7
};
8
9
A <>::B < int > e;