aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.law/ctors6.C
blob: a46f4e89bdbd10da6e0a76f326831d5e85fb4dac (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Build don't link: 
// GROUPS passed constructors
#include <complex.h>

double foo(double_complex *a)
{
  return 0.0;
}


double bar(void)
{
  double_complex v[10];
  return foo(v);
}