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
/
local8.C
blob
006bd8c40eb35566e2057594536066a7174a79d5
1
// PR c++/56947
2
3
struct A
4
{
5
A (int);
6
};
7
8
template < typename >
9
void Fn ()
10
{
11
const int kCapacity = 0;
12
struct Q:A
13
{
14
Q ():A (kCapacity) { }
15
};
16
Q q;
17
}
18
template void Fn < int >();