blob: b434f5b77938b4650ca2653e027dd3b108429575 [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
Douglas Gregor72de6672009-01-08 20:45:30 +000010typedef int x;
11struct S {
12 int x;
13 x z;
14};
15
16void g(void) {
17 struct S s[1];
18 s->x = 1;
19 s->z = 2;
20}