implicit-def.c revision 5f016e2cb5d11daeb237544de1c5d59f20fe1a6e
1/* RUN: clang -parse-ast %s -std=c89 &&
2 * RUN: not clang -parse-ast %s -std=c99 -pedantic-errors
3 */
4
5int A() {
6  return X();
7}
8
9