blob: 784d60020ad3aa29d81e19b884375d6db28a32a6 [file] [log] [blame]
// RUN: clang %s -verify -fsyntax-only
struct simple { int i; };
void f(void) {
struct simple s[1];
s->i = 1;
}