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
2013-05-29 Richard Biener <rguenther@suse.de>
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
init
/
value8.C
blob
0a9b90b64bf369613950f315ecf5029108574d3c
1
// PR c++/45315
2
3
struct A
4
{
5
A ();
6
};
7
8
template < int > struct B : A
9
{
10
void foo ()
11
{
12
new B < 0 > ();
13
}
14
};
15
16
int main()
17
{
18
B<1>().foo();
19
}