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