blob: 6c081dbd345acaeb558eb1986b60b1ac298f4eab [file] [log] [blame]
Chris Lattner4b009652007-07-25 00:24:17 +00001// RUN: clang -emit-llvm %s
2
3int main(void)
4{
5 double _Complex a = 5;
6 double _Complex b = 42;
7
8 return a * b != b * a;
9}
Chris Lattnerd2388882007-08-10 17:02:59 +000010
11_Complex double bar(int);
12void test(_Complex double*);
13
14void test2(int c) {
15 _Complex double X;
16 X = bar(1);
17 test(&X);
18}
19