OSDN Git Service

* call.c (add_candidates): Add first_arg and return_type parms.
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.old-deja / g++.brendan / crash20.C
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 }