test257
auto test257 = 
q{--- test257.vx
	// offsetof
	struct Color { u8 r; u8 g; u8 b; u8 a; }
	u64 offsetof_r() { return Color.r.offsetof; }
	u64 offsetof_g() { return Color.g.offsetof; }
	u64 offsetof_b() { return Color.b.offsetof; }
	u64 offsetof_a() { return Color.a.offsetof; }
};
  
		tests passing 
		functionsvariables