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
/
ref7.C
blob
f6395e2c35f1c2d9b2792cc4d255517a3d5debe1
1
// PR c++/60167
2
3
template <int& F>
4
struct Foo {
5
typedef int Bar;
6
7
static Bar cache;
8
};
9
10
template <int& F> typename Foo<F>::Bar Foo<F>::cache;