Remove len parameter from splat in standard lib

This commit is contained in:
antlilja
2023-07-06 19:48:42 +02:00
committed by Andrew Kelley
parent 4bce7b1db9
commit b463e429b8
7 changed files with 79 additions and 59 deletions

View File

@@ -197,7 +197,7 @@ test "stringify struct with custom stringifier" {
}
test "stringify vector" {
try teststringify("[1,1]", @splat(2, @as(u32, 1)), StringifyOptions{});
try teststringify("[1,1]", @as(@Vector(2, u32), @splat(1)), StringifyOptions{});
}
test "stringify tuple" {