1 2 3 4 5 6 7 8 9 10
// RUN: clang -fsyntax-only -verify %s #include <stdio.h> typedef int *pint; int main() { int a[5] = {0}; pint p = a; p++; printf("%d\n", *p); }