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
diagnostics: avoid using global_dc in path-printing
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
template
/
injected2.C
blob
bd09ccc3553e102c84ff3e6d8090faedd81228e2
1
// DR 1004
2
3
template <class T, template<class>class U = T::template B> struct A { };
4
5
template <class T> struct B {
6
template <class U> friend struct B;
7
};
8
9
A<B<int> > a;