xref: /minix3/external/bsd/llvm/dist/clang/test/Sema/implicit-cast.c (revision eda6f5931d42c77e1480347b1fc3eef2f8d33806)
1 // RUN: %clang_cc1 -fsyntax-only %s
2 
3 static char *test1(int cf) {
4   return cf ? "abc" : 0;
5 }
6 static char *test2(int cf) {
7   return cf ? 0 : "abc";
8 }
9