xref: /llvm-project/clang/test/CodeGen/2003-08-21-BinOp-Type-Mismatch.c (revision 1ea584377e7897f7df5302ed9cd378d17be14fbf)
1 // RUN: %clang_cc1 -emit-llvm %s  -o /dev/null
2 
3 struct bar;
4 
foo(void)5 void foo(void)
6 {
7   unsigned int frame, focus;
8   (struct bar *) focus == (focus ? ((struct bar *) frame) : 0);
9 }
10 
11