Import upstream sources.
[cparse] / tests / fail-arrow-operator-3.c
1 /* -> takes a structure or union and a field name */
2
3 struct foo {
4 int x;
5 } *s;
6
7 int fn() {
8 return s -> 1;
9 }