1// Member operator "->" can't be applied to non-pointer type "varying struct Foo"
2
3struct Foo { int x; };
4
5int func(Foo a) {
6    a->x = 0;
7}
8