blob: e1b0315b14ffb120fa848cb02dcf118488d6a5f7 [file] [log] [blame]
enable f16;
struct S {
v : vec3<f16>,
}
var<private> P : S;
fn f() {
P.v = vec3<f16>(1.0h, 2.0h, 3.0h);
P.v.x = 1.0h;
P.v.y = 2.0h;
P.v.z = 3.0h;
}