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
/
class1.C
blob
96415fbc2254dfc1da8f9c6c6ae012b2a956bae1
1
extern const int a;
2
3
template <const int&> class X {};
4
5
template <typename> struct Y {
6
X<a> x;
7
};
8
9
template struct Y<int>;