blob: edbbea59ac87093418526bb19594bc43278030aa [file] [log] [blame]
Daniel Dunbara5728872009-12-15 20:14:24 +00001// RUN: %clang_cc1 %s -verify -fsyntax-only
Andy Gibbs8e8fb3b2012-10-19 12:44:48 +00002// expected-no-diagnostics
Steve Naroff3cc4af82007-12-16 21:42:28 +00003
4struct simple { int i; };
5
6void f(void) {
7 struct simple s[1];
8 s->i = 1;
9}
10
Douglas Gregor72de6672009-01-08 20:45:30 +000011typedef int x;
12struct S {
13 int x;
14 x z;
15};
16
17void g(void) {
18 struct S s[1];
19 s->x = 1;
20 s->z = 2;
21}