1 #include <complex.h>
2 
main()3 int main() {
4   float complex complex_float = -1.5f + -2.5f * I;
5   double complex complex_double = -1.5 + -2.5 * I;
6   long double complex complex_long_double = -1.5L + -2.5L * I;
7   return 0; // break here
8 }
9