2 /* { dg-skip-if "requires hosted libstdc++ for complex" { ! hostedlib } } */
6 typedef std::complex<double> NumType;
9 multiply(NumType a, NumType b, unsigned ac, NumType &ab)
12 for (unsigned j=0; j<ac; j++)
16 extern "C" void abort (void);
19 NumType a(1,2), b(3,-2), c;