Retro68/binutils/ld/testsuite/ld-ctf/nonrepresentable-2.c
Wolfgang Thaller f485e125c4 binutils 2.39
2022-10-27 20:45:45 +02:00

12 lines
121 B
C

#include <complex.h>
extern int foo (complex int);
int main (void)
{
complex int a = 33.4;
foo (a);
return 1;
}