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
reflect: canonicalize types returned by StructOf() and friends
[official-gcc.git]
/
gcc
/
testsuite
/
g++.old-deja
/
g++.brendan
/
crash57.C
blob
b4599fc7e21a39959d7c89b6536fbcfe93738589
1
// { dg-do assemble }
2
// GROUPS passed old-abort
3
class foo {
4
private:
5
char buffer[1024];
6
public:
7
foo();
8
};
9
10
int main()
11
{
12
static foo& a = *(new foo);
13
}