Import upstream sources.
[cparse] / tests / fail-dot-operator-4.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 . y;
9 }