libctf: impose an ordering on conflicting types
[binutils-gdb.git] / ld / testsuite / ld-ctf / nonrepresentable-2.c
1 #include <complex.h>
2
3 extern int foo (complex int);
4
5 int main (void)
6 {
7 complex int a = 33.4;
8 foo (a);
9
10 return 1;
11 }