blob: 784d60020ad3aa29d81e19b884375d6db28a32a6 [file] [log] [blame]
Steve Naroff3cc4af82007-12-16 21:42:28 +00001// RUN: clang %s -verify -fsyntax-only
2
3struct simple { int i; };
4
5void f(void) {
6 struct simple s[1];
7 s->i = 1;
8}
9