// RUN: clang -emit-llvm %s
int main(void)
{
double _Complex a = 5;
double _Complex b = 42;
return a * b != b * a;
}