blob: 2f149183d64976c13e53c9e7d6a761f740ce7907 [file] [log] [blame]
enable f16;
var<private> t : f16;
fn m() -> mat3x2<f16> {
t = t + 1.0h;
return mat3x2<f16>(1.0h, 2.0h,
3.0h, 4.0h,
5.0h, 6.0h);
}
fn f() {
var v : mat3x2<f32> = mat3x2<f32>(m());
}