Driver: tweak handling of '--analyze' to invoke
[clang.git] / test / Sema / check-increment.c
blob070ea74f680012f5f43797c30c38f3c94cc39d0c
1 // RUN: %clang_cc1 -fsyntax-only -verify %s
3 int printf(const char *, ...);
4 typedef int *pint;
5 int main() {
6 int a[5] = {0};
7 pint p = a;
8 p++;
9 printf("%d\n", *p);