aboutsummaryrefslogtreecommitdiff
path: root/ld/testsuite/ld-ctf/nonrepresentable-2.c
blob: c008c1148f9a99df03d38511fd8dea3649777baf (plain)
1
2
3
4
5
6
7
8
9
10
11
#include <complex.h>

extern int foo (complex int);

int main (void)
{
  complex int a = 33.4;
  foo (a);

  return 1;
}