struct Vec2
{
    float a;
    float b;
};

int main()
{
	int assert_s[ sizeof(Vec2) == 2*sizeof(float) ? 1 : -1 ];
}