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
Update concepts branch to revision 131834
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
template
/
defarg8.C
blob
61d819c7cdc25bc24a814f87e61c1a296290522d
1
// PR c++/27094
2
// { dg-options "--param ggc-min-expand=0 --param ggc-min-heapsize=0" }
3
4
struct A
5
{
6
~A();
7
};
8
9
struct B : A
10
{
11
B();
12
};
13
14
template<int> struct C
15
{
16
C(const B& = B());
17
};
18
19
C<0> c;