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
/
pr38646.C
blob
7dd53ae26305469e1821c82c0e90fc17fc97b8b7
1
/* PR c++/38646 */
2
/* { dg-do compile { target c++11 } } */
3
4
template<int...> struct A;
5
6
template<int... N> struct A<N..., N...> /* { dg-error "must be at the end" } */
7
{
8
template<typename> struct B;
9
10
template<typename T> struct B<T*> {};
11
};