1// Unable to apply SOA conversion to struct due to "uniform int32" member "x" with bound "uniform"
2
3struct Point { uniform int x; float a, b, c; };
4
5void foo(soa<8> Point pts[]);
6