blob: 9809544854d860b6d9b4c98d35aac453d3f41911 [file] [log] [blame]
Daniel Dunbard7d5f022009-03-24 02:24:46 +00001// RUN: clang-cc -fsyntax-only -verify %s
Steve Naroffd848a382007-11-11 14:15:57 +00002
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}