Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / lldb / test / API / lang / c / complex / main.c
blobeadc896ea231858be80164f0558fa681195f89d9
1 #include <complex.h>
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