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
/
crash20.C
blob
93dc58cb150ae0418b4c261ba02271563d7f85a3
1
// { dg-do assemble }
2
// GROUPS passed old-abort
3
#include <complex>
4
typedef std::complex<double> Complex;
5
6
Complex ComputeVVself()
7
{
8
Complex temp1;
9
Complex self[3][3];
10
11
self[1][2] = 100.0;
12
return self[1][2];
13
14
}