summaryrefslogtreecommitdiffstats
path: root/test/Sema/implicit-cast.c
blob: ce34ad6d1c651b0fe4efc709af4b529eef2bdd0b (plain)
1
2
3
4
5
6
7
8
// RUN: clang-cc -fsyntax-only %s

static char *test1(int cf) {
  return cf ? "abc" : 0;
}
static char *test2(int cf) {
  return cf ? 0 : "abc";
}
OpenPOWER on IntegriCloud