aggr138
auto aggr138 = 
q{--- aggr138
	// lowering
	struct Point { i32 x; i32 y; }
	i32 getX(Point neighbor) {
		return neighbor.x; // neighbor.x is member 0
	}
	i32 getY(Point neighbor) {
		return neighbor.y; // neighbor.y is member 1
	}
};
  
		tests aggregates 
		functionsvariables