aboutsummaryrefslogtreecommitdiff
path: root/test/Sema/member-reference.c
blob: 784d60020ad3aa29d81e19b884375d6db28a32a6 (plain)
1
2
3
4
5
6
7
8
9
// RUN: clang %s -verify -fsyntax-only

struct simple { int i; };

void f(void) {
   struct simple s[1];
   s->i = 1;
}