]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - test/CodeGen/2003-08-21-BinOp-Type-Mismatch.c
Vendor import of clang RELEASE_360/rc2 tag r227651 (effectively, 3.6.0 RC2):
[FreeBSD/FreeBSD.git] / test / CodeGen / 2003-08-21-BinOp-Type-Mismatch.c
1 // RUN: %clang_cc1 -emit-llvm %s  -o /dev/null
2
3 struct bar;
4
5 void foo()
6 {
7   unsigned int frame, focus;
8   (struct bar *) focus == (focus ? ((struct bar *) frame) : 0);
9 }
10