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