blob: ce34ad6d1c651b0fe4efc709af4b529eef2bdd0b [file] [log] [blame]
Daniel Dunbard7d5f022009-03-24 02:24:46 +00001// RUN: clang-cc -fsyntax-only %s
Steve Naroffd4dd30f2007-10-18 05:13:08 +00002
3static char *test1(int cf) {
4 return cf ? "abc" : 0;
5}
6static char *test2(int cf) {
7 return cf ? 0 : "abc";
8}