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
/
new34.C
blob
9e67eb34174faf07ffbba806c0445abb218670ac
1
// PR c++/53356
2
3
struct A { A(); ~A(); };
4
5
struct B {
6
operator const A () const;
7
};
8
9
A* cause_ICE() {
10
return new A((A(),A()));
11
}