blob: fe83bd93e33ee6ccb86ab79b51703afce6f829bd [file] [log] [blame]
// RUN: clang -fsyntax-only %s
static char *test1(int cf) {
return cf ? "abc" : 0;
}
static char *test2(int cf) {
return cf ? 0 : "abc";
}