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
PR c++/86728 - C variadic generic lambda.
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
template
/
partial-specialization2.C
blob
c22d73989ae01df772f072cc1a515c237d8d482a
1
// PR c++/54653
2
3
template <class T> struct A;
4
template <class T> struct A<T*> {
5
template <class U> struct B;
6
};
7
8
template <class T> struct A<T*>::B<T*> { }; // { dg-error "too few template-parameter-lists" }