Home | History | Annotate | Download | only in Sema
      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