struct S { v: vec3, }; var P : S; fn f() { P.v = vec3(1, 2, 3); P.v.x = 1; P.v.y = 2; P.v.z = 3; }