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
/
friend5.C
blob
1a63e71e32c198a4a8af60b77ee9fcbc001ea224
1
// { dg-do compile }
2
3
namespace NS { template <typename number> class C; }
4
5
template <typename T> class X {
6
template <typename N> friend class NS::C;
7
};
8
9
template class X<int>;