xref: /llvm-project/lldb/test/API/lang/c/complex_int/main.c (revision 3e66bd291f1fbf381c3e0cac528ed4f6030cf714)
1 #include <complex.h>
2 
main()3 int main() {
4   int complex complex_int = -1 + -2 * I;
5   long complex complex_long = -1 + -2 * I;
6   long long complex complex_long_long = -1 + -2 * I;
7 
8   unsigned complex complex_unsigned = 1 + 2 * I;
9   unsigned long complex complex_unsigned_long = 1 + 2 * I;
10   unsigned long long complex complex_unsigned_long_long = 1 + 2 * I;
11   return 0; // break here
12 }
13