mirror of
https://github.com/ziglang/zig.git
synced 2026-02-12 20:37:54 +00:00
add test for previous commit
This commit is contained in:
parent
8e4f3a6f15
commit
9e11f67f0d
@ -74,3 +74,9 @@ test "implicit cast vector to array" {
|
||||
S.doTheTest();
|
||||
comptime S.doTheTest();
|
||||
}
|
||||
|
||||
test "array to vector" {
|
||||
var foo: f32 = 3.14;
|
||||
var arr = [4]f32{ foo, 1.5, 0.0, 0.0 };
|
||||
var vec: @Vector(4, f32) = arr;
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user