blob: 5eac795aae282b5485fbab10a512f7cf094c4488 [file] [log] [blame]
// RUN: clang -checker-simple -verify %s
struct s {};
void f(void) {
int a[10];
int (*p)[10];
p = &a;
(*p)[3] = 1;
struct s d;
struct s *q;
q = &d;
}