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