freebsd-dev/test/Sema/check-increment.c
2009-06-02 17:58:47 +00:00

11 lines
161 B
C

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