aggr129
auto aggr129 =
q{--- aggr129
// Extract member from small struct (0 offset)
struct Point { i32 x; i32 y; }
void run(Point* points, Point neighbor)
{
Point* t = &points[neighbor.x]; // neighbor.x is 0th member
t.x = 42;
}
};
tests aggregates
functionsvariables