blob: 4447feb0b8e6baac34b0b54da43d5073ca339af1 [file] [log] [blame]
Steve Naroffd848a382007-11-11 14:15:57 +00001// RUN: clang -fsyntax-only -verify %s
2
3#include <stdio.h>
4typedef int *pint;
5int main() {
6 int a[5] = {0};
7 pint p = a;
8 p++;
9 printf("%d\n", *p);
10}