commit 6d997ebe47d91641e70971bf3c227df6cbae041a (tree) parent 4eb8360911d80d4891be6ed47792121a2ccde353 Author: Matthew Lugg <mlugg@mlugg.co.uk> Date: Sun, 1 Mar 2026 19:18:04 +0000 tests: get cases passing (and a few other bits) Diffstat:
94 files changed, 4213 insertions(+), 4292 deletions(-)
diff --git a/test/c_abi/main.zig b/test/c_abi/main.zig @@ -718,7 +718,7 @@ export fn zig_med_struct_ints(s: MedStructInts) void { expect(s.z == 3) catch @panic("test failure"); } -const SmallPackedStruct = packed struct { +const SmallPackedStruct = packed struct(u8) { a: u2, b: u2, c: u2, @@ -744,7 +744,7 @@ test "C ABI small packed struct" { try expect(s2.d == 3); } -const BigPackedStruct = packed struct { +const BigPackedStruct = packed struct(u128) { a: u64, b: u64, }; diff --git a/test/cases/compile_errors/@import_zon_bad_type.zig b/test/cases/compile_errors/@import_zon_bad_type.zig @@ -116,13 +116,13 @@ export fn testMutablePointer() void { // tmp.zig:85:26: note: ZON does not allow nested optionals // tmp.zig:90:29: error: type '*i32' is not available in ZON // tmp.zig:90:29: note: ZON does not allow mutable pointers -// neg_inf.zon:1:1: error: expected type '@EnumLiteral()' -// tmp.zig:37:38: note: imported here // neg_inf.zon:1:1: error: expected type '?u8' // tmp.zig:57:28: note: imported here +// neg_inf.zon:1:1: error: expected type '@EnumLiteral()' +// tmp.zig:37:38: note: imported here // neg_inf.zon:1:1: error: expected type 'tmp.E' // tmp.zig:63:26: note: imported here -// neg_inf.zon:1:1: error: expected type 'tmp.U' -// tmp.zig:69:26: note: imported here // neg_inf.zon:1:1: error: expected type 'tmp.EU' // tmp.zig:75:27: note: imported here +// neg_inf.zon:1:1: error: expected type 'tmp.U' +// tmp.zig:69:26: note: imported here diff --git a/test/cases/compile_errors/@import_zon_opt_in_err.zig b/test/cases/compile_errors/@import_zon_opt_in_err.zig @@ -58,25 +58,25 @@ export fn testVector() void { // error // imports=zon/vec2.zon // -// vec2.zon:1:2: error: expected type '?f32' -// tmp.zig:2:29: note: imported here // vec2.zon:1:2: error: expected type '*const ?f32' // tmp.zig:7:36: note: imported here // vec2.zon:1:2: error: expected type '?*const f32' // tmp.zig:12:36: note: imported here +// vec2.zon:1:2: error: expected type '?@EnumLiteral()' +// tmp.zig:33:39: note: imported here +// vec2.zon:1:2: error: expected type '?@Vector(3, f32)' +// tmp.zig:54:41: note: imported here +// vec2.zon:1:2: error: expected type '?[1]u8' +// tmp.zig:38:31: note: imported here +// vec2.zon:1:2: error: expected type '?[]const u8' +// tmp.zig:49:36: note: imported here // vec2.zon:1:2: error: expected type '?bool' // tmp.zig:17:30: note: imported here +// vec2.zon:1:2: error: expected type '?f32' +// tmp.zig:2:29: note: imported here // vec2.zon:1:2: error: expected type '?i32' // tmp.zig:22:29: note: imported here // vec2.zon:1:2: error: expected type '?tmp.Enum' // tmp.zig:28:30: note: imported here -// vec2.zon:1:2: error: expected type '?@EnumLiteral()' -// tmp.zig:33:39: note: imported here -// vec2.zon:1:2: error: expected type '?[1]u8' -// tmp.zig:38:31: note: imported here // vec2.zon:1:2: error: expected type '?tmp.Union' // tmp.zig:44:31: note: imported here -// vec2.zon:1:2: error: expected type '?[]const u8' -// tmp.zig:49:36: note: imported here -// vec2.zon:1:2: error: expected type '?@Vector(3, f32)' -// tmp.zig:54:41: note: imported here diff --git a/test/cases/compile_errors/@import_zon_opt_in_err_struct.zig b/test/cases/compile_errors/@import_zon_opt_in_err_struct.zig @@ -13,7 +13,7 @@ export fn testTuple() void { // error // imports=zon/nan.zon // -//nan.zon:1:1: error: expected type '?tmp.Struct' -//tmp.zig:3:32: note: imported here -//nan.zon:1:1: error: expected type '?struct { bool }' -//tmp.zig:9:31: note: imported here +// nan.zon:1:1: error: expected type '?struct { bool }' +// tmp.zig:9:31: note: imported here +// nan.zon:1:1: error: expected type '?tmp.Struct' +// tmp.zig:3:32: note: imported here diff --git a/test/cases/compile_errors/@intFromPtr_with_bad_type.zig b/test/cases/compile_errors/@intFromPtr_with_bad_type.zig @@ -1,9 +0,0 @@ -const x = 42; -const y = @intFromPtr(&x); -pub export fn entry() void { - _ = y; -} - -// error -// -// :2:23: error: comptime-only type 'comptime_int' has no pointer address diff --git a/test/cases/compile_errors/C_pointer_pointing_to_non_C_ABI_compatible_type_or_has_align_attr.zig b/test/cases/compile_errors/C_pointer_pointing_to_non_C_ABI_compatible_type_or_has_align_attr.zig @@ -1,12 +0,0 @@ -const Foo = struct { a: u32 }; -export fn a() void { - const T = [*c]Foo; - const t: T = undefined; - _ = t; -} - -// error -// -// :3:19: error: C pointers cannot point to non-C-ABI-compatible type 'tmp.Foo' -// :3:19: note: only extern structs and ABI sized packed structs are extern compatible -// :1:13: note: struct declared here diff --git a/test/cases/compile_errors/aggregate_too_large.zig b/test/cases/compile_errors/aggregate_too_large.zig @@ -12,16 +12,14 @@ const U = union { b: [1 << 32]u8, }; -const V = union { - a: u32, - b: T, -}; - comptime { - _ = S; - _ = T; - _ = U; - _ = V; + _ = @as(S, undefined); +} +comptime { + _ = @as(T, undefined); +} +comptime { + _ = @as(U, undefined); } // error diff --git a/test/cases/compile_errors/alignOf_bad_type.zig b/test/cases/compile_errors/alignOf_bad_type.zig @@ -9,5 +9,5 @@ export fn entry1() usize { // error // // :2:21: error: no align available for uninstantiable type 'noreturn' -// :6:21: error: no align available for uninstantiable type 'alignOf_bad_type.S' +// :6:21: error: no align available for uninstantiable type 'tmp.S' // :4:11: note: struct declared here diff --git a/test/cases/compile_errors/align_zero.zig b/test/cases/compile_errors/align_zero.zig @@ -30,11 +30,11 @@ export fn g() void { } export fn h() void { - _ = struct { field: i32 align(0) }; + _ = @as(struct { field: i32 align(0) }, undefined); } export fn i() void { - _ = union { field: i32 align(0) }; + _ = @as(union { field: i32 align(0) }, undefined); } export fn j() void { @@ -54,7 +54,7 @@ export fn k() void { // :20:30: error: alignment must be >= 1 // :25:16: error: alignment must be >= 1 // :29:17: error: alignment must be >= 1 -// :33:35: error: alignment must be >= 1 -// :37:34: error: alignment must be >= 1 +// :33:39: error: alignment must be >= 1 +// :37:38: error: alignment must be >= 1 // :41:51: error: alignment must be >= 1 // :45:25: error: alignment must be >= 1 diff --git a/test/cases/compile_errors/assign_inline_fn_to_non-comptime_var.zig b/test/cases/compile_errors/assign_inline_fn_to_non-comptime_var.zig @@ -1,10 +0,0 @@ -export fn entry() void { - var a = &b; - _ = &a; -} -inline fn b() void {} - -// error -// -// :2:9: error: variable of type '*const fn () callconv(.@"inline") void' must be const or comptime -// :2:9: note: function has inline calling convention diff --git a/test/cases/compile_errors/bit_ptr_non_packed.zig b/test/cases/compile_errors/bit_ptr_non_packed.zig @@ -16,7 +16,11 @@ export fn entry3() void { // error // // :3:23: error: bit-pointer cannot refer to value of type 'tmp.entry1.S' -// :3:23: note: only packed structs layout are allowed in packed types +// :3:23: note: non-packed structs do not have a bit-packed representation +// :2:22: note: struct declared here // :8:36: error: bit-pointer cannot refer to value of type 'tmp.entry2.S' -// :8:36: note: only packed structs layout are allowed in packed types +// :8:36: note: non-packed structs do not have a bit-packed representation +// :7:15: note: struct declared here // :13:23: error: bit-pointer cannot refer to value of type 'tmp.entry3.E' +// :12:15: note: integer tag type of enum is inferred +// :12:15: note: consider explicitly specifying the integer tag type diff --git a/test/cases/compile_errors/bitsize_of_packed_struct_checks_backing_int_ty.zig b/test/cases/compile_errors/bitsize_of_packed_struct_checks_backing_int_ty.zig @@ -8,4 +8,6 @@ pub export fn entry() void { // error // -// :1:27: error: backing integer type 'u32' has bit size 32 but the struct fields have a total bit size of 1 +// :1:20: error: backing integer bit width does not match total bit width of fields +// :1:27: note: backing integer 'u32' has bit width '32' +// :1:20: note: struct fields have total bit width '1' diff --git a/test/cases/compile_errors/c_pointer_to_void.zig b/test/cases/compile_errors/c_pointer_to_void.zig @@ -1,9 +0,0 @@ -export fn entry() void { - const a: [*c]void = undefined; - _ = a; -} - -// error -// -// :2:18: error: C pointers cannot point to non-C-ABI-compatible type 'void' -// :2:18: note: 'void' is a zero bit type; for C 'void' use 'anyopaque' diff --git a/test/cases/compile_errors/call_runtime_known_inline_fn_ptr.zig b/test/cases/compile_errors/call_runtime_known_inline_fn_ptr.zig @@ -0,0 +1,11 @@ +export fn entry() void { + var a = &b; + a = a; + a(); +} +inline fn b() void {} + +// error +// +// :4:5: error: unable to resolve comptime value +// :4:5: note: function being called inline must be comptime-known diff --git a/test/cases/compile_errors/coerce_int_to_float.zig b/test/cases/compile_errors/coerce_int_to_float.zig @@ -40,13 +40,13 @@ export fn entry() void { // error // -// :6:20: error: expected type 'f16', found 'u12' +// :6:20: error: expected type 'f128', found 'i115' +// :6:20: error: expected type 'f128', found 'u114' // :6:20: error: expected type 'f16', found 'i13' -// :6:20: error: expected type 'f32', found 'u25' +// :6:20: error: expected type 'f16', found 'u12' // :6:20: error: expected type 'f32', found 'i26' -// :6:20: error: expected type 'f64', found 'u54' +// :6:20: error: expected type 'f32', found 'u25' // :6:20: error: expected type 'f64', found 'i55' -// :6:20: error: expected type 'f80', found 'u65' +// :6:20: error: expected type 'f64', found 'u54' // :6:20: error: expected type 'f80', found 'i66' -// :6:20: error: expected type 'f128', found 'u114' -// :6:20: error: expected type 'f128', found 'i115' +// :6:20: error: expected type 'f80', found 'u65' diff --git a/test/cases/compile_errors/comptime_var_referenced_by_type.zig b/test/cases/compile_errors/comptime_var_referenced_by_type.zig @@ -21,6 +21,6 @@ comptime { // error // // :7:16: error: captured value contains reference to comptime var -// :7:16: note: 'wrapper' points to '@as(*const tmp.Wrapper, @ptrCast(&v0)).*', where +// :7:16: note: 'wrapper' points to 'v0', where // :16:5: note: 'v0.ptr' points to comptime var declared here // :17:29: note: called at comptime here diff --git a/test/cases/compile_errors/direct_struct_loop.zig b/test/cases/compile_errors/direct_struct_loop.zig @@ -7,4 +7,4 @@ export fn entry() usize { // error // -// :1:11: error: struct 'tmp.A' depends on itself +// :2:8: error: type 'tmp.A' depends on itself for field declared here diff --git a/test/cases/compile_errors/directly_embedding_opaque_type_in_struct_and_union.zig b/test/cases/compile_errors/directly_embedding_opaque_type_in_struct_and_union.zig @@ -26,9 +26,11 @@ export fn d() void { // error // -// :3:8: error: opaque types have unknown size and therefore cannot be directly embedded in structs +// :3:8: error: cannot directly embed opaque type 'tmp.O' in struct +// :3:8: note: opaque types have unknown size // :1:11: note: opaque declared here -// :7:10: error: opaque types have unknown size and therefore cannot be directly embedded in unions +// :7:10: error: cannot directly embed opaque type 'tmp.O' in union +// :7:10: note: opaque types have unknown size // :1:11: note: opaque declared here // :18:24: error: cannot cast to opaque type 'tmp.O' // :1:11: note: opaque declared here diff --git a/test/cases/compile_errors/enum_field_value_references_enum.zig b/test/cases/compile_errors/enum_field_value_references_enum.zig @@ -1,15 +1,11 @@ pub const Foo = enum(c_int) { - A = Foo.B, - C = D, - - pub const B = 0; + a = 10, + b = @intFromEnum(Foo.a) - 1, }; export fn entry() void { - const s: Foo = Foo.E; - _ = s; + _ = @as(Foo, .a); } -const D = 1; // error // -// :1:5: error: dependency loop detected +// :3:25: error: type 'tmp.Foo' depends on itself for field usage here diff --git a/test/cases/compile_errors/enum_field_value_references_nonexistent_circular.zig b/test/cases/compile_errors/enum_field_value_references_nonexistent_circular.zig @@ -10,4 +10,4 @@ const D = 1; // error // -// :1:5: error: dependency loop detected +// :2:12: error: type 'tmp.Foo' depends on itself for field usage here diff --git a/test/cases/compile_errors/enum_value_already_taken.zig b/test/cases/compile_errors/enum_value_already_taken.zig @@ -12,5 +12,5 @@ export fn entry() void { // error // -// :6:9: error: enum tag value 60 already taken -// :4:9: note: other occurrence here +// :6:9: error: enum tag value '60' for field 'E' already taken +// :4:9: note: previous occurrence in field 'C' diff --git a/test/cases/compile_errors/error_set_membership.zig b/test/cases/compile_errors/error_set_membership.zig @@ -26,5 +26,6 @@ pub fn main() Error!void { // error // target=x86_64-linux // -// :23:29: error: expected type 'error{InvalidCharacter}', found '@typeInfo(@typeInfo(@TypeOf(tmp.fooey)).@"fn".return_type.?).error_union.error_set' +// :23:29: error: expected type 'error{InvalidCharacter}!void', found '@typeInfo(@typeInfo(@TypeOf(tmp.fooey)).@"fn".return_type.?).error_union.error_set' // :23:29: note: 'error.InvalidDirection' not a member of destination error set +// :22:20: note: function return type declared here diff --git a/test/cases/compile_errors/AstGen_comptime_known_struct_is_resolved_before_error.zig b/test/cases/compile_errors/fn_body_in_struct_runtime_known.zig diff --git a/test/cases/compile_errors/function_ptr_alignment.zig b/test/cases/compile_errors/function_ptr_alignment.zig @@ -11,5 +11,5 @@ comptime { // error // target=x86_64-linux // -// :8:41: error: expected type '*align(2) const fn () void', found '*const fn () void' +// :8:41: error: expected type '*align(2) const fn () void', found '*align(1) const fn () void' // :8:41: note: pointer alignment '1' cannot cast into pointer alignment '2' diff --git a/test/cases/compile_errors/function_with_non-extern_non-packed_struct_parameter.zig b/test/cases/compile_errors/function_with_non-extern_non-packed_struct_parameter.zig @@ -11,5 +11,5 @@ export fn entry(foo: Foo) void { // target=x86_64-linux // // :6:17: error: parameter of type 'tmp.Foo' not allowed in function with calling convention 'x86_64_sysv' -// :6:17: note: only extern structs and ABI sized packed structs are extern compatible +// :6:17: note: struct with automatic layout has no guaranteed in-memory representation // :1:13: note: struct declared here diff --git a/test/cases/compile_errors/function_with_non-extern_non-packed_union_parameter.zig b/test/cases/compile_errors/function_with_non-extern_non-packed_union_parameter.zig @@ -11,5 +11,5 @@ export fn entry(foo: Foo) void { // target=x86_64-linux // // :6:17: error: parameter of type 'tmp.Foo' not allowed in function with calling convention 'x86_64_sysv' -// :6:17: note: only extern unions and ABI sized packed unions are extern compatible +// :6:17: note: union with automatic layout has no guaranteed in-memory representation // :1:13: note: union declared here diff --git a/test/cases/compile_errors/generic_function_returning_opaque_type.zig b/test/cases/compile_errors/generic_function_returning_opaque_type.zig @@ -11,6 +11,6 @@ export fn bar() void { // error // +// :1:30: error: opaque return type 'anyopaque' not allowed // :1:30: error: opaque return type 'tmp.MyOpaque' not allowed // :4:18: note: opaque declared here -// :1:30: error: opaque return type 'anyopaque' not allowed diff --git a/test/cases/compile_errors/indexing_an_array_of_size_zero.zig b/test/cases/compile_errors/indexing_an_array_of_size_zero.zig @@ -6,4 +6,4 @@ export fn foo() void { // error // -// :3:27: error: indexing into empty array is not allowed +// :3:27: error: cannot index into empty array diff --git a/test/cases/compile_errors/indexing_an_array_of_size_zero_with_runtime_index.zig b/test/cases/compile_errors/indexing_an_array_of_size_zero_with_runtime_index.zig @@ -8,4 +8,4 @@ export fn foo() void { // error // -// :5:27: error: indexing into empty array is not allowed +// :5:27: error: cannot index into empty array diff --git a/test/cases/compile_errors/indirect_struct_loop.zig b/test/cases/compile_errors/indirect_struct_loop.zig @@ -13,4 +13,8 @@ export fn entry() usize { // error // -// :1:11: error: struct 'tmp.A' depends on itself +// error: dependency loop with length 3 +// :2:8: note: type 'tmp.A' depends on type 'tmp.B' for field declared here +// :5:8: note: type 'tmp.B' depends on type 'tmp.C' for field declared here +// :8:8: note: type 'tmp.C' depends on type 'tmp.A' for field declared here +// note: eliminate any one of these dependencies to break the loop diff --git a/test/cases/compile_errors/initialize_empty_union.zig b/test/cases/compile_errors/initialize_empty_union.zig @@ -49,33 +49,33 @@ export fn deref5(ptr: *const U5) void { // error // -// :13:17: error: expected type 'initialize_empty_union.U0', found '@TypeOf(undefined)' -// :13:17: note: cannot coerce to uninstantiable type 'initialize_empty_union.U0' +// :13:17: error: expected type 'tmp.U0', found '@TypeOf(undefined)' +// :13:17: note: cannot coerce to uninstantiable type 'tmp.U0' // :5:12: note: union declared here -// :16:17: error: expected type 'initialize_empty_union.U1', found '@TypeOf(undefined)' -// :16:17: note: cannot coerce to uninstantiable type 'initialize_empty_union.U1' +// :16:17: error: expected type 'tmp.U1', found '@TypeOf(undefined)' +// :16:17: note: cannot coerce to uninstantiable type 'tmp.U1' // :6:12: note: union declared here -// :19:17: error: expected type 'initialize_empty_union.U2', found '@TypeOf(undefined)' -// :19:17: note: cannot coerce to uninstantiable type 'initialize_empty_union.U2' +// :19:17: error: expected type 'tmp.U2', found '@TypeOf(undefined)' +// :19:17: note: cannot coerce to uninstantiable type 'tmp.U2' // :7:12: note: union declared here -// :22:17: error: expected type 'initialize_empty_union.U3', found '@TypeOf(undefined)' -// :22:17: note: cannot coerce to uninstantiable type 'initialize_empty_union.U3' +// :22:17: error: expected type 'tmp.U3', found '@TypeOf(undefined)' +// :22:17: note: cannot coerce to uninstantiable type 'tmp.U3' // :8:12: note: union declared here -// :25:17: error: expected type 'initialize_empty_union.U4', found '@TypeOf(undefined)' -// :25:17: note: cannot coerce to uninstantiable type 'initialize_empty_union.U4' +// :25:17: error: expected type 'tmp.U4', found '@TypeOf(undefined)' +// :25:17: note: cannot coerce to uninstantiable type 'tmp.U4' // :9:12: note: union declared here -// :28:17: error: expected type 'initialize_empty_union.U5', found '@TypeOf(undefined)' -// :28:17: note: cannot coerce to uninstantiable type 'initialize_empty_union.U5' +// :28:17: error: expected type 'tmp.U5', found '@TypeOf(undefined)' +// :28:17: note: cannot coerce to uninstantiable type 'tmp.U5' // :10:12: note: union declared here -// :32:12: error: cannot load uninstantiable type 'initialize_empty_union.U0' +// :32:12: error: cannot load uninstantiable type 'tmp.U0' // :5:12: note: union declared here -// :35:12: error: cannot load uninstantiable type 'initialize_empty_union.U1' +// :35:12: error: cannot load uninstantiable type 'tmp.U1' // :6:12: note: union declared here -// :38:12: error: cannot load uninstantiable type 'initialize_empty_union.U2' +// :38:12: error: cannot load uninstantiable type 'tmp.U2' // :7:12: note: union declared here -// :41:12: error: cannot load uninstantiable type 'initialize_empty_union.U3' +// :41:12: error: cannot load uninstantiable type 'tmp.U3' // :8:12: note: union declared here -// :44:12: error: cannot load uninstantiable type 'initialize_empty_union.U4' +// :44:12: error: cannot load uninstantiable type 'tmp.U4' // :9:12: note: union declared here -// :47:12: error: cannot load uninstantiable type 'initialize_empty_union.U5' +// :47:12: error: cannot load uninstantiable type 'tmp.U5' // :10:12: note: union declared here diff --git a/test/cases/compile_errors/instantiating_an_undefined_value_for_an_invalid_struct_that_contains_itself.zig b/test/cases/compile_errors/instantiating_an_undefined_value_for_an_invalid_struct_that_contains_itself.zig @@ -10,4 +10,4 @@ export fn entry() usize { // error // -// :1:13: error: struct 'tmp.Foo' depends on itself +// :2:8: error: type 'tmp.Foo' depends on itself for field declared here diff --git a/test/cases/compile_errors/instantiating_an_undefined_value_for_an_invalid_union_that_contains_itself.zig b/test/cases/compile_errors/instantiating_an_undefined_value_for_an_invalid_union_that_contains_itself.zig @@ -10,4 +10,4 @@ export fn entry() usize { // error // -// :1:13: error: union 'tmp.Foo' depends on itself +// :2:8: error: type 'tmp.Foo' depends on itself for field declared here diff --git a/test/cases/compile_errors/invalid_dependency_on_struct_size.zig b/test/cases/compile_errors/invalid_dependency_on_struct_size.zig @@ -1,16 +1,18 @@ -comptime { - const S = struct { - const Foo = struct { - y: Bar, - }; - const Bar = struct { - y: if (@sizeOf(Foo) == 0) u64 else void, - }; +const S = struct { + const Foo = struct { + y: Bar, }; - + const Bar = struct { + y: if (@sizeOf(Foo) == 0) u64 else void, + }; +}; +comptime { _ = @sizeOf(S.Foo) + 1; } // error // -// :6:21: error: struct layout depends on it having runtime bits +// error: dependency loop with length 2 +// :3:12: note: type 'tmp.S.Foo' depends on type 'tmp.S.Bar' for field declared here +// :6:24: note: type 'tmp.S.Bar' depends on type 'tmp.S.Foo' for size query here +// note: eliminate any one of these dependencies to break the loop diff --git a/test/cases/compile_errors/invalid_optional_type_in_extern_struct.zig b/test/cases/compile_errors/invalid_optional_type_in_extern_struct.zig @@ -2,10 +2,10 @@ const stroo = extern struct { moo: ?[*c]u8, }; export fn testf(fluff: *stroo) void { - _ = fluff; + _ = fluff.*; } // error // // :2:10: error: extern structs cannot contain fields of type '?[*c]u8' -// :2:10: note: only pointer like optionals are extern compatible +// :2:10: note: non-pointer optionals have no guaranteed in-memory representation diff --git a/test/cases/compile_errors/invalid_pointer_arithmetic.zig b/test/cases/compile_errors/invalid_pointer_arithmetic.zig @@ -27,11 +27,6 @@ comptime { } comptime { - const x: [*]u0 = @ptrFromInt(1); - _ = x + 1; -} - -comptime { const x: *u0 = @ptrFromInt(1); const y: *u0 = @ptrFromInt(2); _ = x - y; @@ -46,5 +41,4 @@ comptime { // :12:11: error: invalid operands to binary expression: 'pointer' and 'pointer' // :20:11: error: incompatible pointer arithmetic operands '[*]u8' and '[*]u16' // :26:11: error: incompatible pointer arithmetic operands '*u8' and '*u16' -// :31:11: error: pointer arithmetic requires element type 'u0' to have runtime bits -// :37:11: error: pointer arithmetic requires element type 'u0' to have runtime bits +// :32:11: error: pointer subtraction requires element type 'u0' to have runtime bits diff --git a/test/cases/compile_errors/invalid_type_in_builtin_extern.zig b/test/cases/compile_errors/invalid_type_in_builtin_extern.zig @@ -1,16 +1,22 @@ const x = @extern(*comptime_int, .{ .name = "foo" }); const y = @extern(*fn (u8) u8, .{ .name = "bar" }); -pub export fn entry() void { +const z = @extern(*fn (u8) callconv(.c) u8, .{ .name = "bar" }); +comptime { _ = x; } -pub export fn entry2() void { +comptime { _ = y; } +comptime { + _ = z; +} // error // // :1:19: error: extern symbol cannot have type '*comptime_int' -// :1:19: note: pointer to comptime-only type 'comptime_int' +// :1:19: note: pointer element type 'comptime_int' is not extern compatible // :2:19: error: extern symbol cannot have type '*fn (u8) u8' -// :2:19: note: pointer to extern function must be 'const' +// :2:19: note: pointer element type 'fn (u8) u8' is not extern compatible // :2:19: note: extern function must specify calling convention +// :3:19: error: extern symbol cannot have type '*fn (u8) callconv(.c) u8' +// :3:19: note: pointer to extern function must be 'const' diff --git a/test/cases/compile_errors/non-const_variables_of_things_that_require_const_variables.zig b/test/cases/compile_errors/non-const_variables_of_things_that_require_const_variables.zig @@ -1,49 +1,44 @@ -export fn entry1() void { - var m2 = &2; - _ = &m2; -} -export fn entry2() void { +export fn entry0() void { var a = undefined; _ = &a; } -export fn entry3() void { +export fn entry1() void { var b = 1; _ = &b; } -export fn entry4() void { +export fn entry2() void { var c = 1.0; _ = &c; } -export fn entry5() void { +export fn entry3() void { var d = null; _ = &d; } -export fn entry6(opaque_: *Opaque) void { +export fn entry4(opaque_: *Opaque) void { var e = opaque_.*; _ = &e; } -export fn entry7() void { +export fn entry5() void { var f = i32; _ = &f; } const Opaque = opaque {}; -export fn entry8() void { +export fn entry6() void { var e: Opaque = undefined; _ = &e; } // error // -// :2:9: error: variable of type '*const comptime_int' must be const or comptime -// :6:9: error: variable of type '@TypeOf(undefined)' must be const or comptime -// :10:9: error: variable of type 'comptime_int' must be const or comptime +// :2:9: error: variable of type '@TypeOf(undefined)' must be const or comptime +// :6:9: error: variable of type 'comptime_int' must be const or comptime +// :6:9: note: to modify this variable at runtime, it must be given an explicit fixed-size number type +// :10:9: error: variable of type 'comptime_float' must be const or comptime // :10:9: note: to modify this variable at runtime, it must be given an explicit fixed-size number type -// :14:9: error: variable of type 'comptime_float' must be const or comptime -// :14:9: note: to modify this variable at runtime, it must be given an explicit fixed-size number type -// :18:9: error: variable of type '@TypeOf(null)' must be const or comptime -// :22:20: error: cannot load opaque type 'tmp.Opaque' -// :29:16: note: opaque declared here -// :26:9: error: variable of type 'type' must be const or comptime -// :26:9: note: types are not available at runtime -// :31:12: error: non-extern variable with opaque type 'tmp.Opaque' -// :29:16: note: opaque declared here +// :14:9: error: variable of type '@TypeOf(null)' must be const or comptime +// :18:20: error: cannot load opaque type 'tmp.Opaque' +// :25:16: note: opaque declared here +// :22:9: error: variable of type 'type' must be const or comptime +// :22:9: note: types are not available at runtime +// :27:12: error: non-extern variable with opaque type 'tmp.Opaque' +// :25:16: note: opaque declared here diff --git a/test/cases/compile_errors/non-exhaustive_enum_marker_assigned_a_value.zig b/test/cases/compile_errors/non-exhaustive_enum_marker_assigned_a_value.zig @@ -3,18 +3,7 @@ const A = enum { b, _ = 1, }; -const B = enum { - a, - b, - _, -}; -comptime { - _ = A; - _ = B; -} // error // // :4:9: error: '_' is used to mark an enum as non-exhaustive and cannot be assigned a value -// :6:11: error: non-exhaustive enum missing integer tag type -// :9:5: note: marked non-exhaustive here diff --git a/test/cases/compile_errors/non-exhaustive_enum_missing_tag_type.zig b/test/cases/compile_errors/non-exhaustive_enum_missing_tag_type.zig @@ -0,0 +1,10 @@ +const E = enum { + a, + b, + _, +}; + +// error +// +// :1:11: error: non-exhaustive enum missing integer tag type +// :4:5: note: marked non-exhaustive here diff --git a/test/cases/compile_errors/non-exhaustive_enum_specifies_every_value.zig b/test/cases/compile_errors/non-exhaustive_enum_specifies_every_value.zig @@ -4,7 +4,7 @@ const C = enum(u1) { _, }; pub export fn entry() void { - _ = C; + _ = C.a; } // error diff --git a/test/cases/compile_errors/non-inline_for_loop_on_a_type_that_requires_comptime.zig b/test/cases/compile_errors/non-inline_for_loop_on_a_type_that_requires_comptime.zig @@ -11,6 +11,6 @@ export fn entry() void { // error // -// :7:10: error: values of type '[2]tmp.Foo' must be comptime-known, but index value is runtime-known +// :7:10: error: values of type 'tmp.Foo' must be comptime-known, but index value is runtime-known // :3:8: note: struct requires comptime because of this field // :3:8: note: types are not available at runtime diff --git a/test/cases/compile_errors/non_constant_expression_in_array_size.zig b/test/cases/compile_errors/non_constant_expression_in_array_size.zig @@ -14,4 +14,4 @@ export fn entry() usize { // // :6:12: error: unable to resolve comptime value // :2:12: note: called at comptime from here -// :1:13: note: types must be comptime-known +// :2:8: note: struct field types must be comptime-known diff --git a/test/cases/compile_errors/noreturn_struct_field.zig b/test/cases/compile_errors/noreturn_struct_field.zig @@ -1,10 +0,0 @@ -const S = struct { - s: noreturn, -}; -comptime { - _ = @typeInfo(S); -} - -// error -// -// :2:8: error: struct fields cannot be 'noreturn' diff --git a/test/cases/compile_errors/old_fn_ptr_in_extern_context.zig b/test/cases/compile_errors/old_fn_ptr_in_extern_context.zig @@ -4,15 +4,9 @@ const S = extern struct { comptime { _ = @sizeOf(S) == 1; } -comptime { - _ = [*c][4]fn () callconv(.c) void; -} // error // // :2:8: error: extern structs cannot contain fields of type 'fn () callconv(.c) void' // :2:8: note: type has no guaranteed in-memory representation // :2:8: note: use '*const ' to make a function pointer type -// :8:13: error: C pointers cannot point to non-C-ABI-compatible type '[4]fn () callconv(.c) void' -// :8:13: note: type has no guaranteed in-memory representation -// :8:13: note: use '*const ' to make a function pointer type diff --git a/test/cases/compile_errors/overflow_in_enum_value_allocation.zig b/test/cases/compile_errors/overflow_in_enum_value_allocation.zig @@ -9,4 +9,4 @@ pub export fn entry() void { // error // -// :3:5: error: enumeration value '256' too large for type 'u8' +// :3:5: error: enum tag value '256' too large for type 'u8' diff --git a/test/cases/compile_errors/packed_struct_backing_int_wrong.zig b/test/cases/compile_errors/packed_struct_backing_int_wrong.zig @@ -44,8 +44,12 @@ export fn entry7() void { // error // -// :2:31: error: backing integer type 'u32' has bit size 32 but the struct fields have a total bit size of 29 -// :9:31: error: backing integer type 'i31' has bit size 31 but the struct fields have a total bit size of 32 +// :2:24: error: backing integer bit width does not match total bit width of fields +// :2:31: note: backing integer 'u32' has bit width '32' +// :2:24: note: struct fields have total bit width '29' +// :9:24: error: backing integer bit width does not match total bit width of fields +// :9:31: note: backing integer 'i31' has bit width '31' +// :9:24: note: struct fields have total bit width '32' // :17:31: error: expected backing integer type, found 'void' // :23:31: error: expected backing integer type, found 'void' // :27:31: error: expected backing integer type, found 'noreturn' diff --git a/test/cases/compile_errors/packed_struct_with_fields_of_not_allowed_types.zig b/test/cases/compile_errors/packed_struct_with_fields_of_not_allowed_types.zig @@ -85,29 +85,32 @@ export fn entry15() void { // error // // :3:12: error: packed structs cannot contain fields of type 'anyerror' -// :3:12: note: type has no guaranteed in-memory representation +// :3:12: note: type does not have a bit-packed representation // :8:12: error: packed structs cannot contain fields of type '[2]u24' -// :8:12: note: type has no guaranteed in-memory representation +// :8:12: note: type does not have a bit-packed representation // :13:20: error: packed structs cannot contain fields of type 'anyerror!u32' -// :13:20: note: type has no guaranteed in-memory representation +// :13:20: note: type does not have a bit-packed representation // :18:12: error: packed structs cannot contain fields of type 'tmp.S' -// :18:12: note: only packed structs layout are allowed in packed types +// :18:12: note: non-packed structs do not have a bit-packed representation // :56:11: note: struct declared here // :23:12: error: packed structs cannot contain fields of type 'tmp.U' -// :23:12: note: only packed unions layout are allowed in packed types +// :23:12: note: non-packed unions do not have a bit-packed representation // :59:18: note: union declared here // :28:12: error: packed structs cannot contain fields of type '?anyerror' -// :28:12: note: type has no guaranteed in-memory representation +// :28:12: note: type does not have a bit-packed representation // :38:12: error: packed structs cannot contain fields of type 'fn () void' -// :38:12: note: type has no guaranteed in-memory representation -// :38:12: note: use '*const ' to make a function pointer type +// :38:12: note: type does not have a bit-packed representation +// :43:12: error: packed structs cannot contain fields of type '*const fn () void' +// :43:12: note: pointers cannot be directly bitpacked +// :43:12: note: consider using 'usize' and '@intFromPtr' // :65:31: error: packed structs cannot contain fields of type '[]u8' -// :65:31: note: slices have no guaranteed in-memory representation +// :65:31: note: slices do not have a bit-packed representation // :70:12: error: packed structs cannot contain fields of type '*type' -// :70:12: note: comptime-only pointer has no guaranteed in-memory representation -// :70:12: note: types are not available at runtime +// :70:12: note: pointers cannot be directly bitpacked +// :70:12: note: consider using 'usize' and '@intFromPtr' // :76:12: error: packed structs cannot contain fields of type 'tmp.entry14.E' -// :74:15: note: enum declared here +// :74:15: note: integer tag type of enum is inferred +// :74:15: note: consider explicitly specifying the integer tag type // :81:12: error: packed structs cannot contain fields of type '*const u32' // :81:12: note: pointers cannot be directly bitpacked // :81:12: note: consider using 'usize' and '@intFromPtr' diff --git a/test/cases/compile_errors/packed_union_fields_mismatch.zig b/test/cases/compile_errors/packed_union_fields_mismatch.zig @@ -1,12 +1,14 @@ export fn entry1() void { - _ = packed union { + const U = packed union { a: u1, b: u2, }; + _ = @as(U, undefined); } // error // -// :2:16: error: packed union has fields with mismatching bit sizes -// :3:12: note: 1 bits here -// :4:12: note: 2 bits here +// :4:12: error: field bit width does not match earlier field +// :4:12: note: field type 'u2' has bit width '2' +// :3:12: note: other field type 'u1' has bit width '1' +// :4:12: note: all fields in a packed union must have the same bit width diff --git a/test/cases/compile_errors/packed_union_given_enum_tag_type.zig b/test/cases/compile_errors/packed_union_given_enum_tag_type.zig @@ -1,18 +0,0 @@ -const Letter = enum { - A, - B, - C, -}; -const Payload = packed union(Letter) { - A: i32, - B: f64, - C: bool, -}; -export fn entry() void { - const a: Payload = .{ .A = 1234 }; - _ = a; -} - -// error -// -// :6:30: error: packed union does not support enum tag type diff --git a/test/cases/compile_errors/packed_union_with_fields_of_not_allowed_types.zig b/test/cases/compile_errors/packed_union_with_fields_of_not_allowed_types.zig @@ -1,6 +1,7 @@ +const S = struct { a: u32 }; export fn entry0() void { _ = @sizeOf(packed union { - foo: struct { a: u32 }, + foo: S, bar: bool, }); } @@ -12,9 +13,9 @@ export fn entry1() void { // error // -// :3:14: error: packed unions cannot contain fields of type 'packed_union_with_fields_of_not_allowed_types.entry0__union_180__struct_182' -// :3:14: note: non-packed structs do not have a bit-packed representation -// :3:14: note: struct declared here -// :9:12: error: packed unions cannot contain fields of type '*const u32' -// :9:12: note: pointers cannot be directly bitpacked -// :9:12: note: consider using 'usize' and '@intFromPtr' +// :4:14: error: packed unions cannot contain fields of type 'tmp.S' +// :4:14: note: non-packed structs do not have a bit-packed representation +// :1:11: note: struct declared here +// :10:12: error: packed unions cannot contain fields of type '*const u32' +// :10:12: note: pointers cannot be directly bitpacked +// :10:12: note: consider using 'usize' and '@intFromPtr' diff --git a/test/cases/compile_errors/pointer_in_bitpack.zig b/test/cases/compile_errors/pointer_in_bitpack.zig @@ -0,0 +1,22 @@ +const S = packed struct { + ptr: *u32, +}; +export fn foo() void { + _ = @as(S, undefined); +} + +const U = packed union { + ptr: *u32, +}; +export fn bar() void { + _ = @as(U, undefined); +} + +// error +// +// :2:10: error: packed structs cannot contain fields of type '*u32' +// :2:10: note: pointers cannot be directly bitpacked +// :2:10: note: consider using 'usize' and '@intFromPtr' +// :9:10: error: packed unions cannot contain fields of type '*u32' +// :9:10: note: pointers cannot be directly bitpacked +// :9:10: note: consider using 'usize' and '@intFromPtr' diff --git a/test/cases/compile_errors/reify_enum_with_duplicate_field.zig b/test/cases/compile_errors/reify_enum_with_duplicate_field.zig @@ -1,8 +1,9 @@ export fn entry() void { - _ = @Enum(u32, .nonexhaustive, &.{ "A", "A" }, &.{ 0, 1 }); + const E = @Enum(u32, .nonexhaustive, &.{ "A", "A" }, &.{ 0, 1 }); + _ = @as(E, undefined); } // error // -// :2:36: error: duplicate enum field 'A' -// :2:36: note: other field here +// :2:42: error: duplicate enum field 'A' at index '1' +// :2:42: note: previous field at index '0' diff --git a/test/cases/compile_errors/reify_enum_with_duplicate_tag_value.zig b/test/cases/compile_errors/reify_enum_with_duplicate_tag_value.zig @@ -1,8 +1,9 @@ export fn entry() void { - _ = @Enum(u32, .nonexhaustive, &.{ "A", "B" }, &.{ 10, 10 }); + const E = @Enum(u32, .nonexhaustive, &.{ "a", "b" }, &.{ 10, 10 }); + _ = E.a; } // error // -// :2:52: error: enum tag value 10 already taken -// :2:52: note: other enum tag value here +// :2:58: error: enum tag value '10' for field 'b' already taken +// :2:58: note: previous occurrence in field 'a' diff --git a/test/cases/compile_errors/reify_type_for_exhaustive_enum_with_non-integer_tag_type.zig b/test/cases/compile_errors/reify_type_for_exhaustive_enum_with_non-integer_tag_type.zig @@ -5,4 +5,4 @@ export fn entry() void { // error // -// :1:19: error: tag type must be an integer type +// :1:19: error: expected integer tag type, found 'bool' diff --git a/test/cases/compile_errors/reify_type_for_tagged_packed_union.zig b/test/cases/compile_errors/reify_type_for_tagged_packed_union.zig @@ -1,11 +0,0 @@ -const Tag = @Enum(u2, .exhaustive, &.{ "signed", "unsigned" }, &.{ 0, 1 }); -const Packed = @Union(.@"packed", Tag, &.{ "signed", "unsigned" }, &.{ i32, u32 }, &@splat(.{})); - -export fn entry() void { - const tagged: Packed = .{ .signed = -1 }; - _ = tagged; -} - -// error -// -// :2:35: error: packed union does not support enum tag type diff --git a/test/cases/compile_errors/reify_type_for_tagged_union_with_extra_enum_field.zig b/test/cases/compile_errors/reify_type_for_tagged_union_with_extra_enum_field.zig @@ -7,6 +7,5 @@ export fn entry() void { // error // -// :2:35: error: 1 enum fields missing in union -// :1:13: note: field 'arst' missing, declared here -// :1:13: note: enum declared here +// :2:16: error: enum field 'arst' missing from union +// :1:36: note: enum field here diff --git a/test/cases/compile_errors/reify_type_for_tagged_union_with_no_union_fields.zig b/test/cases/compile_errors/reify_type_for_tagged_union_with_no_union_fields.zig @@ -7,7 +7,5 @@ export fn entry() void { // error // -// :2:35: error: 2 enum fields missing in union -// :1:13: note: field 'signed' missing, declared here -// :1:13: note: field 'unsigned' missing, declared here -// :1:13: note: enum declared here +// :2:16: error: enum field 'signed' missing from union +// :1:36: note: enum field here diff --git a/test/cases/compile_errors/reify_type_for_union_with_opaque_field.zig b/test/cases/compile_errors/reify_type_for_union_with_opaque_field.zig @@ -1,9 +1,11 @@ -const Untagged = @Union(.auto, null, &.{"foo"}, &.{opaque {}}, &.{.{}}); +const Opaque = opaque {}; +const Untagged = @Union(.auto, null, &.{"foo"}, &.{Opaque}, &.{.{}}); export fn entry() usize { return @sizeOf(Untagged); } // error // -// :1:49: error: opaque types have unknown size and therefore cannot be directly embedded in unions -// :1:52: note: opaque declared here +// :2:49: error: cannot directly embed opaque type 'tmp.Opaque' in union +// :2:49: note: opaque types have unknown size +// :1:16: note: opaque declared here diff --git a/test/cases/compile_errors/reify_type_with_invalid_field_alignment.zig b/test/cases/compile_errors/reify_type_with_invalid_field_alignment.zig @@ -2,7 +2,11 @@ comptime { _ = @Union(.auto, null, &.{"foo"}, &.{usize}, &.{.{ .@"align" = 3 }}); } comptime { - _ = @Struct(.auto, null, &.{"a"}, &.{u32}, &.{.{ .@"comptime" = true, .@"align" = 5 }}); + _ = @Struct(.auto, null, &.{"a"}, &.{u32}, &.{.{ + .@"comptime" = true, + .@"align" = 5, + .default_value_ptr = &@as(u32, 0), + }}); } comptime { _ = @Pointer(.many, .{ .@"align" = 7 }, u8, null); @@ -12,4 +16,4 @@ comptime { // // :2:51: error: alignment value '3' is not a power of two // :5:48: error: alignment value '5' is not a power of two -// :8:26: error: alignment value '7' is not a power of two +// :12:26: error: alignment value '7' is not a power of two diff --git a/test/cases/compile_errors/resolve_inferred_error_set_of_generic_fn.zig b/test/cases/compile_errors/resolve_inferred_error_set_of_generic_fn.zig @@ -12,5 +12,4 @@ export fn entry() void { // error // -// :10:15: error: unable to resolve inferred error set of generic function -// :1:1: note: generic function declared here +// :1:1: error: cannot resolve inferred error set of generic function type 'fn (anytype) @typeInfo(@typeInfo(@TypeOf(tmp.foo)).@"fn".return_type.?).error_union.error_set!void' diff --git a/test/cases/compile_errors/runtime_@ptrFromInt_to_comptime_only_type.zig b/test/cases/compile_errors/runtime_@ptrFromInt_to_comptime_only_type.zig @@ -10,6 +10,5 @@ pub export fn callbackFin(id: c_int, arg: ?*anyopaque) void { // error // -// :5:54: error: pointer to comptime-only type '?*tmp.GuSettings' must be comptime-known, but operand is runtime-known -// :2:10: note: struct requires comptime because of this field -// :2:10: note: use '*const fn (c_int) callconv(.c) void' for a function pointer type +// :6:19: error: cannot load comptime-only type '?fn (c_int) callconv(.c) void' +// :6:20: note: pointer of type '*?fn (c_int) callconv(.c) void' is runtime-known diff --git a/test/cases/compile_errors/runtime_index_into_comptime_only_many_ptr.zig b/test/cases/compile_errors/runtime_index_into_comptime_only_many_ptr.zig @@ -1,10 +1,10 @@ var rt: usize = 0; export fn foo() void { const x: [*]const type = &.{ u8, u16 }; - _ = &x[rt]; + _ = x[rt]; } // error // -// :4:12: error: values of type '[*]const type' must be comptime-known, but index value is runtime-known -// :4:11: note: types are not available at runtime +// :4:11: error: values of type 'type' must be comptime-known, but index value is runtime-known +// :4:10: note: types are not available at runtime diff --git a/test/cases/compile_errors/runtime_index_into_comptime_type_slice.zig b/test/cases/compile_errors/runtime_index_into_comptime_type_slice.zig @@ -12,7 +12,6 @@ export fn entry() void { // error // -// :9:54: error: values of type '[]const builtin.Type.StructField' must be comptime-known, but index value is runtime-known +// :9:54: error: values of type 'builtin.Type.StructField' must be comptime-known, but index value is runtime-known // : note: struct requires comptime because of this field // : note: types are not available at runtime -// : struct requires comptime because of this field diff --git a/test/cases/compile_errors/runtime_indexing_comptime_array.zig b/test/cases/compile_errors/runtime_indexing_comptime_array.zig @@ -24,9 +24,9 @@ pub export fn entry3() void { } // error // -// :7:10: error: values of type '[2]fn () void' must be comptime-known, but index value is runtime-known +// :7:10: error: values of type 'fn () void' must be comptime-known, but index value is runtime-known // :7:10: note: use '*const fn () void' for a function pointer type -// :15:18: error: values of type '[2]fn () void' must be comptime-known, but index value is runtime-known +// :15:18: error: values of type 'fn () void' must be comptime-known, but index value is runtime-known // :15:17: note: use '*const fn () void' for a function pointer type -// :22:19: error: values of type '[2]fn () void' must be comptime-known, but index value is runtime-known +// :22:19: error: values of type 'fn () void' must be comptime-known, but index value is runtime-known // :22:18: note: use '*const fn () void' for a function pointer type diff --git a/test/cases/compile_errors/runtime_operation_in_comptime_scope.zig b/test/cases/compile_errors/runtime_operation_in_comptime_scope.zig @@ -25,13 +25,13 @@ var rt: u32 = undefined; // // :19:8: error: unable to evaluate comptime expression // :19:5: note: operation is runtime due to this operand +// :6:8: note: called at comptime from here +// :5:1: note: 'comptime' keyword forces comptime evaluation +// :19:8: error: unable to evaluate comptime expression +// :19:5: note: operation is runtime due to this operand // :14:8: note: called at comptime from here // :10:12: note: called at comptime from here // :10:12: note: call to function with comptime-only return type 'type' is evaluated at comptime // :13:10: note: return type declared here // :10:12: note: types are not available at runtime // :2:8: note: called inline here -// :19:8: error: unable to evaluate comptime expression -// :19:5: note: operation is runtime due to this operand -// :6:8: note: called at comptime from here -// :5:1: note: 'comptime' keyword forces comptime evaluation diff --git a/test/cases/compile_errors/self_referential_struct_requires_comptime.zig b/test/cases/compile_errors/self_referential_struct_requires_comptime.zig @@ -12,4 +12,3 @@ pub export fn entry() void { // :6:12: error: variable of type 'tmp.S' must be const or comptime // :2:8: note: struct requires comptime because of this field // :2:8: note: use '*const fn () void' for a function pointer type -// :3:8: note: struct requires comptime because of this field diff --git a/test/cases/compile_errors/self_referential_union_requires_comptime.zig b/test/cases/compile_errors/self_referential_union_requires_comptime.zig @@ -12,4 +12,3 @@ pub export fn entry() void { // :6:12: error: variable of type 'tmp.U' must be const or comptime // :2:8: note: union requires comptime because of this field // :2:8: note: use '*const fn () void' for a function pointer type -// :3:8: note: union requires comptime because of this field diff --git a/test/cases/compile_errors/sizeOf_bad_type.zig b/test/cases/compile_errors/sizeOf_bad_type.zig @@ -22,4 +22,6 @@ export fn entry4() usize { // :5:20: error: no size available for comptime-only type 'comptime_int' // :8:20: error: no size available for uninstantiable type 'noreturn' // :12:20: error: no size available for comptime-only type 'tmp.S3' +// :10:12: note: struct declared here // :16:20: error: no size available for uninstantiable type 'tmp.S4' +// :14:12: note: struct declared here diff --git a/test/cases/compile_errors/sizeof_alignof_empty_union.zig b/test/cases/compile_errors/sizeof_alignof_empty_union.zig @@ -49,27 +49,27 @@ export fn align5() void { // error // -// :13:17: error: no size available for uninstantiable type 'sizeof_alignof_empty_union.U0' +// :13:17: error: no size available for uninstantiable type 'tmp.U0' // :5:12: note: union declared here -// :16:17: error: no size available for uninstantiable type 'sizeof_alignof_empty_union.U1' +// :16:17: error: no size available for uninstantiable type 'tmp.U1' // :6:12: note: union declared here -// :19:17: error: no size available for uninstantiable type 'sizeof_alignof_empty_union.U2' +// :19:17: error: no size available for uninstantiable type 'tmp.U2' // :7:12: note: union declared here -// :22:17: error: no size available for uninstantiable type 'sizeof_alignof_empty_union.U3' +// :22:17: error: no size available for uninstantiable type 'tmp.U3' // :8:12: note: union declared here -// :25:17: error: no size available for uninstantiable type 'sizeof_alignof_empty_union.U4' +// :25:17: error: no size available for uninstantiable type 'tmp.U4' // :9:12: note: union declared here -// :28:17: error: no size available for uninstantiable type 'sizeof_alignof_empty_union.U5' +// :28:17: error: no size available for uninstantiable type 'tmp.U5' // :10:12: note: union declared here -// :32:18: error: no align available for uninstantiable type 'sizeof_alignof_empty_union.U0' +// :32:18: error: no align available for uninstantiable type 'tmp.U0' // :5:12: note: union declared here -// :35:18: error: no align available for uninstantiable type 'sizeof_alignof_empty_union.U1' +// :35:18: error: no align available for uninstantiable type 'tmp.U1' // :6:12: note: union declared here -// :38:18: error: no align available for uninstantiable type 'sizeof_alignof_empty_union.U2' +// :38:18: error: no align available for uninstantiable type 'tmp.U2' // :7:12: note: union declared here -// :41:18: error: no align available for uninstantiable type 'sizeof_alignof_empty_union.U3' +// :41:18: error: no align available for uninstantiable type 'tmp.U3' // :8:12: note: union declared here -// :44:18: error: no align available for uninstantiable type 'sizeof_alignof_empty_union.U4' +// :44:18: error: no align available for uninstantiable type 'tmp.U4' // :9:12: note: union declared here -// :47:18: error: no align available for uninstantiable type 'sizeof_alignof_empty_union.U5' +// :47:18: error: no align available for uninstantiable type 'tmp.U5' // :10:12: note: union declared here diff --git a/test/cases/compile_errors/slice_used_as_extern_fn_param.zig b/test/cases/compile_errors/slice_used_as_extern_fn_param.zig @@ -1,6 +1,6 @@ extern fn Text(str: []const u8, num: i32) callconv(.c) void; export fn entry() void { - _ = Text; + Text(undefined, undefined); } // error diff --git a/test/cases/compile_errors/specify_enum_tag_type_that_is_too_small.zig b/test/cases/compile_errors/specify_enum_tag_type_that_is_too_small.zig @@ -1,9 +1,9 @@ const Small = enum(u2) { - One, - Two, - Three, - Four, - Five, + one, + two, + three, + four, + five, }; const SmallUnion = union(enum(u2)) { @@ -14,13 +14,13 @@ const SmallUnion = union(enum(u2)) { }; comptime { - _ = Small; + _ = Small.one; } comptime { - _ = SmallUnion; + _ = SmallUnion.one; } // error // -// :6:5: error: enumeration value '4' too large for type 'u2' -// :13:5: error: enumeration value '4' too large for type 'u2' +// :6:5: error: enum tag value '4' too large for type 'u2' +// :13:5: error: enum tag value '4' too large for type 'u2' diff --git a/test/cases/compile_errors/store_comptime_only_type_to_runtime_pointer.zig b/test/cases/compile_errors/store_comptime_only_type_to_runtime_pointer.zig @@ -21,22 +21,15 @@ export fn e() void { p.* = undefined; } -export fn f() void { - const p: **comptime_int = @ptrFromInt(16); // double pointer ('*comptime_int' is comptime-only) - p.* = undefined; -} - // error // // :3:9: error: cannot store comptime-only type 'fn () void' at runtime // :3:6: note: operation is runtime due to this pointer // :7:11: error: expected type 'anyopaque', found '@TypeOf(undefined)' -// :7:11: note: cannot coerce to 'anyopaque' +// :7:11: note: cannot coerce to uninstantiable type 'anyopaque' // :11:12: error: cannot load opaque type 'anyopaque' // :16:11: error: expected type 'tmp.Opaque', found '@TypeOf(undefined)' -// :16:11: note: cannot coerce to 'tmp.Opaque' +// :16:11: note: cannot coerce to uninstantiable type 'tmp.Opaque' // :14:16: note: opaque declared here // :21:9: error: cannot store comptime-only type 'comptime_int' at runtime // :21:6: note: operation is runtime due to this pointer -// :26:9: error: cannot store comptime-only type '*comptime_int' at runtime -// :26:6: note: operation is runtime due to this pointer diff --git a/test/cases/compile_errors/struct_depends_on_itself_via_non_initial_field.zig b/test/cases/compile_errors/struct_depends_on_itself_via_non_initial_field.zig @@ -4,9 +4,9 @@ const A = struct { }; comptime { - _ = A; + _ = @as(A, undefined); } // error // -// :1:11: error: struct 'tmp.A' depends on itself +// :3:21: error: type 'tmp.A' depends on itself for size query here diff --git a/test/cases/compile_errors/struct_depends_on_itself_via_optional_field.zig b/test/cases/compile_errors/struct_depends_on_itself_via_optional_field.zig @@ -12,4 +12,7 @@ export fn entry() void { // error // -// :1:17: error: struct 'tmp.LhsExpr' depends on itself +// error: dependency loop with length 2 +// :2:14: note: type 'tmp.LhsExpr' depends on type 'tmp.AstObject' for field declared here +// :5:14: note: type 'tmp.AstObject' depends on type 'tmp.LhsExpr' for field declared here +// note: eliminate any one of these dependencies to break the loop diff --git a/test/cases/compile_errors/struct_depends_on_pointer_alignment.zig b/test/cases/compile_errors/struct_depends_on_pointer_alignment.zig @@ -1,11 +0,0 @@ -const S = struct { - next: ?*align(1) S align(128), -}; - -export fn entry() usize { - return @alignOf(S); -} - -// error -// -// :1:11: error: struct layout depends on being pointer aligned diff --git a/test/cases/compile_errors/too_big_packed_struct.zig b/test/cases/compile_errors/too_big_packed_struct.zig @@ -8,4 +8,4 @@ pub export fn entry() void { // error // -// :2:22: error: size of packed struct '131070' exceeds maximum bit width of 65535 +// :2:22: error: packed struct bit width '131070' exceeds maximum bit width of 65535 diff --git a/test/cases/compile_errors/top_level_decl_dependency_loop.zig b/test/cases/compile_errors/top_level_decl_dependency_loop.zig @@ -7,4 +7,9 @@ export fn entry() void { // error // -// :1:1: error: dependency loop detected +// error: dependency loop with length 4 +// :1:23: note: value of declaration 'tmp.a' uses type of declaration 'tmp.a' here +// :1:18: note: type of declaration 'tmp.a' uses value of declaration 'tmp.b' here +// :2:23: note: value of declaration 'tmp.b' uses type of declaration 'tmp.b' here +// :2:18: note: type of declaration 'tmp.b' uses value of declaration 'tmp.a' here +// note: eliminate any one of these dependencies to break the loop diff --git a/test/cases/compile_errors/unable_to_evaluate_comptime_expr.zig b/test/cases/compile_errors/unable_to_evaluate_comptime_expr.zig @@ -16,22 +16,6 @@ pub export fn entry2() void { _ = b; } -const Int = @typeInfo(bar).@"struct".backing_integer.?; - -const foo = enum(Int) { - c = @bitCast(bar{ - .name = "test", - }), -}; - -const bar = packed struct { - name: [*:0]const u8, -}; - -pub export fn entry3() void { - _ = @field(foo, "c"); -} - // error // // :7:13: error: unable to evaluate comptime expression @@ -40,6 +24,3 @@ pub export fn entry3() void { // :13:13: error: unable to evaluate comptime expression // :13:16: note: operation is runtime due to this operand // :13:13: note: initializer of container-level variable must be comptime-known -// :22:9: error: unable to evaluate comptime expression -// :22:21: note: operation is runtime due to this operand -// :21:13: note: enum field values must be comptime-known diff --git a/test/cases/compile_errors/undef_arith_is_illegal.zig b/test/cases/compile_errors/undef_arith_is_illegal.zig @@ -192,50 +192,30 @@ const std = @import("std"); // :65:17: error: use of undefined value here causes illegal behavior // :65:17: error: use of undefined value here causes illegal behavior // :65:17: error: use of undefined value here causes illegal behavior -// :65:17: note: when computing vector element at index '0' // :65:17: error: use of undefined value here causes illegal behavior -// :65:17: note: when computing vector element at index '0' // :65:17: error: use of undefined value here causes illegal behavior -// :65:17: note: when computing vector element at index '0' // :65:17: error: use of undefined value here causes illegal behavior -// :65:17: note: when computing vector element at index '0' // :65:17: error: use of undefined value here causes illegal behavior -// :65:17: note: when computing vector element at index '1' // :65:17: error: use of undefined value here causes illegal behavior -// :65:17: note: when computing vector element at index '1' // :65:17: error: use of undefined value here causes illegal behavior -// :65:17: note: when computing vector element at index '0' // :65:17: error: use of undefined value here causes illegal behavior -// :65:17: note: when computing vector element at index '0' // :65:17: error: use of undefined value here causes illegal behavior -// :65:17: note: when computing vector element at index '0' // :65:17: error: use of undefined value here causes illegal behavior -// :65:17: note: when computing vector element at index '0' // :65:17: error: use of undefined value here causes illegal behavior // :65:17: error: use of undefined value here causes illegal behavior // :65:17: error: use of undefined value here causes illegal behavior -// :65:17: note: when computing vector element at index '0' // :65:17: error: use of undefined value here causes illegal behavior -// :65:17: note: when computing vector element at index '0' // :65:17: error: use of undefined value here causes illegal behavior -// :65:17: note: when computing vector element at index '0' // :65:17: error: use of undefined value here causes illegal behavior -// :65:17: note: when computing vector element at index '0' // :65:17: error: use of undefined value here causes illegal behavior -// :65:17: note: when computing vector element at index '1' // :65:17: error: use of undefined value here causes illegal behavior -// :65:17: note: when computing vector element at index '1' // :65:17: error: use of undefined value here causes illegal behavior -// :65:17: note: when computing vector element at index '0' // :65:17: error: use of undefined value here causes illegal behavior -// :65:17: note: when computing vector element at index '0' // :65:17: error: use of undefined value here causes illegal behavior // :65:17: note: when computing vector element at index '0' // :65:17: error: use of undefined value here causes illegal behavior // :65:17: note: when computing vector element at index '0' // :65:17: error: use of undefined value here causes illegal behavior -// :65:17: error: use of undefined value here causes illegal behavior -// :65:17: error: use of undefined value here causes illegal behavior // :65:17: note: when computing vector element at index '0' // :65:17: error: use of undefined value here causes illegal behavior // :65:17: note: when computing vector element at index '0' @@ -244,10 +224,6 @@ const std = @import("std"); // :65:17: error: use of undefined value here causes illegal behavior // :65:17: note: when computing vector element at index '0' // :65:17: error: use of undefined value here causes illegal behavior -// :65:17: note: when computing vector element at index '1' -// :65:17: error: use of undefined value here causes illegal behavior -// :65:17: note: when computing vector element at index '1' -// :65:17: error: use of undefined value here causes illegal behavior // :65:17: note: when computing vector element at index '0' // :65:17: error: use of undefined value here causes illegal behavior // :65:17: note: when computing vector element at index '0' @@ -256,7 +232,9 @@ const std = @import("std"); // :65:17: error: use of undefined value here causes illegal behavior // :65:17: note: when computing vector element at index '0' // :65:17: error: use of undefined value here causes illegal behavior +// :65:17: note: when computing vector element at index '0' // :65:17: error: use of undefined value here causes illegal behavior +// :65:17: note: when computing vector element at index '0' // :65:17: error: use of undefined value here causes illegal behavior // :65:17: note: when computing vector element at index '0' // :65:17: error: use of undefined value here causes illegal behavior @@ -266,9 +244,9 @@ const std = @import("std"); // :65:17: error: use of undefined value here causes illegal behavior // :65:17: note: when computing vector element at index '0' // :65:17: error: use of undefined value here causes illegal behavior -// :65:17: note: when computing vector element at index '1' +// :65:17: note: when computing vector element at index '0' // :65:17: error: use of undefined value here causes illegal behavior -// :65:17: note: when computing vector element at index '1' +// :65:17: note: when computing vector element at index '0' // :65:17: error: use of undefined value here causes illegal behavior // :65:17: note: when computing vector element at index '0' // :65:17: error: use of undefined value here causes illegal behavior @@ -278,7 +256,9 @@ const std = @import("std"); // :65:17: error: use of undefined value here causes illegal behavior // :65:17: note: when computing vector element at index '0' // :65:17: error: use of undefined value here causes illegal behavior +// :65:17: note: when computing vector element at index '0' // :65:17: error: use of undefined value here causes illegal behavior +// :65:17: note: when computing vector element at index '0' // :65:17: error: use of undefined value here causes illegal behavior // :65:17: note: when computing vector element at index '0' // :65:17: error: use of undefined value here causes illegal behavior @@ -288,9 +268,9 @@ const std = @import("std"); // :65:17: error: use of undefined value here causes illegal behavior // :65:17: note: when computing vector element at index '0' // :65:17: error: use of undefined value here causes illegal behavior -// :65:17: note: when computing vector element at index '1' +// :65:17: note: when computing vector element at index '0' // :65:17: error: use of undefined value here causes illegal behavior -// :65:17: note: when computing vector element at index '1' +// :65:17: note: when computing vector element at index '0' // :65:17: error: use of undefined value here causes illegal behavior // :65:17: note: when computing vector element at index '0' // :65:17: error: use of undefined value here causes illegal behavior @@ -300,7 +280,9 @@ const std = @import("std"); // :65:17: error: use of undefined value here causes illegal behavior // :65:17: note: when computing vector element at index '0' // :65:17: error: use of undefined value here causes illegal behavior +// :65:17: note: when computing vector element at index '0' // :65:17: error: use of undefined value here causes illegal behavior +// :65:17: note: when computing vector element at index '0' // :65:17: error: use of undefined value here causes illegal behavior // :65:17: note: when computing vector element at index '0' // :65:17: error: use of undefined value here causes illegal behavior @@ -310,9 +292,9 @@ const std = @import("std"); // :65:17: error: use of undefined value here causes illegal behavior // :65:17: note: when computing vector element at index '0' // :65:17: error: use of undefined value here causes illegal behavior -// :65:17: note: when computing vector element at index '1' +// :65:17: note: when computing vector element at index '0' // :65:17: error: use of undefined value here causes illegal behavior -// :65:17: note: when computing vector element at index '1' +// :65:17: note: when computing vector element at index '0' // :65:17: error: use of undefined value here causes illegal behavior // :65:17: note: when computing vector element at index '0' // :65:17: error: use of undefined value here causes illegal behavior @@ -322,7 +304,9 @@ const std = @import("std"); // :65:17: error: use of undefined value here causes illegal behavior // :65:17: note: when computing vector element at index '0' // :65:17: error: use of undefined value here causes illegal behavior +// :65:17: note: when computing vector element at index '0' // :65:17: error: use of undefined value here causes illegal behavior +// :65:17: note: when computing vector element at index '0' // :65:17: error: use of undefined value here causes illegal behavior // :65:17: note: when computing vector element at index '0' // :65:17: error: use of undefined value here causes illegal behavior @@ -332,9 +316,9 @@ const std = @import("std"); // :65:17: error: use of undefined value here causes illegal behavior // :65:17: note: when computing vector element at index '0' // :65:17: error: use of undefined value here causes illegal behavior -// :65:17: note: when computing vector element at index '1' +// :65:17: note: when computing vector element at index '0' // :65:17: error: use of undefined value here causes illegal behavior -// :65:17: note: when computing vector element at index '1' +// :65:17: note: when computing vector element at index '0' // :65:17: error: use of undefined value here causes illegal behavior // :65:17: note: when computing vector element at index '0' // :65:17: error: use of undefined value here causes illegal behavior @@ -344,7 +328,9 @@ const std = @import("std"); // :65:17: error: use of undefined value here causes illegal behavior // :65:17: note: when computing vector element at index '0' // :65:17: error: use of undefined value here causes illegal behavior +// :65:17: note: when computing vector element at index '0' // :65:17: error: use of undefined value here causes illegal behavior +// :65:17: note: when computing vector element at index '0' // :65:17: error: use of undefined value here causes illegal behavior // :65:17: note: when computing vector element at index '0' // :65:17: error: use of undefined value here causes illegal behavior @@ -354,9 +340,9 @@ const std = @import("std"); // :65:17: error: use of undefined value here causes illegal behavior // :65:17: note: when computing vector element at index '0' // :65:17: error: use of undefined value here causes illegal behavior -// :65:17: note: when computing vector element at index '1' +// :65:17: note: when computing vector element at index '0' // :65:17: error: use of undefined value here causes illegal behavior -// :65:17: note: when computing vector element at index '1' +// :65:17: note: when computing vector element at index '0' // :65:17: error: use of undefined value here causes illegal behavior // :65:17: note: when computing vector element at index '0' // :65:17: error: use of undefined value here causes illegal behavior @@ -366,7 +352,9 @@ const std = @import("std"); // :65:17: error: use of undefined value here causes illegal behavior // :65:17: note: when computing vector element at index '0' // :65:17: error: use of undefined value here causes illegal behavior +// :65:17: note: when computing vector element at index '0' // :65:17: error: use of undefined value here causes illegal behavior +// :65:17: note: when computing vector element at index '0' // :65:17: error: use of undefined value here causes illegal behavior // :65:17: note: when computing vector element at index '0' // :65:17: error: use of undefined value here causes illegal behavior @@ -376,9 +364,9 @@ const std = @import("std"); // :65:17: error: use of undefined value here causes illegal behavior // :65:17: note: when computing vector element at index '0' // :65:17: error: use of undefined value here causes illegal behavior -// :65:17: note: when computing vector element at index '1' +// :65:17: note: when computing vector element at index '0' // :65:17: error: use of undefined value here causes illegal behavior -// :65:17: note: when computing vector element at index '1' +// :65:17: note: when computing vector element at index '0' // :65:17: error: use of undefined value here causes illegal behavior // :65:17: note: when computing vector element at index '0' // :65:17: error: use of undefined value here causes illegal behavior @@ -388,7 +376,9 @@ const std = @import("std"); // :65:17: error: use of undefined value here causes illegal behavior // :65:17: note: when computing vector element at index '0' // :65:17: error: use of undefined value here causes illegal behavior +// :65:17: note: when computing vector element at index '0' // :65:17: error: use of undefined value here causes illegal behavior +// :65:17: note: when computing vector element at index '0' // :65:17: error: use of undefined value here causes illegal behavior // :65:17: note: when computing vector element at index '0' // :65:17: error: use of undefined value here causes illegal behavior @@ -402,35 +392,45 @@ const std = @import("std"); // :65:17: error: use of undefined value here causes illegal behavior // :65:17: note: when computing vector element at index '1' // :65:17: error: use of undefined value here causes illegal behavior -// :65:17: note: when computing vector element at index '0' +// :65:17: note: when computing vector element at index '1' // :65:17: error: use of undefined value here causes illegal behavior -// :65:17: note: when computing vector element at index '0' +// :65:17: note: when computing vector element at index '1' // :65:17: error: use of undefined value here causes illegal behavior -// :65:17: note: when computing vector element at index '0' +// :65:17: note: when computing vector element at index '1' // :65:17: error: use of undefined value here causes illegal behavior -// :65:17: note: when computing vector element at index '0' +// :65:17: note: when computing vector element at index '1' // :65:17: error: use of undefined value here causes illegal behavior +// :65:17: note: when computing vector element at index '1' // :65:17: error: use of undefined value here causes illegal behavior +// :65:17: note: when computing vector element at index '1' // :65:17: error: use of undefined value here causes illegal behavior -// :65:17: note: when computing vector element at index '0' +// :65:17: note: when computing vector element at index '1' // :65:17: error: use of undefined value here causes illegal behavior -// :65:17: note: when computing vector element at index '0' +// :65:17: note: when computing vector element at index '1' // :65:17: error: use of undefined value here causes illegal behavior -// :65:17: note: when computing vector element at index '0' +// :65:17: note: when computing vector element at index '1' // :65:17: error: use of undefined value here causes illegal behavior -// :65:17: note: when computing vector element at index '0' +// :65:17: note: when computing vector element at index '1' // :65:17: error: use of undefined value here causes illegal behavior // :65:17: note: when computing vector element at index '1' // :65:17: error: use of undefined value here causes illegal behavior // :65:17: note: when computing vector element at index '1' // :65:17: error: use of undefined value here causes illegal behavior -// :65:17: note: when computing vector element at index '0' +// :65:17: note: when computing vector element at index '1' // :65:17: error: use of undefined value here causes illegal behavior -// :65:17: note: when computing vector element at index '0' +// :65:17: note: when computing vector element at index '1' // :65:17: error: use of undefined value here causes illegal behavior -// :65:17: note: when computing vector element at index '0' +// :65:17: note: when computing vector element at index '1' // :65:17: error: use of undefined value here causes illegal behavior -// :65:17: note: when computing vector element at index '0' +// :65:17: note: when computing vector element at index '1' +// :65:17: error: use of undefined value here causes illegal behavior +// :65:17: note: when computing vector element at index '1' +// :65:17: error: use of undefined value here causes illegal behavior +// :65:17: note: when computing vector element at index '1' +// :65:17: error: use of undefined value here causes illegal behavior +// :65:17: note: when computing vector element at index '1' +// :65:17: error: use of undefined value here causes illegal behavior +// :65:17: note: when computing vector element at index '1' // :65:21: error: use of undefined value here causes illegal behavior // :65:21: note: when computing vector element at index '0' // :65:21: error: use of undefined value here causes illegal behavior @@ -478,50 +478,30 @@ const std = @import("std"); // :69:27: error: use of undefined value here causes illegal behavior // :69:27: error: use of undefined value here causes illegal behavior // :69:27: error: use of undefined value here causes illegal behavior -// :69:27: note: when computing vector element at index '0' // :69:27: error: use of undefined value here causes illegal behavior -// :69:27: note: when computing vector element at index '0' // :69:27: error: use of undefined value here causes illegal behavior -// :69:27: note: when computing vector element at index '0' // :69:27: error: use of undefined value here causes illegal behavior -// :69:27: note: when computing vector element at index '0' // :69:27: error: use of undefined value here causes illegal behavior -// :69:27: note: when computing vector element at index '1' // :69:27: error: use of undefined value here causes illegal behavior -// :69:27: note: when computing vector element at index '1' // :69:27: error: use of undefined value here causes illegal behavior -// :69:27: note: when computing vector element at index '0' // :69:27: error: use of undefined value here causes illegal behavior -// :69:27: note: when computing vector element at index '0' // :69:27: error: use of undefined value here causes illegal behavior -// :69:27: note: when computing vector element at index '0' // :69:27: error: use of undefined value here causes illegal behavior -// :69:27: note: when computing vector element at index '0' // :69:27: error: use of undefined value here causes illegal behavior // :69:27: error: use of undefined value here causes illegal behavior // :69:27: error: use of undefined value here causes illegal behavior -// :69:27: note: when computing vector element at index '0' // :69:27: error: use of undefined value here causes illegal behavior -// :69:27: note: when computing vector element at index '0' // :69:27: error: use of undefined value here causes illegal behavior -// :69:27: note: when computing vector element at index '0' // :69:27: error: use of undefined value here causes illegal behavior -// :69:27: note: when computing vector element at index '0' // :69:27: error: use of undefined value here causes illegal behavior -// :69:27: note: when computing vector element at index '1' // :69:27: error: use of undefined value here causes illegal behavior -// :69:27: note: when computing vector element at index '1' // :69:27: error: use of undefined value here causes illegal behavior -// :69:27: note: when computing vector element at index '0' // :69:27: error: use of undefined value here causes illegal behavior -// :69:27: note: when computing vector element at index '0' // :69:27: error: use of undefined value here causes illegal behavior // :69:27: note: when computing vector element at index '0' // :69:27: error: use of undefined value here causes illegal behavior // :69:27: note: when computing vector element at index '0' // :69:27: error: use of undefined value here causes illegal behavior -// :69:27: error: use of undefined value here causes illegal behavior -// :69:27: error: use of undefined value here causes illegal behavior // :69:27: note: when computing vector element at index '0' // :69:27: error: use of undefined value here causes illegal behavior // :69:27: note: when computing vector element at index '0' @@ -530,10 +510,6 @@ const std = @import("std"); // :69:27: error: use of undefined value here causes illegal behavior // :69:27: note: when computing vector element at index '0' // :69:27: error: use of undefined value here causes illegal behavior -// :69:27: note: when computing vector element at index '1' -// :69:27: error: use of undefined value here causes illegal behavior -// :69:27: note: when computing vector element at index '1' -// :69:27: error: use of undefined value here causes illegal behavior // :69:27: note: when computing vector element at index '0' // :69:27: error: use of undefined value here causes illegal behavior // :69:27: note: when computing vector element at index '0' @@ -542,7 +518,9 @@ const std = @import("std"); // :69:27: error: use of undefined value here causes illegal behavior // :69:27: note: when computing vector element at index '0' // :69:27: error: use of undefined value here causes illegal behavior +// :69:27: note: when computing vector element at index '0' // :69:27: error: use of undefined value here causes illegal behavior +// :69:27: note: when computing vector element at index '0' // :69:27: error: use of undefined value here causes illegal behavior // :69:27: note: when computing vector element at index '0' // :69:27: error: use of undefined value here causes illegal behavior @@ -552,9 +530,9 @@ const std = @import("std"); // :69:27: error: use of undefined value here causes illegal behavior // :69:27: note: when computing vector element at index '0' // :69:27: error: use of undefined value here causes illegal behavior -// :69:27: note: when computing vector element at index '1' +// :69:27: note: when computing vector element at index '0' // :69:27: error: use of undefined value here causes illegal behavior -// :69:27: note: when computing vector element at index '1' +// :69:27: note: when computing vector element at index '0' // :69:27: error: use of undefined value here causes illegal behavior // :69:27: note: when computing vector element at index '0' // :69:27: error: use of undefined value here causes illegal behavior @@ -564,7 +542,9 @@ const std = @import("std"); // :69:27: error: use of undefined value here causes illegal behavior // :69:27: note: when computing vector element at index '0' // :69:27: error: use of undefined value here causes illegal behavior +// :69:27: note: when computing vector element at index '0' // :69:27: error: use of undefined value here causes illegal behavior +// :69:27: note: when computing vector element at index '0' // :69:27: error: use of undefined value here causes illegal behavior // :69:27: note: when computing vector element at index '0' // :69:27: error: use of undefined value here causes illegal behavior @@ -574,9 +554,9 @@ const std = @import("std"); // :69:27: error: use of undefined value here causes illegal behavior // :69:27: note: when computing vector element at index '0' // :69:27: error: use of undefined value here causes illegal behavior -// :69:27: note: when computing vector element at index '1' +// :69:27: note: when computing vector element at index '0' // :69:27: error: use of undefined value here causes illegal behavior -// :69:27: note: when computing vector element at index '1' +// :69:27: note: when computing vector element at index '0' // :69:27: error: use of undefined value here causes illegal behavior // :69:27: note: when computing vector element at index '0' // :69:27: error: use of undefined value here causes illegal behavior @@ -586,7 +566,9 @@ const std = @import("std"); // :69:27: error: use of undefined value here causes illegal behavior // :69:27: note: when computing vector element at index '0' // :69:27: error: use of undefined value here causes illegal behavior +// :69:27: note: when computing vector element at index '0' // :69:27: error: use of undefined value here causes illegal behavior +// :69:27: note: when computing vector element at index '0' // :69:27: error: use of undefined value here causes illegal behavior // :69:27: note: when computing vector element at index '0' // :69:27: error: use of undefined value here causes illegal behavior @@ -596,9 +578,9 @@ const std = @import("std"); // :69:27: error: use of undefined value here causes illegal behavior // :69:27: note: when computing vector element at index '0' // :69:27: error: use of undefined value here causes illegal behavior -// :69:27: note: when computing vector element at index '1' +// :69:27: note: when computing vector element at index '0' // :69:27: error: use of undefined value here causes illegal behavior -// :69:27: note: when computing vector element at index '1' +// :69:27: note: when computing vector element at index '0' // :69:27: error: use of undefined value here causes illegal behavior // :69:27: note: when computing vector element at index '0' // :69:27: error: use of undefined value here causes illegal behavior @@ -608,7 +590,9 @@ const std = @import("std"); // :69:27: error: use of undefined value here causes illegal behavior // :69:27: note: when computing vector element at index '0' // :69:27: error: use of undefined value here causes illegal behavior +// :69:27: note: when computing vector element at index '0' // :69:27: error: use of undefined value here causes illegal behavior +// :69:27: note: when computing vector element at index '0' // :69:27: error: use of undefined value here causes illegal behavior // :69:27: note: when computing vector element at index '0' // :69:27: error: use of undefined value here causes illegal behavior @@ -618,9 +602,9 @@ const std = @import("std"); // :69:27: error: use of undefined value here causes illegal behavior // :69:27: note: when computing vector element at index '0' // :69:27: error: use of undefined value here causes illegal behavior -// :69:27: note: when computing vector element at index '1' +// :69:27: note: when computing vector element at index '0' // :69:27: error: use of undefined value here causes illegal behavior -// :69:27: note: when computing vector element at index '1' +// :69:27: note: when computing vector element at index '0' // :69:27: error: use of undefined value here causes illegal behavior // :69:27: note: when computing vector element at index '0' // :69:27: error: use of undefined value here causes illegal behavior @@ -630,7 +614,9 @@ const std = @import("std"); // :69:27: error: use of undefined value here causes illegal behavior // :69:27: note: when computing vector element at index '0' // :69:27: error: use of undefined value here causes illegal behavior +// :69:27: note: when computing vector element at index '0' // :69:27: error: use of undefined value here causes illegal behavior +// :69:27: note: when computing vector element at index '0' // :69:27: error: use of undefined value here causes illegal behavior // :69:27: note: when computing vector element at index '0' // :69:27: error: use of undefined value here causes illegal behavior @@ -640,9 +626,9 @@ const std = @import("std"); // :69:27: error: use of undefined value here causes illegal behavior // :69:27: note: when computing vector element at index '0' // :69:27: error: use of undefined value here causes illegal behavior -// :69:27: note: when computing vector element at index '1' +// :69:27: note: when computing vector element at index '0' // :69:27: error: use of undefined value here causes illegal behavior -// :69:27: note: when computing vector element at index '1' +// :69:27: note: when computing vector element at index '0' // :69:27: error: use of undefined value here causes illegal behavior // :69:27: note: when computing vector element at index '0' // :69:27: error: use of undefined value here causes illegal behavior @@ -652,7 +638,9 @@ const std = @import("std"); // :69:27: error: use of undefined value here causes illegal behavior // :69:27: note: when computing vector element at index '0' // :69:27: error: use of undefined value here causes illegal behavior +// :69:27: note: when computing vector element at index '0' // :69:27: error: use of undefined value here causes illegal behavior +// :69:27: note: when computing vector element at index '0' // :69:27: error: use of undefined value here causes illegal behavior // :69:27: note: when computing vector element at index '0' // :69:27: error: use of undefined value here causes illegal behavior @@ -662,9 +650,9 @@ const std = @import("std"); // :69:27: error: use of undefined value here causes illegal behavior // :69:27: note: when computing vector element at index '0' // :69:27: error: use of undefined value here causes illegal behavior -// :69:27: note: when computing vector element at index '1' +// :69:27: note: when computing vector element at index '0' // :69:27: error: use of undefined value here causes illegal behavior -// :69:27: note: when computing vector element at index '1' +// :69:27: note: when computing vector element at index '0' // :69:27: error: use of undefined value here causes illegal behavior // :69:27: note: when computing vector element at index '0' // :69:27: error: use of undefined value here causes illegal behavior @@ -674,7 +662,9 @@ const std = @import("std"); // :69:27: error: use of undefined value here causes illegal behavior // :69:27: note: when computing vector element at index '0' // :69:27: error: use of undefined value here causes illegal behavior +// :69:27: note: when computing vector element at index '0' // :69:27: error: use of undefined value here causes illegal behavior +// :69:27: note: when computing vector element at index '0' // :69:27: error: use of undefined value here causes illegal behavior // :69:27: note: when computing vector element at index '0' // :69:27: error: use of undefined value here causes illegal behavior @@ -688,35 +678,45 @@ const std = @import("std"); // :69:27: error: use of undefined value here causes illegal behavior // :69:27: note: when computing vector element at index '1' // :69:27: error: use of undefined value here causes illegal behavior -// :69:27: note: when computing vector element at index '0' +// :69:27: note: when computing vector element at index '1' // :69:27: error: use of undefined value here causes illegal behavior -// :69:27: note: when computing vector element at index '0' +// :69:27: note: when computing vector element at index '1' // :69:27: error: use of undefined value here causes illegal behavior -// :69:27: note: when computing vector element at index '0' +// :69:27: note: when computing vector element at index '1' // :69:27: error: use of undefined value here causes illegal behavior -// :69:27: note: when computing vector element at index '0' +// :69:27: note: when computing vector element at index '1' // :69:27: error: use of undefined value here causes illegal behavior +// :69:27: note: when computing vector element at index '1' // :69:27: error: use of undefined value here causes illegal behavior +// :69:27: note: when computing vector element at index '1' // :69:27: error: use of undefined value here causes illegal behavior -// :69:27: note: when computing vector element at index '0' +// :69:27: note: when computing vector element at index '1' // :69:27: error: use of undefined value here causes illegal behavior -// :69:27: note: when computing vector element at index '0' +// :69:27: note: when computing vector element at index '1' // :69:27: error: use of undefined value here causes illegal behavior -// :69:27: note: when computing vector element at index '0' +// :69:27: note: when computing vector element at index '1' // :69:27: error: use of undefined value here causes illegal behavior -// :69:27: note: when computing vector element at index '0' +// :69:27: note: when computing vector element at index '1' // :69:27: error: use of undefined value here causes illegal behavior // :69:27: note: when computing vector element at index '1' // :69:27: error: use of undefined value here causes illegal behavior // :69:27: note: when computing vector element at index '1' // :69:27: error: use of undefined value here causes illegal behavior -// :69:27: note: when computing vector element at index '0' +// :69:27: note: when computing vector element at index '1' // :69:27: error: use of undefined value here causes illegal behavior -// :69:27: note: when computing vector element at index '0' +// :69:27: note: when computing vector element at index '1' // :69:27: error: use of undefined value here causes illegal behavior -// :69:27: note: when computing vector element at index '0' +// :69:27: note: when computing vector element at index '1' // :69:27: error: use of undefined value here causes illegal behavior -// :69:27: note: when computing vector element at index '0' +// :69:27: note: when computing vector element at index '1' +// :69:27: error: use of undefined value here causes illegal behavior +// :69:27: note: when computing vector element at index '1' +// :69:27: error: use of undefined value here causes illegal behavior +// :69:27: note: when computing vector element at index '1' +// :69:27: error: use of undefined value here causes illegal behavior +// :69:27: note: when computing vector element at index '1' +// :69:27: error: use of undefined value here causes illegal behavior +// :69:27: note: when computing vector element at index '1' // :69:30: error: use of undefined value here causes illegal behavior // :69:30: note: when computing vector element at index '0' // :69:30: error: use of undefined value here causes illegal behavior @@ -764,50 +764,30 @@ const std = @import("std"); // :73:27: error: use of undefined value here causes illegal behavior // :73:27: error: use of undefined value here causes illegal behavior // :73:27: error: use of undefined value here causes illegal behavior -// :73:27: note: when computing vector element at index '0' // :73:27: error: use of undefined value here causes illegal behavior -// :73:27: note: when computing vector element at index '0' // :73:27: error: use of undefined value here causes illegal behavior -// :73:27: note: when computing vector element at index '0' // :73:27: error: use of undefined value here causes illegal behavior -// :73:27: note: when computing vector element at index '0' // :73:27: error: use of undefined value here causes illegal behavior -// :73:27: note: when computing vector element at index '1' // :73:27: error: use of undefined value here causes illegal behavior -// :73:27: note: when computing vector element at index '1' // :73:27: error: use of undefined value here causes illegal behavior -// :73:27: note: when computing vector element at index '0' // :73:27: error: use of undefined value here causes illegal behavior -// :73:27: note: when computing vector element at index '0' // :73:27: error: use of undefined value here causes illegal behavior -// :73:27: note: when computing vector element at index '0' // :73:27: error: use of undefined value here causes illegal behavior -// :73:27: note: when computing vector element at index '0' // :73:27: error: use of undefined value here causes illegal behavior // :73:27: error: use of undefined value here causes illegal behavior // :73:27: error: use of undefined value here causes illegal behavior -// :73:27: note: when computing vector element at index '0' // :73:27: error: use of undefined value here causes illegal behavior -// :73:27: note: when computing vector element at index '0' // :73:27: error: use of undefined value here causes illegal behavior -// :73:27: note: when computing vector element at index '0' // :73:27: error: use of undefined value here causes illegal behavior -// :73:27: note: when computing vector element at index '0' // :73:27: error: use of undefined value here causes illegal behavior -// :73:27: note: when computing vector element at index '1' // :73:27: error: use of undefined value here causes illegal behavior -// :73:27: note: when computing vector element at index '1' // :73:27: error: use of undefined value here causes illegal behavior -// :73:27: note: when computing vector element at index '0' // :73:27: error: use of undefined value here causes illegal behavior -// :73:27: note: when computing vector element at index '0' // :73:27: error: use of undefined value here causes illegal behavior // :73:27: note: when computing vector element at index '0' // :73:27: error: use of undefined value here causes illegal behavior // :73:27: note: when computing vector element at index '0' // :73:27: error: use of undefined value here causes illegal behavior -// :73:27: error: use of undefined value here causes illegal behavior -// :73:27: error: use of undefined value here causes illegal behavior // :73:27: note: when computing vector element at index '0' // :73:27: error: use of undefined value here causes illegal behavior // :73:27: note: when computing vector element at index '0' @@ -816,10 +796,6 @@ const std = @import("std"); // :73:27: error: use of undefined value here causes illegal behavior // :73:27: note: when computing vector element at index '0' // :73:27: error: use of undefined value here causes illegal behavior -// :73:27: note: when computing vector element at index '1' -// :73:27: error: use of undefined value here causes illegal behavior -// :73:27: note: when computing vector element at index '1' -// :73:27: error: use of undefined value here causes illegal behavior // :73:27: note: when computing vector element at index '0' // :73:27: error: use of undefined value here causes illegal behavior // :73:27: note: when computing vector element at index '0' @@ -828,7 +804,9 @@ const std = @import("std"); // :73:27: error: use of undefined value here causes illegal behavior // :73:27: note: when computing vector element at index '0' // :73:27: error: use of undefined value here causes illegal behavior +// :73:27: note: when computing vector element at index '0' // :73:27: error: use of undefined value here causes illegal behavior +// :73:27: note: when computing vector element at index '0' // :73:27: error: use of undefined value here causes illegal behavior // :73:27: note: when computing vector element at index '0' // :73:27: error: use of undefined value here causes illegal behavior @@ -838,9 +816,9 @@ const std = @import("std"); // :73:27: error: use of undefined value here causes illegal behavior // :73:27: note: when computing vector element at index '0' // :73:27: error: use of undefined value here causes illegal behavior -// :73:27: note: when computing vector element at index '1' +// :73:27: note: when computing vector element at index '0' // :73:27: error: use of undefined value here causes illegal behavior -// :73:27: note: when computing vector element at index '1' +// :73:27: note: when computing vector element at index '0' // :73:27: error: use of undefined value here causes illegal behavior // :73:27: note: when computing vector element at index '0' // :73:27: error: use of undefined value here causes illegal behavior @@ -850,7 +828,9 @@ const std = @import("std"); // :73:27: error: use of undefined value here causes illegal behavior // :73:27: note: when computing vector element at index '0' // :73:27: error: use of undefined value here causes illegal behavior +// :73:27: note: when computing vector element at index '0' // :73:27: error: use of undefined value here causes illegal behavior +// :73:27: note: when computing vector element at index '0' // :73:27: error: use of undefined value here causes illegal behavior // :73:27: note: when computing vector element at index '0' // :73:27: error: use of undefined value here causes illegal behavior @@ -860,9 +840,9 @@ const std = @import("std"); // :73:27: error: use of undefined value here causes illegal behavior // :73:27: note: when computing vector element at index '0' // :73:27: error: use of undefined value here causes illegal behavior -// :73:27: note: when computing vector element at index '1' +// :73:27: note: when computing vector element at index '0' // :73:27: error: use of undefined value here causes illegal behavior -// :73:27: note: when computing vector element at index '1' +// :73:27: note: when computing vector element at index '0' // :73:27: error: use of undefined value here causes illegal behavior // :73:27: note: when computing vector element at index '0' // :73:27: error: use of undefined value here causes illegal behavior @@ -872,7 +852,9 @@ const std = @import("std"); // :73:27: error: use of undefined value here causes illegal behavior // :73:27: note: when computing vector element at index '0' // :73:27: error: use of undefined value here causes illegal behavior +// :73:27: note: when computing vector element at index '0' // :73:27: error: use of undefined value here causes illegal behavior +// :73:27: note: when computing vector element at index '0' // :73:27: error: use of undefined value here causes illegal behavior // :73:27: note: when computing vector element at index '0' // :73:27: error: use of undefined value here causes illegal behavior @@ -882,9 +864,9 @@ const std = @import("std"); // :73:27: error: use of undefined value here causes illegal behavior // :73:27: note: when computing vector element at index '0' // :73:27: error: use of undefined value here causes illegal behavior -// :73:27: note: when computing vector element at index '1' +// :73:27: note: when computing vector element at index '0' // :73:27: error: use of undefined value here causes illegal behavior -// :73:27: note: when computing vector element at index '1' +// :73:27: note: when computing vector element at index '0' // :73:27: error: use of undefined value here causes illegal behavior // :73:27: note: when computing vector element at index '0' // :73:27: error: use of undefined value here causes illegal behavior @@ -894,7 +876,9 @@ const std = @import("std"); // :73:27: error: use of undefined value here causes illegal behavior // :73:27: note: when computing vector element at index '0' // :73:27: error: use of undefined value here causes illegal behavior +// :73:27: note: when computing vector element at index '0' // :73:27: error: use of undefined value here causes illegal behavior +// :73:27: note: when computing vector element at index '0' // :73:27: error: use of undefined value here causes illegal behavior // :73:27: note: when computing vector element at index '0' // :73:27: error: use of undefined value here causes illegal behavior @@ -904,9 +888,9 @@ const std = @import("std"); // :73:27: error: use of undefined value here causes illegal behavior // :73:27: note: when computing vector element at index '0' // :73:27: error: use of undefined value here causes illegal behavior -// :73:27: note: when computing vector element at index '1' +// :73:27: note: when computing vector element at index '0' // :73:27: error: use of undefined value here causes illegal behavior -// :73:27: note: when computing vector element at index '1' +// :73:27: note: when computing vector element at index '0' // :73:27: error: use of undefined value here causes illegal behavior // :73:27: note: when computing vector element at index '0' // :73:27: error: use of undefined value here causes illegal behavior @@ -916,7 +900,9 @@ const std = @import("std"); // :73:27: error: use of undefined value here causes illegal behavior // :73:27: note: when computing vector element at index '0' // :73:27: error: use of undefined value here causes illegal behavior +// :73:27: note: when computing vector element at index '0' // :73:27: error: use of undefined value here causes illegal behavior +// :73:27: note: when computing vector element at index '0' // :73:27: error: use of undefined value here causes illegal behavior // :73:27: note: when computing vector element at index '0' // :73:27: error: use of undefined value here causes illegal behavior @@ -926,9 +912,9 @@ const std = @import("std"); // :73:27: error: use of undefined value here causes illegal behavior // :73:27: note: when computing vector element at index '0' // :73:27: error: use of undefined value here causes illegal behavior -// :73:27: note: when computing vector element at index '1' +// :73:27: note: when computing vector element at index '0' // :73:27: error: use of undefined value here causes illegal behavior -// :73:27: note: when computing vector element at index '1' +// :73:27: note: when computing vector element at index '0' // :73:27: error: use of undefined value here causes illegal behavior // :73:27: note: when computing vector element at index '0' // :73:27: error: use of undefined value here causes illegal behavior @@ -938,7 +924,9 @@ const std = @import("std"); // :73:27: error: use of undefined value here causes illegal behavior // :73:27: note: when computing vector element at index '0' // :73:27: error: use of undefined value here causes illegal behavior +// :73:27: note: when computing vector element at index '0' // :73:27: error: use of undefined value here causes illegal behavior +// :73:27: note: when computing vector element at index '0' // :73:27: error: use of undefined value here causes illegal behavior // :73:27: note: when computing vector element at index '0' // :73:27: error: use of undefined value here causes illegal behavior @@ -948,9 +936,9 @@ const std = @import("std"); // :73:27: error: use of undefined value here causes illegal behavior // :73:27: note: when computing vector element at index '0' // :73:27: error: use of undefined value here causes illegal behavior -// :73:27: note: when computing vector element at index '1' +// :73:27: note: when computing vector element at index '0' // :73:27: error: use of undefined value here causes illegal behavior -// :73:27: note: when computing vector element at index '1' +// :73:27: note: when computing vector element at index '0' // :73:27: error: use of undefined value here causes illegal behavior // :73:27: note: when computing vector element at index '0' // :73:27: error: use of undefined value here causes illegal behavior @@ -960,7 +948,9 @@ const std = @import("std"); // :73:27: error: use of undefined value here causes illegal behavior // :73:27: note: when computing vector element at index '0' // :73:27: error: use of undefined value here causes illegal behavior +// :73:27: note: when computing vector element at index '0' // :73:27: error: use of undefined value here causes illegal behavior +// :73:27: note: when computing vector element at index '0' // :73:27: error: use of undefined value here causes illegal behavior // :73:27: note: when computing vector element at index '0' // :73:27: error: use of undefined value here causes illegal behavior @@ -974,35 +964,45 @@ const std = @import("std"); // :73:27: error: use of undefined value here causes illegal behavior // :73:27: note: when computing vector element at index '1' // :73:27: error: use of undefined value here causes illegal behavior -// :73:27: note: when computing vector element at index '0' +// :73:27: note: when computing vector element at index '1' // :73:27: error: use of undefined value here causes illegal behavior -// :73:27: note: when computing vector element at index '0' +// :73:27: note: when computing vector element at index '1' // :73:27: error: use of undefined value here causes illegal behavior -// :73:27: note: when computing vector element at index '0' +// :73:27: note: when computing vector element at index '1' // :73:27: error: use of undefined value here causes illegal behavior -// :73:27: note: when computing vector element at index '0' +// :73:27: note: when computing vector element at index '1' // :73:27: error: use of undefined value here causes illegal behavior +// :73:27: note: when computing vector element at index '1' // :73:27: error: use of undefined value here causes illegal behavior +// :73:27: note: when computing vector element at index '1' // :73:27: error: use of undefined value here causes illegal behavior -// :73:27: note: when computing vector element at index '0' +// :73:27: note: when computing vector element at index '1' // :73:27: error: use of undefined value here causes illegal behavior -// :73:27: note: when computing vector element at index '0' +// :73:27: note: when computing vector element at index '1' // :73:27: error: use of undefined value here causes illegal behavior -// :73:27: note: when computing vector element at index '0' +// :73:27: note: when computing vector element at index '1' // :73:27: error: use of undefined value here causes illegal behavior -// :73:27: note: when computing vector element at index '0' +// :73:27: note: when computing vector element at index '1' // :73:27: error: use of undefined value here causes illegal behavior // :73:27: note: when computing vector element at index '1' // :73:27: error: use of undefined value here causes illegal behavior // :73:27: note: when computing vector element at index '1' // :73:27: error: use of undefined value here causes illegal behavior -// :73:27: note: when computing vector element at index '0' +// :73:27: note: when computing vector element at index '1' // :73:27: error: use of undefined value here causes illegal behavior -// :73:27: note: when computing vector element at index '0' +// :73:27: note: when computing vector element at index '1' // :73:27: error: use of undefined value here causes illegal behavior -// :73:27: note: when computing vector element at index '0' +// :73:27: note: when computing vector element at index '1' // :73:27: error: use of undefined value here causes illegal behavior -// :73:27: note: when computing vector element at index '0' +// :73:27: note: when computing vector element at index '1' +// :73:27: error: use of undefined value here causes illegal behavior +// :73:27: note: when computing vector element at index '1' +// :73:27: error: use of undefined value here causes illegal behavior +// :73:27: note: when computing vector element at index '1' +// :73:27: error: use of undefined value here causes illegal behavior +// :73:27: note: when computing vector element at index '1' +// :73:27: error: use of undefined value here causes illegal behavior +// :73:27: note: when computing vector element at index '1' // :73:30: error: use of undefined value here causes illegal behavior // :73:30: note: when computing vector element at index '0' // :73:30: error: use of undefined value here causes illegal behavior @@ -1050,50 +1050,30 @@ const std = @import("std"); // :77:27: error: use of undefined value here causes illegal behavior // :77:27: error: use of undefined value here causes illegal behavior // :77:27: error: use of undefined value here causes illegal behavior -// :77:27: note: when computing vector element at index '0' // :77:27: error: use of undefined value here causes illegal behavior -// :77:27: note: when computing vector element at index '0' // :77:27: error: use of undefined value here causes illegal behavior -// :77:27: note: when computing vector element at index '0' // :77:27: error: use of undefined value here causes illegal behavior -// :77:27: note: when computing vector element at index '0' // :77:27: error: use of undefined value here causes illegal behavior -// :77:27: note: when computing vector element at index '1' // :77:27: error: use of undefined value here causes illegal behavior -// :77:27: note: when computing vector element at index '1' // :77:27: error: use of undefined value here causes illegal behavior -// :77:27: note: when computing vector element at index '0' // :77:27: error: use of undefined value here causes illegal behavior -// :77:27: note: when computing vector element at index '0' // :77:27: error: use of undefined value here causes illegal behavior -// :77:27: note: when computing vector element at index '0' // :77:27: error: use of undefined value here causes illegal behavior -// :77:27: note: when computing vector element at index '0' // :77:27: error: use of undefined value here causes illegal behavior // :77:27: error: use of undefined value here causes illegal behavior // :77:27: error: use of undefined value here causes illegal behavior -// :77:27: note: when computing vector element at index '0' // :77:27: error: use of undefined value here causes illegal behavior -// :77:27: note: when computing vector element at index '0' // :77:27: error: use of undefined value here causes illegal behavior -// :77:27: note: when computing vector element at index '0' // :77:27: error: use of undefined value here causes illegal behavior -// :77:27: note: when computing vector element at index '0' // :77:27: error: use of undefined value here causes illegal behavior -// :77:27: note: when computing vector element at index '1' // :77:27: error: use of undefined value here causes illegal behavior -// :77:27: note: when computing vector element at index '1' // :77:27: error: use of undefined value here causes illegal behavior -// :77:27: note: when computing vector element at index '0' // :77:27: error: use of undefined value here causes illegal behavior -// :77:27: note: when computing vector element at index '0' // :77:27: error: use of undefined value here causes illegal behavior // :77:27: note: when computing vector element at index '0' // :77:27: error: use of undefined value here causes illegal behavior // :77:27: note: when computing vector element at index '0' // :77:27: error: use of undefined value here causes illegal behavior -// :77:27: error: use of undefined value here causes illegal behavior -// :77:27: error: use of undefined value here causes illegal behavior // :77:27: note: when computing vector element at index '0' // :77:27: error: use of undefined value here causes illegal behavior // :77:27: note: when computing vector element at index '0' @@ -1102,10 +1082,6 @@ const std = @import("std"); // :77:27: error: use of undefined value here causes illegal behavior // :77:27: note: when computing vector element at index '0' // :77:27: error: use of undefined value here causes illegal behavior -// :77:27: note: when computing vector element at index '1' -// :77:27: error: use of undefined value here causes illegal behavior -// :77:27: note: when computing vector element at index '1' -// :77:27: error: use of undefined value here causes illegal behavior // :77:27: note: when computing vector element at index '0' // :77:27: error: use of undefined value here causes illegal behavior // :77:27: note: when computing vector element at index '0' @@ -1114,7 +1090,9 @@ const std = @import("std"); // :77:27: error: use of undefined value here causes illegal behavior // :77:27: note: when computing vector element at index '0' // :77:27: error: use of undefined value here causes illegal behavior +// :77:27: note: when computing vector element at index '0' // :77:27: error: use of undefined value here causes illegal behavior +// :77:27: note: when computing vector element at index '0' // :77:27: error: use of undefined value here causes illegal behavior // :77:27: note: when computing vector element at index '0' // :77:27: error: use of undefined value here causes illegal behavior @@ -1124,9 +1102,9 @@ const std = @import("std"); // :77:27: error: use of undefined value here causes illegal behavior // :77:27: note: when computing vector element at index '0' // :77:27: error: use of undefined value here causes illegal behavior -// :77:27: note: when computing vector element at index '1' +// :77:27: note: when computing vector element at index '0' // :77:27: error: use of undefined value here causes illegal behavior -// :77:27: note: when computing vector element at index '1' +// :77:27: note: when computing vector element at index '0' // :77:27: error: use of undefined value here causes illegal behavior // :77:27: note: when computing vector element at index '0' // :77:27: error: use of undefined value here causes illegal behavior @@ -1136,7 +1114,9 @@ const std = @import("std"); // :77:27: error: use of undefined value here causes illegal behavior // :77:27: note: when computing vector element at index '0' // :77:27: error: use of undefined value here causes illegal behavior +// :77:27: note: when computing vector element at index '0' // :77:27: error: use of undefined value here causes illegal behavior +// :77:27: note: when computing vector element at index '0' // :77:27: error: use of undefined value here causes illegal behavior // :77:27: note: when computing vector element at index '0' // :77:27: error: use of undefined value here causes illegal behavior @@ -1146,9 +1126,9 @@ const std = @import("std"); // :77:27: error: use of undefined value here causes illegal behavior // :77:27: note: when computing vector element at index '0' // :77:27: error: use of undefined value here causes illegal behavior -// :77:27: note: when computing vector element at index '1' +// :77:27: note: when computing vector element at index '0' // :77:27: error: use of undefined value here causes illegal behavior -// :77:27: note: when computing vector element at index '1' +// :77:27: note: when computing vector element at index '0' // :77:27: error: use of undefined value here causes illegal behavior // :77:27: note: when computing vector element at index '0' // :77:27: error: use of undefined value here causes illegal behavior @@ -1158,7 +1138,9 @@ const std = @import("std"); // :77:27: error: use of undefined value here causes illegal behavior // :77:27: note: when computing vector element at index '0' // :77:27: error: use of undefined value here causes illegal behavior +// :77:27: note: when computing vector element at index '0' // :77:27: error: use of undefined value here causes illegal behavior +// :77:27: note: when computing vector element at index '0' // :77:27: error: use of undefined value here causes illegal behavior // :77:27: note: when computing vector element at index '0' // :77:27: error: use of undefined value here causes illegal behavior @@ -1168,9 +1150,9 @@ const std = @import("std"); // :77:27: error: use of undefined value here causes illegal behavior // :77:27: note: when computing vector element at index '0' // :77:27: error: use of undefined value here causes illegal behavior -// :77:27: note: when computing vector element at index '1' +// :77:27: note: when computing vector element at index '0' // :77:27: error: use of undefined value here causes illegal behavior -// :77:27: note: when computing vector element at index '1' +// :77:27: note: when computing vector element at index '0' // :77:27: error: use of undefined value here causes illegal behavior // :77:27: note: when computing vector element at index '0' // :77:27: error: use of undefined value here causes illegal behavior @@ -1180,7 +1162,9 @@ const std = @import("std"); // :77:27: error: use of undefined value here causes illegal behavior // :77:27: note: when computing vector element at index '0' // :77:27: error: use of undefined value here causes illegal behavior +// :77:27: note: when computing vector element at index '0' // :77:27: error: use of undefined value here causes illegal behavior +// :77:27: note: when computing vector element at index '0' // :77:27: error: use of undefined value here causes illegal behavior // :77:27: note: when computing vector element at index '0' // :77:27: error: use of undefined value here causes illegal behavior @@ -1190,9 +1174,9 @@ const std = @import("std"); // :77:27: error: use of undefined value here causes illegal behavior // :77:27: note: when computing vector element at index '0' // :77:27: error: use of undefined value here causes illegal behavior -// :77:27: note: when computing vector element at index '1' +// :77:27: note: when computing vector element at index '0' // :77:27: error: use of undefined value here causes illegal behavior -// :77:27: note: when computing vector element at index '1' +// :77:27: note: when computing vector element at index '0' // :77:27: error: use of undefined value here causes illegal behavior // :77:27: note: when computing vector element at index '0' // :77:27: error: use of undefined value here causes illegal behavior @@ -1202,7 +1186,9 @@ const std = @import("std"); // :77:27: error: use of undefined value here causes illegal behavior // :77:27: note: when computing vector element at index '0' // :77:27: error: use of undefined value here causes illegal behavior +// :77:27: note: when computing vector element at index '0' // :77:27: error: use of undefined value here causes illegal behavior +// :77:27: note: when computing vector element at index '0' // :77:27: error: use of undefined value here causes illegal behavior // :77:27: note: when computing vector element at index '0' // :77:27: error: use of undefined value here causes illegal behavior @@ -1212,9 +1198,9 @@ const std = @import("std"); // :77:27: error: use of undefined value here causes illegal behavior // :77:27: note: when computing vector element at index '0' // :77:27: error: use of undefined value here causes illegal behavior -// :77:27: note: when computing vector element at index '1' +// :77:27: note: when computing vector element at index '0' // :77:27: error: use of undefined value here causes illegal behavior -// :77:27: note: when computing vector element at index '1' +// :77:27: note: when computing vector element at index '0' // :77:27: error: use of undefined value here causes illegal behavior // :77:27: note: when computing vector element at index '0' // :77:27: error: use of undefined value here causes illegal behavior @@ -1224,7 +1210,9 @@ const std = @import("std"); // :77:27: error: use of undefined value here causes illegal behavior // :77:27: note: when computing vector element at index '0' // :77:27: error: use of undefined value here causes illegal behavior +// :77:27: note: when computing vector element at index '0' // :77:27: error: use of undefined value here causes illegal behavior +// :77:27: note: when computing vector element at index '0' // :77:27: error: use of undefined value here causes illegal behavior // :77:27: note: when computing vector element at index '0' // :77:27: error: use of undefined value here causes illegal behavior @@ -1234,9 +1222,9 @@ const std = @import("std"); // :77:27: error: use of undefined value here causes illegal behavior // :77:27: note: when computing vector element at index '0' // :77:27: error: use of undefined value here causes illegal behavior -// :77:27: note: when computing vector element at index '1' +// :77:27: note: when computing vector element at index '0' // :77:27: error: use of undefined value here causes illegal behavior -// :77:27: note: when computing vector element at index '1' +// :77:27: note: when computing vector element at index '0' // :77:27: error: use of undefined value here causes illegal behavior // :77:27: note: when computing vector element at index '0' // :77:27: error: use of undefined value here causes illegal behavior @@ -1246,7 +1234,9 @@ const std = @import("std"); // :77:27: error: use of undefined value here causes illegal behavior // :77:27: note: when computing vector element at index '0' // :77:27: error: use of undefined value here causes illegal behavior +// :77:27: note: when computing vector element at index '0' // :77:27: error: use of undefined value here causes illegal behavior +// :77:27: note: when computing vector element at index '0' // :77:27: error: use of undefined value here causes illegal behavior // :77:27: note: when computing vector element at index '0' // :77:27: error: use of undefined value here causes illegal behavior @@ -1260,35 +1250,45 @@ const std = @import("std"); // :77:27: error: use of undefined value here causes illegal behavior // :77:27: note: when computing vector element at index '1' // :77:27: error: use of undefined value here causes illegal behavior -// :77:27: note: when computing vector element at index '0' +// :77:27: note: when computing vector element at index '1' // :77:27: error: use of undefined value here causes illegal behavior -// :77:27: note: when computing vector element at index '0' +// :77:27: note: when computing vector element at index '1' // :77:27: error: use of undefined value here causes illegal behavior -// :77:27: note: when computing vector element at index '0' +// :77:27: note: when computing vector element at index '1' // :77:27: error: use of undefined value here causes illegal behavior -// :77:27: note: when computing vector element at index '0' +// :77:27: note: when computing vector element at index '1' // :77:27: error: use of undefined value here causes illegal behavior +// :77:27: note: when computing vector element at index '1' // :77:27: error: use of undefined value here causes illegal behavior +// :77:27: note: when computing vector element at index '1' // :77:27: error: use of undefined value here causes illegal behavior -// :77:27: note: when computing vector element at index '0' +// :77:27: note: when computing vector element at index '1' // :77:27: error: use of undefined value here causes illegal behavior -// :77:27: note: when computing vector element at index '0' +// :77:27: note: when computing vector element at index '1' // :77:27: error: use of undefined value here causes illegal behavior -// :77:27: note: when computing vector element at index '0' +// :77:27: note: when computing vector element at index '1' // :77:27: error: use of undefined value here causes illegal behavior -// :77:27: note: when computing vector element at index '0' +// :77:27: note: when computing vector element at index '1' // :77:27: error: use of undefined value here causes illegal behavior // :77:27: note: when computing vector element at index '1' // :77:27: error: use of undefined value here causes illegal behavior // :77:27: note: when computing vector element at index '1' // :77:27: error: use of undefined value here causes illegal behavior -// :77:27: note: when computing vector element at index '0' +// :77:27: note: when computing vector element at index '1' // :77:27: error: use of undefined value here causes illegal behavior -// :77:27: note: when computing vector element at index '0' +// :77:27: note: when computing vector element at index '1' // :77:27: error: use of undefined value here causes illegal behavior -// :77:27: note: when computing vector element at index '0' +// :77:27: note: when computing vector element at index '1' // :77:27: error: use of undefined value here causes illegal behavior -// :77:27: note: when computing vector element at index '0' +// :77:27: note: when computing vector element at index '1' +// :77:27: error: use of undefined value here causes illegal behavior +// :77:27: note: when computing vector element at index '1' +// :77:27: error: use of undefined value here causes illegal behavior +// :77:27: note: when computing vector element at index '1' +// :77:27: error: use of undefined value here causes illegal behavior +// :77:27: note: when computing vector element at index '1' +// :77:27: error: use of undefined value here causes illegal behavior +// :77:27: note: when computing vector element at index '1' // :77:30: error: use of undefined value here causes illegal behavior // :77:30: note: when computing vector element at index '0' // :77:30: error: use of undefined value here causes illegal behavior @@ -1336,50 +1336,30 @@ const std = @import("std"); // :81:17: error: use of undefined value here causes illegal behavior // :81:17: error: use of undefined value here causes illegal behavior // :81:17: error: use of undefined value here causes illegal behavior -// :81:17: note: when computing vector element at index '0' // :81:17: error: use of undefined value here causes illegal behavior -// :81:17: note: when computing vector element at index '0' // :81:17: error: use of undefined value here causes illegal behavior -// :81:17: note: when computing vector element at index '0' // :81:17: error: use of undefined value here causes illegal behavior -// :81:17: note: when computing vector element at index '0' // :81:17: error: use of undefined value here causes illegal behavior -// :81:17: note: when computing vector element at index '1' // :81:17: error: use of undefined value here causes illegal behavior -// :81:17: note: when computing vector element at index '1' // :81:17: error: use of undefined value here causes illegal behavior -// :81:17: note: when computing vector element at index '0' // :81:17: error: use of undefined value here causes illegal behavior -// :81:17: note: when computing vector element at index '0' // :81:17: error: use of undefined value here causes illegal behavior -// :81:17: note: when computing vector element at index '0' // :81:17: error: use of undefined value here causes illegal behavior -// :81:17: note: when computing vector element at index '0' // :81:17: error: use of undefined value here causes illegal behavior // :81:17: error: use of undefined value here causes illegal behavior // :81:17: error: use of undefined value here causes illegal behavior -// :81:17: note: when computing vector element at index '0' // :81:17: error: use of undefined value here causes illegal behavior -// :81:17: note: when computing vector element at index '0' // :81:17: error: use of undefined value here causes illegal behavior -// :81:17: note: when computing vector element at index '0' // :81:17: error: use of undefined value here causes illegal behavior -// :81:17: note: when computing vector element at index '0' // :81:17: error: use of undefined value here causes illegal behavior -// :81:17: note: when computing vector element at index '1' // :81:17: error: use of undefined value here causes illegal behavior -// :81:17: note: when computing vector element at index '1' // :81:17: error: use of undefined value here causes illegal behavior -// :81:17: note: when computing vector element at index '0' // :81:17: error: use of undefined value here causes illegal behavior -// :81:17: note: when computing vector element at index '0' // :81:17: error: use of undefined value here causes illegal behavior // :81:17: note: when computing vector element at index '0' // :81:17: error: use of undefined value here causes illegal behavior // :81:17: note: when computing vector element at index '0' // :81:17: error: use of undefined value here causes illegal behavior -// :81:17: error: use of undefined value here causes illegal behavior -// :81:17: error: use of undefined value here causes illegal behavior // :81:17: note: when computing vector element at index '0' // :81:17: error: use of undefined value here causes illegal behavior // :81:17: note: when computing vector element at index '0' @@ -1388,10 +1368,6 @@ const std = @import("std"); // :81:17: error: use of undefined value here causes illegal behavior // :81:17: note: when computing vector element at index '0' // :81:17: error: use of undefined value here causes illegal behavior -// :81:17: note: when computing vector element at index '1' -// :81:17: error: use of undefined value here causes illegal behavior -// :81:17: note: when computing vector element at index '1' -// :81:17: error: use of undefined value here causes illegal behavior // :81:17: note: when computing vector element at index '0' // :81:17: error: use of undefined value here causes illegal behavior // :81:17: note: when computing vector element at index '0' @@ -1400,7 +1376,9 @@ const std = @import("std"); // :81:17: error: use of undefined value here causes illegal behavior // :81:17: note: when computing vector element at index '0' // :81:17: error: use of undefined value here causes illegal behavior +// :81:17: note: when computing vector element at index '0' // :81:17: error: use of undefined value here causes illegal behavior +// :81:17: note: when computing vector element at index '0' // :81:17: error: use of undefined value here causes illegal behavior // :81:17: note: when computing vector element at index '0' // :81:17: error: use of undefined value here causes illegal behavior @@ -1410,9 +1388,9 @@ const std = @import("std"); // :81:17: error: use of undefined value here causes illegal behavior // :81:17: note: when computing vector element at index '0' // :81:17: error: use of undefined value here causes illegal behavior -// :81:17: note: when computing vector element at index '1' +// :81:17: note: when computing vector element at index '0' // :81:17: error: use of undefined value here causes illegal behavior -// :81:17: note: when computing vector element at index '1' +// :81:17: note: when computing vector element at index '0' // :81:17: error: use of undefined value here causes illegal behavior // :81:17: note: when computing vector element at index '0' // :81:17: error: use of undefined value here causes illegal behavior @@ -1422,7 +1400,9 @@ const std = @import("std"); // :81:17: error: use of undefined value here causes illegal behavior // :81:17: note: when computing vector element at index '0' // :81:17: error: use of undefined value here causes illegal behavior +// :81:17: note: when computing vector element at index '0' // :81:17: error: use of undefined value here causes illegal behavior +// :81:17: note: when computing vector element at index '0' // :81:17: error: use of undefined value here causes illegal behavior // :81:17: note: when computing vector element at index '0' // :81:17: error: use of undefined value here causes illegal behavior @@ -1432,9 +1412,9 @@ const std = @import("std"); // :81:17: error: use of undefined value here causes illegal behavior // :81:17: note: when computing vector element at index '0' // :81:17: error: use of undefined value here causes illegal behavior -// :81:17: note: when computing vector element at index '1' +// :81:17: note: when computing vector element at index '0' // :81:17: error: use of undefined value here causes illegal behavior -// :81:17: note: when computing vector element at index '1' +// :81:17: note: when computing vector element at index '0' // :81:17: error: use of undefined value here causes illegal behavior // :81:17: note: when computing vector element at index '0' // :81:17: error: use of undefined value here causes illegal behavior @@ -1444,7 +1424,9 @@ const std = @import("std"); // :81:17: error: use of undefined value here causes illegal behavior // :81:17: note: when computing vector element at index '0' // :81:17: error: use of undefined value here causes illegal behavior +// :81:17: note: when computing vector element at index '0' // :81:17: error: use of undefined value here causes illegal behavior +// :81:17: note: when computing vector element at index '0' // :81:17: error: use of undefined value here causes illegal behavior // :81:17: note: when computing vector element at index '0' // :81:17: error: use of undefined value here causes illegal behavior @@ -1454,9 +1436,9 @@ const std = @import("std"); // :81:17: error: use of undefined value here causes illegal behavior // :81:17: note: when computing vector element at index '0' // :81:17: error: use of undefined value here causes illegal behavior -// :81:17: note: when computing vector element at index '1' +// :81:17: note: when computing vector element at index '0' // :81:17: error: use of undefined value here causes illegal behavior -// :81:17: note: when computing vector element at index '1' +// :81:17: note: when computing vector element at index '0' // :81:17: error: use of undefined value here causes illegal behavior // :81:17: note: when computing vector element at index '0' // :81:17: error: use of undefined value here causes illegal behavior @@ -1466,7 +1448,9 @@ const std = @import("std"); // :81:17: error: use of undefined value here causes illegal behavior // :81:17: note: when computing vector element at index '0' // :81:17: error: use of undefined value here causes illegal behavior +// :81:17: note: when computing vector element at index '0' // :81:17: error: use of undefined value here causes illegal behavior +// :81:17: note: when computing vector element at index '0' // :81:17: error: use of undefined value here causes illegal behavior // :81:17: note: when computing vector element at index '0' // :81:17: error: use of undefined value here causes illegal behavior @@ -1476,9 +1460,9 @@ const std = @import("std"); // :81:17: error: use of undefined value here causes illegal behavior // :81:17: note: when computing vector element at index '0' // :81:17: error: use of undefined value here causes illegal behavior -// :81:17: note: when computing vector element at index '1' +// :81:17: note: when computing vector element at index '0' // :81:17: error: use of undefined value here causes illegal behavior -// :81:17: note: when computing vector element at index '1' +// :81:17: note: when computing vector element at index '0' // :81:17: error: use of undefined value here causes illegal behavior // :81:17: note: when computing vector element at index '0' // :81:17: error: use of undefined value here causes illegal behavior @@ -1488,7 +1472,9 @@ const std = @import("std"); // :81:17: error: use of undefined value here causes illegal behavior // :81:17: note: when computing vector element at index '0' // :81:17: error: use of undefined value here causes illegal behavior +// :81:17: note: when computing vector element at index '0' // :81:17: error: use of undefined value here causes illegal behavior +// :81:17: note: when computing vector element at index '0' // :81:17: error: use of undefined value here causes illegal behavior // :81:17: note: when computing vector element at index '0' // :81:17: error: use of undefined value here causes illegal behavior @@ -1498,9 +1484,9 @@ const std = @import("std"); // :81:17: error: use of undefined value here causes illegal behavior // :81:17: note: when computing vector element at index '0' // :81:17: error: use of undefined value here causes illegal behavior -// :81:17: note: when computing vector element at index '1' +// :81:17: note: when computing vector element at index '0' // :81:17: error: use of undefined value here causes illegal behavior -// :81:17: note: when computing vector element at index '1' +// :81:17: note: when computing vector element at index '0' // :81:17: error: use of undefined value here causes illegal behavior // :81:17: note: when computing vector element at index '0' // :81:17: error: use of undefined value here causes illegal behavior @@ -1510,7 +1496,9 @@ const std = @import("std"); // :81:17: error: use of undefined value here causes illegal behavior // :81:17: note: when computing vector element at index '0' // :81:17: error: use of undefined value here causes illegal behavior +// :81:17: note: when computing vector element at index '0' // :81:17: error: use of undefined value here causes illegal behavior +// :81:17: note: when computing vector element at index '0' // :81:17: error: use of undefined value here causes illegal behavior // :81:17: note: when computing vector element at index '0' // :81:17: error: use of undefined value here causes illegal behavior @@ -1520,9 +1508,9 @@ const std = @import("std"); // :81:17: error: use of undefined value here causes illegal behavior // :81:17: note: when computing vector element at index '0' // :81:17: error: use of undefined value here causes illegal behavior -// :81:17: note: when computing vector element at index '1' +// :81:17: note: when computing vector element at index '0' // :81:17: error: use of undefined value here causes illegal behavior -// :81:17: note: when computing vector element at index '1' +// :81:17: note: when computing vector element at index '0' // :81:17: error: use of undefined value here causes illegal behavior // :81:17: note: when computing vector element at index '0' // :81:17: error: use of undefined value here causes illegal behavior @@ -1532,7 +1520,9 @@ const std = @import("std"); // :81:17: error: use of undefined value here causes illegal behavior // :81:17: note: when computing vector element at index '0' // :81:17: error: use of undefined value here causes illegal behavior +// :81:17: note: when computing vector element at index '0' // :81:17: error: use of undefined value here causes illegal behavior +// :81:17: note: when computing vector element at index '0' // :81:17: error: use of undefined value here causes illegal behavior // :81:17: note: when computing vector element at index '0' // :81:17: error: use of undefined value here causes illegal behavior @@ -1546,35 +1536,45 @@ const std = @import("std"); // :81:17: error: use of undefined value here causes illegal behavior // :81:17: note: when computing vector element at index '1' // :81:17: error: use of undefined value here causes illegal behavior -// :81:17: note: when computing vector element at index '0' +// :81:17: note: when computing vector element at index '1' // :81:17: error: use of undefined value here causes illegal behavior -// :81:17: note: when computing vector element at index '0' +// :81:17: note: when computing vector element at index '1' // :81:17: error: use of undefined value here causes illegal behavior -// :81:17: note: when computing vector element at index '0' +// :81:17: note: when computing vector element at index '1' // :81:17: error: use of undefined value here causes illegal behavior -// :81:17: note: when computing vector element at index '0' +// :81:17: note: when computing vector element at index '1' // :81:17: error: use of undefined value here causes illegal behavior +// :81:17: note: when computing vector element at index '1' // :81:17: error: use of undefined value here causes illegal behavior +// :81:17: note: when computing vector element at index '1' // :81:17: error: use of undefined value here causes illegal behavior -// :81:17: note: when computing vector element at index '0' +// :81:17: note: when computing vector element at index '1' // :81:17: error: use of undefined value here causes illegal behavior -// :81:17: note: when computing vector element at index '0' +// :81:17: note: when computing vector element at index '1' // :81:17: error: use of undefined value here causes illegal behavior -// :81:17: note: when computing vector element at index '0' +// :81:17: note: when computing vector element at index '1' // :81:17: error: use of undefined value here causes illegal behavior -// :81:17: note: when computing vector element at index '0' +// :81:17: note: when computing vector element at index '1' // :81:17: error: use of undefined value here causes illegal behavior // :81:17: note: when computing vector element at index '1' // :81:17: error: use of undefined value here causes illegal behavior // :81:17: note: when computing vector element at index '1' // :81:17: error: use of undefined value here causes illegal behavior -// :81:17: note: when computing vector element at index '0' +// :81:17: note: when computing vector element at index '1' // :81:17: error: use of undefined value here causes illegal behavior -// :81:17: note: when computing vector element at index '0' +// :81:17: note: when computing vector element at index '1' // :81:17: error: use of undefined value here causes illegal behavior -// :81:17: note: when computing vector element at index '0' +// :81:17: note: when computing vector element at index '1' // :81:17: error: use of undefined value here causes illegal behavior -// :81:17: note: when computing vector element at index '0' +// :81:17: note: when computing vector element at index '1' +// :81:17: error: use of undefined value here causes illegal behavior +// :81:17: note: when computing vector element at index '1' +// :81:17: error: use of undefined value here causes illegal behavior +// :81:17: note: when computing vector element at index '1' +// :81:17: error: use of undefined value here causes illegal behavior +// :81:17: note: when computing vector element at index '1' +// :81:17: error: use of undefined value here causes illegal behavior +// :81:17: note: when computing vector element at index '1' // :81:21: error: use of undefined value here causes illegal behavior // :81:21: note: when computing vector element at index '0' // :81:21: error: use of undefined value here causes illegal behavior @@ -1622,39 +1622,25 @@ const std = @import("std"); // :85:22: error: use of undefined value here causes illegal behavior // :85:22: error: use of undefined value here causes illegal behavior // :85:22: error: use of undefined value here causes illegal behavior -// :85:22: note: when computing vector element at index '0' // :85:22: error: use of undefined value here causes illegal behavior -// :85:22: note: when computing vector element at index '0' // :85:22: error: use of undefined value here causes illegal behavior -// :85:22: note: when computing vector element at index '0' // :85:22: error: use of undefined value here causes illegal behavior -// :85:22: note: when computing vector element at index '0' // :85:22: error: use of undefined value here causes illegal behavior -// :85:22: note: when computing vector element at index '1' // :85:22: error: use of undefined value here causes illegal behavior -// :85:22: note: when computing vector element at index '1' // :85:22: error: use of undefined value here causes illegal behavior -// :85:22: note: when computing vector element at index '0' // :85:22: error: use of undefined value here causes illegal behavior -// :85:22: note: when computing vector element at index '0' // :85:22: error: use of undefined value here causes illegal behavior -// :85:22: note: when computing vector element at index '0' // :85:22: error: use of undefined value here causes illegal behavior -// :85:22: note: when computing vector element at index '0' // :85:22: error: use of undefined value here causes illegal behavior // :85:22: error: use of undefined value here causes illegal behavior // :85:22: error: use of undefined value here causes illegal behavior -// :85:22: note: when computing vector element at index '0' // :85:22: error: use of undefined value here causes illegal behavior -// :85:22: note: when computing vector element at index '0' // :85:22: error: use of undefined value here causes illegal behavior -// :85:22: note: when computing vector element at index '0' // :85:22: error: use of undefined value here causes illegal behavior -// :85:22: note: when computing vector element at index '0' // :85:22: error: use of undefined value here causes illegal behavior -// :85:22: note: when computing vector element at index '1' // :85:22: error: use of undefined value here causes illegal behavior -// :85:22: note: when computing vector element at index '1' +// :85:22: error: use of undefined value here causes illegal behavior +// :85:22: error: use of undefined value here causes illegal behavior // :85:22: error: use of undefined value here causes illegal behavior // :85:22: note: when computing vector element at index '0' // :85:22: error: use of undefined value here causes illegal behavior @@ -1664,7 +1650,9 @@ const std = @import("std"); // :85:22: error: use of undefined value here causes illegal behavior // :85:22: note: when computing vector element at index '0' // :85:22: error: use of undefined value here causes illegal behavior +// :85:22: note: when computing vector element at index '0' // :85:22: error: use of undefined value here causes illegal behavior +// :85:22: note: when computing vector element at index '0' // :85:22: error: use of undefined value here causes illegal behavior // :85:22: note: when computing vector element at index '0' // :85:22: error: use of undefined value here causes illegal behavior @@ -1674,9 +1662,9 @@ const std = @import("std"); // :85:22: error: use of undefined value here causes illegal behavior // :85:22: note: when computing vector element at index '0' // :85:22: error: use of undefined value here causes illegal behavior -// :85:22: note: when computing vector element at index '1' +// :85:22: note: when computing vector element at index '0' // :85:22: error: use of undefined value here causes illegal behavior -// :85:22: note: when computing vector element at index '1' +// :85:22: note: when computing vector element at index '0' // :85:22: error: use of undefined value here causes illegal behavior // :85:22: note: when computing vector element at index '0' // :85:22: error: use of undefined value here causes illegal behavior @@ -1686,7 +1674,9 @@ const std = @import("std"); // :85:22: error: use of undefined value here causes illegal behavior // :85:22: note: when computing vector element at index '0' // :85:22: error: use of undefined value here causes illegal behavior +// :85:22: note: when computing vector element at index '0' // :85:22: error: use of undefined value here causes illegal behavior +// :85:22: note: when computing vector element at index '0' // :85:22: error: use of undefined value here causes illegal behavior // :85:22: note: when computing vector element at index '0' // :85:22: error: use of undefined value here causes illegal behavior @@ -1696,9 +1686,9 @@ const std = @import("std"); // :85:22: error: use of undefined value here causes illegal behavior // :85:22: note: when computing vector element at index '0' // :85:22: error: use of undefined value here causes illegal behavior -// :85:22: note: when computing vector element at index '1' +// :85:22: note: when computing vector element at index '0' // :85:22: error: use of undefined value here causes illegal behavior -// :85:22: note: when computing vector element at index '1' +// :85:22: note: when computing vector element at index '0' // :85:22: error: use of undefined value here causes illegal behavior // :85:22: note: when computing vector element at index '0' // :85:22: error: use of undefined value here causes illegal behavior @@ -1708,7 +1698,9 @@ const std = @import("std"); // :85:22: error: use of undefined value here causes illegal behavior // :85:22: note: when computing vector element at index '0' // :85:22: error: use of undefined value here causes illegal behavior +// :85:22: note: when computing vector element at index '0' // :85:22: error: use of undefined value here causes illegal behavior +// :85:22: note: when computing vector element at index '0' // :85:22: error: use of undefined value here causes illegal behavior // :85:22: note: when computing vector element at index '0' // :85:22: error: use of undefined value here causes illegal behavior @@ -1718,10 +1710,6 @@ const std = @import("std"); // :85:22: error: use of undefined value here causes illegal behavior // :85:22: note: when computing vector element at index '0' // :85:22: error: use of undefined value here causes illegal behavior -// :85:22: note: when computing vector element at index '1' -// :85:22: error: use of undefined value here causes illegal behavior -// :85:22: note: when computing vector element at index '1' -// :85:22: error: use of undefined value here causes illegal behavior // :85:22: note: when computing vector element at index '0' // :85:22: error: use of undefined value here causes illegal behavior // :85:22: note: when computing vector element at index '0' @@ -1730,8 +1718,6 @@ const std = @import("std"); // :85:22: error: use of undefined value here causes illegal behavior // :85:22: note: when computing vector element at index '0' // :85:22: error: use of undefined value here causes illegal behavior -// :85:22: error: use of undefined value here causes illegal behavior -// :85:22: error: use of undefined value here causes illegal behavior // :85:22: note: when computing vector element at index '0' // :85:22: error: use of undefined value here causes illegal behavior // :85:22: note: when computing vector element at index '0' @@ -1740,10 +1726,6 @@ const std = @import("std"); // :85:22: error: use of undefined value here causes illegal behavior // :85:22: note: when computing vector element at index '0' // :85:22: error: use of undefined value here causes illegal behavior -// :85:22: note: when computing vector element at index '1' -// :85:22: error: use of undefined value here causes illegal behavior -// :85:22: note: when computing vector element at index '1' -// :85:22: error: use of undefined value here causes illegal behavior // :85:22: note: when computing vector element at index '0' // :85:22: error: use of undefined value here causes illegal behavior // :85:22: note: when computing vector element at index '0' @@ -1752,7 +1734,9 @@ const std = @import("std"); // :85:22: error: use of undefined value here causes illegal behavior // :85:22: note: when computing vector element at index '0' // :85:22: error: use of undefined value here causes illegal behavior +// :85:22: note: when computing vector element at index '0' // :85:22: error: use of undefined value here causes illegal behavior +// :85:22: note: when computing vector element at index '0' // :85:22: error: use of undefined value here causes illegal behavior // :85:22: note: when computing vector element at index '0' // :85:22: error: use of undefined value here causes illegal behavior @@ -1762,9 +1746,9 @@ const std = @import("std"); // :85:22: error: use of undefined value here causes illegal behavior // :85:22: note: when computing vector element at index '0' // :85:22: error: use of undefined value here causes illegal behavior -// :85:22: note: when computing vector element at index '1' +// :85:22: note: when computing vector element at index '0' // :85:22: error: use of undefined value here causes illegal behavior -// :85:22: note: when computing vector element at index '1' +// :85:22: note: when computing vector element at index '0' // :85:22: error: use of undefined value here causes illegal behavior // :85:22: note: when computing vector element at index '0' // :85:22: error: use of undefined value here causes illegal behavior @@ -1774,7 +1758,9 @@ const std = @import("std"); // :85:22: error: use of undefined value here causes illegal behavior // :85:22: note: when computing vector element at index '0' // :85:22: error: use of undefined value here causes illegal behavior +// :85:22: note: when computing vector element at index '0' // :85:22: error: use of undefined value here causes illegal behavior +// :85:22: note: when computing vector element at index '0' // :85:22: error: use of undefined value here causes illegal behavior // :85:22: note: when computing vector element at index '0' // :85:22: error: use of undefined value here causes illegal behavior @@ -1784,9 +1770,9 @@ const std = @import("std"); // :85:22: error: use of undefined value here causes illegal behavior // :85:22: note: when computing vector element at index '0' // :85:22: error: use of undefined value here causes illegal behavior -// :85:22: note: when computing vector element at index '1' +// :85:22: note: when computing vector element at index '0' // :85:22: error: use of undefined value here causes illegal behavior -// :85:22: note: when computing vector element at index '1' +// :85:22: note: when computing vector element at index '0' // :85:22: error: use of undefined value here causes illegal behavior // :85:22: note: when computing vector element at index '0' // :85:22: error: use of undefined value here causes illegal behavior @@ -1796,7 +1782,9 @@ const std = @import("std"); // :85:22: error: use of undefined value here causes illegal behavior // :85:22: note: when computing vector element at index '0' // :85:22: error: use of undefined value here causes illegal behavior +// :85:22: note: when computing vector element at index '0' // :85:22: error: use of undefined value here causes illegal behavior +// :85:22: note: when computing vector element at index '0' // :85:22: error: use of undefined value here causes illegal behavior // :85:22: note: when computing vector element at index '0' // :85:22: error: use of undefined value here causes illegal behavior @@ -1806,9 +1794,9 @@ const std = @import("std"); // :85:22: error: use of undefined value here causes illegal behavior // :85:22: note: when computing vector element at index '0' // :85:22: error: use of undefined value here causes illegal behavior -// :85:22: note: when computing vector element at index '1' +// :85:22: note: when computing vector element at index '0' // :85:22: error: use of undefined value here causes illegal behavior -// :85:22: note: when computing vector element at index '1' +// :85:22: note: when computing vector element at index '0' // :85:22: error: use of undefined value here causes illegal behavior // :85:22: note: when computing vector element at index '0' // :85:22: error: use of undefined value here causes illegal behavior @@ -1818,7 +1806,9 @@ const std = @import("std"); // :85:22: error: use of undefined value here causes illegal behavior // :85:22: note: when computing vector element at index '0' // :85:22: error: use of undefined value here causes illegal behavior +// :85:22: note: when computing vector element at index '0' // :85:22: error: use of undefined value here causes illegal behavior +// :85:22: note: when computing vector element at index '0' // :85:22: error: use of undefined value here causes illegal behavior // :85:22: note: when computing vector element at index '0' // :85:22: error: use of undefined value here causes illegal behavior @@ -1832,35 +1822,45 @@ const std = @import("std"); // :85:22: error: use of undefined value here causes illegal behavior // :85:22: note: when computing vector element at index '1' // :85:22: error: use of undefined value here causes illegal behavior -// :85:22: note: when computing vector element at index '0' +// :85:22: note: when computing vector element at index '1' // :85:22: error: use of undefined value here causes illegal behavior -// :85:22: note: when computing vector element at index '0' +// :85:22: note: when computing vector element at index '1' // :85:22: error: use of undefined value here causes illegal behavior -// :85:22: note: when computing vector element at index '0' +// :85:22: note: when computing vector element at index '1' // :85:22: error: use of undefined value here causes illegal behavior -// :85:22: note: when computing vector element at index '0' +// :85:22: note: when computing vector element at index '1' // :85:22: error: use of undefined value here causes illegal behavior +// :85:22: note: when computing vector element at index '1' // :85:22: error: use of undefined value here causes illegal behavior +// :85:22: note: when computing vector element at index '1' // :85:22: error: use of undefined value here causes illegal behavior -// :85:22: note: when computing vector element at index '0' +// :85:22: note: when computing vector element at index '1' // :85:22: error: use of undefined value here causes illegal behavior -// :85:22: note: when computing vector element at index '0' +// :85:22: note: when computing vector element at index '1' // :85:22: error: use of undefined value here causes illegal behavior -// :85:22: note: when computing vector element at index '0' +// :85:22: note: when computing vector element at index '1' // :85:22: error: use of undefined value here causes illegal behavior -// :85:22: note: when computing vector element at index '0' +// :85:22: note: when computing vector element at index '1' // :85:22: error: use of undefined value here causes illegal behavior // :85:22: note: when computing vector element at index '1' // :85:22: error: use of undefined value here causes illegal behavior // :85:22: note: when computing vector element at index '1' // :85:22: error: use of undefined value here causes illegal behavior -// :85:22: note: when computing vector element at index '0' +// :85:22: note: when computing vector element at index '1' // :85:22: error: use of undefined value here causes illegal behavior -// :85:22: note: when computing vector element at index '0' +// :85:22: note: when computing vector element at index '1' // :85:22: error: use of undefined value here causes illegal behavior -// :85:22: note: when computing vector element at index '0' +// :85:22: note: when computing vector element at index '1' // :85:22: error: use of undefined value here causes illegal behavior -// :85:22: note: when computing vector element at index '0' +// :85:22: note: when computing vector element at index '1' +// :85:22: error: use of undefined value here causes illegal behavior +// :85:22: note: when computing vector element at index '1' +// :85:22: error: use of undefined value here causes illegal behavior +// :85:22: note: when computing vector element at index '1' +// :85:22: error: use of undefined value here causes illegal behavior +// :85:22: note: when computing vector element at index '1' +// :85:22: error: use of undefined value here causes illegal behavior +// :85:22: note: when computing vector element at index '1' // :85:25: error: use of undefined value here causes illegal behavior // :85:25: note: when computing vector element at index '0' // :85:25: error: use of undefined value here causes illegal behavior @@ -1908,50 +1908,30 @@ const std = @import("std"); // :89:22: error: use of undefined value here causes illegal behavior // :89:22: error: use of undefined value here causes illegal behavior // :89:22: error: use of undefined value here causes illegal behavior -// :89:22: note: when computing vector element at index '0' // :89:22: error: use of undefined value here causes illegal behavior -// :89:22: note: when computing vector element at index '0' // :89:22: error: use of undefined value here causes illegal behavior -// :89:22: note: when computing vector element at index '0' // :89:22: error: use of undefined value here causes illegal behavior -// :89:22: note: when computing vector element at index '0' // :89:22: error: use of undefined value here causes illegal behavior -// :89:22: note: when computing vector element at index '1' // :89:22: error: use of undefined value here causes illegal behavior -// :89:22: note: when computing vector element at index '1' // :89:22: error: use of undefined value here causes illegal behavior -// :89:22: note: when computing vector element at index '0' // :89:22: error: use of undefined value here causes illegal behavior -// :89:22: note: when computing vector element at index '0' // :89:22: error: use of undefined value here causes illegal behavior -// :89:22: note: when computing vector element at index '0' // :89:22: error: use of undefined value here causes illegal behavior -// :89:22: note: when computing vector element at index '0' // :89:22: error: use of undefined value here causes illegal behavior // :89:22: error: use of undefined value here causes illegal behavior // :89:22: error: use of undefined value here causes illegal behavior -// :89:22: note: when computing vector element at index '0' // :89:22: error: use of undefined value here causes illegal behavior -// :89:22: note: when computing vector element at index '0' // :89:22: error: use of undefined value here causes illegal behavior -// :89:22: note: when computing vector element at index '0' // :89:22: error: use of undefined value here causes illegal behavior -// :89:22: note: when computing vector element at index '0' // :89:22: error: use of undefined value here causes illegal behavior -// :89:22: note: when computing vector element at index '1' // :89:22: error: use of undefined value here causes illegal behavior -// :89:22: note: when computing vector element at index '1' // :89:22: error: use of undefined value here causes illegal behavior -// :89:22: note: when computing vector element at index '0' // :89:22: error: use of undefined value here causes illegal behavior -// :89:22: note: when computing vector element at index '0' // :89:22: error: use of undefined value here causes illegal behavior // :89:22: note: when computing vector element at index '0' // :89:22: error: use of undefined value here causes illegal behavior // :89:22: note: when computing vector element at index '0' // :89:22: error: use of undefined value here causes illegal behavior -// :89:22: error: use of undefined value here causes illegal behavior -// :89:22: error: use of undefined value here causes illegal behavior // :89:22: note: when computing vector element at index '0' // :89:22: error: use of undefined value here causes illegal behavior // :89:22: note: when computing vector element at index '0' @@ -1960,10 +1940,6 @@ const std = @import("std"); // :89:22: error: use of undefined value here causes illegal behavior // :89:22: note: when computing vector element at index '0' // :89:22: error: use of undefined value here causes illegal behavior -// :89:22: note: when computing vector element at index '1' -// :89:22: error: use of undefined value here causes illegal behavior -// :89:22: note: when computing vector element at index '1' -// :89:22: error: use of undefined value here causes illegal behavior // :89:22: note: when computing vector element at index '0' // :89:22: error: use of undefined value here causes illegal behavior // :89:22: note: when computing vector element at index '0' @@ -1972,7 +1948,9 @@ const std = @import("std"); // :89:22: error: use of undefined value here causes illegal behavior // :89:22: note: when computing vector element at index '0' // :89:22: error: use of undefined value here causes illegal behavior +// :89:22: note: when computing vector element at index '0' // :89:22: error: use of undefined value here causes illegal behavior +// :89:22: note: when computing vector element at index '0' // :89:22: error: use of undefined value here causes illegal behavior // :89:22: note: when computing vector element at index '0' // :89:22: error: use of undefined value here causes illegal behavior @@ -1982,9 +1960,9 @@ const std = @import("std"); // :89:22: error: use of undefined value here causes illegal behavior // :89:22: note: when computing vector element at index '0' // :89:22: error: use of undefined value here causes illegal behavior -// :89:22: note: when computing vector element at index '1' +// :89:22: note: when computing vector element at index '0' // :89:22: error: use of undefined value here causes illegal behavior -// :89:22: note: when computing vector element at index '1' +// :89:22: note: when computing vector element at index '0' // :89:22: error: use of undefined value here causes illegal behavior // :89:22: note: when computing vector element at index '0' // :89:22: error: use of undefined value here causes illegal behavior @@ -1994,7 +1972,9 @@ const std = @import("std"); // :89:22: error: use of undefined value here causes illegal behavior // :89:22: note: when computing vector element at index '0' // :89:22: error: use of undefined value here causes illegal behavior +// :89:22: note: when computing vector element at index '0' // :89:22: error: use of undefined value here causes illegal behavior +// :89:22: note: when computing vector element at index '0' // :89:22: error: use of undefined value here causes illegal behavior // :89:22: note: when computing vector element at index '0' // :89:22: error: use of undefined value here causes illegal behavior @@ -2004,9 +1984,9 @@ const std = @import("std"); // :89:22: error: use of undefined value here causes illegal behavior // :89:22: note: when computing vector element at index '0' // :89:22: error: use of undefined value here causes illegal behavior -// :89:22: note: when computing vector element at index '1' +// :89:22: note: when computing vector element at index '0' // :89:22: error: use of undefined value here causes illegal behavior -// :89:22: note: when computing vector element at index '1' +// :89:22: note: when computing vector element at index '0' // :89:22: error: use of undefined value here causes illegal behavior // :89:22: note: when computing vector element at index '0' // :89:22: error: use of undefined value here causes illegal behavior @@ -2016,7 +1996,9 @@ const std = @import("std"); // :89:22: error: use of undefined value here causes illegal behavior // :89:22: note: when computing vector element at index '0' // :89:22: error: use of undefined value here causes illegal behavior +// :89:22: note: when computing vector element at index '0' // :89:22: error: use of undefined value here causes illegal behavior +// :89:22: note: when computing vector element at index '0' // :89:22: error: use of undefined value here causes illegal behavior // :89:22: note: when computing vector element at index '0' // :89:22: error: use of undefined value here causes illegal behavior @@ -2026,9 +2008,9 @@ const std = @import("std"); // :89:22: error: use of undefined value here causes illegal behavior // :89:22: note: when computing vector element at index '0' // :89:22: error: use of undefined value here causes illegal behavior -// :89:22: note: when computing vector element at index '1' +// :89:22: note: when computing vector element at index '0' // :89:22: error: use of undefined value here causes illegal behavior -// :89:22: note: when computing vector element at index '1' +// :89:22: note: when computing vector element at index '0' // :89:22: error: use of undefined value here causes illegal behavior // :89:22: note: when computing vector element at index '0' // :89:22: error: use of undefined value here causes illegal behavior @@ -2038,7 +2020,9 @@ const std = @import("std"); // :89:22: error: use of undefined value here causes illegal behavior // :89:22: note: when computing vector element at index '0' // :89:22: error: use of undefined value here causes illegal behavior +// :89:22: note: when computing vector element at index '0' // :89:22: error: use of undefined value here causes illegal behavior +// :89:22: note: when computing vector element at index '0' // :89:22: error: use of undefined value here causes illegal behavior // :89:22: note: when computing vector element at index '0' // :89:22: error: use of undefined value here causes illegal behavior @@ -2048,9 +2032,9 @@ const std = @import("std"); // :89:22: error: use of undefined value here causes illegal behavior // :89:22: note: when computing vector element at index '0' // :89:22: error: use of undefined value here causes illegal behavior -// :89:22: note: when computing vector element at index '1' +// :89:22: note: when computing vector element at index '0' // :89:22: error: use of undefined value here causes illegal behavior -// :89:22: note: when computing vector element at index '1' +// :89:22: note: when computing vector element at index '0' // :89:22: error: use of undefined value here causes illegal behavior // :89:22: note: when computing vector element at index '0' // :89:22: error: use of undefined value here causes illegal behavior @@ -2060,7 +2044,9 @@ const std = @import("std"); // :89:22: error: use of undefined value here causes illegal behavior // :89:22: note: when computing vector element at index '0' // :89:22: error: use of undefined value here causes illegal behavior +// :89:22: note: when computing vector element at index '0' // :89:22: error: use of undefined value here causes illegal behavior +// :89:22: note: when computing vector element at index '0' // :89:22: error: use of undefined value here causes illegal behavior // :89:22: note: when computing vector element at index '0' // :89:22: error: use of undefined value here causes illegal behavior @@ -2070,9 +2056,9 @@ const std = @import("std"); // :89:22: error: use of undefined value here causes illegal behavior // :89:22: note: when computing vector element at index '0' // :89:22: error: use of undefined value here causes illegal behavior -// :89:22: note: when computing vector element at index '1' +// :89:22: note: when computing vector element at index '0' // :89:22: error: use of undefined value here causes illegal behavior -// :89:22: note: when computing vector element at index '1' +// :89:22: note: when computing vector element at index '0' // :89:22: error: use of undefined value here causes illegal behavior // :89:22: note: when computing vector element at index '0' // :89:22: error: use of undefined value here causes illegal behavior @@ -2082,7 +2068,9 @@ const std = @import("std"); // :89:22: error: use of undefined value here causes illegal behavior // :89:22: note: when computing vector element at index '0' // :89:22: error: use of undefined value here causes illegal behavior +// :89:22: note: when computing vector element at index '0' // :89:22: error: use of undefined value here causes illegal behavior +// :89:22: note: when computing vector element at index '0' // :89:22: error: use of undefined value here causes illegal behavior // :89:22: note: when computing vector element at index '0' // :89:22: error: use of undefined value here causes illegal behavior @@ -2092,9 +2080,9 @@ const std = @import("std"); // :89:22: error: use of undefined value here causes illegal behavior // :89:22: note: when computing vector element at index '0' // :89:22: error: use of undefined value here causes illegal behavior -// :89:22: note: when computing vector element at index '1' +// :89:22: note: when computing vector element at index '0' // :89:22: error: use of undefined value here causes illegal behavior -// :89:22: note: when computing vector element at index '1' +// :89:22: note: when computing vector element at index '0' // :89:22: error: use of undefined value here causes illegal behavior // :89:22: note: when computing vector element at index '0' // :89:22: error: use of undefined value here causes illegal behavior @@ -2104,7 +2092,9 @@ const std = @import("std"); // :89:22: error: use of undefined value here causes illegal behavior // :89:22: note: when computing vector element at index '0' // :89:22: error: use of undefined value here causes illegal behavior +// :89:22: note: when computing vector element at index '0' // :89:22: error: use of undefined value here causes illegal behavior +// :89:22: note: when computing vector element at index '0' // :89:22: error: use of undefined value here causes illegal behavior // :89:22: note: when computing vector element at index '0' // :89:22: error: use of undefined value here causes illegal behavior @@ -2118,35 +2108,45 @@ const std = @import("std"); // :89:22: error: use of undefined value here causes illegal behavior // :89:22: note: when computing vector element at index '1' // :89:22: error: use of undefined value here causes illegal behavior -// :89:22: note: when computing vector element at index '0' +// :89:22: note: when computing vector element at index '1' // :89:22: error: use of undefined value here causes illegal behavior -// :89:22: note: when computing vector element at index '0' +// :89:22: note: when computing vector element at index '1' // :89:22: error: use of undefined value here causes illegal behavior -// :89:22: note: when computing vector element at index '0' +// :89:22: note: when computing vector element at index '1' // :89:22: error: use of undefined value here causes illegal behavior -// :89:22: note: when computing vector element at index '0' +// :89:22: note: when computing vector element at index '1' // :89:22: error: use of undefined value here causes illegal behavior +// :89:22: note: when computing vector element at index '1' // :89:22: error: use of undefined value here causes illegal behavior +// :89:22: note: when computing vector element at index '1' // :89:22: error: use of undefined value here causes illegal behavior -// :89:22: note: when computing vector element at index '0' +// :89:22: note: when computing vector element at index '1' // :89:22: error: use of undefined value here causes illegal behavior -// :89:22: note: when computing vector element at index '0' +// :89:22: note: when computing vector element at index '1' // :89:22: error: use of undefined value here causes illegal behavior -// :89:22: note: when computing vector element at index '0' +// :89:22: note: when computing vector element at index '1' // :89:22: error: use of undefined value here causes illegal behavior -// :89:22: note: when computing vector element at index '0' +// :89:22: note: when computing vector element at index '1' // :89:22: error: use of undefined value here causes illegal behavior // :89:22: note: when computing vector element at index '1' // :89:22: error: use of undefined value here causes illegal behavior // :89:22: note: when computing vector element at index '1' // :89:22: error: use of undefined value here causes illegal behavior -// :89:22: note: when computing vector element at index '0' +// :89:22: note: when computing vector element at index '1' // :89:22: error: use of undefined value here causes illegal behavior -// :89:22: note: when computing vector element at index '0' +// :89:22: note: when computing vector element at index '1' // :89:22: error: use of undefined value here causes illegal behavior -// :89:22: note: when computing vector element at index '0' +// :89:22: note: when computing vector element at index '1' // :89:22: error: use of undefined value here causes illegal behavior -// :89:22: note: when computing vector element at index '0' +// :89:22: note: when computing vector element at index '1' +// :89:22: error: use of undefined value here causes illegal behavior +// :89:22: note: when computing vector element at index '1' +// :89:22: error: use of undefined value here causes illegal behavior +// :89:22: note: when computing vector element at index '1' +// :89:22: error: use of undefined value here causes illegal behavior +// :89:22: note: when computing vector element at index '1' +// :89:22: error: use of undefined value here causes illegal behavior +// :89:22: note: when computing vector element at index '1' // :89:25: error: use of undefined value here causes illegal behavior // :89:25: note: when computing vector element at index '0' // :89:25: error: use of undefined value here causes illegal behavior @@ -2198,21 +2198,13 @@ const std = @import("std"); // :95:17: error: use of undefined value here causes illegal behavior // :95:17: error: use of undefined value here causes illegal behavior // :95:17: error: use of undefined value here causes illegal behavior -// :95:17: note: when computing vector element at index '1' // :95:17: error: use of undefined value here causes illegal behavior -// :95:17: note: when computing vector element at index '1' // :95:17: error: use of undefined value here causes illegal behavior -// :95:17: note: when computing vector element at index '1' // :95:17: error: use of undefined value here causes illegal behavior -// :95:17: note: when computing vector element at index '1' // :95:17: error: use of undefined value here causes illegal behavior -// :95:17: note: when computing vector element at index '0' // :95:17: error: use of undefined value here causes illegal behavior -// :95:17: note: when computing vector element at index '0' // :95:17: error: use of undefined value here causes illegal behavior -// :95:17: note: when computing vector element at index '0' // :95:17: error: use of undefined value here causes illegal behavior -// :95:17: note: when computing vector element at index '0' // :95:17: error: use of undefined value here causes illegal behavior // :95:17: error: use of undefined value here causes illegal behavior // :95:17: error: use of undefined value here causes illegal behavior @@ -2220,21 +2212,13 @@ const std = @import("std"); // :95:17: error: use of undefined value here causes illegal behavior // :95:17: error: use of undefined value here causes illegal behavior // :95:17: error: use of undefined value here causes illegal behavior -// :95:17: note: when computing vector element at index '1' // :95:17: error: use of undefined value here causes illegal behavior -// :95:17: note: when computing vector element at index '1' // :95:17: error: use of undefined value here causes illegal behavior -// :95:17: note: when computing vector element at index '1' // :95:17: error: use of undefined value here causes illegal behavior -// :95:17: note: when computing vector element at index '1' // :95:17: error: use of undefined value here causes illegal behavior -// :95:17: note: when computing vector element at index '0' // :95:17: error: use of undefined value here causes illegal behavior -// :95:17: note: when computing vector element at index '0' // :95:17: error: use of undefined value here causes illegal behavior -// :95:17: note: when computing vector element at index '0' // :95:17: error: use of undefined value here causes illegal behavior -// :95:17: note: when computing vector element at index '0' // :95:17: error: use of undefined value here causes illegal behavior // :95:17: error: use of undefined value here causes illegal behavior // :95:17: error: use of undefined value here causes illegal behavior @@ -2242,21 +2226,13 @@ const std = @import("std"); // :95:17: error: use of undefined value here causes illegal behavior // :95:17: error: use of undefined value here causes illegal behavior // :95:17: error: use of undefined value here causes illegal behavior -// :95:17: note: when computing vector element at index '1' // :95:17: error: use of undefined value here causes illegal behavior -// :95:17: note: when computing vector element at index '1' // :95:17: error: use of undefined value here causes illegal behavior -// :95:17: note: when computing vector element at index '1' // :95:17: error: use of undefined value here causes illegal behavior -// :95:17: note: when computing vector element at index '1' // :95:17: error: use of undefined value here causes illegal behavior -// :95:17: note: when computing vector element at index '0' // :95:17: error: use of undefined value here causes illegal behavior -// :95:17: note: when computing vector element at index '0' // :95:17: error: use of undefined value here causes illegal behavior -// :95:17: note: when computing vector element at index '0' // :95:17: error: use of undefined value here causes illegal behavior -// :95:17: note: when computing vector element at index '0' // :95:17: error: use of undefined value here causes illegal behavior // :95:17: error: use of undefined value here causes illegal behavior // :95:17: error: use of undefined value here causes illegal behavior @@ -2264,21 +2240,13 @@ const std = @import("std"); // :95:17: error: use of undefined value here causes illegal behavior // :95:17: error: use of undefined value here causes illegal behavior // :95:17: error: use of undefined value here causes illegal behavior -// :95:17: note: when computing vector element at index '1' // :95:17: error: use of undefined value here causes illegal behavior -// :95:17: note: when computing vector element at index '1' // :95:17: error: use of undefined value here causes illegal behavior -// :95:17: note: when computing vector element at index '1' // :95:17: error: use of undefined value here causes illegal behavior -// :95:17: note: when computing vector element at index '1' // :95:17: error: use of undefined value here causes illegal behavior -// :95:17: note: when computing vector element at index '0' // :95:17: error: use of undefined value here causes illegal behavior -// :95:17: note: when computing vector element at index '0' // :95:17: error: use of undefined value here causes illegal behavior -// :95:17: note: when computing vector element at index '0' // :95:17: error: use of undefined value here causes illegal behavior -// :95:17: note: when computing vector element at index '0' // :95:17: error: use of undefined value here causes illegal behavior // :95:17: error: use of undefined value here causes illegal behavior // :95:17: error: use of undefined value here causes illegal behavior @@ -2286,13 +2254,9 @@ const std = @import("std"); // :95:17: error: use of undefined value here causes illegal behavior // :95:17: error: use of undefined value here causes illegal behavior // :95:17: error: use of undefined value here causes illegal behavior -// :95:17: note: when computing vector element at index '1' // :95:17: error: use of undefined value here causes illegal behavior -// :95:17: note: when computing vector element at index '1' // :95:17: error: use of undefined value here causes illegal behavior -// :95:17: note: when computing vector element at index '1' // :95:17: error: use of undefined value here causes illegal behavior -// :95:17: note: when computing vector element at index '1' // :95:17: error: use of undefined value here causes illegal behavior // :95:17: note: when computing vector element at index '0' // :95:17: error: use of undefined value here causes illegal behavior @@ -2302,19 +2266,21 @@ const std = @import("std"); // :95:17: error: use of undefined value here causes illegal behavior // :95:17: note: when computing vector element at index '0' // :95:17: error: use of undefined value here causes illegal behavior +// :95:17: note: when computing vector element at index '0' // :95:17: error: use of undefined value here causes illegal behavior +// :95:17: note: when computing vector element at index '0' // :95:17: error: use of undefined value here causes illegal behavior +// :95:17: note: when computing vector element at index '0' // :95:17: error: use of undefined value here causes illegal behavior +// :95:17: note: when computing vector element at index '0' // :95:17: error: use of undefined value here causes illegal behavior +// :95:17: note: when computing vector element at index '0' // :95:17: error: use of undefined value here causes illegal behavior +// :95:17: note: when computing vector element at index '0' // :95:17: error: use of undefined value here causes illegal behavior -// :95:17: note: when computing vector element at index '1' -// :95:17: error: use of undefined value here causes illegal behavior -// :95:17: note: when computing vector element at index '1' -// :95:17: error: use of undefined value here causes illegal behavior -// :95:17: note: when computing vector element at index '1' +// :95:17: note: when computing vector element at index '0' // :95:17: error: use of undefined value here causes illegal behavior -// :95:17: note: when computing vector element at index '1' +// :95:17: note: when computing vector element at index '0' // :95:17: error: use of undefined value here causes illegal behavior // :95:17: note: when computing vector element at index '0' // :95:17: error: use of undefined value here causes illegal behavior @@ -2324,19 +2290,25 @@ const std = @import("std"); // :95:17: error: use of undefined value here causes illegal behavior // :95:17: note: when computing vector element at index '0' // :95:17: error: use of undefined value here causes illegal behavior +// :95:17: note: when computing vector element at index '0' // :95:17: error: use of undefined value here causes illegal behavior +// :95:17: note: when computing vector element at index '0' // :95:17: error: use of undefined value here causes illegal behavior +// :95:17: note: when computing vector element at index '0' // :95:17: error: use of undefined value here causes illegal behavior +// :95:17: note: when computing vector element at index '0' // :95:17: error: use of undefined value here causes illegal behavior +// :95:17: note: when computing vector element at index '0' // :95:17: error: use of undefined value here causes illegal behavior +// :95:17: note: when computing vector element at index '0' // :95:17: error: use of undefined value here causes illegal behavior -// :95:17: note: when computing vector element at index '1' +// :95:17: note: when computing vector element at index '0' // :95:17: error: use of undefined value here causes illegal behavior -// :95:17: note: when computing vector element at index '1' +// :95:17: note: when computing vector element at index '0' // :95:17: error: use of undefined value here causes illegal behavior -// :95:17: note: when computing vector element at index '1' +// :95:17: note: when computing vector element at index '0' // :95:17: error: use of undefined value here causes illegal behavior -// :95:17: note: when computing vector element at index '1' +// :95:17: note: when computing vector element at index '0' // :95:17: error: use of undefined value here causes illegal behavior // :95:17: note: when computing vector element at index '0' // :95:17: error: use of undefined value here causes illegal behavior @@ -2346,19 +2318,25 @@ const std = @import("std"); // :95:17: error: use of undefined value here causes illegal behavior // :95:17: note: when computing vector element at index '0' // :95:17: error: use of undefined value here causes illegal behavior +// :95:17: note: when computing vector element at index '0' // :95:17: error: use of undefined value here causes illegal behavior +// :95:17: note: when computing vector element at index '0' // :95:17: error: use of undefined value here causes illegal behavior +// :95:17: note: when computing vector element at index '0' // :95:17: error: use of undefined value here causes illegal behavior +// :95:17: note: when computing vector element at index '0' // :95:17: error: use of undefined value here causes illegal behavior +// :95:17: note: when computing vector element at index '0' // :95:17: error: use of undefined value here causes illegal behavior +// :95:17: note: when computing vector element at index '0' // :95:17: error: use of undefined value here causes illegal behavior -// :95:17: note: when computing vector element at index '1' +// :95:17: note: when computing vector element at index '0' // :95:17: error: use of undefined value here causes illegal behavior -// :95:17: note: when computing vector element at index '1' +// :95:17: note: when computing vector element at index '0' // :95:17: error: use of undefined value here causes illegal behavior -// :95:17: note: when computing vector element at index '1' +// :95:17: note: when computing vector element at index '0' // :95:17: error: use of undefined value here causes illegal behavior -// :95:17: note: when computing vector element at index '1' +// :95:17: note: when computing vector element at index '0' // :95:17: error: use of undefined value here causes illegal behavior // :95:17: note: when computing vector element at index '0' // :95:17: error: use of undefined value here causes illegal behavior @@ -2368,11 +2346,17 @@ const std = @import("std"); // :95:17: error: use of undefined value here causes illegal behavior // :95:17: note: when computing vector element at index '0' // :95:17: error: use of undefined value here causes illegal behavior +// :95:17: note: when computing vector element at index '1' // :95:17: error: use of undefined value here causes illegal behavior +// :95:17: note: when computing vector element at index '1' // :95:17: error: use of undefined value here causes illegal behavior +// :95:17: note: when computing vector element at index '1' // :95:17: error: use of undefined value here causes illegal behavior +// :95:17: note: when computing vector element at index '1' // :95:17: error: use of undefined value here causes illegal behavior +// :95:17: note: when computing vector element at index '1' // :95:17: error: use of undefined value here causes illegal behavior +// :95:17: note: when computing vector element at index '1' // :95:17: error: use of undefined value here causes illegal behavior // :95:17: note: when computing vector element at index '1' // :95:17: error: use of undefined value here causes illegal behavior @@ -2382,19 +2366,25 @@ const std = @import("std"); // :95:17: error: use of undefined value here causes illegal behavior // :95:17: note: when computing vector element at index '1' // :95:17: error: use of undefined value here causes illegal behavior -// :95:17: note: when computing vector element at index '0' +// :95:17: note: when computing vector element at index '1' // :95:17: error: use of undefined value here causes illegal behavior -// :95:17: note: when computing vector element at index '0' +// :95:17: note: when computing vector element at index '1' // :95:17: error: use of undefined value here causes illegal behavior -// :95:17: note: when computing vector element at index '0' +// :95:17: note: when computing vector element at index '1' // :95:17: error: use of undefined value here causes illegal behavior -// :95:17: note: when computing vector element at index '0' +// :95:17: note: when computing vector element at index '1' // :95:17: error: use of undefined value here causes illegal behavior +// :95:17: note: when computing vector element at index '1' // :95:17: error: use of undefined value here causes illegal behavior +// :95:17: note: when computing vector element at index '1' // :95:17: error: use of undefined value here causes illegal behavior +// :95:17: note: when computing vector element at index '1' // :95:17: error: use of undefined value here causes illegal behavior +// :95:17: note: when computing vector element at index '1' // :95:17: error: use of undefined value here causes illegal behavior +// :95:17: note: when computing vector element at index '1' // :95:17: error: use of undefined value here causes illegal behavior +// :95:17: note: when computing vector element at index '1' // :95:17: error: use of undefined value here causes illegal behavior // :95:17: note: when computing vector element at index '1' // :95:17: error: use of undefined value here causes illegal behavior @@ -2404,19 +2394,25 @@ const std = @import("std"); // :95:17: error: use of undefined value here causes illegal behavior // :95:17: note: when computing vector element at index '1' // :95:17: error: use of undefined value here causes illegal behavior -// :95:17: note: when computing vector element at index '0' +// :95:17: note: when computing vector element at index '1' // :95:17: error: use of undefined value here causes illegal behavior -// :95:17: note: when computing vector element at index '0' +// :95:17: note: when computing vector element at index '1' // :95:17: error: use of undefined value here causes illegal behavior -// :95:17: note: when computing vector element at index '0' +// :95:17: note: when computing vector element at index '1' // :95:17: error: use of undefined value here causes illegal behavior -// :95:17: note: when computing vector element at index '0' +// :95:17: note: when computing vector element at index '1' // :95:17: error: use of undefined value here causes illegal behavior +// :95:17: note: when computing vector element at index '1' // :95:17: error: use of undefined value here causes illegal behavior +// :95:17: note: when computing vector element at index '1' // :95:17: error: use of undefined value here causes illegal behavior +// :95:17: note: when computing vector element at index '1' // :95:17: error: use of undefined value here causes illegal behavior +// :95:17: note: when computing vector element at index '1' // :95:17: error: use of undefined value here causes illegal behavior +// :95:17: note: when computing vector element at index '1' // :95:17: error: use of undefined value here causes illegal behavior +// :95:17: note: when computing vector element at index '1' // :95:17: error: use of undefined value here causes illegal behavior // :95:17: note: when computing vector element at index '1' // :95:17: error: use of undefined value here causes illegal behavior @@ -2426,13 +2422,17 @@ const std = @import("std"); // :95:17: error: use of undefined value here causes illegal behavior // :95:17: note: when computing vector element at index '1' // :95:17: error: use of undefined value here causes illegal behavior -// :95:17: note: when computing vector element at index '0' +// :95:17: note: when computing vector element at index '1' // :95:17: error: use of undefined value here causes illegal behavior -// :95:17: note: when computing vector element at index '0' +// :95:17: note: when computing vector element at index '1' // :95:17: error: use of undefined value here causes illegal behavior -// :95:17: note: when computing vector element at index '0' +// :95:17: note: when computing vector element at index '1' // :95:17: error: use of undefined value here causes illegal behavior -// :95:17: note: when computing vector element at index '0' +// :95:17: note: when computing vector element at index '1' +// :95:17: error: use of undefined value here causes illegal behavior +// :95:17: note: when computing vector element at index '1' +// :95:17: error: use of undefined value here causes illegal behavior +// :95:17: note: when computing vector element at index '1' // :99:27: error: use of undefined value here causes illegal behavior // :99:27: error: use of undefined value here causes illegal behavior // :99:27: error: use of undefined value here causes illegal behavior @@ -2440,21 +2440,13 @@ const std = @import("std"); // :99:27: error: use of undefined value here causes illegal behavior // :99:27: error: use of undefined value here causes illegal behavior // :99:27: error: use of undefined value here causes illegal behavior -// :99:27: note: when computing vector element at index '1' // :99:27: error: use of undefined value here causes illegal behavior -// :99:27: note: when computing vector element at index '1' // :99:27: error: use of undefined value here causes illegal behavior -// :99:27: note: when computing vector element at index '1' // :99:27: error: use of undefined value here causes illegal behavior -// :99:27: note: when computing vector element at index '1' // :99:27: error: use of undefined value here causes illegal behavior -// :99:27: note: when computing vector element at index '0' // :99:27: error: use of undefined value here causes illegal behavior -// :99:27: note: when computing vector element at index '0' // :99:27: error: use of undefined value here causes illegal behavior -// :99:27: note: when computing vector element at index '0' // :99:27: error: use of undefined value here causes illegal behavior -// :99:27: note: when computing vector element at index '0' // :99:27: error: use of undefined value here causes illegal behavior // :99:27: error: use of undefined value here causes illegal behavior // :99:27: error: use of undefined value here causes illegal behavior @@ -2462,21 +2454,13 @@ const std = @import("std"); // :99:27: error: use of undefined value here causes illegal behavior // :99:27: error: use of undefined value here causes illegal behavior // :99:27: error: use of undefined value here causes illegal behavior -// :99:27: note: when computing vector element at index '1' // :99:27: error: use of undefined value here causes illegal behavior -// :99:27: note: when computing vector element at index '1' // :99:27: error: use of undefined value here causes illegal behavior -// :99:27: note: when computing vector element at index '1' // :99:27: error: use of undefined value here causes illegal behavior -// :99:27: note: when computing vector element at index '1' // :99:27: error: use of undefined value here causes illegal behavior -// :99:27: note: when computing vector element at index '0' // :99:27: error: use of undefined value here causes illegal behavior -// :99:27: note: when computing vector element at index '0' // :99:27: error: use of undefined value here causes illegal behavior -// :99:27: note: when computing vector element at index '0' // :99:27: error: use of undefined value here causes illegal behavior -// :99:27: note: when computing vector element at index '0' // :99:27: error: use of undefined value here causes illegal behavior // :99:27: error: use of undefined value here causes illegal behavior // :99:27: error: use of undefined value here causes illegal behavior @@ -2484,21 +2468,13 @@ const std = @import("std"); // :99:27: error: use of undefined value here causes illegal behavior // :99:27: error: use of undefined value here causes illegal behavior // :99:27: error: use of undefined value here causes illegal behavior -// :99:27: note: when computing vector element at index '1' // :99:27: error: use of undefined value here causes illegal behavior -// :99:27: note: when computing vector element at index '1' // :99:27: error: use of undefined value here causes illegal behavior -// :99:27: note: when computing vector element at index '1' // :99:27: error: use of undefined value here causes illegal behavior -// :99:27: note: when computing vector element at index '1' // :99:27: error: use of undefined value here causes illegal behavior -// :99:27: note: when computing vector element at index '0' // :99:27: error: use of undefined value here causes illegal behavior -// :99:27: note: when computing vector element at index '0' // :99:27: error: use of undefined value here causes illegal behavior -// :99:27: note: when computing vector element at index '0' // :99:27: error: use of undefined value here causes illegal behavior -// :99:27: note: when computing vector element at index '0' // :99:27: error: use of undefined value here causes illegal behavior // :99:27: error: use of undefined value here causes illegal behavior // :99:27: error: use of undefined value here causes illegal behavior @@ -2506,21 +2482,13 @@ const std = @import("std"); // :99:27: error: use of undefined value here causes illegal behavior // :99:27: error: use of undefined value here causes illegal behavior // :99:27: error: use of undefined value here causes illegal behavior -// :99:27: note: when computing vector element at index '1' // :99:27: error: use of undefined value here causes illegal behavior -// :99:27: note: when computing vector element at index '1' // :99:27: error: use of undefined value here causes illegal behavior -// :99:27: note: when computing vector element at index '1' // :99:27: error: use of undefined value here causes illegal behavior -// :99:27: note: when computing vector element at index '1' // :99:27: error: use of undefined value here causes illegal behavior -// :99:27: note: when computing vector element at index '0' // :99:27: error: use of undefined value here causes illegal behavior -// :99:27: note: when computing vector element at index '0' // :99:27: error: use of undefined value here causes illegal behavior -// :99:27: note: when computing vector element at index '0' // :99:27: error: use of undefined value here causes illegal behavior -// :99:27: note: when computing vector element at index '0' // :99:27: error: use of undefined value here causes illegal behavior // :99:27: error: use of undefined value here causes illegal behavior // :99:27: error: use of undefined value here causes illegal behavior @@ -2528,13 +2496,9 @@ const std = @import("std"); // :99:27: error: use of undefined value here causes illegal behavior // :99:27: error: use of undefined value here causes illegal behavior // :99:27: error: use of undefined value here causes illegal behavior -// :99:27: note: when computing vector element at index '1' // :99:27: error: use of undefined value here causes illegal behavior -// :99:27: note: when computing vector element at index '1' // :99:27: error: use of undefined value here causes illegal behavior -// :99:27: note: when computing vector element at index '1' // :99:27: error: use of undefined value here causes illegal behavior -// :99:27: note: when computing vector element at index '1' // :99:27: error: use of undefined value here causes illegal behavior // :99:27: note: when computing vector element at index '0' // :99:27: error: use of undefined value here causes illegal behavior @@ -2544,19 +2508,21 @@ const std = @import("std"); // :99:27: error: use of undefined value here causes illegal behavior // :99:27: note: when computing vector element at index '0' // :99:27: error: use of undefined value here causes illegal behavior +// :99:27: note: when computing vector element at index '0' // :99:27: error: use of undefined value here causes illegal behavior +// :99:27: note: when computing vector element at index '0' // :99:27: error: use of undefined value here causes illegal behavior +// :99:27: note: when computing vector element at index '0' // :99:27: error: use of undefined value here causes illegal behavior +// :99:27: note: when computing vector element at index '0' // :99:27: error: use of undefined value here causes illegal behavior +// :99:27: note: when computing vector element at index '0' // :99:27: error: use of undefined value here causes illegal behavior +// :99:27: note: when computing vector element at index '0' // :99:27: error: use of undefined value here causes illegal behavior -// :99:27: note: when computing vector element at index '1' -// :99:27: error: use of undefined value here causes illegal behavior -// :99:27: note: when computing vector element at index '1' -// :99:27: error: use of undefined value here causes illegal behavior -// :99:27: note: when computing vector element at index '1' +// :99:27: note: when computing vector element at index '0' // :99:27: error: use of undefined value here causes illegal behavior -// :99:27: note: when computing vector element at index '1' +// :99:27: note: when computing vector element at index '0' // :99:27: error: use of undefined value here causes illegal behavior // :99:27: note: when computing vector element at index '0' // :99:27: error: use of undefined value here causes illegal behavior @@ -2566,19 +2532,25 @@ const std = @import("std"); // :99:27: error: use of undefined value here causes illegal behavior // :99:27: note: when computing vector element at index '0' // :99:27: error: use of undefined value here causes illegal behavior +// :99:27: note: when computing vector element at index '0' // :99:27: error: use of undefined value here causes illegal behavior +// :99:27: note: when computing vector element at index '0' // :99:27: error: use of undefined value here causes illegal behavior +// :99:27: note: when computing vector element at index '0' // :99:27: error: use of undefined value here causes illegal behavior +// :99:27: note: when computing vector element at index '0' // :99:27: error: use of undefined value here causes illegal behavior +// :99:27: note: when computing vector element at index '0' // :99:27: error: use of undefined value here causes illegal behavior +// :99:27: note: when computing vector element at index '0' // :99:27: error: use of undefined value here causes illegal behavior -// :99:27: note: when computing vector element at index '1' +// :99:27: note: when computing vector element at index '0' // :99:27: error: use of undefined value here causes illegal behavior -// :99:27: note: when computing vector element at index '1' +// :99:27: note: when computing vector element at index '0' // :99:27: error: use of undefined value here causes illegal behavior -// :99:27: note: when computing vector element at index '1' +// :99:27: note: when computing vector element at index '0' // :99:27: error: use of undefined value here causes illegal behavior -// :99:27: note: when computing vector element at index '1' +// :99:27: note: when computing vector element at index '0' // :99:27: error: use of undefined value here causes illegal behavior // :99:27: note: when computing vector element at index '0' // :99:27: error: use of undefined value here causes illegal behavior @@ -2588,19 +2560,25 @@ const std = @import("std"); // :99:27: error: use of undefined value here causes illegal behavior // :99:27: note: when computing vector element at index '0' // :99:27: error: use of undefined value here causes illegal behavior +// :99:27: note: when computing vector element at index '0' // :99:27: error: use of undefined value here causes illegal behavior +// :99:27: note: when computing vector element at index '0' // :99:27: error: use of undefined value here causes illegal behavior +// :99:27: note: when computing vector element at index '0' // :99:27: error: use of undefined value here causes illegal behavior +// :99:27: note: when computing vector element at index '0' // :99:27: error: use of undefined value here causes illegal behavior +// :99:27: note: when computing vector element at index '0' // :99:27: error: use of undefined value here causes illegal behavior +// :99:27: note: when computing vector element at index '0' // :99:27: error: use of undefined value here causes illegal behavior -// :99:27: note: when computing vector element at index '1' +// :99:27: note: when computing vector element at index '0' // :99:27: error: use of undefined value here causes illegal behavior -// :99:27: note: when computing vector element at index '1' +// :99:27: note: when computing vector element at index '0' // :99:27: error: use of undefined value here causes illegal behavior -// :99:27: note: when computing vector element at index '1' +// :99:27: note: when computing vector element at index '0' // :99:27: error: use of undefined value here causes illegal behavior -// :99:27: note: when computing vector element at index '1' +// :99:27: note: when computing vector element at index '0' // :99:27: error: use of undefined value here causes illegal behavior // :99:27: note: when computing vector element at index '0' // :99:27: error: use of undefined value here causes illegal behavior @@ -2610,11 +2588,17 @@ const std = @import("std"); // :99:27: error: use of undefined value here causes illegal behavior // :99:27: note: when computing vector element at index '0' // :99:27: error: use of undefined value here causes illegal behavior +// :99:27: note: when computing vector element at index '1' // :99:27: error: use of undefined value here causes illegal behavior +// :99:27: note: when computing vector element at index '1' // :99:27: error: use of undefined value here causes illegal behavior +// :99:27: note: when computing vector element at index '1' // :99:27: error: use of undefined value here causes illegal behavior +// :99:27: note: when computing vector element at index '1' // :99:27: error: use of undefined value here causes illegal behavior +// :99:27: note: when computing vector element at index '1' // :99:27: error: use of undefined value here causes illegal behavior +// :99:27: note: when computing vector element at index '1' // :99:27: error: use of undefined value here causes illegal behavior // :99:27: note: when computing vector element at index '1' // :99:27: error: use of undefined value here causes illegal behavior @@ -2624,19 +2608,25 @@ const std = @import("std"); // :99:27: error: use of undefined value here causes illegal behavior // :99:27: note: when computing vector element at index '1' // :99:27: error: use of undefined value here causes illegal behavior -// :99:27: note: when computing vector element at index '0' +// :99:27: note: when computing vector element at index '1' // :99:27: error: use of undefined value here causes illegal behavior -// :99:27: note: when computing vector element at index '0' +// :99:27: note: when computing vector element at index '1' // :99:27: error: use of undefined value here causes illegal behavior -// :99:27: note: when computing vector element at index '0' +// :99:27: note: when computing vector element at index '1' // :99:27: error: use of undefined value here causes illegal behavior -// :99:27: note: when computing vector element at index '0' +// :99:27: note: when computing vector element at index '1' // :99:27: error: use of undefined value here causes illegal behavior +// :99:27: note: when computing vector element at index '1' // :99:27: error: use of undefined value here causes illegal behavior +// :99:27: note: when computing vector element at index '1' // :99:27: error: use of undefined value here causes illegal behavior +// :99:27: note: when computing vector element at index '1' // :99:27: error: use of undefined value here causes illegal behavior +// :99:27: note: when computing vector element at index '1' // :99:27: error: use of undefined value here causes illegal behavior +// :99:27: note: when computing vector element at index '1' // :99:27: error: use of undefined value here causes illegal behavior +// :99:27: note: when computing vector element at index '1' // :99:27: error: use of undefined value here causes illegal behavior // :99:27: note: when computing vector element at index '1' // :99:27: error: use of undefined value here causes illegal behavior @@ -2646,19 +2636,25 @@ const std = @import("std"); // :99:27: error: use of undefined value here causes illegal behavior // :99:27: note: when computing vector element at index '1' // :99:27: error: use of undefined value here causes illegal behavior -// :99:27: note: when computing vector element at index '0' +// :99:27: note: when computing vector element at index '1' // :99:27: error: use of undefined value here causes illegal behavior -// :99:27: note: when computing vector element at index '0' +// :99:27: note: when computing vector element at index '1' // :99:27: error: use of undefined value here causes illegal behavior -// :99:27: note: when computing vector element at index '0' +// :99:27: note: when computing vector element at index '1' // :99:27: error: use of undefined value here causes illegal behavior -// :99:27: note: when computing vector element at index '0' +// :99:27: note: when computing vector element at index '1' // :99:27: error: use of undefined value here causes illegal behavior +// :99:27: note: when computing vector element at index '1' // :99:27: error: use of undefined value here causes illegal behavior +// :99:27: note: when computing vector element at index '1' // :99:27: error: use of undefined value here causes illegal behavior +// :99:27: note: when computing vector element at index '1' // :99:27: error: use of undefined value here causes illegal behavior +// :99:27: note: when computing vector element at index '1' // :99:27: error: use of undefined value here causes illegal behavior +// :99:27: note: when computing vector element at index '1' // :99:27: error: use of undefined value here causes illegal behavior +// :99:27: note: when computing vector element at index '1' // :99:27: error: use of undefined value here causes illegal behavior // :99:27: note: when computing vector element at index '1' // :99:27: error: use of undefined value here causes illegal behavior @@ -2668,13 +2664,17 @@ const std = @import("std"); // :99:27: error: use of undefined value here causes illegal behavior // :99:27: note: when computing vector element at index '1' // :99:27: error: use of undefined value here causes illegal behavior -// :99:27: note: when computing vector element at index '0' +// :99:27: note: when computing vector element at index '1' // :99:27: error: use of undefined value here causes illegal behavior -// :99:27: note: when computing vector element at index '0' +// :99:27: note: when computing vector element at index '1' // :99:27: error: use of undefined value here causes illegal behavior -// :99:27: note: when computing vector element at index '0' +// :99:27: note: when computing vector element at index '1' // :99:27: error: use of undefined value here causes illegal behavior -// :99:27: note: when computing vector element at index '0' +// :99:27: note: when computing vector element at index '1' +// :99:27: error: use of undefined value here causes illegal behavior +// :99:27: note: when computing vector element at index '1' +// :99:27: error: use of undefined value here causes illegal behavior +// :99:27: note: when computing vector element at index '1' // :103:27: error: use of undefined value here causes illegal behavior // :103:27: error: use of undefined value here causes illegal behavior // :103:27: error: use of undefined value here causes illegal behavior @@ -2682,21 +2682,13 @@ const std = @import("std"); // :103:27: error: use of undefined value here causes illegal behavior // :103:27: error: use of undefined value here causes illegal behavior // :103:27: error: use of undefined value here causes illegal behavior -// :103:27: note: when computing vector element at index '1' // :103:27: error: use of undefined value here causes illegal behavior -// :103:27: note: when computing vector element at index '1' // :103:27: error: use of undefined value here causes illegal behavior -// :103:27: note: when computing vector element at index '1' // :103:27: error: use of undefined value here causes illegal behavior -// :103:27: note: when computing vector element at index '1' // :103:27: error: use of undefined value here causes illegal behavior -// :103:27: note: when computing vector element at index '0' // :103:27: error: use of undefined value here causes illegal behavior -// :103:27: note: when computing vector element at index '0' // :103:27: error: use of undefined value here causes illegal behavior -// :103:27: note: when computing vector element at index '0' // :103:27: error: use of undefined value here causes illegal behavior -// :103:27: note: when computing vector element at index '0' // :103:27: error: use of undefined value here causes illegal behavior // :103:27: error: use of undefined value here causes illegal behavior // :103:27: error: use of undefined value here causes illegal behavior @@ -2704,21 +2696,13 @@ const std = @import("std"); // :103:27: error: use of undefined value here causes illegal behavior // :103:27: error: use of undefined value here causes illegal behavior // :103:27: error: use of undefined value here causes illegal behavior -// :103:27: note: when computing vector element at index '1' // :103:27: error: use of undefined value here causes illegal behavior -// :103:27: note: when computing vector element at index '1' // :103:27: error: use of undefined value here causes illegal behavior -// :103:27: note: when computing vector element at index '1' // :103:27: error: use of undefined value here causes illegal behavior -// :103:27: note: when computing vector element at index '1' // :103:27: error: use of undefined value here causes illegal behavior -// :103:27: note: when computing vector element at index '0' // :103:27: error: use of undefined value here causes illegal behavior -// :103:27: note: when computing vector element at index '0' // :103:27: error: use of undefined value here causes illegal behavior -// :103:27: note: when computing vector element at index '0' // :103:27: error: use of undefined value here causes illegal behavior -// :103:27: note: when computing vector element at index '0' // :103:27: error: use of undefined value here causes illegal behavior // :103:27: error: use of undefined value here causes illegal behavior // :103:27: error: use of undefined value here causes illegal behavior @@ -2726,21 +2710,13 @@ const std = @import("std"); // :103:27: error: use of undefined value here causes illegal behavior // :103:27: error: use of undefined value here causes illegal behavior // :103:27: error: use of undefined value here causes illegal behavior -// :103:27: note: when computing vector element at index '1' // :103:27: error: use of undefined value here causes illegal behavior -// :103:27: note: when computing vector element at index '1' // :103:27: error: use of undefined value here causes illegal behavior -// :103:27: note: when computing vector element at index '1' // :103:27: error: use of undefined value here causes illegal behavior -// :103:27: note: when computing vector element at index '1' // :103:27: error: use of undefined value here causes illegal behavior -// :103:27: note: when computing vector element at index '0' // :103:27: error: use of undefined value here causes illegal behavior -// :103:27: note: when computing vector element at index '0' // :103:27: error: use of undefined value here causes illegal behavior -// :103:27: note: when computing vector element at index '0' // :103:27: error: use of undefined value here causes illegal behavior -// :103:27: note: when computing vector element at index '0' // :103:27: error: use of undefined value here causes illegal behavior // :103:27: error: use of undefined value here causes illegal behavior // :103:27: error: use of undefined value here causes illegal behavior @@ -2748,21 +2724,13 @@ const std = @import("std"); // :103:27: error: use of undefined value here causes illegal behavior // :103:27: error: use of undefined value here causes illegal behavior // :103:27: error: use of undefined value here causes illegal behavior -// :103:27: note: when computing vector element at index '1' // :103:27: error: use of undefined value here causes illegal behavior -// :103:27: note: when computing vector element at index '1' // :103:27: error: use of undefined value here causes illegal behavior -// :103:27: note: when computing vector element at index '1' // :103:27: error: use of undefined value here causes illegal behavior -// :103:27: note: when computing vector element at index '1' // :103:27: error: use of undefined value here causes illegal behavior -// :103:27: note: when computing vector element at index '0' // :103:27: error: use of undefined value here causes illegal behavior -// :103:27: note: when computing vector element at index '0' // :103:27: error: use of undefined value here causes illegal behavior -// :103:27: note: when computing vector element at index '0' // :103:27: error: use of undefined value here causes illegal behavior -// :103:27: note: when computing vector element at index '0' // :103:27: error: use of undefined value here causes illegal behavior // :103:27: error: use of undefined value here causes illegal behavior // :103:27: error: use of undefined value here causes illegal behavior @@ -2770,13 +2738,9 @@ const std = @import("std"); // :103:27: error: use of undefined value here causes illegal behavior // :103:27: error: use of undefined value here causes illegal behavior // :103:27: error: use of undefined value here causes illegal behavior -// :103:27: note: when computing vector element at index '1' // :103:27: error: use of undefined value here causes illegal behavior -// :103:27: note: when computing vector element at index '1' // :103:27: error: use of undefined value here causes illegal behavior -// :103:27: note: when computing vector element at index '1' // :103:27: error: use of undefined value here causes illegal behavior -// :103:27: note: when computing vector element at index '1' // :103:27: error: use of undefined value here causes illegal behavior // :103:27: note: when computing vector element at index '0' // :103:27: error: use of undefined value here causes illegal behavior @@ -2786,19 +2750,21 @@ const std = @import("std"); // :103:27: error: use of undefined value here causes illegal behavior // :103:27: note: when computing vector element at index '0' // :103:27: error: use of undefined value here causes illegal behavior +// :103:27: note: when computing vector element at index '0' // :103:27: error: use of undefined value here causes illegal behavior +// :103:27: note: when computing vector element at index '0' // :103:27: error: use of undefined value here causes illegal behavior +// :103:27: note: when computing vector element at index '0' // :103:27: error: use of undefined value here causes illegal behavior +// :103:27: note: when computing vector element at index '0' // :103:27: error: use of undefined value here causes illegal behavior +// :103:27: note: when computing vector element at index '0' // :103:27: error: use of undefined value here causes illegal behavior +// :103:27: note: when computing vector element at index '0' // :103:27: error: use of undefined value here causes illegal behavior -// :103:27: note: when computing vector element at index '1' -// :103:27: error: use of undefined value here causes illegal behavior -// :103:27: note: when computing vector element at index '1' -// :103:27: error: use of undefined value here causes illegal behavior -// :103:27: note: when computing vector element at index '1' +// :103:27: note: when computing vector element at index '0' // :103:27: error: use of undefined value here causes illegal behavior -// :103:27: note: when computing vector element at index '1' +// :103:27: note: when computing vector element at index '0' // :103:27: error: use of undefined value here causes illegal behavior // :103:27: note: when computing vector element at index '0' // :103:27: error: use of undefined value here causes illegal behavior @@ -2808,19 +2774,25 @@ const std = @import("std"); // :103:27: error: use of undefined value here causes illegal behavior // :103:27: note: when computing vector element at index '0' // :103:27: error: use of undefined value here causes illegal behavior +// :103:27: note: when computing vector element at index '0' // :103:27: error: use of undefined value here causes illegal behavior +// :103:27: note: when computing vector element at index '0' // :103:27: error: use of undefined value here causes illegal behavior +// :103:27: note: when computing vector element at index '0' // :103:27: error: use of undefined value here causes illegal behavior +// :103:27: note: when computing vector element at index '0' // :103:27: error: use of undefined value here causes illegal behavior +// :103:27: note: when computing vector element at index '0' // :103:27: error: use of undefined value here causes illegal behavior +// :103:27: note: when computing vector element at index '0' // :103:27: error: use of undefined value here causes illegal behavior -// :103:27: note: when computing vector element at index '1' +// :103:27: note: when computing vector element at index '0' // :103:27: error: use of undefined value here causes illegal behavior -// :103:27: note: when computing vector element at index '1' +// :103:27: note: when computing vector element at index '0' // :103:27: error: use of undefined value here causes illegal behavior -// :103:27: note: when computing vector element at index '1' +// :103:27: note: when computing vector element at index '0' // :103:27: error: use of undefined value here causes illegal behavior -// :103:27: note: when computing vector element at index '1' +// :103:27: note: when computing vector element at index '0' // :103:27: error: use of undefined value here causes illegal behavior // :103:27: note: when computing vector element at index '0' // :103:27: error: use of undefined value here causes illegal behavior @@ -2830,19 +2802,25 @@ const std = @import("std"); // :103:27: error: use of undefined value here causes illegal behavior // :103:27: note: when computing vector element at index '0' // :103:27: error: use of undefined value here causes illegal behavior +// :103:27: note: when computing vector element at index '0' // :103:27: error: use of undefined value here causes illegal behavior +// :103:27: note: when computing vector element at index '0' // :103:27: error: use of undefined value here causes illegal behavior +// :103:27: note: when computing vector element at index '0' // :103:27: error: use of undefined value here causes illegal behavior +// :103:27: note: when computing vector element at index '0' // :103:27: error: use of undefined value here causes illegal behavior +// :103:27: note: when computing vector element at index '0' // :103:27: error: use of undefined value here causes illegal behavior +// :103:27: note: when computing vector element at index '0' // :103:27: error: use of undefined value here causes illegal behavior -// :103:27: note: when computing vector element at index '1' +// :103:27: note: when computing vector element at index '0' // :103:27: error: use of undefined value here causes illegal behavior -// :103:27: note: when computing vector element at index '1' +// :103:27: note: when computing vector element at index '0' // :103:27: error: use of undefined value here causes illegal behavior -// :103:27: note: when computing vector element at index '1' +// :103:27: note: when computing vector element at index '0' // :103:27: error: use of undefined value here causes illegal behavior -// :103:27: note: when computing vector element at index '1' +// :103:27: note: when computing vector element at index '0' // :103:27: error: use of undefined value here causes illegal behavior // :103:27: note: when computing vector element at index '0' // :103:27: error: use of undefined value here causes illegal behavior @@ -2852,11 +2830,17 @@ const std = @import("std"); // :103:27: error: use of undefined value here causes illegal behavior // :103:27: note: when computing vector element at index '0' // :103:27: error: use of undefined value here causes illegal behavior +// :103:27: note: when computing vector element at index '1' // :103:27: error: use of undefined value here causes illegal behavior +// :103:27: note: when computing vector element at index '1' // :103:27: error: use of undefined value here causes illegal behavior +// :103:27: note: when computing vector element at index '1' // :103:27: error: use of undefined value here causes illegal behavior +// :103:27: note: when computing vector element at index '1' // :103:27: error: use of undefined value here causes illegal behavior +// :103:27: note: when computing vector element at index '1' // :103:27: error: use of undefined value here causes illegal behavior +// :103:27: note: when computing vector element at index '1' // :103:27: error: use of undefined value here causes illegal behavior // :103:27: note: when computing vector element at index '1' // :103:27: error: use of undefined value here causes illegal behavior @@ -2866,19 +2850,25 @@ const std = @import("std"); // :103:27: error: use of undefined value here causes illegal behavior // :103:27: note: when computing vector element at index '1' // :103:27: error: use of undefined value here causes illegal behavior -// :103:27: note: when computing vector element at index '0' +// :103:27: note: when computing vector element at index '1' // :103:27: error: use of undefined value here causes illegal behavior -// :103:27: note: when computing vector element at index '0' +// :103:27: note: when computing vector element at index '1' // :103:27: error: use of undefined value here causes illegal behavior -// :103:27: note: when computing vector element at index '0' +// :103:27: note: when computing vector element at index '1' // :103:27: error: use of undefined value here causes illegal behavior -// :103:27: note: when computing vector element at index '0' +// :103:27: note: when computing vector element at index '1' // :103:27: error: use of undefined value here causes illegal behavior +// :103:27: note: when computing vector element at index '1' // :103:27: error: use of undefined value here causes illegal behavior +// :103:27: note: when computing vector element at index '1' // :103:27: error: use of undefined value here causes illegal behavior +// :103:27: note: when computing vector element at index '1' // :103:27: error: use of undefined value here causes illegal behavior +// :103:27: note: when computing vector element at index '1' // :103:27: error: use of undefined value here causes illegal behavior +// :103:27: note: when computing vector element at index '1' // :103:27: error: use of undefined value here causes illegal behavior +// :103:27: note: when computing vector element at index '1' // :103:27: error: use of undefined value here causes illegal behavior // :103:27: note: when computing vector element at index '1' // :103:27: error: use of undefined value here causes illegal behavior @@ -2888,19 +2878,25 @@ const std = @import("std"); // :103:27: error: use of undefined value here causes illegal behavior // :103:27: note: when computing vector element at index '1' // :103:27: error: use of undefined value here causes illegal behavior -// :103:27: note: when computing vector element at index '0' +// :103:27: note: when computing vector element at index '1' // :103:27: error: use of undefined value here causes illegal behavior -// :103:27: note: when computing vector element at index '0' +// :103:27: note: when computing vector element at index '1' // :103:27: error: use of undefined value here causes illegal behavior -// :103:27: note: when computing vector element at index '0' +// :103:27: note: when computing vector element at index '1' // :103:27: error: use of undefined value here causes illegal behavior -// :103:27: note: when computing vector element at index '0' +// :103:27: note: when computing vector element at index '1' // :103:27: error: use of undefined value here causes illegal behavior +// :103:27: note: when computing vector element at index '1' // :103:27: error: use of undefined value here causes illegal behavior +// :103:27: note: when computing vector element at index '1' // :103:27: error: use of undefined value here causes illegal behavior +// :103:27: note: when computing vector element at index '1' // :103:27: error: use of undefined value here causes illegal behavior +// :103:27: note: when computing vector element at index '1' // :103:27: error: use of undefined value here causes illegal behavior +// :103:27: note: when computing vector element at index '1' // :103:27: error: use of undefined value here causes illegal behavior +// :103:27: note: when computing vector element at index '1' // :103:27: error: use of undefined value here causes illegal behavior // :103:27: note: when computing vector element at index '1' // :103:27: error: use of undefined value here causes illegal behavior @@ -2910,13 +2906,17 @@ const std = @import("std"); // :103:27: error: use of undefined value here causes illegal behavior // :103:27: note: when computing vector element at index '1' // :103:27: error: use of undefined value here causes illegal behavior -// :103:27: note: when computing vector element at index '0' +// :103:27: note: when computing vector element at index '1' // :103:27: error: use of undefined value here causes illegal behavior -// :103:27: note: when computing vector element at index '0' +// :103:27: note: when computing vector element at index '1' // :103:27: error: use of undefined value here causes illegal behavior -// :103:27: note: when computing vector element at index '0' +// :103:27: note: when computing vector element at index '1' // :103:27: error: use of undefined value here causes illegal behavior -// :103:27: note: when computing vector element at index '0' +// :103:27: note: when computing vector element at index '1' +// :103:27: error: use of undefined value here causes illegal behavior +// :103:27: note: when computing vector element at index '1' +// :103:27: error: use of undefined value here causes illegal behavior +// :103:27: note: when computing vector element at index '1' // :107:27: error: use of undefined value here causes illegal behavior // :107:27: error: use of undefined value here causes illegal behavior // :107:27: error: use of undefined value here causes illegal behavior @@ -2924,21 +2924,13 @@ const std = @import("std"); // :107:27: error: use of undefined value here causes illegal behavior // :107:27: error: use of undefined value here causes illegal behavior // :107:27: error: use of undefined value here causes illegal behavior -// :107:27: note: when computing vector element at index '1' // :107:27: error: use of undefined value here causes illegal behavior -// :107:27: note: when computing vector element at index '1' // :107:27: error: use of undefined value here causes illegal behavior -// :107:27: note: when computing vector element at index '1' // :107:27: error: use of undefined value here causes illegal behavior -// :107:27: note: when computing vector element at index '1' // :107:27: error: use of undefined value here causes illegal behavior -// :107:27: note: when computing vector element at index '0' // :107:27: error: use of undefined value here causes illegal behavior -// :107:27: note: when computing vector element at index '0' // :107:27: error: use of undefined value here causes illegal behavior -// :107:27: note: when computing vector element at index '0' // :107:27: error: use of undefined value here causes illegal behavior -// :107:27: note: when computing vector element at index '0' // :107:27: error: use of undefined value here causes illegal behavior // :107:27: error: use of undefined value here causes illegal behavior // :107:27: error: use of undefined value here causes illegal behavior @@ -2946,21 +2938,13 @@ const std = @import("std"); // :107:27: error: use of undefined value here causes illegal behavior // :107:27: error: use of undefined value here causes illegal behavior // :107:27: error: use of undefined value here causes illegal behavior -// :107:27: note: when computing vector element at index '1' // :107:27: error: use of undefined value here causes illegal behavior -// :107:27: note: when computing vector element at index '1' // :107:27: error: use of undefined value here causes illegal behavior -// :107:27: note: when computing vector element at index '1' // :107:27: error: use of undefined value here causes illegal behavior -// :107:27: note: when computing vector element at index '1' // :107:27: error: use of undefined value here causes illegal behavior -// :107:27: note: when computing vector element at index '0' // :107:27: error: use of undefined value here causes illegal behavior -// :107:27: note: when computing vector element at index '0' // :107:27: error: use of undefined value here causes illegal behavior -// :107:27: note: when computing vector element at index '0' // :107:27: error: use of undefined value here causes illegal behavior -// :107:27: note: when computing vector element at index '0' // :107:27: error: use of undefined value here causes illegal behavior // :107:27: error: use of undefined value here causes illegal behavior // :107:27: error: use of undefined value here causes illegal behavior @@ -2968,21 +2952,13 @@ const std = @import("std"); // :107:27: error: use of undefined value here causes illegal behavior // :107:27: error: use of undefined value here causes illegal behavior // :107:27: error: use of undefined value here causes illegal behavior -// :107:27: note: when computing vector element at index '1' // :107:27: error: use of undefined value here causes illegal behavior -// :107:27: note: when computing vector element at index '1' // :107:27: error: use of undefined value here causes illegal behavior -// :107:27: note: when computing vector element at index '1' // :107:27: error: use of undefined value here causes illegal behavior -// :107:27: note: when computing vector element at index '1' // :107:27: error: use of undefined value here causes illegal behavior -// :107:27: note: when computing vector element at index '0' // :107:27: error: use of undefined value here causes illegal behavior -// :107:27: note: when computing vector element at index '0' // :107:27: error: use of undefined value here causes illegal behavior -// :107:27: note: when computing vector element at index '0' // :107:27: error: use of undefined value here causes illegal behavior -// :107:27: note: when computing vector element at index '0' // :107:27: error: use of undefined value here causes illegal behavior // :107:27: error: use of undefined value here causes illegal behavior // :107:27: error: use of undefined value here causes illegal behavior @@ -2990,21 +2966,13 @@ const std = @import("std"); // :107:27: error: use of undefined value here causes illegal behavior // :107:27: error: use of undefined value here causes illegal behavior // :107:27: error: use of undefined value here causes illegal behavior -// :107:27: note: when computing vector element at index '1' // :107:27: error: use of undefined value here causes illegal behavior -// :107:27: note: when computing vector element at index '1' // :107:27: error: use of undefined value here causes illegal behavior -// :107:27: note: when computing vector element at index '1' // :107:27: error: use of undefined value here causes illegal behavior -// :107:27: note: when computing vector element at index '1' // :107:27: error: use of undefined value here causes illegal behavior -// :107:27: note: when computing vector element at index '0' // :107:27: error: use of undefined value here causes illegal behavior -// :107:27: note: when computing vector element at index '0' // :107:27: error: use of undefined value here causes illegal behavior -// :107:27: note: when computing vector element at index '0' // :107:27: error: use of undefined value here causes illegal behavior -// :107:27: note: when computing vector element at index '0' // :107:27: error: use of undefined value here causes illegal behavior // :107:27: error: use of undefined value here causes illegal behavior // :107:27: error: use of undefined value here causes illegal behavior @@ -3012,13 +2980,9 @@ const std = @import("std"); // :107:27: error: use of undefined value here causes illegal behavior // :107:27: error: use of undefined value here causes illegal behavior // :107:27: error: use of undefined value here causes illegal behavior -// :107:27: note: when computing vector element at index '1' // :107:27: error: use of undefined value here causes illegal behavior -// :107:27: note: when computing vector element at index '1' // :107:27: error: use of undefined value here causes illegal behavior -// :107:27: note: when computing vector element at index '1' // :107:27: error: use of undefined value here causes illegal behavior -// :107:27: note: when computing vector element at index '1' // :107:27: error: use of undefined value here causes illegal behavior // :107:27: note: when computing vector element at index '0' // :107:27: error: use of undefined value here causes illegal behavior @@ -3028,19 +2992,21 @@ const std = @import("std"); // :107:27: error: use of undefined value here causes illegal behavior // :107:27: note: when computing vector element at index '0' // :107:27: error: use of undefined value here causes illegal behavior +// :107:27: note: when computing vector element at index '0' // :107:27: error: use of undefined value here causes illegal behavior +// :107:27: note: when computing vector element at index '0' // :107:27: error: use of undefined value here causes illegal behavior +// :107:27: note: when computing vector element at index '0' // :107:27: error: use of undefined value here causes illegal behavior +// :107:27: note: when computing vector element at index '0' // :107:27: error: use of undefined value here causes illegal behavior +// :107:27: note: when computing vector element at index '0' // :107:27: error: use of undefined value here causes illegal behavior +// :107:27: note: when computing vector element at index '0' // :107:27: error: use of undefined value here causes illegal behavior -// :107:27: note: when computing vector element at index '1' -// :107:27: error: use of undefined value here causes illegal behavior -// :107:27: note: when computing vector element at index '1' -// :107:27: error: use of undefined value here causes illegal behavior -// :107:27: note: when computing vector element at index '1' +// :107:27: note: when computing vector element at index '0' // :107:27: error: use of undefined value here causes illegal behavior -// :107:27: note: when computing vector element at index '1' +// :107:27: note: when computing vector element at index '0' // :107:27: error: use of undefined value here causes illegal behavior // :107:27: note: when computing vector element at index '0' // :107:27: error: use of undefined value here causes illegal behavior @@ -3050,19 +3016,25 @@ const std = @import("std"); // :107:27: error: use of undefined value here causes illegal behavior // :107:27: note: when computing vector element at index '0' // :107:27: error: use of undefined value here causes illegal behavior +// :107:27: note: when computing vector element at index '0' // :107:27: error: use of undefined value here causes illegal behavior +// :107:27: note: when computing vector element at index '0' // :107:27: error: use of undefined value here causes illegal behavior +// :107:27: note: when computing vector element at index '0' // :107:27: error: use of undefined value here causes illegal behavior +// :107:27: note: when computing vector element at index '0' // :107:27: error: use of undefined value here causes illegal behavior +// :107:27: note: when computing vector element at index '0' // :107:27: error: use of undefined value here causes illegal behavior +// :107:27: note: when computing vector element at index '0' // :107:27: error: use of undefined value here causes illegal behavior -// :107:27: note: when computing vector element at index '1' +// :107:27: note: when computing vector element at index '0' // :107:27: error: use of undefined value here causes illegal behavior -// :107:27: note: when computing vector element at index '1' +// :107:27: note: when computing vector element at index '0' // :107:27: error: use of undefined value here causes illegal behavior -// :107:27: note: when computing vector element at index '1' +// :107:27: note: when computing vector element at index '0' // :107:27: error: use of undefined value here causes illegal behavior -// :107:27: note: when computing vector element at index '1' +// :107:27: note: when computing vector element at index '0' // :107:27: error: use of undefined value here causes illegal behavior // :107:27: note: when computing vector element at index '0' // :107:27: error: use of undefined value here causes illegal behavior @@ -3072,19 +3044,25 @@ const std = @import("std"); // :107:27: error: use of undefined value here causes illegal behavior // :107:27: note: when computing vector element at index '0' // :107:27: error: use of undefined value here causes illegal behavior +// :107:27: note: when computing vector element at index '0' // :107:27: error: use of undefined value here causes illegal behavior +// :107:27: note: when computing vector element at index '0' // :107:27: error: use of undefined value here causes illegal behavior +// :107:27: note: when computing vector element at index '0' // :107:27: error: use of undefined value here causes illegal behavior +// :107:27: note: when computing vector element at index '0' // :107:27: error: use of undefined value here causes illegal behavior +// :107:27: note: when computing vector element at index '0' // :107:27: error: use of undefined value here causes illegal behavior +// :107:27: note: when computing vector element at index '0' // :107:27: error: use of undefined value here causes illegal behavior -// :107:27: note: when computing vector element at index '1' +// :107:27: note: when computing vector element at index '0' // :107:27: error: use of undefined value here causes illegal behavior -// :107:27: note: when computing vector element at index '1' +// :107:27: note: when computing vector element at index '0' // :107:27: error: use of undefined value here causes illegal behavior -// :107:27: note: when computing vector element at index '1' +// :107:27: note: when computing vector element at index '0' // :107:27: error: use of undefined value here causes illegal behavior -// :107:27: note: when computing vector element at index '1' +// :107:27: note: when computing vector element at index '0' // :107:27: error: use of undefined value here causes illegal behavior // :107:27: note: when computing vector element at index '0' // :107:27: error: use of undefined value here causes illegal behavior @@ -3094,11 +3072,17 @@ const std = @import("std"); // :107:27: error: use of undefined value here causes illegal behavior // :107:27: note: when computing vector element at index '0' // :107:27: error: use of undefined value here causes illegal behavior +// :107:27: note: when computing vector element at index '1' // :107:27: error: use of undefined value here causes illegal behavior +// :107:27: note: when computing vector element at index '1' // :107:27: error: use of undefined value here causes illegal behavior +// :107:27: note: when computing vector element at index '1' // :107:27: error: use of undefined value here causes illegal behavior +// :107:27: note: when computing vector element at index '1' // :107:27: error: use of undefined value here causes illegal behavior +// :107:27: note: when computing vector element at index '1' // :107:27: error: use of undefined value here causes illegal behavior +// :107:27: note: when computing vector element at index '1' // :107:27: error: use of undefined value here causes illegal behavior // :107:27: note: when computing vector element at index '1' // :107:27: error: use of undefined value here causes illegal behavior @@ -3108,19 +3092,25 @@ const std = @import("std"); // :107:27: error: use of undefined value here causes illegal behavior // :107:27: note: when computing vector element at index '1' // :107:27: error: use of undefined value here causes illegal behavior -// :107:27: note: when computing vector element at index '0' +// :107:27: note: when computing vector element at index '1' // :107:27: error: use of undefined value here causes illegal behavior -// :107:27: note: when computing vector element at index '0' +// :107:27: note: when computing vector element at index '1' // :107:27: error: use of undefined value here causes illegal behavior -// :107:27: note: when computing vector element at index '0' +// :107:27: note: when computing vector element at index '1' // :107:27: error: use of undefined value here causes illegal behavior -// :107:27: note: when computing vector element at index '0' +// :107:27: note: when computing vector element at index '1' // :107:27: error: use of undefined value here causes illegal behavior +// :107:27: note: when computing vector element at index '1' // :107:27: error: use of undefined value here causes illegal behavior +// :107:27: note: when computing vector element at index '1' // :107:27: error: use of undefined value here causes illegal behavior +// :107:27: note: when computing vector element at index '1' // :107:27: error: use of undefined value here causes illegal behavior +// :107:27: note: when computing vector element at index '1' // :107:27: error: use of undefined value here causes illegal behavior +// :107:27: note: when computing vector element at index '1' // :107:27: error: use of undefined value here causes illegal behavior +// :107:27: note: when computing vector element at index '1' // :107:27: error: use of undefined value here causes illegal behavior // :107:27: note: when computing vector element at index '1' // :107:27: error: use of undefined value here causes illegal behavior @@ -3130,19 +3120,29 @@ const std = @import("std"); // :107:27: error: use of undefined value here causes illegal behavior // :107:27: note: when computing vector element at index '1' // :107:27: error: use of undefined value here causes illegal behavior -// :107:27: note: when computing vector element at index '0' +// :107:27: note: when computing vector element at index '1' // :107:27: error: use of undefined value here causes illegal behavior -// :107:27: note: when computing vector element at index '0' +// :107:27: note: when computing vector element at index '1' // :107:27: error: use of undefined value here causes illegal behavior -// :107:27: note: when computing vector element at index '0' +// :107:27: note: when computing vector element at index '1' // :107:27: error: use of undefined value here causes illegal behavior -// :107:27: note: when computing vector element at index '0' +// :107:27: note: when computing vector element at index '1' +// :107:27: error: use of undefined value here causes illegal behavior +// :107:27: note: when computing vector element at index '1' +// :107:27: error: use of undefined value here causes illegal behavior +// :107:27: note: when computing vector element at index '1' // :107:27: error: use of undefined value here causes illegal behavior +// :107:27: note: when computing vector element at index '1' // :107:27: error: use of undefined value here causes illegal behavior +// :107:27: note: when computing vector element at index '1' // :107:27: error: use of undefined value here causes illegal behavior +// :107:27: note: when computing vector element at index '1' // :107:27: error: use of undefined value here causes illegal behavior +// :107:27: note: when computing vector element at index '1' // :107:27: error: use of undefined value here causes illegal behavior +// :107:27: note: when computing vector element at index '1' // :107:27: error: use of undefined value here causes illegal behavior +// :107:27: note: when computing vector element at index '1' // :107:27: error: use of undefined value here causes illegal behavior // :107:27: note: when computing vector element at index '1' // :107:27: error: use of undefined value here causes illegal behavior @@ -3152,13 +3152,13 @@ const std = @import("std"); // :107:27: error: use of undefined value here causes illegal behavior // :107:27: note: when computing vector element at index '1' // :107:27: error: use of undefined value here causes illegal behavior -// :107:27: note: when computing vector element at index '0' +// :107:27: note: when computing vector element at index '1' // :107:27: error: use of undefined value here causes illegal behavior -// :107:27: note: when computing vector element at index '0' +// :107:27: note: when computing vector element at index '1' // :107:27: error: use of undefined value here causes illegal behavior -// :107:27: note: when computing vector element at index '0' +// :107:27: note: when computing vector element at index '1' // :107:27: error: use of undefined value here causes illegal behavior -// :107:27: note: when computing vector element at index '0' +// :107:27: note: when computing vector element at index '1' // :111:22: error: use of undefined value here causes illegal behavior // :111:22: error: use of undefined value here causes illegal behavior // :111:22: error: use of undefined value here causes illegal behavior @@ -3166,21 +3166,13 @@ const std = @import("std"); // :111:22: error: use of undefined value here causes illegal behavior // :111:22: error: use of undefined value here causes illegal behavior // :111:22: error: use of undefined value here causes illegal behavior -// :111:22: note: when computing vector element at index '1' // :111:22: error: use of undefined value here causes illegal behavior -// :111:22: note: when computing vector element at index '1' // :111:22: error: use of undefined value here causes illegal behavior -// :111:22: note: when computing vector element at index '1' // :111:22: error: use of undefined value here causes illegal behavior -// :111:22: note: when computing vector element at index '1' // :111:22: error: use of undefined value here causes illegal behavior -// :111:22: note: when computing vector element at index '0' // :111:22: error: use of undefined value here causes illegal behavior -// :111:22: note: when computing vector element at index '0' // :111:22: error: use of undefined value here causes illegal behavior -// :111:22: note: when computing vector element at index '0' // :111:22: error: use of undefined value here causes illegal behavior -// :111:22: note: when computing vector element at index '0' // :111:22: error: use of undefined value here causes illegal behavior // :111:22: error: use of undefined value here causes illegal behavior // :111:22: error: use of undefined value here causes illegal behavior @@ -3188,21 +3180,13 @@ const std = @import("std"); // :111:22: error: use of undefined value here causes illegal behavior // :111:22: error: use of undefined value here causes illegal behavior // :111:22: error: use of undefined value here causes illegal behavior -// :111:22: note: when computing vector element at index '1' // :111:22: error: use of undefined value here causes illegal behavior -// :111:22: note: when computing vector element at index '1' // :111:22: error: use of undefined value here causes illegal behavior -// :111:22: note: when computing vector element at index '1' // :111:22: error: use of undefined value here causes illegal behavior -// :111:22: note: when computing vector element at index '1' // :111:22: error: use of undefined value here causes illegal behavior -// :111:22: note: when computing vector element at index '0' // :111:22: error: use of undefined value here causes illegal behavior -// :111:22: note: when computing vector element at index '0' // :111:22: error: use of undefined value here causes illegal behavior -// :111:22: note: when computing vector element at index '0' // :111:22: error: use of undefined value here causes illegal behavior -// :111:22: note: when computing vector element at index '0' // :111:22: error: use of undefined value here causes illegal behavior // :111:22: error: use of undefined value here causes illegal behavior // :111:22: error: use of undefined value here causes illegal behavior @@ -3210,21 +3194,13 @@ const std = @import("std"); // :111:22: error: use of undefined value here causes illegal behavior // :111:22: error: use of undefined value here causes illegal behavior // :111:22: error: use of undefined value here causes illegal behavior -// :111:22: note: when computing vector element at index '1' // :111:22: error: use of undefined value here causes illegal behavior -// :111:22: note: when computing vector element at index '1' // :111:22: error: use of undefined value here causes illegal behavior -// :111:22: note: when computing vector element at index '1' // :111:22: error: use of undefined value here causes illegal behavior -// :111:22: note: when computing vector element at index '1' // :111:22: error: use of undefined value here causes illegal behavior -// :111:22: note: when computing vector element at index '0' // :111:22: error: use of undefined value here causes illegal behavior -// :111:22: note: when computing vector element at index '0' // :111:22: error: use of undefined value here causes illegal behavior -// :111:22: note: when computing vector element at index '0' // :111:22: error: use of undefined value here causes illegal behavior -// :111:22: note: when computing vector element at index '0' // :111:22: error: use of undefined value here causes illegal behavior // :111:22: error: use of undefined value here causes illegal behavior // :111:22: error: use of undefined value here causes illegal behavior @@ -3232,21 +3208,13 @@ const std = @import("std"); // :111:22: error: use of undefined value here causes illegal behavior // :111:22: error: use of undefined value here causes illegal behavior // :111:22: error: use of undefined value here causes illegal behavior -// :111:22: note: when computing vector element at index '1' // :111:22: error: use of undefined value here causes illegal behavior -// :111:22: note: when computing vector element at index '1' // :111:22: error: use of undefined value here causes illegal behavior -// :111:22: note: when computing vector element at index '1' // :111:22: error: use of undefined value here causes illegal behavior -// :111:22: note: when computing vector element at index '1' // :111:22: error: use of undefined value here causes illegal behavior -// :111:22: note: when computing vector element at index '0' // :111:22: error: use of undefined value here causes illegal behavior -// :111:22: note: when computing vector element at index '0' // :111:22: error: use of undefined value here causes illegal behavior -// :111:22: note: when computing vector element at index '0' // :111:22: error: use of undefined value here causes illegal behavior -// :111:22: note: when computing vector element at index '0' // :111:22: error: use of undefined value here causes illegal behavior // :111:22: error: use of undefined value here causes illegal behavior // :111:22: error: use of undefined value here causes illegal behavior @@ -3254,13 +3222,9 @@ const std = @import("std"); // :111:22: error: use of undefined value here causes illegal behavior // :111:22: error: use of undefined value here causes illegal behavior // :111:22: error: use of undefined value here causes illegal behavior -// :111:22: note: when computing vector element at index '1' // :111:22: error: use of undefined value here causes illegal behavior -// :111:22: note: when computing vector element at index '1' // :111:22: error: use of undefined value here causes illegal behavior -// :111:22: note: when computing vector element at index '1' // :111:22: error: use of undefined value here causes illegal behavior -// :111:22: note: when computing vector element at index '1' // :111:22: error: use of undefined value here causes illegal behavior // :111:22: note: when computing vector element at index '0' // :111:22: error: use of undefined value here causes illegal behavior @@ -3270,19 +3234,21 @@ const std = @import("std"); // :111:22: error: use of undefined value here causes illegal behavior // :111:22: note: when computing vector element at index '0' // :111:22: error: use of undefined value here causes illegal behavior +// :111:22: note: when computing vector element at index '0' // :111:22: error: use of undefined value here causes illegal behavior +// :111:22: note: when computing vector element at index '0' // :111:22: error: use of undefined value here causes illegal behavior +// :111:22: note: when computing vector element at index '0' // :111:22: error: use of undefined value here causes illegal behavior +// :111:22: note: when computing vector element at index '0' // :111:22: error: use of undefined value here causes illegal behavior +// :111:22: note: when computing vector element at index '0' // :111:22: error: use of undefined value here causes illegal behavior +// :111:22: note: when computing vector element at index '0' // :111:22: error: use of undefined value here causes illegal behavior -// :111:22: note: when computing vector element at index '1' -// :111:22: error: use of undefined value here causes illegal behavior -// :111:22: note: when computing vector element at index '1' -// :111:22: error: use of undefined value here causes illegal behavior -// :111:22: note: when computing vector element at index '1' +// :111:22: note: when computing vector element at index '0' // :111:22: error: use of undefined value here causes illegal behavior -// :111:22: note: when computing vector element at index '1' +// :111:22: note: when computing vector element at index '0' // :111:22: error: use of undefined value here causes illegal behavior // :111:22: note: when computing vector element at index '0' // :111:22: error: use of undefined value here causes illegal behavior @@ -3292,19 +3258,25 @@ const std = @import("std"); // :111:22: error: use of undefined value here causes illegal behavior // :111:22: note: when computing vector element at index '0' // :111:22: error: use of undefined value here causes illegal behavior +// :111:22: note: when computing vector element at index '0' // :111:22: error: use of undefined value here causes illegal behavior +// :111:22: note: when computing vector element at index '0' // :111:22: error: use of undefined value here causes illegal behavior +// :111:22: note: when computing vector element at index '0' // :111:22: error: use of undefined value here causes illegal behavior +// :111:22: note: when computing vector element at index '0' // :111:22: error: use of undefined value here causes illegal behavior +// :111:22: note: when computing vector element at index '0' // :111:22: error: use of undefined value here causes illegal behavior +// :111:22: note: when computing vector element at index '0' // :111:22: error: use of undefined value here causes illegal behavior -// :111:22: note: when computing vector element at index '1' +// :111:22: note: when computing vector element at index '0' // :111:22: error: use of undefined value here causes illegal behavior -// :111:22: note: when computing vector element at index '1' +// :111:22: note: when computing vector element at index '0' // :111:22: error: use of undefined value here causes illegal behavior -// :111:22: note: when computing vector element at index '1' +// :111:22: note: when computing vector element at index '0' // :111:22: error: use of undefined value here causes illegal behavior -// :111:22: note: when computing vector element at index '1' +// :111:22: note: when computing vector element at index '0' // :111:22: error: use of undefined value here causes illegal behavior // :111:22: note: when computing vector element at index '0' // :111:22: error: use of undefined value here causes illegal behavior @@ -3314,19 +3286,25 @@ const std = @import("std"); // :111:22: error: use of undefined value here causes illegal behavior // :111:22: note: when computing vector element at index '0' // :111:22: error: use of undefined value here causes illegal behavior +// :111:22: note: when computing vector element at index '0' // :111:22: error: use of undefined value here causes illegal behavior +// :111:22: note: when computing vector element at index '0' // :111:22: error: use of undefined value here causes illegal behavior +// :111:22: note: when computing vector element at index '0' // :111:22: error: use of undefined value here causes illegal behavior +// :111:22: note: when computing vector element at index '0' // :111:22: error: use of undefined value here causes illegal behavior +// :111:22: note: when computing vector element at index '0' // :111:22: error: use of undefined value here causes illegal behavior +// :111:22: note: when computing vector element at index '0' // :111:22: error: use of undefined value here causes illegal behavior -// :111:22: note: when computing vector element at index '1' +// :111:22: note: when computing vector element at index '0' // :111:22: error: use of undefined value here causes illegal behavior -// :111:22: note: when computing vector element at index '1' +// :111:22: note: when computing vector element at index '0' // :111:22: error: use of undefined value here causes illegal behavior -// :111:22: note: when computing vector element at index '1' +// :111:22: note: when computing vector element at index '0' // :111:22: error: use of undefined value here causes illegal behavior -// :111:22: note: when computing vector element at index '1' +// :111:22: note: when computing vector element at index '0' // :111:22: error: use of undefined value here causes illegal behavior // :111:22: note: when computing vector element at index '0' // :111:22: error: use of undefined value here causes illegal behavior @@ -3336,11 +3314,17 @@ const std = @import("std"); // :111:22: error: use of undefined value here causes illegal behavior // :111:22: note: when computing vector element at index '0' // :111:22: error: use of undefined value here causes illegal behavior +// :111:22: note: when computing vector element at index '1' // :111:22: error: use of undefined value here causes illegal behavior +// :111:22: note: when computing vector element at index '1' // :111:22: error: use of undefined value here causes illegal behavior +// :111:22: note: when computing vector element at index '1' // :111:22: error: use of undefined value here causes illegal behavior +// :111:22: note: when computing vector element at index '1' // :111:22: error: use of undefined value here causes illegal behavior +// :111:22: note: when computing vector element at index '1' // :111:22: error: use of undefined value here causes illegal behavior +// :111:22: note: when computing vector element at index '1' // :111:22: error: use of undefined value here causes illegal behavior // :111:22: note: when computing vector element at index '1' // :111:22: error: use of undefined value here causes illegal behavior @@ -3350,19 +3334,25 @@ const std = @import("std"); // :111:22: error: use of undefined value here causes illegal behavior // :111:22: note: when computing vector element at index '1' // :111:22: error: use of undefined value here causes illegal behavior -// :111:22: note: when computing vector element at index '0' +// :111:22: note: when computing vector element at index '1' // :111:22: error: use of undefined value here causes illegal behavior -// :111:22: note: when computing vector element at index '0' +// :111:22: note: when computing vector element at index '1' // :111:22: error: use of undefined value here causes illegal behavior -// :111:22: note: when computing vector element at index '0' +// :111:22: note: when computing vector element at index '1' // :111:22: error: use of undefined value here causes illegal behavior -// :111:22: note: when computing vector element at index '0' +// :111:22: note: when computing vector element at index '1' // :111:22: error: use of undefined value here causes illegal behavior +// :111:22: note: when computing vector element at index '1' // :111:22: error: use of undefined value here causes illegal behavior +// :111:22: note: when computing vector element at index '1' // :111:22: error: use of undefined value here causes illegal behavior +// :111:22: note: when computing vector element at index '1' // :111:22: error: use of undefined value here causes illegal behavior +// :111:22: note: when computing vector element at index '1' // :111:22: error: use of undefined value here causes illegal behavior +// :111:22: note: when computing vector element at index '1' // :111:22: error: use of undefined value here causes illegal behavior +// :111:22: note: when computing vector element at index '1' // :111:22: error: use of undefined value here causes illegal behavior // :111:22: note: when computing vector element at index '1' // :111:22: error: use of undefined value here causes illegal behavior @@ -3372,19 +3362,25 @@ const std = @import("std"); // :111:22: error: use of undefined value here causes illegal behavior // :111:22: note: when computing vector element at index '1' // :111:22: error: use of undefined value here causes illegal behavior -// :111:22: note: when computing vector element at index '0' +// :111:22: note: when computing vector element at index '1' // :111:22: error: use of undefined value here causes illegal behavior -// :111:22: note: when computing vector element at index '0' +// :111:22: note: when computing vector element at index '1' // :111:22: error: use of undefined value here causes illegal behavior -// :111:22: note: when computing vector element at index '0' +// :111:22: note: when computing vector element at index '1' // :111:22: error: use of undefined value here causes illegal behavior -// :111:22: note: when computing vector element at index '0' +// :111:22: note: when computing vector element at index '1' // :111:22: error: use of undefined value here causes illegal behavior +// :111:22: note: when computing vector element at index '1' // :111:22: error: use of undefined value here causes illegal behavior +// :111:22: note: when computing vector element at index '1' // :111:22: error: use of undefined value here causes illegal behavior +// :111:22: note: when computing vector element at index '1' // :111:22: error: use of undefined value here causes illegal behavior +// :111:22: note: when computing vector element at index '1' // :111:22: error: use of undefined value here causes illegal behavior +// :111:22: note: when computing vector element at index '1' // :111:22: error: use of undefined value here causes illegal behavior +// :111:22: note: when computing vector element at index '1' // :111:22: error: use of undefined value here causes illegal behavior // :111:22: note: when computing vector element at index '1' // :111:22: error: use of undefined value here causes illegal behavior @@ -3394,13 +3390,17 @@ const std = @import("std"); // :111:22: error: use of undefined value here causes illegal behavior // :111:22: note: when computing vector element at index '1' // :111:22: error: use of undefined value here causes illegal behavior -// :111:22: note: when computing vector element at index '0' +// :111:22: note: when computing vector element at index '1' // :111:22: error: use of undefined value here causes illegal behavior -// :111:22: note: when computing vector element at index '0' +// :111:22: note: when computing vector element at index '1' // :111:22: error: use of undefined value here causes illegal behavior -// :111:22: note: when computing vector element at index '0' +// :111:22: note: when computing vector element at index '1' // :111:22: error: use of undefined value here causes illegal behavior -// :111:22: note: when computing vector element at index '0' +// :111:22: note: when computing vector element at index '1' +// :111:22: error: use of undefined value here causes illegal behavior +// :111:22: note: when computing vector element at index '1' +// :111:22: error: use of undefined value here causes illegal behavior +// :111:22: note: when computing vector element at index '1' // :115:22: error: use of undefined value here causes illegal behavior // :115:22: error: use of undefined value here causes illegal behavior // :115:22: error: use of undefined value here causes illegal behavior @@ -3408,21 +3408,13 @@ const std = @import("std"); // :115:22: error: use of undefined value here causes illegal behavior // :115:22: error: use of undefined value here causes illegal behavior // :115:22: error: use of undefined value here causes illegal behavior -// :115:22: note: when computing vector element at index '1' // :115:22: error: use of undefined value here causes illegal behavior -// :115:22: note: when computing vector element at index '1' // :115:22: error: use of undefined value here causes illegal behavior -// :115:22: note: when computing vector element at index '1' // :115:22: error: use of undefined value here causes illegal behavior -// :115:22: note: when computing vector element at index '1' // :115:22: error: use of undefined value here causes illegal behavior -// :115:22: note: when computing vector element at index '0' // :115:22: error: use of undefined value here causes illegal behavior -// :115:22: note: when computing vector element at index '0' // :115:22: error: use of undefined value here causes illegal behavior -// :115:22: note: when computing vector element at index '0' // :115:22: error: use of undefined value here causes illegal behavior -// :115:22: note: when computing vector element at index '0' // :115:22: error: use of undefined value here causes illegal behavior // :115:22: error: use of undefined value here causes illegal behavior // :115:22: error: use of undefined value here causes illegal behavior @@ -3430,21 +3422,13 @@ const std = @import("std"); // :115:22: error: use of undefined value here causes illegal behavior // :115:22: error: use of undefined value here causes illegal behavior // :115:22: error: use of undefined value here causes illegal behavior -// :115:22: note: when computing vector element at index '1' // :115:22: error: use of undefined value here causes illegal behavior -// :115:22: note: when computing vector element at index '1' // :115:22: error: use of undefined value here causes illegal behavior -// :115:22: note: when computing vector element at index '1' // :115:22: error: use of undefined value here causes illegal behavior -// :115:22: note: when computing vector element at index '1' // :115:22: error: use of undefined value here causes illegal behavior -// :115:22: note: when computing vector element at index '0' // :115:22: error: use of undefined value here causes illegal behavior -// :115:22: note: when computing vector element at index '0' // :115:22: error: use of undefined value here causes illegal behavior -// :115:22: note: when computing vector element at index '0' // :115:22: error: use of undefined value here causes illegal behavior -// :115:22: note: when computing vector element at index '0' // :115:22: error: use of undefined value here causes illegal behavior // :115:22: error: use of undefined value here causes illegal behavior // :115:22: error: use of undefined value here causes illegal behavior @@ -3452,21 +3436,13 @@ const std = @import("std"); // :115:22: error: use of undefined value here causes illegal behavior // :115:22: error: use of undefined value here causes illegal behavior // :115:22: error: use of undefined value here causes illegal behavior -// :115:22: note: when computing vector element at index '1' // :115:22: error: use of undefined value here causes illegal behavior -// :115:22: note: when computing vector element at index '1' // :115:22: error: use of undefined value here causes illegal behavior -// :115:22: note: when computing vector element at index '1' // :115:22: error: use of undefined value here causes illegal behavior -// :115:22: note: when computing vector element at index '1' // :115:22: error: use of undefined value here causes illegal behavior -// :115:22: note: when computing vector element at index '0' // :115:22: error: use of undefined value here causes illegal behavior -// :115:22: note: when computing vector element at index '0' // :115:22: error: use of undefined value here causes illegal behavior -// :115:22: note: when computing vector element at index '0' // :115:22: error: use of undefined value here causes illegal behavior -// :115:22: note: when computing vector element at index '0' // :115:22: error: use of undefined value here causes illegal behavior // :115:22: error: use of undefined value here causes illegal behavior // :115:22: error: use of undefined value here causes illegal behavior @@ -3474,21 +3450,13 @@ const std = @import("std"); // :115:22: error: use of undefined value here causes illegal behavior // :115:22: error: use of undefined value here causes illegal behavior // :115:22: error: use of undefined value here causes illegal behavior -// :115:22: note: when computing vector element at index '1' // :115:22: error: use of undefined value here causes illegal behavior -// :115:22: note: when computing vector element at index '1' // :115:22: error: use of undefined value here causes illegal behavior -// :115:22: note: when computing vector element at index '1' // :115:22: error: use of undefined value here causes illegal behavior -// :115:22: note: when computing vector element at index '1' // :115:22: error: use of undefined value here causes illegal behavior -// :115:22: note: when computing vector element at index '0' // :115:22: error: use of undefined value here causes illegal behavior -// :115:22: note: when computing vector element at index '0' // :115:22: error: use of undefined value here causes illegal behavior -// :115:22: note: when computing vector element at index '0' // :115:22: error: use of undefined value here causes illegal behavior -// :115:22: note: when computing vector element at index '0' // :115:22: error: use of undefined value here causes illegal behavior // :115:22: error: use of undefined value here causes illegal behavior // :115:22: error: use of undefined value here causes illegal behavior @@ -3496,13 +3464,9 @@ const std = @import("std"); // :115:22: error: use of undefined value here causes illegal behavior // :115:22: error: use of undefined value here causes illegal behavior // :115:22: error: use of undefined value here causes illegal behavior -// :115:22: note: when computing vector element at index '1' // :115:22: error: use of undefined value here causes illegal behavior -// :115:22: note: when computing vector element at index '1' // :115:22: error: use of undefined value here causes illegal behavior -// :115:22: note: when computing vector element at index '1' // :115:22: error: use of undefined value here causes illegal behavior -// :115:22: note: when computing vector element at index '1' // :115:22: error: use of undefined value here causes illegal behavior // :115:22: note: when computing vector element at index '0' // :115:22: error: use of undefined value here causes illegal behavior @@ -3512,19 +3476,21 @@ const std = @import("std"); // :115:22: error: use of undefined value here causes illegal behavior // :115:22: note: when computing vector element at index '0' // :115:22: error: use of undefined value here causes illegal behavior +// :115:22: note: when computing vector element at index '0' // :115:22: error: use of undefined value here causes illegal behavior +// :115:22: note: when computing vector element at index '0' // :115:22: error: use of undefined value here causes illegal behavior +// :115:22: note: when computing vector element at index '0' // :115:22: error: use of undefined value here causes illegal behavior +// :115:22: note: when computing vector element at index '0' // :115:22: error: use of undefined value here causes illegal behavior +// :115:22: note: when computing vector element at index '0' // :115:22: error: use of undefined value here causes illegal behavior +// :115:22: note: when computing vector element at index '0' // :115:22: error: use of undefined value here causes illegal behavior -// :115:22: note: when computing vector element at index '1' -// :115:22: error: use of undefined value here causes illegal behavior -// :115:22: note: when computing vector element at index '1' -// :115:22: error: use of undefined value here causes illegal behavior -// :115:22: note: when computing vector element at index '1' +// :115:22: note: when computing vector element at index '0' // :115:22: error: use of undefined value here causes illegal behavior -// :115:22: note: when computing vector element at index '1' +// :115:22: note: when computing vector element at index '0' // :115:22: error: use of undefined value here causes illegal behavior // :115:22: note: when computing vector element at index '0' // :115:22: error: use of undefined value here causes illegal behavior @@ -3534,19 +3500,25 @@ const std = @import("std"); // :115:22: error: use of undefined value here causes illegal behavior // :115:22: note: when computing vector element at index '0' // :115:22: error: use of undefined value here causes illegal behavior +// :115:22: note: when computing vector element at index '0' // :115:22: error: use of undefined value here causes illegal behavior +// :115:22: note: when computing vector element at index '0' // :115:22: error: use of undefined value here causes illegal behavior +// :115:22: note: when computing vector element at index '0' // :115:22: error: use of undefined value here causes illegal behavior +// :115:22: note: when computing vector element at index '0' // :115:22: error: use of undefined value here causes illegal behavior +// :115:22: note: when computing vector element at index '0' // :115:22: error: use of undefined value here causes illegal behavior +// :115:22: note: when computing vector element at index '0' // :115:22: error: use of undefined value here causes illegal behavior -// :115:22: note: when computing vector element at index '1' +// :115:22: note: when computing vector element at index '0' // :115:22: error: use of undefined value here causes illegal behavior -// :115:22: note: when computing vector element at index '1' +// :115:22: note: when computing vector element at index '0' // :115:22: error: use of undefined value here causes illegal behavior -// :115:22: note: when computing vector element at index '1' +// :115:22: note: when computing vector element at index '0' // :115:22: error: use of undefined value here causes illegal behavior -// :115:22: note: when computing vector element at index '1' +// :115:22: note: when computing vector element at index '0' // :115:22: error: use of undefined value here causes illegal behavior // :115:22: note: when computing vector element at index '0' // :115:22: error: use of undefined value here causes illegal behavior @@ -3556,19 +3528,25 @@ const std = @import("std"); // :115:22: error: use of undefined value here causes illegal behavior // :115:22: note: when computing vector element at index '0' // :115:22: error: use of undefined value here causes illegal behavior +// :115:22: note: when computing vector element at index '0' // :115:22: error: use of undefined value here causes illegal behavior +// :115:22: note: when computing vector element at index '0' // :115:22: error: use of undefined value here causes illegal behavior +// :115:22: note: when computing vector element at index '0' // :115:22: error: use of undefined value here causes illegal behavior +// :115:22: note: when computing vector element at index '0' // :115:22: error: use of undefined value here causes illegal behavior +// :115:22: note: when computing vector element at index '0' // :115:22: error: use of undefined value here causes illegal behavior +// :115:22: note: when computing vector element at index '0' // :115:22: error: use of undefined value here causes illegal behavior -// :115:22: note: when computing vector element at index '1' +// :115:22: note: when computing vector element at index '0' // :115:22: error: use of undefined value here causes illegal behavior -// :115:22: note: when computing vector element at index '1' +// :115:22: note: when computing vector element at index '0' // :115:22: error: use of undefined value here causes illegal behavior -// :115:22: note: when computing vector element at index '1' +// :115:22: note: when computing vector element at index '0' // :115:22: error: use of undefined value here causes illegal behavior -// :115:22: note: when computing vector element at index '1' +// :115:22: note: when computing vector element at index '0' // :115:22: error: use of undefined value here causes illegal behavior // :115:22: note: when computing vector element at index '0' // :115:22: error: use of undefined value here causes illegal behavior @@ -3578,11 +3556,17 @@ const std = @import("std"); // :115:22: error: use of undefined value here causes illegal behavior // :115:22: note: when computing vector element at index '0' // :115:22: error: use of undefined value here causes illegal behavior +// :115:22: note: when computing vector element at index '1' // :115:22: error: use of undefined value here causes illegal behavior +// :115:22: note: when computing vector element at index '1' // :115:22: error: use of undefined value here causes illegal behavior +// :115:22: note: when computing vector element at index '1' // :115:22: error: use of undefined value here causes illegal behavior +// :115:22: note: when computing vector element at index '1' // :115:22: error: use of undefined value here causes illegal behavior +// :115:22: note: when computing vector element at index '1' // :115:22: error: use of undefined value here causes illegal behavior +// :115:22: note: when computing vector element at index '1' // :115:22: error: use of undefined value here causes illegal behavior // :115:22: note: when computing vector element at index '1' // :115:22: error: use of undefined value here causes illegal behavior @@ -3592,19 +3576,25 @@ const std = @import("std"); // :115:22: error: use of undefined value here causes illegal behavior // :115:22: note: when computing vector element at index '1' // :115:22: error: use of undefined value here causes illegal behavior -// :115:22: note: when computing vector element at index '0' +// :115:22: note: when computing vector element at index '1' // :115:22: error: use of undefined value here causes illegal behavior -// :115:22: note: when computing vector element at index '0' +// :115:22: note: when computing vector element at index '1' // :115:22: error: use of undefined value here causes illegal behavior -// :115:22: note: when computing vector element at index '0' +// :115:22: note: when computing vector element at index '1' // :115:22: error: use of undefined value here causes illegal behavior -// :115:22: note: when computing vector element at index '0' +// :115:22: note: when computing vector element at index '1' // :115:22: error: use of undefined value here causes illegal behavior +// :115:22: note: when computing vector element at index '1' // :115:22: error: use of undefined value here causes illegal behavior +// :115:22: note: when computing vector element at index '1' // :115:22: error: use of undefined value here causes illegal behavior +// :115:22: note: when computing vector element at index '1' // :115:22: error: use of undefined value here causes illegal behavior +// :115:22: note: when computing vector element at index '1' // :115:22: error: use of undefined value here causes illegal behavior +// :115:22: note: when computing vector element at index '1' // :115:22: error: use of undefined value here causes illegal behavior +// :115:22: note: when computing vector element at index '1' // :115:22: error: use of undefined value here causes illegal behavior // :115:22: note: when computing vector element at index '1' // :115:22: error: use of undefined value here causes illegal behavior @@ -3614,19 +3604,27 @@ const std = @import("std"); // :115:22: error: use of undefined value here causes illegal behavior // :115:22: note: when computing vector element at index '1' // :115:22: error: use of undefined value here causes illegal behavior -// :115:22: note: when computing vector element at index '0' +// :115:22: note: when computing vector element at index '1' // :115:22: error: use of undefined value here causes illegal behavior -// :115:22: note: when computing vector element at index '0' +// :115:22: note: when computing vector element at index '1' // :115:22: error: use of undefined value here causes illegal behavior -// :115:22: note: when computing vector element at index '0' +// :115:22: note: when computing vector element at index '1' // :115:22: error: use of undefined value here causes illegal behavior -// :115:22: note: when computing vector element at index '0' +// :115:22: note: when computing vector element at index '1' +// :115:22: error: use of undefined value here causes illegal behavior +// :115:22: note: when computing vector element at index '1' // :115:22: error: use of undefined value here causes illegal behavior +// :115:22: note: when computing vector element at index '1' // :115:22: error: use of undefined value here causes illegal behavior +// :115:22: note: when computing vector element at index '1' // :115:22: error: use of undefined value here causes illegal behavior +// :115:22: note: when computing vector element at index '1' // :115:22: error: use of undefined value here causes illegal behavior +// :115:22: note: when computing vector element at index '1' // :115:22: error: use of undefined value here causes illegal behavior +// :115:22: note: when computing vector element at index '1' // :115:22: error: use of undefined value here causes illegal behavior +// :115:22: note: when computing vector element at index '1' // :115:22: error: use of undefined value here causes illegal behavior // :115:22: note: when computing vector element at index '1' // :115:22: error: use of undefined value here causes illegal behavior @@ -3636,37 +3634,32 @@ const std = @import("std"); // :115:22: error: use of undefined value here causes illegal behavior // :115:22: note: when computing vector element at index '1' // :115:22: error: use of undefined value here causes illegal behavior -// :115:22: note: when computing vector element at index '0' +// :115:22: note: when computing vector element at index '1' // :115:22: error: use of undefined value here causes illegal behavior -// :115:22: note: when computing vector element at index '0' +// :115:22: note: when computing vector element at index '1' // :115:22: error: use of undefined value here causes illegal behavior -// :115:22: note: when computing vector element at index '0' +// :115:22: note: when computing vector element at index '1' // :115:22: error: use of undefined value here causes illegal behavior -// :115:22: note: when computing vector element at index '0' +// :115:22: note: when computing vector element at index '1' +// :115:22: error: use of undefined value here causes illegal behavior +// :115:22: note: when computing vector element at index '1' +// :121:17: error: use of undefined value here causes illegal behavior // :121:17: error: use of undefined value here causes illegal behavior // :121:17: error: use of undefined value here causes illegal behavior -// :121:17: note: when computing vector element at index '0' // :121:17: error: use of undefined value here causes illegal behavior -// :121:17: note: when computing vector element at index '0' // :121:17: error: use of undefined value here causes illegal behavior -// :121:17: note: when computing vector element at index '0' // :121:17: error: use of undefined value here causes illegal behavior -// :121:17: note: when computing vector element at index '1' // :121:17: error: use of undefined value here causes illegal behavior -// :121:17: note: when computing vector element at index '0' // :121:17: error: use of undefined value here causes illegal behavior -// :121:17: note: when computing vector element at index '0' // :121:17: error: use of undefined value here causes illegal behavior -// :121:17: note: when computing vector element at index '0' // :121:17: error: use of undefined value here causes illegal behavior // :121:17: error: use of undefined value here causes illegal behavior -// :121:17: note: when computing vector element at index '0' // :121:17: error: use of undefined value here causes illegal behavior // :121:17: note: when computing vector element at index '0' // :121:17: error: use of undefined value here causes illegal behavior // :121:17: note: when computing vector element at index '0' // :121:17: error: use of undefined value here causes illegal behavior -// :121:17: note: when computing vector element at index '1' +// :121:17: note: when computing vector element at index '0' // :121:17: error: use of undefined value here causes illegal behavior // :121:17: note: when computing vector element at index '0' // :121:17: error: use of undefined value here causes illegal behavior @@ -3674,6 +3667,7 @@ const std = @import("std"); // :121:17: error: use of undefined value here causes illegal behavior // :121:17: note: when computing vector element at index '0' // :121:17: error: use of undefined value here causes illegal behavior +// :121:17: note: when computing vector element at index '0' // :121:17: error: use of undefined value here causes illegal behavior // :121:17: note: when computing vector element at index '0' // :121:17: error: use of undefined value here causes illegal behavior @@ -3681,7 +3675,7 @@ const std = @import("std"); // :121:17: error: use of undefined value here causes illegal behavior // :121:17: note: when computing vector element at index '0' // :121:17: error: use of undefined value here causes illegal behavior -// :121:17: note: when computing vector element at index '1' +// :121:17: note: when computing vector element at index '0' // :121:17: error: use of undefined value here causes illegal behavior // :121:17: note: when computing vector element at index '0' // :121:17: error: use of undefined value here causes illegal behavior @@ -3689,6 +3683,7 @@ const std = @import("std"); // :121:17: error: use of undefined value here causes illegal behavior // :121:17: note: when computing vector element at index '0' // :121:17: error: use of undefined value here causes illegal behavior +// :121:17: note: when computing vector element at index '0' // :121:17: error: use of undefined value here causes illegal behavior // :121:17: note: when computing vector element at index '0' // :121:17: error: use of undefined value here causes illegal behavior @@ -3696,7 +3691,7 @@ const std = @import("std"); // :121:17: error: use of undefined value here causes illegal behavior // :121:17: note: when computing vector element at index '0' // :121:17: error: use of undefined value here causes illegal behavior -// :121:17: note: when computing vector element at index '1' +// :121:17: note: when computing vector element at index '0' // :121:17: error: use of undefined value here causes illegal behavior // :121:17: note: when computing vector element at index '0' // :121:17: error: use of undefined value here causes illegal behavior @@ -3704,6 +3699,7 @@ const std = @import("std"); // :121:17: error: use of undefined value here causes illegal behavior // :121:17: note: when computing vector element at index '0' // :121:17: error: use of undefined value here causes illegal behavior +// :121:17: note: when computing vector element at index '0' // :121:17: error: use of undefined value here causes illegal behavior // :121:17: note: when computing vector element at index '0' // :121:17: error: use of undefined value here causes illegal behavior @@ -3711,7 +3707,7 @@ const std = @import("std"); // :121:17: error: use of undefined value here causes illegal behavior // :121:17: note: when computing vector element at index '0' // :121:17: error: use of undefined value here causes illegal behavior -// :121:17: note: when computing vector element at index '1' +// :121:17: note: when computing vector element at index '0' // :121:17: error: use of undefined value here causes illegal behavior // :121:17: note: when computing vector element at index '0' // :121:17: error: use of undefined value here causes illegal behavior @@ -3719,6 +3715,7 @@ const std = @import("std"); // :121:17: error: use of undefined value here causes illegal behavior // :121:17: note: when computing vector element at index '0' // :121:17: error: use of undefined value here causes illegal behavior +// :121:17: note: when computing vector element at index '0' // :121:17: error: use of undefined value here causes illegal behavior // :121:17: note: when computing vector element at index '0' // :121:17: error: use of undefined value here causes illegal behavior @@ -3726,7 +3723,7 @@ const std = @import("std"); // :121:17: error: use of undefined value here causes illegal behavior // :121:17: note: when computing vector element at index '0' // :121:17: error: use of undefined value here causes illegal behavior -// :121:17: note: when computing vector element at index '1' +// :121:17: note: when computing vector element at index '0' // :121:17: error: use of undefined value here causes illegal behavior // :121:17: note: when computing vector element at index '0' // :121:17: error: use of undefined value here causes illegal behavior @@ -3734,6 +3731,7 @@ const std = @import("std"); // :121:17: error: use of undefined value here causes illegal behavior // :121:17: note: when computing vector element at index '0' // :121:17: error: use of undefined value here causes illegal behavior +// :121:17: note: when computing vector element at index '0' // :121:17: error: use of undefined value here causes illegal behavior // :121:17: note: when computing vector element at index '0' // :121:17: error: use of undefined value here causes illegal behavior @@ -3741,7 +3739,7 @@ const std = @import("std"); // :121:17: error: use of undefined value here causes illegal behavior // :121:17: note: when computing vector element at index '0' // :121:17: error: use of undefined value here causes illegal behavior -// :121:17: note: when computing vector element at index '1' +// :121:17: note: when computing vector element at index '0' // :121:17: error: use of undefined value here causes illegal behavior // :121:17: note: when computing vector element at index '0' // :121:17: error: use of undefined value here causes illegal behavior @@ -3749,6 +3747,7 @@ const std = @import("std"); // :121:17: error: use of undefined value here causes illegal behavior // :121:17: note: when computing vector element at index '0' // :121:17: error: use of undefined value here causes illegal behavior +// :121:17: note: when computing vector element at index '0' // :121:17: error: use of undefined value here causes illegal behavior // :121:17: note: when computing vector element at index '0' // :121:17: error: use of undefined value here causes illegal behavior @@ -3756,7 +3755,7 @@ const std = @import("std"); // :121:17: error: use of undefined value here causes illegal behavior // :121:17: note: when computing vector element at index '0' // :121:17: error: use of undefined value here causes illegal behavior -// :121:17: note: when computing vector element at index '1' +// :121:17: note: when computing vector element at index '0' // :121:17: error: use of undefined value here causes illegal behavior // :121:17: note: when computing vector element at index '0' // :121:17: error: use of undefined value here causes illegal behavior @@ -3764,6 +3763,7 @@ const std = @import("std"); // :121:17: error: use of undefined value here causes illegal behavior // :121:17: note: when computing vector element at index '0' // :121:17: error: use of undefined value here causes illegal behavior +// :121:17: note: when computing vector element at index '0' // :121:17: error: use of undefined value here causes illegal behavior // :121:17: note: when computing vector element at index '0' // :121:17: error: use of undefined value here causes illegal behavior @@ -3771,7 +3771,7 @@ const std = @import("std"); // :121:17: error: use of undefined value here causes illegal behavior // :121:17: note: when computing vector element at index '0' // :121:17: error: use of undefined value here causes illegal behavior -// :121:17: note: when computing vector element at index '1' +// :121:17: note: when computing vector element at index '0' // :121:17: error: use of undefined value here causes illegal behavior // :121:17: note: when computing vector element at index '0' // :121:17: error: use of undefined value here causes illegal behavior @@ -3779,6 +3779,7 @@ const std = @import("std"); // :121:17: error: use of undefined value here causes illegal behavior // :121:17: note: when computing vector element at index '0' // :121:17: error: use of undefined value here causes illegal behavior +// :121:17: note: when computing vector element at index '0' // :121:17: error: use of undefined value here causes illegal behavior // :121:17: note: when computing vector element at index '0' // :121:17: error: use of undefined value here causes illegal behavior @@ -3788,126 +3789,120 @@ const std = @import("std"); // :121:17: error: use of undefined value here causes illegal behavior // :121:17: note: when computing vector element at index '1' // :121:17: error: use of undefined value here causes illegal behavior -// :121:17: note: when computing vector element at index '0' -// :121:17: error: use of undefined value here causes illegal behavior -// :121:17: note: when computing vector element at index '0' +// :121:17: note: when computing vector element at index '1' // :121:17: error: use of undefined value here causes illegal behavior -// :121:17: note: when computing vector element at index '0' +// :121:17: note: when computing vector element at index '1' // :121:17: error: use of undefined value here causes illegal behavior +// :121:17: note: when computing vector element at index '1' // :121:17: error: use of undefined value here causes illegal behavior -// :121:17: note: when computing vector element at index '0' +// :121:17: note: when computing vector element at index '1' // :121:17: error: use of undefined value here causes illegal behavior -// :121:17: note: when computing vector element at index '0' +// :121:17: note: when computing vector element at index '1' // :121:17: error: use of undefined value here causes illegal behavior -// :121:17: note: when computing vector element at index '0' +// :121:17: note: when computing vector element at index '1' // :121:17: error: use of undefined value here causes illegal behavior // :121:17: note: when computing vector element at index '1' // :121:17: error: use of undefined value here causes illegal behavior -// :121:17: note: when computing vector element at index '0' +// :121:17: note: when computing vector element at index '1' // :121:17: error: use of undefined value here causes illegal behavior -// :121:17: note: when computing vector element at index '0' +// :121:17: note: when computing vector element at index '1' // :121:17: error: use of undefined value here causes illegal behavior -// :121:17: note: when computing vector element at index '0' +// :121:17: note: when computing vector element at index '1' // :121:21: error: use of undefined value here causes illegal behavior // :121:21: error: use of undefined value here causes illegal behavior -// :121:21: note: when computing vector element at index '0' // :121:21: error: use of undefined value here causes illegal behavior -// :121:21: note: when computing vector element at index '0' // :121:21: error: use of undefined value here causes illegal behavior -// :121:21: note: when computing vector element at index '1' // :121:21: error: use of undefined value here causes illegal behavior -// :121:21: note: when computing vector element at index '0' // :121:21: error: use of undefined value here causes illegal behavior -// :121:21: note: when computing vector element at index '0' // :121:21: error: use of undefined value here causes illegal behavior // :121:21: error: use of undefined value here causes illegal behavior -// :121:21: note: when computing vector element at index '0' // :121:21: error: use of undefined value here causes illegal behavior -// :121:21: note: when computing vector element at index '0' // :121:21: error: use of undefined value here causes illegal behavior -// :121:21: note: when computing vector element at index '1' // :121:21: error: use of undefined value here causes illegal behavior -// :121:21: note: when computing vector element at index '0' // :121:21: error: use of undefined value here causes illegal behavior // :121:21: note: when computing vector element at index '0' // :121:21: error: use of undefined value here causes illegal behavior -// :121:21: error: use of undefined value here causes illegal behavior // :121:21: note: when computing vector element at index '0' // :121:21: error: use of undefined value here causes illegal behavior // :121:21: note: when computing vector element at index '0' // :121:21: error: use of undefined value here causes illegal behavior -// :121:21: note: when computing vector element at index '1' -// :121:21: error: use of undefined value here causes illegal behavior // :121:21: note: when computing vector element at index '0' // :121:21: error: use of undefined value here causes illegal behavior // :121:21: note: when computing vector element at index '0' // :121:21: error: use of undefined value here causes illegal behavior +// :121:21: note: when computing vector element at index '0' // :121:21: error: use of undefined value here causes illegal behavior // :121:21: note: when computing vector element at index '0' // :121:21: error: use of undefined value here causes illegal behavior // :121:21: note: when computing vector element at index '0' // :121:21: error: use of undefined value here causes illegal behavior -// :121:21: note: when computing vector element at index '1' +// :121:21: note: when computing vector element at index '0' // :121:21: error: use of undefined value here causes illegal behavior // :121:21: note: when computing vector element at index '0' // :121:21: error: use of undefined value here causes illegal behavior // :121:21: note: when computing vector element at index '0' // :121:21: error: use of undefined value here causes illegal behavior +// :121:21: note: when computing vector element at index '0' // :121:21: error: use of undefined value here causes illegal behavior // :121:21: note: when computing vector element at index '0' // :121:21: error: use of undefined value here causes illegal behavior // :121:21: note: when computing vector element at index '0' // :121:21: error: use of undefined value here causes illegal behavior -// :121:21: note: when computing vector element at index '1' +// :121:21: note: when computing vector element at index '0' // :121:21: error: use of undefined value here causes illegal behavior // :121:21: note: when computing vector element at index '0' // :121:21: error: use of undefined value here causes illegal behavior // :121:21: note: when computing vector element at index '0' // :121:21: error: use of undefined value here causes illegal behavior +// :121:21: note: when computing vector element at index '0' // :121:21: error: use of undefined value here causes illegal behavior // :121:21: note: when computing vector element at index '0' // :121:21: error: use of undefined value here causes illegal behavior // :121:21: note: when computing vector element at index '0' // :121:21: error: use of undefined value here causes illegal behavior -// :121:21: note: when computing vector element at index '1' +// :121:21: note: when computing vector element at index '0' // :121:21: error: use of undefined value here causes illegal behavior // :121:21: note: when computing vector element at index '0' // :121:21: error: use of undefined value here causes illegal behavior // :121:21: note: when computing vector element at index '0' // :121:21: error: use of undefined value here causes illegal behavior +// :121:21: note: when computing vector element at index '0' // :121:21: error: use of undefined value here causes illegal behavior // :121:21: note: when computing vector element at index '0' // :121:21: error: use of undefined value here causes illegal behavior // :121:21: note: when computing vector element at index '0' // :121:21: error: use of undefined value here causes illegal behavior -// :121:21: note: when computing vector element at index '1' +// :121:21: note: when computing vector element at index '0' // :121:21: error: use of undefined value here causes illegal behavior // :121:21: note: when computing vector element at index '0' // :121:21: error: use of undefined value here causes illegal behavior // :121:21: note: when computing vector element at index '0' // :121:21: error: use of undefined value here causes illegal behavior +// :121:21: note: when computing vector element at index '0' // :121:21: error: use of undefined value here causes illegal behavior // :121:21: note: when computing vector element at index '0' // :121:21: error: use of undefined value here causes illegal behavior // :121:21: note: when computing vector element at index '0' // :121:21: error: use of undefined value here causes illegal behavior -// :121:21: note: when computing vector element at index '1' +// :121:21: note: when computing vector element at index '0' // :121:21: error: use of undefined value here causes illegal behavior // :121:21: note: when computing vector element at index '0' // :121:21: error: use of undefined value here causes illegal behavior // :121:21: note: when computing vector element at index '0' // :121:21: error: use of undefined value here causes illegal behavior +// :121:21: note: when computing vector element at index '0' // :121:21: error: use of undefined value here causes illegal behavior // :121:21: note: when computing vector element at index '0' // :121:21: error: use of undefined value here causes illegal behavior // :121:21: note: when computing vector element at index '0' // :121:21: error: use of undefined value here causes illegal behavior -// :121:21: note: when computing vector element at index '1' +// :121:21: note: when computing vector element at index '0' // :121:21: error: use of undefined value here causes illegal behavior // :121:21: note: when computing vector element at index '0' // :121:21: error: use of undefined value here causes illegal behavior // :121:21: note: when computing vector element at index '0' // :121:21: error: use of undefined value here causes illegal behavior +// :121:21: note: when computing vector element at index '0' // :121:21: error: use of undefined value here causes illegal behavior // :121:21: note: when computing vector element at index '0' // :121:21: error: use of undefined value here causes illegal behavior @@ -3915,44 +3910,42 @@ const std = @import("std"); // :121:21: error: use of undefined value here causes illegal behavior // :121:21: note: when computing vector element at index '1' // :121:21: error: use of undefined value here causes illegal behavior -// :121:21: note: when computing vector element at index '0' +// :121:21: note: when computing vector element at index '1' // :121:21: error: use of undefined value here causes illegal behavior -// :121:21: note: when computing vector element at index '0' +// :121:21: note: when computing vector element at index '1' // :121:21: error: use of undefined value here causes illegal behavior +// :121:21: note: when computing vector element at index '1' // :121:21: error: use of undefined value here causes illegal behavior -// :121:21: note: when computing vector element at index '0' +// :121:21: note: when computing vector element at index '1' // :121:21: error: use of undefined value here causes illegal behavior -// :121:21: note: when computing vector element at index '0' +// :121:21: note: when computing vector element at index '1' // :121:21: error: use of undefined value here causes illegal behavior // :121:21: note: when computing vector element at index '1' // :121:21: error: use of undefined value here causes illegal behavior -// :121:21: note: when computing vector element at index '0' +// :121:21: note: when computing vector element at index '1' // :121:21: error: use of undefined value here causes illegal behavior -// :121:21: note: when computing vector element at index '0' +// :121:21: note: when computing vector element at index '1' +// :121:21: error: use of undefined value here causes illegal behavior +// :121:21: note: when computing vector element at index '1' +// :121:21: error: use of undefined value here causes illegal behavior +// :121:21: note: when computing vector element at index '1' +// :125:27: error: use of undefined value here causes illegal behavior // :125:27: error: use of undefined value here causes illegal behavior // :125:27: error: use of undefined value here causes illegal behavior -// :125:27: note: when computing vector element at index '0' // :125:27: error: use of undefined value here causes illegal behavior -// :125:27: note: when computing vector element at index '0' // :125:27: error: use of undefined value here causes illegal behavior -// :125:27: note: when computing vector element at index '0' // :125:27: error: use of undefined value here causes illegal behavior -// :125:27: note: when computing vector element at index '1' // :125:27: error: use of undefined value here causes illegal behavior -// :125:27: note: when computing vector element at index '0' // :125:27: error: use of undefined value here causes illegal behavior -// :125:27: note: when computing vector element at index '0' // :125:27: error: use of undefined value here causes illegal behavior -// :125:27: note: when computing vector element at index '0' // :125:27: error: use of undefined value here causes illegal behavior // :125:27: error: use of undefined value here causes illegal behavior -// :125:27: note: when computing vector element at index '0' // :125:27: error: use of undefined value here causes illegal behavior // :125:27: note: when computing vector element at index '0' // :125:27: error: use of undefined value here causes illegal behavior // :125:27: note: when computing vector element at index '0' // :125:27: error: use of undefined value here causes illegal behavior -// :125:27: note: when computing vector element at index '1' +// :125:27: note: when computing vector element at index '0' // :125:27: error: use of undefined value here causes illegal behavior // :125:27: note: when computing vector element at index '0' // :125:27: error: use of undefined value here causes illegal behavior @@ -3960,6 +3953,7 @@ const std = @import("std"); // :125:27: error: use of undefined value here causes illegal behavior // :125:27: note: when computing vector element at index '0' // :125:27: error: use of undefined value here causes illegal behavior +// :125:27: note: when computing vector element at index '0' // :125:27: error: use of undefined value here causes illegal behavior // :125:27: note: when computing vector element at index '0' // :125:27: error: use of undefined value here causes illegal behavior @@ -3967,7 +3961,7 @@ const std = @import("std"); // :125:27: error: use of undefined value here causes illegal behavior // :125:27: note: when computing vector element at index '0' // :125:27: error: use of undefined value here causes illegal behavior -// :125:27: note: when computing vector element at index '1' +// :125:27: note: when computing vector element at index '0' // :125:27: error: use of undefined value here causes illegal behavior // :125:27: note: when computing vector element at index '0' // :125:27: error: use of undefined value here causes illegal behavior @@ -3975,6 +3969,7 @@ const std = @import("std"); // :125:27: error: use of undefined value here causes illegal behavior // :125:27: note: when computing vector element at index '0' // :125:27: error: use of undefined value here causes illegal behavior +// :125:27: note: when computing vector element at index '0' // :125:27: error: use of undefined value here causes illegal behavior // :125:27: note: when computing vector element at index '0' // :125:27: error: use of undefined value here causes illegal behavior @@ -3982,7 +3977,7 @@ const std = @import("std"); // :125:27: error: use of undefined value here causes illegal behavior // :125:27: note: when computing vector element at index '0' // :125:27: error: use of undefined value here causes illegal behavior -// :125:27: note: when computing vector element at index '1' +// :125:27: note: when computing vector element at index '0' // :125:27: error: use of undefined value here causes illegal behavior // :125:27: note: when computing vector element at index '0' // :125:27: error: use of undefined value here causes illegal behavior @@ -3990,6 +3985,7 @@ const std = @import("std"); // :125:27: error: use of undefined value here causes illegal behavior // :125:27: note: when computing vector element at index '0' // :125:27: error: use of undefined value here causes illegal behavior +// :125:27: note: when computing vector element at index '0' // :125:27: error: use of undefined value here causes illegal behavior // :125:27: note: when computing vector element at index '0' // :125:27: error: use of undefined value here causes illegal behavior @@ -3997,7 +3993,7 @@ const std = @import("std"); // :125:27: error: use of undefined value here causes illegal behavior // :125:27: note: when computing vector element at index '0' // :125:27: error: use of undefined value here causes illegal behavior -// :125:27: note: when computing vector element at index '1' +// :125:27: note: when computing vector element at index '0' // :125:27: error: use of undefined value here causes illegal behavior // :125:27: note: when computing vector element at index '0' // :125:27: error: use of undefined value here causes illegal behavior @@ -4005,6 +4001,7 @@ const std = @import("std"); // :125:27: error: use of undefined value here causes illegal behavior // :125:27: note: when computing vector element at index '0' // :125:27: error: use of undefined value here causes illegal behavior +// :125:27: note: when computing vector element at index '0' // :125:27: error: use of undefined value here causes illegal behavior // :125:27: note: when computing vector element at index '0' // :125:27: error: use of undefined value here causes illegal behavior @@ -4012,7 +4009,7 @@ const std = @import("std"); // :125:27: error: use of undefined value here causes illegal behavior // :125:27: note: when computing vector element at index '0' // :125:27: error: use of undefined value here causes illegal behavior -// :125:27: note: when computing vector element at index '1' +// :125:27: note: when computing vector element at index '0' // :125:27: error: use of undefined value here causes illegal behavior // :125:27: note: when computing vector element at index '0' // :125:27: error: use of undefined value here causes illegal behavior @@ -4020,6 +4017,7 @@ const std = @import("std"); // :125:27: error: use of undefined value here causes illegal behavior // :125:27: note: when computing vector element at index '0' // :125:27: error: use of undefined value here causes illegal behavior +// :125:27: note: when computing vector element at index '0' // :125:27: error: use of undefined value here causes illegal behavior // :125:27: note: when computing vector element at index '0' // :125:27: error: use of undefined value here causes illegal behavior @@ -4027,7 +4025,7 @@ const std = @import("std"); // :125:27: error: use of undefined value here causes illegal behavior // :125:27: note: when computing vector element at index '0' // :125:27: error: use of undefined value here causes illegal behavior -// :125:27: note: when computing vector element at index '1' +// :125:27: note: when computing vector element at index '0' // :125:27: error: use of undefined value here causes illegal behavior // :125:27: note: when computing vector element at index '0' // :125:27: error: use of undefined value here causes illegal behavior @@ -4035,6 +4033,7 @@ const std = @import("std"); // :125:27: error: use of undefined value here causes illegal behavior // :125:27: note: when computing vector element at index '0' // :125:27: error: use of undefined value here causes illegal behavior +// :125:27: note: when computing vector element at index '0' // :125:27: error: use of undefined value here causes illegal behavior // :125:27: note: when computing vector element at index '0' // :125:27: error: use of undefined value here causes illegal behavior @@ -4042,7 +4041,7 @@ const std = @import("std"); // :125:27: error: use of undefined value here causes illegal behavior // :125:27: note: when computing vector element at index '0' // :125:27: error: use of undefined value here causes illegal behavior -// :125:27: note: when computing vector element at index '1' +// :125:27: note: when computing vector element at index '0' // :125:27: error: use of undefined value here causes illegal behavior // :125:27: note: when computing vector element at index '0' // :125:27: error: use of undefined value here causes illegal behavior @@ -4050,6 +4049,7 @@ const std = @import("std"); // :125:27: error: use of undefined value here causes illegal behavior // :125:27: note: when computing vector element at index '0' // :125:27: error: use of undefined value here causes illegal behavior +// :125:27: note: when computing vector element at index '0' // :125:27: error: use of undefined value here causes illegal behavior // :125:27: note: when computing vector element at index '0' // :125:27: error: use of undefined value here causes illegal behavior @@ -4057,7 +4057,7 @@ const std = @import("std"); // :125:27: error: use of undefined value here causes illegal behavior // :125:27: note: when computing vector element at index '0' // :125:27: error: use of undefined value here causes illegal behavior -// :125:27: note: when computing vector element at index '1' +// :125:27: note: when computing vector element at index '0' // :125:27: error: use of undefined value here causes illegal behavior // :125:27: note: when computing vector element at index '0' // :125:27: error: use of undefined value here causes illegal behavior @@ -4065,6 +4065,7 @@ const std = @import("std"); // :125:27: error: use of undefined value here causes illegal behavior // :125:27: note: when computing vector element at index '0' // :125:27: error: use of undefined value here causes illegal behavior +// :125:27: note: when computing vector element at index '0' // :125:27: error: use of undefined value here causes illegal behavior // :125:27: note: when computing vector element at index '0' // :125:27: error: use of undefined value here causes illegal behavior @@ -4074,126 +4075,120 @@ const std = @import("std"); // :125:27: error: use of undefined value here causes illegal behavior // :125:27: note: when computing vector element at index '1' // :125:27: error: use of undefined value here causes illegal behavior -// :125:27: note: when computing vector element at index '0' -// :125:27: error: use of undefined value here causes illegal behavior -// :125:27: note: when computing vector element at index '0' +// :125:27: note: when computing vector element at index '1' // :125:27: error: use of undefined value here causes illegal behavior -// :125:27: note: when computing vector element at index '0' +// :125:27: note: when computing vector element at index '1' // :125:27: error: use of undefined value here causes illegal behavior +// :125:27: note: when computing vector element at index '1' // :125:27: error: use of undefined value here causes illegal behavior -// :125:27: note: when computing vector element at index '0' +// :125:27: note: when computing vector element at index '1' // :125:27: error: use of undefined value here causes illegal behavior -// :125:27: note: when computing vector element at index '0' +// :125:27: note: when computing vector element at index '1' // :125:27: error: use of undefined value here causes illegal behavior -// :125:27: note: when computing vector element at index '0' +// :125:27: note: when computing vector element at index '1' // :125:27: error: use of undefined value here causes illegal behavior // :125:27: note: when computing vector element at index '1' // :125:27: error: use of undefined value here causes illegal behavior -// :125:27: note: when computing vector element at index '0' +// :125:27: note: when computing vector element at index '1' // :125:27: error: use of undefined value here causes illegal behavior -// :125:27: note: when computing vector element at index '0' +// :125:27: note: when computing vector element at index '1' // :125:27: error: use of undefined value here causes illegal behavior -// :125:27: note: when computing vector element at index '0' +// :125:27: note: when computing vector element at index '1' // :125:30: error: use of undefined value here causes illegal behavior // :125:30: error: use of undefined value here causes illegal behavior -// :125:30: note: when computing vector element at index '0' // :125:30: error: use of undefined value here causes illegal behavior -// :125:30: note: when computing vector element at index '0' // :125:30: error: use of undefined value here causes illegal behavior -// :125:30: note: when computing vector element at index '1' // :125:30: error: use of undefined value here causes illegal behavior -// :125:30: note: when computing vector element at index '0' // :125:30: error: use of undefined value here causes illegal behavior -// :125:30: note: when computing vector element at index '0' // :125:30: error: use of undefined value here causes illegal behavior // :125:30: error: use of undefined value here causes illegal behavior -// :125:30: note: when computing vector element at index '0' // :125:30: error: use of undefined value here causes illegal behavior -// :125:30: note: when computing vector element at index '0' // :125:30: error: use of undefined value here causes illegal behavior -// :125:30: note: when computing vector element at index '1' // :125:30: error: use of undefined value here causes illegal behavior -// :125:30: note: when computing vector element at index '0' // :125:30: error: use of undefined value here causes illegal behavior // :125:30: note: when computing vector element at index '0' // :125:30: error: use of undefined value here causes illegal behavior -// :125:30: error: use of undefined value here causes illegal behavior // :125:30: note: when computing vector element at index '0' // :125:30: error: use of undefined value here causes illegal behavior // :125:30: note: when computing vector element at index '0' // :125:30: error: use of undefined value here causes illegal behavior -// :125:30: note: when computing vector element at index '1' -// :125:30: error: use of undefined value here causes illegal behavior // :125:30: note: when computing vector element at index '0' // :125:30: error: use of undefined value here causes illegal behavior // :125:30: note: when computing vector element at index '0' // :125:30: error: use of undefined value here causes illegal behavior +// :125:30: note: when computing vector element at index '0' // :125:30: error: use of undefined value here causes illegal behavior // :125:30: note: when computing vector element at index '0' // :125:30: error: use of undefined value here causes illegal behavior // :125:30: note: when computing vector element at index '0' // :125:30: error: use of undefined value here causes illegal behavior -// :125:30: note: when computing vector element at index '1' +// :125:30: note: when computing vector element at index '0' // :125:30: error: use of undefined value here causes illegal behavior // :125:30: note: when computing vector element at index '0' // :125:30: error: use of undefined value here causes illegal behavior // :125:30: note: when computing vector element at index '0' // :125:30: error: use of undefined value here causes illegal behavior +// :125:30: note: when computing vector element at index '0' // :125:30: error: use of undefined value here causes illegal behavior // :125:30: note: when computing vector element at index '0' // :125:30: error: use of undefined value here causes illegal behavior // :125:30: note: when computing vector element at index '0' // :125:30: error: use of undefined value here causes illegal behavior -// :125:30: note: when computing vector element at index '1' +// :125:30: note: when computing vector element at index '0' // :125:30: error: use of undefined value here causes illegal behavior // :125:30: note: when computing vector element at index '0' // :125:30: error: use of undefined value here causes illegal behavior // :125:30: note: when computing vector element at index '0' // :125:30: error: use of undefined value here causes illegal behavior +// :125:30: note: when computing vector element at index '0' // :125:30: error: use of undefined value here causes illegal behavior // :125:30: note: when computing vector element at index '0' // :125:30: error: use of undefined value here causes illegal behavior // :125:30: note: when computing vector element at index '0' // :125:30: error: use of undefined value here causes illegal behavior -// :125:30: note: when computing vector element at index '1' +// :125:30: note: when computing vector element at index '0' // :125:30: error: use of undefined value here causes illegal behavior // :125:30: note: when computing vector element at index '0' // :125:30: error: use of undefined value here causes illegal behavior // :125:30: note: when computing vector element at index '0' // :125:30: error: use of undefined value here causes illegal behavior +// :125:30: note: when computing vector element at index '0' // :125:30: error: use of undefined value here causes illegal behavior // :125:30: note: when computing vector element at index '0' // :125:30: error: use of undefined value here causes illegal behavior // :125:30: note: when computing vector element at index '0' // :125:30: error: use of undefined value here causes illegal behavior -// :125:30: note: when computing vector element at index '1' +// :125:30: note: when computing vector element at index '0' // :125:30: error: use of undefined value here causes illegal behavior // :125:30: note: when computing vector element at index '0' // :125:30: error: use of undefined value here causes illegal behavior // :125:30: note: when computing vector element at index '0' // :125:30: error: use of undefined value here causes illegal behavior +// :125:30: note: when computing vector element at index '0' // :125:30: error: use of undefined value here causes illegal behavior // :125:30: note: when computing vector element at index '0' // :125:30: error: use of undefined value here causes illegal behavior // :125:30: note: when computing vector element at index '0' // :125:30: error: use of undefined value here causes illegal behavior -// :125:30: note: when computing vector element at index '1' +// :125:30: note: when computing vector element at index '0' // :125:30: error: use of undefined value here causes illegal behavior // :125:30: note: when computing vector element at index '0' // :125:30: error: use of undefined value here causes illegal behavior // :125:30: note: when computing vector element at index '0' // :125:30: error: use of undefined value here causes illegal behavior +// :125:30: note: when computing vector element at index '0' // :125:30: error: use of undefined value here causes illegal behavior // :125:30: note: when computing vector element at index '0' // :125:30: error: use of undefined value here causes illegal behavior // :125:30: note: when computing vector element at index '0' // :125:30: error: use of undefined value here causes illegal behavior -// :125:30: note: when computing vector element at index '1' +// :125:30: note: when computing vector element at index '0' // :125:30: error: use of undefined value here causes illegal behavior // :125:30: note: when computing vector element at index '0' // :125:30: error: use of undefined value here causes illegal behavior // :125:30: note: when computing vector element at index '0' // :125:30: error: use of undefined value here causes illegal behavior +// :125:30: note: when computing vector element at index '0' // :125:30: error: use of undefined value here causes illegal behavior // :125:30: note: when computing vector element at index '0' // :125:30: error: use of undefined value here causes illegal behavior @@ -4201,44 +4196,42 @@ const std = @import("std"); // :125:30: error: use of undefined value here causes illegal behavior // :125:30: note: when computing vector element at index '1' // :125:30: error: use of undefined value here causes illegal behavior -// :125:30: note: when computing vector element at index '0' +// :125:30: note: when computing vector element at index '1' // :125:30: error: use of undefined value here causes illegal behavior -// :125:30: note: when computing vector element at index '0' +// :125:30: note: when computing vector element at index '1' // :125:30: error: use of undefined value here causes illegal behavior +// :125:30: note: when computing vector element at index '1' // :125:30: error: use of undefined value here causes illegal behavior -// :125:30: note: when computing vector element at index '0' +// :125:30: note: when computing vector element at index '1' // :125:30: error: use of undefined value here causes illegal behavior -// :125:30: note: when computing vector element at index '0' +// :125:30: note: when computing vector element at index '1' // :125:30: error: use of undefined value here causes illegal behavior // :125:30: note: when computing vector element at index '1' // :125:30: error: use of undefined value here causes illegal behavior -// :125:30: note: when computing vector element at index '0' +// :125:30: note: when computing vector element at index '1' // :125:30: error: use of undefined value here causes illegal behavior -// :125:30: note: when computing vector element at index '0' +// :125:30: note: when computing vector element at index '1' +// :125:30: error: use of undefined value here causes illegal behavior +// :125:30: note: when computing vector element at index '1' +// :125:30: error: use of undefined value here causes illegal behavior +// :125:30: note: when computing vector element at index '1' +// :129:27: error: use of undefined value here causes illegal behavior // :129:27: error: use of undefined value here causes illegal behavior // :129:27: error: use of undefined value here causes illegal behavior -// :129:27: note: when computing vector element at index '0' // :129:27: error: use of undefined value here causes illegal behavior -// :129:27: note: when computing vector element at index '0' // :129:27: error: use of undefined value here causes illegal behavior -// :129:27: note: when computing vector element at index '0' // :129:27: error: use of undefined value here causes illegal behavior -// :129:27: note: when computing vector element at index '1' // :129:27: error: use of undefined value here causes illegal behavior -// :129:27: note: when computing vector element at index '0' // :129:27: error: use of undefined value here causes illegal behavior -// :129:27: note: when computing vector element at index '0' // :129:27: error: use of undefined value here causes illegal behavior -// :129:27: note: when computing vector element at index '0' // :129:27: error: use of undefined value here causes illegal behavior // :129:27: error: use of undefined value here causes illegal behavior -// :129:27: note: when computing vector element at index '0' // :129:27: error: use of undefined value here causes illegal behavior // :129:27: note: when computing vector element at index '0' // :129:27: error: use of undefined value here causes illegal behavior // :129:27: note: when computing vector element at index '0' // :129:27: error: use of undefined value here causes illegal behavior -// :129:27: note: when computing vector element at index '1' +// :129:27: note: when computing vector element at index '0' // :129:27: error: use of undefined value here causes illegal behavior // :129:27: note: when computing vector element at index '0' // :129:27: error: use of undefined value here causes illegal behavior @@ -4246,6 +4239,7 @@ const std = @import("std"); // :129:27: error: use of undefined value here causes illegal behavior // :129:27: note: when computing vector element at index '0' // :129:27: error: use of undefined value here causes illegal behavior +// :129:27: note: when computing vector element at index '0' // :129:27: error: use of undefined value here causes illegal behavior // :129:27: note: when computing vector element at index '0' // :129:27: error: use of undefined value here causes illegal behavior @@ -4253,7 +4247,7 @@ const std = @import("std"); // :129:27: error: use of undefined value here causes illegal behavior // :129:27: note: when computing vector element at index '0' // :129:27: error: use of undefined value here causes illegal behavior -// :129:27: note: when computing vector element at index '1' +// :129:27: note: when computing vector element at index '0' // :129:27: error: use of undefined value here causes illegal behavior // :129:27: note: when computing vector element at index '0' // :129:27: error: use of undefined value here causes illegal behavior @@ -4261,6 +4255,7 @@ const std = @import("std"); // :129:27: error: use of undefined value here causes illegal behavior // :129:27: note: when computing vector element at index '0' // :129:27: error: use of undefined value here causes illegal behavior +// :129:27: note: when computing vector element at index '0' // :129:27: error: use of undefined value here causes illegal behavior // :129:27: note: when computing vector element at index '0' // :129:27: error: use of undefined value here causes illegal behavior @@ -4268,7 +4263,7 @@ const std = @import("std"); // :129:27: error: use of undefined value here causes illegal behavior // :129:27: note: when computing vector element at index '0' // :129:27: error: use of undefined value here causes illegal behavior -// :129:27: note: when computing vector element at index '1' +// :129:27: note: when computing vector element at index '0' // :129:27: error: use of undefined value here causes illegal behavior // :129:27: note: when computing vector element at index '0' // :129:27: error: use of undefined value here causes illegal behavior @@ -4276,6 +4271,7 @@ const std = @import("std"); // :129:27: error: use of undefined value here causes illegal behavior // :129:27: note: when computing vector element at index '0' // :129:27: error: use of undefined value here causes illegal behavior +// :129:27: note: when computing vector element at index '0' // :129:27: error: use of undefined value here causes illegal behavior // :129:27: note: when computing vector element at index '0' // :129:27: error: use of undefined value here causes illegal behavior @@ -4283,7 +4279,7 @@ const std = @import("std"); // :129:27: error: use of undefined value here causes illegal behavior // :129:27: note: when computing vector element at index '0' // :129:27: error: use of undefined value here causes illegal behavior -// :129:27: note: when computing vector element at index '1' +// :129:27: note: when computing vector element at index '0' // :129:27: error: use of undefined value here causes illegal behavior // :129:27: note: when computing vector element at index '0' // :129:27: error: use of undefined value here causes illegal behavior @@ -4291,6 +4287,7 @@ const std = @import("std"); // :129:27: error: use of undefined value here causes illegal behavior // :129:27: note: when computing vector element at index '0' // :129:27: error: use of undefined value here causes illegal behavior +// :129:27: note: when computing vector element at index '0' // :129:27: error: use of undefined value here causes illegal behavior // :129:27: note: when computing vector element at index '0' // :129:27: error: use of undefined value here causes illegal behavior @@ -4298,7 +4295,7 @@ const std = @import("std"); // :129:27: error: use of undefined value here causes illegal behavior // :129:27: note: when computing vector element at index '0' // :129:27: error: use of undefined value here causes illegal behavior -// :129:27: note: when computing vector element at index '1' +// :129:27: note: when computing vector element at index '0' // :129:27: error: use of undefined value here causes illegal behavior // :129:27: note: when computing vector element at index '0' // :129:27: error: use of undefined value here causes illegal behavior @@ -4306,6 +4303,7 @@ const std = @import("std"); // :129:27: error: use of undefined value here causes illegal behavior // :129:27: note: when computing vector element at index '0' // :129:27: error: use of undefined value here causes illegal behavior +// :129:27: note: when computing vector element at index '0' // :129:27: error: use of undefined value here causes illegal behavior // :129:27: note: when computing vector element at index '0' // :129:27: error: use of undefined value here causes illegal behavior @@ -4313,7 +4311,7 @@ const std = @import("std"); // :129:27: error: use of undefined value here causes illegal behavior // :129:27: note: when computing vector element at index '0' // :129:27: error: use of undefined value here causes illegal behavior -// :129:27: note: when computing vector element at index '1' +// :129:27: note: when computing vector element at index '0' // :129:27: error: use of undefined value here causes illegal behavior // :129:27: note: when computing vector element at index '0' // :129:27: error: use of undefined value here causes illegal behavior @@ -4321,6 +4319,7 @@ const std = @import("std"); // :129:27: error: use of undefined value here causes illegal behavior // :129:27: note: when computing vector element at index '0' // :129:27: error: use of undefined value here causes illegal behavior +// :129:27: note: when computing vector element at index '0' // :129:27: error: use of undefined value here causes illegal behavior // :129:27: note: when computing vector element at index '0' // :129:27: error: use of undefined value here causes illegal behavior @@ -4328,7 +4327,7 @@ const std = @import("std"); // :129:27: error: use of undefined value here causes illegal behavior // :129:27: note: when computing vector element at index '0' // :129:27: error: use of undefined value here causes illegal behavior -// :129:27: note: when computing vector element at index '1' +// :129:27: note: when computing vector element at index '0' // :129:27: error: use of undefined value here causes illegal behavior // :129:27: note: when computing vector element at index '0' // :129:27: error: use of undefined value here causes illegal behavior @@ -4336,6 +4335,7 @@ const std = @import("std"); // :129:27: error: use of undefined value here causes illegal behavior // :129:27: note: when computing vector element at index '0' // :129:27: error: use of undefined value here causes illegal behavior +// :129:27: note: when computing vector element at index '0' // :129:27: error: use of undefined value here causes illegal behavior // :129:27: note: when computing vector element at index '0' // :129:27: error: use of undefined value here causes illegal behavior @@ -4343,7 +4343,7 @@ const std = @import("std"); // :129:27: error: use of undefined value here causes illegal behavior // :129:27: note: when computing vector element at index '0' // :129:27: error: use of undefined value here causes illegal behavior -// :129:27: note: when computing vector element at index '1' +// :129:27: note: when computing vector element at index '0' // :129:27: error: use of undefined value here causes illegal behavior // :129:27: note: when computing vector element at index '0' // :129:27: error: use of undefined value here causes illegal behavior @@ -4351,6 +4351,7 @@ const std = @import("std"); // :129:27: error: use of undefined value here causes illegal behavior // :129:27: note: when computing vector element at index '0' // :129:27: error: use of undefined value here causes illegal behavior +// :129:27: note: when computing vector element at index '0' // :129:27: error: use of undefined value here causes illegal behavior // :129:27: note: when computing vector element at index '0' // :129:27: error: use of undefined value here causes illegal behavior @@ -4360,126 +4361,120 @@ const std = @import("std"); // :129:27: error: use of undefined value here causes illegal behavior // :129:27: note: when computing vector element at index '1' // :129:27: error: use of undefined value here causes illegal behavior -// :129:27: note: when computing vector element at index '0' -// :129:27: error: use of undefined value here causes illegal behavior -// :129:27: note: when computing vector element at index '0' +// :129:27: note: when computing vector element at index '1' // :129:27: error: use of undefined value here causes illegal behavior -// :129:27: note: when computing vector element at index '0' +// :129:27: note: when computing vector element at index '1' // :129:27: error: use of undefined value here causes illegal behavior +// :129:27: note: when computing vector element at index '1' // :129:27: error: use of undefined value here causes illegal behavior -// :129:27: note: when computing vector element at index '0' +// :129:27: note: when computing vector element at index '1' // :129:27: error: use of undefined value here causes illegal behavior -// :129:27: note: when computing vector element at index '0' +// :129:27: note: when computing vector element at index '1' // :129:27: error: use of undefined value here causes illegal behavior -// :129:27: note: when computing vector element at index '0' +// :129:27: note: when computing vector element at index '1' // :129:27: error: use of undefined value here causes illegal behavior // :129:27: note: when computing vector element at index '1' // :129:27: error: use of undefined value here causes illegal behavior -// :129:27: note: when computing vector element at index '0' +// :129:27: note: when computing vector element at index '1' // :129:27: error: use of undefined value here causes illegal behavior -// :129:27: note: when computing vector element at index '0' +// :129:27: note: when computing vector element at index '1' // :129:27: error: use of undefined value here causes illegal behavior -// :129:27: note: when computing vector element at index '0' +// :129:27: note: when computing vector element at index '1' // :129:30: error: use of undefined value here causes illegal behavior // :129:30: error: use of undefined value here causes illegal behavior -// :129:30: note: when computing vector element at index '0' // :129:30: error: use of undefined value here causes illegal behavior -// :129:30: note: when computing vector element at index '0' // :129:30: error: use of undefined value here causes illegal behavior -// :129:30: note: when computing vector element at index '1' // :129:30: error: use of undefined value here causes illegal behavior -// :129:30: note: when computing vector element at index '0' // :129:30: error: use of undefined value here causes illegal behavior -// :129:30: note: when computing vector element at index '0' // :129:30: error: use of undefined value here causes illegal behavior // :129:30: error: use of undefined value here causes illegal behavior -// :129:30: note: when computing vector element at index '0' // :129:30: error: use of undefined value here causes illegal behavior -// :129:30: note: when computing vector element at index '0' // :129:30: error: use of undefined value here causes illegal behavior -// :129:30: note: when computing vector element at index '1' // :129:30: error: use of undefined value here causes illegal behavior -// :129:30: note: when computing vector element at index '0' // :129:30: error: use of undefined value here causes illegal behavior // :129:30: note: when computing vector element at index '0' // :129:30: error: use of undefined value here causes illegal behavior -// :129:30: error: use of undefined value here causes illegal behavior // :129:30: note: when computing vector element at index '0' // :129:30: error: use of undefined value here causes illegal behavior // :129:30: note: when computing vector element at index '0' // :129:30: error: use of undefined value here causes illegal behavior -// :129:30: note: when computing vector element at index '1' -// :129:30: error: use of undefined value here causes illegal behavior // :129:30: note: when computing vector element at index '0' // :129:30: error: use of undefined value here causes illegal behavior // :129:30: note: when computing vector element at index '0' // :129:30: error: use of undefined value here causes illegal behavior +// :129:30: note: when computing vector element at index '0' // :129:30: error: use of undefined value here causes illegal behavior // :129:30: note: when computing vector element at index '0' // :129:30: error: use of undefined value here causes illegal behavior // :129:30: note: when computing vector element at index '0' // :129:30: error: use of undefined value here causes illegal behavior -// :129:30: note: when computing vector element at index '1' +// :129:30: note: when computing vector element at index '0' // :129:30: error: use of undefined value here causes illegal behavior // :129:30: note: when computing vector element at index '0' // :129:30: error: use of undefined value here causes illegal behavior // :129:30: note: when computing vector element at index '0' // :129:30: error: use of undefined value here causes illegal behavior +// :129:30: note: when computing vector element at index '0' // :129:30: error: use of undefined value here causes illegal behavior // :129:30: note: when computing vector element at index '0' // :129:30: error: use of undefined value here causes illegal behavior // :129:30: note: when computing vector element at index '0' // :129:30: error: use of undefined value here causes illegal behavior -// :129:30: note: when computing vector element at index '1' +// :129:30: note: when computing vector element at index '0' // :129:30: error: use of undefined value here causes illegal behavior // :129:30: note: when computing vector element at index '0' // :129:30: error: use of undefined value here causes illegal behavior // :129:30: note: when computing vector element at index '0' // :129:30: error: use of undefined value here causes illegal behavior +// :129:30: note: when computing vector element at index '0' // :129:30: error: use of undefined value here causes illegal behavior // :129:30: note: when computing vector element at index '0' // :129:30: error: use of undefined value here causes illegal behavior // :129:30: note: when computing vector element at index '0' // :129:30: error: use of undefined value here causes illegal behavior -// :129:30: note: when computing vector element at index '1' +// :129:30: note: when computing vector element at index '0' // :129:30: error: use of undefined value here causes illegal behavior // :129:30: note: when computing vector element at index '0' // :129:30: error: use of undefined value here causes illegal behavior // :129:30: note: when computing vector element at index '0' // :129:30: error: use of undefined value here causes illegal behavior +// :129:30: note: when computing vector element at index '0' // :129:30: error: use of undefined value here causes illegal behavior // :129:30: note: when computing vector element at index '0' // :129:30: error: use of undefined value here causes illegal behavior // :129:30: note: when computing vector element at index '0' // :129:30: error: use of undefined value here causes illegal behavior -// :129:30: note: when computing vector element at index '1' +// :129:30: note: when computing vector element at index '0' // :129:30: error: use of undefined value here causes illegal behavior // :129:30: note: when computing vector element at index '0' // :129:30: error: use of undefined value here causes illegal behavior // :129:30: note: when computing vector element at index '0' // :129:30: error: use of undefined value here causes illegal behavior +// :129:30: note: when computing vector element at index '0' // :129:30: error: use of undefined value here causes illegal behavior // :129:30: note: when computing vector element at index '0' // :129:30: error: use of undefined value here causes illegal behavior // :129:30: note: when computing vector element at index '0' // :129:30: error: use of undefined value here causes illegal behavior -// :129:30: note: when computing vector element at index '1' +// :129:30: note: when computing vector element at index '0' // :129:30: error: use of undefined value here causes illegal behavior // :129:30: note: when computing vector element at index '0' // :129:30: error: use of undefined value here causes illegal behavior // :129:30: note: when computing vector element at index '0' // :129:30: error: use of undefined value here causes illegal behavior +// :129:30: note: when computing vector element at index '0' // :129:30: error: use of undefined value here causes illegal behavior // :129:30: note: when computing vector element at index '0' // :129:30: error: use of undefined value here causes illegal behavior // :129:30: note: when computing vector element at index '0' // :129:30: error: use of undefined value here causes illegal behavior -// :129:30: note: when computing vector element at index '1' +// :129:30: note: when computing vector element at index '0' // :129:30: error: use of undefined value here causes illegal behavior // :129:30: note: when computing vector element at index '0' // :129:30: error: use of undefined value here causes illegal behavior // :129:30: note: when computing vector element at index '0' // :129:30: error: use of undefined value here causes illegal behavior +// :129:30: note: when computing vector element at index '0' // :129:30: error: use of undefined value here causes illegal behavior // :129:30: note: when computing vector element at index '0' // :129:30: error: use of undefined value here causes illegal behavior @@ -4487,44 +4482,42 @@ const std = @import("std"); // :129:30: error: use of undefined value here causes illegal behavior // :129:30: note: when computing vector element at index '1' // :129:30: error: use of undefined value here causes illegal behavior -// :129:30: note: when computing vector element at index '0' +// :129:30: note: when computing vector element at index '1' // :129:30: error: use of undefined value here causes illegal behavior -// :129:30: note: when computing vector element at index '0' +// :129:30: note: when computing vector element at index '1' +// :129:30: error: use of undefined value here causes illegal behavior +// :129:30: note: when computing vector element at index '1' // :129:30: error: use of undefined value here causes illegal behavior +// :129:30: note: when computing vector element at index '1' // :129:30: error: use of undefined value here causes illegal behavior -// :129:30: note: when computing vector element at index '0' +// :129:30: note: when computing vector element at index '1' // :129:30: error: use of undefined value here causes illegal behavior -// :129:30: note: when computing vector element at index '0' +// :129:30: note: when computing vector element at index '1' // :129:30: error: use of undefined value here causes illegal behavior // :129:30: note: when computing vector element at index '1' // :129:30: error: use of undefined value here causes illegal behavior -// :129:30: note: when computing vector element at index '0' +// :129:30: note: when computing vector element at index '1' // :129:30: error: use of undefined value here causes illegal behavior -// :129:30: note: when computing vector element at index '0' +// :129:30: note: when computing vector element at index '1' +// :129:30: error: use of undefined value here causes illegal behavior +// :129:30: note: when computing vector element at index '1' +// :133:27: error: use of undefined value here causes illegal behavior // :133:27: error: use of undefined value here causes illegal behavior // :133:27: error: use of undefined value here causes illegal behavior -// :133:27: note: when computing vector element at index '0' // :133:27: error: use of undefined value here causes illegal behavior -// :133:27: note: when computing vector element at index '0' // :133:27: error: use of undefined value here causes illegal behavior -// :133:27: note: when computing vector element at index '0' // :133:27: error: use of undefined value here causes illegal behavior -// :133:27: note: when computing vector element at index '1' // :133:27: error: use of undefined value here causes illegal behavior -// :133:27: note: when computing vector element at index '0' // :133:27: error: use of undefined value here causes illegal behavior -// :133:27: note: when computing vector element at index '0' // :133:27: error: use of undefined value here causes illegal behavior -// :133:27: note: when computing vector element at index '0' // :133:27: error: use of undefined value here causes illegal behavior // :133:27: error: use of undefined value here causes illegal behavior -// :133:27: note: when computing vector element at index '0' // :133:27: error: use of undefined value here causes illegal behavior // :133:27: note: when computing vector element at index '0' // :133:27: error: use of undefined value here causes illegal behavior // :133:27: note: when computing vector element at index '0' // :133:27: error: use of undefined value here causes illegal behavior -// :133:27: note: when computing vector element at index '1' +// :133:27: note: when computing vector element at index '0' // :133:27: error: use of undefined value here causes illegal behavior // :133:27: note: when computing vector element at index '0' // :133:27: error: use of undefined value here causes illegal behavior @@ -4532,6 +4525,7 @@ const std = @import("std"); // :133:27: error: use of undefined value here causes illegal behavior // :133:27: note: when computing vector element at index '0' // :133:27: error: use of undefined value here causes illegal behavior +// :133:27: note: when computing vector element at index '0' // :133:27: error: use of undefined value here causes illegal behavior // :133:27: note: when computing vector element at index '0' // :133:27: error: use of undefined value here causes illegal behavior @@ -4539,7 +4533,7 @@ const std = @import("std"); // :133:27: error: use of undefined value here causes illegal behavior // :133:27: note: when computing vector element at index '0' // :133:27: error: use of undefined value here causes illegal behavior -// :133:27: note: when computing vector element at index '1' +// :133:27: note: when computing vector element at index '0' // :133:27: error: use of undefined value here causes illegal behavior // :133:27: note: when computing vector element at index '0' // :133:27: error: use of undefined value here causes illegal behavior @@ -4547,6 +4541,7 @@ const std = @import("std"); // :133:27: error: use of undefined value here causes illegal behavior // :133:27: note: when computing vector element at index '0' // :133:27: error: use of undefined value here causes illegal behavior +// :133:27: note: when computing vector element at index '0' // :133:27: error: use of undefined value here causes illegal behavior // :133:27: note: when computing vector element at index '0' // :133:27: error: use of undefined value here causes illegal behavior @@ -4554,7 +4549,7 @@ const std = @import("std"); // :133:27: error: use of undefined value here causes illegal behavior // :133:27: note: when computing vector element at index '0' // :133:27: error: use of undefined value here causes illegal behavior -// :133:27: note: when computing vector element at index '1' +// :133:27: note: when computing vector element at index '0' // :133:27: error: use of undefined value here causes illegal behavior // :133:27: note: when computing vector element at index '0' // :133:27: error: use of undefined value here causes illegal behavior @@ -4562,6 +4557,7 @@ const std = @import("std"); // :133:27: error: use of undefined value here causes illegal behavior // :133:27: note: when computing vector element at index '0' // :133:27: error: use of undefined value here causes illegal behavior +// :133:27: note: when computing vector element at index '0' // :133:27: error: use of undefined value here causes illegal behavior // :133:27: note: when computing vector element at index '0' // :133:27: error: use of undefined value here causes illegal behavior @@ -4569,7 +4565,7 @@ const std = @import("std"); // :133:27: error: use of undefined value here causes illegal behavior // :133:27: note: when computing vector element at index '0' // :133:27: error: use of undefined value here causes illegal behavior -// :133:27: note: when computing vector element at index '1' +// :133:27: note: when computing vector element at index '0' // :133:27: error: use of undefined value here causes illegal behavior // :133:27: note: when computing vector element at index '0' // :133:27: error: use of undefined value here causes illegal behavior @@ -4577,6 +4573,7 @@ const std = @import("std"); // :133:27: error: use of undefined value here causes illegal behavior // :133:27: note: when computing vector element at index '0' // :133:27: error: use of undefined value here causes illegal behavior +// :133:27: note: when computing vector element at index '0' // :133:27: error: use of undefined value here causes illegal behavior // :133:27: note: when computing vector element at index '0' // :133:27: error: use of undefined value here causes illegal behavior @@ -4584,7 +4581,7 @@ const std = @import("std"); // :133:27: error: use of undefined value here causes illegal behavior // :133:27: note: when computing vector element at index '0' // :133:27: error: use of undefined value here causes illegal behavior -// :133:27: note: when computing vector element at index '1' +// :133:27: note: when computing vector element at index '0' // :133:27: error: use of undefined value here causes illegal behavior // :133:27: note: when computing vector element at index '0' // :133:27: error: use of undefined value here causes illegal behavior @@ -4592,6 +4589,7 @@ const std = @import("std"); // :133:27: error: use of undefined value here causes illegal behavior // :133:27: note: when computing vector element at index '0' // :133:27: error: use of undefined value here causes illegal behavior +// :133:27: note: when computing vector element at index '0' // :133:27: error: use of undefined value here causes illegal behavior // :133:27: note: when computing vector element at index '0' // :133:27: error: use of undefined value here causes illegal behavior @@ -4599,7 +4597,7 @@ const std = @import("std"); // :133:27: error: use of undefined value here causes illegal behavior // :133:27: note: when computing vector element at index '0' // :133:27: error: use of undefined value here causes illegal behavior -// :133:27: note: when computing vector element at index '1' +// :133:27: note: when computing vector element at index '0' // :133:27: error: use of undefined value here causes illegal behavior // :133:27: note: when computing vector element at index '0' // :133:27: error: use of undefined value here causes illegal behavior @@ -4607,6 +4605,7 @@ const std = @import("std"); // :133:27: error: use of undefined value here causes illegal behavior // :133:27: note: when computing vector element at index '0' // :133:27: error: use of undefined value here causes illegal behavior +// :133:27: note: when computing vector element at index '0' // :133:27: error: use of undefined value here causes illegal behavior // :133:27: note: when computing vector element at index '0' // :133:27: error: use of undefined value here causes illegal behavior @@ -4614,7 +4613,7 @@ const std = @import("std"); // :133:27: error: use of undefined value here causes illegal behavior // :133:27: note: when computing vector element at index '0' // :133:27: error: use of undefined value here causes illegal behavior -// :133:27: note: when computing vector element at index '1' +// :133:27: note: when computing vector element at index '0' // :133:27: error: use of undefined value here causes illegal behavior // :133:27: note: when computing vector element at index '0' // :133:27: error: use of undefined value here causes illegal behavior @@ -4622,6 +4621,7 @@ const std = @import("std"); // :133:27: error: use of undefined value here causes illegal behavior // :133:27: note: when computing vector element at index '0' // :133:27: error: use of undefined value here causes illegal behavior +// :133:27: note: when computing vector element at index '0' // :133:27: error: use of undefined value here causes illegal behavior // :133:27: note: when computing vector element at index '0' // :133:27: error: use of undefined value here causes illegal behavior @@ -4629,7 +4629,7 @@ const std = @import("std"); // :133:27: error: use of undefined value here causes illegal behavior // :133:27: note: when computing vector element at index '0' // :133:27: error: use of undefined value here causes illegal behavior -// :133:27: note: when computing vector element at index '1' +// :133:27: note: when computing vector element at index '0' // :133:27: error: use of undefined value here causes illegal behavior // :133:27: note: when computing vector element at index '0' // :133:27: error: use of undefined value here causes illegal behavior @@ -4637,6 +4637,7 @@ const std = @import("std"); // :133:27: error: use of undefined value here causes illegal behavior // :133:27: note: when computing vector element at index '0' // :133:27: error: use of undefined value here causes illegal behavior +// :133:27: note: when computing vector element at index '0' // :133:27: error: use of undefined value here causes illegal behavior // :133:27: note: when computing vector element at index '0' // :133:27: error: use of undefined value here causes illegal behavior @@ -4646,126 +4647,120 @@ const std = @import("std"); // :133:27: error: use of undefined value here causes illegal behavior // :133:27: note: when computing vector element at index '1' // :133:27: error: use of undefined value here causes illegal behavior -// :133:27: note: when computing vector element at index '0' -// :133:27: error: use of undefined value here causes illegal behavior -// :133:27: note: when computing vector element at index '0' +// :133:27: note: when computing vector element at index '1' // :133:27: error: use of undefined value here causes illegal behavior -// :133:27: note: when computing vector element at index '0' +// :133:27: note: when computing vector element at index '1' // :133:27: error: use of undefined value here causes illegal behavior +// :133:27: note: when computing vector element at index '1' // :133:27: error: use of undefined value here causes illegal behavior -// :133:27: note: when computing vector element at index '0' +// :133:27: note: when computing vector element at index '1' // :133:27: error: use of undefined value here causes illegal behavior -// :133:27: note: when computing vector element at index '0' +// :133:27: note: when computing vector element at index '1' // :133:27: error: use of undefined value here causes illegal behavior -// :133:27: note: when computing vector element at index '0' +// :133:27: note: when computing vector element at index '1' // :133:27: error: use of undefined value here causes illegal behavior // :133:27: note: when computing vector element at index '1' // :133:27: error: use of undefined value here causes illegal behavior -// :133:27: note: when computing vector element at index '0' +// :133:27: note: when computing vector element at index '1' // :133:27: error: use of undefined value here causes illegal behavior -// :133:27: note: when computing vector element at index '0' +// :133:27: note: when computing vector element at index '1' // :133:27: error: use of undefined value here causes illegal behavior -// :133:27: note: when computing vector element at index '0' +// :133:27: note: when computing vector element at index '1' // :133:30: error: use of undefined value here causes illegal behavior // :133:30: error: use of undefined value here causes illegal behavior -// :133:30: note: when computing vector element at index '0' // :133:30: error: use of undefined value here causes illegal behavior -// :133:30: note: when computing vector element at index '0' // :133:30: error: use of undefined value here causes illegal behavior -// :133:30: note: when computing vector element at index '1' // :133:30: error: use of undefined value here causes illegal behavior -// :133:30: note: when computing vector element at index '0' // :133:30: error: use of undefined value here causes illegal behavior -// :133:30: note: when computing vector element at index '0' // :133:30: error: use of undefined value here causes illegal behavior // :133:30: error: use of undefined value here causes illegal behavior -// :133:30: note: when computing vector element at index '0' // :133:30: error: use of undefined value here causes illegal behavior -// :133:30: note: when computing vector element at index '0' // :133:30: error: use of undefined value here causes illegal behavior -// :133:30: note: when computing vector element at index '1' // :133:30: error: use of undefined value here causes illegal behavior -// :133:30: note: when computing vector element at index '0' // :133:30: error: use of undefined value here causes illegal behavior // :133:30: note: when computing vector element at index '0' // :133:30: error: use of undefined value here causes illegal behavior -// :133:30: error: use of undefined value here causes illegal behavior // :133:30: note: when computing vector element at index '0' // :133:30: error: use of undefined value here causes illegal behavior // :133:30: note: when computing vector element at index '0' // :133:30: error: use of undefined value here causes illegal behavior -// :133:30: note: when computing vector element at index '1' -// :133:30: error: use of undefined value here causes illegal behavior // :133:30: note: when computing vector element at index '0' // :133:30: error: use of undefined value here causes illegal behavior // :133:30: note: when computing vector element at index '0' // :133:30: error: use of undefined value here causes illegal behavior +// :133:30: note: when computing vector element at index '0' // :133:30: error: use of undefined value here causes illegal behavior // :133:30: note: when computing vector element at index '0' // :133:30: error: use of undefined value here causes illegal behavior // :133:30: note: when computing vector element at index '0' // :133:30: error: use of undefined value here causes illegal behavior -// :133:30: note: when computing vector element at index '1' +// :133:30: note: when computing vector element at index '0' // :133:30: error: use of undefined value here causes illegal behavior // :133:30: note: when computing vector element at index '0' // :133:30: error: use of undefined value here causes illegal behavior // :133:30: note: when computing vector element at index '0' // :133:30: error: use of undefined value here causes illegal behavior +// :133:30: note: when computing vector element at index '0' // :133:30: error: use of undefined value here causes illegal behavior // :133:30: note: when computing vector element at index '0' // :133:30: error: use of undefined value here causes illegal behavior // :133:30: note: when computing vector element at index '0' // :133:30: error: use of undefined value here causes illegal behavior -// :133:30: note: when computing vector element at index '1' +// :133:30: note: when computing vector element at index '0' // :133:30: error: use of undefined value here causes illegal behavior // :133:30: note: when computing vector element at index '0' // :133:30: error: use of undefined value here causes illegal behavior // :133:30: note: when computing vector element at index '0' // :133:30: error: use of undefined value here causes illegal behavior +// :133:30: note: when computing vector element at index '0' // :133:30: error: use of undefined value here causes illegal behavior // :133:30: note: when computing vector element at index '0' // :133:30: error: use of undefined value here causes illegal behavior // :133:30: note: when computing vector element at index '0' // :133:30: error: use of undefined value here causes illegal behavior -// :133:30: note: when computing vector element at index '1' +// :133:30: note: when computing vector element at index '0' // :133:30: error: use of undefined value here causes illegal behavior // :133:30: note: when computing vector element at index '0' // :133:30: error: use of undefined value here causes illegal behavior // :133:30: note: when computing vector element at index '0' // :133:30: error: use of undefined value here causes illegal behavior +// :133:30: note: when computing vector element at index '0' // :133:30: error: use of undefined value here causes illegal behavior // :133:30: note: when computing vector element at index '0' // :133:30: error: use of undefined value here causes illegal behavior // :133:30: note: when computing vector element at index '0' // :133:30: error: use of undefined value here causes illegal behavior -// :133:30: note: when computing vector element at index '1' +// :133:30: note: when computing vector element at index '0' // :133:30: error: use of undefined value here causes illegal behavior // :133:30: note: when computing vector element at index '0' // :133:30: error: use of undefined value here causes illegal behavior // :133:30: note: when computing vector element at index '0' // :133:30: error: use of undefined value here causes illegal behavior +// :133:30: note: when computing vector element at index '0' // :133:30: error: use of undefined value here causes illegal behavior // :133:30: note: when computing vector element at index '0' // :133:30: error: use of undefined value here causes illegal behavior // :133:30: note: when computing vector element at index '0' // :133:30: error: use of undefined value here causes illegal behavior -// :133:30: note: when computing vector element at index '1' +// :133:30: note: when computing vector element at index '0' // :133:30: error: use of undefined value here causes illegal behavior // :133:30: note: when computing vector element at index '0' // :133:30: error: use of undefined value here causes illegal behavior // :133:30: note: when computing vector element at index '0' // :133:30: error: use of undefined value here causes illegal behavior +// :133:30: note: when computing vector element at index '0' // :133:30: error: use of undefined value here causes illegal behavior // :133:30: note: when computing vector element at index '0' // :133:30: error: use of undefined value here causes illegal behavior // :133:30: note: when computing vector element at index '0' // :133:30: error: use of undefined value here causes illegal behavior -// :133:30: note: when computing vector element at index '1' +// :133:30: note: when computing vector element at index '0' // :133:30: error: use of undefined value here causes illegal behavior // :133:30: note: when computing vector element at index '0' // :133:30: error: use of undefined value here causes illegal behavior // :133:30: note: when computing vector element at index '0' // :133:30: error: use of undefined value here causes illegal behavior +// :133:30: note: when computing vector element at index '0' // :133:30: error: use of undefined value here causes illegal behavior // :133:30: note: when computing vector element at index '0' // :133:30: error: use of undefined value here causes illegal behavior @@ -4773,44 +4768,42 @@ const std = @import("std"); // :133:30: error: use of undefined value here causes illegal behavior // :133:30: note: when computing vector element at index '1' // :133:30: error: use of undefined value here causes illegal behavior -// :133:30: note: when computing vector element at index '0' +// :133:30: note: when computing vector element at index '1' // :133:30: error: use of undefined value here causes illegal behavior -// :133:30: note: when computing vector element at index '0' +// :133:30: note: when computing vector element at index '1' // :133:30: error: use of undefined value here causes illegal behavior +// :133:30: note: when computing vector element at index '1' // :133:30: error: use of undefined value here causes illegal behavior -// :133:30: note: when computing vector element at index '0' +// :133:30: note: when computing vector element at index '1' // :133:30: error: use of undefined value here causes illegal behavior -// :133:30: note: when computing vector element at index '0' +// :133:30: note: when computing vector element at index '1' // :133:30: error: use of undefined value here causes illegal behavior // :133:30: note: when computing vector element at index '1' // :133:30: error: use of undefined value here causes illegal behavior -// :133:30: note: when computing vector element at index '0' +// :133:30: note: when computing vector element at index '1' // :133:30: error: use of undefined value here causes illegal behavior -// :133:30: note: when computing vector element at index '0' +// :133:30: note: when computing vector element at index '1' +// :133:30: error: use of undefined value here causes illegal behavior +// :133:30: note: when computing vector element at index '1' +// :133:30: error: use of undefined value here causes illegal behavior +// :133:30: note: when computing vector element at index '1' +// :137:17: error: use of undefined value here causes illegal behavior // :137:17: error: use of undefined value here causes illegal behavior // :137:17: error: use of undefined value here causes illegal behavior -// :137:17: note: when computing vector element at index '0' // :137:17: error: use of undefined value here causes illegal behavior -// :137:17: note: when computing vector element at index '0' // :137:17: error: use of undefined value here causes illegal behavior -// :137:17: note: when computing vector element at index '0' // :137:17: error: use of undefined value here causes illegal behavior -// :137:17: note: when computing vector element at index '1' // :137:17: error: use of undefined value here causes illegal behavior -// :137:17: note: when computing vector element at index '0' // :137:17: error: use of undefined value here causes illegal behavior -// :137:17: note: when computing vector element at index '0' // :137:17: error: use of undefined value here causes illegal behavior -// :137:17: note: when computing vector element at index '0' // :137:17: error: use of undefined value here causes illegal behavior // :137:17: error: use of undefined value here causes illegal behavior -// :137:17: note: when computing vector element at index '0' // :137:17: error: use of undefined value here causes illegal behavior // :137:17: note: when computing vector element at index '0' // :137:17: error: use of undefined value here causes illegal behavior // :137:17: note: when computing vector element at index '0' // :137:17: error: use of undefined value here causes illegal behavior -// :137:17: note: when computing vector element at index '1' +// :137:17: note: when computing vector element at index '0' // :137:17: error: use of undefined value here causes illegal behavior // :137:17: note: when computing vector element at index '0' // :137:17: error: use of undefined value here causes illegal behavior @@ -4818,6 +4811,7 @@ const std = @import("std"); // :137:17: error: use of undefined value here causes illegal behavior // :137:17: note: when computing vector element at index '0' // :137:17: error: use of undefined value here causes illegal behavior +// :137:17: note: when computing vector element at index '0' // :137:17: error: use of undefined value here causes illegal behavior // :137:17: note: when computing vector element at index '0' // :137:17: error: use of undefined value here causes illegal behavior @@ -4825,7 +4819,7 @@ const std = @import("std"); // :137:17: error: use of undefined value here causes illegal behavior // :137:17: note: when computing vector element at index '0' // :137:17: error: use of undefined value here causes illegal behavior -// :137:17: note: when computing vector element at index '1' +// :137:17: note: when computing vector element at index '0' // :137:17: error: use of undefined value here causes illegal behavior // :137:17: note: when computing vector element at index '0' // :137:17: error: use of undefined value here causes illegal behavior @@ -4833,6 +4827,7 @@ const std = @import("std"); // :137:17: error: use of undefined value here causes illegal behavior // :137:17: note: when computing vector element at index '0' // :137:17: error: use of undefined value here causes illegal behavior +// :137:17: note: when computing vector element at index '0' // :137:17: error: use of undefined value here causes illegal behavior // :137:17: note: when computing vector element at index '0' // :137:17: error: use of undefined value here causes illegal behavior @@ -4840,7 +4835,7 @@ const std = @import("std"); // :137:17: error: use of undefined value here causes illegal behavior // :137:17: note: when computing vector element at index '0' // :137:17: error: use of undefined value here causes illegal behavior -// :137:17: note: when computing vector element at index '1' +// :137:17: note: when computing vector element at index '0' // :137:17: error: use of undefined value here causes illegal behavior // :137:17: note: when computing vector element at index '0' // :137:17: error: use of undefined value here causes illegal behavior @@ -4848,6 +4843,7 @@ const std = @import("std"); // :137:17: error: use of undefined value here causes illegal behavior // :137:17: note: when computing vector element at index '0' // :137:17: error: use of undefined value here causes illegal behavior +// :137:17: note: when computing vector element at index '0' // :137:17: error: use of undefined value here causes illegal behavior // :137:17: note: when computing vector element at index '0' // :137:17: error: use of undefined value here causes illegal behavior @@ -4855,7 +4851,7 @@ const std = @import("std"); // :137:17: error: use of undefined value here causes illegal behavior // :137:17: note: when computing vector element at index '0' // :137:17: error: use of undefined value here causes illegal behavior -// :137:17: note: when computing vector element at index '1' +// :137:17: note: when computing vector element at index '0' // :137:17: error: use of undefined value here causes illegal behavior // :137:17: note: when computing vector element at index '0' // :137:17: error: use of undefined value here causes illegal behavior @@ -4863,6 +4859,7 @@ const std = @import("std"); // :137:17: error: use of undefined value here causes illegal behavior // :137:17: note: when computing vector element at index '0' // :137:17: error: use of undefined value here causes illegal behavior +// :137:17: note: when computing vector element at index '0' // :137:17: error: use of undefined value here causes illegal behavior // :137:17: note: when computing vector element at index '0' // :137:17: error: use of undefined value here causes illegal behavior @@ -4870,7 +4867,7 @@ const std = @import("std"); // :137:17: error: use of undefined value here causes illegal behavior // :137:17: note: when computing vector element at index '0' // :137:17: error: use of undefined value here causes illegal behavior -// :137:17: note: when computing vector element at index '1' +// :137:17: note: when computing vector element at index '0' // :137:17: error: use of undefined value here causes illegal behavior // :137:17: note: when computing vector element at index '0' // :137:17: error: use of undefined value here causes illegal behavior @@ -4878,6 +4875,7 @@ const std = @import("std"); // :137:17: error: use of undefined value here causes illegal behavior // :137:17: note: when computing vector element at index '0' // :137:17: error: use of undefined value here causes illegal behavior +// :137:17: note: when computing vector element at index '0' // :137:17: error: use of undefined value here causes illegal behavior // :137:17: note: when computing vector element at index '0' // :137:17: error: use of undefined value here causes illegal behavior @@ -4885,7 +4883,7 @@ const std = @import("std"); // :137:17: error: use of undefined value here causes illegal behavior // :137:17: note: when computing vector element at index '0' // :137:17: error: use of undefined value here causes illegal behavior -// :137:17: note: when computing vector element at index '1' +// :137:17: note: when computing vector element at index '0' // :137:17: error: use of undefined value here causes illegal behavior // :137:17: note: when computing vector element at index '0' // :137:17: error: use of undefined value here causes illegal behavior @@ -4893,6 +4891,7 @@ const std = @import("std"); // :137:17: error: use of undefined value here causes illegal behavior // :137:17: note: when computing vector element at index '0' // :137:17: error: use of undefined value here causes illegal behavior +// :137:17: note: when computing vector element at index '0' // :137:17: error: use of undefined value here causes illegal behavior // :137:17: note: when computing vector element at index '0' // :137:17: error: use of undefined value here causes illegal behavior @@ -4900,7 +4899,7 @@ const std = @import("std"); // :137:17: error: use of undefined value here causes illegal behavior // :137:17: note: when computing vector element at index '0' // :137:17: error: use of undefined value here causes illegal behavior -// :137:17: note: when computing vector element at index '1' +// :137:17: note: when computing vector element at index '0' // :137:17: error: use of undefined value here causes illegal behavior // :137:17: note: when computing vector element at index '0' // :137:17: error: use of undefined value here causes illegal behavior @@ -4908,6 +4907,7 @@ const std = @import("std"); // :137:17: error: use of undefined value here causes illegal behavior // :137:17: note: when computing vector element at index '0' // :137:17: error: use of undefined value here causes illegal behavior +// :137:17: note: when computing vector element at index '0' // :137:17: error: use of undefined value here causes illegal behavior // :137:17: note: when computing vector element at index '0' // :137:17: error: use of undefined value here causes illegal behavior @@ -4915,7 +4915,7 @@ const std = @import("std"); // :137:17: error: use of undefined value here causes illegal behavior // :137:17: note: when computing vector element at index '0' // :137:17: error: use of undefined value here causes illegal behavior -// :137:17: note: when computing vector element at index '1' +// :137:17: note: when computing vector element at index '0' // :137:17: error: use of undefined value here causes illegal behavior // :137:17: note: when computing vector element at index '0' // :137:17: error: use of undefined value here causes illegal behavior @@ -4923,6 +4923,7 @@ const std = @import("std"); // :137:17: error: use of undefined value here causes illegal behavior // :137:17: note: when computing vector element at index '0' // :137:17: error: use of undefined value here causes illegal behavior +// :137:17: note: when computing vector element at index '0' // :137:17: error: use of undefined value here causes illegal behavior // :137:17: note: when computing vector element at index '0' // :137:17: error: use of undefined value here causes illegal behavior @@ -4932,126 +4933,120 @@ const std = @import("std"); // :137:17: error: use of undefined value here causes illegal behavior // :137:17: note: when computing vector element at index '1' // :137:17: error: use of undefined value here causes illegal behavior -// :137:17: note: when computing vector element at index '0' -// :137:17: error: use of undefined value here causes illegal behavior -// :137:17: note: when computing vector element at index '0' +// :137:17: note: when computing vector element at index '1' // :137:17: error: use of undefined value here causes illegal behavior -// :137:17: note: when computing vector element at index '0' +// :137:17: note: when computing vector element at index '1' // :137:17: error: use of undefined value here causes illegal behavior +// :137:17: note: when computing vector element at index '1' // :137:17: error: use of undefined value here causes illegal behavior -// :137:17: note: when computing vector element at index '0' +// :137:17: note: when computing vector element at index '1' // :137:17: error: use of undefined value here causes illegal behavior -// :137:17: note: when computing vector element at index '0' +// :137:17: note: when computing vector element at index '1' // :137:17: error: use of undefined value here causes illegal behavior -// :137:17: note: when computing vector element at index '0' +// :137:17: note: when computing vector element at index '1' // :137:17: error: use of undefined value here causes illegal behavior // :137:17: note: when computing vector element at index '1' // :137:17: error: use of undefined value here causes illegal behavior -// :137:17: note: when computing vector element at index '0' +// :137:17: note: when computing vector element at index '1' // :137:17: error: use of undefined value here causes illegal behavior -// :137:17: note: when computing vector element at index '0' +// :137:17: note: when computing vector element at index '1' // :137:17: error: use of undefined value here causes illegal behavior -// :137:17: note: when computing vector element at index '0' +// :137:17: note: when computing vector element at index '1' // :137:21: error: use of undefined value here causes illegal behavior // :137:21: error: use of undefined value here causes illegal behavior -// :137:21: note: when computing vector element at index '0' // :137:21: error: use of undefined value here causes illegal behavior -// :137:21: note: when computing vector element at index '0' // :137:21: error: use of undefined value here causes illegal behavior -// :137:21: note: when computing vector element at index '1' // :137:21: error: use of undefined value here causes illegal behavior -// :137:21: note: when computing vector element at index '0' // :137:21: error: use of undefined value here causes illegal behavior -// :137:21: note: when computing vector element at index '0' // :137:21: error: use of undefined value here causes illegal behavior // :137:21: error: use of undefined value here causes illegal behavior -// :137:21: note: when computing vector element at index '0' // :137:21: error: use of undefined value here causes illegal behavior -// :137:21: note: when computing vector element at index '0' // :137:21: error: use of undefined value here causes illegal behavior -// :137:21: note: when computing vector element at index '1' // :137:21: error: use of undefined value here causes illegal behavior -// :137:21: note: when computing vector element at index '0' // :137:21: error: use of undefined value here causes illegal behavior // :137:21: note: when computing vector element at index '0' // :137:21: error: use of undefined value here causes illegal behavior -// :137:21: error: use of undefined value here causes illegal behavior // :137:21: note: when computing vector element at index '0' // :137:21: error: use of undefined value here causes illegal behavior // :137:21: note: when computing vector element at index '0' // :137:21: error: use of undefined value here causes illegal behavior -// :137:21: note: when computing vector element at index '1' -// :137:21: error: use of undefined value here causes illegal behavior // :137:21: note: when computing vector element at index '0' // :137:21: error: use of undefined value here causes illegal behavior // :137:21: note: when computing vector element at index '0' // :137:21: error: use of undefined value here causes illegal behavior +// :137:21: note: when computing vector element at index '0' // :137:21: error: use of undefined value here causes illegal behavior // :137:21: note: when computing vector element at index '0' // :137:21: error: use of undefined value here causes illegal behavior // :137:21: note: when computing vector element at index '0' // :137:21: error: use of undefined value here causes illegal behavior -// :137:21: note: when computing vector element at index '1' +// :137:21: note: when computing vector element at index '0' // :137:21: error: use of undefined value here causes illegal behavior // :137:21: note: when computing vector element at index '0' // :137:21: error: use of undefined value here causes illegal behavior // :137:21: note: when computing vector element at index '0' // :137:21: error: use of undefined value here causes illegal behavior +// :137:21: note: when computing vector element at index '0' // :137:21: error: use of undefined value here causes illegal behavior // :137:21: note: when computing vector element at index '0' // :137:21: error: use of undefined value here causes illegal behavior // :137:21: note: when computing vector element at index '0' // :137:21: error: use of undefined value here causes illegal behavior -// :137:21: note: when computing vector element at index '1' +// :137:21: note: when computing vector element at index '0' // :137:21: error: use of undefined value here causes illegal behavior // :137:21: note: when computing vector element at index '0' // :137:21: error: use of undefined value here causes illegal behavior // :137:21: note: when computing vector element at index '0' // :137:21: error: use of undefined value here causes illegal behavior +// :137:21: note: when computing vector element at index '0' // :137:21: error: use of undefined value here causes illegal behavior // :137:21: note: when computing vector element at index '0' // :137:21: error: use of undefined value here causes illegal behavior // :137:21: note: when computing vector element at index '0' // :137:21: error: use of undefined value here causes illegal behavior -// :137:21: note: when computing vector element at index '1' +// :137:21: note: when computing vector element at index '0' // :137:21: error: use of undefined value here causes illegal behavior // :137:21: note: when computing vector element at index '0' // :137:21: error: use of undefined value here causes illegal behavior // :137:21: note: when computing vector element at index '0' // :137:21: error: use of undefined value here causes illegal behavior +// :137:21: note: when computing vector element at index '0' // :137:21: error: use of undefined value here causes illegal behavior // :137:21: note: when computing vector element at index '0' // :137:21: error: use of undefined value here causes illegal behavior // :137:21: note: when computing vector element at index '0' // :137:21: error: use of undefined value here causes illegal behavior -// :137:21: note: when computing vector element at index '1' +// :137:21: note: when computing vector element at index '0' // :137:21: error: use of undefined value here causes illegal behavior // :137:21: note: when computing vector element at index '0' // :137:21: error: use of undefined value here causes illegal behavior // :137:21: note: when computing vector element at index '0' // :137:21: error: use of undefined value here causes illegal behavior +// :137:21: note: when computing vector element at index '0' // :137:21: error: use of undefined value here causes illegal behavior // :137:21: note: when computing vector element at index '0' // :137:21: error: use of undefined value here causes illegal behavior // :137:21: note: when computing vector element at index '0' // :137:21: error: use of undefined value here causes illegal behavior -// :137:21: note: when computing vector element at index '1' +// :137:21: note: when computing vector element at index '0' // :137:21: error: use of undefined value here causes illegal behavior // :137:21: note: when computing vector element at index '0' // :137:21: error: use of undefined value here causes illegal behavior // :137:21: note: when computing vector element at index '0' // :137:21: error: use of undefined value here causes illegal behavior +// :137:21: note: when computing vector element at index '0' // :137:21: error: use of undefined value here causes illegal behavior // :137:21: note: when computing vector element at index '0' // :137:21: error: use of undefined value here causes illegal behavior // :137:21: note: when computing vector element at index '0' // :137:21: error: use of undefined value here causes illegal behavior -// :137:21: note: when computing vector element at index '1' +// :137:21: note: when computing vector element at index '0' // :137:21: error: use of undefined value here causes illegal behavior // :137:21: note: when computing vector element at index '0' // :137:21: error: use of undefined value here causes illegal behavior // :137:21: note: when computing vector element at index '0' // :137:21: error: use of undefined value here causes illegal behavior +// :137:21: note: when computing vector element at index '0' // :137:21: error: use of undefined value here causes illegal behavior // :137:21: note: when computing vector element at index '0' // :137:21: error: use of undefined value here causes illegal behavior @@ -5059,44 +5054,42 @@ const std = @import("std"); // :137:21: error: use of undefined value here causes illegal behavior // :137:21: note: when computing vector element at index '1' // :137:21: error: use of undefined value here causes illegal behavior -// :137:21: note: when computing vector element at index '0' +// :137:21: note: when computing vector element at index '1' // :137:21: error: use of undefined value here causes illegal behavior -// :137:21: note: when computing vector element at index '0' +// :137:21: note: when computing vector element at index '1' // :137:21: error: use of undefined value here causes illegal behavior +// :137:21: note: when computing vector element at index '1' // :137:21: error: use of undefined value here causes illegal behavior -// :137:21: note: when computing vector element at index '0' +// :137:21: note: when computing vector element at index '1' // :137:21: error: use of undefined value here causes illegal behavior -// :137:21: note: when computing vector element at index '0' +// :137:21: note: when computing vector element at index '1' // :137:21: error: use of undefined value here causes illegal behavior // :137:21: note: when computing vector element at index '1' // :137:21: error: use of undefined value here causes illegal behavior -// :137:21: note: when computing vector element at index '0' +// :137:21: note: when computing vector element at index '1' // :137:21: error: use of undefined value here causes illegal behavior -// :137:21: note: when computing vector element at index '0' +// :137:21: note: when computing vector element at index '1' +// :137:21: error: use of undefined value here causes illegal behavior +// :137:21: note: when computing vector element at index '1' +// :137:21: error: use of undefined value here causes illegal behavior +// :137:21: note: when computing vector element at index '1' +// :141:22: error: use of undefined value here causes illegal behavior // :141:22: error: use of undefined value here causes illegal behavior // :141:22: error: use of undefined value here causes illegal behavior -// :141:22: note: when computing vector element at index '0' // :141:22: error: use of undefined value here causes illegal behavior -// :141:22: note: when computing vector element at index '0' // :141:22: error: use of undefined value here causes illegal behavior -// :141:22: note: when computing vector element at index '0' // :141:22: error: use of undefined value here causes illegal behavior -// :141:22: note: when computing vector element at index '1' // :141:22: error: use of undefined value here causes illegal behavior -// :141:22: note: when computing vector element at index '0' // :141:22: error: use of undefined value here causes illegal behavior -// :141:22: note: when computing vector element at index '0' // :141:22: error: use of undefined value here causes illegal behavior -// :141:22: note: when computing vector element at index '0' // :141:22: error: use of undefined value here causes illegal behavior // :141:22: error: use of undefined value here causes illegal behavior -// :141:22: note: when computing vector element at index '0' // :141:22: error: use of undefined value here causes illegal behavior // :141:22: note: when computing vector element at index '0' // :141:22: error: use of undefined value here causes illegal behavior // :141:22: note: when computing vector element at index '0' // :141:22: error: use of undefined value here causes illegal behavior -// :141:22: note: when computing vector element at index '1' +// :141:22: note: when computing vector element at index '0' // :141:22: error: use of undefined value here causes illegal behavior // :141:22: note: when computing vector element at index '0' // :141:22: error: use of undefined value here causes illegal behavior @@ -5104,6 +5097,7 @@ const std = @import("std"); // :141:22: error: use of undefined value here causes illegal behavior // :141:22: note: when computing vector element at index '0' // :141:22: error: use of undefined value here causes illegal behavior +// :141:22: note: when computing vector element at index '0' // :141:22: error: use of undefined value here causes illegal behavior // :141:22: note: when computing vector element at index '0' // :141:22: error: use of undefined value here causes illegal behavior @@ -5111,7 +5105,7 @@ const std = @import("std"); // :141:22: error: use of undefined value here causes illegal behavior // :141:22: note: when computing vector element at index '0' // :141:22: error: use of undefined value here causes illegal behavior -// :141:22: note: when computing vector element at index '1' +// :141:22: note: when computing vector element at index '0' // :141:22: error: use of undefined value here causes illegal behavior // :141:22: note: when computing vector element at index '0' // :141:22: error: use of undefined value here causes illegal behavior @@ -5119,6 +5113,7 @@ const std = @import("std"); // :141:22: error: use of undefined value here causes illegal behavior // :141:22: note: when computing vector element at index '0' // :141:22: error: use of undefined value here causes illegal behavior +// :141:22: note: when computing vector element at index '0' // :141:22: error: use of undefined value here causes illegal behavior // :141:22: note: when computing vector element at index '0' // :141:22: error: use of undefined value here causes illegal behavior @@ -5126,7 +5121,7 @@ const std = @import("std"); // :141:22: error: use of undefined value here causes illegal behavior // :141:22: note: when computing vector element at index '0' // :141:22: error: use of undefined value here causes illegal behavior -// :141:22: note: when computing vector element at index '1' +// :141:22: note: when computing vector element at index '0' // :141:22: error: use of undefined value here causes illegal behavior // :141:22: note: when computing vector element at index '0' // :141:22: error: use of undefined value here causes illegal behavior @@ -5134,6 +5129,7 @@ const std = @import("std"); // :141:22: error: use of undefined value here causes illegal behavior // :141:22: note: when computing vector element at index '0' // :141:22: error: use of undefined value here causes illegal behavior +// :141:22: note: when computing vector element at index '0' // :141:22: error: use of undefined value here causes illegal behavior // :141:22: note: when computing vector element at index '0' // :141:22: error: use of undefined value here causes illegal behavior @@ -5141,7 +5137,7 @@ const std = @import("std"); // :141:22: error: use of undefined value here causes illegal behavior // :141:22: note: when computing vector element at index '0' // :141:22: error: use of undefined value here causes illegal behavior -// :141:22: note: when computing vector element at index '1' +// :141:22: note: when computing vector element at index '0' // :141:22: error: use of undefined value here causes illegal behavior // :141:22: note: when computing vector element at index '0' // :141:22: error: use of undefined value here causes illegal behavior @@ -5149,6 +5145,7 @@ const std = @import("std"); // :141:22: error: use of undefined value here causes illegal behavior // :141:22: note: when computing vector element at index '0' // :141:22: error: use of undefined value here causes illegal behavior +// :141:22: note: when computing vector element at index '0' // :141:22: error: use of undefined value here causes illegal behavior // :141:22: note: when computing vector element at index '0' // :141:22: error: use of undefined value here causes illegal behavior @@ -5156,7 +5153,7 @@ const std = @import("std"); // :141:22: error: use of undefined value here causes illegal behavior // :141:22: note: when computing vector element at index '0' // :141:22: error: use of undefined value here causes illegal behavior -// :141:22: note: when computing vector element at index '1' +// :141:22: note: when computing vector element at index '0' // :141:22: error: use of undefined value here causes illegal behavior // :141:22: note: when computing vector element at index '0' // :141:22: error: use of undefined value here causes illegal behavior @@ -5164,6 +5161,7 @@ const std = @import("std"); // :141:22: error: use of undefined value here causes illegal behavior // :141:22: note: when computing vector element at index '0' // :141:22: error: use of undefined value here causes illegal behavior +// :141:22: note: when computing vector element at index '0' // :141:22: error: use of undefined value here causes illegal behavior // :141:22: note: when computing vector element at index '0' // :141:22: error: use of undefined value here causes illegal behavior @@ -5171,7 +5169,7 @@ const std = @import("std"); // :141:22: error: use of undefined value here causes illegal behavior // :141:22: note: when computing vector element at index '0' // :141:22: error: use of undefined value here causes illegal behavior -// :141:22: note: when computing vector element at index '1' +// :141:22: note: when computing vector element at index '0' // :141:22: error: use of undefined value here causes illegal behavior // :141:22: note: when computing vector element at index '0' // :141:22: error: use of undefined value here causes illegal behavior @@ -5179,6 +5177,7 @@ const std = @import("std"); // :141:22: error: use of undefined value here causes illegal behavior // :141:22: note: when computing vector element at index '0' // :141:22: error: use of undefined value here causes illegal behavior +// :141:22: note: when computing vector element at index '0' // :141:22: error: use of undefined value here causes illegal behavior // :141:22: note: when computing vector element at index '0' // :141:22: error: use of undefined value here causes illegal behavior @@ -5186,7 +5185,7 @@ const std = @import("std"); // :141:22: error: use of undefined value here causes illegal behavior // :141:22: note: when computing vector element at index '0' // :141:22: error: use of undefined value here causes illegal behavior -// :141:22: note: when computing vector element at index '1' +// :141:22: note: when computing vector element at index '0' // :141:22: error: use of undefined value here causes illegal behavior // :141:22: note: when computing vector element at index '0' // :141:22: error: use of undefined value here causes illegal behavior @@ -5194,6 +5193,7 @@ const std = @import("std"); // :141:22: error: use of undefined value here causes illegal behavior // :141:22: note: when computing vector element at index '0' // :141:22: error: use of undefined value here causes illegal behavior +// :141:22: note: when computing vector element at index '0' // :141:22: error: use of undefined value here causes illegal behavior // :141:22: note: when computing vector element at index '0' // :141:22: error: use of undefined value here causes illegal behavior @@ -5201,7 +5201,7 @@ const std = @import("std"); // :141:22: error: use of undefined value here causes illegal behavior // :141:22: note: when computing vector element at index '0' // :141:22: error: use of undefined value here causes illegal behavior -// :141:22: note: when computing vector element at index '1' +// :141:22: note: when computing vector element at index '0' // :141:22: error: use of undefined value here causes illegal behavior // :141:22: note: when computing vector element at index '0' // :141:22: error: use of undefined value here causes illegal behavior @@ -5209,6 +5209,7 @@ const std = @import("std"); // :141:22: error: use of undefined value here causes illegal behavior // :141:22: note: when computing vector element at index '0' // :141:22: error: use of undefined value here causes illegal behavior +// :141:22: note: when computing vector element at index '0' // :141:22: error: use of undefined value here causes illegal behavior // :141:22: note: when computing vector element at index '0' // :141:22: error: use of undefined value here causes illegal behavior @@ -5218,126 +5219,120 @@ const std = @import("std"); // :141:22: error: use of undefined value here causes illegal behavior // :141:22: note: when computing vector element at index '1' // :141:22: error: use of undefined value here causes illegal behavior -// :141:22: note: when computing vector element at index '0' -// :141:22: error: use of undefined value here causes illegal behavior -// :141:22: note: when computing vector element at index '0' +// :141:22: note: when computing vector element at index '1' // :141:22: error: use of undefined value here causes illegal behavior -// :141:22: note: when computing vector element at index '0' +// :141:22: note: when computing vector element at index '1' // :141:22: error: use of undefined value here causes illegal behavior +// :141:22: note: when computing vector element at index '1' // :141:22: error: use of undefined value here causes illegal behavior -// :141:22: note: when computing vector element at index '0' +// :141:22: note: when computing vector element at index '1' // :141:22: error: use of undefined value here causes illegal behavior -// :141:22: note: when computing vector element at index '0' +// :141:22: note: when computing vector element at index '1' // :141:22: error: use of undefined value here causes illegal behavior -// :141:22: note: when computing vector element at index '0' +// :141:22: note: when computing vector element at index '1' // :141:22: error: use of undefined value here causes illegal behavior // :141:22: note: when computing vector element at index '1' // :141:22: error: use of undefined value here causes illegal behavior -// :141:22: note: when computing vector element at index '0' +// :141:22: note: when computing vector element at index '1' // :141:22: error: use of undefined value here causes illegal behavior -// :141:22: note: when computing vector element at index '0' +// :141:22: note: when computing vector element at index '1' // :141:22: error: use of undefined value here causes illegal behavior -// :141:22: note: when computing vector element at index '0' +// :141:22: note: when computing vector element at index '1' // :141:25: error: use of undefined value here causes illegal behavior // :141:25: error: use of undefined value here causes illegal behavior -// :141:25: note: when computing vector element at index '0' // :141:25: error: use of undefined value here causes illegal behavior -// :141:25: note: when computing vector element at index '0' // :141:25: error: use of undefined value here causes illegal behavior -// :141:25: note: when computing vector element at index '1' // :141:25: error: use of undefined value here causes illegal behavior -// :141:25: note: when computing vector element at index '0' // :141:25: error: use of undefined value here causes illegal behavior -// :141:25: note: when computing vector element at index '0' // :141:25: error: use of undefined value here causes illegal behavior // :141:25: error: use of undefined value here causes illegal behavior -// :141:25: note: when computing vector element at index '0' // :141:25: error: use of undefined value here causes illegal behavior -// :141:25: note: when computing vector element at index '0' // :141:25: error: use of undefined value here causes illegal behavior -// :141:25: note: when computing vector element at index '1' // :141:25: error: use of undefined value here causes illegal behavior -// :141:25: note: when computing vector element at index '0' // :141:25: error: use of undefined value here causes illegal behavior // :141:25: note: when computing vector element at index '0' // :141:25: error: use of undefined value here causes illegal behavior -// :141:25: error: use of undefined value here causes illegal behavior // :141:25: note: when computing vector element at index '0' // :141:25: error: use of undefined value here causes illegal behavior // :141:25: note: when computing vector element at index '0' // :141:25: error: use of undefined value here causes illegal behavior -// :141:25: note: when computing vector element at index '1' -// :141:25: error: use of undefined value here causes illegal behavior // :141:25: note: when computing vector element at index '0' // :141:25: error: use of undefined value here causes illegal behavior // :141:25: note: when computing vector element at index '0' // :141:25: error: use of undefined value here causes illegal behavior +// :141:25: note: when computing vector element at index '0' // :141:25: error: use of undefined value here causes illegal behavior // :141:25: note: when computing vector element at index '0' // :141:25: error: use of undefined value here causes illegal behavior // :141:25: note: when computing vector element at index '0' // :141:25: error: use of undefined value here causes illegal behavior -// :141:25: note: when computing vector element at index '1' +// :141:25: note: when computing vector element at index '0' // :141:25: error: use of undefined value here causes illegal behavior // :141:25: note: when computing vector element at index '0' // :141:25: error: use of undefined value here causes illegal behavior // :141:25: note: when computing vector element at index '0' // :141:25: error: use of undefined value here causes illegal behavior +// :141:25: note: when computing vector element at index '0' // :141:25: error: use of undefined value here causes illegal behavior // :141:25: note: when computing vector element at index '0' // :141:25: error: use of undefined value here causes illegal behavior // :141:25: note: when computing vector element at index '0' // :141:25: error: use of undefined value here causes illegal behavior -// :141:25: note: when computing vector element at index '1' +// :141:25: note: when computing vector element at index '0' // :141:25: error: use of undefined value here causes illegal behavior // :141:25: note: when computing vector element at index '0' // :141:25: error: use of undefined value here causes illegal behavior // :141:25: note: when computing vector element at index '0' // :141:25: error: use of undefined value here causes illegal behavior +// :141:25: note: when computing vector element at index '0' // :141:25: error: use of undefined value here causes illegal behavior // :141:25: note: when computing vector element at index '0' // :141:25: error: use of undefined value here causes illegal behavior // :141:25: note: when computing vector element at index '0' // :141:25: error: use of undefined value here causes illegal behavior -// :141:25: note: when computing vector element at index '1' +// :141:25: note: when computing vector element at index '0' // :141:25: error: use of undefined value here causes illegal behavior // :141:25: note: when computing vector element at index '0' // :141:25: error: use of undefined value here causes illegal behavior // :141:25: note: when computing vector element at index '0' // :141:25: error: use of undefined value here causes illegal behavior +// :141:25: note: when computing vector element at index '0' // :141:25: error: use of undefined value here causes illegal behavior // :141:25: note: when computing vector element at index '0' // :141:25: error: use of undefined value here causes illegal behavior // :141:25: note: when computing vector element at index '0' // :141:25: error: use of undefined value here causes illegal behavior -// :141:25: note: when computing vector element at index '1' +// :141:25: note: when computing vector element at index '0' // :141:25: error: use of undefined value here causes illegal behavior // :141:25: note: when computing vector element at index '0' // :141:25: error: use of undefined value here causes illegal behavior // :141:25: note: when computing vector element at index '0' // :141:25: error: use of undefined value here causes illegal behavior +// :141:25: note: when computing vector element at index '0' // :141:25: error: use of undefined value here causes illegal behavior // :141:25: note: when computing vector element at index '0' // :141:25: error: use of undefined value here causes illegal behavior // :141:25: note: when computing vector element at index '0' // :141:25: error: use of undefined value here causes illegal behavior -// :141:25: note: when computing vector element at index '1' +// :141:25: note: when computing vector element at index '0' // :141:25: error: use of undefined value here causes illegal behavior // :141:25: note: when computing vector element at index '0' // :141:25: error: use of undefined value here causes illegal behavior // :141:25: note: when computing vector element at index '0' // :141:25: error: use of undefined value here causes illegal behavior +// :141:25: note: when computing vector element at index '0' // :141:25: error: use of undefined value here causes illegal behavior // :141:25: note: when computing vector element at index '0' // :141:25: error: use of undefined value here causes illegal behavior // :141:25: note: when computing vector element at index '0' // :141:25: error: use of undefined value here causes illegal behavior -// :141:25: note: when computing vector element at index '1' +// :141:25: note: when computing vector element at index '0' // :141:25: error: use of undefined value here causes illegal behavior // :141:25: note: when computing vector element at index '0' // :141:25: error: use of undefined value here causes illegal behavior // :141:25: note: when computing vector element at index '0' // :141:25: error: use of undefined value here causes illegal behavior +// :141:25: note: when computing vector element at index '0' // :141:25: error: use of undefined value here causes illegal behavior // :141:25: note: when computing vector element at index '0' // :141:25: error: use of undefined value here causes illegal behavior @@ -5345,44 +5340,42 @@ const std = @import("std"); // :141:25: error: use of undefined value here causes illegal behavior // :141:25: note: when computing vector element at index '1' // :141:25: error: use of undefined value here causes illegal behavior -// :141:25: note: when computing vector element at index '0' +// :141:25: note: when computing vector element at index '1' // :141:25: error: use of undefined value here causes illegal behavior -// :141:25: note: when computing vector element at index '0' +// :141:25: note: when computing vector element at index '1' // :141:25: error: use of undefined value here causes illegal behavior +// :141:25: note: when computing vector element at index '1' // :141:25: error: use of undefined value here causes illegal behavior -// :141:25: note: when computing vector element at index '0' +// :141:25: note: when computing vector element at index '1' // :141:25: error: use of undefined value here causes illegal behavior -// :141:25: note: when computing vector element at index '0' +// :141:25: note: when computing vector element at index '1' // :141:25: error: use of undefined value here causes illegal behavior // :141:25: note: when computing vector element at index '1' // :141:25: error: use of undefined value here causes illegal behavior -// :141:25: note: when computing vector element at index '0' +// :141:25: note: when computing vector element at index '1' // :141:25: error: use of undefined value here causes illegal behavior -// :141:25: note: when computing vector element at index '0' +// :141:25: note: when computing vector element at index '1' +// :141:25: error: use of undefined value here causes illegal behavior +// :141:25: note: when computing vector element at index '1' +// :141:25: error: use of undefined value here causes illegal behavior +// :141:25: note: when computing vector element at index '1' +// :145:22: error: use of undefined value here causes illegal behavior // :145:22: error: use of undefined value here causes illegal behavior // :145:22: error: use of undefined value here causes illegal behavior -// :145:22: note: when computing vector element at index '0' // :145:22: error: use of undefined value here causes illegal behavior -// :145:22: note: when computing vector element at index '0' // :145:22: error: use of undefined value here causes illegal behavior -// :145:22: note: when computing vector element at index '0' // :145:22: error: use of undefined value here causes illegal behavior -// :145:22: note: when computing vector element at index '1' // :145:22: error: use of undefined value here causes illegal behavior -// :145:22: note: when computing vector element at index '0' // :145:22: error: use of undefined value here causes illegal behavior -// :145:22: note: when computing vector element at index '0' // :145:22: error: use of undefined value here causes illegal behavior -// :145:22: note: when computing vector element at index '0' // :145:22: error: use of undefined value here causes illegal behavior // :145:22: error: use of undefined value here causes illegal behavior -// :145:22: note: when computing vector element at index '0' // :145:22: error: use of undefined value here causes illegal behavior // :145:22: note: when computing vector element at index '0' // :145:22: error: use of undefined value here causes illegal behavior // :145:22: note: when computing vector element at index '0' // :145:22: error: use of undefined value here causes illegal behavior -// :145:22: note: when computing vector element at index '1' +// :145:22: note: when computing vector element at index '0' // :145:22: error: use of undefined value here causes illegal behavior // :145:22: note: when computing vector element at index '0' // :145:22: error: use of undefined value here causes illegal behavior @@ -5390,6 +5383,7 @@ const std = @import("std"); // :145:22: error: use of undefined value here causes illegal behavior // :145:22: note: when computing vector element at index '0' // :145:22: error: use of undefined value here causes illegal behavior +// :145:22: note: when computing vector element at index '0' // :145:22: error: use of undefined value here causes illegal behavior // :145:22: note: when computing vector element at index '0' // :145:22: error: use of undefined value here causes illegal behavior @@ -5397,7 +5391,7 @@ const std = @import("std"); // :145:22: error: use of undefined value here causes illegal behavior // :145:22: note: when computing vector element at index '0' // :145:22: error: use of undefined value here causes illegal behavior -// :145:22: note: when computing vector element at index '1' +// :145:22: note: when computing vector element at index '0' // :145:22: error: use of undefined value here causes illegal behavior // :145:22: note: when computing vector element at index '0' // :145:22: error: use of undefined value here causes illegal behavior @@ -5405,6 +5399,7 @@ const std = @import("std"); // :145:22: error: use of undefined value here causes illegal behavior // :145:22: note: when computing vector element at index '0' // :145:22: error: use of undefined value here causes illegal behavior +// :145:22: note: when computing vector element at index '0' // :145:22: error: use of undefined value here causes illegal behavior // :145:22: note: when computing vector element at index '0' // :145:22: error: use of undefined value here causes illegal behavior @@ -5412,7 +5407,7 @@ const std = @import("std"); // :145:22: error: use of undefined value here causes illegal behavior // :145:22: note: when computing vector element at index '0' // :145:22: error: use of undefined value here causes illegal behavior -// :145:22: note: when computing vector element at index '1' +// :145:22: note: when computing vector element at index '0' // :145:22: error: use of undefined value here causes illegal behavior // :145:22: note: when computing vector element at index '0' // :145:22: error: use of undefined value here causes illegal behavior @@ -5420,6 +5415,7 @@ const std = @import("std"); // :145:22: error: use of undefined value here causes illegal behavior // :145:22: note: when computing vector element at index '0' // :145:22: error: use of undefined value here causes illegal behavior +// :145:22: note: when computing vector element at index '0' // :145:22: error: use of undefined value here causes illegal behavior // :145:22: note: when computing vector element at index '0' // :145:22: error: use of undefined value here causes illegal behavior @@ -5427,7 +5423,7 @@ const std = @import("std"); // :145:22: error: use of undefined value here causes illegal behavior // :145:22: note: when computing vector element at index '0' // :145:22: error: use of undefined value here causes illegal behavior -// :145:22: note: when computing vector element at index '1' +// :145:22: note: when computing vector element at index '0' // :145:22: error: use of undefined value here causes illegal behavior // :145:22: note: when computing vector element at index '0' // :145:22: error: use of undefined value here causes illegal behavior @@ -5435,6 +5431,7 @@ const std = @import("std"); // :145:22: error: use of undefined value here causes illegal behavior // :145:22: note: when computing vector element at index '0' // :145:22: error: use of undefined value here causes illegal behavior +// :145:22: note: when computing vector element at index '0' // :145:22: error: use of undefined value here causes illegal behavior // :145:22: note: when computing vector element at index '0' // :145:22: error: use of undefined value here causes illegal behavior @@ -5442,7 +5439,7 @@ const std = @import("std"); // :145:22: error: use of undefined value here causes illegal behavior // :145:22: note: when computing vector element at index '0' // :145:22: error: use of undefined value here causes illegal behavior -// :145:22: note: when computing vector element at index '1' +// :145:22: note: when computing vector element at index '0' // :145:22: error: use of undefined value here causes illegal behavior // :145:22: note: when computing vector element at index '0' // :145:22: error: use of undefined value here causes illegal behavior @@ -5450,6 +5447,7 @@ const std = @import("std"); // :145:22: error: use of undefined value here causes illegal behavior // :145:22: note: when computing vector element at index '0' // :145:22: error: use of undefined value here causes illegal behavior +// :145:22: note: when computing vector element at index '0' // :145:22: error: use of undefined value here causes illegal behavior // :145:22: note: when computing vector element at index '0' // :145:22: error: use of undefined value here causes illegal behavior @@ -5457,7 +5455,7 @@ const std = @import("std"); // :145:22: error: use of undefined value here causes illegal behavior // :145:22: note: when computing vector element at index '0' // :145:22: error: use of undefined value here causes illegal behavior -// :145:22: note: when computing vector element at index '1' +// :145:22: note: when computing vector element at index '0' // :145:22: error: use of undefined value here causes illegal behavior // :145:22: note: when computing vector element at index '0' // :145:22: error: use of undefined value here causes illegal behavior @@ -5465,6 +5463,7 @@ const std = @import("std"); // :145:22: error: use of undefined value here causes illegal behavior // :145:22: note: when computing vector element at index '0' // :145:22: error: use of undefined value here causes illegal behavior +// :145:22: note: when computing vector element at index '0' // :145:22: error: use of undefined value here causes illegal behavior // :145:22: note: when computing vector element at index '0' // :145:22: error: use of undefined value here causes illegal behavior @@ -5472,7 +5471,7 @@ const std = @import("std"); // :145:22: error: use of undefined value here causes illegal behavior // :145:22: note: when computing vector element at index '0' // :145:22: error: use of undefined value here causes illegal behavior -// :145:22: note: when computing vector element at index '1' +// :145:22: note: when computing vector element at index '0' // :145:22: error: use of undefined value here causes illegal behavior // :145:22: note: when computing vector element at index '0' // :145:22: error: use of undefined value here causes illegal behavior @@ -5480,6 +5479,7 @@ const std = @import("std"); // :145:22: error: use of undefined value here causes illegal behavior // :145:22: note: when computing vector element at index '0' // :145:22: error: use of undefined value here causes illegal behavior +// :145:22: note: when computing vector element at index '0' // :145:22: error: use of undefined value here causes illegal behavior // :145:22: note: when computing vector element at index '0' // :145:22: error: use of undefined value here causes illegal behavior @@ -5487,7 +5487,7 @@ const std = @import("std"); // :145:22: error: use of undefined value here causes illegal behavior // :145:22: note: when computing vector element at index '0' // :145:22: error: use of undefined value here causes illegal behavior -// :145:22: note: when computing vector element at index '1' +// :145:22: note: when computing vector element at index '0' // :145:22: error: use of undefined value here causes illegal behavior // :145:22: note: when computing vector element at index '0' // :145:22: error: use of undefined value here causes illegal behavior @@ -5495,6 +5495,7 @@ const std = @import("std"); // :145:22: error: use of undefined value here causes illegal behavior // :145:22: note: when computing vector element at index '0' // :145:22: error: use of undefined value here causes illegal behavior +// :145:22: note: when computing vector element at index '0' // :145:22: error: use of undefined value here causes illegal behavior // :145:22: note: when computing vector element at index '0' // :145:22: error: use of undefined value here causes illegal behavior @@ -5504,126 +5505,120 @@ const std = @import("std"); // :145:22: error: use of undefined value here causes illegal behavior // :145:22: note: when computing vector element at index '1' // :145:22: error: use of undefined value here causes illegal behavior -// :145:22: note: when computing vector element at index '0' -// :145:22: error: use of undefined value here causes illegal behavior -// :145:22: note: when computing vector element at index '0' +// :145:22: note: when computing vector element at index '1' // :145:22: error: use of undefined value here causes illegal behavior -// :145:22: note: when computing vector element at index '0' +// :145:22: note: when computing vector element at index '1' // :145:22: error: use of undefined value here causes illegal behavior +// :145:22: note: when computing vector element at index '1' // :145:22: error: use of undefined value here causes illegal behavior -// :145:22: note: when computing vector element at index '0' +// :145:22: note: when computing vector element at index '1' // :145:22: error: use of undefined value here causes illegal behavior -// :145:22: note: when computing vector element at index '0' +// :145:22: note: when computing vector element at index '1' // :145:22: error: use of undefined value here causes illegal behavior -// :145:22: note: when computing vector element at index '0' +// :145:22: note: when computing vector element at index '1' // :145:22: error: use of undefined value here causes illegal behavior // :145:22: note: when computing vector element at index '1' // :145:22: error: use of undefined value here causes illegal behavior -// :145:22: note: when computing vector element at index '0' +// :145:22: note: when computing vector element at index '1' // :145:22: error: use of undefined value here causes illegal behavior -// :145:22: note: when computing vector element at index '0' +// :145:22: note: when computing vector element at index '1' // :145:22: error: use of undefined value here causes illegal behavior -// :145:22: note: when computing vector element at index '0' +// :145:22: note: when computing vector element at index '1' // :145:25: error: use of undefined value here causes illegal behavior // :145:25: error: use of undefined value here causes illegal behavior -// :145:25: note: when computing vector element at index '0' // :145:25: error: use of undefined value here causes illegal behavior -// :145:25: note: when computing vector element at index '0' // :145:25: error: use of undefined value here causes illegal behavior -// :145:25: note: when computing vector element at index '1' // :145:25: error: use of undefined value here causes illegal behavior -// :145:25: note: when computing vector element at index '0' // :145:25: error: use of undefined value here causes illegal behavior -// :145:25: note: when computing vector element at index '0' // :145:25: error: use of undefined value here causes illegal behavior // :145:25: error: use of undefined value here causes illegal behavior -// :145:25: note: when computing vector element at index '0' // :145:25: error: use of undefined value here causes illegal behavior -// :145:25: note: when computing vector element at index '0' // :145:25: error: use of undefined value here causes illegal behavior -// :145:25: note: when computing vector element at index '1' // :145:25: error: use of undefined value here causes illegal behavior -// :145:25: note: when computing vector element at index '0' // :145:25: error: use of undefined value here causes illegal behavior // :145:25: note: when computing vector element at index '0' // :145:25: error: use of undefined value here causes illegal behavior -// :145:25: error: use of undefined value here causes illegal behavior // :145:25: note: when computing vector element at index '0' // :145:25: error: use of undefined value here causes illegal behavior // :145:25: note: when computing vector element at index '0' // :145:25: error: use of undefined value here causes illegal behavior -// :145:25: note: when computing vector element at index '1' -// :145:25: error: use of undefined value here causes illegal behavior // :145:25: note: when computing vector element at index '0' // :145:25: error: use of undefined value here causes illegal behavior // :145:25: note: when computing vector element at index '0' // :145:25: error: use of undefined value here causes illegal behavior +// :145:25: note: when computing vector element at index '0' // :145:25: error: use of undefined value here causes illegal behavior // :145:25: note: when computing vector element at index '0' // :145:25: error: use of undefined value here causes illegal behavior // :145:25: note: when computing vector element at index '0' // :145:25: error: use of undefined value here causes illegal behavior -// :145:25: note: when computing vector element at index '1' +// :145:25: note: when computing vector element at index '0' // :145:25: error: use of undefined value here causes illegal behavior // :145:25: note: when computing vector element at index '0' // :145:25: error: use of undefined value here causes illegal behavior // :145:25: note: when computing vector element at index '0' // :145:25: error: use of undefined value here causes illegal behavior +// :145:25: note: when computing vector element at index '0' // :145:25: error: use of undefined value here causes illegal behavior // :145:25: note: when computing vector element at index '0' // :145:25: error: use of undefined value here causes illegal behavior // :145:25: note: when computing vector element at index '0' // :145:25: error: use of undefined value here causes illegal behavior -// :145:25: note: when computing vector element at index '1' +// :145:25: note: when computing vector element at index '0' // :145:25: error: use of undefined value here causes illegal behavior // :145:25: note: when computing vector element at index '0' // :145:25: error: use of undefined value here causes illegal behavior // :145:25: note: when computing vector element at index '0' // :145:25: error: use of undefined value here causes illegal behavior +// :145:25: note: when computing vector element at index '0' // :145:25: error: use of undefined value here causes illegal behavior // :145:25: note: when computing vector element at index '0' // :145:25: error: use of undefined value here causes illegal behavior // :145:25: note: when computing vector element at index '0' // :145:25: error: use of undefined value here causes illegal behavior -// :145:25: note: when computing vector element at index '1' +// :145:25: note: when computing vector element at index '0' // :145:25: error: use of undefined value here causes illegal behavior // :145:25: note: when computing vector element at index '0' // :145:25: error: use of undefined value here causes illegal behavior // :145:25: note: when computing vector element at index '0' // :145:25: error: use of undefined value here causes illegal behavior +// :145:25: note: when computing vector element at index '0' // :145:25: error: use of undefined value here causes illegal behavior // :145:25: note: when computing vector element at index '0' // :145:25: error: use of undefined value here causes illegal behavior // :145:25: note: when computing vector element at index '0' // :145:25: error: use of undefined value here causes illegal behavior -// :145:25: note: when computing vector element at index '1' +// :145:25: note: when computing vector element at index '0' // :145:25: error: use of undefined value here causes illegal behavior // :145:25: note: when computing vector element at index '0' // :145:25: error: use of undefined value here causes illegal behavior // :145:25: note: when computing vector element at index '0' // :145:25: error: use of undefined value here causes illegal behavior +// :145:25: note: when computing vector element at index '0' // :145:25: error: use of undefined value here causes illegal behavior // :145:25: note: when computing vector element at index '0' // :145:25: error: use of undefined value here causes illegal behavior // :145:25: note: when computing vector element at index '0' // :145:25: error: use of undefined value here causes illegal behavior -// :145:25: note: when computing vector element at index '1' +// :145:25: note: when computing vector element at index '0' // :145:25: error: use of undefined value here causes illegal behavior // :145:25: note: when computing vector element at index '0' // :145:25: error: use of undefined value here causes illegal behavior // :145:25: note: when computing vector element at index '0' // :145:25: error: use of undefined value here causes illegal behavior +// :145:25: note: when computing vector element at index '0' // :145:25: error: use of undefined value here causes illegal behavior // :145:25: note: when computing vector element at index '0' // :145:25: error: use of undefined value here causes illegal behavior // :145:25: note: when computing vector element at index '0' // :145:25: error: use of undefined value here causes illegal behavior -// :145:25: note: when computing vector element at index '1' +// :145:25: note: when computing vector element at index '0' // :145:25: error: use of undefined value here causes illegal behavior // :145:25: note: when computing vector element at index '0' // :145:25: error: use of undefined value here causes illegal behavior // :145:25: note: when computing vector element at index '0' // :145:25: error: use of undefined value here causes illegal behavior +// :145:25: note: when computing vector element at index '0' // :145:25: error: use of undefined value here causes illegal behavior // :145:25: note: when computing vector element at index '0' // :145:25: error: use of undefined value here causes illegal behavior @@ -5631,20 +5626,25 @@ const std = @import("std"); // :145:25: error: use of undefined value here causes illegal behavior // :145:25: note: when computing vector element at index '1' // :145:25: error: use of undefined value here causes illegal behavior -// :145:25: note: when computing vector element at index '0' +// :145:25: note: when computing vector element at index '1' // :145:25: error: use of undefined value here causes illegal behavior -// :145:25: note: when computing vector element at index '0' +// :145:25: note: when computing vector element at index '1' +// :145:25: error: use of undefined value here causes illegal behavior +// :145:25: note: when computing vector element at index '1' // :145:25: error: use of undefined value here causes illegal behavior +// :145:25: note: when computing vector element at index '1' // :145:25: error: use of undefined value here causes illegal behavior -// :145:25: note: when computing vector element at index '0' +// :145:25: note: when computing vector element at index '1' // :145:25: error: use of undefined value here causes illegal behavior -// :145:25: note: when computing vector element at index '0' +// :145:25: note: when computing vector element at index '1' // :145:25: error: use of undefined value here causes illegal behavior // :145:25: note: when computing vector element at index '1' // :145:25: error: use of undefined value here causes illegal behavior -// :145:25: note: when computing vector element at index '0' +// :145:25: note: when computing vector element at index '1' // :145:25: error: use of undefined value here causes illegal behavior -// :145:25: note: when computing vector element at index '0' +// :145:25: note: when computing vector element at index '1' +// :145:25: error: use of undefined value here causes illegal behavior +// :145:25: note: when computing vector element at index '1' // :151:21: error: use of undefined value here causes illegal behavior // :151:21: error: use of undefined value here causes illegal behavior // :151:21: error: use of undefined value here causes illegal behavior @@ -5652,21 +5652,13 @@ const std = @import("std"); // :151:21: error: use of undefined value here causes illegal behavior // :151:21: error: use of undefined value here causes illegal behavior // :151:21: error: use of undefined value here causes illegal behavior -// :151:21: note: when computing vector element at index '1' // :151:21: error: use of undefined value here causes illegal behavior -// :151:21: note: when computing vector element at index '1' // :151:21: error: use of undefined value here causes illegal behavior -// :151:21: note: when computing vector element at index '1' // :151:21: error: use of undefined value here causes illegal behavior -// :151:21: note: when computing vector element at index '1' // :151:21: error: use of undefined value here causes illegal behavior -// :151:21: note: when computing vector element at index '0' // :151:21: error: use of undefined value here causes illegal behavior -// :151:21: note: when computing vector element at index '0' // :151:21: error: use of undefined value here causes illegal behavior -// :151:21: note: when computing vector element at index '0' // :151:21: error: use of undefined value here causes illegal behavior -// :151:21: note: when computing vector element at index '0' // :151:21: error: use of undefined value here causes illegal behavior // :151:21: error: use of undefined value here causes illegal behavior // :151:21: error: use of undefined value here causes illegal behavior @@ -5674,21 +5666,13 @@ const std = @import("std"); // :151:21: error: use of undefined value here causes illegal behavior // :151:21: error: use of undefined value here causes illegal behavior // :151:21: error: use of undefined value here causes illegal behavior -// :151:21: note: when computing vector element at index '1' // :151:21: error: use of undefined value here causes illegal behavior -// :151:21: note: when computing vector element at index '1' // :151:21: error: use of undefined value here causes illegal behavior -// :151:21: note: when computing vector element at index '1' // :151:21: error: use of undefined value here causes illegal behavior -// :151:21: note: when computing vector element at index '1' // :151:21: error: use of undefined value here causes illegal behavior -// :151:21: note: when computing vector element at index '0' // :151:21: error: use of undefined value here causes illegal behavior -// :151:21: note: when computing vector element at index '0' // :151:21: error: use of undefined value here causes illegal behavior -// :151:21: note: when computing vector element at index '0' // :151:21: error: use of undefined value here causes illegal behavior -// :151:21: note: when computing vector element at index '0' // :151:21: error: use of undefined value here causes illegal behavior // :151:21: error: use of undefined value here causes illegal behavior // :151:21: error: use of undefined value here causes illegal behavior @@ -5696,21 +5680,13 @@ const std = @import("std"); // :151:21: error: use of undefined value here causes illegal behavior // :151:21: error: use of undefined value here causes illegal behavior // :151:21: error: use of undefined value here causes illegal behavior -// :151:21: note: when computing vector element at index '1' // :151:21: error: use of undefined value here causes illegal behavior -// :151:21: note: when computing vector element at index '1' // :151:21: error: use of undefined value here causes illegal behavior -// :151:21: note: when computing vector element at index '1' // :151:21: error: use of undefined value here causes illegal behavior -// :151:21: note: when computing vector element at index '1' // :151:21: error: use of undefined value here causes illegal behavior -// :151:21: note: when computing vector element at index '0' // :151:21: error: use of undefined value here causes illegal behavior -// :151:21: note: when computing vector element at index '0' // :151:21: error: use of undefined value here causes illegal behavior -// :151:21: note: when computing vector element at index '0' // :151:21: error: use of undefined value here causes illegal behavior -// :151:21: note: when computing vector element at index '0' // :151:21: error: use of undefined value here causes illegal behavior // :151:21: error: use of undefined value here causes illegal behavior // :151:21: error: use of undefined value here causes illegal behavior @@ -5718,21 +5694,13 @@ const std = @import("std"); // :151:21: error: use of undefined value here causes illegal behavior // :151:21: error: use of undefined value here causes illegal behavior // :151:21: error: use of undefined value here causes illegal behavior -// :151:21: note: when computing vector element at index '1' // :151:21: error: use of undefined value here causes illegal behavior -// :151:21: note: when computing vector element at index '1' // :151:21: error: use of undefined value here causes illegal behavior -// :151:21: note: when computing vector element at index '1' // :151:21: error: use of undefined value here causes illegal behavior -// :151:21: note: when computing vector element at index '1' // :151:21: error: use of undefined value here causes illegal behavior -// :151:21: note: when computing vector element at index '0' // :151:21: error: use of undefined value here causes illegal behavior -// :151:21: note: when computing vector element at index '0' // :151:21: error: use of undefined value here causes illegal behavior -// :151:21: note: when computing vector element at index '0' // :151:21: error: use of undefined value here causes illegal behavior -// :151:21: note: when computing vector element at index '0' // :151:21: error: use of undefined value here causes illegal behavior // :151:21: error: use of undefined value here causes illegal behavior // :151:21: error: use of undefined value here causes illegal behavior @@ -5740,13 +5708,9 @@ const std = @import("std"); // :151:21: error: use of undefined value here causes illegal behavior // :151:21: error: use of undefined value here causes illegal behavior // :151:21: error: use of undefined value here causes illegal behavior -// :151:21: note: when computing vector element at index '1' // :151:21: error: use of undefined value here causes illegal behavior -// :151:21: note: when computing vector element at index '1' // :151:21: error: use of undefined value here causes illegal behavior -// :151:21: note: when computing vector element at index '1' // :151:21: error: use of undefined value here causes illegal behavior -// :151:21: note: when computing vector element at index '1' // :151:21: error: use of undefined value here causes illegal behavior // :151:21: note: when computing vector element at index '0' // :151:21: error: use of undefined value here causes illegal behavior @@ -5756,19 +5720,21 @@ const std = @import("std"); // :151:21: error: use of undefined value here causes illegal behavior // :151:21: note: when computing vector element at index '0' // :151:21: error: use of undefined value here causes illegal behavior +// :151:21: note: when computing vector element at index '0' // :151:21: error: use of undefined value here causes illegal behavior +// :151:21: note: when computing vector element at index '0' // :151:21: error: use of undefined value here causes illegal behavior +// :151:21: note: when computing vector element at index '0' // :151:21: error: use of undefined value here causes illegal behavior +// :151:21: note: when computing vector element at index '0' // :151:21: error: use of undefined value here causes illegal behavior +// :151:21: note: when computing vector element at index '0' // :151:21: error: use of undefined value here causes illegal behavior +// :151:21: note: when computing vector element at index '0' // :151:21: error: use of undefined value here causes illegal behavior -// :151:21: note: when computing vector element at index '1' -// :151:21: error: use of undefined value here causes illegal behavior -// :151:21: note: when computing vector element at index '1' -// :151:21: error: use of undefined value here causes illegal behavior -// :151:21: note: when computing vector element at index '1' +// :151:21: note: when computing vector element at index '0' // :151:21: error: use of undefined value here causes illegal behavior -// :151:21: note: when computing vector element at index '1' +// :151:21: note: when computing vector element at index '0' // :151:21: error: use of undefined value here causes illegal behavior // :151:21: note: when computing vector element at index '0' // :151:21: error: use of undefined value here causes illegal behavior @@ -5778,19 +5744,25 @@ const std = @import("std"); // :151:21: error: use of undefined value here causes illegal behavior // :151:21: note: when computing vector element at index '0' // :151:21: error: use of undefined value here causes illegal behavior +// :151:21: note: when computing vector element at index '0' // :151:21: error: use of undefined value here causes illegal behavior +// :151:21: note: when computing vector element at index '0' // :151:21: error: use of undefined value here causes illegal behavior +// :151:21: note: when computing vector element at index '0' // :151:21: error: use of undefined value here causes illegal behavior +// :151:21: note: when computing vector element at index '0' // :151:21: error: use of undefined value here causes illegal behavior +// :151:21: note: when computing vector element at index '0' // :151:21: error: use of undefined value here causes illegal behavior +// :151:21: note: when computing vector element at index '0' // :151:21: error: use of undefined value here causes illegal behavior -// :151:21: note: when computing vector element at index '1' +// :151:21: note: when computing vector element at index '0' // :151:21: error: use of undefined value here causes illegal behavior -// :151:21: note: when computing vector element at index '1' +// :151:21: note: when computing vector element at index '0' // :151:21: error: use of undefined value here causes illegal behavior -// :151:21: note: when computing vector element at index '1' +// :151:21: note: when computing vector element at index '0' // :151:21: error: use of undefined value here causes illegal behavior -// :151:21: note: when computing vector element at index '1' +// :151:21: note: when computing vector element at index '0' // :151:21: error: use of undefined value here causes illegal behavior // :151:21: note: when computing vector element at index '0' // :151:21: error: use of undefined value here causes illegal behavior @@ -5800,19 +5772,25 @@ const std = @import("std"); // :151:21: error: use of undefined value here causes illegal behavior // :151:21: note: when computing vector element at index '0' // :151:21: error: use of undefined value here causes illegal behavior +// :151:21: note: when computing vector element at index '0' // :151:21: error: use of undefined value here causes illegal behavior +// :151:21: note: when computing vector element at index '0' // :151:21: error: use of undefined value here causes illegal behavior +// :151:21: note: when computing vector element at index '0' // :151:21: error: use of undefined value here causes illegal behavior +// :151:21: note: when computing vector element at index '0' // :151:21: error: use of undefined value here causes illegal behavior +// :151:21: note: when computing vector element at index '0' // :151:21: error: use of undefined value here causes illegal behavior +// :151:21: note: when computing vector element at index '0' // :151:21: error: use of undefined value here causes illegal behavior -// :151:21: note: when computing vector element at index '1' +// :151:21: note: when computing vector element at index '0' // :151:21: error: use of undefined value here causes illegal behavior -// :151:21: note: when computing vector element at index '1' +// :151:21: note: when computing vector element at index '0' // :151:21: error: use of undefined value here causes illegal behavior -// :151:21: note: when computing vector element at index '1' +// :151:21: note: when computing vector element at index '0' // :151:21: error: use of undefined value here causes illegal behavior -// :151:21: note: when computing vector element at index '1' +// :151:21: note: when computing vector element at index '0' // :151:21: error: use of undefined value here causes illegal behavior // :151:21: note: when computing vector element at index '0' // :151:21: error: use of undefined value here causes illegal behavior @@ -5822,11 +5800,17 @@ const std = @import("std"); // :151:21: error: use of undefined value here causes illegal behavior // :151:21: note: when computing vector element at index '0' // :151:21: error: use of undefined value here causes illegal behavior +// :151:21: note: when computing vector element at index '1' // :151:21: error: use of undefined value here causes illegal behavior +// :151:21: note: when computing vector element at index '1' // :151:21: error: use of undefined value here causes illegal behavior +// :151:21: note: when computing vector element at index '1' // :151:21: error: use of undefined value here causes illegal behavior +// :151:21: note: when computing vector element at index '1' // :151:21: error: use of undefined value here causes illegal behavior +// :151:21: note: when computing vector element at index '1' // :151:21: error: use of undefined value here causes illegal behavior +// :151:21: note: when computing vector element at index '1' // :151:21: error: use of undefined value here causes illegal behavior // :151:21: note: when computing vector element at index '1' // :151:21: error: use of undefined value here causes illegal behavior @@ -5836,19 +5820,25 @@ const std = @import("std"); // :151:21: error: use of undefined value here causes illegal behavior // :151:21: note: when computing vector element at index '1' // :151:21: error: use of undefined value here causes illegal behavior -// :151:21: note: when computing vector element at index '0' +// :151:21: note: when computing vector element at index '1' // :151:21: error: use of undefined value here causes illegal behavior -// :151:21: note: when computing vector element at index '0' +// :151:21: note: when computing vector element at index '1' // :151:21: error: use of undefined value here causes illegal behavior -// :151:21: note: when computing vector element at index '0' +// :151:21: note: when computing vector element at index '1' // :151:21: error: use of undefined value here causes illegal behavior -// :151:21: note: when computing vector element at index '0' +// :151:21: note: when computing vector element at index '1' // :151:21: error: use of undefined value here causes illegal behavior +// :151:21: note: when computing vector element at index '1' // :151:21: error: use of undefined value here causes illegal behavior +// :151:21: note: when computing vector element at index '1' // :151:21: error: use of undefined value here causes illegal behavior +// :151:21: note: when computing vector element at index '1' // :151:21: error: use of undefined value here causes illegal behavior +// :151:21: note: when computing vector element at index '1' // :151:21: error: use of undefined value here causes illegal behavior +// :151:21: note: when computing vector element at index '1' // :151:21: error: use of undefined value here causes illegal behavior +// :151:21: note: when computing vector element at index '1' // :151:21: error: use of undefined value here causes illegal behavior // :151:21: note: when computing vector element at index '1' // :151:21: error: use of undefined value here causes illegal behavior @@ -5858,19 +5848,25 @@ const std = @import("std"); // :151:21: error: use of undefined value here causes illegal behavior // :151:21: note: when computing vector element at index '1' // :151:21: error: use of undefined value here causes illegal behavior -// :151:21: note: when computing vector element at index '0' +// :151:21: note: when computing vector element at index '1' // :151:21: error: use of undefined value here causes illegal behavior -// :151:21: note: when computing vector element at index '0' +// :151:21: note: when computing vector element at index '1' // :151:21: error: use of undefined value here causes illegal behavior -// :151:21: note: when computing vector element at index '0' +// :151:21: note: when computing vector element at index '1' // :151:21: error: use of undefined value here causes illegal behavior -// :151:21: note: when computing vector element at index '0' +// :151:21: note: when computing vector element at index '1' // :151:21: error: use of undefined value here causes illegal behavior +// :151:21: note: when computing vector element at index '1' // :151:21: error: use of undefined value here causes illegal behavior +// :151:21: note: when computing vector element at index '1' // :151:21: error: use of undefined value here causes illegal behavior +// :151:21: note: when computing vector element at index '1' // :151:21: error: use of undefined value here causes illegal behavior +// :151:21: note: when computing vector element at index '1' // :151:21: error: use of undefined value here causes illegal behavior +// :151:21: note: when computing vector element at index '1' // :151:21: error: use of undefined value here causes illegal behavior +// :151:21: note: when computing vector element at index '1' // :151:21: error: use of undefined value here causes illegal behavior // :151:21: note: when computing vector element at index '1' // :151:21: error: use of undefined value here causes illegal behavior @@ -5880,13 +5876,17 @@ const std = @import("std"); // :151:21: error: use of undefined value here causes illegal behavior // :151:21: note: when computing vector element at index '1' // :151:21: error: use of undefined value here causes illegal behavior -// :151:21: note: when computing vector element at index '0' +// :151:21: note: when computing vector element at index '1' // :151:21: error: use of undefined value here causes illegal behavior -// :151:21: note: when computing vector element at index '0' +// :151:21: note: when computing vector element at index '1' // :151:21: error: use of undefined value here causes illegal behavior -// :151:21: note: when computing vector element at index '0' +// :151:21: note: when computing vector element at index '1' // :151:21: error: use of undefined value here causes illegal behavior -// :151:21: note: when computing vector element at index '0' +// :151:21: note: when computing vector element at index '1' +// :151:21: error: use of undefined value here causes illegal behavior +// :151:21: note: when computing vector element at index '1' +// :151:21: error: use of undefined value here causes illegal behavior +// :151:21: note: when computing vector element at index '1' // :155:30: error: use of undefined value here causes illegal behavior // :155:30: error: use of undefined value here causes illegal behavior // :155:30: error: use of undefined value here causes illegal behavior @@ -5894,21 +5894,13 @@ const std = @import("std"); // :155:30: error: use of undefined value here causes illegal behavior // :155:30: error: use of undefined value here causes illegal behavior // :155:30: error: use of undefined value here causes illegal behavior -// :155:30: note: when computing vector element at index '1' // :155:30: error: use of undefined value here causes illegal behavior -// :155:30: note: when computing vector element at index '1' // :155:30: error: use of undefined value here causes illegal behavior -// :155:30: note: when computing vector element at index '1' // :155:30: error: use of undefined value here causes illegal behavior -// :155:30: note: when computing vector element at index '1' // :155:30: error: use of undefined value here causes illegal behavior -// :155:30: note: when computing vector element at index '0' // :155:30: error: use of undefined value here causes illegal behavior -// :155:30: note: when computing vector element at index '0' // :155:30: error: use of undefined value here causes illegal behavior -// :155:30: note: when computing vector element at index '0' // :155:30: error: use of undefined value here causes illegal behavior -// :155:30: note: when computing vector element at index '0' // :155:30: error: use of undefined value here causes illegal behavior // :155:30: error: use of undefined value here causes illegal behavior // :155:30: error: use of undefined value here causes illegal behavior @@ -5916,21 +5908,13 @@ const std = @import("std"); // :155:30: error: use of undefined value here causes illegal behavior // :155:30: error: use of undefined value here causes illegal behavior // :155:30: error: use of undefined value here causes illegal behavior -// :155:30: note: when computing vector element at index '1' // :155:30: error: use of undefined value here causes illegal behavior -// :155:30: note: when computing vector element at index '1' // :155:30: error: use of undefined value here causes illegal behavior -// :155:30: note: when computing vector element at index '1' // :155:30: error: use of undefined value here causes illegal behavior -// :155:30: note: when computing vector element at index '1' // :155:30: error: use of undefined value here causes illegal behavior -// :155:30: note: when computing vector element at index '0' // :155:30: error: use of undefined value here causes illegal behavior -// :155:30: note: when computing vector element at index '0' // :155:30: error: use of undefined value here causes illegal behavior -// :155:30: note: when computing vector element at index '0' // :155:30: error: use of undefined value here causes illegal behavior -// :155:30: note: when computing vector element at index '0' // :155:30: error: use of undefined value here causes illegal behavior // :155:30: error: use of undefined value here causes illegal behavior // :155:30: error: use of undefined value here causes illegal behavior @@ -5938,21 +5922,13 @@ const std = @import("std"); // :155:30: error: use of undefined value here causes illegal behavior // :155:30: error: use of undefined value here causes illegal behavior // :155:30: error: use of undefined value here causes illegal behavior -// :155:30: note: when computing vector element at index '1' // :155:30: error: use of undefined value here causes illegal behavior -// :155:30: note: when computing vector element at index '1' // :155:30: error: use of undefined value here causes illegal behavior -// :155:30: note: when computing vector element at index '1' // :155:30: error: use of undefined value here causes illegal behavior -// :155:30: note: when computing vector element at index '1' // :155:30: error: use of undefined value here causes illegal behavior -// :155:30: note: when computing vector element at index '0' // :155:30: error: use of undefined value here causes illegal behavior -// :155:30: note: when computing vector element at index '0' // :155:30: error: use of undefined value here causes illegal behavior -// :155:30: note: when computing vector element at index '0' // :155:30: error: use of undefined value here causes illegal behavior -// :155:30: note: when computing vector element at index '0' // :155:30: error: use of undefined value here causes illegal behavior // :155:30: error: use of undefined value here causes illegal behavior // :155:30: error: use of undefined value here causes illegal behavior @@ -5960,21 +5936,13 @@ const std = @import("std"); // :155:30: error: use of undefined value here causes illegal behavior // :155:30: error: use of undefined value here causes illegal behavior // :155:30: error: use of undefined value here causes illegal behavior -// :155:30: note: when computing vector element at index '1' // :155:30: error: use of undefined value here causes illegal behavior -// :155:30: note: when computing vector element at index '1' // :155:30: error: use of undefined value here causes illegal behavior -// :155:30: note: when computing vector element at index '1' // :155:30: error: use of undefined value here causes illegal behavior -// :155:30: note: when computing vector element at index '1' // :155:30: error: use of undefined value here causes illegal behavior -// :155:30: note: when computing vector element at index '0' // :155:30: error: use of undefined value here causes illegal behavior -// :155:30: note: when computing vector element at index '0' // :155:30: error: use of undefined value here causes illegal behavior -// :155:30: note: when computing vector element at index '0' // :155:30: error: use of undefined value here causes illegal behavior -// :155:30: note: when computing vector element at index '0' // :155:30: error: use of undefined value here causes illegal behavior // :155:30: error: use of undefined value here causes illegal behavior // :155:30: error: use of undefined value here causes illegal behavior @@ -5982,13 +5950,9 @@ const std = @import("std"); // :155:30: error: use of undefined value here causes illegal behavior // :155:30: error: use of undefined value here causes illegal behavior // :155:30: error: use of undefined value here causes illegal behavior -// :155:30: note: when computing vector element at index '1' // :155:30: error: use of undefined value here causes illegal behavior -// :155:30: note: when computing vector element at index '1' // :155:30: error: use of undefined value here causes illegal behavior -// :155:30: note: when computing vector element at index '1' // :155:30: error: use of undefined value here causes illegal behavior -// :155:30: note: when computing vector element at index '1' // :155:30: error: use of undefined value here causes illegal behavior // :155:30: note: when computing vector element at index '0' // :155:30: error: use of undefined value here causes illegal behavior @@ -5998,19 +5962,21 @@ const std = @import("std"); // :155:30: error: use of undefined value here causes illegal behavior // :155:30: note: when computing vector element at index '0' // :155:30: error: use of undefined value here causes illegal behavior +// :155:30: note: when computing vector element at index '0' // :155:30: error: use of undefined value here causes illegal behavior +// :155:30: note: when computing vector element at index '0' // :155:30: error: use of undefined value here causes illegal behavior +// :155:30: note: when computing vector element at index '0' // :155:30: error: use of undefined value here causes illegal behavior +// :155:30: note: when computing vector element at index '0' // :155:30: error: use of undefined value here causes illegal behavior +// :155:30: note: when computing vector element at index '0' // :155:30: error: use of undefined value here causes illegal behavior +// :155:30: note: when computing vector element at index '0' // :155:30: error: use of undefined value here causes illegal behavior -// :155:30: note: when computing vector element at index '1' -// :155:30: error: use of undefined value here causes illegal behavior -// :155:30: note: when computing vector element at index '1' -// :155:30: error: use of undefined value here causes illegal behavior -// :155:30: note: when computing vector element at index '1' +// :155:30: note: when computing vector element at index '0' // :155:30: error: use of undefined value here causes illegal behavior -// :155:30: note: when computing vector element at index '1' +// :155:30: note: when computing vector element at index '0' // :155:30: error: use of undefined value here causes illegal behavior // :155:30: note: when computing vector element at index '0' // :155:30: error: use of undefined value here causes illegal behavior @@ -6020,19 +5986,25 @@ const std = @import("std"); // :155:30: error: use of undefined value here causes illegal behavior // :155:30: note: when computing vector element at index '0' // :155:30: error: use of undefined value here causes illegal behavior +// :155:30: note: when computing vector element at index '0' // :155:30: error: use of undefined value here causes illegal behavior +// :155:30: note: when computing vector element at index '0' // :155:30: error: use of undefined value here causes illegal behavior +// :155:30: note: when computing vector element at index '0' // :155:30: error: use of undefined value here causes illegal behavior +// :155:30: note: when computing vector element at index '0' // :155:30: error: use of undefined value here causes illegal behavior +// :155:30: note: when computing vector element at index '0' // :155:30: error: use of undefined value here causes illegal behavior +// :155:30: note: when computing vector element at index '0' // :155:30: error: use of undefined value here causes illegal behavior -// :155:30: note: when computing vector element at index '1' +// :155:30: note: when computing vector element at index '0' // :155:30: error: use of undefined value here causes illegal behavior -// :155:30: note: when computing vector element at index '1' +// :155:30: note: when computing vector element at index '0' // :155:30: error: use of undefined value here causes illegal behavior -// :155:30: note: when computing vector element at index '1' +// :155:30: note: when computing vector element at index '0' // :155:30: error: use of undefined value here causes illegal behavior -// :155:30: note: when computing vector element at index '1' +// :155:30: note: when computing vector element at index '0' // :155:30: error: use of undefined value here causes illegal behavior // :155:30: note: when computing vector element at index '0' // :155:30: error: use of undefined value here causes illegal behavior @@ -6042,19 +6014,25 @@ const std = @import("std"); // :155:30: error: use of undefined value here causes illegal behavior // :155:30: note: when computing vector element at index '0' // :155:30: error: use of undefined value here causes illegal behavior +// :155:30: note: when computing vector element at index '0' // :155:30: error: use of undefined value here causes illegal behavior +// :155:30: note: when computing vector element at index '0' // :155:30: error: use of undefined value here causes illegal behavior +// :155:30: note: when computing vector element at index '0' // :155:30: error: use of undefined value here causes illegal behavior +// :155:30: note: when computing vector element at index '0' // :155:30: error: use of undefined value here causes illegal behavior +// :155:30: note: when computing vector element at index '0' // :155:30: error: use of undefined value here causes illegal behavior +// :155:30: note: when computing vector element at index '0' // :155:30: error: use of undefined value here causes illegal behavior -// :155:30: note: when computing vector element at index '1' +// :155:30: note: when computing vector element at index '0' // :155:30: error: use of undefined value here causes illegal behavior -// :155:30: note: when computing vector element at index '1' +// :155:30: note: when computing vector element at index '0' // :155:30: error: use of undefined value here causes illegal behavior -// :155:30: note: when computing vector element at index '1' +// :155:30: note: when computing vector element at index '0' // :155:30: error: use of undefined value here causes illegal behavior -// :155:30: note: when computing vector element at index '1' +// :155:30: note: when computing vector element at index '0' // :155:30: error: use of undefined value here causes illegal behavior // :155:30: note: when computing vector element at index '0' // :155:30: error: use of undefined value here causes illegal behavior @@ -6064,11 +6042,17 @@ const std = @import("std"); // :155:30: error: use of undefined value here causes illegal behavior // :155:30: note: when computing vector element at index '0' // :155:30: error: use of undefined value here causes illegal behavior +// :155:30: note: when computing vector element at index '1' // :155:30: error: use of undefined value here causes illegal behavior +// :155:30: note: when computing vector element at index '1' // :155:30: error: use of undefined value here causes illegal behavior +// :155:30: note: when computing vector element at index '1' // :155:30: error: use of undefined value here causes illegal behavior +// :155:30: note: when computing vector element at index '1' // :155:30: error: use of undefined value here causes illegal behavior +// :155:30: note: when computing vector element at index '1' // :155:30: error: use of undefined value here causes illegal behavior +// :155:30: note: when computing vector element at index '1' // :155:30: error: use of undefined value here causes illegal behavior // :155:30: note: when computing vector element at index '1' // :155:30: error: use of undefined value here causes illegal behavior @@ -6078,19 +6062,25 @@ const std = @import("std"); // :155:30: error: use of undefined value here causes illegal behavior // :155:30: note: when computing vector element at index '1' // :155:30: error: use of undefined value here causes illegal behavior -// :155:30: note: when computing vector element at index '0' +// :155:30: note: when computing vector element at index '1' // :155:30: error: use of undefined value here causes illegal behavior -// :155:30: note: when computing vector element at index '0' +// :155:30: note: when computing vector element at index '1' // :155:30: error: use of undefined value here causes illegal behavior -// :155:30: note: when computing vector element at index '0' +// :155:30: note: when computing vector element at index '1' // :155:30: error: use of undefined value here causes illegal behavior -// :155:30: note: when computing vector element at index '0' +// :155:30: note: when computing vector element at index '1' // :155:30: error: use of undefined value here causes illegal behavior +// :155:30: note: when computing vector element at index '1' // :155:30: error: use of undefined value here causes illegal behavior +// :155:30: note: when computing vector element at index '1' // :155:30: error: use of undefined value here causes illegal behavior +// :155:30: note: when computing vector element at index '1' // :155:30: error: use of undefined value here causes illegal behavior +// :155:30: note: when computing vector element at index '1' // :155:30: error: use of undefined value here causes illegal behavior +// :155:30: note: when computing vector element at index '1' // :155:30: error: use of undefined value here causes illegal behavior +// :155:30: note: when computing vector element at index '1' // :155:30: error: use of undefined value here causes illegal behavior // :155:30: note: when computing vector element at index '1' // :155:30: error: use of undefined value here causes illegal behavior @@ -6100,19 +6090,25 @@ const std = @import("std"); // :155:30: error: use of undefined value here causes illegal behavior // :155:30: note: when computing vector element at index '1' // :155:30: error: use of undefined value here causes illegal behavior -// :155:30: note: when computing vector element at index '0' +// :155:30: note: when computing vector element at index '1' // :155:30: error: use of undefined value here causes illegal behavior -// :155:30: note: when computing vector element at index '0' +// :155:30: note: when computing vector element at index '1' // :155:30: error: use of undefined value here causes illegal behavior -// :155:30: note: when computing vector element at index '0' +// :155:30: note: when computing vector element at index '1' // :155:30: error: use of undefined value here causes illegal behavior -// :155:30: note: when computing vector element at index '0' +// :155:30: note: when computing vector element at index '1' // :155:30: error: use of undefined value here causes illegal behavior +// :155:30: note: when computing vector element at index '1' // :155:30: error: use of undefined value here causes illegal behavior +// :155:30: note: when computing vector element at index '1' // :155:30: error: use of undefined value here causes illegal behavior +// :155:30: note: when computing vector element at index '1' // :155:30: error: use of undefined value here causes illegal behavior +// :155:30: note: when computing vector element at index '1' // :155:30: error: use of undefined value here causes illegal behavior +// :155:30: note: when computing vector element at index '1' // :155:30: error: use of undefined value here causes illegal behavior +// :155:30: note: when computing vector element at index '1' // :155:30: error: use of undefined value here causes illegal behavior // :155:30: note: when computing vector element at index '1' // :155:30: error: use of undefined value here causes illegal behavior @@ -6122,13 +6118,17 @@ const std = @import("std"); // :155:30: error: use of undefined value here causes illegal behavior // :155:30: note: when computing vector element at index '1' // :155:30: error: use of undefined value here causes illegal behavior -// :155:30: note: when computing vector element at index '0' +// :155:30: note: when computing vector element at index '1' // :155:30: error: use of undefined value here causes illegal behavior -// :155:30: note: when computing vector element at index '0' +// :155:30: note: when computing vector element at index '1' // :155:30: error: use of undefined value here causes illegal behavior -// :155:30: note: when computing vector element at index '0' +// :155:30: note: when computing vector element at index '1' // :155:30: error: use of undefined value here causes illegal behavior -// :155:30: note: when computing vector element at index '0' +// :155:30: note: when computing vector element at index '1' +// :155:30: error: use of undefined value here causes illegal behavior +// :155:30: note: when computing vector element at index '1' +// :155:30: error: use of undefined value here causes illegal behavior +// :155:30: note: when computing vector element at index '1' // :159:30: error: use of undefined value here causes illegal behavior // :159:30: error: use of undefined value here causes illegal behavior // :159:30: error: use of undefined value here causes illegal behavior @@ -6136,21 +6136,13 @@ const std = @import("std"); // :159:30: error: use of undefined value here causes illegal behavior // :159:30: error: use of undefined value here causes illegal behavior // :159:30: error: use of undefined value here causes illegal behavior -// :159:30: note: when computing vector element at index '1' // :159:30: error: use of undefined value here causes illegal behavior -// :159:30: note: when computing vector element at index '1' // :159:30: error: use of undefined value here causes illegal behavior -// :159:30: note: when computing vector element at index '1' // :159:30: error: use of undefined value here causes illegal behavior -// :159:30: note: when computing vector element at index '1' // :159:30: error: use of undefined value here causes illegal behavior -// :159:30: note: when computing vector element at index '0' // :159:30: error: use of undefined value here causes illegal behavior -// :159:30: note: when computing vector element at index '0' // :159:30: error: use of undefined value here causes illegal behavior -// :159:30: note: when computing vector element at index '0' // :159:30: error: use of undefined value here causes illegal behavior -// :159:30: note: when computing vector element at index '0' // :159:30: error: use of undefined value here causes illegal behavior // :159:30: error: use of undefined value here causes illegal behavior // :159:30: error: use of undefined value here causes illegal behavior @@ -6158,21 +6150,13 @@ const std = @import("std"); // :159:30: error: use of undefined value here causes illegal behavior // :159:30: error: use of undefined value here causes illegal behavior // :159:30: error: use of undefined value here causes illegal behavior -// :159:30: note: when computing vector element at index '1' // :159:30: error: use of undefined value here causes illegal behavior -// :159:30: note: when computing vector element at index '1' // :159:30: error: use of undefined value here causes illegal behavior -// :159:30: note: when computing vector element at index '1' // :159:30: error: use of undefined value here causes illegal behavior -// :159:30: note: when computing vector element at index '1' // :159:30: error: use of undefined value here causes illegal behavior -// :159:30: note: when computing vector element at index '0' // :159:30: error: use of undefined value here causes illegal behavior -// :159:30: note: when computing vector element at index '0' // :159:30: error: use of undefined value here causes illegal behavior -// :159:30: note: when computing vector element at index '0' // :159:30: error: use of undefined value here causes illegal behavior -// :159:30: note: when computing vector element at index '0' // :159:30: error: use of undefined value here causes illegal behavior // :159:30: error: use of undefined value here causes illegal behavior // :159:30: error: use of undefined value here causes illegal behavior @@ -6180,21 +6164,13 @@ const std = @import("std"); // :159:30: error: use of undefined value here causes illegal behavior // :159:30: error: use of undefined value here causes illegal behavior // :159:30: error: use of undefined value here causes illegal behavior -// :159:30: note: when computing vector element at index '1' // :159:30: error: use of undefined value here causes illegal behavior -// :159:30: note: when computing vector element at index '1' // :159:30: error: use of undefined value here causes illegal behavior -// :159:30: note: when computing vector element at index '1' // :159:30: error: use of undefined value here causes illegal behavior -// :159:30: note: when computing vector element at index '1' // :159:30: error: use of undefined value here causes illegal behavior -// :159:30: note: when computing vector element at index '0' // :159:30: error: use of undefined value here causes illegal behavior -// :159:30: note: when computing vector element at index '0' // :159:30: error: use of undefined value here causes illegal behavior -// :159:30: note: when computing vector element at index '0' // :159:30: error: use of undefined value here causes illegal behavior -// :159:30: note: when computing vector element at index '0' // :159:30: error: use of undefined value here causes illegal behavior // :159:30: error: use of undefined value here causes illegal behavior // :159:30: error: use of undefined value here causes illegal behavior @@ -6202,21 +6178,13 @@ const std = @import("std"); // :159:30: error: use of undefined value here causes illegal behavior // :159:30: error: use of undefined value here causes illegal behavior // :159:30: error: use of undefined value here causes illegal behavior -// :159:30: note: when computing vector element at index '1' // :159:30: error: use of undefined value here causes illegal behavior -// :159:30: note: when computing vector element at index '1' // :159:30: error: use of undefined value here causes illegal behavior -// :159:30: note: when computing vector element at index '1' // :159:30: error: use of undefined value here causes illegal behavior -// :159:30: note: when computing vector element at index '1' // :159:30: error: use of undefined value here causes illegal behavior -// :159:30: note: when computing vector element at index '0' // :159:30: error: use of undefined value here causes illegal behavior -// :159:30: note: when computing vector element at index '0' // :159:30: error: use of undefined value here causes illegal behavior -// :159:30: note: when computing vector element at index '0' // :159:30: error: use of undefined value here causes illegal behavior -// :159:30: note: when computing vector element at index '0' // :159:30: error: use of undefined value here causes illegal behavior // :159:30: error: use of undefined value here causes illegal behavior // :159:30: error: use of undefined value here causes illegal behavior @@ -6224,13 +6192,9 @@ const std = @import("std"); // :159:30: error: use of undefined value here causes illegal behavior // :159:30: error: use of undefined value here causes illegal behavior // :159:30: error: use of undefined value here causes illegal behavior -// :159:30: note: when computing vector element at index '1' // :159:30: error: use of undefined value here causes illegal behavior -// :159:30: note: when computing vector element at index '1' // :159:30: error: use of undefined value here causes illegal behavior -// :159:30: note: when computing vector element at index '1' // :159:30: error: use of undefined value here causes illegal behavior -// :159:30: note: when computing vector element at index '1' // :159:30: error: use of undefined value here causes illegal behavior // :159:30: note: when computing vector element at index '0' // :159:30: error: use of undefined value here causes illegal behavior @@ -6240,19 +6204,21 @@ const std = @import("std"); // :159:30: error: use of undefined value here causes illegal behavior // :159:30: note: when computing vector element at index '0' // :159:30: error: use of undefined value here causes illegal behavior +// :159:30: note: when computing vector element at index '0' // :159:30: error: use of undefined value here causes illegal behavior +// :159:30: note: when computing vector element at index '0' // :159:30: error: use of undefined value here causes illegal behavior +// :159:30: note: when computing vector element at index '0' // :159:30: error: use of undefined value here causes illegal behavior +// :159:30: note: when computing vector element at index '0' // :159:30: error: use of undefined value here causes illegal behavior +// :159:30: note: when computing vector element at index '0' // :159:30: error: use of undefined value here causes illegal behavior +// :159:30: note: when computing vector element at index '0' // :159:30: error: use of undefined value here causes illegal behavior -// :159:30: note: when computing vector element at index '1' -// :159:30: error: use of undefined value here causes illegal behavior -// :159:30: note: when computing vector element at index '1' -// :159:30: error: use of undefined value here causes illegal behavior -// :159:30: note: when computing vector element at index '1' +// :159:30: note: when computing vector element at index '0' // :159:30: error: use of undefined value here causes illegal behavior -// :159:30: note: when computing vector element at index '1' +// :159:30: note: when computing vector element at index '0' // :159:30: error: use of undefined value here causes illegal behavior // :159:30: note: when computing vector element at index '0' // :159:30: error: use of undefined value here causes illegal behavior @@ -6262,19 +6228,25 @@ const std = @import("std"); // :159:30: error: use of undefined value here causes illegal behavior // :159:30: note: when computing vector element at index '0' // :159:30: error: use of undefined value here causes illegal behavior +// :159:30: note: when computing vector element at index '0' // :159:30: error: use of undefined value here causes illegal behavior +// :159:30: note: when computing vector element at index '0' // :159:30: error: use of undefined value here causes illegal behavior +// :159:30: note: when computing vector element at index '0' // :159:30: error: use of undefined value here causes illegal behavior +// :159:30: note: when computing vector element at index '0' // :159:30: error: use of undefined value here causes illegal behavior +// :159:30: note: when computing vector element at index '0' // :159:30: error: use of undefined value here causes illegal behavior +// :159:30: note: when computing vector element at index '0' // :159:30: error: use of undefined value here causes illegal behavior -// :159:30: note: when computing vector element at index '1' +// :159:30: note: when computing vector element at index '0' // :159:30: error: use of undefined value here causes illegal behavior -// :159:30: note: when computing vector element at index '1' +// :159:30: note: when computing vector element at index '0' // :159:30: error: use of undefined value here causes illegal behavior -// :159:30: note: when computing vector element at index '1' +// :159:30: note: when computing vector element at index '0' // :159:30: error: use of undefined value here causes illegal behavior -// :159:30: note: when computing vector element at index '1' +// :159:30: note: when computing vector element at index '0' // :159:30: error: use of undefined value here causes illegal behavior // :159:30: note: when computing vector element at index '0' // :159:30: error: use of undefined value here causes illegal behavior @@ -6284,19 +6256,25 @@ const std = @import("std"); // :159:30: error: use of undefined value here causes illegal behavior // :159:30: note: when computing vector element at index '0' // :159:30: error: use of undefined value here causes illegal behavior +// :159:30: note: when computing vector element at index '0' // :159:30: error: use of undefined value here causes illegal behavior +// :159:30: note: when computing vector element at index '0' // :159:30: error: use of undefined value here causes illegal behavior +// :159:30: note: when computing vector element at index '0' // :159:30: error: use of undefined value here causes illegal behavior +// :159:30: note: when computing vector element at index '0' // :159:30: error: use of undefined value here causes illegal behavior +// :159:30: note: when computing vector element at index '0' // :159:30: error: use of undefined value here causes illegal behavior +// :159:30: note: when computing vector element at index '0' // :159:30: error: use of undefined value here causes illegal behavior -// :159:30: note: when computing vector element at index '1' +// :159:30: note: when computing vector element at index '0' // :159:30: error: use of undefined value here causes illegal behavior -// :159:30: note: when computing vector element at index '1' +// :159:30: note: when computing vector element at index '0' // :159:30: error: use of undefined value here causes illegal behavior -// :159:30: note: when computing vector element at index '1' +// :159:30: note: when computing vector element at index '0' // :159:30: error: use of undefined value here causes illegal behavior -// :159:30: note: when computing vector element at index '1' +// :159:30: note: when computing vector element at index '0' // :159:30: error: use of undefined value here causes illegal behavior // :159:30: note: when computing vector element at index '0' // :159:30: error: use of undefined value here causes illegal behavior @@ -6306,11 +6284,17 @@ const std = @import("std"); // :159:30: error: use of undefined value here causes illegal behavior // :159:30: note: when computing vector element at index '0' // :159:30: error: use of undefined value here causes illegal behavior +// :159:30: note: when computing vector element at index '1' // :159:30: error: use of undefined value here causes illegal behavior +// :159:30: note: when computing vector element at index '1' // :159:30: error: use of undefined value here causes illegal behavior +// :159:30: note: when computing vector element at index '1' // :159:30: error: use of undefined value here causes illegal behavior +// :159:30: note: when computing vector element at index '1' // :159:30: error: use of undefined value here causes illegal behavior +// :159:30: note: when computing vector element at index '1' // :159:30: error: use of undefined value here causes illegal behavior +// :159:30: note: when computing vector element at index '1' // :159:30: error: use of undefined value here causes illegal behavior // :159:30: note: when computing vector element at index '1' // :159:30: error: use of undefined value here causes illegal behavior @@ -6320,19 +6304,25 @@ const std = @import("std"); // :159:30: error: use of undefined value here causes illegal behavior // :159:30: note: when computing vector element at index '1' // :159:30: error: use of undefined value here causes illegal behavior -// :159:30: note: when computing vector element at index '0' +// :159:30: note: when computing vector element at index '1' // :159:30: error: use of undefined value here causes illegal behavior -// :159:30: note: when computing vector element at index '0' +// :159:30: note: when computing vector element at index '1' // :159:30: error: use of undefined value here causes illegal behavior -// :159:30: note: when computing vector element at index '0' +// :159:30: note: when computing vector element at index '1' // :159:30: error: use of undefined value here causes illegal behavior -// :159:30: note: when computing vector element at index '0' +// :159:30: note: when computing vector element at index '1' // :159:30: error: use of undefined value here causes illegal behavior +// :159:30: note: when computing vector element at index '1' // :159:30: error: use of undefined value here causes illegal behavior +// :159:30: note: when computing vector element at index '1' // :159:30: error: use of undefined value here causes illegal behavior +// :159:30: note: when computing vector element at index '1' // :159:30: error: use of undefined value here causes illegal behavior +// :159:30: note: when computing vector element at index '1' // :159:30: error: use of undefined value here causes illegal behavior +// :159:30: note: when computing vector element at index '1' // :159:30: error: use of undefined value here causes illegal behavior +// :159:30: note: when computing vector element at index '1' // :159:30: error: use of undefined value here causes illegal behavior // :159:30: note: when computing vector element at index '1' // :159:30: error: use of undefined value here causes illegal behavior @@ -6342,19 +6332,27 @@ const std = @import("std"); // :159:30: error: use of undefined value here causes illegal behavior // :159:30: note: when computing vector element at index '1' // :159:30: error: use of undefined value here causes illegal behavior -// :159:30: note: when computing vector element at index '0' +// :159:30: note: when computing vector element at index '1' // :159:30: error: use of undefined value here causes illegal behavior -// :159:30: note: when computing vector element at index '0' +// :159:30: note: when computing vector element at index '1' // :159:30: error: use of undefined value here causes illegal behavior -// :159:30: note: when computing vector element at index '0' +// :159:30: note: when computing vector element at index '1' // :159:30: error: use of undefined value here causes illegal behavior -// :159:30: note: when computing vector element at index '0' +// :159:30: note: when computing vector element at index '1' +// :159:30: error: use of undefined value here causes illegal behavior +// :159:30: note: when computing vector element at index '1' // :159:30: error: use of undefined value here causes illegal behavior +// :159:30: note: when computing vector element at index '1' // :159:30: error: use of undefined value here causes illegal behavior +// :159:30: note: when computing vector element at index '1' // :159:30: error: use of undefined value here causes illegal behavior +// :159:30: note: when computing vector element at index '1' // :159:30: error: use of undefined value here causes illegal behavior +// :159:30: note: when computing vector element at index '1' // :159:30: error: use of undefined value here causes illegal behavior +// :159:30: note: when computing vector element at index '1' // :159:30: error: use of undefined value here causes illegal behavior +// :159:30: note: when computing vector element at index '1' // :159:30: error: use of undefined value here causes illegal behavior // :159:30: note: when computing vector element at index '1' // :159:30: error: use of undefined value here causes illegal behavior @@ -6364,13 +6362,15 @@ const std = @import("std"); // :159:30: error: use of undefined value here causes illegal behavior // :159:30: note: when computing vector element at index '1' // :159:30: error: use of undefined value here causes illegal behavior -// :159:30: note: when computing vector element at index '0' +// :159:30: note: when computing vector element at index '1' // :159:30: error: use of undefined value here causes illegal behavior -// :159:30: note: when computing vector element at index '0' +// :159:30: note: when computing vector element at index '1' // :159:30: error: use of undefined value here causes illegal behavior -// :159:30: note: when computing vector element at index '0' +// :159:30: note: when computing vector element at index '1' // :159:30: error: use of undefined value here causes illegal behavior -// :159:30: note: when computing vector element at index '0' +// :159:30: note: when computing vector element at index '1' +// :159:30: error: use of undefined value here causes illegal behavior +// :159:30: note: when computing vector element at index '1' // :163:30: error: use of undefined value here causes illegal behavior // :163:30: error: use of undefined value here causes illegal behavior // :163:30: error: use of undefined value here causes illegal behavior @@ -6378,21 +6378,13 @@ const std = @import("std"); // :163:30: error: use of undefined value here causes illegal behavior // :163:30: error: use of undefined value here causes illegal behavior // :163:30: error: use of undefined value here causes illegal behavior -// :163:30: note: when computing vector element at index '1' // :163:30: error: use of undefined value here causes illegal behavior -// :163:30: note: when computing vector element at index '1' // :163:30: error: use of undefined value here causes illegal behavior -// :163:30: note: when computing vector element at index '1' // :163:30: error: use of undefined value here causes illegal behavior -// :163:30: note: when computing vector element at index '1' // :163:30: error: use of undefined value here causes illegal behavior -// :163:30: note: when computing vector element at index '0' // :163:30: error: use of undefined value here causes illegal behavior -// :163:30: note: when computing vector element at index '0' // :163:30: error: use of undefined value here causes illegal behavior -// :163:30: note: when computing vector element at index '0' // :163:30: error: use of undefined value here causes illegal behavior -// :163:30: note: when computing vector element at index '0' // :163:30: error: use of undefined value here causes illegal behavior // :163:30: error: use of undefined value here causes illegal behavior // :163:30: error: use of undefined value here causes illegal behavior @@ -6400,21 +6392,13 @@ const std = @import("std"); // :163:30: error: use of undefined value here causes illegal behavior // :163:30: error: use of undefined value here causes illegal behavior // :163:30: error: use of undefined value here causes illegal behavior -// :163:30: note: when computing vector element at index '1' // :163:30: error: use of undefined value here causes illegal behavior -// :163:30: note: when computing vector element at index '1' // :163:30: error: use of undefined value here causes illegal behavior -// :163:30: note: when computing vector element at index '1' // :163:30: error: use of undefined value here causes illegal behavior -// :163:30: note: when computing vector element at index '1' // :163:30: error: use of undefined value here causes illegal behavior -// :163:30: note: when computing vector element at index '0' // :163:30: error: use of undefined value here causes illegal behavior -// :163:30: note: when computing vector element at index '0' // :163:30: error: use of undefined value here causes illegal behavior -// :163:30: note: when computing vector element at index '0' // :163:30: error: use of undefined value here causes illegal behavior -// :163:30: note: when computing vector element at index '0' // :163:30: error: use of undefined value here causes illegal behavior // :163:30: error: use of undefined value here causes illegal behavior // :163:30: error: use of undefined value here causes illegal behavior @@ -6422,21 +6406,13 @@ const std = @import("std"); // :163:30: error: use of undefined value here causes illegal behavior // :163:30: error: use of undefined value here causes illegal behavior // :163:30: error: use of undefined value here causes illegal behavior -// :163:30: note: when computing vector element at index '1' // :163:30: error: use of undefined value here causes illegal behavior -// :163:30: note: when computing vector element at index '1' // :163:30: error: use of undefined value here causes illegal behavior -// :163:30: note: when computing vector element at index '1' // :163:30: error: use of undefined value here causes illegal behavior -// :163:30: note: when computing vector element at index '1' // :163:30: error: use of undefined value here causes illegal behavior -// :163:30: note: when computing vector element at index '0' // :163:30: error: use of undefined value here causes illegal behavior -// :163:30: note: when computing vector element at index '0' // :163:30: error: use of undefined value here causes illegal behavior -// :163:30: note: when computing vector element at index '0' // :163:30: error: use of undefined value here causes illegal behavior -// :163:30: note: when computing vector element at index '0' // :163:30: error: use of undefined value here causes illegal behavior // :163:30: error: use of undefined value here causes illegal behavior // :163:30: error: use of undefined value here causes illegal behavior @@ -6444,21 +6420,13 @@ const std = @import("std"); // :163:30: error: use of undefined value here causes illegal behavior // :163:30: error: use of undefined value here causes illegal behavior // :163:30: error: use of undefined value here causes illegal behavior -// :163:30: note: when computing vector element at index '1' // :163:30: error: use of undefined value here causes illegal behavior -// :163:30: note: when computing vector element at index '1' // :163:30: error: use of undefined value here causes illegal behavior -// :163:30: note: when computing vector element at index '1' // :163:30: error: use of undefined value here causes illegal behavior -// :163:30: note: when computing vector element at index '1' // :163:30: error: use of undefined value here causes illegal behavior -// :163:30: note: when computing vector element at index '0' // :163:30: error: use of undefined value here causes illegal behavior -// :163:30: note: when computing vector element at index '0' // :163:30: error: use of undefined value here causes illegal behavior -// :163:30: note: when computing vector element at index '0' // :163:30: error: use of undefined value here causes illegal behavior -// :163:30: note: when computing vector element at index '0' // :163:30: error: use of undefined value here causes illegal behavior // :163:30: error: use of undefined value here causes illegal behavior // :163:30: error: use of undefined value here causes illegal behavior @@ -6466,13 +6434,9 @@ const std = @import("std"); // :163:30: error: use of undefined value here causes illegal behavior // :163:30: error: use of undefined value here causes illegal behavior // :163:30: error: use of undefined value here causes illegal behavior -// :163:30: note: when computing vector element at index '1' // :163:30: error: use of undefined value here causes illegal behavior -// :163:30: note: when computing vector element at index '1' // :163:30: error: use of undefined value here causes illegal behavior -// :163:30: note: when computing vector element at index '1' // :163:30: error: use of undefined value here causes illegal behavior -// :163:30: note: when computing vector element at index '1' // :163:30: error: use of undefined value here causes illegal behavior // :163:30: note: when computing vector element at index '0' // :163:30: error: use of undefined value here causes illegal behavior @@ -6482,19 +6446,21 @@ const std = @import("std"); // :163:30: error: use of undefined value here causes illegal behavior // :163:30: note: when computing vector element at index '0' // :163:30: error: use of undefined value here causes illegal behavior +// :163:30: note: when computing vector element at index '0' // :163:30: error: use of undefined value here causes illegal behavior +// :163:30: note: when computing vector element at index '0' // :163:30: error: use of undefined value here causes illegal behavior +// :163:30: note: when computing vector element at index '0' // :163:30: error: use of undefined value here causes illegal behavior +// :163:30: note: when computing vector element at index '0' // :163:30: error: use of undefined value here causes illegal behavior +// :163:30: note: when computing vector element at index '0' // :163:30: error: use of undefined value here causes illegal behavior +// :163:30: note: when computing vector element at index '0' // :163:30: error: use of undefined value here causes illegal behavior -// :163:30: note: when computing vector element at index '1' -// :163:30: error: use of undefined value here causes illegal behavior -// :163:30: note: when computing vector element at index '1' -// :163:30: error: use of undefined value here causes illegal behavior -// :163:30: note: when computing vector element at index '1' +// :163:30: note: when computing vector element at index '0' // :163:30: error: use of undefined value here causes illegal behavior -// :163:30: note: when computing vector element at index '1' +// :163:30: note: when computing vector element at index '0' // :163:30: error: use of undefined value here causes illegal behavior // :163:30: note: when computing vector element at index '0' // :163:30: error: use of undefined value here causes illegal behavior @@ -6504,19 +6470,25 @@ const std = @import("std"); // :163:30: error: use of undefined value here causes illegal behavior // :163:30: note: when computing vector element at index '0' // :163:30: error: use of undefined value here causes illegal behavior +// :163:30: note: when computing vector element at index '0' // :163:30: error: use of undefined value here causes illegal behavior +// :163:30: note: when computing vector element at index '0' // :163:30: error: use of undefined value here causes illegal behavior +// :163:30: note: when computing vector element at index '0' // :163:30: error: use of undefined value here causes illegal behavior +// :163:30: note: when computing vector element at index '0' // :163:30: error: use of undefined value here causes illegal behavior +// :163:30: note: when computing vector element at index '0' // :163:30: error: use of undefined value here causes illegal behavior +// :163:30: note: when computing vector element at index '0' // :163:30: error: use of undefined value here causes illegal behavior -// :163:30: note: when computing vector element at index '1' +// :163:30: note: when computing vector element at index '0' // :163:30: error: use of undefined value here causes illegal behavior -// :163:30: note: when computing vector element at index '1' +// :163:30: note: when computing vector element at index '0' // :163:30: error: use of undefined value here causes illegal behavior -// :163:30: note: when computing vector element at index '1' +// :163:30: note: when computing vector element at index '0' // :163:30: error: use of undefined value here causes illegal behavior -// :163:30: note: when computing vector element at index '1' +// :163:30: note: when computing vector element at index '0' // :163:30: error: use of undefined value here causes illegal behavior // :163:30: note: when computing vector element at index '0' // :163:30: error: use of undefined value here causes illegal behavior @@ -6526,19 +6498,25 @@ const std = @import("std"); // :163:30: error: use of undefined value here causes illegal behavior // :163:30: note: when computing vector element at index '0' // :163:30: error: use of undefined value here causes illegal behavior +// :163:30: note: when computing vector element at index '0' // :163:30: error: use of undefined value here causes illegal behavior +// :163:30: note: when computing vector element at index '0' // :163:30: error: use of undefined value here causes illegal behavior +// :163:30: note: when computing vector element at index '0' // :163:30: error: use of undefined value here causes illegal behavior +// :163:30: note: when computing vector element at index '0' // :163:30: error: use of undefined value here causes illegal behavior +// :163:30: note: when computing vector element at index '0' // :163:30: error: use of undefined value here causes illegal behavior +// :163:30: note: when computing vector element at index '0' // :163:30: error: use of undefined value here causes illegal behavior -// :163:30: note: when computing vector element at index '1' +// :163:30: note: when computing vector element at index '0' // :163:30: error: use of undefined value here causes illegal behavior -// :163:30: note: when computing vector element at index '1' +// :163:30: note: when computing vector element at index '0' // :163:30: error: use of undefined value here causes illegal behavior -// :163:30: note: when computing vector element at index '1' +// :163:30: note: when computing vector element at index '0' // :163:30: error: use of undefined value here causes illegal behavior -// :163:30: note: when computing vector element at index '1' +// :163:30: note: when computing vector element at index '0' // :163:30: error: use of undefined value here causes illegal behavior // :163:30: note: when computing vector element at index '0' // :163:30: error: use of undefined value here causes illegal behavior @@ -6548,11 +6526,19 @@ const std = @import("std"); // :163:30: error: use of undefined value here causes illegal behavior // :163:30: note: when computing vector element at index '0' // :163:30: error: use of undefined value here causes illegal behavior +// :163:30: note: when computing vector element at index '1' +// :163:30: error: use of undefined value here causes illegal behavior +// :163:30: note: when computing vector element at index '1' // :163:30: error: use of undefined value here causes illegal behavior +// :163:30: note: when computing vector element at index '1' // :163:30: error: use of undefined value here causes illegal behavior +// :163:30: note: when computing vector element at index '1' // :163:30: error: use of undefined value here causes illegal behavior +// :163:30: note: when computing vector element at index '1' // :163:30: error: use of undefined value here causes illegal behavior +// :163:30: note: when computing vector element at index '1' // :163:30: error: use of undefined value here causes illegal behavior +// :163:30: note: when computing vector element at index '1' // :163:30: error: use of undefined value here causes illegal behavior // :163:30: note: when computing vector element at index '1' // :163:30: error: use of undefined value here causes illegal behavior @@ -6562,19 +6548,27 @@ const std = @import("std"); // :163:30: error: use of undefined value here causes illegal behavior // :163:30: note: when computing vector element at index '1' // :163:30: error: use of undefined value here causes illegal behavior -// :163:30: note: when computing vector element at index '0' +// :163:30: note: when computing vector element at index '1' // :163:30: error: use of undefined value here causes illegal behavior -// :163:30: note: when computing vector element at index '0' +// :163:30: note: when computing vector element at index '1' // :163:30: error: use of undefined value here causes illegal behavior -// :163:30: note: when computing vector element at index '0' +// :163:30: note: when computing vector element at index '1' // :163:30: error: use of undefined value here causes illegal behavior -// :163:30: note: when computing vector element at index '0' +// :163:30: note: when computing vector element at index '1' +// :163:30: error: use of undefined value here causes illegal behavior +// :163:30: note: when computing vector element at index '1' // :163:30: error: use of undefined value here causes illegal behavior +// :163:30: note: when computing vector element at index '1' // :163:30: error: use of undefined value here causes illegal behavior +// :163:30: note: when computing vector element at index '1' // :163:30: error: use of undefined value here causes illegal behavior +// :163:30: note: when computing vector element at index '1' // :163:30: error: use of undefined value here causes illegal behavior +// :163:30: note: when computing vector element at index '1' // :163:30: error: use of undefined value here causes illegal behavior +// :163:30: note: when computing vector element at index '1' // :163:30: error: use of undefined value here causes illegal behavior +// :163:30: note: when computing vector element at index '1' // :163:30: error: use of undefined value here causes illegal behavior // :163:30: note: when computing vector element at index '1' // :163:30: error: use of undefined value here causes illegal behavior @@ -6584,19 +6578,25 @@ const std = @import("std"); // :163:30: error: use of undefined value here causes illegal behavior // :163:30: note: when computing vector element at index '1' // :163:30: error: use of undefined value here causes illegal behavior -// :163:30: note: when computing vector element at index '0' +// :163:30: note: when computing vector element at index '1' // :163:30: error: use of undefined value here causes illegal behavior -// :163:30: note: when computing vector element at index '0' +// :163:30: note: when computing vector element at index '1' // :163:30: error: use of undefined value here causes illegal behavior -// :163:30: note: when computing vector element at index '0' +// :163:30: note: when computing vector element at index '1' // :163:30: error: use of undefined value here causes illegal behavior -// :163:30: note: when computing vector element at index '0' +// :163:30: note: when computing vector element at index '1' // :163:30: error: use of undefined value here causes illegal behavior +// :163:30: note: when computing vector element at index '1' // :163:30: error: use of undefined value here causes illegal behavior +// :163:30: note: when computing vector element at index '1' // :163:30: error: use of undefined value here causes illegal behavior +// :163:30: note: when computing vector element at index '1' // :163:30: error: use of undefined value here causes illegal behavior +// :163:30: note: when computing vector element at index '1' // :163:30: error: use of undefined value here causes illegal behavior +// :163:30: note: when computing vector element at index '1' // :163:30: error: use of undefined value here causes illegal behavior +// :163:30: note: when computing vector element at index '1' // :163:30: error: use of undefined value here causes illegal behavior // :163:30: note: when computing vector element at index '1' // :163:30: error: use of undefined value here causes illegal behavior @@ -6606,13 +6606,13 @@ const std = @import("std"); // :163:30: error: use of undefined value here causes illegal behavior // :163:30: note: when computing vector element at index '1' // :163:30: error: use of undefined value here causes illegal behavior -// :163:30: note: when computing vector element at index '0' +// :163:30: note: when computing vector element at index '1' // :163:30: error: use of undefined value here causes illegal behavior -// :163:30: note: when computing vector element at index '0' +// :163:30: note: when computing vector element at index '1' // :163:30: error: use of undefined value here causes illegal behavior -// :163:30: note: when computing vector element at index '0' +// :163:30: note: when computing vector element at index '1' // :163:30: error: use of undefined value here causes illegal behavior -// :163:30: note: when computing vector element at index '0' +// :163:30: note: when computing vector element at index '1' // :167:25: error: use of undefined value here causes illegal behavior // :167:25: error: use of undefined value here causes illegal behavior // :167:25: error: use of undefined value here causes illegal behavior @@ -6620,21 +6620,13 @@ const std = @import("std"); // :167:25: error: use of undefined value here causes illegal behavior // :167:25: error: use of undefined value here causes illegal behavior // :167:25: error: use of undefined value here causes illegal behavior -// :167:25: note: when computing vector element at index '1' // :167:25: error: use of undefined value here causes illegal behavior -// :167:25: note: when computing vector element at index '1' // :167:25: error: use of undefined value here causes illegal behavior -// :167:25: note: when computing vector element at index '1' // :167:25: error: use of undefined value here causes illegal behavior -// :167:25: note: when computing vector element at index '1' // :167:25: error: use of undefined value here causes illegal behavior -// :167:25: note: when computing vector element at index '0' // :167:25: error: use of undefined value here causes illegal behavior -// :167:25: note: when computing vector element at index '0' // :167:25: error: use of undefined value here causes illegal behavior -// :167:25: note: when computing vector element at index '0' // :167:25: error: use of undefined value here causes illegal behavior -// :167:25: note: when computing vector element at index '0' // :167:25: error: use of undefined value here causes illegal behavior // :167:25: error: use of undefined value here causes illegal behavior // :167:25: error: use of undefined value here causes illegal behavior @@ -6642,21 +6634,13 @@ const std = @import("std"); // :167:25: error: use of undefined value here causes illegal behavior // :167:25: error: use of undefined value here causes illegal behavior // :167:25: error: use of undefined value here causes illegal behavior -// :167:25: note: when computing vector element at index '1' // :167:25: error: use of undefined value here causes illegal behavior -// :167:25: note: when computing vector element at index '1' // :167:25: error: use of undefined value here causes illegal behavior -// :167:25: note: when computing vector element at index '1' // :167:25: error: use of undefined value here causes illegal behavior -// :167:25: note: when computing vector element at index '1' // :167:25: error: use of undefined value here causes illegal behavior -// :167:25: note: when computing vector element at index '0' // :167:25: error: use of undefined value here causes illegal behavior -// :167:25: note: when computing vector element at index '0' // :167:25: error: use of undefined value here causes illegal behavior -// :167:25: note: when computing vector element at index '0' // :167:25: error: use of undefined value here causes illegal behavior -// :167:25: note: when computing vector element at index '0' // :167:25: error: use of undefined value here causes illegal behavior // :167:25: error: use of undefined value here causes illegal behavior // :167:25: error: use of undefined value here causes illegal behavior @@ -6664,21 +6648,13 @@ const std = @import("std"); // :167:25: error: use of undefined value here causes illegal behavior // :167:25: error: use of undefined value here causes illegal behavior // :167:25: error: use of undefined value here causes illegal behavior -// :167:25: note: when computing vector element at index '1' // :167:25: error: use of undefined value here causes illegal behavior -// :167:25: note: when computing vector element at index '1' // :167:25: error: use of undefined value here causes illegal behavior -// :167:25: note: when computing vector element at index '1' // :167:25: error: use of undefined value here causes illegal behavior -// :167:25: note: when computing vector element at index '1' // :167:25: error: use of undefined value here causes illegal behavior -// :167:25: note: when computing vector element at index '0' // :167:25: error: use of undefined value here causes illegal behavior -// :167:25: note: when computing vector element at index '0' // :167:25: error: use of undefined value here causes illegal behavior -// :167:25: note: when computing vector element at index '0' // :167:25: error: use of undefined value here causes illegal behavior -// :167:25: note: when computing vector element at index '0' // :167:25: error: use of undefined value here causes illegal behavior // :167:25: error: use of undefined value here causes illegal behavior // :167:25: error: use of undefined value here causes illegal behavior @@ -6686,21 +6662,13 @@ const std = @import("std"); // :167:25: error: use of undefined value here causes illegal behavior // :167:25: error: use of undefined value here causes illegal behavior // :167:25: error: use of undefined value here causes illegal behavior -// :167:25: note: when computing vector element at index '1' // :167:25: error: use of undefined value here causes illegal behavior -// :167:25: note: when computing vector element at index '1' // :167:25: error: use of undefined value here causes illegal behavior -// :167:25: note: when computing vector element at index '1' // :167:25: error: use of undefined value here causes illegal behavior -// :167:25: note: when computing vector element at index '1' // :167:25: error: use of undefined value here causes illegal behavior -// :167:25: note: when computing vector element at index '0' // :167:25: error: use of undefined value here causes illegal behavior -// :167:25: note: when computing vector element at index '0' // :167:25: error: use of undefined value here causes illegal behavior -// :167:25: note: when computing vector element at index '0' // :167:25: error: use of undefined value here causes illegal behavior -// :167:25: note: when computing vector element at index '0' // :167:25: error: use of undefined value here causes illegal behavior // :167:25: error: use of undefined value here causes illegal behavior // :167:25: error: use of undefined value here causes illegal behavior @@ -6708,13 +6676,9 @@ const std = @import("std"); // :167:25: error: use of undefined value here causes illegal behavior // :167:25: error: use of undefined value here causes illegal behavior // :167:25: error: use of undefined value here causes illegal behavior -// :167:25: note: when computing vector element at index '1' // :167:25: error: use of undefined value here causes illegal behavior -// :167:25: note: when computing vector element at index '1' // :167:25: error: use of undefined value here causes illegal behavior -// :167:25: note: when computing vector element at index '1' // :167:25: error: use of undefined value here causes illegal behavior -// :167:25: note: when computing vector element at index '1' // :167:25: error: use of undefined value here causes illegal behavior // :167:25: note: when computing vector element at index '0' // :167:25: error: use of undefined value here causes illegal behavior @@ -6724,19 +6688,21 @@ const std = @import("std"); // :167:25: error: use of undefined value here causes illegal behavior // :167:25: note: when computing vector element at index '0' // :167:25: error: use of undefined value here causes illegal behavior +// :167:25: note: when computing vector element at index '0' // :167:25: error: use of undefined value here causes illegal behavior +// :167:25: note: when computing vector element at index '0' // :167:25: error: use of undefined value here causes illegal behavior +// :167:25: note: when computing vector element at index '0' // :167:25: error: use of undefined value here causes illegal behavior +// :167:25: note: when computing vector element at index '0' // :167:25: error: use of undefined value here causes illegal behavior +// :167:25: note: when computing vector element at index '0' // :167:25: error: use of undefined value here causes illegal behavior +// :167:25: note: when computing vector element at index '0' // :167:25: error: use of undefined value here causes illegal behavior -// :167:25: note: when computing vector element at index '1' -// :167:25: error: use of undefined value here causes illegal behavior -// :167:25: note: when computing vector element at index '1' -// :167:25: error: use of undefined value here causes illegal behavior -// :167:25: note: when computing vector element at index '1' +// :167:25: note: when computing vector element at index '0' // :167:25: error: use of undefined value here causes illegal behavior -// :167:25: note: when computing vector element at index '1' +// :167:25: note: when computing vector element at index '0' // :167:25: error: use of undefined value here causes illegal behavior // :167:25: note: when computing vector element at index '0' // :167:25: error: use of undefined value here causes illegal behavior @@ -6746,19 +6712,25 @@ const std = @import("std"); // :167:25: error: use of undefined value here causes illegal behavior // :167:25: note: when computing vector element at index '0' // :167:25: error: use of undefined value here causes illegal behavior +// :167:25: note: when computing vector element at index '0' // :167:25: error: use of undefined value here causes illegal behavior +// :167:25: note: when computing vector element at index '0' // :167:25: error: use of undefined value here causes illegal behavior +// :167:25: note: when computing vector element at index '0' // :167:25: error: use of undefined value here causes illegal behavior +// :167:25: note: when computing vector element at index '0' // :167:25: error: use of undefined value here causes illegal behavior +// :167:25: note: when computing vector element at index '0' // :167:25: error: use of undefined value here causes illegal behavior +// :167:25: note: when computing vector element at index '0' // :167:25: error: use of undefined value here causes illegal behavior -// :167:25: note: when computing vector element at index '1' +// :167:25: note: when computing vector element at index '0' // :167:25: error: use of undefined value here causes illegal behavior -// :167:25: note: when computing vector element at index '1' +// :167:25: note: when computing vector element at index '0' // :167:25: error: use of undefined value here causes illegal behavior -// :167:25: note: when computing vector element at index '1' +// :167:25: note: when computing vector element at index '0' // :167:25: error: use of undefined value here causes illegal behavior -// :167:25: note: when computing vector element at index '1' +// :167:25: note: when computing vector element at index '0' // :167:25: error: use of undefined value here causes illegal behavior // :167:25: note: when computing vector element at index '0' // :167:25: error: use of undefined value here causes illegal behavior @@ -6768,19 +6740,25 @@ const std = @import("std"); // :167:25: error: use of undefined value here causes illegal behavior // :167:25: note: when computing vector element at index '0' // :167:25: error: use of undefined value here causes illegal behavior +// :167:25: note: when computing vector element at index '0' // :167:25: error: use of undefined value here causes illegal behavior +// :167:25: note: when computing vector element at index '0' // :167:25: error: use of undefined value here causes illegal behavior +// :167:25: note: when computing vector element at index '0' // :167:25: error: use of undefined value here causes illegal behavior +// :167:25: note: when computing vector element at index '0' // :167:25: error: use of undefined value here causes illegal behavior +// :167:25: note: when computing vector element at index '0' // :167:25: error: use of undefined value here causes illegal behavior +// :167:25: note: when computing vector element at index '0' // :167:25: error: use of undefined value here causes illegal behavior -// :167:25: note: when computing vector element at index '1' +// :167:25: note: when computing vector element at index '0' // :167:25: error: use of undefined value here causes illegal behavior -// :167:25: note: when computing vector element at index '1' +// :167:25: note: when computing vector element at index '0' // :167:25: error: use of undefined value here causes illegal behavior -// :167:25: note: when computing vector element at index '1' +// :167:25: note: when computing vector element at index '0' // :167:25: error: use of undefined value here causes illegal behavior -// :167:25: note: when computing vector element at index '1' +// :167:25: note: when computing vector element at index '0' // :167:25: error: use of undefined value here causes illegal behavior // :167:25: note: when computing vector element at index '0' // :167:25: error: use of undefined value here causes illegal behavior @@ -6790,11 +6768,21 @@ const std = @import("std"); // :167:25: error: use of undefined value here causes illegal behavior // :167:25: note: when computing vector element at index '0' // :167:25: error: use of undefined value here causes illegal behavior +// :167:25: note: when computing vector element at index '1' +// :167:25: error: use of undefined value here causes illegal behavior +// :167:25: note: when computing vector element at index '1' +// :167:25: error: use of undefined value here causes illegal behavior +// :167:25: note: when computing vector element at index '1' // :167:25: error: use of undefined value here causes illegal behavior +// :167:25: note: when computing vector element at index '1' // :167:25: error: use of undefined value here causes illegal behavior +// :167:25: note: when computing vector element at index '1' // :167:25: error: use of undefined value here causes illegal behavior +// :167:25: note: when computing vector element at index '1' // :167:25: error: use of undefined value here causes illegal behavior +// :167:25: note: when computing vector element at index '1' // :167:25: error: use of undefined value here causes illegal behavior +// :167:25: note: when computing vector element at index '1' // :167:25: error: use of undefined value here causes illegal behavior // :167:25: note: when computing vector element at index '1' // :167:25: error: use of undefined value here causes illegal behavior @@ -6804,19 +6792,25 @@ const std = @import("std"); // :167:25: error: use of undefined value here causes illegal behavior // :167:25: note: when computing vector element at index '1' // :167:25: error: use of undefined value here causes illegal behavior -// :167:25: note: when computing vector element at index '0' +// :167:25: note: when computing vector element at index '1' // :167:25: error: use of undefined value here causes illegal behavior -// :167:25: note: when computing vector element at index '0' +// :167:25: note: when computing vector element at index '1' // :167:25: error: use of undefined value here causes illegal behavior -// :167:25: note: when computing vector element at index '0' +// :167:25: note: when computing vector element at index '1' // :167:25: error: use of undefined value here causes illegal behavior -// :167:25: note: when computing vector element at index '0' +// :167:25: note: when computing vector element at index '1' // :167:25: error: use of undefined value here causes illegal behavior +// :167:25: note: when computing vector element at index '1' // :167:25: error: use of undefined value here causes illegal behavior +// :167:25: note: when computing vector element at index '1' // :167:25: error: use of undefined value here causes illegal behavior +// :167:25: note: when computing vector element at index '1' // :167:25: error: use of undefined value here causes illegal behavior +// :167:25: note: when computing vector element at index '1' // :167:25: error: use of undefined value here causes illegal behavior +// :167:25: note: when computing vector element at index '1' // :167:25: error: use of undefined value here causes illegal behavior +// :167:25: note: when computing vector element at index '1' // :167:25: error: use of undefined value here causes illegal behavior // :167:25: note: when computing vector element at index '1' // :167:25: error: use of undefined value here causes illegal behavior @@ -6826,19 +6820,25 @@ const std = @import("std"); // :167:25: error: use of undefined value here causes illegal behavior // :167:25: note: when computing vector element at index '1' // :167:25: error: use of undefined value here causes illegal behavior -// :167:25: note: when computing vector element at index '0' +// :167:25: note: when computing vector element at index '1' // :167:25: error: use of undefined value here causes illegal behavior -// :167:25: note: when computing vector element at index '0' +// :167:25: note: when computing vector element at index '1' // :167:25: error: use of undefined value here causes illegal behavior -// :167:25: note: when computing vector element at index '0' +// :167:25: note: when computing vector element at index '1' // :167:25: error: use of undefined value here causes illegal behavior -// :167:25: note: when computing vector element at index '0' +// :167:25: note: when computing vector element at index '1' // :167:25: error: use of undefined value here causes illegal behavior +// :167:25: note: when computing vector element at index '1' // :167:25: error: use of undefined value here causes illegal behavior +// :167:25: note: when computing vector element at index '1' // :167:25: error: use of undefined value here causes illegal behavior +// :167:25: note: when computing vector element at index '1' // :167:25: error: use of undefined value here causes illegal behavior +// :167:25: note: when computing vector element at index '1' // :167:25: error: use of undefined value here causes illegal behavior +// :167:25: note: when computing vector element at index '1' // :167:25: error: use of undefined value here causes illegal behavior +// :167:25: note: when computing vector element at index '1' // :167:25: error: use of undefined value here causes illegal behavior // :167:25: note: when computing vector element at index '1' // :167:25: error: use of undefined value here causes illegal behavior @@ -6848,13 +6848,13 @@ const std = @import("std"); // :167:25: error: use of undefined value here causes illegal behavior // :167:25: note: when computing vector element at index '1' // :167:25: error: use of undefined value here causes illegal behavior -// :167:25: note: when computing vector element at index '0' +// :167:25: note: when computing vector element at index '1' // :167:25: error: use of undefined value here causes illegal behavior -// :167:25: note: when computing vector element at index '0' +// :167:25: note: when computing vector element at index '1' // :167:25: error: use of undefined value here causes illegal behavior -// :167:25: note: when computing vector element at index '0' +// :167:25: note: when computing vector element at index '1' // :167:25: error: use of undefined value here causes illegal behavior -// :167:25: note: when computing vector element at index '0' +// :167:25: note: when computing vector element at index '1' // :171:25: error: use of undefined value here causes illegal behavior // :171:25: error: use of undefined value here causes illegal behavior // :171:25: error: use of undefined value here causes illegal behavior @@ -6862,21 +6862,13 @@ const std = @import("std"); // :171:25: error: use of undefined value here causes illegal behavior // :171:25: error: use of undefined value here causes illegal behavior // :171:25: error: use of undefined value here causes illegal behavior -// :171:25: note: when computing vector element at index '1' // :171:25: error: use of undefined value here causes illegal behavior -// :171:25: note: when computing vector element at index '1' // :171:25: error: use of undefined value here causes illegal behavior -// :171:25: note: when computing vector element at index '1' // :171:25: error: use of undefined value here causes illegal behavior -// :171:25: note: when computing vector element at index '1' // :171:25: error: use of undefined value here causes illegal behavior -// :171:25: note: when computing vector element at index '0' // :171:25: error: use of undefined value here causes illegal behavior -// :171:25: note: when computing vector element at index '0' // :171:25: error: use of undefined value here causes illegal behavior -// :171:25: note: when computing vector element at index '0' // :171:25: error: use of undefined value here causes illegal behavior -// :171:25: note: when computing vector element at index '0' // :171:25: error: use of undefined value here causes illegal behavior // :171:25: error: use of undefined value here causes illegal behavior // :171:25: error: use of undefined value here causes illegal behavior @@ -6884,21 +6876,13 @@ const std = @import("std"); // :171:25: error: use of undefined value here causes illegal behavior // :171:25: error: use of undefined value here causes illegal behavior // :171:25: error: use of undefined value here causes illegal behavior -// :171:25: note: when computing vector element at index '1' // :171:25: error: use of undefined value here causes illegal behavior -// :171:25: note: when computing vector element at index '1' // :171:25: error: use of undefined value here causes illegal behavior -// :171:25: note: when computing vector element at index '1' // :171:25: error: use of undefined value here causes illegal behavior -// :171:25: note: when computing vector element at index '1' // :171:25: error: use of undefined value here causes illegal behavior -// :171:25: note: when computing vector element at index '0' // :171:25: error: use of undefined value here causes illegal behavior -// :171:25: note: when computing vector element at index '0' // :171:25: error: use of undefined value here causes illegal behavior -// :171:25: note: when computing vector element at index '0' // :171:25: error: use of undefined value here causes illegal behavior -// :171:25: note: when computing vector element at index '0' // :171:25: error: use of undefined value here causes illegal behavior // :171:25: error: use of undefined value here causes illegal behavior // :171:25: error: use of undefined value here causes illegal behavior @@ -6906,21 +6890,13 @@ const std = @import("std"); // :171:25: error: use of undefined value here causes illegal behavior // :171:25: error: use of undefined value here causes illegal behavior // :171:25: error: use of undefined value here causes illegal behavior -// :171:25: note: when computing vector element at index '1' // :171:25: error: use of undefined value here causes illegal behavior -// :171:25: note: when computing vector element at index '1' // :171:25: error: use of undefined value here causes illegal behavior -// :171:25: note: when computing vector element at index '1' // :171:25: error: use of undefined value here causes illegal behavior -// :171:25: note: when computing vector element at index '1' // :171:25: error: use of undefined value here causes illegal behavior -// :171:25: note: when computing vector element at index '0' // :171:25: error: use of undefined value here causes illegal behavior -// :171:25: note: when computing vector element at index '0' // :171:25: error: use of undefined value here causes illegal behavior -// :171:25: note: when computing vector element at index '0' // :171:25: error: use of undefined value here causes illegal behavior -// :171:25: note: when computing vector element at index '0' // :171:25: error: use of undefined value here causes illegal behavior // :171:25: error: use of undefined value here causes illegal behavior // :171:25: error: use of undefined value here causes illegal behavior @@ -6928,21 +6904,13 @@ const std = @import("std"); // :171:25: error: use of undefined value here causes illegal behavior // :171:25: error: use of undefined value here causes illegal behavior // :171:25: error: use of undefined value here causes illegal behavior -// :171:25: note: when computing vector element at index '1' // :171:25: error: use of undefined value here causes illegal behavior -// :171:25: note: when computing vector element at index '1' // :171:25: error: use of undefined value here causes illegal behavior -// :171:25: note: when computing vector element at index '1' // :171:25: error: use of undefined value here causes illegal behavior -// :171:25: note: when computing vector element at index '1' // :171:25: error: use of undefined value here causes illegal behavior -// :171:25: note: when computing vector element at index '0' // :171:25: error: use of undefined value here causes illegal behavior -// :171:25: note: when computing vector element at index '0' // :171:25: error: use of undefined value here causes illegal behavior -// :171:25: note: when computing vector element at index '0' // :171:25: error: use of undefined value here causes illegal behavior -// :171:25: note: when computing vector element at index '0' // :171:25: error: use of undefined value here causes illegal behavior // :171:25: error: use of undefined value here causes illegal behavior // :171:25: error: use of undefined value here causes illegal behavior @@ -6950,13 +6918,9 @@ const std = @import("std"); // :171:25: error: use of undefined value here causes illegal behavior // :171:25: error: use of undefined value here causes illegal behavior // :171:25: error: use of undefined value here causes illegal behavior -// :171:25: note: when computing vector element at index '1' // :171:25: error: use of undefined value here causes illegal behavior -// :171:25: note: when computing vector element at index '1' // :171:25: error: use of undefined value here causes illegal behavior -// :171:25: note: when computing vector element at index '1' // :171:25: error: use of undefined value here causes illegal behavior -// :171:25: note: when computing vector element at index '1' // :171:25: error: use of undefined value here causes illegal behavior // :171:25: note: when computing vector element at index '0' // :171:25: error: use of undefined value here causes illegal behavior @@ -6966,19 +6930,21 @@ const std = @import("std"); // :171:25: error: use of undefined value here causes illegal behavior // :171:25: note: when computing vector element at index '0' // :171:25: error: use of undefined value here causes illegal behavior +// :171:25: note: when computing vector element at index '0' // :171:25: error: use of undefined value here causes illegal behavior +// :171:25: note: when computing vector element at index '0' // :171:25: error: use of undefined value here causes illegal behavior +// :171:25: note: when computing vector element at index '0' // :171:25: error: use of undefined value here causes illegal behavior +// :171:25: note: when computing vector element at index '0' // :171:25: error: use of undefined value here causes illegal behavior +// :171:25: note: when computing vector element at index '0' // :171:25: error: use of undefined value here causes illegal behavior +// :171:25: note: when computing vector element at index '0' // :171:25: error: use of undefined value here causes illegal behavior -// :171:25: note: when computing vector element at index '1' -// :171:25: error: use of undefined value here causes illegal behavior -// :171:25: note: when computing vector element at index '1' -// :171:25: error: use of undefined value here causes illegal behavior -// :171:25: note: when computing vector element at index '1' +// :171:25: note: when computing vector element at index '0' // :171:25: error: use of undefined value here causes illegal behavior -// :171:25: note: when computing vector element at index '1' +// :171:25: note: when computing vector element at index '0' // :171:25: error: use of undefined value here causes illegal behavior // :171:25: note: when computing vector element at index '0' // :171:25: error: use of undefined value here causes illegal behavior @@ -6988,19 +6954,25 @@ const std = @import("std"); // :171:25: error: use of undefined value here causes illegal behavior // :171:25: note: when computing vector element at index '0' // :171:25: error: use of undefined value here causes illegal behavior +// :171:25: note: when computing vector element at index '0' // :171:25: error: use of undefined value here causes illegal behavior +// :171:25: note: when computing vector element at index '0' // :171:25: error: use of undefined value here causes illegal behavior +// :171:25: note: when computing vector element at index '0' // :171:25: error: use of undefined value here causes illegal behavior +// :171:25: note: when computing vector element at index '0' // :171:25: error: use of undefined value here causes illegal behavior +// :171:25: note: when computing vector element at index '0' // :171:25: error: use of undefined value here causes illegal behavior +// :171:25: note: when computing vector element at index '0' // :171:25: error: use of undefined value here causes illegal behavior -// :171:25: note: when computing vector element at index '1' +// :171:25: note: when computing vector element at index '0' // :171:25: error: use of undefined value here causes illegal behavior -// :171:25: note: when computing vector element at index '1' +// :171:25: note: when computing vector element at index '0' // :171:25: error: use of undefined value here causes illegal behavior -// :171:25: note: when computing vector element at index '1' +// :171:25: note: when computing vector element at index '0' // :171:25: error: use of undefined value here causes illegal behavior -// :171:25: note: when computing vector element at index '1' +// :171:25: note: when computing vector element at index '0' // :171:25: error: use of undefined value here causes illegal behavior // :171:25: note: when computing vector element at index '0' // :171:25: error: use of undefined value here causes illegal behavior @@ -7010,19 +6982,25 @@ const std = @import("std"); // :171:25: error: use of undefined value here causes illegal behavior // :171:25: note: when computing vector element at index '0' // :171:25: error: use of undefined value here causes illegal behavior +// :171:25: note: when computing vector element at index '0' // :171:25: error: use of undefined value here causes illegal behavior +// :171:25: note: when computing vector element at index '0' // :171:25: error: use of undefined value here causes illegal behavior +// :171:25: note: when computing vector element at index '0' // :171:25: error: use of undefined value here causes illegal behavior +// :171:25: note: when computing vector element at index '0' // :171:25: error: use of undefined value here causes illegal behavior +// :171:25: note: when computing vector element at index '0' // :171:25: error: use of undefined value here causes illegal behavior +// :171:25: note: when computing vector element at index '0' // :171:25: error: use of undefined value here causes illegal behavior -// :171:25: note: when computing vector element at index '1' +// :171:25: note: when computing vector element at index '0' // :171:25: error: use of undefined value here causes illegal behavior -// :171:25: note: when computing vector element at index '1' +// :171:25: note: when computing vector element at index '0' // :171:25: error: use of undefined value here causes illegal behavior -// :171:25: note: when computing vector element at index '1' +// :171:25: note: when computing vector element at index '0' // :171:25: error: use of undefined value here causes illegal behavior -// :171:25: note: when computing vector element at index '1' +// :171:25: note: when computing vector element at index '0' // :171:25: error: use of undefined value here causes illegal behavior // :171:25: note: when computing vector element at index '0' // :171:25: error: use of undefined value here causes illegal behavior @@ -7032,11 +7010,17 @@ const std = @import("std"); // :171:25: error: use of undefined value here causes illegal behavior // :171:25: note: when computing vector element at index '0' // :171:25: error: use of undefined value here causes illegal behavior +// :171:25: note: when computing vector element at index '1' // :171:25: error: use of undefined value here causes illegal behavior +// :171:25: note: when computing vector element at index '1' // :171:25: error: use of undefined value here causes illegal behavior +// :171:25: note: when computing vector element at index '1' // :171:25: error: use of undefined value here causes illegal behavior +// :171:25: note: when computing vector element at index '1' // :171:25: error: use of undefined value here causes illegal behavior +// :171:25: note: when computing vector element at index '1' // :171:25: error: use of undefined value here causes illegal behavior +// :171:25: note: when computing vector element at index '1' // :171:25: error: use of undefined value here causes illegal behavior // :171:25: note: when computing vector element at index '1' // :171:25: error: use of undefined value here causes illegal behavior @@ -7046,19 +7030,25 @@ const std = @import("std"); // :171:25: error: use of undefined value here causes illegal behavior // :171:25: note: when computing vector element at index '1' // :171:25: error: use of undefined value here causes illegal behavior -// :171:25: note: when computing vector element at index '0' +// :171:25: note: when computing vector element at index '1' // :171:25: error: use of undefined value here causes illegal behavior -// :171:25: note: when computing vector element at index '0' +// :171:25: note: when computing vector element at index '1' // :171:25: error: use of undefined value here causes illegal behavior -// :171:25: note: when computing vector element at index '0' +// :171:25: note: when computing vector element at index '1' // :171:25: error: use of undefined value here causes illegal behavior -// :171:25: note: when computing vector element at index '0' +// :171:25: note: when computing vector element at index '1' // :171:25: error: use of undefined value here causes illegal behavior +// :171:25: note: when computing vector element at index '1' // :171:25: error: use of undefined value here causes illegal behavior +// :171:25: note: when computing vector element at index '1' // :171:25: error: use of undefined value here causes illegal behavior +// :171:25: note: when computing vector element at index '1' // :171:25: error: use of undefined value here causes illegal behavior +// :171:25: note: when computing vector element at index '1' // :171:25: error: use of undefined value here causes illegal behavior +// :171:25: note: when computing vector element at index '1' // :171:25: error: use of undefined value here causes illegal behavior +// :171:25: note: when computing vector element at index '1' // :171:25: error: use of undefined value here causes illegal behavior // :171:25: note: when computing vector element at index '1' // :171:25: error: use of undefined value here causes illegal behavior @@ -7068,19 +7058,25 @@ const std = @import("std"); // :171:25: error: use of undefined value here causes illegal behavior // :171:25: note: when computing vector element at index '1' // :171:25: error: use of undefined value here causes illegal behavior -// :171:25: note: when computing vector element at index '0' +// :171:25: note: when computing vector element at index '1' // :171:25: error: use of undefined value here causes illegal behavior -// :171:25: note: when computing vector element at index '0' +// :171:25: note: when computing vector element at index '1' // :171:25: error: use of undefined value here causes illegal behavior -// :171:25: note: when computing vector element at index '0' +// :171:25: note: when computing vector element at index '1' // :171:25: error: use of undefined value here causes illegal behavior -// :171:25: note: when computing vector element at index '0' +// :171:25: note: when computing vector element at index '1' // :171:25: error: use of undefined value here causes illegal behavior +// :171:25: note: when computing vector element at index '1' // :171:25: error: use of undefined value here causes illegal behavior +// :171:25: note: when computing vector element at index '1' // :171:25: error: use of undefined value here causes illegal behavior +// :171:25: note: when computing vector element at index '1' // :171:25: error: use of undefined value here causes illegal behavior +// :171:25: note: when computing vector element at index '1' // :171:25: error: use of undefined value here causes illegal behavior +// :171:25: note: when computing vector element at index '1' // :171:25: error: use of undefined value here causes illegal behavior +// :171:25: note: when computing vector element at index '1' // :171:25: error: use of undefined value here causes illegal behavior // :171:25: note: when computing vector element at index '1' // :171:25: error: use of undefined value here causes illegal behavior @@ -7090,37 +7086,33 @@ const std = @import("std"); // :171:25: error: use of undefined value here causes illegal behavior // :171:25: note: when computing vector element at index '1' // :171:25: error: use of undefined value here causes illegal behavior -// :171:25: note: when computing vector element at index '0' +// :171:25: note: when computing vector element at index '1' // :171:25: error: use of undefined value here causes illegal behavior -// :171:25: note: when computing vector element at index '0' +// :171:25: note: when computing vector element at index '1' // :171:25: error: use of undefined value here causes illegal behavior -// :171:25: note: when computing vector element at index '0' +// :171:25: note: when computing vector element at index '1' // :171:25: error: use of undefined value here causes illegal behavior -// :171:25: note: when computing vector element at index '0' +// :171:25: note: when computing vector element at index '1' +// :171:25: error: use of undefined value here causes illegal behavior +// :171:25: note: when computing vector element at index '1' +// :171:25: error: use of undefined value here causes illegal behavior +// :171:25: note: when computing vector element at index '1' // :177:17: error: use of undefined value here causes illegal behavior // :177:17: error: use of undefined value here causes illegal behavior // :177:17: error: use of undefined value here causes illegal behavior -// :177:17: note: when computing vector element at index '0' // :177:17: error: use of undefined value here causes illegal behavior -// :177:17: note: when computing vector element at index '0' // :177:17: error: use of undefined value here causes illegal behavior -// :177:17: note: when computing vector element at index '0' // :177:17: error: use of undefined value here causes illegal behavior -// :177:17: note: when computing vector element at index '0' // :177:17: error: use of undefined value here causes illegal behavior -// :177:17: note: when computing vector element at index '1' // :177:17: error: use of undefined value here causes illegal behavior -// :177:17: note: when computing vector element at index '1' // :177:17: error: use of undefined value here causes illegal behavior -// :177:17: note: when computing vector element at index '0' // :177:17: error: use of undefined value here causes illegal behavior -// :177:17: note: when computing vector element at index '0' // :177:17: error: use of undefined value here causes illegal behavior -// :177:17: note: when computing vector element at index '0' // :177:17: error: use of undefined value here causes illegal behavior -// :177:17: note: when computing vector element at index '0' // :177:17: error: use of undefined value here causes illegal behavior +// :177:17: note: when computing vector element at index '0' // :177:17: error: use of undefined value here causes illegal behavior +// :177:17: note: when computing vector element at index '0' // :177:17: error: use of undefined value here causes illegal behavior // :177:17: note: when computing vector element at index '0' // :177:17: error: use of undefined value here causes illegal behavior @@ -7130,9 +7122,9 @@ const std = @import("std"); // :177:17: error: use of undefined value here causes illegal behavior // :177:17: note: when computing vector element at index '0' // :177:17: error: use of undefined value here causes illegal behavior -// :177:17: note: when computing vector element at index '1' +// :177:17: note: when computing vector element at index '0' // :177:17: error: use of undefined value here causes illegal behavior -// :177:17: note: when computing vector element at index '1' +// :177:17: note: when computing vector element at index '0' // :177:17: error: use of undefined value here causes illegal behavior // :177:17: note: when computing vector element at index '0' // :177:17: error: use of undefined value here causes illegal behavior @@ -7142,7 +7134,9 @@ const std = @import("std"); // :177:17: error: use of undefined value here causes illegal behavior // :177:17: note: when computing vector element at index '0' // :177:17: error: use of undefined value here causes illegal behavior +// :177:17: note: when computing vector element at index '0' // :177:17: error: use of undefined value here causes illegal behavior +// :177:17: note: when computing vector element at index '0' // :177:17: error: use of undefined value here causes illegal behavior // :177:17: note: when computing vector element at index '0' // :177:17: error: use of undefined value here causes illegal behavior @@ -7152,9 +7146,9 @@ const std = @import("std"); // :177:17: error: use of undefined value here causes illegal behavior // :177:17: note: when computing vector element at index '0' // :177:17: error: use of undefined value here causes illegal behavior -// :177:17: note: when computing vector element at index '1' +// :177:17: note: when computing vector element at index '0' // :177:17: error: use of undefined value here causes illegal behavior -// :177:17: note: when computing vector element at index '1' +// :177:17: note: when computing vector element at index '0' // :177:17: error: use of undefined value here causes illegal behavior // :177:17: note: when computing vector element at index '0' // :177:17: error: use of undefined value here causes illegal behavior @@ -7164,7 +7158,9 @@ const std = @import("std"); // :177:17: error: use of undefined value here causes illegal behavior // :177:17: note: when computing vector element at index '0' // :177:17: error: use of undefined value here causes illegal behavior +// :177:17: note: when computing vector element at index '0' // :177:17: error: use of undefined value here causes illegal behavior +// :177:17: note: when computing vector element at index '0' // :177:17: error: use of undefined value here causes illegal behavior // :177:17: note: when computing vector element at index '0' // :177:17: error: use of undefined value here causes illegal behavior @@ -7174,9 +7170,9 @@ const std = @import("std"); // :177:17: error: use of undefined value here causes illegal behavior // :177:17: note: when computing vector element at index '0' // :177:17: error: use of undefined value here causes illegal behavior -// :177:17: note: when computing vector element at index '1' +// :177:17: note: when computing vector element at index '0' // :177:17: error: use of undefined value here causes illegal behavior -// :177:17: note: when computing vector element at index '1' +// :177:17: note: when computing vector element at index '0' // :177:17: error: use of undefined value here causes illegal behavior // :177:17: note: when computing vector element at index '0' // :177:17: error: use of undefined value here causes illegal behavior @@ -7186,7 +7182,9 @@ const std = @import("std"); // :177:17: error: use of undefined value here causes illegal behavior // :177:17: note: when computing vector element at index '0' // :177:17: error: use of undefined value here causes illegal behavior +// :177:17: note: when computing vector element at index '0' // :177:17: error: use of undefined value here causes illegal behavior +// :177:17: note: when computing vector element at index '0' // :177:17: error: use of undefined value here causes illegal behavior // :177:17: note: when computing vector element at index '0' // :177:17: error: use of undefined value here causes illegal behavior @@ -7196,9 +7194,9 @@ const std = @import("std"); // :177:17: error: use of undefined value here causes illegal behavior // :177:17: note: when computing vector element at index '0' // :177:17: error: use of undefined value here causes illegal behavior -// :177:17: note: when computing vector element at index '1' +// :177:17: note: when computing vector element at index '0' // :177:17: error: use of undefined value here causes illegal behavior -// :177:17: note: when computing vector element at index '1' +// :177:17: note: when computing vector element at index '0' // :177:17: error: use of undefined value here causes illegal behavior // :177:17: note: when computing vector element at index '0' // :177:17: error: use of undefined value here causes illegal behavior @@ -7208,27 +7206,29 @@ const std = @import("std"); // :177:17: error: use of undefined value here causes illegal behavior // :177:17: note: when computing vector element at index '0' // :177:17: error: use of undefined value here causes illegal behavior +// :177:17: note: when computing vector element at index '1' // :177:17: error: use of undefined value here causes illegal behavior +// :177:17: note: when computing vector element at index '1' // :177:17: error: use of undefined value here causes illegal behavior -// :177:17: note: when computing vector element at index '0' +// :177:17: note: when computing vector element at index '1' // :177:17: error: use of undefined value here causes illegal behavior -// :177:17: note: when computing vector element at index '0' +// :177:17: note: when computing vector element at index '1' // :177:17: error: use of undefined value here causes illegal behavior -// :177:17: note: when computing vector element at index '0' +// :177:17: note: when computing vector element at index '1' // :177:17: error: use of undefined value here causes illegal behavior -// :177:17: note: when computing vector element at index '0' +// :177:17: note: when computing vector element at index '1' // :177:17: error: use of undefined value here causes illegal behavior // :177:17: note: when computing vector element at index '1' // :177:17: error: use of undefined value here causes illegal behavior // :177:17: note: when computing vector element at index '1' // :177:17: error: use of undefined value here causes illegal behavior -// :177:17: note: when computing vector element at index '0' +// :177:17: note: when computing vector element at index '1' // :177:17: error: use of undefined value here causes illegal behavior -// :177:17: note: when computing vector element at index '0' +// :177:17: note: when computing vector element at index '1' // :177:17: error: use of undefined value here causes illegal behavior -// :177:17: note: when computing vector element at index '0' +// :177:17: note: when computing vector element at index '1' // :177:17: error: use of undefined value here causes illegal behavior -// :177:17: note: when computing vector element at index '0' +// :177:17: note: when computing vector element at index '1' // :177:21: error: use of undefined value here causes illegal behavior // :177:21: note: when computing vector element at index '0' // :177:21: error: use of undefined value here causes illegal behavior @@ -7256,27 +7256,19 @@ const std = @import("std"); // :180:17: error: use of undefined value here causes illegal behavior // :180:17: error: use of undefined value here causes illegal behavior // :180:17: error: use of undefined value here causes illegal behavior -// :180:17: note: when computing vector element at index '0' // :180:17: error: use of undefined value here causes illegal behavior -// :180:17: note: when computing vector element at index '0' // :180:17: error: use of undefined value here causes illegal behavior -// :180:17: note: when computing vector element at index '0' // :180:17: error: use of undefined value here causes illegal behavior -// :180:17: note: when computing vector element at index '0' // :180:17: error: use of undefined value here causes illegal behavior -// :180:17: note: when computing vector element at index '1' // :180:17: error: use of undefined value here causes illegal behavior -// :180:17: note: when computing vector element at index '1' // :180:17: error: use of undefined value here causes illegal behavior -// :180:17: note: when computing vector element at index '0' // :180:17: error: use of undefined value here causes illegal behavior -// :180:17: note: when computing vector element at index '0' // :180:17: error: use of undefined value here causes illegal behavior -// :180:17: note: when computing vector element at index '0' // :180:17: error: use of undefined value here causes illegal behavior -// :180:17: note: when computing vector element at index '0' // :180:17: error: use of undefined value here causes illegal behavior +// :180:17: note: when computing vector element at index '0' // :180:17: error: use of undefined value here causes illegal behavior +// :180:17: note: when computing vector element at index '0' // :180:17: error: use of undefined value here causes illegal behavior // :180:17: note: when computing vector element at index '0' // :180:17: error: use of undefined value here causes illegal behavior @@ -7286,9 +7278,9 @@ const std = @import("std"); // :180:17: error: use of undefined value here causes illegal behavior // :180:17: note: when computing vector element at index '0' // :180:17: error: use of undefined value here causes illegal behavior -// :180:17: note: when computing vector element at index '1' +// :180:17: note: when computing vector element at index '0' // :180:17: error: use of undefined value here causes illegal behavior -// :180:17: note: when computing vector element at index '1' +// :180:17: note: when computing vector element at index '0' // :180:17: error: use of undefined value here causes illegal behavior // :180:17: note: when computing vector element at index '0' // :180:17: error: use of undefined value here causes illegal behavior @@ -7298,7 +7290,9 @@ const std = @import("std"); // :180:17: error: use of undefined value here causes illegal behavior // :180:17: note: when computing vector element at index '0' // :180:17: error: use of undefined value here causes illegal behavior +// :180:17: note: when computing vector element at index '0' // :180:17: error: use of undefined value here causes illegal behavior +// :180:17: note: when computing vector element at index '0' // :180:17: error: use of undefined value here causes illegal behavior // :180:17: note: when computing vector element at index '0' // :180:17: error: use of undefined value here causes illegal behavior @@ -7308,9 +7302,9 @@ const std = @import("std"); // :180:17: error: use of undefined value here causes illegal behavior // :180:17: note: when computing vector element at index '0' // :180:17: error: use of undefined value here causes illegal behavior -// :180:17: note: when computing vector element at index '1' +// :180:17: note: when computing vector element at index '0' // :180:17: error: use of undefined value here causes illegal behavior -// :180:17: note: when computing vector element at index '1' +// :180:17: note: when computing vector element at index '0' // :180:17: error: use of undefined value here causes illegal behavior // :180:17: note: when computing vector element at index '0' // :180:17: error: use of undefined value here causes illegal behavior @@ -7320,7 +7314,9 @@ const std = @import("std"); // :180:17: error: use of undefined value here causes illegal behavior // :180:17: note: when computing vector element at index '0' // :180:17: error: use of undefined value here causes illegal behavior +// :180:17: note: when computing vector element at index '0' // :180:17: error: use of undefined value here causes illegal behavior +// :180:17: note: when computing vector element at index '0' // :180:17: error: use of undefined value here causes illegal behavior // :180:17: note: when computing vector element at index '0' // :180:17: error: use of undefined value here causes illegal behavior @@ -7330,9 +7326,9 @@ const std = @import("std"); // :180:17: error: use of undefined value here causes illegal behavior // :180:17: note: when computing vector element at index '0' // :180:17: error: use of undefined value here causes illegal behavior -// :180:17: note: when computing vector element at index '1' +// :180:17: note: when computing vector element at index '0' // :180:17: error: use of undefined value here causes illegal behavior -// :180:17: note: when computing vector element at index '1' +// :180:17: note: when computing vector element at index '0' // :180:17: error: use of undefined value here causes illegal behavior // :180:17: note: when computing vector element at index '0' // :180:17: error: use of undefined value here causes illegal behavior @@ -7342,7 +7338,9 @@ const std = @import("std"); // :180:17: error: use of undefined value here causes illegal behavior // :180:17: note: when computing vector element at index '0' // :180:17: error: use of undefined value here causes illegal behavior +// :180:17: note: when computing vector element at index '0' // :180:17: error: use of undefined value here causes illegal behavior +// :180:17: note: when computing vector element at index '0' // :180:17: error: use of undefined value here causes illegal behavior // :180:17: note: when computing vector element at index '0' // :180:17: error: use of undefined value here causes illegal behavior @@ -7352,9 +7350,9 @@ const std = @import("std"); // :180:17: error: use of undefined value here causes illegal behavior // :180:17: note: when computing vector element at index '0' // :180:17: error: use of undefined value here causes illegal behavior -// :180:17: note: when computing vector element at index '1' +// :180:17: note: when computing vector element at index '0' // :180:17: error: use of undefined value here causes illegal behavior -// :180:17: note: when computing vector element at index '1' +// :180:17: note: when computing vector element at index '0' // :180:17: error: use of undefined value here causes illegal behavior // :180:17: note: when computing vector element at index '0' // :180:17: error: use of undefined value here causes illegal behavior @@ -7364,27 +7362,29 @@ const std = @import("std"); // :180:17: error: use of undefined value here causes illegal behavior // :180:17: note: when computing vector element at index '0' // :180:17: error: use of undefined value here causes illegal behavior +// :180:17: note: when computing vector element at index '1' // :180:17: error: use of undefined value here causes illegal behavior +// :180:17: note: when computing vector element at index '1' // :180:17: error: use of undefined value here causes illegal behavior -// :180:17: note: when computing vector element at index '0' +// :180:17: note: when computing vector element at index '1' // :180:17: error: use of undefined value here causes illegal behavior -// :180:17: note: when computing vector element at index '0' +// :180:17: note: when computing vector element at index '1' // :180:17: error: use of undefined value here causes illegal behavior -// :180:17: note: when computing vector element at index '0' +// :180:17: note: when computing vector element at index '1' // :180:17: error: use of undefined value here causes illegal behavior -// :180:17: note: when computing vector element at index '0' +// :180:17: note: when computing vector element at index '1' // :180:17: error: use of undefined value here causes illegal behavior // :180:17: note: when computing vector element at index '1' // :180:17: error: use of undefined value here causes illegal behavior // :180:17: note: when computing vector element at index '1' // :180:17: error: use of undefined value here causes illegal behavior -// :180:17: note: when computing vector element at index '0' +// :180:17: note: when computing vector element at index '1' // :180:17: error: use of undefined value here causes illegal behavior -// :180:17: note: when computing vector element at index '0' +// :180:17: note: when computing vector element at index '1' // :180:17: error: use of undefined value here causes illegal behavior -// :180:17: note: when computing vector element at index '0' +// :180:17: note: when computing vector element at index '1' // :180:17: error: use of undefined value here causes illegal behavior -// :180:17: note: when computing vector element at index '0' +// :180:17: note: when computing vector element at index '1' // :180:21: error: use of undefined value here causes illegal behavior // :180:21: note: when computing vector element at index '0' // :180:21: error: use of undefined value here causes illegal behavior @@ -7412,27 +7412,19 @@ const std = @import("std"); // :183:17: error: use of undefined value here causes illegal behavior // :183:17: error: use of undefined value here causes illegal behavior // :183:17: error: use of undefined value here causes illegal behavior -// :183:17: note: when computing vector element at index '0' // :183:17: error: use of undefined value here causes illegal behavior -// :183:17: note: when computing vector element at index '0' // :183:17: error: use of undefined value here causes illegal behavior -// :183:17: note: when computing vector element at index '0' // :183:17: error: use of undefined value here causes illegal behavior -// :183:17: note: when computing vector element at index '0' // :183:17: error: use of undefined value here causes illegal behavior -// :183:17: note: when computing vector element at index '1' // :183:17: error: use of undefined value here causes illegal behavior -// :183:17: note: when computing vector element at index '1' // :183:17: error: use of undefined value here causes illegal behavior -// :183:17: note: when computing vector element at index '0' // :183:17: error: use of undefined value here causes illegal behavior -// :183:17: note: when computing vector element at index '0' // :183:17: error: use of undefined value here causes illegal behavior -// :183:17: note: when computing vector element at index '0' // :183:17: error: use of undefined value here causes illegal behavior -// :183:17: note: when computing vector element at index '0' // :183:17: error: use of undefined value here causes illegal behavior +// :183:17: note: when computing vector element at index '0' // :183:17: error: use of undefined value here causes illegal behavior +// :183:17: note: when computing vector element at index '0' // :183:17: error: use of undefined value here causes illegal behavior // :183:17: note: when computing vector element at index '0' // :183:17: error: use of undefined value here causes illegal behavior @@ -7442,9 +7434,9 @@ const std = @import("std"); // :183:17: error: use of undefined value here causes illegal behavior // :183:17: note: when computing vector element at index '0' // :183:17: error: use of undefined value here causes illegal behavior -// :183:17: note: when computing vector element at index '1' +// :183:17: note: when computing vector element at index '0' // :183:17: error: use of undefined value here causes illegal behavior -// :183:17: note: when computing vector element at index '1' +// :183:17: note: when computing vector element at index '0' // :183:17: error: use of undefined value here causes illegal behavior // :183:17: note: when computing vector element at index '0' // :183:17: error: use of undefined value here causes illegal behavior @@ -7454,7 +7446,9 @@ const std = @import("std"); // :183:17: error: use of undefined value here causes illegal behavior // :183:17: note: when computing vector element at index '0' // :183:17: error: use of undefined value here causes illegal behavior +// :183:17: note: when computing vector element at index '0' // :183:17: error: use of undefined value here causes illegal behavior +// :183:17: note: when computing vector element at index '0' // :183:17: error: use of undefined value here causes illegal behavior // :183:17: note: when computing vector element at index '0' // :183:17: error: use of undefined value here causes illegal behavior @@ -7464,9 +7458,9 @@ const std = @import("std"); // :183:17: error: use of undefined value here causes illegal behavior // :183:17: note: when computing vector element at index '0' // :183:17: error: use of undefined value here causes illegal behavior -// :183:17: note: when computing vector element at index '1' +// :183:17: note: when computing vector element at index '0' // :183:17: error: use of undefined value here causes illegal behavior -// :183:17: note: when computing vector element at index '1' +// :183:17: note: when computing vector element at index '0' // :183:17: error: use of undefined value here causes illegal behavior // :183:17: note: when computing vector element at index '0' // :183:17: error: use of undefined value here causes illegal behavior @@ -7476,7 +7470,9 @@ const std = @import("std"); // :183:17: error: use of undefined value here causes illegal behavior // :183:17: note: when computing vector element at index '0' // :183:17: error: use of undefined value here causes illegal behavior +// :183:17: note: when computing vector element at index '0' // :183:17: error: use of undefined value here causes illegal behavior +// :183:17: note: when computing vector element at index '0' // :183:17: error: use of undefined value here causes illegal behavior // :183:17: note: when computing vector element at index '0' // :183:17: error: use of undefined value here causes illegal behavior @@ -7486,9 +7482,9 @@ const std = @import("std"); // :183:17: error: use of undefined value here causes illegal behavior // :183:17: note: when computing vector element at index '0' // :183:17: error: use of undefined value here causes illegal behavior -// :183:17: note: when computing vector element at index '1' +// :183:17: note: when computing vector element at index '0' // :183:17: error: use of undefined value here causes illegal behavior -// :183:17: note: when computing vector element at index '1' +// :183:17: note: when computing vector element at index '0' // :183:17: error: use of undefined value here causes illegal behavior // :183:17: note: when computing vector element at index '0' // :183:17: error: use of undefined value here causes illegal behavior @@ -7498,7 +7494,9 @@ const std = @import("std"); // :183:17: error: use of undefined value here causes illegal behavior // :183:17: note: when computing vector element at index '0' // :183:17: error: use of undefined value here causes illegal behavior +// :183:17: note: when computing vector element at index '0' // :183:17: error: use of undefined value here causes illegal behavior +// :183:17: note: when computing vector element at index '0' // :183:17: error: use of undefined value here causes illegal behavior // :183:17: note: when computing vector element at index '0' // :183:17: error: use of undefined value here causes illegal behavior @@ -7508,9 +7506,9 @@ const std = @import("std"); // :183:17: error: use of undefined value here causes illegal behavior // :183:17: note: when computing vector element at index '0' // :183:17: error: use of undefined value here causes illegal behavior -// :183:17: note: when computing vector element at index '1' +// :183:17: note: when computing vector element at index '0' // :183:17: error: use of undefined value here causes illegal behavior -// :183:17: note: when computing vector element at index '1' +// :183:17: note: when computing vector element at index '0' // :183:17: error: use of undefined value here causes illegal behavior // :183:17: note: when computing vector element at index '0' // :183:17: error: use of undefined value here causes illegal behavior @@ -7520,27 +7518,29 @@ const std = @import("std"); // :183:17: error: use of undefined value here causes illegal behavior // :183:17: note: when computing vector element at index '0' // :183:17: error: use of undefined value here causes illegal behavior +// :183:17: note: when computing vector element at index '1' // :183:17: error: use of undefined value here causes illegal behavior +// :183:17: note: when computing vector element at index '1' // :183:17: error: use of undefined value here causes illegal behavior -// :183:17: note: when computing vector element at index '0' +// :183:17: note: when computing vector element at index '1' // :183:17: error: use of undefined value here causes illegal behavior -// :183:17: note: when computing vector element at index '0' +// :183:17: note: when computing vector element at index '1' // :183:17: error: use of undefined value here causes illegal behavior -// :183:17: note: when computing vector element at index '0' +// :183:17: note: when computing vector element at index '1' // :183:17: error: use of undefined value here causes illegal behavior -// :183:17: note: when computing vector element at index '0' +// :183:17: note: when computing vector element at index '1' // :183:17: error: use of undefined value here causes illegal behavior // :183:17: note: when computing vector element at index '1' // :183:17: error: use of undefined value here causes illegal behavior // :183:17: note: when computing vector element at index '1' // :183:17: error: use of undefined value here causes illegal behavior -// :183:17: note: when computing vector element at index '0' +// :183:17: note: when computing vector element at index '1' // :183:17: error: use of undefined value here causes illegal behavior -// :183:17: note: when computing vector element at index '0' +// :183:17: note: when computing vector element at index '1' // :183:17: error: use of undefined value here causes illegal behavior -// :183:17: note: when computing vector element at index '0' +// :183:17: note: when computing vector element at index '1' // :183:17: error: use of undefined value here causes illegal behavior -// :183:17: note: when computing vector element at index '0' +// :183:17: note: when computing vector element at index '1' // :183:21: error: use of undefined value here causes illegal behavior // :183:21: note: when computing vector element at index '0' // :183:21: error: use of undefined value here causes illegal behavior diff --git a/test/cases/compile_errors/undef_arith_returns_undef.zig b/test/cases/compile_errors/undef_arith_returns_undef.zig @@ -681,1800 +681,1360 @@ inline fn testFloatWithValue(comptime Float: type, x: Float) void { // @as(@Vector(2, u8), undefined) // @as(@Vector(2, u8), [runtime value]) // @as(@Vector(2, u8), [runtime value]) -// @as(i8, undefined) -// @as(i8, undefined) -// @as(@Vector(2, i8), .{ 6, undefined }) -// @as(@Vector(2, i8), .{ undefined, 6 }) -// @as(@Vector(2, i8), undefined) -// @as(@Vector(2, i8), .{ 6, undefined }) -// @as(@Vector(2, i8), .{ 6, undefined }) -// @as(@Vector(2, i8), undefined) -// @as(@Vector(2, i8), undefined) -// @as(@Vector(2, i8), .{ undefined, 6 }) -// @as(@Vector(2, i8), undefined) -// @as(@Vector(2, i8), .{ undefined, 6 }) -// @as(@Vector(2, i8), undefined) -// @as(@Vector(2, i8), undefined) -// @as(@Vector(2, i8), undefined) -// @as(@Vector(2, i8), undefined) -// @as(@Vector(2, i8), undefined) -// @as(i8, undefined) -// @as(i8, undefined) -// @as(@Vector(2, i8), .{ 6, undefined }) -// @as(@Vector(2, i8), .{ undefined, 6 }) -// @as(@Vector(2, i8), undefined) -// @as(@Vector(2, i8), .{ 6, undefined }) -// @as(@Vector(2, i8), .{ 6, undefined }) -// @as(@Vector(2, i8), undefined) -// @as(@Vector(2, i8), undefined) -// @as(@Vector(2, i8), .{ undefined, 6 }) -// @as(@Vector(2, i8), undefined) -// @as(@Vector(2, i8), .{ undefined, 6 }) -// @as(@Vector(2, i8), undefined) -// @as(@Vector(2, i8), undefined) -// @as(@Vector(2, i8), undefined) -// @as(@Vector(2, i8), undefined) -// @as(@Vector(2, i8), undefined) -// @as(i8, undefined) -// @as(i8, undefined) -// @as(@Vector(2, i8), .{ 0, undefined }) -// @as(@Vector(2, i8), .{ undefined, 0 }) -// @as(@Vector(2, i8), undefined) -// @as(@Vector(2, i8), .{ 0, undefined }) -// @as(@Vector(2, i8), .{ 0, undefined }) -// @as(@Vector(2, i8), undefined) -// @as(@Vector(2, i8), undefined) -// @as(@Vector(2, i8), .{ undefined, 0 }) -// @as(@Vector(2, i8), undefined) -// @as(@Vector(2, i8), .{ undefined, 0 }) -// @as(@Vector(2, i8), undefined) -// @as(@Vector(2, i8), undefined) -// @as(@Vector(2, i8), undefined) -// @as(@Vector(2, i8), undefined) -// @as(@Vector(2, i8), undefined) -// @as(i8, undefined) -// @as(i8, undefined) -// @as(@Vector(2, i8), .{ 0, undefined }) -// @as(@Vector(2, i8), .{ undefined, 0 }) -// @as(@Vector(2, i8), undefined) -// @as(@Vector(2, i8), .{ 0, undefined }) -// @as(@Vector(2, i8), .{ 0, undefined }) -// @as(@Vector(2, i8), undefined) -// @as(@Vector(2, i8), undefined) -// @as(@Vector(2, i8), .{ undefined, 0 }) -// @as(@Vector(2, i8), undefined) -// @as(@Vector(2, i8), .{ undefined, 0 }) -// @as(@Vector(2, i8), undefined) -// @as(@Vector(2, i8), undefined) -// @as(@Vector(2, i8), undefined) -// @as(@Vector(2, i8), undefined) -// @as(@Vector(2, i8), undefined) -// @as(i8, undefined) -// @as(i8, undefined) -// @as(@Vector(2, i8), .{ 9, undefined }) -// @as(@Vector(2, i8), .{ undefined, 9 }) -// @as(@Vector(2, i8), undefined) -// @as(@Vector(2, i8), .{ 9, undefined }) -// @as(@Vector(2, i8), .{ 9, undefined }) -// @as(@Vector(2, i8), undefined) -// @as(@Vector(2, i8), undefined) -// @as(@Vector(2, i8), .{ undefined, 9 }) -// @as(@Vector(2, i8), undefined) -// @as(@Vector(2, i8), .{ undefined, 9 }) -// @as(@Vector(2, i8), undefined) -// @as(@Vector(2, i8), undefined) -// @as(@Vector(2, i8), undefined) -// @as(@Vector(2, i8), undefined) -// @as(@Vector(2, i8), undefined) -// @as(i8, undefined) -// @as(i8, undefined) -// @as(@Vector(2, i8), .{ 9, undefined }) -// @as(@Vector(2, i8), .{ undefined, 9 }) -// @as(@Vector(2, i8), undefined) -// @as(@Vector(2, i8), .{ 9, undefined }) -// @as(@Vector(2, i8), .{ 9, undefined }) -// @as(@Vector(2, i8), undefined) -// @as(@Vector(2, i8), undefined) -// @as(@Vector(2, i8), .{ undefined, 9 }) -// @as(@Vector(2, i8), undefined) -// @as(@Vector(2, i8), .{ undefined, 9 }) -// @as(@Vector(2, i8), undefined) -// @as(@Vector(2, i8), undefined) -// @as(@Vector(2, i8), undefined) -// @as(@Vector(2, i8), undefined) -// @as(@Vector(2, i8), undefined) -// @as(i8, undefined) -// @as(i8, undefined) -// @as(@Vector(2, i8), .{ 0, undefined }) -// @as(@Vector(2, i8), .{ undefined, 0 }) -// @as(@Vector(2, i8), undefined) -// @as(@Vector(2, i8), .{ 0, undefined }) -// @as(@Vector(2, i8), .{ 0, undefined }) -// @as(@Vector(2, i8), undefined) -// @as(@Vector(2, i8), undefined) -// @as(@Vector(2, i8), .{ undefined, 0 }) -// @as(@Vector(2, i8), undefined) -// @as(@Vector(2, i8), .{ undefined, 0 }) -// @as(@Vector(2, i8), undefined) -// @as(@Vector(2, i8), undefined) -// @as(@Vector(2, i8), undefined) -// @as(@Vector(2, i8), undefined) -// @as(@Vector(2, i8), undefined) -// @as(i8, undefined) -// @as(@Vector(2, i8), undefined) -// @as(i8, undefined) -// @as(i8, undefined) -// @as(@Vector(2, i8), undefined) -// @as(@Vector(2, i8), undefined) -// @as(i8, undefined) -// @as(@Vector(2, i8), undefined) -// @as(i8, undefined) -// @as(i8, undefined) -// @as(@Vector(2, i8), [runtime value]) -// @as(@Vector(2, i8), [runtime value]) -// @as(@Vector(2, i8), undefined) -// @as(@Vector(2, i8), [runtime value]) -// @as(@Vector(2, i8), [runtime value]) -// @as(@Vector(2, i8), [runtime value]) -// @as(@Vector(2, i8), undefined) -// @as(@Vector(2, i8), [runtime value]) -// @as(@Vector(2, i8), [runtime value]) -// @as(@Vector(2, i8), [runtime value]) -// @as(@Vector(2, i8), undefined) -// @as(@Vector(2, i8), undefined) -// @as(@Vector(2, i8), undefined) -// @as(@Vector(2, i8), undefined) -// @as(@Vector(2, i8), undefined) -// @as(i8, undefined) -// @as(i8, undefined) -// @as(@Vector(2, i8), [runtime value]) -// @as(@Vector(2, i8), [runtime value]) -// @as(@Vector(2, i8), undefined) -// @as(@Vector(2, i8), [runtime value]) -// @as(@Vector(2, i8), [runtime value]) -// @as(@Vector(2, i8), [runtime value]) -// @as(@Vector(2, i8), undefined) -// @as(@Vector(2, i8), [runtime value]) -// @as(@Vector(2, i8), [runtime value]) -// @as(@Vector(2, i8), [runtime value]) -// @as(@Vector(2, i8), undefined) -// @as(@Vector(2, i8), undefined) -// @as(@Vector(2, i8), undefined) -// @as(@Vector(2, i8), undefined) -// @as(@Vector(2, i8), undefined) -// @as(i8, undefined) -// @as(i8, undefined) -// @as(@Vector(2, i8), [runtime value]) -// @as(@Vector(2, i8), [runtime value]) -// @as(@Vector(2, i8), undefined) -// @as(@Vector(2, i8), [runtime value]) -// @as(@Vector(2, i8), [runtime value]) -// @as(@Vector(2, i8), [runtime value]) -// @as(@Vector(2, i8), undefined) -// @as(@Vector(2, i8), [runtime value]) -// @as(@Vector(2, i8), [runtime value]) -// @as(@Vector(2, i8), [runtime value]) -// @as(@Vector(2, i8), undefined) -// @as(@Vector(2, i8), undefined) -// @as(@Vector(2, i8), undefined) -// @as(@Vector(2, i8), undefined) -// @as(@Vector(2, i8), undefined) -// @as(i8, undefined) -// @as(i8, undefined) -// @as(@Vector(2, i8), [runtime value]) -// @as(@Vector(2, i8), [runtime value]) -// @as(@Vector(2, i8), undefined) -// @as(@Vector(2, i8), [runtime value]) -// @as(@Vector(2, i8), [runtime value]) -// @as(@Vector(2, i8), [runtime value]) -// @as(@Vector(2, i8), undefined) -// @as(@Vector(2, i8), [runtime value]) -// @as(@Vector(2, i8), [runtime value]) -// @as(@Vector(2, i8), [runtime value]) -// @as(@Vector(2, i8), undefined) -// @as(@Vector(2, i8), undefined) -// @as(@Vector(2, i8), undefined) -// @as(@Vector(2, i8), undefined) -// @as(@Vector(2, i8), undefined) -// @as(i8, undefined) -// @as(i8, undefined) -// @as(@Vector(2, i8), [runtime value]) -// @as(@Vector(2, i8), [runtime value]) -// @as(@Vector(2, i8), undefined) -// @as(@Vector(2, i8), [runtime value]) -// @as(@Vector(2, i8), [runtime value]) -// @as(@Vector(2, i8), [runtime value]) -// @as(@Vector(2, i8), undefined) -// @as(@Vector(2, i8), [runtime value]) -// @as(@Vector(2, i8), [runtime value]) -// @as(@Vector(2, i8), [runtime value]) -// @as(@Vector(2, i8), undefined) -// @as(@Vector(2, i8), undefined) -// @as(@Vector(2, i8), undefined) -// @as(@Vector(2, i8), undefined) -// @as(@Vector(2, i8), undefined) -// @as(i8, undefined) -// @as(i8, undefined) -// @as(@Vector(2, i8), [runtime value]) -// @as(@Vector(2, i8), [runtime value]) -// @as(@Vector(2, i8), undefined) -// @as(@Vector(2, i8), [runtime value]) -// @as(@Vector(2, i8), [runtime value]) -// @as(@Vector(2, i8), [runtime value]) -// @as(@Vector(2, i8), undefined) -// @as(@Vector(2, i8), [runtime value]) -// @as(@Vector(2, i8), [runtime value]) -// @as(@Vector(2, i8), [runtime value]) -// @as(@Vector(2, i8), undefined) -// @as(@Vector(2, i8), undefined) -// @as(@Vector(2, i8), undefined) -// @as(@Vector(2, i8), undefined) -// @as(@Vector(2, i8), undefined) -// @as(i8, [runtime value]) -// @as(i8, [runtime value]) -// @as(@Vector(2, i8), [runtime value]) -// @as(@Vector(2, i8), [runtime value]) -// @as(@Vector(2, i8), [runtime value]) -// @as(@Vector(2, i8), [runtime value]) -// @as(@Vector(2, i8), [runtime value]) -// @as(@Vector(2, i8), [runtime value]) -// @as(@Vector(2, i8), [runtime value]) -// @as(@Vector(2, i8), [runtime value]) -// @as(@Vector(2, i8), [runtime value]) -// @as(@Vector(2, i8), [runtime value]) -// @as(@Vector(2, i8), [runtime value]) -// @as(@Vector(2, i8), [runtime value]) -// @as(@Vector(2, i8), [runtime value]) -// @as(@Vector(2, i8), [runtime value]) -// @as(@Vector(2, i8), undefined) -// @as(i8, undefined) -// @as(@Vector(2, i8), undefined) -// @as(i8, undefined) -// @as(i8, undefined) -// @as(@Vector(2, i8), undefined) -// @as(@Vector(2, i8), undefined) -// @as(i8, undefined) -// @as(@Vector(2, i8), undefined) -// @as(u32, undefined) -// @as(u32, undefined) -// @as(@Vector(2, u32), .{ 6, undefined }) -// @as(@Vector(2, u32), .{ undefined, 6 }) -// @as(@Vector(2, u32), undefined) -// @as(@Vector(2, u32), .{ 6, undefined }) -// @as(@Vector(2, u32), .{ 6, undefined }) -// @as(@Vector(2, u32), undefined) -// @as(@Vector(2, u32), undefined) -// @as(@Vector(2, u32), .{ undefined, 6 }) -// @as(@Vector(2, u32), undefined) -// @as(@Vector(2, u32), .{ undefined, 6 }) -// @as(@Vector(2, u32), undefined) -// @as(@Vector(2, u32), undefined) -// @as(@Vector(2, u32), undefined) -// @as(@Vector(2, u32), undefined) -// @as(@Vector(2, u32), undefined) -// @as(u32, undefined) -// @as(u32, undefined) -// @as(@Vector(2, u32), .{ 6, undefined }) -// @as(@Vector(2, u32), .{ undefined, 6 }) -// @as(@Vector(2, u32), undefined) -// @as(@Vector(2, u32), .{ 6, undefined }) -// @as(@Vector(2, u32), .{ 6, undefined }) -// @as(@Vector(2, u32), undefined) -// @as(@Vector(2, u32), undefined) -// @as(@Vector(2, u32), .{ undefined, 6 }) -// @as(@Vector(2, u32), undefined) -// @as(@Vector(2, u32), .{ undefined, 6 }) -// @as(@Vector(2, u32), undefined) -// @as(@Vector(2, u32), undefined) -// @as(@Vector(2, u32), undefined) -// @as(@Vector(2, u32), undefined) -// @as(@Vector(2, u32), undefined) -// @as(u32, undefined) -// @as(u32, undefined) -// @as(@Vector(2, u32), .{ 0, undefined }) -// @as(@Vector(2, u32), .{ undefined, 0 }) -// @as(@Vector(2, u32), undefined) -// @as(@Vector(2, u32), .{ 0, undefined }) -// @as(@Vector(2, u32), .{ 0, undefined }) -// @as(@Vector(2, u32), undefined) -// @as(@Vector(2, u32), undefined) -// @as(@Vector(2, u32), .{ undefined, 0 }) -// @as(@Vector(2, u32), undefined) -// @as(@Vector(2, u32), .{ undefined, 0 }) -// @as(@Vector(2, u32), undefined) -// @as(@Vector(2, u32), undefined) -// @as(@Vector(2, u32), undefined) -// @as(@Vector(2, u32), undefined) -// @as(@Vector(2, u32), undefined) -// @as(u32, undefined) -// @as(u32, undefined) -// @as(@Vector(2, u32), .{ 0, undefined }) -// @as(@Vector(2, u32), .{ undefined, 0 }) -// @as(@Vector(2, u32), undefined) -// @as(@Vector(2, u32), .{ 0, undefined }) -// @as(@Vector(2, u32), .{ 0, undefined }) -// @as(@Vector(2, u32), undefined) -// @as(@Vector(2, u32), undefined) -// @as(@Vector(2, u32), .{ undefined, 0 }) -// @as(@Vector(2, u32), undefined) -// @as(@Vector(2, u32), .{ undefined, 0 }) -// @as(@Vector(2, u32), undefined) -// @as(@Vector(2, u32), undefined) -// @as(@Vector(2, u32), undefined) -// @as(@Vector(2, u32), undefined) -// @as(@Vector(2, u32), undefined) -// @as(u32, undefined) -// @as(u32, undefined) -// @as(@Vector(2, u32), .{ 9, undefined }) -// @as(@Vector(2, u32), .{ undefined, 9 }) -// @as(@Vector(2, u32), undefined) -// @as(@Vector(2, u32), .{ 9, undefined }) -// @as(@Vector(2, u32), .{ 9, undefined }) -// @as(@Vector(2, u32), undefined) -// @as(@Vector(2, u32), undefined) -// @as(@Vector(2, u32), .{ undefined, 9 }) -// @as(@Vector(2, u32), undefined) -// @as(@Vector(2, u32), .{ undefined, 9 }) -// @as(@Vector(2, u32), undefined) -// @as(@Vector(2, u32), undefined) -// @as(@Vector(2, u32), undefined) -// @as(@Vector(2, u32), undefined) -// @as(@Vector(2, u32), undefined) -// @as(u32, undefined) -// @as(u32, undefined) -// @as(@Vector(2, u32), .{ 9, undefined }) -// @as(@Vector(2, u32), .{ undefined, 9 }) -// @as(@Vector(2, u32), undefined) -// @as(@Vector(2, u32), .{ 9, undefined }) -// @as(@Vector(2, u32), .{ 9, undefined }) -// @as(@Vector(2, u32), undefined) -// @as(@Vector(2, u32), undefined) -// @as(@Vector(2, u32), .{ undefined, 9 }) -// @as(@Vector(2, u32), undefined) -// @as(@Vector(2, u32), .{ undefined, 9 }) -// @as(@Vector(2, u32), undefined) -// @as(@Vector(2, u32), undefined) -// @as(@Vector(2, u32), undefined) -// @as(@Vector(2, u32), undefined) -// @as(@Vector(2, u32), undefined) -// @as(u32, undefined) -// @as(u32, undefined) -// @as(@Vector(2, u32), .{ 24, undefined }) -// @as(@Vector(2, u32), .{ undefined, 24 }) -// @as(@Vector(2, u32), undefined) -// @as(@Vector(2, u32), .{ 24, undefined }) -// @as(@Vector(2, u32), .{ 24, undefined }) -// @as(@Vector(2, u32), undefined) -// @as(@Vector(2, u32), undefined) -// @as(@Vector(2, u32), .{ undefined, 24 }) -// @as(@Vector(2, u32), undefined) -// @as(@Vector(2, u32), .{ undefined, 24 }) -// @as(@Vector(2, u32), undefined) -// @as(@Vector(2, u32), undefined) -// @as(@Vector(2, u32), undefined) -// @as(@Vector(2, u32), undefined) -// @as(@Vector(2, u32), undefined) -// @as(u32, undefined) -// @as(u32, undefined) -// @as(@Vector(2, u32), .{ 0, undefined }) -// @as(@Vector(2, u32), .{ undefined, 0 }) -// @as(@Vector(2, u32), undefined) -// @as(@Vector(2, u32), .{ 0, undefined }) -// @as(@Vector(2, u32), .{ 0, undefined }) -// @as(@Vector(2, u32), undefined) -// @as(@Vector(2, u32), undefined) -// @as(@Vector(2, u32), .{ undefined, 0 }) -// @as(@Vector(2, u32), undefined) -// @as(@Vector(2, u32), .{ undefined, 0 }) -// @as(@Vector(2, u32), undefined) -// @as(@Vector(2, u32), undefined) -// @as(@Vector(2, u32), undefined) -// @as(@Vector(2, u32), undefined) -// @as(@Vector(2, u32), undefined) -// @as(u32, undefined) -// @as(@Vector(2, u32), undefined) -// @as(u32, undefined) -// @as(u32, undefined) -// @as(@Vector(2, u32), undefined) -// @as(@Vector(2, u32), undefined) -// @as(u1, undefined) -// @as(@Vector(2, u1), .{ 1, undefined }) -// @as(@Vector(2, u1), .{ undefined, 1 }) -// @as(@Vector(2, u1), undefined) -// @as(u32, undefined) -// @as(@Vector(2, u32), undefined) -// @as(u32, undefined) -// @as(u32, undefined) -// @as(@Vector(2, u32), [runtime value]) -// @as(@Vector(2, u32), [runtime value]) -// @as(@Vector(2, u32), undefined) -// @as(@Vector(2, u32), [runtime value]) -// @as(@Vector(2, u32), [runtime value]) -// @as(@Vector(2, u32), [runtime value]) -// @as(@Vector(2, u32), undefined) -// @as(@Vector(2, u32), [runtime value]) -// @as(@Vector(2, u32), [runtime value]) -// @as(@Vector(2, u32), [runtime value]) -// @as(@Vector(2, u32), undefined) -// @as(@Vector(2, u32), undefined) -// @as(@Vector(2, u32), undefined) -// @as(@Vector(2, u32), undefined) -// @as(@Vector(2, u32), undefined) -// @as(u32, undefined) -// @as(u32, undefined) -// @as(@Vector(2, u32), [runtime value]) -// @as(@Vector(2, u32), [runtime value]) -// @as(@Vector(2, u32), undefined) -// @as(@Vector(2, u32), [runtime value]) -// @as(@Vector(2, u32), [runtime value]) -// @as(@Vector(2, u32), [runtime value]) -// @as(@Vector(2, u32), undefined) -// @as(@Vector(2, u32), [runtime value]) -// @as(@Vector(2, u32), [runtime value]) -// @as(@Vector(2, u32), [runtime value]) -// @as(@Vector(2, u32), undefined) -// @as(@Vector(2, u32), undefined) -// @as(@Vector(2, u32), undefined) -// @as(@Vector(2, u32), undefined) -// @as(@Vector(2, u32), undefined) -// @as(u32, undefined) -// @as(u32, undefined) -// @as(@Vector(2, u32), [runtime value]) -// @as(@Vector(2, u32), [runtime value]) -// @as(@Vector(2, u32), undefined) -// @as(@Vector(2, u32), [runtime value]) -// @as(@Vector(2, u32), [runtime value]) -// @as(@Vector(2, u32), [runtime value]) -// @as(@Vector(2, u32), undefined) -// @as(@Vector(2, u32), [runtime value]) -// @as(@Vector(2, u32), [runtime value]) -// @as(@Vector(2, u32), [runtime value]) -// @as(@Vector(2, u32), undefined) -// @as(@Vector(2, u32), undefined) -// @as(@Vector(2, u32), undefined) -// @as(@Vector(2, u32), undefined) -// @as(@Vector(2, u32), undefined) -// @as(u32, undefined) -// @as(u32, undefined) -// @as(@Vector(2, u32), [runtime value]) -// @as(@Vector(2, u32), [runtime value]) -// @as(@Vector(2, u32), undefined) -// @as(@Vector(2, u32), [runtime value]) -// @as(@Vector(2, u32), [runtime value]) -// @as(@Vector(2, u32), [runtime value]) -// @as(@Vector(2, u32), undefined) -// @as(@Vector(2, u32), [runtime value]) -// @as(@Vector(2, u32), [runtime value]) -// @as(@Vector(2, u32), [runtime value]) -// @as(@Vector(2, u32), undefined) -// @as(@Vector(2, u32), undefined) -// @as(@Vector(2, u32), undefined) -// @as(@Vector(2, u32), undefined) -// @as(@Vector(2, u32), undefined) -// @as(u32, undefined) -// @as(u32, undefined) -// @as(@Vector(2, u32), [runtime value]) -// @as(@Vector(2, u32), [runtime value]) -// @as(@Vector(2, u32), undefined) -// @as(@Vector(2, u32), [runtime value]) -// @as(@Vector(2, u32), [runtime value]) -// @as(@Vector(2, u32), [runtime value]) -// @as(@Vector(2, u32), undefined) -// @as(@Vector(2, u32), [runtime value]) -// @as(@Vector(2, u32), [runtime value]) -// @as(@Vector(2, u32), [runtime value]) -// @as(@Vector(2, u32), undefined) -// @as(@Vector(2, u32), undefined) -// @as(@Vector(2, u32), undefined) -// @as(@Vector(2, u32), undefined) -// @as(@Vector(2, u32), undefined) -// @as(u32, undefined) -// @as(u32, undefined) -// @as(@Vector(2, u32), [runtime value]) -// @as(@Vector(2, u32), [runtime value]) -// @as(@Vector(2, u32), undefined) -// @as(@Vector(2, u32), [runtime value]) -// @as(@Vector(2, u32), [runtime value]) -// @as(@Vector(2, u32), [runtime value]) -// @as(@Vector(2, u32), undefined) -// @as(@Vector(2, u32), [runtime value]) -// @as(@Vector(2, u32), [runtime value]) -// @as(@Vector(2, u32), [runtime value]) -// @as(@Vector(2, u32), undefined) -// @as(@Vector(2, u32), undefined) -// @as(@Vector(2, u32), undefined) -// @as(@Vector(2, u32), undefined) -// @as(@Vector(2, u32), undefined) -// @as(u32, undefined) -// @as(u32, undefined) -// @as(@Vector(2, u32), [runtime value]) -// @as(@Vector(2, u32), [runtime value]) -// @as(@Vector(2, u32), undefined) -// @as(@Vector(2, u32), [runtime value]) -// @as(@Vector(2, u32), [runtime value]) -// @as(@Vector(2, u32), [runtime value]) -// @as(@Vector(2, u32), undefined) -// @as(@Vector(2, u32), [runtime value]) -// @as(@Vector(2, u32), [runtime value]) -// @as(@Vector(2, u32), [runtime value]) -// @as(@Vector(2, u32), undefined) -// @as(@Vector(2, u32), undefined) -// @as(@Vector(2, u32), undefined) -// @as(@Vector(2, u32), undefined) -// @as(@Vector(2, u32), undefined) -// @as(u32, [runtime value]) -// @as(u32, [runtime value]) -// @as(@Vector(2, u32), [runtime value]) -// @as(@Vector(2, u32), [runtime value]) -// @as(@Vector(2, u32), [runtime value]) -// @as(@Vector(2, u32), [runtime value]) -// @as(@Vector(2, u32), [runtime value]) -// @as(@Vector(2, u32), [runtime value]) -// @as(@Vector(2, u32), [runtime value]) -// @as(@Vector(2, u32), [runtime value]) -// @as(@Vector(2, u32), [runtime value]) -// @as(@Vector(2, u32), [runtime value]) -// @as(@Vector(2, u32), [runtime value]) -// @as(@Vector(2, u32), [runtime value]) -// @as(@Vector(2, u32), [runtime value]) -// @as(@Vector(2, u32), [runtime value]) -// @as(@Vector(2, u32), undefined) -// @as(u32, undefined) -// @as(@Vector(2, u32), undefined) -// @as(u32, undefined) -// @as(u32, undefined) -// @as(@Vector(2, u32), undefined) -// @as(@Vector(2, u32), undefined) -// @as(u1, undefined) -// @as(@Vector(2, u1), [runtime value]) -// @as(@Vector(2, u1), [runtime value]) -// @as(@Vector(2, u1), undefined) -// @as(u32, undefined) -// @as(@Vector(2, u32), undefined) -// @as(i32, undefined) -// @as(i32, undefined) -// @as(@Vector(2, i32), .{ 6, undefined }) -// @as(@Vector(2, i32), .{ undefined, 6 }) -// @as(@Vector(2, i32), undefined) -// @as(@Vector(2, i32), .{ 6, undefined }) -// @as(@Vector(2, i32), .{ 6, undefined }) -// @as(@Vector(2, i32), undefined) -// @as(@Vector(2, i32), undefined) -// @as(@Vector(2, i32), .{ undefined, 6 }) -// @as(@Vector(2, i32), undefined) -// @as(@Vector(2, i32), .{ undefined, 6 }) -// @as(@Vector(2, i32), undefined) -// @as(@Vector(2, i32), undefined) -// @as(@Vector(2, i32), undefined) -// @as(@Vector(2, i32), undefined) -// @as(@Vector(2, i32), undefined) -// @as(i32, undefined) -// @as(i32, undefined) -// @as(@Vector(2, i32), .{ 6, undefined }) -// @as(@Vector(2, i32), .{ undefined, 6 }) -// @as(@Vector(2, i32), undefined) -// @as(@Vector(2, i32), .{ 6, undefined }) -// @as(@Vector(2, i32), .{ 6, undefined }) -// @as(@Vector(2, i32), undefined) -// @as(@Vector(2, i32), undefined) -// @as(@Vector(2, i32), .{ undefined, 6 }) -// @as(@Vector(2, i32), undefined) -// @as(@Vector(2, i32), .{ undefined, 6 }) -// @as(@Vector(2, i32), undefined) -// @as(@Vector(2, i32), undefined) -// @as(@Vector(2, i32), undefined) -// @as(@Vector(2, i32), undefined) -// @as(@Vector(2, i32), undefined) -// @as(i32, undefined) -// @as(i32, undefined) -// @as(@Vector(2, i32), .{ 0, undefined }) -// @as(@Vector(2, i32), .{ undefined, 0 }) -// @as(@Vector(2, i32), undefined) -// @as(@Vector(2, i32), .{ 0, undefined }) -// @as(@Vector(2, i32), .{ 0, undefined }) -// @as(@Vector(2, i32), undefined) -// @as(@Vector(2, i32), undefined) -// @as(@Vector(2, i32), .{ undefined, 0 }) -// @as(@Vector(2, i32), undefined) -// @as(@Vector(2, i32), .{ undefined, 0 }) -// @as(@Vector(2, i32), undefined) -// @as(@Vector(2, i32), undefined) -// @as(@Vector(2, i32), undefined) -// @as(@Vector(2, i32), undefined) -// @as(@Vector(2, i32), undefined) -// @as(i32, undefined) -// @as(i32, undefined) -// @as(@Vector(2, i32), .{ 0, undefined }) -// @as(@Vector(2, i32), .{ undefined, 0 }) -// @as(@Vector(2, i32), undefined) -// @as(@Vector(2, i32), .{ 0, undefined }) -// @as(@Vector(2, i32), .{ 0, undefined }) -// @as(@Vector(2, i32), undefined) -// @as(@Vector(2, i32), undefined) -// @as(@Vector(2, i32), .{ undefined, 0 }) -// @as(@Vector(2, i32), undefined) -// @as(@Vector(2, i32), .{ undefined, 0 }) -// @as(@Vector(2, i32), undefined) -// @as(@Vector(2, i32), undefined) -// @as(@Vector(2, i32), undefined) -// @as(@Vector(2, i32), undefined) -// @as(@Vector(2, i32), undefined) -// @as(i32, undefined) -// @as(i32, undefined) -// @as(@Vector(2, i32), .{ 9, undefined }) -// @as(@Vector(2, i32), .{ undefined, 9 }) -// @as(@Vector(2, i32), undefined) -// @as(@Vector(2, i32), .{ 9, undefined }) -// @as(@Vector(2, i32), .{ 9, undefined }) -// @as(@Vector(2, i32), undefined) -// @as(@Vector(2, i32), undefined) -// @as(@Vector(2, i32), .{ undefined, 9 }) -// @as(@Vector(2, i32), undefined) -// @as(@Vector(2, i32), .{ undefined, 9 }) -// @as(@Vector(2, i32), undefined) -// @as(@Vector(2, i32), undefined) -// @as(@Vector(2, i32), undefined) -// @as(@Vector(2, i32), undefined) -// @as(@Vector(2, i32), undefined) -// @as(i32, undefined) -// @as(i32, undefined) -// @as(@Vector(2, i32), .{ 9, undefined }) -// @as(@Vector(2, i32), .{ undefined, 9 }) -// @as(@Vector(2, i32), undefined) -// @as(@Vector(2, i32), .{ 9, undefined }) -// @as(@Vector(2, i32), .{ 9, undefined }) -// @as(@Vector(2, i32), undefined) -// @as(@Vector(2, i32), undefined) -// @as(@Vector(2, i32), .{ undefined, 9 }) -// @as(@Vector(2, i32), undefined) -// @as(@Vector(2, i32), .{ undefined, 9 }) -// @as(@Vector(2, i32), undefined) -// @as(@Vector(2, i32), undefined) -// @as(@Vector(2, i32), undefined) -// @as(@Vector(2, i32), undefined) -// @as(@Vector(2, i32), undefined) -// @as(i32, undefined) -// @as(i32, undefined) -// @as(@Vector(2, i32), .{ 0, undefined }) -// @as(@Vector(2, i32), .{ undefined, 0 }) -// @as(@Vector(2, i32), undefined) -// @as(@Vector(2, i32), .{ 0, undefined }) -// @as(@Vector(2, i32), .{ 0, undefined }) -// @as(@Vector(2, i32), undefined) -// @as(@Vector(2, i32), undefined) -// @as(@Vector(2, i32), .{ undefined, 0 }) -// @as(@Vector(2, i32), undefined) -// @as(@Vector(2, i32), .{ undefined, 0 }) -// @as(@Vector(2, i32), undefined) -// @as(@Vector(2, i32), undefined) -// @as(@Vector(2, i32), undefined) -// @as(@Vector(2, i32), undefined) -// @as(@Vector(2, i32), undefined) -// @as(i32, undefined) -// @as(@Vector(2, i32), undefined) -// @as(i32, undefined) -// @as(i32, undefined) -// @as(@Vector(2, i32), undefined) -// @as(@Vector(2, i32), undefined) -// @as(i32, undefined) -// @as(@Vector(2, i32), undefined) -// @as(i32, undefined) -// @as(i32, undefined) -// @as(@Vector(2, i32), [runtime value]) -// @as(@Vector(2, i32), [runtime value]) -// @as(@Vector(2, i32), undefined) -// @as(@Vector(2, i32), [runtime value]) -// @as(@Vector(2, i32), [runtime value]) -// @as(@Vector(2, i32), [runtime value]) -// @as(@Vector(2, i32), undefined) -// @as(@Vector(2, i32), [runtime value]) -// @as(@Vector(2, i32), [runtime value]) -// @as(@Vector(2, i32), [runtime value]) -// @as(@Vector(2, i32), undefined) -// @as(@Vector(2, i32), undefined) -// @as(@Vector(2, i32), undefined) -// @as(@Vector(2, i32), undefined) -// @as(@Vector(2, i32), undefined) -// @as(i32, undefined) -// @as(i32, undefined) -// @as(@Vector(2, i32), [runtime value]) -// @as(@Vector(2, i32), [runtime value]) -// @as(@Vector(2, i32), undefined) -// @as(@Vector(2, i32), [runtime value]) -// @as(@Vector(2, i32), [runtime value]) -// @as(@Vector(2, i32), [runtime value]) -// @as(@Vector(2, i32), undefined) -// @as(@Vector(2, i32), [runtime value]) -// @as(@Vector(2, i32), [runtime value]) -// @as(@Vector(2, i32), [runtime value]) -// @as(@Vector(2, i32), undefined) -// @as(@Vector(2, i32), undefined) -// @as(@Vector(2, i32), undefined) -// @as(@Vector(2, i32), undefined) -// @as(@Vector(2, i32), undefined) -// @as(i32, undefined) -// @as(i32, undefined) -// @as(@Vector(2, i32), [runtime value]) -// @as(@Vector(2, i32), [runtime value]) -// @as(@Vector(2, i32), undefined) -// @as(@Vector(2, i32), [runtime value]) -// @as(@Vector(2, i32), [runtime value]) -// @as(@Vector(2, i32), [runtime value]) -// @as(@Vector(2, i32), undefined) -// @as(@Vector(2, i32), [runtime value]) -// @as(@Vector(2, i32), [runtime value]) -// @as(@Vector(2, i32), [runtime value]) -// @as(@Vector(2, i32), undefined) -// @as(@Vector(2, i32), undefined) -// @as(@Vector(2, i32), undefined) -// @as(@Vector(2, i32), undefined) -// @as(@Vector(2, i32), undefined) -// @as(i32, undefined) -// @as(i32, undefined) -// @as(@Vector(2, i32), [runtime value]) -// @as(@Vector(2, i32), [runtime value]) -// @as(@Vector(2, i32), undefined) -// @as(@Vector(2, i32), [runtime value]) -// @as(@Vector(2, i32), [runtime value]) -// @as(@Vector(2, i32), [runtime value]) -// @as(@Vector(2, i32), undefined) -// @as(@Vector(2, i32), [runtime value]) -// @as(@Vector(2, i32), [runtime value]) -// @as(@Vector(2, i32), [runtime value]) -// @as(@Vector(2, i32), undefined) -// @as(@Vector(2, i32), undefined) -// @as(@Vector(2, i32), undefined) -// @as(@Vector(2, i32), undefined) -// @as(@Vector(2, i32), undefined) -// @as(i32, undefined) -// @as(i32, undefined) -// @as(@Vector(2, i32), [runtime value]) -// @as(@Vector(2, i32), [runtime value]) -// @as(@Vector(2, i32), undefined) -// @as(@Vector(2, i32), [runtime value]) -// @as(@Vector(2, i32), [runtime value]) -// @as(@Vector(2, i32), [runtime value]) -// @as(@Vector(2, i32), undefined) -// @as(@Vector(2, i32), [runtime value]) -// @as(@Vector(2, i32), [runtime value]) -// @as(@Vector(2, i32), [runtime value]) -// @as(@Vector(2, i32), undefined) -// @as(@Vector(2, i32), undefined) -// @as(@Vector(2, i32), undefined) -// @as(@Vector(2, i32), undefined) -// @as(@Vector(2, i32), undefined) -// @as(i32, undefined) -// @as(i32, undefined) -// @as(@Vector(2, i32), [runtime value]) -// @as(@Vector(2, i32), [runtime value]) -// @as(@Vector(2, i32), undefined) -// @as(@Vector(2, i32), [runtime value]) -// @as(@Vector(2, i32), [runtime value]) -// @as(@Vector(2, i32), [runtime value]) -// @as(@Vector(2, i32), undefined) -// @as(@Vector(2, i32), [runtime value]) -// @as(@Vector(2, i32), [runtime value]) -// @as(@Vector(2, i32), [runtime value]) -// @as(@Vector(2, i32), undefined) -// @as(@Vector(2, i32), undefined) -// @as(@Vector(2, i32), undefined) -// @as(@Vector(2, i32), undefined) -// @as(@Vector(2, i32), undefined) -// @as(i32, [runtime value]) -// @as(i32, [runtime value]) -// @as(@Vector(2, i32), [runtime value]) -// @as(@Vector(2, i32), [runtime value]) -// @as(@Vector(2, i32), [runtime value]) -// @as(@Vector(2, i32), [runtime value]) -// @as(@Vector(2, i32), [runtime value]) -// @as(@Vector(2, i32), [runtime value]) -// @as(@Vector(2, i32), [runtime value]) -// @as(@Vector(2, i32), [runtime value]) -// @as(@Vector(2, i32), [runtime value]) -// @as(@Vector(2, i32), [runtime value]) -// @as(@Vector(2, i32), [runtime value]) -// @as(@Vector(2, i32), [runtime value]) -// @as(@Vector(2, i32), [runtime value]) -// @as(@Vector(2, i32), [runtime value]) -// @as(@Vector(2, i32), undefined) -// @as(i32, undefined) -// @as(@Vector(2, i32), undefined) -// @as(i32, undefined) -// @as(i32, undefined) -// @as(@Vector(2, i32), undefined) -// @as(@Vector(2, i32), undefined) -// @as(i32, undefined) -// @as(@Vector(2, i32), undefined) -// @as(u500, undefined) -// @as(u500, undefined) -// @as(@Vector(2, u500), .{ 6, undefined }) -// @as(@Vector(2, u500), .{ undefined, 6 }) -// @as(@Vector(2, u500), undefined) -// @as(@Vector(2, u500), .{ 6, undefined }) -// @as(@Vector(2, u500), .{ 6, undefined }) -// @as(@Vector(2, u500), undefined) -// @as(@Vector(2, u500), undefined) -// @as(@Vector(2, u500), .{ undefined, 6 }) -// @as(@Vector(2, u500), undefined) -// @as(@Vector(2, u500), .{ undefined, 6 }) -// @as(@Vector(2, u500), undefined) -// @as(@Vector(2, u500), undefined) -// @as(@Vector(2, u500), undefined) -// @as(@Vector(2, u500), undefined) -// @as(@Vector(2, u500), undefined) -// @as(u500, undefined) -// @as(u500, undefined) -// @as(@Vector(2, u500), .{ 6, undefined }) -// @as(@Vector(2, u500), .{ undefined, 6 }) -// @as(@Vector(2, u500), undefined) -// @as(@Vector(2, u500), .{ 6, undefined }) -// @as(@Vector(2, u500), .{ 6, undefined }) -// @as(@Vector(2, u500), undefined) -// @as(@Vector(2, u500), undefined) -// @as(@Vector(2, u500), .{ undefined, 6 }) -// @as(@Vector(2, u500), undefined) -// @as(@Vector(2, u500), .{ undefined, 6 }) -// @as(@Vector(2, u500), undefined) -// @as(@Vector(2, u500), undefined) -// @as(@Vector(2, u500), undefined) -// @as(@Vector(2, u500), undefined) -// @as(@Vector(2, u500), undefined) -// @as(u500, undefined) -// @as(u500, undefined) -// @as(@Vector(2, u500), .{ 0, undefined }) -// @as(@Vector(2, u500), .{ undefined, 0 }) -// @as(@Vector(2, u500), undefined) -// @as(@Vector(2, u500), .{ 0, undefined }) -// @as(@Vector(2, u500), .{ 0, undefined }) -// @as(@Vector(2, u500), undefined) -// @as(@Vector(2, u500), undefined) -// @as(@Vector(2, u500), .{ undefined, 0 }) -// @as(@Vector(2, u500), undefined) -// @as(@Vector(2, u500), .{ undefined, 0 }) -// @as(@Vector(2, u500), undefined) -// @as(@Vector(2, u500), undefined) -// @as(@Vector(2, u500), undefined) -// @as(@Vector(2, u500), undefined) -// @as(@Vector(2, u500), undefined) -// @as(u500, undefined) -// @as(u500, undefined) -// @as(@Vector(2, u500), .{ 0, undefined }) -// @as(@Vector(2, u500), .{ undefined, 0 }) -// @as(@Vector(2, u500), undefined) -// @as(@Vector(2, u500), .{ 0, undefined }) -// @as(@Vector(2, u500), .{ 0, undefined }) -// @as(@Vector(2, u500), undefined) -// @as(@Vector(2, u500), undefined) -// @as(@Vector(2, u500), .{ undefined, 0 }) -// @as(@Vector(2, u500), undefined) -// @as(@Vector(2, u500), .{ undefined, 0 }) -// @as(@Vector(2, u500), undefined) -// @as(@Vector(2, u500), undefined) -// @as(@Vector(2, u500), undefined) -// @as(@Vector(2, u500), undefined) -// @as(@Vector(2, u500), undefined) -// @as(u500, undefined) -// @as(u500, undefined) -// @as(@Vector(2, u500), .{ 9, undefined }) -// @as(@Vector(2, u500), .{ undefined, 9 }) -// @as(@Vector(2, u500), undefined) -// @as(@Vector(2, u500), .{ 9, undefined }) -// @as(@Vector(2, u500), .{ 9, undefined }) -// @as(@Vector(2, u500), undefined) -// @as(@Vector(2, u500), undefined) -// @as(@Vector(2, u500), .{ undefined, 9 }) -// @as(@Vector(2, u500), undefined) -// @as(@Vector(2, u500), .{ undefined, 9 }) -// @as(@Vector(2, u500), undefined) -// @as(@Vector(2, u500), undefined) -// @as(@Vector(2, u500), undefined) -// @as(@Vector(2, u500), undefined) -// @as(@Vector(2, u500), undefined) -// @as(u500, undefined) -// @as(u500, undefined) -// @as(@Vector(2, u500), .{ 9, undefined }) -// @as(@Vector(2, u500), .{ undefined, 9 }) -// @as(@Vector(2, u500), undefined) -// @as(@Vector(2, u500), .{ 9, undefined }) -// @as(@Vector(2, u500), .{ 9, undefined }) -// @as(@Vector(2, u500), undefined) -// @as(@Vector(2, u500), undefined) -// @as(@Vector(2, u500), .{ undefined, 9 }) -// @as(@Vector(2, u500), undefined) -// @as(@Vector(2, u500), .{ undefined, 9 }) -// @as(@Vector(2, u500), undefined) -// @as(@Vector(2, u500), undefined) -// @as(@Vector(2, u500), undefined) -// @as(@Vector(2, u500), undefined) -// @as(@Vector(2, u500), undefined) -// @as(u500, undefined) -// @as(u500, undefined) -// @as(@Vector(2, u500), .{ 24, undefined }) -// @as(@Vector(2, u500), .{ undefined, 24 }) -// @as(@Vector(2, u500), undefined) -// @as(@Vector(2, u500), .{ 24, undefined }) -// @as(@Vector(2, u500), .{ 24, undefined }) -// @as(@Vector(2, u500), undefined) -// @as(@Vector(2, u500), undefined) -// @as(@Vector(2, u500), .{ undefined, 24 }) -// @as(@Vector(2, u500), undefined) -// @as(@Vector(2, u500), .{ undefined, 24 }) -// @as(@Vector(2, u500), undefined) -// @as(@Vector(2, u500), undefined) -// @as(@Vector(2, u500), undefined) -// @as(@Vector(2, u500), undefined) -// @as(@Vector(2, u500), undefined) -// @as(u500, undefined) -// @as(u500, undefined) -// @as(@Vector(2, u500), .{ 0, undefined }) -// @as(@Vector(2, u500), .{ undefined, 0 }) -// @as(@Vector(2, u500), undefined) -// @as(@Vector(2, u500), .{ 0, undefined }) -// @as(@Vector(2, u500), .{ 0, undefined }) -// @as(@Vector(2, u500), undefined) -// @as(@Vector(2, u500), undefined) -// @as(@Vector(2, u500), .{ undefined, 0 }) -// @as(@Vector(2, u500), undefined) -// @as(@Vector(2, u500), .{ undefined, 0 }) -// @as(@Vector(2, u500), undefined) -// @as(@Vector(2, u500), undefined) -// @as(@Vector(2, u500), undefined) -// @as(@Vector(2, u500), undefined) -// @as(@Vector(2, u500), undefined) -// @as(u500, undefined) -// @as(@Vector(2, u500), undefined) -// @as(u500, undefined) -// @as(u500, undefined) -// @as(@Vector(2, u500), undefined) -// @as(@Vector(2, u500), undefined) -// @as(u1, undefined) -// @as(@Vector(2, u1), .{ 1, undefined }) -// @as(@Vector(2, u1), .{ undefined, 1 }) -// @as(@Vector(2, u1), undefined) -// @as(u500, undefined) -// @as(@Vector(2, u500), undefined) -// @as(u500, undefined) -// @as(u500, undefined) -// @as(@Vector(2, u500), [runtime value]) -// @as(@Vector(2, u500), [runtime value]) -// @as(@Vector(2, u500), undefined) -// @as(@Vector(2, u500), [runtime value]) -// @as(@Vector(2, u500), [runtime value]) -// @as(@Vector(2, u500), [runtime value]) -// @as(@Vector(2, u500), undefined) -// @as(@Vector(2, u500), [runtime value]) -// @as(@Vector(2, u500), [runtime value]) -// @as(@Vector(2, u500), [runtime value]) -// @as(@Vector(2, u500), undefined) -// @as(@Vector(2, u500), undefined) -// @as(@Vector(2, u500), undefined) -// @as(@Vector(2, u500), undefined) -// @as(@Vector(2, u500), undefined) -// @as(u500, undefined) -// @as(u500, undefined) -// @as(@Vector(2, u500), [runtime value]) -// @as(@Vector(2, u500), [runtime value]) -// @as(@Vector(2, u500), undefined) -// @as(@Vector(2, u500), [runtime value]) -// @as(@Vector(2, u500), [runtime value]) -// @as(@Vector(2, u500), [runtime value]) -// @as(@Vector(2, u500), undefined) -// @as(@Vector(2, u500), [runtime value]) -// @as(@Vector(2, u500), [runtime value]) -// @as(@Vector(2, u500), [runtime value]) -// @as(@Vector(2, u500), undefined) -// @as(@Vector(2, u500), undefined) -// @as(@Vector(2, u500), undefined) -// @as(@Vector(2, u500), undefined) -// @as(@Vector(2, u500), undefined) -// @as(u500, undefined) -// @as(u500, undefined) -// @as(@Vector(2, u500), [runtime value]) -// @as(@Vector(2, u500), [runtime value]) -// @as(@Vector(2, u500), undefined) -// @as(@Vector(2, u500), [runtime value]) -// @as(@Vector(2, u500), [runtime value]) -// @as(@Vector(2, u500), [runtime value]) -// @as(@Vector(2, u500), undefined) -// @as(@Vector(2, u500), [runtime value]) -// @as(@Vector(2, u500), [runtime value]) -// @as(@Vector(2, u500), [runtime value]) -// @as(@Vector(2, u500), undefined) -// @as(@Vector(2, u500), undefined) -// @as(@Vector(2, u500), undefined) -// @as(@Vector(2, u500), undefined) -// @as(@Vector(2, u500), undefined) -// @as(u500, undefined) -// @as(u500, undefined) -// @as(@Vector(2, u500), [runtime value]) -// @as(@Vector(2, u500), [runtime value]) -// @as(@Vector(2, u500), undefined) -// @as(@Vector(2, u500), [runtime value]) -// @as(@Vector(2, u500), [runtime value]) -// @as(@Vector(2, u500), [runtime value]) -// @as(@Vector(2, u500), undefined) -// @as(@Vector(2, u500), [runtime value]) -// @as(@Vector(2, u500), [runtime value]) -// @as(@Vector(2, u500), [runtime value]) -// @as(@Vector(2, u500), undefined) -// @as(@Vector(2, u500), undefined) -// @as(@Vector(2, u500), undefined) -// @as(@Vector(2, u500), undefined) -// @as(@Vector(2, u500), undefined) -// @as(u500, undefined) -// @as(u500, undefined) -// @as(@Vector(2, u500), [runtime value]) -// @as(@Vector(2, u500), [runtime value]) -// @as(@Vector(2, u500), undefined) -// @as(@Vector(2, u500), [runtime value]) -// @as(@Vector(2, u500), [runtime value]) -// @as(@Vector(2, u500), [runtime value]) -// @as(@Vector(2, u500), undefined) -// @as(@Vector(2, u500), [runtime value]) -// @as(@Vector(2, u500), [runtime value]) -// @as(@Vector(2, u500), [runtime value]) -// @as(@Vector(2, u500), undefined) -// @as(@Vector(2, u500), undefined) -// @as(@Vector(2, u500), undefined) -// @as(@Vector(2, u500), undefined) -// @as(@Vector(2, u500), undefined) -// @as(u500, undefined) -// @as(u500, undefined) -// @as(@Vector(2, u500), [runtime value]) -// @as(@Vector(2, u500), [runtime value]) -// @as(@Vector(2, u500), undefined) -// @as(@Vector(2, u500), [runtime value]) -// @as(@Vector(2, u500), [runtime value]) -// @as(@Vector(2, u500), [runtime value]) -// @as(@Vector(2, u500), undefined) -// @as(@Vector(2, u500), [runtime value]) -// @as(@Vector(2, u500), [runtime value]) -// @as(@Vector(2, u500), [runtime value]) -// @as(@Vector(2, u500), undefined) -// @as(@Vector(2, u500), undefined) -// @as(@Vector(2, u500), undefined) -// @as(@Vector(2, u500), undefined) -// @as(@Vector(2, u500), undefined) -// @as(u500, undefined) -// @as(u500, undefined) -// @as(@Vector(2, u500), [runtime value]) -// @as(@Vector(2, u500), [runtime value]) -// @as(@Vector(2, u500), undefined) -// @as(@Vector(2, u500), [runtime value]) -// @as(@Vector(2, u500), [runtime value]) -// @as(@Vector(2, u500), [runtime value]) -// @as(@Vector(2, u500), undefined) -// @as(@Vector(2, u500), [runtime value]) -// @as(@Vector(2, u500), [runtime value]) -// @as(@Vector(2, u500), [runtime value]) -// @as(@Vector(2, u500), undefined) -// @as(@Vector(2, u500), undefined) -// @as(@Vector(2, u500), undefined) -// @as(@Vector(2, u500), undefined) -// @as(@Vector(2, u500), undefined) -// @as(u500, [runtime value]) -// @as(u500, [runtime value]) -// @as(@Vector(2, u500), [runtime value]) -// @as(@Vector(2, u500), [runtime value]) -// @as(@Vector(2, u500), [runtime value]) -// @as(@Vector(2, u500), [runtime value]) -// @as(@Vector(2, u500), [runtime value]) -// @as(@Vector(2, u500), [runtime value]) -// @as(@Vector(2, u500), [runtime value]) -// @as(@Vector(2, u500), [runtime value]) -// @as(@Vector(2, u500), [runtime value]) -// @as(@Vector(2, u500), [runtime value]) -// @as(@Vector(2, u500), [runtime value]) -// @as(@Vector(2, u500), [runtime value]) -// @as(@Vector(2, u500), [runtime value]) -// @as(@Vector(2, u500), [runtime value]) -// @as(@Vector(2, u500), undefined) -// @as(u500, undefined) -// @as(@Vector(2, u500), undefined) -// @as(u500, undefined) -// @as(u500, undefined) -// @as(@Vector(2, u500), undefined) -// @as(@Vector(2, u500), undefined) -// @as(u1, undefined) -// @as(@Vector(2, u1), [runtime value]) -// @as(@Vector(2, u1), [runtime value]) -// @as(@Vector(2, u1), undefined) -// @as(u500, undefined) -// @as(@Vector(2, u500), undefined) -// @as(i500, undefined) -// @as(i500, undefined) -// @as(@Vector(2, i500), .{ 6, undefined }) -// @as(@Vector(2, i500), .{ undefined, 6 }) -// @as(@Vector(2, i500), undefined) -// @as(@Vector(2, i500), .{ 6, undefined }) -// @as(@Vector(2, i500), .{ 6, undefined }) -// @as(@Vector(2, i500), undefined) -// @as(@Vector(2, i500), undefined) -// @as(@Vector(2, i500), .{ undefined, 6 }) -// @as(@Vector(2, i500), undefined) -// @as(@Vector(2, i500), .{ undefined, 6 }) -// @as(@Vector(2, i500), undefined) -// @as(@Vector(2, i500), undefined) -// @as(@Vector(2, i500), undefined) -// @as(@Vector(2, i500), undefined) -// @as(@Vector(2, i500), undefined) -// @as(i500, undefined) -// @as(i500, undefined) -// @as(@Vector(2, i500), .{ 6, undefined }) -// @as(@Vector(2, i500), .{ undefined, 6 }) -// @as(@Vector(2, i500), undefined) -// @as(@Vector(2, i500), .{ 6, undefined }) -// @as(@Vector(2, i500), .{ 6, undefined }) -// @as(@Vector(2, i500), undefined) -// @as(@Vector(2, i500), undefined) -// @as(@Vector(2, i500), .{ undefined, 6 }) -// @as(@Vector(2, i500), undefined) -// @as(@Vector(2, i500), .{ undefined, 6 }) -// @as(@Vector(2, i500), undefined) -// @as(@Vector(2, i500), undefined) -// @as(@Vector(2, i500), undefined) -// @as(@Vector(2, i500), undefined) -// @as(@Vector(2, i500), undefined) -// @as(i500, undefined) -// @as(i500, undefined) -// @as(@Vector(2, i500), .{ 0, undefined }) -// @as(@Vector(2, i500), .{ undefined, 0 }) -// @as(@Vector(2, i500), undefined) -// @as(@Vector(2, i500), .{ 0, undefined }) -// @as(@Vector(2, i500), .{ 0, undefined }) -// @as(@Vector(2, i500), undefined) -// @as(@Vector(2, i500), undefined) -// @as(@Vector(2, i500), .{ undefined, 0 }) -// @as(@Vector(2, i500), undefined) -// @as(@Vector(2, i500), .{ undefined, 0 }) -// @as(@Vector(2, i500), undefined) -// @as(@Vector(2, i500), undefined) -// @as(@Vector(2, i500), undefined) -// @as(@Vector(2, i500), undefined) -// @as(@Vector(2, i500), undefined) -// @as(i500, undefined) -// @as(i500, undefined) -// @as(@Vector(2, i500), .{ 0, undefined }) -// @as(@Vector(2, i500), .{ undefined, 0 }) -// @as(@Vector(2, i500), undefined) -// @as(@Vector(2, i500), .{ 0, undefined }) -// @as(@Vector(2, i500), .{ 0, undefined }) -// @as(@Vector(2, i500), undefined) -// @as(@Vector(2, i500), undefined) -// @as(@Vector(2, i500), .{ undefined, 0 }) -// @as(@Vector(2, i500), undefined) -// @as(@Vector(2, i500), .{ undefined, 0 }) -// @as(@Vector(2, i500), undefined) -// @as(@Vector(2, i500), undefined) -// @as(@Vector(2, i500), undefined) -// @as(@Vector(2, i500), undefined) -// @as(@Vector(2, i500), undefined) -// @as(i500, undefined) -// @as(i500, undefined) -// @as(@Vector(2, i500), .{ 9, undefined }) -// @as(@Vector(2, i500), .{ undefined, 9 }) -// @as(@Vector(2, i500), undefined) -// @as(@Vector(2, i500), .{ 9, undefined }) -// @as(@Vector(2, i500), .{ 9, undefined }) -// @as(@Vector(2, i500), undefined) -// @as(@Vector(2, i500), undefined) -// @as(@Vector(2, i500), .{ undefined, 9 }) -// @as(@Vector(2, i500), undefined) -// @as(@Vector(2, i500), .{ undefined, 9 }) -// @as(@Vector(2, i500), undefined) -// @as(@Vector(2, i500), undefined) -// @as(@Vector(2, i500), undefined) -// @as(@Vector(2, i500), undefined) -// @as(@Vector(2, i500), undefined) -// @as(i500, undefined) -// @as(i500, undefined) -// @as(@Vector(2, i500), .{ 9, undefined }) -// @as(@Vector(2, i500), .{ undefined, 9 }) -// @as(@Vector(2, i500), undefined) -// @as(@Vector(2, i500), .{ 9, undefined }) -// @as(@Vector(2, i500), .{ 9, undefined }) -// @as(@Vector(2, i500), undefined) -// @as(@Vector(2, i500), undefined) -// @as(@Vector(2, i500), .{ undefined, 9 }) -// @as(@Vector(2, i500), undefined) -// @as(@Vector(2, i500), .{ undefined, 9 }) -// @as(@Vector(2, i500), undefined) -// @as(@Vector(2, i500), undefined) -// @as(@Vector(2, i500), undefined) -// @as(@Vector(2, i500), undefined) -// @as(@Vector(2, i500), undefined) -// @as(i500, undefined) -// @as(i500, undefined) -// @as(@Vector(2, i500), .{ 0, undefined }) -// @as(@Vector(2, i500), .{ undefined, 0 }) -// @as(@Vector(2, i500), undefined) -// @as(@Vector(2, i500), .{ 0, undefined }) -// @as(@Vector(2, i500), .{ 0, undefined }) -// @as(@Vector(2, i500), undefined) -// @as(@Vector(2, i500), undefined) -// @as(@Vector(2, i500), .{ undefined, 0 }) -// @as(@Vector(2, i500), undefined) -// @as(@Vector(2, i500), .{ undefined, 0 }) -// @as(@Vector(2, i500), undefined) -// @as(@Vector(2, i500), undefined) -// @as(@Vector(2, i500), undefined) -// @as(@Vector(2, i500), undefined) -// @as(@Vector(2, i500), undefined) -// @as(i500, undefined) -// @as(@Vector(2, i500), undefined) -// @as(i500, undefined) -// @as(i500, undefined) -// @as(@Vector(2, i500), undefined) -// @as(@Vector(2, i500), undefined) -// @as(i500, undefined) -// @as(@Vector(2, i500), undefined) -// @as(i500, undefined) -// @as(i500, undefined) -// @as(@Vector(2, i500), [runtime value]) -// @as(@Vector(2, i500), [runtime value]) -// @as(@Vector(2, i500), undefined) -// @as(@Vector(2, i500), [runtime value]) -// @as(@Vector(2, i500), [runtime value]) -// @as(@Vector(2, i500), [runtime value]) -// @as(@Vector(2, i500), undefined) -// @as(@Vector(2, i500), [runtime value]) -// @as(@Vector(2, i500), [runtime value]) -// @as(@Vector(2, i500), [runtime value]) -// @as(@Vector(2, i500), undefined) -// @as(@Vector(2, i500), undefined) -// @as(@Vector(2, i500), undefined) -// @as(@Vector(2, i500), undefined) -// @as(@Vector(2, i500), undefined) -// @as(i500, undefined) -// @as(i500, undefined) -// @as(@Vector(2, i500), [runtime value]) -// @as(@Vector(2, i500), [runtime value]) -// @as(@Vector(2, i500), undefined) -// @as(@Vector(2, i500), [runtime value]) -// @as(@Vector(2, i500), [runtime value]) -// @as(@Vector(2, i500), [runtime value]) -// @as(@Vector(2, i500), undefined) -// @as(@Vector(2, i500), [runtime value]) -// @as(@Vector(2, i500), [runtime value]) -// @as(@Vector(2, i500), [runtime value]) -// @as(@Vector(2, i500), undefined) -// @as(@Vector(2, i500), undefined) -// @as(@Vector(2, i500), undefined) -// @as(@Vector(2, i500), undefined) -// @as(@Vector(2, i500), undefined) -// @as(i500, undefined) -// @as(i500, undefined) -// @as(@Vector(2, i500), [runtime value]) -// @as(@Vector(2, i500), [runtime value]) -// @as(@Vector(2, i500), undefined) -// @as(@Vector(2, i500), [runtime value]) -// @as(@Vector(2, i500), [runtime value]) -// @as(@Vector(2, i500), [runtime value]) -// @as(@Vector(2, i500), undefined) -// @as(@Vector(2, i500), [runtime value]) -// @as(@Vector(2, i500), [runtime value]) -// @as(@Vector(2, i500), [runtime value]) -// @as(@Vector(2, i500), undefined) -// @as(@Vector(2, i500), undefined) -// @as(@Vector(2, i500), undefined) -// @as(@Vector(2, i500), undefined) -// @as(@Vector(2, i500), undefined) -// @as(i500, undefined) -// @as(i500, undefined) -// @as(@Vector(2, i500), [runtime value]) -// @as(@Vector(2, i500), [runtime value]) -// @as(@Vector(2, i500), undefined) -// @as(@Vector(2, i500), [runtime value]) -// @as(@Vector(2, i500), [runtime value]) -// @as(@Vector(2, i500), [runtime value]) -// @as(@Vector(2, i500), undefined) -// @as(@Vector(2, i500), [runtime value]) -// @as(@Vector(2, i500), [runtime value]) -// @as(@Vector(2, i500), [runtime value]) -// @as(@Vector(2, i500), undefined) -// @as(@Vector(2, i500), undefined) -// @as(@Vector(2, i500), undefined) -// @as(@Vector(2, i500), undefined) -// @as(@Vector(2, i500), undefined) -// @as(i500, undefined) -// @as(i500, undefined) -// @as(@Vector(2, i500), [runtime value]) -// @as(@Vector(2, i500), [runtime value]) -// @as(@Vector(2, i500), undefined) -// @as(@Vector(2, i500), [runtime value]) -// @as(@Vector(2, i500), [runtime value]) -// @as(@Vector(2, i500), [runtime value]) -// @as(@Vector(2, i500), undefined) -// @as(@Vector(2, i500), [runtime value]) -// @as(@Vector(2, i500), [runtime value]) -// @as(@Vector(2, i500), [runtime value]) -// @as(@Vector(2, i500), undefined) -// @as(@Vector(2, i500), undefined) -// @as(@Vector(2, i500), undefined) -// @as(@Vector(2, i500), undefined) -// @as(@Vector(2, i500), undefined) -// @as(i500, undefined) -// @as(i500, undefined) -// @as(@Vector(2, i500), [runtime value]) -// @as(@Vector(2, i500), [runtime value]) -// @as(@Vector(2, i500), undefined) -// @as(@Vector(2, i500), [runtime value]) -// @as(@Vector(2, i500), [runtime value]) -// @as(@Vector(2, i500), [runtime value]) -// @as(@Vector(2, i500), undefined) -// @as(@Vector(2, i500), [runtime value]) -// @as(@Vector(2, i500), [runtime value]) -// @as(@Vector(2, i500), [runtime value]) -// @as(@Vector(2, i500), undefined) -// @as(@Vector(2, i500), undefined) -// @as(@Vector(2, i500), undefined) -// @as(@Vector(2, i500), undefined) -// @as(@Vector(2, i500), undefined) -// @as(i500, [runtime value]) -// @as(i500, [runtime value]) -// @as(@Vector(2, i500), [runtime value]) -// @as(@Vector(2, i500), [runtime value]) -// @as(@Vector(2, i500), [runtime value]) -// @as(@Vector(2, i500), [runtime value]) -// @as(@Vector(2, i500), [runtime value]) -// @as(@Vector(2, i500), [runtime value]) -// @as(@Vector(2, i500), [runtime value]) -// @as(@Vector(2, i500), [runtime value]) -// @as(@Vector(2, i500), [runtime value]) -// @as(@Vector(2, i500), [runtime value]) -// @as(@Vector(2, i500), [runtime value]) -// @as(@Vector(2, i500), [runtime value]) -// @as(@Vector(2, i500), [runtime value]) -// @as(@Vector(2, i500), [runtime value]) -// @as(@Vector(2, i500), undefined) -// @as(i500, undefined) -// @as(@Vector(2, i500), undefined) -// @as(i500, undefined) -// @as(i500, undefined) -// @as(@Vector(2, i500), undefined) -// @as(@Vector(2, i500), undefined) -// @as(i500, undefined) -// @as(@Vector(2, i500), undefined) -// @as(f16, undefined) -// @as(f16, undefined) -// @as(@Vector(2, f16), .{ 6, undefined }) -// @as(@Vector(2, f16), .{ undefined, 6 }) -// @as(@Vector(2, f16), undefined) -// @as(@Vector(2, f16), .{ 6, undefined }) -// @as(@Vector(2, f16), .{ 6, undefined }) -// @as(@Vector(2, f16), undefined) -// @as(@Vector(2, f16), undefined) -// @as(@Vector(2, f16), .{ undefined, 6 }) -// @as(@Vector(2, f16), undefined) -// @as(@Vector(2, f16), .{ undefined, 6 }) -// @as(@Vector(2, f16), undefined) -// @as(@Vector(2, f16), undefined) -// @as(@Vector(2, f16), undefined) -// @as(@Vector(2, f16), undefined) -// @as(@Vector(2, f16), undefined) -// @as(f16, undefined) -// @as(f16, undefined) -// @as(@Vector(2, f16), .{ 0, undefined }) -// @as(@Vector(2, f16), .{ undefined, 0 }) -// @as(@Vector(2, f16), undefined) -// @as(@Vector(2, f16), .{ 0, undefined }) -// @as(@Vector(2, f16), .{ 0, undefined }) -// @as(@Vector(2, f16), undefined) -// @as(@Vector(2, f16), undefined) -// @as(@Vector(2, f16), .{ undefined, 0 }) -// @as(@Vector(2, f16), undefined) -// @as(@Vector(2, f16), .{ undefined, 0 }) -// @as(@Vector(2, f16), undefined) -// @as(@Vector(2, f16), undefined) -// @as(@Vector(2, f16), undefined) -// @as(@Vector(2, f16), undefined) -// @as(@Vector(2, f16), undefined) -// @as(f16, undefined) -// @as(f16, undefined) -// @as(@Vector(2, f16), .{ 9, undefined }) -// @as(@Vector(2, f16), .{ undefined, 9 }) -// @as(@Vector(2, f16), undefined) -// @as(@Vector(2, f16), .{ 9, undefined }) -// @as(@Vector(2, f16), .{ 9, undefined }) -// @as(@Vector(2, f16), undefined) -// @as(@Vector(2, f16), undefined) -// @as(@Vector(2, f16), .{ undefined, 9 }) -// @as(@Vector(2, f16), undefined) -// @as(@Vector(2, f16), .{ undefined, 9 }) -// @as(@Vector(2, f16), undefined) -// @as(@Vector(2, f16), undefined) -// @as(@Vector(2, f16), undefined) -// @as(@Vector(2, f16), undefined) -// @as(@Vector(2, f16), undefined) -// @as(f16, undefined) -// @as(@Vector(2, f16), .{ -3, undefined }) -// @as(@Vector(2, f16), .{ undefined, -3 }) -// @as(@Vector(2, f16), undefined) -// @as(f16, undefined) -// @as(f16, undefined) -// @as(@Vector(2, f16), [runtime value]) -// @as(@Vector(2, f16), [runtime value]) -// @as(@Vector(2, f16), undefined) -// @as(@Vector(2, f16), [runtime value]) -// @as(@Vector(2, f16), [runtime value]) -// @as(@Vector(2, f16), [runtime value]) -// @as(@Vector(2, f16), undefined) -// @as(@Vector(2, f16), [runtime value]) -// @as(@Vector(2, f16), [runtime value]) -// @as(@Vector(2, f16), [runtime value]) -// @as(@Vector(2, f16), undefined) -// @as(@Vector(2, f16), undefined) -// @as(@Vector(2, f16), undefined) -// @as(@Vector(2, f16), undefined) -// @as(@Vector(2, f16), undefined) -// @as(f16, undefined) -// @as(f16, undefined) -// @as(@Vector(2, f16), [runtime value]) -// @as(@Vector(2, f16), [runtime value]) -// @as(@Vector(2, f16), undefined) -// @as(@Vector(2, f16), [runtime value]) -// @as(@Vector(2, f16), [runtime value]) -// @as(@Vector(2, f16), [runtime value]) -// @as(@Vector(2, f16), undefined) -// @as(@Vector(2, f16), [runtime value]) -// @as(@Vector(2, f16), [runtime value]) -// @as(@Vector(2, f16), [runtime value]) -// @as(@Vector(2, f16), undefined) -// @as(@Vector(2, f16), undefined) -// @as(@Vector(2, f16), undefined) -// @as(@Vector(2, f16), undefined) -// @as(@Vector(2, f16), undefined) -// @as(f16, undefined) -// @as(f16, undefined) -// @as(@Vector(2, f16), [runtime value]) -// @as(@Vector(2, f16), [runtime value]) -// @as(@Vector(2, f16), undefined) -// @as(@Vector(2, f16), [runtime value]) -// @as(@Vector(2, f16), [runtime value]) -// @as(@Vector(2, f16), [runtime value]) -// @as(@Vector(2, f16), undefined) -// @as(@Vector(2, f16), [runtime value]) -// @as(@Vector(2, f16), [runtime value]) -// @as(@Vector(2, f16), [runtime value]) -// @as(@Vector(2, f16), undefined) -// @as(@Vector(2, f16), undefined) -// @as(@Vector(2, f16), undefined) -// @as(@Vector(2, f16), undefined) -// @as(@Vector(2, f16), undefined) -// @as(f16, undefined) -// @as(@Vector(2, f16), [runtime value]) -// @as(@Vector(2, f16), [runtime value]) -// @as(@Vector(2, f16), undefined) -// @as(f32, undefined) -// @as(f32, undefined) -// @as(@Vector(2, f32), .{ 6, undefined }) -// @as(@Vector(2, f32), .{ undefined, 6 }) -// @as(@Vector(2, f32), undefined) -// @as(@Vector(2, f32), .{ 6, undefined }) -// @as(@Vector(2, f32), .{ 6, undefined }) -// @as(@Vector(2, f32), undefined) -// @as(@Vector(2, f32), undefined) -// @as(@Vector(2, f32), .{ undefined, 6 }) -// @as(@Vector(2, f32), undefined) -// @as(@Vector(2, f32), .{ undefined, 6 }) -// @as(@Vector(2, f32), undefined) -// @as(@Vector(2, f32), undefined) -// @as(@Vector(2, f32), undefined) -// @as(@Vector(2, f32), undefined) -// @as(@Vector(2, f32), undefined) -// @as(f32, undefined) -// @as(f32, undefined) -// @as(@Vector(2, f32), .{ 0, undefined }) -// @as(@Vector(2, f32), .{ undefined, 0 }) -// @as(@Vector(2, f32), undefined) -// @as(@Vector(2, f32), .{ 0, undefined }) -// @as(@Vector(2, f32), .{ 0, undefined }) -// @as(@Vector(2, f32), undefined) -// @as(@Vector(2, f32), undefined) -// @as(@Vector(2, f32), .{ undefined, 0 }) -// @as(@Vector(2, f32), undefined) -// @as(@Vector(2, f32), .{ undefined, 0 }) -// @as(@Vector(2, f32), undefined) -// @as(@Vector(2, f32), undefined) -// @as(@Vector(2, f32), undefined) -// @as(@Vector(2, f32), undefined) -// @as(@Vector(2, f32), undefined) -// @as(f32, undefined) -// @as(f32, undefined) -// @as(@Vector(2, f32), .{ 9, undefined }) -// @as(@Vector(2, f32), .{ undefined, 9 }) -// @as(@Vector(2, f32), undefined) -// @as(@Vector(2, f32), .{ 9, undefined }) -// @as(@Vector(2, f32), .{ 9, undefined }) -// @as(@Vector(2, f32), undefined) -// @as(@Vector(2, f32), undefined) -// @as(@Vector(2, f32), .{ undefined, 9 }) -// @as(@Vector(2, f32), undefined) -// @as(@Vector(2, f32), .{ undefined, 9 }) -// @as(@Vector(2, f32), undefined) -// @as(@Vector(2, f32), undefined) -// @as(@Vector(2, f32), undefined) -// @as(@Vector(2, f32), undefined) -// @as(@Vector(2, f32), undefined) -// @as(f32, undefined) -// @as(@Vector(2, f32), .{ -3, undefined }) -// @as(@Vector(2, f32), .{ undefined, -3 }) -// @as(@Vector(2, f32), undefined) -// @as(f32, undefined) -// @as(f32, undefined) -// @as(@Vector(2, f32), [runtime value]) -// @as(@Vector(2, f32), [runtime value]) -// @as(@Vector(2, f32), undefined) -// @as(@Vector(2, f32), [runtime value]) -// @as(@Vector(2, f32), [runtime value]) -// @as(@Vector(2, f32), [runtime value]) -// @as(@Vector(2, f32), undefined) -// @as(@Vector(2, f32), [runtime value]) -// @as(@Vector(2, f32), [runtime value]) -// @as(@Vector(2, f32), [runtime value]) -// @as(@Vector(2, f32), undefined) -// @as(@Vector(2, f32), undefined) -// @as(@Vector(2, f32), undefined) -// @as(@Vector(2, f32), undefined) -// @as(@Vector(2, f32), undefined) -// @as(f32, undefined) -// @as(f32, undefined) -// @as(@Vector(2, f32), [runtime value]) -// @as(@Vector(2, f32), [runtime value]) -// @as(@Vector(2, f32), undefined) -// @as(@Vector(2, f32), [runtime value]) -// @as(@Vector(2, f32), [runtime value]) -// @as(@Vector(2, f32), [runtime value]) -// @as(@Vector(2, f32), undefined) -// @as(@Vector(2, f32), [runtime value]) -// @as(@Vector(2, f32), [runtime value]) -// @as(@Vector(2, f32), [runtime value]) -// @as(@Vector(2, f32), undefined) -// @as(@Vector(2, f32), undefined) -// @as(@Vector(2, f32), undefined) -// @as(@Vector(2, f32), undefined) -// @as(@Vector(2, f32), undefined) -// @as(f32, undefined) -// @as(f32, undefined) -// @as(@Vector(2, f32), [runtime value]) -// @as(@Vector(2, f32), [runtime value]) -// @as(@Vector(2, f32), undefined) -// @as(@Vector(2, f32), [runtime value]) -// @as(@Vector(2, f32), [runtime value]) -// @as(@Vector(2, f32), [runtime value]) -// @as(@Vector(2, f32), undefined) -// @as(@Vector(2, f32), [runtime value]) -// @as(@Vector(2, f32), [runtime value]) -// @as(@Vector(2, f32), [runtime value]) -// @as(@Vector(2, f32), undefined) -// @as(@Vector(2, f32), undefined) -// @as(@Vector(2, f32), undefined) -// @as(@Vector(2, f32), undefined) -// @as(@Vector(2, f32), undefined) -// @as(f32, undefined) -// @as(@Vector(2, f32), [runtime value]) -// @as(@Vector(2, f32), [runtime value]) -// @as(@Vector(2, f32), undefined) -// @as(f64, undefined) -// @as(f64, undefined) -// @as(@Vector(2, f64), .{ 6, undefined }) -// @as(@Vector(2, f64), .{ undefined, 6 }) -// @as(@Vector(2, f64), undefined) -// @as(@Vector(2, f64), .{ 6, undefined }) -// @as(@Vector(2, f64), .{ 6, undefined }) -// @as(@Vector(2, f64), undefined) -// @as(@Vector(2, f64), undefined) -// @as(@Vector(2, f64), .{ undefined, 6 }) -// @as(@Vector(2, f64), undefined) -// @as(@Vector(2, f64), .{ undefined, 6 }) -// @as(@Vector(2, f64), undefined) -// @as(@Vector(2, f64), undefined) -// @as(@Vector(2, f64), undefined) -// @as(@Vector(2, f64), undefined) -// @as(@Vector(2, f64), undefined) -// @as(f64, undefined) -// @as(f64, undefined) -// @as(@Vector(2, f64), .{ 0, undefined }) -// @as(@Vector(2, f64), .{ undefined, 0 }) -// @as(@Vector(2, f64), undefined) -// @as(@Vector(2, f64), .{ 0, undefined }) -// @as(@Vector(2, f64), .{ 0, undefined }) -// @as(@Vector(2, f64), undefined) -// @as(@Vector(2, f64), undefined) -// @as(@Vector(2, f64), .{ undefined, 0 }) -// @as(@Vector(2, f64), undefined) -// @as(@Vector(2, f64), .{ undefined, 0 }) -// @as(@Vector(2, f64), undefined) -// @as(@Vector(2, f64), undefined) -// @as(@Vector(2, f64), undefined) -// @as(@Vector(2, f64), undefined) -// @as(@Vector(2, f64), undefined) -// @as(f64, undefined) -// @as(f64, undefined) -// @as(@Vector(2, f64), .{ 9, undefined }) -// @as(@Vector(2, f64), .{ undefined, 9 }) -// @as(@Vector(2, f64), undefined) -// @as(@Vector(2, f64), .{ 9, undefined }) -// @as(@Vector(2, f64), .{ 9, undefined }) -// @as(@Vector(2, f64), undefined) -// @as(@Vector(2, f64), undefined) -// @as(@Vector(2, f64), .{ undefined, 9 }) -// @as(@Vector(2, f64), undefined) -// @as(@Vector(2, f64), .{ undefined, 9 }) -// @as(@Vector(2, f64), undefined) -// @as(@Vector(2, f64), undefined) -// @as(@Vector(2, f64), undefined) -// @as(@Vector(2, f64), undefined) -// @as(@Vector(2, f64), undefined) -// @as(f64, undefined) -// @as(@Vector(2, f64), .{ -3, undefined }) -// @as(@Vector(2, f64), .{ undefined, -3 }) -// @as(@Vector(2, f64), undefined) -// @as(f64, undefined) -// @as(f64, undefined) -// @as(@Vector(2, f64), [runtime value]) -// @as(@Vector(2, f64), [runtime value]) -// @as(@Vector(2, f64), undefined) -// @as(@Vector(2, f64), [runtime value]) -// @as(@Vector(2, f64), [runtime value]) -// @as(@Vector(2, f64), [runtime value]) -// @as(@Vector(2, f64), undefined) -// @as(@Vector(2, f64), [runtime value]) -// @as(@Vector(2, f64), [runtime value]) -// @as(@Vector(2, f64), [runtime value]) -// @as(@Vector(2, f64), undefined) -// @as(@Vector(2, f64), undefined) -// @as(@Vector(2, f64), undefined) -// @as(@Vector(2, f64), undefined) -// @as(@Vector(2, f64), undefined) -// @as(f64, undefined) -// @as(f64, undefined) -// @as(@Vector(2, f64), [runtime value]) -// @as(@Vector(2, f64), [runtime value]) -// @as(@Vector(2, f64), undefined) -// @as(@Vector(2, f64), [runtime value]) -// @as(@Vector(2, f64), [runtime value]) -// @as(@Vector(2, f64), [runtime value]) -// @as(@Vector(2, f64), undefined) -// @as(@Vector(2, f64), [runtime value]) -// @as(@Vector(2, f64), [runtime value]) -// @as(@Vector(2, f64), [runtime value]) -// @as(@Vector(2, f64), undefined) -// @as(@Vector(2, f64), undefined) -// @as(@Vector(2, f64), undefined) -// @as(@Vector(2, f64), undefined) -// @as(@Vector(2, f64), undefined) -// @as(f64, undefined) -// @as(f64, undefined) -// @as(@Vector(2, f64), [runtime value]) -// @as(@Vector(2, f64), [runtime value]) -// @as(@Vector(2, f64), undefined) -// @as(@Vector(2, f64), [runtime value]) -// @as(@Vector(2, f64), [runtime value]) -// @as(@Vector(2, f64), [runtime value]) -// @as(@Vector(2, f64), undefined) -// @as(@Vector(2, f64), [runtime value]) -// @as(@Vector(2, f64), [runtime value]) -// @as(@Vector(2, f64), [runtime value]) -// @as(@Vector(2, f64), undefined) -// @as(@Vector(2, f64), undefined) -// @as(@Vector(2, f64), undefined) -// @as(@Vector(2, f64), undefined) -// @as(@Vector(2, f64), undefined) -// @as(f64, undefined) -// @as(@Vector(2, f64), [runtime value]) -// @as(@Vector(2, f64), [runtime value]) -// @as(@Vector(2, f64), undefined) -// @as(f80, undefined) -// @as(f80, undefined) -// @as(@Vector(2, f80), .{ 6, undefined }) -// @as(@Vector(2, f80), .{ undefined, 6 }) -// @as(@Vector(2, f80), undefined) -// @as(@Vector(2, f80), .{ 6, undefined }) -// @as(@Vector(2, f80), .{ 6, undefined }) -// @as(@Vector(2, f80), undefined) -// @as(@Vector(2, f80), undefined) -// @as(@Vector(2, f80), .{ undefined, 6 }) -// @as(@Vector(2, f80), undefined) -// @as(@Vector(2, f80), .{ undefined, 6 }) -// @as(@Vector(2, f80), undefined) -// @as(@Vector(2, f80), undefined) -// @as(@Vector(2, f80), undefined) -// @as(@Vector(2, f80), undefined) -// @as(@Vector(2, f80), undefined) -// @as(f80, undefined) -// @as(f80, undefined) -// @as(@Vector(2, f80), .{ 0, undefined }) -// @as(@Vector(2, f80), .{ undefined, 0 }) -// @as(@Vector(2, f80), undefined) -// @as(@Vector(2, f80), .{ 0, undefined }) -// @as(@Vector(2, f80), .{ 0, undefined }) -// @as(@Vector(2, f80), undefined) -// @as(@Vector(2, f80), undefined) -// @as(@Vector(2, f80), .{ undefined, 0 }) -// @as(@Vector(2, f80), undefined) -// @as(@Vector(2, f80), .{ undefined, 0 }) -// @as(@Vector(2, f80), undefined) -// @as(@Vector(2, f80), undefined) -// @as(@Vector(2, f80), undefined) -// @as(@Vector(2, f80), undefined) -// @as(@Vector(2, f80), undefined) -// @as(f80, undefined) -// @as(f80, undefined) -// @as(@Vector(2, f80), .{ 9, undefined }) -// @as(@Vector(2, f80), .{ undefined, 9 }) -// @as(@Vector(2, f80), undefined) -// @as(@Vector(2, f80), .{ 9, undefined }) -// @as(@Vector(2, f80), .{ 9, undefined }) -// @as(@Vector(2, f80), undefined) -// @as(@Vector(2, f80), undefined) -// @as(@Vector(2, f80), .{ undefined, 9 }) -// @as(@Vector(2, f80), undefined) -// @as(@Vector(2, f80), .{ undefined, 9 }) -// @as(@Vector(2, f80), undefined) -// @as(@Vector(2, f80), undefined) -// @as(@Vector(2, f80), undefined) -// @as(@Vector(2, f80), undefined) -// @as(@Vector(2, f80), undefined) -// @as(f80, undefined) -// @as(@Vector(2, f80), .{ -3, undefined }) -// @as(@Vector(2, f80), .{ undefined, -3 }) -// @as(@Vector(2, f80), undefined) -// @as(f80, undefined) -// @as(f80, undefined) -// @as(@Vector(2, f80), [runtime value]) -// @as(@Vector(2, f80), [runtime value]) -// @as(@Vector(2, f80), undefined) -// @as(@Vector(2, f80), [runtime value]) -// @as(@Vector(2, f80), [runtime value]) -// @as(@Vector(2, f80), [runtime value]) -// @as(@Vector(2, f80), undefined) -// @as(@Vector(2, f80), [runtime value]) -// @as(@Vector(2, f80), [runtime value]) -// @as(@Vector(2, f80), [runtime value]) -// @as(@Vector(2, f80), undefined) -// @as(@Vector(2, f80), undefined) -// @as(@Vector(2, f80), undefined) -// @as(@Vector(2, f80), undefined) -// @as(@Vector(2, f80), undefined) -// @as(f80, undefined) -// @as(f80, undefined) -// @as(@Vector(2, f80), [runtime value]) -// @as(@Vector(2, f80), [runtime value]) -// @as(@Vector(2, f80), undefined) -// @as(@Vector(2, f80), [runtime value]) -// @as(@Vector(2, f80), [runtime value]) -// @as(@Vector(2, f80), [runtime value]) -// @as(@Vector(2, f80), undefined) -// @as(@Vector(2, f80), [runtime value]) -// @as(@Vector(2, f80), [runtime value]) -// @as(@Vector(2, f80), [runtime value]) -// @as(@Vector(2, f80), undefined) -// @as(@Vector(2, f80), undefined) -// @as(@Vector(2, f80), undefined) -// @as(@Vector(2, f80), undefined) -// @as(@Vector(2, f80), undefined) -// @as(f80, undefined) -// @as(f80, undefined) -// @as(@Vector(2, f80), [runtime value]) -// @as(@Vector(2, f80), [runtime value]) -// @as(@Vector(2, f80), undefined) -// @as(@Vector(2, f80), [runtime value]) -// @as(@Vector(2, f80), [runtime value]) -// @as(@Vector(2, f80), [runtime value]) -// @as(@Vector(2, f80), undefined) -// @as(@Vector(2, f80), [runtime value]) -// @as(@Vector(2, f80), [runtime value]) -// @as(@Vector(2, f80), [runtime value]) -// @as(@Vector(2, f80), undefined) -// @as(@Vector(2, f80), undefined) -// @as(@Vector(2, f80), undefined) -// @as(@Vector(2, f80), undefined) -// @as(@Vector(2, f80), undefined) -// @as(f80, undefined) -// @as(@Vector(2, f80), [runtime value]) -// @as(@Vector(2, f80), [runtime value]) -// @as(@Vector(2, f80), undefined) +// @as(i500, undefined) +// @as(i500, undefined) +// @as(@Vector(2, i500), .{ 6, undefined }) +// @as(@Vector(2, i500), .{ undefined, 6 }) +// @as(@Vector(2, i500), undefined) +// @as(@Vector(2, i500), .{ 6, undefined }) +// @as(@Vector(2, i500), .{ 6, undefined }) +// @as(@Vector(2, i500), undefined) +// @as(@Vector(2, i500), undefined) +// @as(@Vector(2, i500), .{ undefined, 6 }) +// @as(@Vector(2, i500), undefined) +// @as(@Vector(2, i500), .{ undefined, 6 }) +// @as(@Vector(2, i500), undefined) +// @as(@Vector(2, i500), undefined) +// @as(@Vector(2, i500), undefined) +// @as(@Vector(2, i500), undefined) +// @as(@Vector(2, i500), undefined) +// @as(i500, undefined) +// @as(i500, undefined) +// @as(@Vector(2, i500), .{ 6, undefined }) +// @as(@Vector(2, i500), .{ undefined, 6 }) +// @as(@Vector(2, i500), undefined) +// @as(@Vector(2, i500), .{ 6, undefined }) +// @as(@Vector(2, i500), .{ 6, undefined }) +// @as(@Vector(2, i500), undefined) +// @as(@Vector(2, i500), undefined) +// @as(@Vector(2, i500), .{ undefined, 6 }) +// @as(@Vector(2, i500), undefined) +// @as(@Vector(2, i500), .{ undefined, 6 }) +// @as(@Vector(2, i500), undefined) +// @as(@Vector(2, i500), undefined) +// @as(@Vector(2, i500), undefined) +// @as(@Vector(2, i500), undefined) +// @as(@Vector(2, i500), undefined) +// @as(i500, undefined) +// @as(i500, undefined) +// @as(@Vector(2, i500), .{ 0, undefined }) +// @as(@Vector(2, i500), .{ undefined, 0 }) +// @as(@Vector(2, i500), undefined) +// @as(@Vector(2, i500), .{ 0, undefined }) +// @as(@Vector(2, i500), .{ 0, undefined }) +// @as(@Vector(2, i500), undefined) +// @as(@Vector(2, i500), undefined) +// @as(@Vector(2, i500), .{ undefined, 0 }) +// @as(@Vector(2, i500), undefined) +// @as(@Vector(2, i500), .{ undefined, 0 }) +// @as(@Vector(2, i500), undefined) +// @as(@Vector(2, i500), undefined) +// @as(@Vector(2, i500), undefined) +// @as(@Vector(2, i500), undefined) +// @as(@Vector(2, i500), undefined) +// @as(i500, undefined) +// @as(i500, undefined) +// @as(@Vector(2, i500), .{ 0, undefined }) +// @as(@Vector(2, i500), .{ undefined, 0 }) +// @as(@Vector(2, i500), undefined) +// @as(@Vector(2, i500), .{ 0, undefined }) +// @as(@Vector(2, i500), .{ 0, undefined }) +// @as(@Vector(2, i500), undefined) +// @as(@Vector(2, i500), undefined) +// @as(@Vector(2, i500), .{ undefined, 0 }) +// @as(@Vector(2, i500), undefined) +// @as(@Vector(2, i500), .{ undefined, 0 }) +// @as(@Vector(2, i500), undefined) +// @as(@Vector(2, i500), undefined) +// @as(@Vector(2, i500), undefined) +// @as(@Vector(2, i500), undefined) +// @as(@Vector(2, i500), undefined) +// @as(i500, undefined) +// @as(i500, undefined) +// @as(@Vector(2, i500), .{ 9, undefined }) +// @as(@Vector(2, i500), .{ undefined, 9 }) +// @as(@Vector(2, i500), undefined) +// @as(@Vector(2, i500), .{ 9, undefined }) +// @as(@Vector(2, i500), .{ 9, undefined }) +// @as(@Vector(2, i500), undefined) +// @as(@Vector(2, i500), undefined) +// @as(@Vector(2, i500), .{ undefined, 9 }) +// @as(@Vector(2, i500), undefined) +// @as(@Vector(2, i500), .{ undefined, 9 }) +// @as(@Vector(2, i500), undefined) +// @as(@Vector(2, i500), undefined) +// @as(@Vector(2, i500), undefined) +// @as(@Vector(2, i500), undefined) +// @as(@Vector(2, i500), undefined) +// @as(i500, undefined) +// @as(i500, undefined) +// @as(@Vector(2, i500), .{ 9, undefined }) +// @as(@Vector(2, i500), .{ undefined, 9 }) +// @as(@Vector(2, i500), undefined) +// @as(@Vector(2, i500), .{ 9, undefined }) +// @as(@Vector(2, i500), .{ 9, undefined }) +// @as(@Vector(2, i500), undefined) +// @as(@Vector(2, i500), undefined) +// @as(@Vector(2, i500), .{ undefined, 9 }) +// @as(@Vector(2, i500), undefined) +// @as(@Vector(2, i500), .{ undefined, 9 }) +// @as(@Vector(2, i500), undefined) +// @as(@Vector(2, i500), undefined) +// @as(@Vector(2, i500), undefined) +// @as(@Vector(2, i500), undefined) +// @as(@Vector(2, i500), undefined) +// @as(i500, undefined) +// @as(i500, undefined) +// @as(@Vector(2, i500), .{ 0, undefined }) +// @as(@Vector(2, i500), .{ undefined, 0 }) +// @as(@Vector(2, i500), undefined) +// @as(@Vector(2, i500), .{ 0, undefined }) +// @as(@Vector(2, i500), .{ 0, undefined }) +// @as(@Vector(2, i500), undefined) +// @as(@Vector(2, i500), undefined) +// @as(@Vector(2, i500), .{ undefined, 0 }) +// @as(@Vector(2, i500), undefined) +// @as(@Vector(2, i500), .{ undefined, 0 }) +// @as(@Vector(2, i500), undefined) +// @as(@Vector(2, i500), undefined) +// @as(@Vector(2, i500), undefined) +// @as(@Vector(2, i500), undefined) +// @as(@Vector(2, i500), undefined) +// @as(i500, undefined) +// @as(@Vector(2, i500), undefined) +// @as(i500, undefined) +// @as(i500, undefined) +// @as(@Vector(2, i500), undefined) +// @as(@Vector(2, i500), undefined) +// @as(i500, undefined) +// @as(@Vector(2, i500), undefined) +// @as(i500, undefined) +// @as(i500, undefined) +// @as(@Vector(2, i500), [runtime value]) +// @as(@Vector(2, i500), [runtime value]) +// @as(@Vector(2, i500), undefined) +// @as(@Vector(2, i500), [runtime value]) +// @as(@Vector(2, i500), [runtime value]) +// @as(@Vector(2, i500), [runtime value]) +// @as(@Vector(2, i500), undefined) +// @as(@Vector(2, i500), [runtime value]) +// @as(@Vector(2, i500), [runtime value]) +// @as(@Vector(2, i500), [runtime value]) +// @as(@Vector(2, i500), undefined) +// @as(@Vector(2, i500), undefined) +// @as(@Vector(2, i500), undefined) +// @as(@Vector(2, i500), undefined) +// @as(@Vector(2, i500), undefined) +// @as(i500, undefined) +// @as(i500, undefined) +// @as(@Vector(2, i500), [runtime value]) +// @as(@Vector(2, i500), [runtime value]) +// @as(@Vector(2, i500), undefined) +// @as(@Vector(2, i500), [runtime value]) +// @as(@Vector(2, i500), [runtime value]) +// @as(@Vector(2, i500), [runtime value]) +// @as(@Vector(2, i500), undefined) +// @as(@Vector(2, i500), [runtime value]) +// @as(@Vector(2, i500), [runtime value]) +// @as(@Vector(2, i500), [runtime value]) +// @as(@Vector(2, i500), undefined) +// @as(@Vector(2, i500), undefined) +// @as(@Vector(2, i500), undefined) +// @as(@Vector(2, i500), undefined) +// @as(@Vector(2, i500), undefined) +// @as(i500, undefined) +// @as(i500, undefined) +// @as(@Vector(2, i500), [runtime value]) +// @as(@Vector(2, i500), [runtime value]) +// @as(@Vector(2, i500), undefined) +// @as(@Vector(2, i500), [runtime value]) +// @as(@Vector(2, i500), [runtime value]) +// @as(@Vector(2, i500), [runtime value]) +// @as(@Vector(2, i500), undefined) +// @as(@Vector(2, i500), [runtime value]) +// @as(@Vector(2, i500), [runtime value]) +// @as(@Vector(2, i500), [runtime value]) +// @as(@Vector(2, i500), undefined) +// @as(@Vector(2, i500), undefined) +// @as(@Vector(2, i500), undefined) +// @as(@Vector(2, i500), undefined) +// @as(@Vector(2, i500), undefined) +// @as(i500, undefined) +// @as(i500, undefined) +// @as(@Vector(2, i500), [runtime value]) +// @as(@Vector(2, i500), [runtime value]) +// @as(@Vector(2, i500), undefined) +// @as(@Vector(2, i500), [runtime value]) +// @as(@Vector(2, i500), [runtime value]) +// @as(@Vector(2, i500), [runtime value]) +// @as(@Vector(2, i500), undefined) +// @as(@Vector(2, i500), [runtime value]) +// @as(@Vector(2, i500), [runtime value]) +// @as(@Vector(2, i500), [runtime value]) +// @as(@Vector(2, i500), undefined) +// @as(@Vector(2, i500), undefined) +// @as(@Vector(2, i500), undefined) +// @as(@Vector(2, i500), undefined) +// @as(@Vector(2, i500), undefined) +// @as(i500, undefined) +// @as(i500, undefined) +// @as(@Vector(2, i500), [runtime value]) +// @as(@Vector(2, i500), [runtime value]) +// @as(@Vector(2, i500), undefined) +// @as(@Vector(2, i500), [runtime value]) +// @as(@Vector(2, i500), [runtime value]) +// @as(@Vector(2, i500), [runtime value]) +// @as(@Vector(2, i500), undefined) +// @as(@Vector(2, i500), [runtime value]) +// @as(@Vector(2, i500), [runtime value]) +// @as(@Vector(2, i500), [runtime value]) +// @as(@Vector(2, i500), undefined) +// @as(@Vector(2, i500), undefined) +// @as(@Vector(2, i500), undefined) +// @as(@Vector(2, i500), undefined) +// @as(@Vector(2, i500), undefined) +// @as(i500, undefined) +// @as(i500, undefined) +// @as(@Vector(2, i500), [runtime value]) +// @as(@Vector(2, i500), [runtime value]) +// @as(@Vector(2, i500), undefined) +// @as(@Vector(2, i500), [runtime value]) +// @as(@Vector(2, i500), [runtime value]) +// @as(@Vector(2, i500), [runtime value]) +// @as(@Vector(2, i500), undefined) +// @as(@Vector(2, i500), [runtime value]) +// @as(@Vector(2, i500), [runtime value]) +// @as(@Vector(2, i500), [runtime value]) +// @as(@Vector(2, i500), undefined) +// @as(@Vector(2, i500), undefined) +// @as(@Vector(2, i500), undefined) +// @as(@Vector(2, i500), undefined) +// @as(@Vector(2, i500), undefined) +// @as(i500, [runtime value]) +// @as(i500, [runtime value]) +// @as(@Vector(2, i500), [runtime value]) +// @as(@Vector(2, i500), [runtime value]) +// @as(@Vector(2, i500), [runtime value]) +// @as(@Vector(2, i500), [runtime value]) +// @as(@Vector(2, i500), [runtime value]) +// @as(@Vector(2, i500), [runtime value]) +// @as(@Vector(2, i500), [runtime value]) +// @as(@Vector(2, i500), [runtime value]) +// @as(@Vector(2, i500), [runtime value]) +// @as(@Vector(2, i500), [runtime value]) +// @as(@Vector(2, i500), [runtime value]) +// @as(@Vector(2, i500), [runtime value]) +// @as(@Vector(2, i500), [runtime value]) +// @as(@Vector(2, i500), [runtime value]) +// @as(@Vector(2, i500), undefined) +// @as(i500, undefined) +// @as(@Vector(2, i500), undefined) +// @as(i500, undefined) +// @as(i500, undefined) +// @as(@Vector(2, i500), undefined) +// @as(@Vector(2, i500), undefined) +// @as(i500, undefined) +// @as(@Vector(2, i500), undefined) +// @as(u500, undefined) +// @as(u500, undefined) +// @as(@Vector(2, u500), .{ 6, undefined }) +// @as(@Vector(2, u500), .{ undefined, 6 }) +// @as(@Vector(2, u500), undefined) +// @as(@Vector(2, u500), .{ 6, undefined }) +// @as(@Vector(2, u500), .{ 6, undefined }) +// @as(@Vector(2, u500), undefined) +// @as(@Vector(2, u500), undefined) +// @as(@Vector(2, u500), .{ undefined, 6 }) +// @as(@Vector(2, u500), undefined) +// @as(@Vector(2, u500), .{ undefined, 6 }) +// @as(@Vector(2, u500), undefined) +// @as(@Vector(2, u500), undefined) +// @as(@Vector(2, u500), undefined) +// @as(@Vector(2, u500), undefined) +// @as(@Vector(2, u500), undefined) +// @as(u500, undefined) +// @as(u500, undefined) +// @as(@Vector(2, u500), .{ 6, undefined }) +// @as(@Vector(2, u500), .{ undefined, 6 }) +// @as(@Vector(2, u500), undefined) +// @as(@Vector(2, u500), .{ 6, undefined }) +// @as(@Vector(2, u500), .{ 6, undefined }) +// @as(@Vector(2, u500), undefined) +// @as(@Vector(2, u500), undefined) +// @as(@Vector(2, u500), .{ undefined, 6 }) +// @as(@Vector(2, u500), undefined) +// @as(@Vector(2, u500), .{ undefined, 6 }) +// @as(@Vector(2, u500), undefined) +// @as(@Vector(2, u500), undefined) +// @as(@Vector(2, u500), undefined) +// @as(@Vector(2, u500), undefined) +// @as(@Vector(2, u500), undefined) +// @as(u500, undefined) +// @as(u500, undefined) +// @as(@Vector(2, u500), .{ 0, undefined }) +// @as(@Vector(2, u500), .{ undefined, 0 }) +// @as(@Vector(2, u500), undefined) +// @as(@Vector(2, u500), .{ 0, undefined }) +// @as(@Vector(2, u500), .{ 0, undefined }) +// @as(@Vector(2, u500), undefined) +// @as(@Vector(2, u500), undefined) +// @as(@Vector(2, u500), .{ undefined, 0 }) +// @as(@Vector(2, u500), undefined) +// @as(@Vector(2, u500), .{ undefined, 0 }) +// @as(@Vector(2, u500), undefined) +// @as(@Vector(2, u500), undefined) +// @as(@Vector(2, u500), undefined) +// @as(@Vector(2, u500), undefined) +// @as(@Vector(2, u500), undefined) +// @as(u500, undefined) +// @as(u500, undefined) +// @as(@Vector(2, u500), .{ 0, undefined }) +// @as(@Vector(2, u500), .{ undefined, 0 }) +// @as(@Vector(2, u500), undefined) +// @as(@Vector(2, u500), .{ 0, undefined }) +// @as(@Vector(2, u500), .{ 0, undefined }) +// @as(@Vector(2, u500), undefined) +// @as(@Vector(2, u500), undefined) +// @as(@Vector(2, u500), .{ undefined, 0 }) +// @as(@Vector(2, u500), undefined) +// @as(@Vector(2, u500), .{ undefined, 0 }) +// @as(@Vector(2, u500), undefined) +// @as(@Vector(2, u500), undefined) +// @as(@Vector(2, u500), undefined) +// @as(@Vector(2, u500), undefined) +// @as(@Vector(2, u500), undefined) +// @as(u500, undefined) +// @as(u500, undefined) +// @as(@Vector(2, u500), .{ 9, undefined }) +// @as(@Vector(2, u500), .{ undefined, 9 }) +// @as(@Vector(2, u500), undefined) +// @as(@Vector(2, u500), .{ 9, undefined }) +// @as(@Vector(2, u500), .{ 9, undefined }) +// @as(@Vector(2, u500), undefined) +// @as(@Vector(2, u500), undefined) +// @as(@Vector(2, u500), .{ undefined, 9 }) +// @as(@Vector(2, u500), undefined) +// @as(@Vector(2, u500), .{ undefined, 9 }) +// @as(@Vector(2, u500), undefined) +// @as(@Vector(2, u500), undefined) +// @as(@Vector(2, u500), undefined) +// @as(@Vector(2, u500), undefined) +// @as(@Vector(2, u500), undefined) +// @as(u500, undefined) +// @as(u500, undefined) +// @as(@Vector(2, u500), .{ 9, undefined }) +// @as(@Vector(2, u500), .{ undefined, 9 }) +// @as(@Vector(2, u500), undefined) +// @as(@Vector(2, u500), .{ 9, undefined }) +// @as(@Vector(2, u500), .{ 9, undefined }) +// @as(@Vector(2, u500), undefined) +// @as(@Vector(2, u500), undefined) +// @as(@Vector(2, u500), .{ undefined, 9 }) +// @as(@Vector(2, u500), undefined) +// @as(@Vector(2, u500), .{ undefined, 9 }) +// @as(@Vector(2, u500), undefined) +// @as(@Vector(2, u500), undefined) +// @as(@Vector(2, u500), undefined) +// @as(@Vector(2, u500), undefined) +// @as(@Vector(2, u500), undefined) +// @as(u500, undefined) +// @as(u500, undefined) +// @as(@Vector(2, u500), .{ 24, undefined }) +// @as(@Vector(2, u500), .{ undefined, 24 }) +// @as(@Vector(2, u500), undefined) +// @as(@Vector(2, u500), .{ 24, undefined }) +// @as(@Vector(2, u500), .{ 24, undefined }) +// @as(@Vector(2, u500), undefined) +// @as(@Vector(2, u500), undefined) +// @as(@Vector(2, u500), .{ undefined, 24 }) +// @as(@Vector(2, u500), undefined) +// @as(@Vector(2, u500), .{ undefined, 24 }) +// @as(@Vector(2, u500), undefined) +// @as(@Vector(2, u500), undefined) +// @as(@Vector(2, u500), undefined) +// @as(@Vector(2, u500), undefined) +// @as(@Vector(2, u500), undefined) +// @as(u500, undefined) +// @as(u500, undefined) +// @as(@Vector(2, u500), .{ 0, undefined }) +// @as(@Vector(2, u500), .{ undefined, 0 }) +// @as(@Vector(2, u500), undefined) +// @as(@Vector(2, u500), .{ 0, undefined }) +// @as(@Vector(2, u500), .{ 0, undefined }) +// @as(@Vector(2, u500), undefined) +// @as(@Vector(2, u500), undefined) +// @as(@Vector(2, u500), .{ undefined, 0 }) +// @as(@Vector(2, u500), undefined) +// @as(@Vector(2, u500), .{ undefined, 0 }) +// @as(@Vector(2, u500), undefined) +// @as(@Vector(2, u500), undefined) +// @as(@Vector(2, u500), undefined) +// @as(@Vector(2, u500), undefined) +// @as(@Vector(2, u500), undefined) +// @as(u500, undefined) +// @as(@Vector(2, u500), undefined) +// @as(u500, undefined) +// @as(u500, undefined) +// @as(@Vector(2, u500), undefined) +// @as(@Vector(2, u500), undefined) +// @as(u1, undefined) +// @as(@Vector(2, u1), .{ 1, undefined }) +// @as(@Vector(2, u1), .{ undefined, 1 }) +// @as(@Vector(2, u1), undefined) +// @as(u500, undefined) +// @as(@Vector(2, u500), undefined) +// @as(u500, undefined) +// @as(u500, undefined) +// @as(@Vector(2, u500), [runtime value]) +// @as(@Vector(2, u500), [runtime value]) +// @as(@Vector(2, u500), undefined) +// @as(@Vector(2, u500), [runtime value]) +// @as(@Vector(2, u500), [runtime value]) +// @as(@Vector(2, u500), [runtime value]) +// @as(@Vector(2, u500), undefined) +// @as(@Vector(2, u500), [runtime value]) +// @as(@Vector(2, u500), [runtime value]) +// @as(@Vector(2, u500), [runtime value]) +// @as(@Vector(2, u500), undefined) +// @as(@Vector(2, u500), undefined) +// @as(@Vector(2, u500), undefined) +// @as(@Vector(2, u500), undefined) +// @as(@Vector(2, u500), undefined) +// @as(u500, undefined) +// @as(u500, undefined) +// @as(@Vector(2, u500), [runtime value]) +// @as(@Vector(2, u500), [runtime value]) +// @as(@Vector(2, u500), undefined) +// @as(@Vector(2, u500), [runtime value]) +// @as(@Vector(2, u500), [runtime value]) +// @as(@Vector(2, u500), [runtime value]) +// @as(@Vector(2, u500), undefined) +// @as(@Vector(2, u500), [runtime value]) +// @as(@Vector(2, u500), [runtime value]) +// @as(@Vector(2, u500), [runtime value]) +// @as(@Vector(2, u500), undefined) +// @as(@Vector(2, u500), undefined) +// @as(@Vector(2, u500), undefined) +// @as(@Vector(2, u500), undefined) +// @as(@Vector(2, u500), undefined) +// @as(u500, undefined) +// @as(u500, undefined) +// @as(@Vector(2, u500), [runtime value]) +// @as(@Vector(2, u500), [runtime value]) +// @as(@Vector(2, u500), undefined) +// @as(@Vector(2, u500), [runtime value]) +// @as(@Vector(2, u500), [runtime value]) +// @as(@Vector(2, u500), [runtime value]) +// @as(@Vector(2, u500), undefined) +// @as(@Vector(2, u500), [runtime value]) +// @as(@Vector(2, u500), [runtime value]) +// @as(@Vector(2, u500), [runtime value]) +// @as(@Vector(2, u500), undefined) +// @as(@Vector(2, u500), undefined) +// @as(@Vector(2, u500), undefined) +// @as(@Vector(2, u500), undefined) +// @as(@Vector(2, u500), undefined) +// @as(u500, undefined) +// @as(u500, undefined) +// @as(@Vector(2, u500), [runtime value]) +// @as(@Vector(2, u500), [runtime value]) +// @as(@Vector(2, u500), undefined) +// @as(@Vector(2, u500), [runtime value]) +// @as(@Vector(2, u500), [runtime value]) +// @as(@Vector(2, u500), [runtime value]) +// @as(@Vector(2, u500), undefined) +// @as(@Vector(2, u500), [runtime value]) +// @as(@Vector(2, u500), [runtime value]) +// @as(@Vector(2, u500), [runtime value]) +// @as(@Vector(2, u500), undefined) +// @as(@Vector(2, u500), undefined) +// @as(@Vector(2, u500), undefined) +// @as(@Vector(2, u500), undefined) +// @as(@Vector(2, u500), undefined) +// @as(u500, undefined) +// @as(u500, undefined) +// @as(@Vector(2, u500), [runtime value]) +// @as(@Vector(2, u500), [runtime value]) +// @as(@Vector(2, u500), undefined) +// @as(@Vector(2, u500), [runtime value]) +// @as(@Vector(2, u500), [runtime value]) +// @as(@Vector(2, u500), [runtime value]) +// @as(@Vector(2, u500), undefined) +// @as(@Vector(2, u500), [runtime value]) +// @as(@Vector(2, u500), [runtime value]) +// @as(@Vector(2, u500), [runtime value]) +// @as(@Vector(2, u500), undefined) +// @as(@Vector(2, u500), undefined) +// @as(@Vector(2, u500), undefined) +// @as(@Vector(2, u500), undefined) +// @as(@Vector(2, u500), undefined) +// @as(u500, undefined) +// @as(u500, undefined) +// @as(@Vector(2, u500), [runtime value]) +// @as(@Vector(2, u500), [runtime value]) +// @as(@Vector(2, u500), undefined) +// @as(@Vector(2, u500), [runtime value]) +// @as(@Vector(2, u500), [runtime value]) +// @as(@Vector(2, u500), [runtime value]) +// @as(@Vector(2, u500), undefined) +// @as(@Vector(2, u500), [runtime value]) +// @as(@Vector(2, u500), [runtime value]) +// @as(@Vector(2, u500), [runtime value]) +// @as(@Vector(2, u500), undefined) +// @as(@Vector(2, u500), undefined) +// @as(@Vector(2, u500), undefined) +// @as(@Vector(2, u500), undefined) +// @as(@Vector(2, u500), undefined) +// @as(u500, undefined) +// @as(u500, undefined) +// @as(@Vector(2, u500), [runtime value]) +// @as(@Vector(2, u500), [runtime value]) +// @as(@Vector(2, u500), undefined) +// @as(@Vector(2, u500), [runtime value]) +// @as(@Vector(2, u500), [runtime value]) +// @as(@Vector(2, u500), [runtime value]) +// @as(@Vector(2, u500), undefined) +// @as(@Vector(2, u500), [runtime value]) +// @as(@Vector(2, u500), [runtime value]) +// @as(@Vector(2, u500), [runtime value]) +// @as(@Vector(2, u500), undefined) +// @as(@Vector(2, u500), undefined) +// @as(@Vector(2, u500), undefined) +// @as(@Vector(2, u500), undefined) +// @as(@Vector(2, u500), undefined) +// @as(u500, [runtime value]) +// @as(u500, [runtime value]) +// @as(@Vector(2, u500), [runtime value]) +// @as(@Vector(2, u500), [runtime value]) +// @as(@Vector(2, u500), [runtime value]) +// @as(@Vector(2, u500), [runtime value]) +// @as(@Vector(2, u500), [runtime value]) +// @as(@Vector(2, u500), [runtime value]) +// @as(@Vector(2, u500), [runtime value]) +// @as(@Vector(2, u500), [runtime value]) +// @as(@Vector(2, u500), [runtime value]) +// @as(@Vector(2, u500), [runtime value]) +// @as(@Vector(2, u500), [runtime value]) +// @as(@Vector(2, u500), [runtime value]) +// @as(@Vector(2, u500), [runtime value]) +// @as(@Vector(2, u500), [runtime value]) +// @as(@Vector(2, u500), undefined) +// @as(u500, undefined) +// @as(@Vector(2, u500), undefined) +// @as(u500, undefined) +// @as(u500, undefined) +// @as(@Vector(2, u500), undefined) +// @as(@Vector(2, u500), undefined) +// @as(u1, undefined) +// @as(@Vector(2, u1), [runtime value]) +// @as(@Vector(2, u1), [runtime value]) +// @as(@Vector(2, u1), undefined) +// @as(u500, undefined) +// @as(@Vector(2, u500), undefined) +// @as(i32, undefined) +// @as(i32, undefined) +// @as(@Vector(2, i32), .{ 6, undefined }) +// @as(@Vector(2, i32), .{ undefined, 6 }) +// @as(@Vector(2, i32), undefined) +// @as(@Vector(2, i32), .{ 6, undefined }) +// @as(@Vector(2, i32), .{ 6, undefined }) +// @as(@Vector(2, i32), undefined) +// @as(@Vector(2, i32), undefined) +// @as(@Vector(2, i32), .{ undefined, 6 }) +// @as(@Vector(2, i32), undefined) +// @as(@Vector(2, i32), .{ undefined, 6 }) +// @as(@Vector(2, i32), undefined) +// @as(@Vector(2, i32), undefined) +// @as(@Vector(2, i32), undefined) +// @as(@Vector(2, i32), undefined) +// @as(@Vector(2, i32), undefined) +// @as(i32, undefined) +// @as(i32, undefined) +// @as(@Vector(2, i32), .{ 6, undefined }) +// @as(@Vector(2, i32), .{ undefined, 6 }) +// @as(@Vector(2, i32), undefined) +// @as(@Vector(2, i32), .{ 6, undefined }) +// @as(@Vector(2, i32), .{ 6, undefined }) +// @as(@Vector(2, i32), undefined) +// @as(@Vector(2, i32), undefined) +// @as(@Vector(2, i32), .{ undefined, 6 }) +// @as(@Vector(2, i32), undefined) +// @as(@Vector(2, i32), .{ undefined, 6 }) +// @as(@Vector(2, i32), undefined) +// @as(@Vector(2, i32), undefined) +// @as(@Vector(2, i32), undefined) +// @as(@Vector(2, i32), undefined) +// @as(@Vector(2, i32), undefined) +// @as(i32, undefined) +// @as(i32, undefined) +// @as(@Vector(2, i32), .{ 0, undefined }) +// @as(@Vector(2, i32), .{ undefined, 0 }) +// @as(@Vector(2, i32), undefined) +// @as(@Vector(2, i32), .{ 0, undefined }) +// @as(@Vector(2, i32), .{ 0, undefined }) +// @as(@Vector(2, i32), undefined) +// @as(@Vector(2, i32), undefined) +// @as(@Vector(2, i32), .{ undefined, 0 }) +// @as(@Vector(2, i32), undefined) +// @as(@Vector(2, i32), .{ undefined, 0 }) +// @as(@Vector(2, i32), undefined) +// @as(@Vector(2, i32), undefined) +// @as(@Vector(2, i32), undefined) +// @as(@Vector(2, i32), undefined) +// @as(@Vector(2, i32), undefined) +// @as(i32, undefined) +// @as(i32, undefined) +// @as(@Vector(2, i32), .{ 0, undefined }) +// @as(@Vector(2, i32), .{ undefined, 0 }) +// @as(@Vector(2, i32), undefined) +// @as(@Vector(2, i32), .{ 0, undefined }) +// @as(@Vector(2, i32), .{ 0, undefined }) +// @as(@Vector(2, i32), undefined) +// @as(@Vector(2, i32), undefined) +// @as(@Vector(2, i32), .{ undefined, 0 }) +// @as(@Vector(2, i32), undefined) +// @as(@Vector(2, i32), .{ undefined, 0 }) +// @as(@Vector(2, i32), undefined) +// @as(@Vector(2, i32), undefined) +// @as(@Vector(2, i32), undefined) +// @as(@Vector(2, i32), undefined) +// @as(@Vector(2, i32), undefined) +// @as(i32, undefined) +// @as(i32, undefined) +// @as(@Vector(2, i32), .{ 9, undefined }) +// @as(@Vector(2, i32), .{ undefined, 9 }) +// @as(@Vector(2, i32), undefined) +// @as(@Vector(2, i32), .{ 9, undefined }) +// @as(@Vector(2, i32), .{ 9, undefined }) +// @as(@Vector(2, i32), undefined) +// @as(@Vector(2, i32), undefined) +// @as(@Vector(2, i32), .{ undefined, 9 }) +// @as(@Vector(2, i32), undefined) +// @as(@Vector(2, i32), .{ undefined, 9 }) +// @as(@Vector(2, i32), undefined) +// @as(@Vector(2, i32), undefined) +// @as(@Vector(2, i32), undefined) +// @as(@Vector(2, i32), undefined) +// @as(@Vector(2, i32), undefined) +// @as(i32, undefined) +// @as(i32, undefined) +// @as(@Vector(2, i32), .{ 9, undefined }) +// @as(@Vector(2, i32), .{ undefined, 9 }) +// @as(@Vector(2, i32), undefined) +// @as(@Vector(2, i32), .{ 9, undefined }) +// @as(@Vector(2, i32), .{ 9, undefined }) +// @as(@Vector(2, i32), undefined) +// @as(@Vector(2, i32), undefined) +// @as(@Vector(2, i32), .{ undefined, 9 }) +// @as(@Vector(2, i32), undefined) +// @as(@Vector(2, i32), .{ undefined, 9 }) +// @as(@Vector(2, i32), undefined) +// @as(@Vector(2, i32), undefined) +// @as(@Vector(2, i32), undefined) +// @as(@Vector(2, i32), undefined) +// @as(@Vector(2, i32), undefined) +// @as(i32, undefined) +// @as(i32, undefined) +// @as(@Vector(2, i32), .{ 0, undefined }) +// @as(@Vector(2, i32), .{ undefined, 0 }) +// @as(@Vector(2, i32), undefined) +// @as(@Vector(2, i32), .{ 0, undefined }) +// @as(@Vector(2, i32), .{ 0, undefined }) +// @as(@Vector(2, i32), undefined) +// @as(@Vector(2, i32), undefined) +// @as(@Vector(2, i32), .{ undefined, 0 }) +// @as(@Vector(2, i32), undefined) +// @as(@Vector(2, i32), .{ undefined, 0 }) +// @as(@Vector(2, i32), undefined) +// @as(@Vector(2, i32), undefined) +// @as(@Vector(2, i32), undefined) +// @as(@Vector(2, i32), undefined) +// @as(@Vector(2, i32), undefined) +// @as(i32, undefined) +// @as(@Vector(2, i32), undefined) +// @as(i32, undefined) +// @as(i32, undefined) +// @as(@Vector(2, i32), undefined) +// @as(@Vector(2, i32), undefined) +// @as(i32, undefined) +// @as(@Vector(2, i32), undefined) +// @as(i32, undefined) +// @as(i32, undefined) +// @as(@Vector(2, i32), [runtime value]) +// @as(@Vector(2, i32), [runtime value]) +// @as(@Vector(2, i32), undefined) +// @as(@Vector(2, i32), [runtime value]) +// @as(@Vector(2, i32), [runtime value]) +// @as(@Vector(2, i32), [runtime value]) +// @as(@Vector(2, i32), undefined) +// @as(@Vector(2, i32), [runtime value]) +// @as(@Vector(2, i32), [runtime value]) +// @as(@Vector(2, i32), [runtime value]) +// @as(@Vector(2, i32), undefined) +// @as(@Vector(2, i32), undefined) +// @as(@Vector(2, i32), undefined) +// @as(@Vector(2, i32), undefined) +// @as(@Vector(2, i32), undefined) +// @as(i32, undefined) +// @as(i32, undefined) +// @as(@Vector(2, i32), [runtime value]) +// @as(@Vector(2, i32), [runtime value]) +// @as(@Vector(2, i32), undefined) +// @as(@Vector(2, i32), [runtime value]) +// @as(@Vector(2, i32), [runtime value]) +// @as(@Vector(2, i32), [runtime value]) +// @as(@Vector(2, i32), undefined) +// @as(@Vector(2, i32), [runtime value]) +// @as(@Vector(2, i32), [runtime value]) +// @as(@Vector(2, i32), [runtime value]) +// @as(@Vector(2, i32), undefined) +// @as(@Vector(2, i32), undefined) +// @as(@Vector(2, i32), undefined) +// @as(@Vector(2, i32), undefined) +// @as(@Vector(2, i32), undefined) +// @as(i32, undefined) +// @as(i32, undefined) +// @as(@Vector(2, i32), [runtime value]) +// @as(@Vector(2, i32), [runtime value]) +// @as(@Vector(2, i32), undefined) +// @as(@Vector(2, i32), [runtime value]) +// @as(@Vector(2, i32), [runtime value]) +// @as(@Vector(2, i32), [runtime value]) +// @as(@Vector(2, i32), undefined) +// @as(@Vector(2, i32), [runtime value]) +// @as(@Vector(2, i32), [runtime value]) +// @as(@Vector(2, i32), [runtime value]) +// @as(@Vector(2, i32), undefined) +// @as(@Vector(2, i32), undefined) +// @as(@Vector(2, i32), undefined) +// @as(@Vector(2, i32), undefined) +// @as(@Vector(2, i32), undefined) +// @as(i32, undefined) +// @as(i32, undefined) +// @as(@Vector(2, i32), [runtime value]) +// @as(@Vector(2, i32), [runtime value]) +// @as(@Vector(2, i32), undefined) +// @as(@Vector(2, i32), [runtime value]) +// @as(@Vector(2, i32), [runtime value]) +// @as(@Vector(2, i32), [runtime value]) +// @as(@Vector(2, i32), undefined) +// @as(@Vector(2, i32), [runtime value]) +// @as(@Vector(2, i32), [runtime value]) +// @as(@Vector(2, i32), [runtime value]) +// @as(@Vector(2, i32), undefined) +// @as(@Vector(2, i32), undefined) +// @as(@Vector(2, i32), undefined) +// @as(@Vector(2, i32), undefined) +// @as(@Vector(2, i32), undefined) +// @as(i32, undefined) +// @as(i32, undefined) +// @as(@Vector(2, i32), [runtime value]) +// @as(@Vector(2, i32), [runtime value]) +// @as(@Vector(2, i32), undefined) +// @as(@Vector(2, i32), [runtime value]) +// @as(@Vector(2, i32), [runtime value]) +// @as(@Vector(2, i32), [runtime value]) +// @as(@Vector(2, i32), undefined) +// @as(@Vector(2, i32), [runtime value]) +// @as(@Vector(2, i32), [runtime value]) +// @as(@Vector(2, i32), [runtime value]) +// @as(@Vector(2, i32), undefined) +// @as(@Vector(2, i32), undefined) +// @as(@Vector(2, i32), undefined) +// @as(@Vector(2, i32), undefined) +// @as(@Vector(2, i32), undefined) +// @as(i32, undefined) +// @as(i32, undefined) +// @as(@Vector(2, i32), [runtime value]) +// @as(@Vector(2, i32), [runtime value]) +// @as(@Vector(2, i32), undefined) +// @as(@Vector(2, i32), [runtime value]) +// @as(@Vector(2, i32), [runtime value]) +// @as(@Vector(2, i32), [runtime value]) +// @as(@Vector(2, i32), undefined) +// @as(@Vector(2, i32), [runtime value]) +// @as(@Vector(2, i32), [runtime value]) +// @as(@Vector(2, i32), [runtime value]) +// @as(@Vector(2, i32), undefined) +// @as(@Vector(2, i32), undefined) +// @as(@Vector(2, i32), undefined) +// @as(@Vector(2, i32), undefined) +// @as(@Vector(2, i32), undefined) +// @as(i32, [runtime value]) +// @as(i32, [runtime value]) +// @as(@Vector(2, i32), [runtime value]) +// @as(@Vector(2, i32), [runtime value]) +// @as(@Vector(2, i32), [runtime value]) +// @as(@Vector(2, i32), [runtime value]) +// @as(@Vector(2, i32), [runtime value]) +// @as(@Vector(2, i32), [runtime value]) +// @as(@Vector(2, i32), [runtime value]) +// @as(@Vector(2, i32), [runtime value]) +// @as(@Vector(2, i32), [runtime value]) +// @as(@Vector(2, i32), [runtime value]) +// @as(@Vector(2, i32), [runtime value]) +// @as(@Vector(2, i32), [runtime value]) +// @as(@Vector(2, i32), [runtime value]) +// @as(@Vector(2, i32), [runtime value]) +// @as(@Vector(2, i32), undefined) +// @as(i32, undefined) +// @as(@Vector(2, i32), undefined) +// @as(i32, undefined) +// @as(i32, undefined) +// @as(@Vector(2, i32), undefined) +// @as(@Vector(2, i32), undefined) +// @as(i32, undefined) +// @as(@Vector(2, i32), undefined) +// @as(u32, undefined) +// @as(u32, undefined) +// @as(@Vector(2, u32), .{ 6, undefined }) +// @as(@Vector(2, u32), .{ undefined, 6 }) +// @as(@Vector(2, u32), undefined) +// @as(@Vector(2, u32), .{ 6, undefined }) +// @as(@Vector(2, u32), .{ 6, undefined }) +// @as(@Vector(2, u32), undefined) +// @as(@Vector(2, u32), undefined) +// @as(@Vector(2, u32), .{ undefined, 6 }) +// @as(@Vector(2, u32), undefined) +// @as(@Vector(2, u32), .{ undefined, 6 }) +// @as(@Vector(2, u32), undefined) +// @as(@Vector(2, u32), undefined) +// @as(@Vector(2, u32), undefined) +// @as(@Vector(2, u32), undefined) +// @as(@Vector(2, u32), undefined) +// @as(u32, undefined) +// @as(u32, undefined) +// @as(@Vector(2, u32), .{ 6, undefined }) +// @as(@Vector(2, u32), .{ undefined, 6 }) +// @as(@Vector(2, u32), undefined) +// @as(@Vector(2, u32), .{ 6, undefined }) +// @as(@Vector(2, u32), .{ 6, undefined }) +// @as(@Vector(2, u32), undefined) +// @as(@Vector(2, u32), undefined) +// @as(@Vector(2, u32), .{ undefined, 6 }) +// @as(@Vector(2, u32), undefined) +// @as(@Vector(2, u32), .{ undefined, 6 }) +// @as(@Vector(2, u32), undefined) +// @as(@Vector(2, u32), undefined) +// @as(@Vector(2, u32), undefined) +// @as(@Vector(2, u32), undefined) +// @as(@Vector(2, u32), undefined) +// @as(u32, undefined) +// @as(u32, undefined) +// @as(@Vector(2, u32), .{ 0, undefined }) +// @as(@Vector(2, u32), .{ undefined, 0 }) +// @as(@Vector(2, u32), undefined) +// @as(@Vector(2, u32), .{ 0, undefined }) +// @as(@Vector(2, u32), .{ 0, undefined }) +// @as(@Vector(2, u32), undefined) +// @as(@Vector(2, u32), undefined) +// @as(@Vector(2, u32), .{ undefined, 0 }) +// @as(@Vector(2, u32), undefined) +// @as(@Vector(2, u32), .{ undefined, 0 }) +// @as(@Vector(2, u32), undefined) +// @as(@Vector(2, u32), undefined) +// @as(@Vector(2, u32), undefined) +// @as(@Vector(2, u32), undefined) +// @as(@Vector(2, u32), undefined) +// @as(u32, undefined) +// @as(u32, undefined) +// @as(@Vector(2, u32), .{ 0, undefined }) +// @as(@Vector(2, u32), .{ undefined, 0 }) +// @as(@Vector(2, u32), undefined) +// @as(@Vector(2, u32), .{ 0, undefined }) +// @as(@Vector(2, u32), .{ 0, undefined }) +// @as(@Vector(2, u32), undefined) +// @as(@Vector(2, u32), undefined) +// @as(@Vector(2, u32), .{ undefined, 0 }) +// @as(@Vector(2, u32), undefined) +// @as(@Vector(2, u32), .{ undefined, 0 }) +// @as(@Vector(2, u32), undefined) +// @as(@Vector(2, u32), undefined) +// @as(@Vector(2, u32), undefined) +// @as(@Vector(2, u32), undefined) +// @as(@Vector(2, u32), undefined) +// @as(u32, undefined) +// @as(u32, undefined) +// @as(@Vector(2, u32), .{ 9, undefined }) +// @as(@Vector(2, u32), .{ undefined, 9 }) +// @as(@Vector(2, u32), undefined) +// @as(@Vector(2, u32), .{ 9, undefined }) +// @as(@Vector(2, u32), .{ 9, undefined }) +// @as(@Vector(2, u32), undefined) +// @as(@Vector(2, u32), undefined) +// @as(@Vector(2, u32), .{ undefined, 9 }) +// @as(@Vector(2, u32), undefined) +// @as(@Vector(2, u32), .{ undefined, 9 }) +// @as(@Vector(2, u32), undefined) +// @as(@Vector(2, u32), undefined) +// @as(@Vector(2, u32), undefined) +// @as(@Vector(2, u32), undefined) +// @as(@Vector(2, u32), undefined) +// @as(u32, undefined) +// @as(u32, undefined) +// @as(@Vector(2, u32), .{ 9, undefined }) +// @as(@Vector(2, u32), .{ undefined, 9 }) +// @as(@Vector(2, u32), undefined) +// @as(@Vector(2, u32), .{ 9, undefined }) +// @as(@Vector(2, u32), .{ 9, undefined }) +// @as(@Vector(2, u32), undefined) +// @as(@Vector(2, u32), undefined) +// @as(@Vector(2, u32), .{ undefined, 9 }) +// @as(@Vector(2, u32), undefined) +// @as(@Vector(2, u32), .{ undefined, 9 }) +// @as(@Vector(2, u32), undefined) +// @as(@Vector(2, u32), undefined) +// @as(@Vector(2, u32), undefined) +// @as(@Vector(2, u32), undefined) +// @as(@Vector(2, u32), undefined) +// @as(u32, undefined) +// @as(u32, undefined) +// @as(@Vector(2, u32), .{ 24, undefined }) +// @as(@Vector(2, u32), .{ undefined, 24 }) +// @as(@Vector(2, u32), undefined) +// @as(@Vector(2, u32), .{ 24, undefined }) +// @as(@Vector(2, u32), .{ 24, undefined }) +// @as(@Vector(2, u32), undefined) +// @as(@Vector(2, u32), undefined) +// @as(@Vector(2, u32), .{ undefined, 24 }) +// @as(@Vector(2, u32), undefined) +// @as(@Vector(2, u32), .{ undefined, 24 }) +// @as(@Vector(2, u32), undefined) +// @as(@Vector(2, u32), undefined) +// @as(@Vector(2, u32), undefined) +// @as(@Vector(2, u32), undefined) +// @as(@Vector(2, u32), undefined) +// @as(u32, undefined) +// @as(u32, undefined) +// @as(@Vector(2, u32), .{ 0, undefined }) +// @as(@Vector(2, u32), .{ undefined, 0 }) +// @as(@Vector(2, u32), undefined) +// @as(@Vector(2, u32), .{ 0, undefined }) +// @as(@Vector(2, u32), .{ 0, undefined }) +// @as(@Vector(2, u32), undefined) +// @as(@Vector(2, u32), undefined) +// @as(@Vector(2, u32), .{ undefined, 0 }) +// @as(@Vector(2, u32), undefined) +// @as(@Vector(2, u32), .{ undefined, 0 }) +// @as(@Vector(2, u32), undefined) +// @as(@Vector(2, u32), undefined) +// @as(@Vector(2, u32), undefined) +// @as(@Vector(2, u32), undefined) +// @as(@Vector(2, u32), undefined) +// @as(u32, undefined) +// @as(@Vector(2, u32), undefined) +// @as(u32, undefined) +// @as(u32, undefined) +// @as(@Vector(2, u32), undefined) +// @as(@Vector(2, u32), undefined) +// @as(u1, undefined) +// @as(@Vector(2, u1), .{ 1, undefined }) +// @as(@Vector(2, u1), .{ undefined, 1 }) +// @as(@Vector(2, u1), undefined) +// @as(u32, undefined) +// @as(@Vector(2, u32), undefined) +// @as(u32, undefined) +// @as(u32, undefined) +// @as(@Vector(2, u32), [runtime value]) +// @as(@Vector(2, u32), [runtime value]) +// @as(@Vector(2, u32), undefined) +// @as(@Vector(2, u32), [runtime value]) +// @as(@Vector(2, u32), [runtime value]) +// @as(@Vector(2, u32), [runtime value]) +// @as(@Vector(2, u32), undefined) +// @as(@Vector(2, u32), [runtime value]) +// @as(@Vector(2, u32), [runtime value]) +// @as(@Vector(2, u32), [runtime value]) +// @as(@Vector(2, u32), undefined) +// @as(@Vector(2, u32), undefined) +// @as(@Vector(2, u32), undefined) +// @as(@Vector(2, u32), undefined) +// @as(@Vector(2, u32), undefined) +// @as(u32, undefined) +// @as(u32, undefined) +// @as(@Vector(2, u32), [runtime value]) +// @as(@Vector(2, u32), [runtime value]) +// @as(@Vector(2, u32), undefined) +// @as(@Vector(2, u32), [runtime value]) +// @as(@Vector(2, u32), [runtime value]) +// @as(@Vector(2, u32), [runtime value]) +// @as(@Vector(2, u32), undefined) +// @as(@Vector(2, u32), [runtime value]) +// @as(@Vector(2, u32), [runtime value]) +// @as(@Vector(2, u32), [runtime value]) +// @as(@Vector(2, u32), undefined) +// @as(@Vector(2, u32), undefined) +// @as(@Vector(2, u32), undefined) +// @as(@Vector(2, u32), undefined) +// @as(@Vector(2, u32), undefined) +// @as(u32, undefined) +// @as(u32, undefined) +// @as(@Vector(2, u32), [runtime value]) +// @as(@Vector(2, u32), [runtime value]) +// @as(@Vector(2, u32), undefined) +// @as(@Vector(2, u32), [runtime value]) +// @as(@Vector(2, u32), [runtime value]) +// @as(@Vector(2, u32), [runtime value]) +// @as(@Vector(2, u32), undefined) +// @as(@Vector(2, u32), [runtime value]) +// @as(@Vector(2, u32), [runtime value]) +// @as(@Vector(2, u32), [runtime value]) +// @as(@Vector(2, u32), undefined) +// @as(@Vector(2, u32), undefined) +// @as(@Vector(2, u32), undefined) +// @as(@Vector(2, u32), undefined) +// @as(@Vector(2, u32), undefined) +// @as(u32, undefined) +// @as(u32, undefined) +// @as(@Vector(2, u32), [runtime value]) +// @as(@Vector(2, u32), [runtime value]) +// @as(@Vector(2, u32), undefined) +// @as(@Vector(2, u32), [runtime value]) +// @as(@Vector(2, u32), [runtime value]) +// @as(@Vector(2, u32), [runtime value]) +// @as(@Vector(2, u32), undefined) +// @as(@Vector(2, u32), [runtime value]) +// @as(@Vector(2, u32), [runtime value]) +// @as(@Vector(2, u32), [runtime value]) +// @as(@Vector(2, u32), undefined) +// @as(@Vector(2, u32), undefined) +// @as(@Vector(2, u32), undefined) +// @as(@Vector(2, u32), undefined) +// @as(@Vector(2, u32), undefined) +// @as(u32, undefined) +// @as(u32, undefined) +// @as(@Vector(2, u32), [runtime value]) +// @as(@Vector(2, u32), [runtime value]) +// @as(@Vector(2, u32), undefined) +// @as(@Vector(2, u32), [runtime value]) +// @as(@Vector(2, u32), [runtime value]) +// @as(@Vector(2, u32), [runtime value]) +// @as(@Vector(2, u32), undefined) +// @as(@Vector(2, u32), [runtime value]) +// @as(@Vector(2, u32), [runtime value]) +// @as(@Vector(2, u32), [runtime value]) +// @as(@Vector(2, u32), undefined) +// @as(@Vector(2, u32), undefined) +// @as(@Vector(2, u32), undefined) +// @as(@Vector(2, u32), undefined) +// @as(@Vector(2, u32), undefined) +// @as(u32, undefined) +// @as(u32, undefined) +// @as(@Vector(2, u32), [runtime value]) +// @as(@Vector(2, u32), [runtime value]) +// @as(@Vector(2, u32), undefined) +// @as(@Vector(2, u32), [runtime value]) +// @as(@Vector(2, u32), [runtime value]) +// @as(@Vector(2, u32), [runtime value]) +// @as(@Vector(2, u32), undefined) +// @as(@Vector(2, u32), [runtime value]) +// @as(@Vector(2, u32), [runtime value]) +// @as(@Vector(2, u32), [runtime value]) +// @as(@Vector(2, u32), undefined) +// @as(@Vector(2, u32), undefined) +// @as(@Vector(2, u32), undefined) +// @as(@Vector(2, u32), undefined) +// @as(@Vector(2, u32), undefined) +// @as(u32, undefined) +// @as(u32, undefined) +// @as(@Vector(2, u32), [runtime value]) +// @as(@Vector(2, u32), [runtime value]) +// @as(@Vector(2, u32), undefined) +// @as(@Vector(2, u32), [runtime value]) +// @as(@Vector(2, u32), [runtime value]) +// @as(@Vector(2, u32), [runtime value]) +// @as(@Vector(2, u32), undefined) +// @as(@Vector(2, u32), [runtime value]) +// @as(@Vector(2, u32), [runtime value]) +// @as(@Vector(2, u32), [runtime value]) +// @as(@Vector(2, u32), undefined) +// @as(@Vector(2, u32), undefined) +// @as(@Vector(2, u32), undefined) +// @as(@Vector(2, u32), undefined) +// @as(@Vector(2, u32), undefined) +// @as(u32, [runtime value]) +// @as(u32, [runtime value]) +// @as(@Vector(2, u32), [runtime value]) +// @as(@Vector(2, u32), [runtime value]) +// @as(@Vector(2, u32), [runtime value]) +// @as(@Vector(2, u32), [runtime value]) +// @as(@Vector(2, u32), [runtime value]) +// @as(@Vector(2, u32), [runtime value]) +// @as(@Vector(2, u32), [runtime value]) +// @as(@Vector(2, u32), [runtime value]) +// @as(@Vector(2, u32), [runtime value]) +// @as(@Vector(2, u32), [runtime value]) +// @as(@Vector(2, u32), [runtime value]) +// @as(@Vector(2, u32), [runtime value]) +// @as(@Vector(2, u32), [runtime value]) +// @as(@Vector(2, u32), [runtime value]) +// @as(@Vector(2, u32), undefined) +// @as(u32, undefined) +// @as(@Vector(2, u32), undefined) +// @as(u32, undefined) +// @as(u32, undefined) +// @as(@Vector(2, u32), undefined) +// @as(@Vector(2, u32), undefined) +// @as(u1, undefined) +// @as(@Vector(2, u1), [runtime value]) +// @as(@Vector(2, u1), [runtime value]) +// @as(@Vector(2, u1), undefined) +// @as(u32, undefined) +// @as(@Vector(2, u32), undefined) +// @as(i8, undefined) +// @as(i8, undefined) +// @as(@Vector(2, i8), .{ 6, undefined }) +// @as(@Vector(2, i8), .{ undefined, 6 }) +// @as(@Vector(2, i8), undefined) +// @as(@Vector(2, i8), .{ 6, undefined }) +// @as(@Vector(2, i8), .{ 6, undefined }) +// @as(@Vector(2, i8), undefined) +// @as(@Vector(2, i8), undefined) +// @as(@Vector(2, i8), .{ undefined, 6 }) +// @as(@Vector(2, i8), undefined) +// @as(@Vector(2, i8), .{ undefined, 6 }) +// @as(@Vector(2, i8), undefined) +// @as(@Vector(2, i8), undefined) +// @as(@Vector(2, i8), undefined) +// @as(@Vector(2, i8), undefined) +// @as(@Vector(2, i8), undefined) +// @as(i8, undefined) +// @as(i8, undefined) +// @as(@Vector(2, i8), .{ 6, undefined }) +// @as(@Vector(2, i8), .{ undefined, 6 }) +// @as(@Vector(2, i8), undefined) +// @as(@Vector(2, i8), .{ 6, undefined }) +// @as(@Vector(2, i8), .{ 6, undefined }) +// @as(@Vector(2, i8), undefined) +// @as(@Vector(2, i8), undefined) +// @as(@Vector(2, i8), .{ undefined, 6 }) +// @as(@Vector(2, i8), undefined) +// @as(@Vector(2, i8), .{ undefined, 6 }) +// @as(@Vector(2, i8), undefined) +// @as(@Vector(2, i8), undefined) +// @as(@Vector(2, i8), undefined) +// @as(@Vector(2, i8), undefined) +// @as(@Vector(2, i8), undefined) +// @as(i8, undefined) +// @as(i8, undefined) +// @as(@Vector(2, i8), .{ 0, undefined }) +// @as(@Vector(2, i8), .{ undefined, 0 }) +// @as(@Vector(2, i8), undefined) +// @as(@Vector(2, i8), .{ 0, undefined }) +// @as(@Vector(2, i8), .{ 0, undefined }) +// @as(@Vector(2, i8), undefined) +// @as(@Vector(2, i8), undefined) +// @as(@Vector(2, i8), .{ undefined, 0 }) +// @as(@Vector(2, i8), undefined) +// @as(@Vector(2, i8), .{ undefined, 0 }) +// @as(@Vector(2, i8), undefined) +// @as(@Vector(2, i8), undefined) +// @as(@Vector(2, i8), undefined) +// @as(@Vector(2, i8), undefined) +// @as(@Vector(2, i8), undefined) +// @as(i8, undefined) +// @as(i8, undefined) +// @as(@Vector(2, i8), .{ 0, undefined }) +// @as(@Vector(2, i8), .{ undefined, 0 }) +// @as(@Vector(2, i8), undefined) +// @as(@Vector(2, i8), .{ 0, undefined }) +// @as(@Vector(2, i8), .{ 0, undefined }) +// @as(@Vector(2, i8), undefined) +// @as(@Vector(2, i8), undefined) +// @as(@Vector(2, i8), .{ undefined, 0 }) +// @as(@Vector(2, i8), undefined) +// @as(@Vector(2, i8), .{ undefined, 0 }) +// @as(@Vector(2, i8), undefined) +// @as(@Vector(2, i8), undefined) +// @as(@Vector(2, i8), undefined) +// @as(@Vector(2, i8), undefined) +// @as(@Vector(2, i8), undefined) +// @as(i8, undefined) +// @as(i8, undefined) +// @as(@Vector(2, i8), .{ 9, undefined }) +// @as(@Vector(2, i8), .{ undefined, 9 }) +// @as(@Vector(2, i8), undefined) +// @as(@Vector(2, i8), .{ 9, undefined }) +// @as(@Vector(2, i8), .{ 9, undefined }) +// @as(@Vector(2, i8), undefined) +// @as(@Vector(2, i8), undefined) +// @as(@Vector(2, i8), .{ undefined, 9 }) +// @as(@Vector(2, i8), undefined) +// @as(@Vector(2, i8), .{ undefined, 9 }) +// @as(@Vector(2, i8), undefined) +// @as(@Vector(2, i8), undefined) +// @as(@Vector(2, i8), undefined) +// @as(@Vector(2, i8), undefined) +// @as(@Vector(2, i8), undefined) +// @as(i8, undefined) +// @as(i8, undefined) +// @as(@Vector(2, i8), .{ 9, undefined }) +// @as(@Vector(2, i8), .{ undefined, 9 }) +// @as(@Vector(2, i8), undefined) +// @as(@Vector(2, i8), .{ 9, undefined }) +// @as(@Vector(2, i8), .{ 9, undefined }) +// @as(@Vector(2, i8), undefined) +// @as(@Vector(2, i8), undefined) +// @as(@Vector(2, i8), .{ undefined, 9 }) +// @as(@Vector(2, i8), undefined) +// @as(@Vector(2, i8), .{ undefined, 9 }) +// @as(@Vector(2, i8), undefined) +// @as(@Vector(2, i8), undefined) +// @as(@Vector(2, i8), undefined) +// @as(@Vector(2, i8), undefined) +// @as(@Vector(2, i8), undefined) +// @as(i8, undefined) +// @as(i8, undefined) +// @as(@Vector(2, i8), .{ 0, undefined }) +// @as(@Vector(2, i8), .{ undefined, 0 }) +// @as(@Vector(2, i8), undefined) +// @as(@Vector(2, i8), .{ 0, undefined }) +// @as(@Vector(2, i8), .{ 0, undefined }) +// @as(@Vector(2, i8), undefined) +// @as(@Vector(2, i8), undefined) +// @as(@Vector(2, i8), .{ undefined, 0 }) +// @as(@Vector(2, i8), undefined) +// @as(@Vector(2, i8), .{ undefined, 0 }) +// @as(@Vector(2, i8), undefined) +// @as(@Vector(2, i8), undefined) +// @as(@Vector(2, i8), undefined) +// @as(@Vector(2, i8), undefined) +// @as(@Vector(2, i8), undefined) +// @as(i8, undefined) +// @as(@Vector(2, i8), undefined) +// @as(i8, undefined) +// @as(i8, undefined) +// @as(@Vector(2, i8), undefined) +// @as(@Vector(2, i8), undefined) +// @as(i8, undefined) +// @as(@Vector(2, i8), undefined) +// @as(i8, undefined) +// @as(i8, undefined) +// @as(@Vector(2, i8), [runtime value]) +// @as(@Vector(2, i8), [runtime value]) +// @as(@Vector(2, i8), undefined) +// @as(@Vector(2, i8), [runtime value]) +// @as(@Vector(2, i8), [runtime value]) +// @as(@Vector(2, i8), [runtime value]) +// @as(@Vector(2, i8), undefined) +// @as(@Vector(2, i8), [runtime value]) +// @as(@Vector(2, i8), [runtime value]) +// @as(@Vector(2, i8), [runtime value]) +// @as(@Vector(2, i8), undefined) +// @as(@Vector(2, i8), undefined) +// @as(@Vector(2, i8), undefined) +// @as(@Vector(2, i8), undefined) +// @as(@Vector(2, i8), undefined) +// @as(i8, undefined) +// @as(i8, undefined) +// @as(@Vector(2, i8), [runtime value]) +// @as(@Vector(2, i8), [runtime value]) +// @as(@Vector(2, i8), undefined) +// @as(@Vector(2, i8), [runtime value]) +// @as(@Vector(2, i8), [runtime value]) +// @as(@Vector(2, i8), [runtime value]) +// @as(@Vector(2, i8), undefined) +// @as(@Vector(2, i8), [runtime value]) +// @as(@Vector(2, i8), [runtime value]) +// @as(@Vector(2, i8), [runtime value]) +// @as(@Vector(2, i8), undefined) +// @as(@Vector(2, i8), undefined) +// @as(@Vector(2, i8), undefined) +// @as(@Vector(2, i8), undefined) +// @as(@Vector(2, i8), undefined) +// @as(i8, undefined) +// @as(i8, undefined) +// @as(@Vector(2, i8), [runtime value]) +// @as(@Vector(2, i8), [runtime value]) +// @as(@Vector(2, i8), undefined) +// @as(@Vector(2, i8), [runtime value]) +// @as(@Vector(2, i8), [runtime value]) +// @as(@Vector(2, i8), [runtime value]) +// @as(@Vector(2, i8), undefined) +// @as(@Vector(2, i8), [runtime value]) +// @as(@Vector(2, i8), [runtime value]) +// @as(@Vector(2, i8), [runtime value]) +// @as(@Vector(2, i8), undefined) +// @as(@Vector(2, i8), undefined) +// @as(@Vector(2, i8), undefined) +// @as(@Vector(2, i8), undefined) +// @as(@Vector(2, i8), undefined) +// @as(i8, undefined) +// @as(i8, undefined) +// @as(@Vector(2, i8), [runtime value]) +// @as(@Vector(2, i8), [runtime value]) +// @as(@Vector(2, i8), undefined) +// @as(@Vector(2, i8), [runtime value]) +// @as(@Vector(2, i8), [runtime value]) +// @as(@Vector(2, i8), [runtime value]) +// @as(@Vector(2, i8), undefined) +// @as(@Vector(2, i8), [runtime value]) +// @as(@Vector(2, i8), [runtime value]) +// @as(@Vector(2, i8), [runtime value]) +// @as(@Vector(2, i8), undefined) +// @as(@Vector(2, i8), undefined) +// @as(@Vector(2, i8), undefined) +// @as(@Vector(2, i8), undefined) +// @as(@Vector(2, i8), undefined) +// @as(i8, undefined) +// @as(i8, undefined) +// @as(@Vector(2, i8), [runtime value]) +// @as(@Vector(2, i8), [runtime value]) +// @as(@Vector(2, i8), undefined) +// @as(@Vector(2, i8), [runtime value]) +// @as(@Vector(2, i8), [runtime value]) +// @as(@Vector(2, i8), [runtime value]) +// @as(@Vector(2, i8), undefined) +// @as(@Vector(2, i8), [runtime value]) +// @as(@Vector(2, i8), [runtime value]) +// @as(@Vector(2, i8), [runtime value]) +// @as(@Vector(2, i8), undefined) +// @as(@Vector(2, i8), undefined) +// @as(@Vector(2, i8), undefined) +// @as(@Vector(2, i8), undefined) +// @as(@Vector(2, i8), undefined) +// @as(i8, undefined) +// @as(i8, undefined) +// @as(@Vector(2, i8), [runtime value]) +// @as(@Vector(2, i8), [runtime value]) +// @as(@Vector(2, i8), undefined) +// @as(@Vector(2, i8), [runtime value]) +// @as(@Vector(2, i8), [runtime value]) +// @as(@Vector(2, i8), [runtime value]) +// @as(@Vector(2, i8), undefined) +// @as(@Vector(2, i8), [runtime value]) +// @as(@Vector(2, i8), [runtime value]) +// @as(@Vector(2, i8), [runtime value]) +// @as(@Vector(2, i8), undefined) +// @as(@Vector(2, i8), undefined) +// @as(@Vector(2, i8), undefined) +// @as(@Vector(2, i8), undefined) +// @as(@Vector(2, i8), undefined) +// @as(i8, [runtime value]) +// @as(i8, [runtime value]) +// @as(@Vector(2, i8), [runtime value]) +// @as(@Vector(2, i8), [runtime value]) +// @as(@Vector(2, i8), [runtime value]) +// @as(@Vector(2, i8), [runtime value]) +// @as(@Vector(2, i8), [runtime value]) +// @as(@Vector(2, i8), [runtime value]) +// @as(@Vector(2, i8), [runtime value]) +// @as(@Vector(2, i8), [runtime value]) +// @as(@Vector(2, i8), [runtime value]) +// @as(@Vector(2, i8), [runtime value]) +// @as(@Vector(2, i8), [runtime value]) +// @as(@Vector(2, i8), [runtime value]) +// @as(@Vector(2, i8), [runtime value]) +// @as(@Vector(2, i8), [runtime value]) +// @as(@Vector(2, i8), undefined) +// @as(i8, undefined) +// @as(@Vector(2, i8), undefined) +// @as(i8, undefined) +// @as(i8, undefined) +// @as(@Vector(2, i8), undefined) +// @as(@Vector(2, i8), undefined) +// @as(i8, undefined) +// @as(@Vector(2, i8), undefined) // @as(f128, undefined) // @as(f128, undefined) // @as(@Vector(2, f128), .{ 6, undefined }) @@ -2585,3 +2145,443 @@ inline fn testFloatWithValue(comptime Float: type, x: Float) void { // @as(@Vector(2, f128), [runtime value]) // @as(@Vector(2, f128), [runtime value]) // @as(@Vector(2, f128), undefined) +// @as(f80, undefined) +// @as(f80, undefined) +// @as(@Vector(2, f80), .{ 6, undefined }) +// @as(@Vector(2, f80), .{ undefined, 6 }) +// @as(@Vector(2, f80), undefined) +// @as(@Vector(2, f80), .{ 6, undefined }) +// @as(@Vector(2, f80), .{ 6, undefined }) +// @as(@Vector(2, f80), undefined) +// @as(@Vector(2, f80), undefined) +// @as(@Vector(2, f80), .{ undefined, 6 }) +// @as(@Vector(2, f80), undefined) +// @as(@Vector(2, f80), .{ undefined, 6 }) +// @as(@Vector(2, f80), undefined) +// @as(@Vector(2, f80), undefined) +// @as(@Vector(2, f80), undefined) +// @as(@Vector(2, f80), undefined) +// @as(@Vector(2, f80), undefined) +// @as(f80, undefined) +// @as(f80, undefined) +// @as(@Vector(2, f80), .{ 0, undefined }) +// @as(@Vector(2, f80), .{ undefined, 0 }) +// @as(@Vector(2, f80), undefined) +// @as(@Vector(2, f80), .{ 0, undefined }) +// @as(@Vector(2, f80), .{ 0, undefined }) +// @as(@Vector(2, f80), undefined) +// @as(@Vector(2, f80), undefined) +// @as(@Vector(2, f80), .{ undefined, 0 }) +// @as(@Vector(2, f80), undefined) +// @as(@Vector(2, f80), .{ undefined, 0 }) +// @as(@Vector(2, f80), undefined) +// @as(@Vector(2, f80), undefined) +// @as(@Vector(2, f80), undefined) +// @as(@Vector(2, f80), undefined) +// @as(@Vector(2, f80), undefined) +// @as(f80, undefined) +// @as(f80, undefined) +// @as(@Vector(2, f80), .{ 9, undefined }) +// @as(@Vector(2, f80), .{ undefined, 9 }) +// @as(@Vector(2, f80), undefined) +// @as(@Vector(2, f80), .{ 9, undefined }) +// @as(@Vector(2, f80), .{ 9, undefined }) +// @as(@Vector(2, f80), undefined) +// @as(@Vector(2, f80), undefined) +// @as(@Vector(2, f80), .{ undefined, 9 }) +// @as(@Vector(2, f80), undefined) +// @as(@Vector(2, f80), .{ undefined, 9 }) +// @as(@Vector(2, f80), undefined) +// @as(@Vector(2, f80), undefined) +// @as(@Vector(2, f80), undefined) +// @as(@Vector(2, f80), undefined) +// @as(@Vector(2, f80), undefined) +// @as(f80, undefined) +// @as(@Vector(2, f80), .{ -3, undefined }) +// @as(@Vector(2, f80), .{ undefined, -3 }) +// @as(@Vector(2, f80), undefined) +// @as(f80, undefined) +// @as(f80, undefined) +// @as(@Vector(2, f80), [runtime value]) +// @as(@Vector(2, f80), [runtime value]) +// @as(@Vector(2, f80), undefined) +// @as(@Vector(2, f80), [runtime value]) +// @as(@Vector(2, f80), [runtime value]) +// @as(@Vector(2, f80), [runtime value]) +// @as(@Vector(2, f80), undefined) +// @as(@Vector(2, f80), [runtime value]) +// @as(@Vector(2, f80), [runtime value]) +// @as(@Vector(2, f80), [runtime value]) +// @as(@Vector(2, f80), undefined) +// @as(@Vector(2, f80), undefined) +// @as(@Vector(2, f80), undefined) +// @as(@Vector(2, f80), undefined) +// @as(@Vector(2, f80), undefined) +// @as(f80, undefined) +// @as(f80, undefined) +// @as(@Vector(2, f80), [runtime value]) +// @as(@Vector(2, f80), [runtime value]) +// @as(@Vector(2, f80), undefined) +// @as(@Vector(2, f80), [runtime value]) +// @as(@Vector(2, f80), [runtime value]) +// @as(@Vector(2, f80), [runtime value]) +// @as(@Vector(2, f80), undefined) +// @as(@Vector(2, f80), [runtime value]) +// @as(@Vector(2, f80), [runtime value]) +// @as(@Vector(2, f80), [runtime value]) +// @as(@Vector(2, f80), undefined) +// @as(@Vector(2, f80), undefined) +// @as(@Vector(2, f80), undefined) +// @as(@Vector(2, f80), undefined) +// @as(@Vector(2, f80), undefined) +// @as(f80, undefined) +// @as(f80, undefined) +// @as(@Vector(2, f80), [runtime value]) +// @as(@Vector(2, f80), [runtime value]) +// @as(@Vector(2, f80), undefined) +// @as(@Vector(2, f80), [runtime value]) +// @as(@Vector(2, f80), [runtime value]) +// @as(@Vector(2, f80), [runtime value]) +// @as(@Vector(2, f80), undefined) +// @as(@Vector(2, f80), [runtime value]) +// @as(@Vector(2, f80), [runtime value]) +// @as(@Vector(2, f80), [runtime value]) +// @as(@Vector(2, f80), undefined) +// @as(@Vector(2, f80), undefined) +// @as(@Vector(2, f80), undefined) +// @as(@Vector(2, f80), undefined) +// @as(@Vector(2, f80), undefined) +// @as(f80, undefined) +// @as(@Vector(2, f80), [runtime value]) +// @as(@Vector(2, f80), [runtime value]) +// @as(@Vector(2, f80), undefined) +// @as(f64, undefined) +// @as(f64, undefined) +// @as(@Vector(2, f64), .{ 6, undefined }) +// @as(@Vector(2, f64), .{ undefined, 6 }) +// @as(@Vector(2, f64), undefined) +// @as(@Vector(2, f64), .{ 6, undefined }) +// @as(@Vector(2, f64), .{ 6, undefined }) +// @as(@Vector(2, f64), undefined) +// @as(@Vector(2, f64), undefined) +// @as(@Vector(2, f64), .{ undefined, 6 }) +// @as(@Vector(2, f64), undefined) +// @as(@Vector(2, f64), .{ undefined, 6 }) +// @as(@Vector(2, f64), undefined) +// @as(@Vector(2, f64), undefined) +// @as(@Vector(2, f64), undefined) +// @as(@Vector(2, f64), undefined) +// @as(@Vector(2, f64), undefined) +// @as(f64, undefined) +// @as(f64, undefined) +// @as(@Vector(2, f64), .{ 0, undefined }) +// @as(@Vector(2, f64), .{ undefined, 0 }) +// @as(@Vector(2, f64), undefined) +// @as(@Vector(2, f64), .{ 0, undefined }) +// @as(@Vector(2, f64), .{ 0, undefined }) +// @as(@Vector(2, f64), undefined) +// @as(@Vector(2, f64), undefined) +// @as(@Vector(2, f64), .{ undefined, 0 }) +// @as(@Vector(2, f64), undefined) +// @as(@Vector(2, f64), .{ undefined, 0 }) +// @as(@Vector(2, f64), undefined) +// @as(@Vector(2, f64), undefined) +// @as(@Vector(2, f64), undefined) +// @as(@Vector(2, f64), undefined) +// @as(@Vector(2, f64), undefined) +// @as(f64, undefined) +// @as(f64, undefined) +// @as(@Vector(2, f64), .{ 9, undefined }) +// @as(@Vector(2, f64), .{ undefined, 9 }) +// @as(@Vector(2, f64), undefined) +// @as(@Vector(2, f64), .{ 9, undefined }) +// @as(@Vector(2, f64), .{ 9, undefined }) +// @as(@Vector(2, f64), undefined) +// @as(@Vector(2, f64), undefined) +// @as(@Vector(2, f64), .{ undefined, 9 }) +// @as(@Vector(2, f64), undefined) +// @as(@Vector(2, f64), .{ undefined, 9 }) +// @as(@Vector(2, f64), undefined) +// @as(@Vector(2, f64), undefined) +// @as(@Vector(2, f64), undefined) +// @as(@Vector(2, f64), undefined) +// @as(@Vector(2, f64), undefined) +// @as(f64, undefined) +// @as(@Vector(2, f64), .{ -3, undefined }) +// @as(@Vector(2, f64), .{ undefined, -3 }) +// @as(@Vector(2, f64), undefined) +// @as(f64, undefined) +// @as(f64, undefined) +// @as(@Vector(2, f64), [runtime value]) +// @as(@Vector(2, f64), [runtime value]) +// @as(@Vector(2, f64), undefined) +// @as(@Vector(2, f64), [runtime value]) +// @as(@Vector(2, f64), [runtime value]) +// @as(@Vector(2, f64), [runtime value]) +// @as(@Vector(2, f64), undefined) +// @as(@Vector(2, f64), [runtime value]) +// @as(@Vector(2, f64), [runtime value]) +// @as(@Vector(2, f64), [runtime value]) +// @as(@Vector(2, f64), undefined) +// @as(@Vector(2, f64), undefined) +// @as(@Vector(2, f64), undefined) +// @as(@Vector(2, f64), undefined) +// @as(@Vector(2, f64), undefined) +// @as(f64, undefined) +// @as(f64, undefined) +// @as(@Vector(2, f64), [runtime value]) +// @as(@Vector(2, f64), [runtime value]) +// @as(@Vector(2, f64), undefined) +// @as(@Vector(2, f64), [runtime value]) +// @as(@Vector(2, f64), [runtime value]) +// @as(@Vector(2, f64), [runtime value]) +// @as(@Vector(2, f64), undefined) +// @as(@Vector(2, f64), [runtime value]) +// @as(@Vector(2, f64), [runtime value]) +// @as(@Vector(2, f64), [runtime value]) +// @as(@Vector(2, f64), undefined) +// @as(@Vector(2, f64), undefined) +// @as(@Vector(2, f64), undefined) +// @as(@Vector(2, f64), undefined) +// @as(@Vector(2, f64), undefined) +// @as(f64, undefined) +// @as(f64, undefined) +// @as(@Vector(2, f64), [runtime value]) +// @as(@Vector(2, f64), [runtime value]) +// @as(@Vector(2, f64), undefined) +// @as(@Vector(2, f64), [runtime value]) +// @as(@Vector(2, f64), [runtime value]) +// @as(@Vector(2, f64), [runtime value]) +// @as(@Vector(2, f64), undefined) +// @as(@Vector(2, f64), [runtime value]) +// @as(@Vector(2, f64), [runtime value]) +// @as(@Vector(2, f64), [runtime value]) +// @as(@Vector(2, f64), undefined) +// @as(@Vector(2, f64), undefined) +// @as(@Vector(2, f64), undefined) +// @as(@Vector(2, f64), undefined) +// @as(@Vector(2, f64), undefined) +// @as(f64, undefined) +// @as(@Vector(2, f64), [runtime value]) +// @as(@Vector(2, f64), [runtime value]) +// @as(@Vector(2, f64), undefined) +// @as(f32, undefined) +// @as(f32, undefined) +// @as(@Vector(2, f32), .{ 6, undefined }) +// @as(@Vector(2, f32), .{ undefined, 6 }) +// @as(@Vector(2, f32), undefined) +// @as(@Vector(2, f32), .{ 6, undefined }) +// @as(@Vector(2, f32), .{ 6, undefined }) +// @as(@Vector(2, f32), undefined) +// @as(@Vector(2, f32), undefined) +// @as(@Vector(2, f32), .{ undefined, 6 }) +// @as(@Vector(2, f32), undefined) +// @as(@Vector(2, f32), .{ undefined, 6 }) +// @as(@Vector(2, f32), undefined) +// @as(@Vector(2, f32), undefined) +// @as(@Vector(2, f32), undefined) +// @as(@Vector(2, f32), undefined) +// @as(@Vector(2, f32), undefined) +// @as(f32, undefined) +// @as(f32, undefined) +// @as(@Vector(2, f32), .{ 0, undefined }) +// @as(@Vector(2, f32), .{ undefined, 0 }) +// @as(@Vector(2, f32), undefined) +// @as(@Vector(2, f32), .{ 0, undefined }) +// @as(@Vector(2, f32), .{ 0, undefined }) +// @as(@Vector(2, f32), undefined) +// @as(@Vector(2, f32), undefined) +// @as(@Vector(2, f32), .{ undefined, 0 }) +// @as(@Vector(2, f32), undefined) +// @as(@Vector(2, f32), .{ undefined, 0 }) +// @as(@Vector(2, f32), undefined) +// @as(@Vector(2, f32), undefined) +// @as(@Vector(2, f32), undefined) +// @as(@Vector(2, f32), undefined) +// @as(@Vector(2, f32), undefined) +// @as(f32, undefined) +// @as(f32, undefined) +// @as(@Vector(2, f32), .{ 9, undefined }) +// @as(@Vector(2, f32), .{ undefined, 9 }) +// @as(@Vector(2, f32), undefined) +// @as(@Vector(2, f32), .{ 9, undefined }) +// @as(@Vector(2, f32), .{ 9, undefined }) +// @as(@Vector(2, f32), undefined) +// @as(@Vector(2, f32), undefined) +// @as(@Vector(2, f32), .{ undefined, 9 }) +// @as(@Vector(2, f32), undefined) +// @as(@Vector(2, f32), .{ undefined, 9 }) +// @as(@Vector(2, f32), undefined) +// @as(@Vector(2, f32), undefined) +// @as(@Vector(2, f32), undefined) +// @as(@Vector(2, f32), undefined) +// @as(@Vector(2, f32), undefined) +// @as(f32, undefined) +// @as(@Vector(2, f32), .{ -3, undefined }) +// @as(@Vector(2, f32), .{ undefined, -3 }) +// @as(@Vector(2, f32), undefined) +// @as(f32, undefined) +// @as(f32, undefined) +// @as(@Vector(2, f32), [runtime value]) +// @as(@Vector(2, f32), [runtime value]) +// @as(@Vector(2, f32), undefined) +// @as(@Vector(2, f32), [runtime value]) +// @as(@Vector(2, f32), [runtime value]) +// @as(@Vector(2, f32), [runtime value]) +// @as(@Vector(2, f32), undefined) +// @as(@Vector(2, f32), [runtime value]) +// @as(@Vector(2, f32), [runtime value]) +// @as(@Vector(2, f32), [runtime value]) +// @as(@Vector(2, f32), undefined) +// @as(@Vector(2, f32), undefined) +// @as(@Vector(2, f32), undefined) +// @as(@Vector(2, f32), undefined) +// @as(@Vector(2, f32), undefined) +// @as(f32, undefined) +// @as(f32, undefined) +// @as(@Vector(2, f32), [runtime value]) +// @as(@Vector(2, f32), [runtime value]) +// @as(@Vector(2, f32), undefined) +// @as(@Vector(2, f32), [runtime value]) +// @as(@Vector(2, f32), [runtime value]) +// @as(@Vector(2, f32), [runtime value]) +// @as(@Vector(2, f32), undefined) +// @as(@Vector(2, f32), [runtime value]) +// @as(@Vector(2, f32), [runtime value]) +// @as(@Vector(2, f32), [runtime value]) +// @as(@Vector(2, f32), undefined) +// @as(@Vector(2, f32), undefined) +// @as(@Vector(2, f32), undefined) +// @as(@Vector(2, f32), undefined) +// @as(@Vector(2, f32), undefined) +// @as(f32, undefined) +// @as(f32, undefined) +// @as(@Vector(2, f32), [runtime value]) +// @as(@Vector(2, f32), [runtime value]) +// @as(@Vector(2, f32), undefined) +// @as(@Vector(2, f32), [runtime value]) +// @as(@Vector(2, f32), [runtime value]) +// @as(@Vector(2, f32), [runtime value]) +// @as(@Vector(2, f32), undefined) +// @as(@Vector(2, f32), [runtime value]) +// @as(@Vector(2, f32), [runtime value]) +// @as(@Vector(2, f32), [runtime value]) +// @as(@Vector(2, f32), undefined) +// @as(@Vector(2, f32), undefined) +// @as(@Vector(2, f32), undefined) +// @as(@Vector(2, f32), undefined) +// @as(@Vector(2, f32), undefined) +// @as(f32, undefined) +// @as(@Vector(2, f32), [runtime value]) +// @as(@Vector(2, f32), [runtime value]) +// @as(@Vector(2, f32), undefined) +// @as(f16, undefined) +// @as(f16, undefined) +// @as(@Vector(2, f16), .{ 6, undefined }) +// @as(@Vector(2, f16), .{ undefined, 6 }) +// @as(@Vector(2, f16), undefined) +// @as(@Vector(2, f16), .{ 6, undefined }) +// @as(@Vector(2, f16), .{ 6, undefined }) +// @as(@Vector(2, f16), undefined) +// @as(@Vector(2, f16), undefined) +// @as(@Vector(2, f16), .{ undefined, 6 }) +// @as(@Vector(2, f16), undefined) +// @as(@Vector(2, f16), .{ undefined, 6 }) +// @as(@Vector(2, f16), undefined) +// @as(@Vector(2, f16), undefined) +// @as(@Vector(2, f16), undefined) +// @as(@Vector(2, f16), undefined) +// @as(@Vector(2, f16), undefined) +// @as(f16, undefined) +// @as(f16, undefined) +// @as(@Vector(2, f16), .{ 0, undefined }) +// @as(@Vector(2, f16), .{ undefined, 0 }) +// @as(@Vector(2, f16), undefined) +// @as(@Vector(2, f16), .{ 0, undefined }) +// @as(@Vector(2, f16), .{ 0, undefined }) +// @as(@Vector(2, f16), undefined) +// @as(@Vector(2, f16), undefined) +// @as(@Vector(2, f16), .{ undefined, 0 }) +// @as(@Vector(2, f16), undefined) +// @as(@Vector(2, f16), .{ undefined, 0 }) +// @as(@Vector(2, f16), undefined) +// @as(@Vector(2, f16), undefined) +// @as(@Vector(2, f16), undefined) +// @as(@Vector(2, f16), undefined) +// @as(@Vector(2, f16), undefined) +// @as(f16, undefined) +// @as(f16, undefined) +// @as(@Vector(2, f16), .{ 9, undefined }) +// @as(@Vector(2, f16), .{ undefined, 9 }) +// @as(@Vector(2, f16), undefined) +// @as(@Vector(2, f16), .{ 9, undefined }) +// @as(@Vector(2, f16), .{ 9, undefined }) +// @as(@Vector(2, f16), undefined) +// @as(@Vector(2, f16), undefined) +// @as(@Vector(2, f16), .{ undefined, 9 }) +// @as(@Vector(2, f16), undefined) +// @as(@Vector(2, f16), .{ undefined, 9 }) +// @as(@Vector(2, f16), undefined) +// @as(@Vector(2, f16), undefined) +// @as(@Vector(2, f16), undefined) +// @as(@Vector(2, f16), undefined) +// @as(@Vector(2, f16), undefined) +// @as(f16, undefined) +// @as(@Vector(2, f16), .{ -3, undefined }) +// @as(@Vector(2, f16), .{ undefined, -3 }) +// @as(@Vector(2, f16), undefined) +// @as(f16, undefined) +// @as(f16, undefined) +// @as(@Vector(2, f16), [runtime value]) +// @as(@Vector(2, f16), [runtime value]) +// @as(@Vector(2, f16), undefined) +// @as(@Vector(2, f16), [runtime value]) +// @as(@Vector(2, f16), [runtime value]) +// @as(@Vector(2, f16), [runtime value]) +// @as(@Vector(2, f16), undefined) +// @as(@Vector(2, f16), [runtime value]) +// @as(@Vector(2, f16), [runtime value]) +// @as(@Vector(2, f16), [runtime value]) +// @as(@Vector(2, f16), undefined) +// @as(@Vector(2, f16), undefined) +// @as(@Vector(2, f16), undefined) +// @as(@Vector(2, f16), undefined) +// @as(@Vector(2, f16), undefined) +// @as(f16, undefined) +// @as(f16, undefined) +// @as(@Vector(2, f16), [runtime value]) +// @as(@Vector(2, f16), [runtime value]) +// @as(@Vector(2, f16), undefined) +// @as(@Vector(2, f16), [runtime value]) +// @as(@Vector(2, f16), [runtime value]) +// @as(@Vector(2, f16), [runtime value]) +// @as(@Vector(2, f16), undefined) +// @as(@Vector(2, f16), [runtime value]) +// @as(@Vector(2, f16), [runtime value]) +// @as(@Vector(2, f16), [runtime value]) +// @as(@Vector(2, f16), undefined) +// @as(@Vector(2, f16), undefined) +// @as(@Vector(2, f16), undefined) +// @as(@Vector(2, f16), undefined) +// @as(@Vector(2, f16), undefined) +// @as(f16, undefined) +// @as(f16, undefined) +// @as(@Vector(2, f16), [runtime value]) +// @as(@Vector(2, f16), [runtime value]) +// @as(@Vector(2, f16), undefined) +// @as(@Vector(2, f16), [runtime value]) +// @as(@Vector(2, f16), [runtime value]) +// @as(@Vector(2, f16), [runtime value]) +// @as(@Vector(2, f16), undefined) +// @as(@Vector(2, f16), [runtime value]) +// @as(@Vector(2, f16), [runtime value]) +// @as(@Vector(2, f16), [runtime value]) +// @as(@Vector(2, f16), undefined) +// @as(@Vector(2, f16), undefined) +// @as(@Vector(2, f16), undefined) +// @as(@Vector(2, f16), undefined) +// @as(@Vector(2, f16), undefined) +// @as(f16, undefined) +// @as(@Vector(2, f16), [runtime value]) +// @as(@Vector(2, f16), [runtime value]) +// @as(@Vector(2, f16), undefined) diff --git a/test/cases/compile_errors/undef_shifts_are_illegal.zig b/test/cases/compile_errors/undef_shifts_are_illegal.zig @@ -125,27 +125,19 @@ const std = @import("std"); // :53:17: error: use of undefined value here causes illegal behavior // :53:17: error: use of undefined value here causes illegal behavior // :53:17: error: use of undefined value here causes illegal behavior -// :53:17: note: when computing vector element at index '0' // :53:17: error: use of undefined value here causes illegal behavior -// :53:17: note: when computing vector element at index '0' // :53:17: error: use of undefined value here causes illegal behavior -// :53:17: note: when computing vector element at index '0' // :53:17: error: use of undefined value here causes illegal behavior -// :53:17: note: when computing vector element at index '0' // :53:17: error: use of undefined value here causes illegal behavior -// :53:17: note: when computing vector element at index '1' // :53:17: error: use of undefined value here causes illegal behavior -// :53:17: note: when computing vector element at index '1' // :53:17: error: use of undefined value here causes illegal behavior -// :53:17: note: when computing vector element at index '0' // :53:17: error: use of undefined value here causes illegal behavior -// :53:17: note: when computing vector element at index '0' // :53:17: error: use of undefined value here causes illegal behavior -// :53:17: note: when computing vector element at index '0' // :53:17: error: use of undefined value here causes illegal behavior -// :53:17: note: when computing vector element at index '0' // :53:17: error: use of undefined value here causes illegal behavior +// :53:17: note: when computing vector element at index '0' // :53:17: error: use of undefined value here causes illegal behavior +// :53:17: note: when computing vector element at index '0' // :53:17: error: use of undefined value here causes illegal behavior // :53:17: note: when computing vector element at index '0' // :53:17: error: use of undefined value here causes illegal behavior @@ -155,9 +147,9 @@ const std = @import("std"); // :53:17: error: use of undefined value here causes illegal behavior // :53:17: note: when computing vector element at index '0' // :53:17: error: use of undefined value here causes illegal behavior -// :53:17: note: when computing vector element at index '1' +// :53:17: note: when computing vector element at index '0' // :53:17: error: use of undefined value here causes illegal behavior -// :53:17: note: when computing vector element at index '1' +// :53:17: note: when computing vector element at index '0' // :53:17: error: use of undefined value here causes illegal behavior // :53:17: note: when computing vector element at index '0' // :53:17: error: use of undefined value here causes illegal behavior @@ -167,7 +159,9 @@ const std = @import("std"); // :53:17: error: use of undefined value here causes illegal behavior // :53:17: note: when computing vector element at index '0' // :53:17: error: use of undefined value here causes illegal behavior +// :53:17: note: when computing vector element at index '0' // :53:17: error: use of undefined value here causes illegal behavior +// :53:17: note: when computing vector element at index '0' // :53:17: error: use of undefined value here causes illegal behavior // :53:17: note: when computing vector element at index '0' // :53:17: error: use of undefined value here causes illegal behavior @@ -177,9 +171,9 @@ const std = @import("std"); // :53:17: error: use of undefined value here causes illegal behavior // :53:17: note: when computing vector element at index '0' // :53:17: error: use of undefined value here causes illegal behavior -// :53:17: note: when computing vector element at index '1' +// :53:17: note: when computing vector element at index '0' // :53:17: error: use of undefined value here causes illegal behavior -// :53:17: note: when computing vector element at index '1' +// :53:17: note: when computing vector element at index '0' // :53:17: error: use of undefined value here causes illegal behavior // :53:17: note: when computing vector element at index '0' // :53:17: error: use of undefined value here causes illegal behavior @@ -189,7 +183,9 @@ const std = @import("std"); // :53:17: error: use of undefined value here causes illegal behavior // :53:17: note: when computing vector element at index '0' // :53:17: error: use of undefined value here causes illegal behavior +// :53:17: note: when computing vector element at index '0' // :53:17: error: use of undefined value here causes illegal behavior +// :53:17: note: when computing vector element at index '0' // :53:17: error: use of undefined value here causes illegal behavior // :53:17: note: when computing vector element at index '0' // :53:17: error: use of undefined value here causes illegal behavior @@ -199,9 +195,9 @@ const std = @import("std"); // :53:17: error: use of undefined value here causes illegal behavior // :53:17: note: when computing vector element at index '0' // :53:17: error: use of undefined value here causes illegal behavior -// :53:17: note: when computing vector element at index '1' +// :53:17: note: when computing vector element at index '0' // :53:17: error: use of undefined value here causes illegal behavior -// :53:17: note: when computing vector element at index '1' +// :53:17: note: when computing vector element at index '0' // :53:17: error: use of undefined value here causes illegal behavior // :53:17: note: when computing vector element at index '0' // :53:17: error: use of undefined value here causes illegal behavior @@ -211,7 +207,9 @@ const std = @import("std"); // :53:17: error: use of undefined value here causes illegal behavior // :53:17: note: when computing vector element at index '0' // :53:17: error: use of undefined value here causes illegal behavior +// :53:17: note: when computing vector element at index '0' // :53:17: error: use of undefined value here causes illegal behavior +// :53:17: note: when computing vector element at index '0' // :53:17: error: use of undefined value here causes illegal behavior // :53:17: note: when computing vector element at index '0' // :53:17: error: use of undefined value here causes illegal behavior @@ -221,9 +219,9 @@ const std = @import("std"); // :53:17: error: use of undefined value here causes illegal behavior // :53:17: note: when computing vector element at index '0' // :53:17: error: use of undefined value here causes illegal behavior -// :53:17: note: when computing vector element at index '1' +// :53:17: note: when computing vector element at index '0' // :53:17: error: use of undefined value here causes illegal behavior -// :53:17: note: when computing vector element at index '1' +// :53:17: note: when computing vector element at index '0' // :53:17: error: use of undefined value here causes illegal behavior // :53:17: note: when computing vector element at index '0' // :53:17: error: use of undefined value here causes illegal behavior @@ -233,27 +231,29 @@ const std = @import("std"); // :53:17: error: use of undefined value here causes illegal behavior // :53:17: note: when computing vector element at index '0' // :53:17: error: use of undefined value here causes illegal behavior +// :53:17: note: when computing vector element at index '1' // :53:17: error: use of undefined value here causes illegal behavior +// :53:17: note: when computing vector element at index '1' // :53:17: error: use of undefined value here causes illegal behavior -// :53:17: note: when computing vector element at index '0' +// :53:17: note: when computing vector element at index '1' // :53:17: error: use of undefined value here causes illegal behavior -// :53:17: note: when computing vector element at index '0' +// :53:17: note: when computing vector element at index '1' // :53:17: error: use of undefined value here causes illegal behavior -// :53:17: note: when computing vector element at index '0' +// :53:17: note: when computing vector element at index '1' // :53:17: error: use of undefined value here causes illegal behavior -// :53:17: note: when computing vector element at index '0' +// :53:17: note: when computing vector element at index '1' // :53:17: error: use of undefined value here causes illegal behavior // :53:17: note: when computing vector element at index '1' // :53:17: error: use of undefined value here causes illegal behavior // :53:17: note: when computing vector element at index '1' // :53:17: error: use of undefined value here causes illegal behavior -// :53:17: note: when computing vector element at index '0' +// :53:17: note: when computing vector element at index '1' // :53:17: error: use of undefined value here causes illegal behavior -// :53:17: note: when computing vector element at index '0' +// :53:17: note: when computing vector element at index '1' // :53:17: error: use of undefined value here causes illegal behavior -// :53:17: note: when computing vector element at index '0' +// :53:17: note: when computing vector element at index '1' // :53:17: error: use of undefined value here causes illegal behavior -// :53:17: note: when computing vector element at index '0' +// :53:17: note: when computing vector element at index '1' // :53:22: error: use of undefined value here causes illegal behavior // :53:22: note: when computing vector element at index '0' // :53:22: error: use of undefined value here causes illegal behavior @@ -281,27 +281,19 @@ const std = @import("std"); // :56:27: error: use of undefined value here causes illegal behavior // :56:27: error: use of undefined value here causes illegal behavior // :56:27: error: use of undefined value here causes illegal behavior -// :56:27: note: when computing vector element at index '0' // :56:27: error: use of undefined value here causes illegal behavior -// :56:27: note: when computing vector element at index '0' // :56:27: error: use of undefined value here causes illegal behavior -// :56:27: note: when computing vector element at index '0' // :56:27: error: use of undefined value here causes illegal behavior -// :56:27: note: when computing vector element at index '0' // :56:27: error: use of undefined value here causes illegal behavior -// :56:27: note: when computing vector element at index '1' // :56:27: error: use of undefined value here causes illegal behavior -// :56:27: note: when computing vector element at index '1' // :56:27: error: use of undefined value here causes illegal behavior -// :56:27: note: when computing vector element at index '0' // :56:27: error: use of undefined value here causes illegal behavior -// :56:27: note: when computing vector element at index '0' // :56:27: error: use of undefined value here causes illegal behavior -// :56:27: note: when computing vector element at index '0' // :56:27: error: use of undefined value here causes illegal behavior -// :56:27: note: when computing vector element at index '0' // :56:27: error: use of undefined value here causes illegal behavior +// :56:27: note: when computing vector element at index '0' // :56:27: error: use of undefined value here causes illegal behavior +// :56:27: note: when computing vector element at index '0' // :56:27: error: use of undefined value here causes illegal behavior // :56:27: note: when computing vector element at index '0' // :56:27: error: use of undefined value here causes illegal behavior @@ -311,9 +303,9 @@ const std = @import("std"); // :56:27: error: use of undefined value here causes illegal behavior // :56:27: note: when computing vector element at index '0' // :56:27: error: use of undefined value here causes illegal behavior -// :56:27: note: when computing vector element at index '1' +// :56:27: note: when computing vector element at index '0' // :56:27: error: use of undefined value here causes illegal behavior -// :56:27: note: when computing vector element at index '1' +// :56:27: note: when computing vector element at index '0' // :56:27: error: use of undefined value here causes illegal behavior // :56:27: note: when computing vector element at index '0' // :56:27: error: use of undefined value here causes illegal behavior @@ -323,7 +315,9 @@ const std = @import("std"); // :56:27: error: use of undefined value here causes illegal behavior // :56:27: note: when computing vector element at index '0' // :56:27: error: use of undefined value here causes illegal behavior +// :56:27: note: when computing vector element at index '0' // :56:27: error: use of undefined value here causes illegal behavior +// :56:27: note: when computing vector element at index '0' // :56:27: error: use of undefined value here causes illegal behavior // :56:27: note: when computing vector element at index '0' // :56:27: error: use of undefined value here causes illegal behavior @@ -333,9 +327,9 @@ const std = @import("std"); // :56:27: error: use of undefined value here causes illegal behavior // :56:27: note: when computing vector element at index '0' // :56:27: error: use of undefined value here causes illegal behavior -// :56:27: note: when computing vector element at index '1' +// :56:27: note: when computing vector element at index '0' // :56:27: error: use of undefined value here causes illegal behavior -// :56:27: note: when computing vector element at index '1' +// :56:27: note: when computing vector element at index '0' // :56:27: error: use of undefined value here causes illegal behavior // :56:27: note: when computing vector element at index '0' // :56:27: error: use of undefined value here causes illegal behavior @@ -345,7 +339,9 @@ const std = @import("std"); // :56:27: error: use of undefined value here causes illegal behavior // :56:27: note: when computing vector element at index '0' // :56:27: error: use of undefined value here causes illegal behavior +// :56:27: note: when computing vector element at index '0' // :56:27: error: use of undefined value here causes illegal behavior +// :56:27: note: when computing vector element at index '0' // :56:27: error: use of undefined value here causes illegal behavior // :56:27: note: when computing vector element at index '0' // :56:27: error: use of undefined value here causes illegal behavior @@ -355,9 +351,9 @@ const std = @import("std"); // :56:27: error: use of undefined value here causes illegal behavior // :56:27: note: when computing vector element at index '0' // :56:27: error: use of undefined value here causes illegal behavior -// :56:27: note: when computing vector element at index '1' +// :56:27: note: when computing vector element at index '0' // :56:27: error: use of undefined value here causes illegal behavior -// :56:27: note: when computing vector element at index '1' +// :56:27: note: when computing vector element at index '0' // :56:27: error: use of undefined value here causes illegal behavior // :56:27: note: when computing vector element at index '0' // :56:27: error: use of undefined value here causes illegal behavior @@ -367,7 +363,9 @@ const std = @import("std"); // :56:27: error: use of undefined value here causes illegal behavior // :56:27: note: when computing vector element at index '0' // :56:27: error: use of undefined value here causes illegal behavior +// :56:27: note: when computing vector element at index '0' // :56:27: error: use of undefined value here causes illegal behavior +// :56:27: note: when computing vector element at index '0' // :56:27: error: use of undefined value here causes illegal behavior // :56:27: note: when computing vector element at index '0' // :56:27: error: use of undefined value here causes illegal behavior @@ -377,9 +375,9 @@ const std = @import("std"); // :56:27: error: use of undefined value here causes illegal behavior // :56:27: note: when computing vector element at index '0' // :56:27: error: use of undefined value here causes illegal behavior -// :56:27: note: when computing vector element at index '1' +// :56:27: note: when computing vector element at index '0' // :56:27: error: use of undefined value here causes illegal behavior -// :56:27: note: when computing vector element at index '1' +// :56:27: note: when computing vector element at index '0' // :56:27: error: use of undefined value here causes illegal behavior // :56:27: note: when computing vector element at index '0' // :56:27: error: use of undefined value here causes illegal behavior @@ -389,27 +387,29 @@ const std = @import("std"); // :56:27: error: use of undefined value here causes illegal behavior // :56:27: note: when computing vector element at index '0' // :56:27: error: use of undefined value here causes illegal behavior +// :56:27: note: when computing vector element at index '1' // :56:27: error: use of undefined value here causes illegal behavior +// :56:27: note: when computing vector element at index '1' // :56:27: error: use of undefined value here causes illegal behavior -// :56:27: note: when computing vector element at index '0' +// :56:27: note: when computing vector element at index '1' // :56:27: error: use of undefined value here causes illegal behavior -// :56:27: note: when computing vector element at index '0' +// :56:27: note: when computing vector element at index '1' // :56:27: error: use of undefined value here causes illegal behavior -// :56:27: note: when computing vector element at index '0' +// :56:27: note: when computing vector element at index '1' // :56:27: error: use of undefined value here causes illegal behavior -// :56:27: note: when computing vector element at index '0' +// :56:27: note: when computing vector element at index '1' // :56:27: error: use of undefined value here causes illegal behavior // :56:27: note: when computing vector element at index '1' // :56:27: error: use of undefined value here causes illegal behavior // :56:27: note: when computing vector element at index '1' // :56:27: error: use of undefined value here causes illegal behavior -// :56:27: note: when computing vector element at index '0' +// :56:27: note: when computing vector element at index '1' // :56:27: error: use of undefined value here causes illegal behavior -// :56:27: note: when computing vector element at index '0' +// :56:27: note: when computing vector element at index '1' // :56:27: error: use of undefined value here causes illegal behavior -// :56:27: note: when computing vector element at index '0' +// :56:27: note: when computing vector element at index '1' // :56:27: error: use of undefined value here causes illegal behavior -// :56:27: note: when computing vector element at index '0' +// :56:27: note: when computing vector element at index '1' // :56:30: error: use of undefined value here causes illegal behavior // :56:30: note: when computing vector element at index '0' // :56:30: error: use of undefined value here causes illegal behavior @@ -437,27 +437,19 @@ const std = @import("std"); // :59:34: error: use of undefined value here causes illegal behavior // :59:34: error: use of undefined value here causes illegal behavior // :59:34: error: use of undefined value here causes illegal behavior -// :59:34: note: when computing vector element at index '0' // :59:34: error: use of undefined value here causes illegal behavior -// :59:34: note: when computing vector element at index '0' // :59:34: error: use of undefined value here causes illegal behavior -// :59:34: note: when computing vector element at index '0' // :59:34: error: use of undefined value here causes illegal behavior -// :59:34: note: when computing vector element at index '0' // :59:34: error: use of undefined value here causes illegal behavior -// :59:34: note: when computing vector element at index '1' // :59:34: error: use of undefined value here causes illegal behavior -// :59:34: note: when computing vector element at index '1' // :59:34: error: use of undefined value here causes illegal behavior -// :59:34: note: when computing vector element at index '0' // :59:34: error: use of undefined value here causes illegal behavior -// :59:34: note: when computing vector element at index '0' // :59:34: error: use of undefined value here causes illegal behavior -// :59:34: note: when computing vector element at index '0' // :59:34: error: use of undefined value here causes illegal behavior -// :59:34: note: when computing vector element at index '0' // :59:34: error: use of undefined value here causes illegal behavior +// :59:34: note: when computing vector element at index '0' // :59:34: error: use of undefined value here causes illegal behavior +// :59:34: note: when computing vector element at index '0' // :59:34: error: use of undefined value here causes illegal behavior // :59:34: note: when computing vector element at index '0' // :59:34: error: use of undefined value here causes illegal behavior @@ -467,9 +459,9 @@ const std = @import("std"); // :59:34: error: use of undefined value here causes illegal behavior // :59:34: note: when computing vector element at index '0' // :59:34: error: use of undefined value here causes illegal behavior -// :59:34: note: when computing vector element at index '1' +// :59:34: note: when computing vector element at index '0' // :59:34: error: use of undefined value here causes illegal behavior -// :59:34: note: when computing vector element at index '1' +// :59:34: note: when computing vector element at index '0' // :59:34: error: use of undefined value here causes illegal behavior // :59:34: note: when computing vector element at index '0' // :59:34: error: use of undefined value here causes illegal behavior @@ -479,7 +471,9 @@ const std = @import("std"); // :59:34: error: use of undefined value here causes illegal behavior // :59:34: note: when computing vector element at index '0' // :59:34: error: use of undefined value here causes illegal behavior +// :59:34: note: when computing vector element at index '0' // :59:34: error: use of undefined value here causes illegal behavior +// :59:34: note: when computing vector element at index '0' // :59:34: error: use of undefined value here causes illegal behavior // :59:34: note: when computing vector element at index '0' // :59:34: error: use of undefined value here causes illegal behavior @@ -489,9 +483,9 @@ const std = @import("std"); // :59:34: error: use of undefined value here causes illegal behavior // :59:34: note: when computing vector element at index '0' // :59:34: error: use of undefined value here causes illegal behavior -// :59:34: note: when computing vector element at index '1' +// :59:34: note: when computing vector element at index '0' // :59:34: error: use of undefined value here causes illegal behavior -// :59:34: note: when computing vector element at index '1' +// :59:34: note: when computing vector element at index '0' // :59:34: error: use of undefined value here causes illegal behavior // :59:34: note: when computing vector element at index '0' // :59:34: error: use of undefined value here causes illegal behavior @@ -501,7 +495,9 @@ const std = @import("std"); // :59:34: error: use of undefined value here causes illegal behavior // :59:34: note: when computing vector element at index '0' // :59:34: error: use of undefined value here causes illegal behavior +// :59:34: note: when computing vector element at index '0' // :59:34: error: use of undefined value here causes illegal behavior +// :59:34: note: when computing vector element at index '0' // :59:34: error: use of undefined value here causes illegal behavior // :59:34: note: when computing vector element at index '0' // :59:34: error: use of undefined value here causes illegal behavior @@ -511,9 +507,9 @@ const std = @import("std"); // :59:34: error: use of undefined value here causes illegal behavior // :59:34: note: when computing vector element at index '0' // :59:34: error: use of undefined value here causes illegal behavior -// :59:34: note: when computing vector element at index '1' +// :59:34: note: when computing vector element at index '0' // :59:34: error: use of undefined value here causes illegal behavior -// :59:34: note: when computing vector element at index '1' +// :59:34: note: when computing vector element at index '0' // :59:34: error: use of undefined value here causes illegal behavior // :59:34: note: when computing vector element at index '0' // :59:34: error: use of undefined value here causes illegal behavior @@ -523,7 +519,9 @@ const std = @import("std"); // :59:34: error: use of undefined value here causes illegal behavior // :59:34: note: when computing vector element at index '0' // :59:34: error: use of undefined value here causes illegal behavior +// :59:34: note: when computing vector element at index '0' // :59:34: error: use of undefined value here causes illegal behavior +// :59:34: note: when computing vector element at index '0' // :59:34: error: use of undefined value here causes illegal behavior // :59:34: note: when computing vector element at index '0' // :59:34: error: use of undefined value here causes illegal behavior @@ -533,9 +531,9 @@ const std = @import("std"); // :59:34: error: use of undefined value here causes illegal behavior // :59:34: note: when computing vector element at index '0' // :59:34: error: use of undefined value here causes illegal behavior -// :59:34: note: when computing vector element at index '1' +// :59:34: note: when computing vector element at index '0' // :59:34: error: use of undefined value here causes illegal behavior -// :59:34: note: when computing vector element at index '1' +// :59:34: note: when computing vector element at index '0' // :59:34: error: use of undefined value here causes illegal behavior // :59:34: note: when computing vector element at index '0' // :59:34: error: use of undefined value here causes illegal behavior @@ -545,27 +543,29 @@ const std = @import("std"); // :59:34: error: use of undefined value here causes illegal behavior // :59:34: note: when computing vector element at index '0' // :59:34: error: use of undefined value here causes illegal behavior +// :59:34: note: when computing vector element at index '1' // :59:34: error: use of undefined value here causes illegal behavior +// :59:34: note: when computing vector element at index '1' // :59:34: error: use of undefined value here causes illegal behavior -// :59:34: note: when computing vector element at index '0' +// :59:34: note: when computing vector element at index '1' // :59:34: error: use of undefined value here causes illegal behavior -// :59:34: note: when computing vector element at index '0' +// :59:34: note: when computing vector element at index '1' // :59:34: error: use of undefined value here causes illegal behavior -// :59:34: note: when computing vector element at index '0' +// :59:34: note: when computing vector element at index '1' // :59:34: error: use of undefined value here causes illegal behavior -// :59:34: note: when computing vector element at index '0' +// :59:34: note: when computing vector element at index '1' // :59:34: error: use of undefined value here causes illegal behavior // :59:34: note: when computing vector element at index '1' // :59:34: error: use of undefined value here causes illegal behavior // :59:34: note: when computing vector element at index '1' // :59:34: error: use of undefined value here causes illegal behavior -// :59:34: note: when computing vector element at index '0' +// :59:34: note: when computing vector element at index '1' // :59:34: error: use of undefined value here causes illegal behavior -// :59:34: note: when computing vector element at index '0' +// :59:34: note: when computing vector element at index '1' // :59:34: error: use of undefined value here causes illegal behavior -// :59:34: note: when computing vector element at index '0' +// :59:34: note: when computing vector element at index '1' // :59:34: error: use of undefined value here causes illegal behavior -// :59:34: note: when computing vector element at index '0' +// :59:34: note: when computing vector element at index '1' // :59:37: error: use of undefined value here causes illegal behavior // :59:37: note: when computing vector element at index '0' // :59:37: error: use of undefined value here causes illegal behavior @@ -593,27 +593,19 @@ const std = @import("std"); // :62:17: error: use of undefined value here causes illegal behavior // :62:17: error: use of undefined value here causes illegal behavior // :62:17: error: use of undefined value here causes illegal behavior -// :62:17: note: when computing vector element at index '0' // :62:17: error: use of undefined value here causes illegal behavior -// :62:17: note: when computing vector element at index '0' // :62:17: error: use of undefined value here causes illegal behavior -// :62:17: note: when computing vector element at index '0' // :62:17: error: use of undefined value here causes illegal behavior -// :62:17: note: when computing vector element at index '0' // :62:17: error: use of undefined value here causes illegal behavior -// :62:17: note: when computing vector element at index '1' // :62:17: error: use of undefined value here causes illegal behavior -// :62:17: note: when computing vector element at index '1' // :62:17: error: use of undefined value here causes illegal behavior -// :62:17: note: when computing vector element at index '0' // :62:17: error: use of undefined value here causes illegal behavior -// :62:17: note: when computing vector element at index '0' // :62:17: error: use of undefined value here causes illegal behavior -// :62:17: note: when computing vector element at index '0' // :62:17: error: use of undefined value here causes illegal behavior -// :62:17: note: when computing vector element at index '0' // :62:17: error: use of undefined value here causes illegal behavior +// :62:17: note: when computing vector element at index '0' // :62:17: error: use of undefined value here causes illegal behavior +// :62:17: note: when computing vector element at index '0' // :62:17: error: use of undefined value here causes illegal behavior // :62:17: note: when computing vector element at index '0' // :62:17: error: use of undefined value here causes illegal behavior @@ -623,9 +615,9 @@ const std = @import("std"); // :62:17: error: use of undefined value here causes illegal behavior // :62:17: note: when computing vector element at index '0' // :62:17: error: use of undefined value here causes illegal behavior -// :62:17: note: when computing vector element at index '1' +// :62:17: note: when computing vector element at index '0' // :62:17: error: use of undefined value here causes illegal behavior -// :62:17: note: when computing vector element at index '1' +// :62:17: note: when computing vector element at index '0' // :62:17: error: use of undefined value here causes illegal behavior // :62:17: note: when computing vector element at index '0' // :62:17: error: use of undefined value here causes illegal behavior @@ -635,7 +627,9 @@ const std = @import("std"); // :62:17: error: use of undefined value here causes illegal behavior // :62:17: note: when computing vector element at index '0' // :62:17: error: use of undefined value here causes illegal behavior +// :62:17: note: when computing vector element at index '0' // :62:17: error: use of undefined value here causes illegal behavior +// :62:17: note: when computing vector element at index '0' // :62:17: error: use of undefined value here causes illegal behavior // :62:17: note: when computing vector element at index '0' // :62:17: error: use of undefined value here causes illegal behavior @@ -645,9 +639,9 @@ const std = @import("std"); // :62:17: error: use of undefined value here causes illegal behavior // :62:17: note: when computing vector element at index '0' // :62:17: error: use of undefined value here causes illegal behavior -// :62:17: note: when computing vector element at index '1' +// :62:17: note: when computing vector element at index '0' // :62:17: error: use of undefined value here causes illegal behavior -// :62:17: note: when computing vector element at index '1' +// :62:17: note: when computing vector element at index '0' // :62:17: error: use of undefined value here causes illegal behavior // :62:17: note: when computing vector element at index '0' // :62:17: error: use of undefined value here causes illegal behavior @@ -657,7 +651,9 @@ const std = @import("std"); // :62:17: error: use of undefined value here causes illegal behavior // :62:17: note: when computing vector element at index '0' // :62:17: error: use of undefined value here causes illegal behavior +// :62:17: note: when computing vector element at index '0' // :62:17: error: use of undefined value here causes illegal behavior +// :62:17: note: when computing vector element at index '0' // :62:17: error: use of undefined value here causes illegal behavior // :62:17: note: when computing vector element at index '0' // :62:17: error: use of undefined value here causes illegal behavior @@ -667,9 +663,9 @@ const std = @import("std"); // :62:17: error: use of undefined value here causes illegal behavior // :62:17: note: when computing vector element at index '0' // :62:17: error: use of undefined value here causes illegal behavior -// :62:17: note: when computing vector element at index '1' +// :62:17: note: when computing vector element at index '0' // :62:17: error: use of undefined value here causes illegal behavior -// :62:17: note: when computing vector element at index '1' +// :62:17: note: when computing vector element at index '0' // :62:17: error: use of undefined value here causes illegal behavior // :62:17: note: when computing vector element at index '0' // :62:17: error: use of undefined value here causes illegal behavior @@ -679,7 +675,9 @@ const std = @import("std"); // :62:17: error: use of undefined value here causes illegal behavior // :62:17: note: when computing vector element at index '0' // :62:17: error: use of undefined value here causes illegal behavior +// :62:17: note: when computing vector element at index '0' // :62:17: error: use of undefined value here causes illegal behavior +// :62:17: note: when computing vector element at index '0' // :62:17: error: use of undefined value here causes illegal behavior // :62:17: note: when computing vector element at index '0' // :62:17: error: use of undefined value here causes illegal behavior @@ -689,9 +687,9 @@ const std = @import("std"); // :62:17: error: use of undefined value here causes illegal behavior // :62:17: note: when computing vector element at index '0' // :62:17: error: use of undefined value here causes illegal behavior -// :62:17: note: when computing vector element at index '1' +// :62:17: note: when computing vector element at index '0' // :62:17: error: use of undefined value here causes illegal behavior -// :62:17: note: when computing vector element at index '1' +// :62:17: note: when computing vector element at index '0' // :62:17: error: use of undefined value here causes illegal behavior // :62:17: note: when computing vector element at index '0' // :62:17: error: use of undefined value here causes illegal behavior @@ -701,27 +699,29 @@ const std = @import("std"); // :62:17: error: use of undefined value here causes illegal behavior // :62:17: note: when computing vector element at index '0' // :62:17: error: use of undefined value here causes illegal behavior +// :62:17: note: when computing vector element at index '1' // :62:17: error: use of undefined value here causes illegal behavior +// :62:17: note: when computing vector element at index '1' // :62:17: error: use of undefined value here causes illegal behavior -// :62:17: note: when computing vector element at index '0' +// :62:17: note: when computing vector element at index '1' // :62:17: error: use of undefined value here causes illegal behavior -// :62:17: note: when computing vector element at index '0' +// :62:17: note: when computing vector element at index '1' // :62:17: error: use of undefined value here causes illegal behavior -// :62:17: note: when computing vector element at index '0' +// :62:17: note: when computing vector element at index '1' // :62:17: error: use of undefined value here causes illegal behavior -// :62:17: note: when computing vector element at index '0' +// :62:17: note: when computing vector element at index '1' // :62:17: error: use of undefined value here causes illegal behavior // :62:17: note: when computing vector element at index '1' // :62:17: error: use of undefined value here causes illegal behavior // :62:17: note: when computing vector element at index '1' // :62:17: error: use of undefined value here causes illegal behavior -// :62:17: note: when computing vector element at index '0' +// :62:17: note: when computing vector element at index '1' // :62:17: error: use of undefined value here causes illegal behavior -// :62:17: note: when computing vector element at index '0' +// :62:17: note: when computing vector element at index '1' // :62:17: error: use of undefined value here causes illegal behavior -// :62:17: note: when computing vector element at index '0' +// :62:17: note: when computing vector element at index '1' // :62:17: error: use of undefined value here causes illegal behavior -// :62:17: note: when computing vector element at index '0' +// :62:17: note: when computing vector element at index '1' // :62:22: error: use of undefined value here causes illegal behavior // :62:22: note: when computing vector element at index '0' // :62:22: error: use of undefined value here causes illegal behavior @@ -749,27 +749,19 @@ const std = @import("std"); // :65:27: error: use of undefined value here causes illegal behavior // :65:27: error: use of undefined value here causes illegal behavior // :65:27: error: use of undefined value here causes illegal behavior -// :65:27: note: when computing vector element at index '0' // :65:27: error: use of undefined value here causes illegal behavior -// :65:27: note: when computing vector element at index '0' // :65:27: error: use of undefined value here causes illegal behavior -// :65:27: note: when computing vector element at index '0' // :65:27: error: use of undefined value here causes illegal behavior -// :65:27: note: when computing vector element at index '0' // :65:27: error: use of undefined value here causes illegal behavior -// :65:27: note: when computing vector element at index '1' // :65:27: error: use of undefined value here causes illegal behavior -// :65:27: note: when computing vector element at index '1' // :65:27: error: use of undefined value here causes illegal behavior -// :65:27: note: when computing vector element at index '0' // :65:27: error: use of undefined value here causes illegal behavior -// :65:27: note: when computing vector element at index '0' // :65:27: error: use of undefined value here causes illegal behavior -// :65:27: note: when computing vector element at index '0' // :65:27: error: use of undefined value here causes illegal behavior -// :65:27: note: when computing vector element at index '0' // :65:27: error: use of undefined value here causes illegal behavior +// :65:27: note: when computing vector element at index '0' // :65:27: error: use of undefined value here causes illegal behavior +// :65:27: note: when computing vector element at index '0' // :65:27: error: use of undefined value here causes illegal behavior // :65:27: note: when computing vector element at index '0' // :65:27: error: use of undefined value here causes illegal behavior @@ -779,9 +771,9 @@ const std = @import("std"); // :65:27: error: use of undefined value here causes illegal behavior // :65:27: note: when computing vector element at index '0' // :65:27: error: use of undefined value here causes illegal behavior -// :65:27: note: when computing vector element at index '1' +// :65:27: note: when computing vector element at index '0' // :65:27: error: use of undefined value here causes illegal behavior -// :65:27: note: when computing vector element at index '1' +// :65:27: note: when computing vector element at index '0' // :65:27: error: use of undefined value here causes illegal behavior // :65:27: note: when computing vector element at index '0' // :65:27: error: use of undefined value here causes illegal behavior @@ -791,7 +783,9 @@ const std = @import("std"); // :65:27: error: use of undefined value here causes illegal behavior // :65:27: note: when computing vector element at index '0' // :65:27: error: use of undefined value here causes illegal behavior +// :65:27: note: when computing vector element at index '0' // :65:27: error: use of undefined value here causes illegal behavior +// :65:27: note: when computing vector element at index '0' // :65:27: error: use of undefined value here causes illegal behavior // :65:27: note: when computing vector element at index '0' // :65:27: error: use of undefined value here causes illegal behavior @@ -801,9 +795,9 @@ const std = @import("std"); // :65:27: error: use of undefined value here causes illegal behavior // :65:27: note: when computing vector element at index '0' // :65:27: error: use of undefined value here causes illegal behavior -// :65:27: note: when computing vector element at index '1' +// :65:27: note: when computing vector element at index '0' // :65:27: error: use of undefined value here causes illegal behavior -// :65:27: note: when computing vector element at index '1' +// :65:27: note: when computing vector element at index '0' // :65:27: error: use of undefined value here causes illegal behavior // :65:27: note: when computing vector element at index '0' // :65:27: error: use of undefined value here causes illegal behavior @@ -813,7 +807,9 @@ const std = @import("std"); // :65:27: error: use of undefined value here causes illegal behavior // :65:27: note: when computing vector element at index '0' // :65:27: error: use of undefined value here causes illegal behavior +// :65:27: note: when computing vector element at index '0' // :65:27: error: use of undefined value here causes illegal behavior +// :65:27: note: when computing vector element at index '0' // :65:27: error: use of undefined value here causes illegal behavior // :65:27: note: when computing vector element at index '0' // :65:27: error: use of undefined value here causes illegal behavior @@ -823,9 +819,9 @@ const std = @import("std"); // :65:27: error: use of undefined value here causes illegal behavior // :65:27: note: when computing vector element at index '0' // :65:27: error: use of undefined value here causes illegal behavior -// :65:27: note: when computing vector element at index '1' +// :65:27: note: when computing vector element at index '0' // :65:27: error: use of undefined value here causes illegal behavior -// :65:27: note: when computing vector element at index '1' +// :65:27: note: when computing vector element at index '0' // :65:27: error: use of undefined value here causes illegal behavior // :65:27: note: when computing vector element at index '0' // :65:27: error: use of undefined value here causes illegal behavior @@ -835,7 +831,9 @@ const std = @import("std"); // :65:27: error: use of undefined value here causes illegal behavior // :65:27: note: when computing vector element at index '0' // :65:27: error: use of undefined value here causes illegal behavior +// :65:27: note: when computing vector element at index '0' // :65:27: error: use of undefined value here causes illegal behavior +// :65:27: note: when computing vector element at index '0' // :65:27: error: use of undefined value here causes illegal behavior // :65:27: note: when computing vector element at index '0' // :65:27: error: use of undefined value here causes illegal behavior @@ -845,9 +843,9 @@ const std = @import("std"); // :65:27: error: use of undefined value here causes illegal behavior // :65:27: note: when computing vector element at index '0' // :65:27: error: use of undefined value here causes illegal behavior -// :65:27: note: when computing vector element at index '1' +// :65:27: note: when computing vector element at index '0' // :65:27: error: use of undefined value here causes illegal behavior -// :65:27: note: when computing vector element at index '1' +// :65:27: note: when computing vector element at index '0' // :65:27: error: use of undefined value here causes illegal behavior // :65:27: note: when computing vector element at index '0' // :65:27: error: use of undefined value here causes illegal behavior @@ -857,27 +855,29 @@ const std = @import("std"); // :65:27: error: use of undefined value here causes illegal behavior // :65:27: note: when computing vector element at index '0' // :65:27: error: use of undefined value here causes illegal behavior +// :65:27: note: when computing vector element at index '1' // :65:27: error: use of undefined value here causes illegal behavior +// :65:27: note: when computing vector element at index '1' // :65:27: error: use of undefined value here causes illegal behavior -// :65:27: note: when computing vector element at index '0' +// :65:27: note: when computing vector element at index '1' // :65:27: error: use of undefined value here causes illegal behavior -// :65:27: note: when computing vector element at index '0' +// :65:27: note: when computing vector element at index '1' // :65:27: error: use of undefined value here causes illegal behavior -// :65:27: note: when computing vector element at index '0' +// :65:27: note: when computing vector element at index '1' // :65:27: error: use of undefined value here causes illegal behavior -// :65:27: note: when computing vector element at index '0' +// :65:27: note: when computing vector element at index '1' // :65:27: error: use of undefined value here causes illegal behavior // :65:27: note: when computing vector element at index '1' // :65:27: error: use of undefined value here causes illegal behavior // :65:27: note: when computing vector element at index '1' // :65:27: error: use of undefined value here causes illegal behavior -// :65:27: note: when computing vector element at index '0' +// :65:27: note: when computing vector element at index '1' // :65:27: error: use of undefined value here causes illegal behavior -// :65:27: note: when computing vector element at index '0' +// :65:27: note: when computing vector element at index '1' // :65:27: error: use of undefined value here causes illegal behavior -// :65:27: note: when computing vector element at index '0' +// :65:27: note: when computing vector element at index '1' // :65:27: error: use of undefined value here causes illegal behavior -// :65:27: note: when computing vector element at index '0' +// :65:27: note: when computing vector element at index '1' // :65:30: error: use of undefined value here causes illegal behavior // :65:30: note: when computing vector element at index '0' // :65:30: error: use of undefined value here causes illegal behavior @@ -909,21 +909,13 @@ const std = @import("std"); // :70:17: error: use of undefined value here causes illegal behavior // :70:17: error: use of undefined value here causes illegal behavior // :70:17: error: use of undefined value here causes illegal behavior -// :70:17: note: when computing vector element at index '1' // :70:17: error: use of undefined value here causes illegal behavior -// :70:17: note: when computing vector element at index '1' // :70:17: error: use of undefined value here causes illegal behavior -// :70:17: note: when computing vector element at index '1' // :70:17: error: use of undefined value here causes illegal behavior -// :70:17: note: when computing vector element at index '1' // :70:17: error: use of undefined value here causes illegal behavior -// :70:17: note: when computing vector element at index '0' // :70:17: error: use of undefined value here causes illegal behavior -// :70:17: note: when computing vector element at index '0' // :70:17: error: use of undefined value here causes illegal behavior -// :70:17: note: when computing vector element at index '0' // :70:17: error: use of undefined value here causes illegal behavior -// :70:17: note: when computing vector element at index '0' // :70:17: error: use of undefined value here causes illegal behavior // :70:17: error: use of undefined value here causes illegal behavior // :70:17: error: use of undefined value here causes illegal behavior @@ -931,21 +923,13 @@ const std = @import("std"); // :70:17: error: use of undefined value here causes illegal behavior // :70:17: error: use of undefined value here causes illegal behavior // :70:17: error: use of undefined value here causes illegal behavior -// :70:17: note: when computing vector element at index '1' // :70:17: error: use of undefined value here causes illegal behavior -// :70:17: note: when computing vector element at index '1' // :70:17: error: use of undefined value here causes illegal behavior -// :70:17: note: when computing vector element at index '1' // :70:17: error: use of undefined value here causes illegal behavior -// :70:17: note: when computing vector element at index '1' // :70:17: error: use of undefined value here causes illegal behavior -// :70:17: note: when computing vector element at index '0' // :70:17: error: use of undefined value here causes illegal behavior -// :70:17: note: when computing vector element at index '0' // :70:17: error: use of undefined value here causes illegal behavior -// :70:17: note: when computing vector element at index '0' // :70:17: error: use of undefined value here causes illegal behavior -// :70:17: note: when computing vector element at index '0' // :70:17: error: use of undefined value here causes illegal behavior // :70:17: error: use of undefined value here causes illegal behavior // :70:17: error: use of undefined value here causes illegal behavior @@ -953,13 +937,11 @@ const std = @import("std"); // :70:17: error: use of undefined value here causes illegal behavior // :70:17: error: use of undefined value here causes illegal behavior // :70:17: error: use of undefined value here causes illegal behavior -// :70:17: note: when computing vector element at index '1' // :70:17: error: use of undefined value here causes illegal behavior -// :70:17: note: when computing vector element at index '1' // :70:17: error: use of undefined value here causes illegal behavior -// :70:17: note: when computing vector element at index '1' +// :70:17: note: when computing vector element at index '0' // :70:17: error: use of undefined value here causes illegal behavior -// :70:17: note: when computing vector element at index '1' +// :70:17: note: when computing vector element at index '0' // :70:17: error: use of undefined value here causes illegal behavior // :70:17: note: when computing vector element at index '0' // :70:17: error: use of undefined value here causes illegal behavior @@ -969,19 +951,25 @@ const std = @import("std"); // :70:17: error: use of undefined value here causes illegal behavior // :70:17: note: when computing vector element at index '0' // :70:17: error: use of undefined value here causes illegal behavior +// :70:17: note: when computing vector element at index '0' // :70:17: error: use of undefined value here causes illegal behavior +// :70:17: note: when computing vector element at index '0' // :70:17: error: use of undefined value here causes illegal behavior +// :70:17: note: when computing vector element at index '0' // :70:17: error: use of undefined value here causes illegal behavior +// :70:17: note: when computing vector element at index '0' // :70:17: error: use of undefined value here causes illegal behavior +// :70:17: note: when computing vector element at index '0' // :70:17: error: use of undefined value here causes illegal behavior +// :70:17: note: when computing vector element at index '0' // :70:17: error: use of undefined value here causes illegal behavior -// :70:17: note: when computing vector element at index '1' +// :70:17: note: when computing vector element at index '0' // :70:17: error: use of undefined value here causes illegal behavior -// :70:17: note: when computing vector element at index '1' +// :70:17: note: when computing vector element at index '0' // :70:17: error: use of undefined value here causes illegal behavior -// :70:17: note: when computing vector element at index '1' +// :70:17: note: when computing vector element at index '0' // :70:17: error: use of undefined value here causes illegal behavior -// :70:17: note: when computing vector element at index '1' +// :70:17: note: when computing vector element at index '0' // :70:17: error: use of undefined value here causes illegal behavior // :70:17: note: when computing vector element at index '0' // :70:17: error: use of undefined value here causes illegal behavior @@ -991,11 +979,17 @@ const std = @import("std"); // :70:17: error: use of undefined value here causes illegal behavior // :70:17: note: when computing vector element at index '0' // :70:17: error: use of undefined value here causes illegal behavior +// :70:17: note: when computing vector element at index '0' // :70:17: error: use of undefined value here causes illegal behavior +// :70:17: note: when computing vector element at index '0' // :70:17: error: use of undefined value here causes illegal behavior +// :70:17: note: when computing vector element at index '0' // :70:17: error: use of undefined value here causes illegal behavior +// :70:17: note: when computing vector element at index '0' // :70:17: error: use of undefined value here causes illegal behavior +// :70:17: note: when computing vector element at index '1' // :70:17: error: use of undefined value here causes illegal behavior +// :70:17: note: when computing vector element at index '1' // :70:17: error: use of undefined value here causes illegal behavior // :70:17: note: when computing vector element at index '1' // :70:17: error: use of undefined value here causes illegal behavior @@ -1005,19 +999,25 @@ const std = @import("std"); // :70:17: error: use of undefined value here causes illegal behavior // :70:17: note: when computing vector element at index '1' // :70:17: error: use of undefined value here causes illegal behavior -// :70:17: note: when computing vector element at index '0' +// :70:17: note: when computing vector element at index '1' // :70:17: error: use of undefined value here causes illegal behavior -// :70:17: note: when computing vector element at index '0' +// :70:17: note: when computing vector element at index '1' // :70:17: error: use of undefined value here causes illegal behavior -// :70:17: note: when computing vector element at index '0' +// :70:17: note: when computing vector element at index '1' // :70:17: error: use of undefined value here causes illegal behavior -// :70:17: note: when computing vector element at index '0' +// :70:17: note: when computing vector element at index '1' // :70:17: error: use of undefined value here causes illegal behavior +// :70:17: note: when computing vector element at index '1' // :70:17: error: use of undefined value here causes illegal behavior +// :70:17: note: when computing vector element at index '1' // :70:17: error: use of undefined value here causes illegal behavior +// :70:17: note: when computing vector element at index '1' // :70:17: error: use of undefined value here causes illegal behavior +// :70:17: note: when computing vector element at index '1' // :70:17: error: use of undefined value here causes illegal behavior +// :70:17: note: when computing vector element at index '1' // :70:17: error: use of undefined value here causes illegal behavior +// :70:17: note: when computing vector element at index '1' // :70:17: error: use of undefined value here causes illegal behavior // :70:17: note: when computing vector element at index '1' // :70:17: error: use of undefined value here causes illegal behavior @@ -1027,13 +1027,13 @@ const std = @import("std"); // :70:17: error: use of undefined value here causes illegal behavior // :70:17: note: when computing vector element at index '1' // :70:17: error: use of undefined value here causes illegal behavior -// :70:17: note: when computing vector element at index '0' +// :70:17: note: when computing vector element at index '1' // :70:17: error: use of undefined value here causes illegal behavior -// :70:17: note: when computing vector element at index '0' +// :70:17: note: when computing vector element at index '1' // :70:17: error: use of undefined value here causes illegal behavior -// :70:17: note: when computing vector element at index '0' +// :70:17: note: when computing vector element at index '1' // :70:17: error: use of undefined value here causes illegal behavior -// :70:17: note: when computing vector element at index '0' +// :70:17: note: when computing vector element at index '1' // :73:27: error: use of undefined value here causes illegal behavior // :73:27: error: use of undefined value here causes illegal behavior // :73:27: error: use of undefined value here causes illegal behavior @@ -1041,21 +1041,13 @@ const std = @import("std"); // :73:27: error: use of undefined value here causes illegal behavior // :73:27: error: use of undefined value here causes illegal behavior // :73:27: error: use of undefined value here causes illegal behavior -// :73:27: note: when computing vector element at index '1' // :73:27: error: use of undefined value here causes illegal behavior -// :73:27: note: when computing vector element at index '1' // :73:27: error: use of undefined value here causes illegal behavior -// :73:27: note: when computing vector element at index '1' // :73:27: error: use of undefined value here causes illegal behavior -// :73:27: note: when computing vector element at index '1' // :73:27: error: use of undefined value here causes illegal behavior -// :73:27: note: when computing vector element at index '0' // :73:27: error: use of undefined value here causes illegal behavior -// :73:27: note: when computing vector element at index '0' // :73:27: error: use of undefined value here causes illegal behavior -// :73:27: note: when computing vector element at index '0' // :73:27: error: use of undefined value here causes illegal behavior -// :73:27: note: when computing vector element at index '0' // :73:27: error: use of undefined value here causes illegal behavior // :73:27: error: use of undefined value here causes illegal behavior // :73:27: error: use of undefined value here causes illegal behavior @@ -1063,21 +1055,13 @@ const std = @import("std"); // :73:27: error: use of undefined value here causes illegal behavior // :73:27: error: use of undefined value here causes illegal behavior // :73:27: error: use of undefined value here causes illegal behavior -// :73:27: note: when computing vector element at index '1' // :73:27: error: use of undefined value here causes illegal behavior -// :73:27: note: when computing vector element at index '1' // :73:27: error: use of undefined value here causes illegal behavior -// :73:27: note: when computing vector element at index '1' // :73:27: error: use of undefined value here causes illegal behavior -// :73:27: note: when computing vector element at index '1' // :73:27: error: use of undefined value here causes illegal behavior -// :73:27: note: when computing vector element at index '0' // :73:27: error: use of undefined value here causes illegal behavior -// :73:27: note: when computing vector element at index '0' // :73:27: error: use of undefined value here causes illegal behavior -// :73:27: note: when computing vector element at index '0' // :73:27: error: use of undefined value here causes illegal behavior -// :73:27: note: when computing vector element at index '0' // :73:27: error: use of undefined value here causes illegal behavior // :73:27: error: use of undefined value here causes illegal behavior // :73:27: error: use of undefined value here causes illegal behavior @@ -1085,13 +1069,11 @@ const std = @import("std"); // :73:27: error: use of undefined value here causes illegal behavior // :73:27: error: use of undefined value here causes illegal behavior // :73:27: error: use of undefined value here causes illegal behavior -// :73:27: note: when computing vector element at index '1' // :73:27: error: use of undefined value here causes illegal behavior -// :73:27: note: when computing vector element at index '1' // :73:27: error: use of undefined value here causes illegal behavior -// :73:27: note: when computing vector element at index '1' +// :73:27: note: when computing vector element at index '0' // :73:27: error: use of undefined value here causes illegal behavior -// :73:27: note: when computing vector element at index '1' +// :73:27: note: when computing vector element at index '0' // :73:27: error: use of undefined value here causes illegal behavior // :73:27: note: when computing vector element at index '0' // :73:27: error: use of undefined value here causes illegal behavior @@ -1101,19 +1083,25 @@ const std = @import("std"); // :73:27: error: use of undefined value here causes illegal behavior // :73:27: note: when computing vector element at index '0' // :73:27: error: use of undefined value here causes illegal behavior +// :73:27: note: when computing vector element at index '0' // :73:27: error: use of undefined value here causes illegal behavior +// :73:27: note: when computing vector element at index '0' // :73:27: error: use of undefined value here causes illegal behavior +// :73:27: note: when computing vector element at index '0' // :73:27: error: use of undefined value here causes illegal behavior +// :73:27: note: when computing vector element at index '0' // :73:27: error: use of undefined value here causes illegal behavior +// :73:27: note: when computing vector element at index '0' // :73:27: error: use of undefined value here causes illegal behavior +// :73:27: note: when computing vector element at index '0' // :73:27: error: use of undefined value here causes illegal behavior -// :73:27: note: when computing vector element at index '1' +// :73:27: note: when computing vector element at index '0' // :73:27: error: use of undefined value here causes illegal behavior -// :73:27: note: when computing vector element at index '1' +// :73:27: note: when computing vector element at index '0' // :73:27: error: use of undefined value here causes illegal behavior -// :73:27: note: when computing vector element at index '1' +// :73:27: note: when computing vector element at index '0' // :73:27: error: use of undefined value here causes illegal behavior -// :73:27: note: when computing vector element at index '1' +// :73:27: note: when computing vector element at index '0' // :73:27: error: use of undefined value here causes illegal behavior // :73:27: note: when computing vector element at index '0' // :73:27: error: use of undefined value here causes illegal behavior @@ -1123,11 +1111,17 @@ const std = @import("std"); // :73:27: error: use of undefined value here causes illegal behavior // :73:27: note: when computing vector element at index '0' // :73:27: error: use of undefined value here causes illegal behavior +// :73:27: note: when computing vector element at index '0' // :73:27: error: use of undefined value here causes illegal behavior +// :73:27: note: when computing vector element at index '0' // :73:27: error: use of undefined value here causes illegal behavior +// :73:27: note: when computing vector element at index '0' // :73:27: error: use of undefined value here causes illegal behavior +// :73:27: note: when computing vector element at index '0' // :73:27: error: use of undefined value here causes illegal behavior +// :73:27: note: when computing vector element at index '1' // :73:27: error: use of undefined value here causes illegal behavior +// :73:27: note: when computing vector element at index '1' // :73:27: error: use of undefined value here causes illegal behavior // :73:27: note: when computing vector element at index '1' // :73:27: error: use of undefined value here causes illegal behavior @@ -1137,19 +1131,25 @@ const std = @import("std"); // :73:27: error: use of undefined value here causes illegal behavior // :73:27: note: when computing vector element at index '1' // :73:27: error: use of undefined value here causes illegal behavior -// :73:27: note: when computing vector element at index '0' +// :73:27: note: when computing vector element at index '1' // :73:27: error: use of undefined value here causes illegal behavior -// :73:27: note: when computing vector element at index '0' +// :73:27: note: when computing vector element at index '1' // :73:27: error: use of undefined value here causes illegal behavior -// :73:27: note: when computing vector element at index '0' +// :73:27: note: when computing vector element at index '1' // :73:27: error: use of undefined value here causes illegal behavior -// :73:27: note: when computing vector element at index '0' +// :73:27: note: when computing vector element at index '1' // :73:27: error: use of undefined value here causes illegal behavior +// :73:27: note: when computing vector element at index '1' // :73:27: error: use of undefined value here causes illegal behavior +// :73:27: note: when computing vector element at index '1' // :73:27: error: use of undefined value here causes illegal behavior +// :73:27: note: when computing vector element at index '1' // :73:27: error: use of undefined value here causes illegal behavior +// :73:27: note: when computing vector element at index '1' // :73:27: error: use of undefined value here causes illegal behavior +// :73:27: note: when computing vector element at index '1' // :73:27: error: use of undefined value here causes illegal behavior +// :73:27: note: when computing vector element at index '1' // :73:27: error: use of undefined value here causes illegal behavior // :73:27: note: when computing vector element at index '1' // :73:27: error: use of undefined value here causes illegal behavior @@ -1159,13 +1159,13 @@ const std = @import("std"); // :73:27: error: use of undefined value here causes illegal behavior // :73:27: note: when computing vector element at index '1' // :73:27: error: use of undefined value here causes illegal behavior -// :73:27: note: when computing vector element at index '0' +// :73:27: note: when computing vector element at index '1' // :73:27: error: use of undefined value here causes illegal behavior -// :73:27: note: when computing vector element at index '0' +// :73:27: note: when computing vector element at index '1' // :73:27: error: use of undefined value here causes illegal behavior -// :73:27: note: when computing vector element at index '0' +// :73:27: note: when computing vector element at index '1' // :73:27: error: use of undefined value here causes illegal behavior -// :73:27: note: when computing vector element at index '0' +// :73:27: note: when computing vector element at index '1' // :76:34: error: use of undefined value here causes illegal behavior // :76:34: error: use of undefined value here causes illegal behavior // :76:34: error: use of undefined value here causes illegal behavior @@ -1173,21 +1173,13 @@ const std = @import("std"); // :76:34: error: use of undefined value here causes illegal behavior // :76:34: error: use of undefined value here causes illegal behavior // :76:34: error: use of undefined value here causes illegal behavior -// :76:34: note: when computing vector element at index '1' // :76:34: error: use of undefined value here causes illegal behavior -// :76:34: note: when computing vector element at index '1' // :76:34: error: use of undefined value here causes illegal behavior -// :76:34: note: when computing vector element at index '1' // :76:34: error: use of undefined value here causes illegal behavior -// :76:34: note: when computing vector element at index '1' // :76:34: error: use of undefined value here causes illegal behavior -// :76:34: note: when computing vector element at index '0' // :76:34: error: use of undefined value here causes illegal behavior -// :76:34: note: when computing vector element at index '0' // :76:34: error: use of undefined value here causes illegal behavior -// :76:34: note: when computing vector element at index '0' // :76:34: error: use of undefined value here causes illegal behavior -// :76:34: note: when computing vector element at index '0' // :76:34: error: use of undefined value here causes illegal behavior // :76:34: error: use of undefined value here causes illegal behavior // :76:34: error: use of undefined value here causes illegal behavior @@ -1195,21 +1187,13 @@ const std = @import("std"); // :76:34: error: use of undefined value here causes illegal behavior // :76:34: error: use of undefined value here causes illegal behavior // :76:34: error: use of undefined value here causes illegal behavior -// :76:34: note: when computing vector element at index '1' // :76:34: error: use of undefined value here causes illegal behavior -// :76:34: note: when computing vector element at index '1' // :76:34: error: use of undefined value here causes illegal behavior -// :76:34: note: when computing vector element at index '1' // :76:34: error: use of undefined value here causes illegal behavior -// :76:34: note: when computing vector element at index '1' // :76:34: error: use of undefined value here causes illegal behavior -// :76:34: note: when computing vector element at index '0' // :76:34: error: use of undefined value here causes illegal behavior -// :76:34: note: when computing vector element at index '0' // :76:34: error: use of undefined value here causes illegal behavior -// :76:34: note: when computing vector element at index '0' // :76:34: error: use of undefined value here causes illegal behavior -// :76:34: note: when computing vector element at index '0' // :76:34: error: use of undefined value here causes illegal behavior // :76:34: error: use of undefined value here causes illegal behavior // :76:34: error: use of undefined value here causes illegal behavior @@ -1217,13 +1201,11 @@ const std = @import("std"); // :76:34: error: use of undefined value here causes illegal behavior // :76:34: error: use of undefined value here causes illegal behavior // :76:34: error: use of undefined value here causes illegal behavior -// :76:34: note: when computing vector element at index '1' // :76:34: error: use of undefined value here causes illegal behavior -// :76:34: note: when computing vector element at index '1' // :76:34: error: use of undefined value here causes illegal behavior -// :76:34: note: when computing vector element at index '1' +// :76:34: note: when computing vector element at index '0' // :76:34: error: use of undefined value here causes illegal behavior -// :76:34: note: when computing vector element at index '1' +// :76:34: note: when computing vector element at index '0' // :76:34: error: use of undefined value here causes illegal behavior // :76:34: note: when computing vector element at index '0' // :76:34: error: use of undefined value here causes illegal behavior @@ -1233,19 +1215,25 @@ const std = @import("std"); // :76:34: error: use of undefined value here causes illegal behavior // :76:34: note: when computing vector element at index '0' // :76:34: error: use of undefined value here causes illegal behavior +// :76:34: note: when computing vector element at index '0' // :76:34: error: use of undefined value here causes illegal behavior +// :76:34: note: when computing vector element at index '0' // :76:34: error: use of undefined value here causes illegal behavior +// :76:34: note: when computing vector element at index '0' // :76:34: error: use of undefined value here causes illegal behavior +// :76:34: note: when computing vector element at index '0' // :76:34: error: use of undefined value here causes illegal behavior +// :76:34: note: when computing vector element at index '0' // :76:34: error: use of undefined value here causes illegal behavior +// :76:34: note: when computing vector element at index '0' // :76:34: error: use of undefined value here causes illegal behavior -// :76:34: note: when computing vector element at index '1' +// :76:34: note: when computing vector element at index '0' // :76:34: error: use of undefined value here causes illegal behavior -// :76:34: note: when computing vector element at index '1' +// :76:34: note: when computing vector element at index '0' // :76:34: error: use of undefined value here causes illegal behavior -// :76:34: note: when computing vector element at index '1' +// :76:34: note: when computing vector element at index '0' // :76:34: error: use of undefined value here causes illegal behavior -// :76:34: note: when computing vector element at index '1' +// :76:34: note: when computing vector element at index '0' // :76:34: error: use of undefined value here causes illegal behavior // :76:34: note: when computing vector element at index '0' // :76:34: error: use of undefined value here causes illegal behavior @@ -1255,11 +1243,17 @@ const std = @import("std"); // :76:34: error: use of undefined value here causes illegal behavior // :76:34: note: when computing vector element at index '0' // :76:34: error: use of undefined value here causes illegal behavior +// :76:34: note: when computing vector element at index '0' // :76:34: error: use of undefined value here causes illegal behavior +// :76:34: note: when computing vector element at index '0' // :76:34: error: use of undefined value here causes illegal behavior +// :76:34: note: when computing vector element at index '0' // :76:34: error: use of undefined value here causes illegal behavior +// :76:34: note: when computing vector element at index '0' // :76:34: error: use of undefined value here causes illegal behavior +// :76:34: note: when computing vector element at index '1' // :76:34: error: use of undefined value here causes illegal behavior +// :76:34: note: when computing vector element at index '1' // :76:34: error: use of undefined value here causes illegal behavior // :76:34: note: when computing vector element at index '1' // :76:34: error: use of undefined value here causes illegal behavior @@ -1269,19 +1263,25 @@ const std = @import("std"); // :76:34: error: use of undefined value here causes illegal behavior // :76:34: note: when computing vector element at index '1' // :76:34: error: use of undefined value here causes illegal behavior -// :76:34: note: when computing vector element at index '0' +// :76:34: note: when computing vector element at index '1' // :76:34: error: use of undefined value here causes illegal behavior -// :76:34: note: when computing vector element at index '0' +// :76:34: note: when computing vector element at index '1' // :76:34: error: use of undefined value here causes illegal behavior -// :76:34: note: when computing vector element at index '0' +// :76:34: note: when computing vector element at index '1' // :76:34: error: use of undefined value here causes illegal behavior -// :76:34: note: when computing vector element at index '0' +// :76:34: note: when computing vector element at index '1' // :76:34: error: use of undefined value here causes illegal behavior +// :76:34: note: when computing vector element at index '1' // :76:34: error: use of undefined value here causes illegal behavior +// :76:34: note: when computing vector element at index '1' // :76:34: error: use of undefined value here causes illegal behavior +// :76:34: note: when computing vector element at index '1' // :76:34: error: use of undefined value here causes illegal behavior +// :76:34: note: when computing vector element at index '1' // :76:34: error: use of undefined value here causes illegal behavior +// :76:34: note: when computing vector element at index '1' // :76:34: error: use of undefined value here causes illegal behavior +// :76:34: note: when computing vector element at index '1' // :76:34: error: use of undefined value here causes illegal behavior // :76:34: note: when computing vector element at index '1' // :76:34: error: use of undefined value here causes illegal behavior @@ -1291,13 +1291,13 @@ const std = @import("std"); // :76:34: error: use of undefined value here causes illegal behavior // :76:34: note: when computing vector element at index '1' // :76:34: error: use of undefined value here causes illegal behavior -// :76:34: note: when computing vector element at index '0' +// :76:34: note: when computing vector element at index '1' // :76:34: error: use of undefined value here causes illegal behavior -// :76:34: note: when computing vector element at index '0' +// :76:34: note: when computing vector element at index '1' // :76:34: error: use of undefined value here causes illegal behavior -// :76:34: note: when computing vector element at index '0' +// :76:34: note: when computing vector element at index '1' // :76:34: error: use of undefined value here causes illegal behavior -// :76:34: note: when computing vector element at index '0' +// :76:34: note: when computing vector element at index '1' // :79:17: error: use of undefined value here causes illegal behavior // :79:17: error: use of undefined value here causes illegal behavior // :79:17: error: use of undefined value here causes illegal behavior @@ -1305,21 +1305,13 @@ const std = @import("std"); // :79:17: error: use of undefined value here causes illegal behavior // :79:17: error: use of undefined value here causes illegal behavior // :79:17: error: use of undefined value here causes illegal behavior -// :79:17: note: when computing vector element at index '1' // :79:17: error: use of undefined value here causes illegal behavior -// :79:17: note: when computing vector element at index '1' // :79:17: error: use of undefined value here causes illegal behavior -// :79:17: note: when computing vector element at index '1' // :79:17: error: use of undefined value here causes illegal behavior -// :79:17: note: when computing vector element at index '1' // :79:17: error: use of undefined value here causes illegal behavior -// :79:17: note: when computing vector element at index '0' // :79:17: error: use of undefined value here causes illegal behavior -// :79:17: note: when computing vector element at index '0' // :79:17: error: use of undefined value here causes illegal behavior -// :79:17: note: when computing vector element at index '0' // :79:17: error: use of undefined value here causes illegal behavior -// :79:17: note: when computing vector element at index '0' // :79:17: error: use of undefined value here causes illegal behavior // :79:17: error: use of undefined value here causes illegal behavior // :79:17: error: use of undefined value here causes illegal behavior @@ -1327,21 +1319,13 @@ const std = @import("std"); // :79:17: error: use of undefined value here causes illegal behavior // :79:17: error: use of undefined value here causes illegal behavior // :79:17: error: use of undefined value here causes illegal behavior -// :79:17: note: when computing vector element at index '1' // :79:17: error: use of undefined value here causes illegal behavior -// :79:17: note: when computing vector element at index '1' // :79:17: error: use of undefined value here causes illegal behavior -// :79:17: note: when computing vector element at index '1' // :79:17: error: use of undefined value here causes illegal behavior -// :79:17: note: when computing vector element at index '1' // :79:17: error: use of undefined value here causes illegal behavior -// :79:17: note: when computing vector element at index '0' // :79:17: error: use of undefined value here causes illegal behavior -// :79:17: note: when computing vector element at index '0' // :79:17: error: use of undefined value here causes illegal behavior -// :79:17: note: when computing vector element at index '0' // :79:17: error: use of undefined value here causes illegal behavior -// :79:17: note: when computing vector element at index '0' // :79:17: error: use of undefined value here causes illegal behavior // :79:17: error: use of undefined value here causes illegal behavior // :79:17: error: use of undefined value here causes illegal behavior @@ -1349,13 +1333,11 @@ const std = @import("std"); // :79:17: error: use of undefined value here causes illegal behavior // :79:17: error: use of undefined value here causes illegal behavior // :79:17: error: use of undefined value here causes illegal behavior -// :79:17: note: when computing vector element at index '1' // :79:17: error: use of undefined value here causes illegal behavior -// :79:17: note: when computing vector element at index '1' // :79:17: error: use of undefined value here causes illegal behavior -// :79:17: note: when computing vector element at index '1' +// :79:17: note: when computing vector element at index '0' // :79:17: error: use of undefined value here causes illegal behavior -// :79:17: note: when computing vector element at index '1' +// :79:17: note: when computing vector element at index '0' // :79:17: error: use of undefined value here causes illegal behavior // :79:17: note: when computing vector element at index '0' // :79:17: error: use of undefined value here causes illegal behavior @@ -1365,19 +1347,25 @@ const std = @import("std"); // :79:17: error: use of undefined value here causes illegal behavior // :79:17: note: when computing vector element at index '0' // :79:17: error: use of undefined value here causes illegal behavior +// :79:17: note: when computing vector element at index '0' // :79:17: error: use of undefined value here causes illegal behavior +// :79:17: note: when computing vector element at index '0' // :79:17: error: use of undefined value here causes illegal behavior +// :79:17: note: when computing vector element at index '0' // :79:17: error: use of undefined value here causes illegal behavior +// :79:17: note: when computing vector element at index '0' // :79:17: error: use of undefined value here causes illegal behavior +// :79:17: note: when computing vector element at index '0' // :79:17: error: use of undefined value here causes illegal behavior +// :79:17: note: when computing vector element at index '0' // :79:17: error: use of undefined value here causes illegal behavior -// :79:17: note: when computing vector element at index '1' +// :79:17: note: when computing vector element at index '0' // :79:17: error: use of undefined value here causes illegal behavior -// :79:17: note: when computing vector element at index '1' +// :79:17: note: when computing vector element at index '0' // :79:17: error: use of undefined value here causes illegal behavior -// :79:17: note: when computing vector element at index '1' +// :79:17: note: when computing vector element at index '0' // :79:17: error: use of undefined value here causes illegal behavior -// :79:17: note: when computing vector element at index '1' +// :79:17: note: when computing vector element at index '0' // :79:17: error: use of undefined value here causes illegal behavior // :79:17: note: when computing vector element at index '0' // :79:17: error: use of undefined value here causes illegal behavior @@ -1387,11 +1375,17 @@ const std = @import("std"); // :79:17: error: use of undefined value here causes illegal behavior // :79:17: note: when computing vector element at index '0' // :79:17: error: use of undefined value here causes illegal behavior +// :79:17: note: when computing vector element at index '0' // :79:17: error: use of undefined value here causes illegal behavior +// :79:17: note: when computing vector element at index '0' // :79:17: error: use of undefined value here causes illegal behavior +// :79:17: note: when computing vector element at index '0' // :79:17: error: use of undefined value here causes illegal behavior +// :79:17: note: when computing vector element at index '0' // :79:17: error: use of undefined value here causes illegal behavior +// :79:17: note: when computing vector element at index '1' // :79:17: error: use of undefined value here causes illegal behavior +// :79:17: note: when computing vector element at index '1' // :79:17: error: use of undefined value here causes illegal behavior // :79:17: note: when computing vector element at index '1' // :79:17: error: use of undefined value here causes illegal behavior @@ -1401,19 +1395,25 @@ const std = @import("std"); // :79:17: error: use of undefined value here causes illegal behavior // :79:17: note: when computing vector element at index '1' // :79:17: error: use of undefined value here causes illegal behavior -// :79:17: note: when computing vector element at index '0' +// :79:17: note: when computing vector element at index '1' // :79:17: error: use of undefined value here causes illegal behavior -// :79:17: note: when computing vector element at index '0' +// :79:17: note: when computing vector element at index '1' // :79:17: error: use of undefined value here causes illegal behavior -// :79:17: note: when computing vector element at index '0' +// :79:17: note: when computing vector element at index '1' // :79:17: error: use of undefined value here causes illegal behavior -// :79:17: note: when computing vector element at index '0' +// :79:17: note: when computing vector element at index '1' // :79:17: error: use of undefined value here causes illegal behavior +// :79:17: note: when computing vector element at index '1' // :79:17: error: use of undefined value here causes illegal behavior +// :79:17: note: when computing vector element at index '1' // :79:17: error: use of undefined value here causes illegal behavior +// :79:17: note: when computing vector element at index '1' // :79:17: error: use of undefined value here causes illegal behavior +// :79:17: note: when computing vector element at index '1' // :79:17: error: use of undefined value here causes illegal behavior +// :79:17: note: when computing vector element at index '1' // :79:17: error: use of undefined value here causes illegal behavior +// :79:17: note: when computing vector element at index '1' // :79:17: error: use of undefined value here causes illegal behavior // :79:17: note: when computing vector element at index '1' // :79:17: error: use of undefined value here causes illegal behavior @@ -1423,13 +1423,13 @@ const std = @import("std"); // :79:17: error: use of undefined value here causes illegal behavior // :79:17: note: when computing vector element at index '1' // :79:17: error: use of undefined value here causes illegal behavior -// :79:17: note: when computing vector element at index '0' +// :79:17: note: when computing vector element at index '1' // :79:17: error: use of undefined value here causes illegal behavior -// :79:17: note: when computing vector element at index '0' +// :79:17: note: when computing vector element at index '1' // :79:17: error: use of undefined value here causes illegal behavior -// :79:17: note: when computing vector element at index '0' +// :79:17: note: when computing vector element at index '1' // :79:17: error: use of undefined value here causes illegal behavior -// :79:17: note: when computing vector element at index '0' +// :79:17: note: when computing vector element at index '1' // :82:27: error: use of undefined value here causes illegal behavior // :82:27: error: use of undefined value here causes illegal behavior // :82:27: error: use of undefined value here causes illegal behavior @@ -1437,21 +1437,13 @@ const std = @import("std"); // :82:27: error: use of undefined value here causes illegal behavior // :82:27: error: use of undefined value here causes illegal behavior // :82:27: error: use of undefined value here causes illegal behavior -// :82:27: note: when computing vector element at index '1' // :82:27: error: use of undefined value here causes illegal behavior -// :82:27: note: when computing vector element at index '1' // :82:27: error: use of undefined value here causes illegal behavior -// :82:27: note: when computing vector element at index '1' // :82:27: error: use of undefined value here causes illegal behavior -// :82:27: note: when computing vector element at index '1' // :82:27: error: use of undefined value here causes illegal behavior -// :82:27: note: when computing vector element at index '0' // :82:27: error: use of undefined value here causes illegal behavior -// :82:27: note: when computing vector element at index '0' // :82:27: error: use of undefined value here causes illegal behavior -// :82:27: note: when computing vector element at index '0' // :82:27: error: use of undefined value here causes illegal behavior -// :82:27: note: when computing vector element at index '0' // :82:27: error: use of undefined value here causes illegal behavior // :82:27: error: use of undefined value here causes illegal behavior // :82:27: error: use of undefined value here causes illegal behavior @@ -1459,21 +1451,13 @@ const std = @import("std"); // :82:27: error: use of undefined value here causes illegal behavior // :82:27: error: use of undefined value here causes illegal behavior // :82:27: error: use of undefined value here causes illegal behavior -// :82:27: note: when computing vector element at index '1' // :82:27: error: use of undefined value here causes illegal behavior -// :82:27: note: when computing vector element at index '1' // :82:27: error: use of undefined value here causes illegal behavior -// :82:27: note: when computing vector element at index '1' // :82:27: error: use of undefined value here causes illegal behavior -// :82:27: note: when computing vector element at index '1' // :82:27: error: use of undefined value here causes illegal behavior -// :82:27: note: when computing vector element at index '0' // :82:27: error: use of undefined value here causes illegal behavior -// :82:27: note: when computing vector element at index '0' // :82:27: error: use of undefined value here causes illegal behavior -// :82:27: note: when computing vector element at index '0' // :82:27: error: use of undefined value here causes illegal behavior -// :82:27: note: when computing vector element at index '0' // :82:27: error: use of undefined value here causes illegal behavior // :82:27: error: use of undefined value here causes illegal behavior // :82:27: error: use of undefined value here causes illegal behavior @@ -1481,13 +1465,11 @@ const std = @import("std"); // :82:27: error: use of undefined value here causes illegal behavior // :82:27: error: use of undefined value here causes illegal behavior // :82:27: error: use of undefined value here causes illegal behavior -// :82:27: note: when computing vector element at index '1' // :82:27: error: use of undefined value here causes illegal behavior -// :82:27: note: when computing vector element at index '1' // :82:27: error: use of undefined value here causes illegal behavior -// :82:27: note: when computing vector element at index '1' +// :82:27: note: when computing vector element at index '0' // :82:27: error: use of undefined value here causes illegal behavior -// :82:27: note: when computing vector element at index '1' +// :82:27: note: when computing vector element at index '0' // :82:27: error: use of undefined value here causes illegal behavior // :82:27: note: when computing vector element at index '0' // :82:27: error: use of undefined value here causes illegal behavior @@ -1497,19 +1479,25 @@ const std = @import("std"); // :82:27: error: use of undefined value here causes illegal behavior // :82:27: note: when computing vector element at index '0' // :82:27: error: use of undefined value here causes illegal behavior +// :82:27: note: when computing vector element at index '0' // :82:27: error: use of undefined value here causes illegal behavior +// :82:27: note: when computing vector element at index '0' // :82:27: error: use of undefined value here causes illegal behavior +// :82:27: note: when computing vector element at index '0' // :82:27: error: use of undefined value here causes illegal behavior +// :82:27: note: when computing vector element at index '0' // :82:27: error: use of undefined value here causes illegal behavior +// :82:27: note: when computing vector element at index '0' // :82:27: error: use of undefined value here causes illegal behavior +// :82:27: note: when computing vector element at index '0' // :82:27: error: use of undefined value here causes illegal behavior -// :82:27: note: when computing vector element at index '1' +// :82:27: note: when computing vector element at index '0' // :82:27: error: use of undefined value here causes illegal behavior -// :82:27: note: when computing vector element at index '1' +// :82:27: note: when computing vector element at index '0' // :82:27: error: use of undefined value here causes illegal behavior -// :82:27: note: when computing vector element at index '1' +// :82:27: note: when computing vector element at index '0' // :82:27: error: use of undefined value here causes illegal behavior -// :82:27: note: when computing vector element at index '1' +// :82:27: note: when computing vector element at index '0' // :82:27: error: use of undefined value here causes illegal behavior // :82:27: note: when computing vector element at index '0' // :82:27: error: use of undefined value here causes illegal behavior @@ -1519,11 +1507,17 @@ const std = @import("std"); // :82:27: error: use of undefined value here causes illegal behavior // :82:27: note: when computing vector element at index '0' // :82:27: error: use of undefined value here causes illegal behavior +// :82:27: note: when computing vector element at index '0' // :82:27: error: use of undefined value here causes illegal behavior +// :82:27: note: when computing vector element at index '0' // :82:27: error: use of undefined value here causes illegal behavior +// :82:27: note: when computing vector element at index '0' // :82:27: error: use of undefined value here causes illegal behavior +// :82:27: note: when computing vector element at index '0' // :82:27: error: use of undefined value here causes illegal behavior +// :82:27: note: when computing vector element at index '1' // :82:27: error: use of undefined value here causes illegal behavior +// :82:27: note: when computing vector element at index '1' // :82:27: error: use of undefined value here causes illegal behavior // :82:27: note: when computing vector element at index '1' // :82:27: error: use of undefined value here causes illegal behavior @@ -1533,19 +1527,25 @@ const std = @import("std"); // :82:27: error: use of undefined value here causes illegal behavior // :82:27: note: when computing vector element at index '1' // :82:27: error: use of undefined value here causes illegal behavior -// :82:27: note: when computing vector element at index '0' +// :82:27: note: when computing vector element at index '1' // :82:27: error: use of undefined value here causes illegal behavior -// :82:27: note: when computing vector element at index '0' +// :82:27: note: when computing vector element at index '1' // :82:27: error: use of undefined value here causes illegal behavior -// :82:27: note: when computing vector element at index '0' +// :82:27: note: when computing vector element at index '1' // :82:27: error: use of undefined value here causes illegal behavior -// :82:27: note: when computing vector element at index '0' +// :82:27: note: when computing vector element at index '1' // :82:27: error: use of undefined value here causes illegal behavior +// :82:27: note: when computing vector element at index '1' // :82:27: error: use of undefined value here causes illegal behavior +// :82:27: note: when computing vector element at index '1' // :82:27: error: use of undefined value here causes illegal behavior +// :82:27: note: when computing vector element at index '1' // :82:27: error: use of undefined value here causes illegal behavior +// :82:27: note: when computing vector element at index '1' // :82:27: error: use of undefined value here causes illegal behavior +// :82:27: note: when computing vector element at index '1' // :82:27: error: use of undefined value here causes illegal behavior +// :82:27: note: when computing vector element at index '1' // :82:27: error: use of undefined value here causes illegal behavior // :82:27: note: when computing vector element at index '1' // :82:27: error: use of undefined value here causes illegal behavior @@ -1555,44 +1555,37 @@ const std = @import("std"); // :82:27: error: use of undefined value here causes illegal behavior // :82:27: note: when computing vector element at index '1' // :82:27: error: use of undefined value here causes illegal behavior -// :82:27: note: when computing vector element at index '0' +// :82:27: note: when computing vector element at index '1' // :82:27: error: use of undefined value here causes illegal behavior -// :82:27: note: when computing vector element at index '0' +// :82:27: note: when computing vector element at index '1' // :82:27: error: use of undefined value here causes illegal behavior -// :82:27: note: when computing vector element at index '0' +// :82:27: note: when computing vector element at index '1' // :82:27: error: use of undefined value here causes illegal behavior -// :82:27: note: when computing vector element at index '0' +// :82:27: note: when computing vector element at index '1' // :87:17: error: use of undefined value here causes illegal behavior // :87:17: error: use of undefined value here causes illegal behavior -// :87:17: note: when computing vector element at index '0' // :87:17: error: use of undefined value here causes illegal behavior -// :87:17: note: when computing vector element at index '0' // :87:17: error: use of undefined value here causes illegal behavior -// :87:17: note: when computing vector element at index '0' // :87:17: error: use of undefined value here causes illegal behavior -// :87:17: note: when computing vector element at index '1' // :87:17: error: use of undefined value here causes illegal behavior -// :87:17: note: when computing vector element at index '0' // :87:17: error: use of undefined value here causes illegal behavior // :87:17: note: when computing vector element at index '0' // :87:17: error: use of undefined value here causes illegal behavior // :87:17: note: when computing vector element at index '0' // :87:17: error: use of undefined value here causes illegal behavior -// :87:17: error: use of undefined value here causes illegal behavior // :87:17: note: when computing vector element at index '0' // :87:17: error: use of undefined value here causes illegal behavior // :87:17: note: when computing vector element at index '0' // :87:17: error: use of undefined value here causes illegal behavior // :87:17: note: when computing vector element at index '0' // :87:17: error: use of undefined value here causes illegal behavior -// :87:17: note: when computing vector element at index '1' -// :87:17: error: use of undefined value here causes illegal behavior // :87:17: note: when computing vector element at index '0' // :87:17: error: use of undefined value here causes illegal behavior // :87:17: note: when computing vector element at index '0' // :87:17: error: use of undefined value here causes illegal behavior // :87:17: note: when computing vector element at index '0' // :87:17: error: use of undefined value here causes illegal behavior +// :87:17: note: when computing vector element at index '0' // :87:17: error: use of undefined value here causes illegal behavior // :87:17: note: when computing vector element at index '0' // :87:17: error: use of undefined value here causes illegal behavior @@ -1600,7 +1593,7 @@ const std = @import("std"); // :87:17: error: use of undefined value here causes illegal behavior // :87:17: note: when computing vector element at index '0' // :87:17: error: use of undefined value here causes illegal behavior -// :87:17: note: when computing vector element at index '1' +// :87:17: note: when computing vector element at index '0' // :87:17: error: use of undefined value here causes illegal behavior // :87:17: note: when computing vector element at index '0' // :87:17: error: use of undefined value here causes illegal behavior @@ -1608,6 +1601,7 @@ const std = @import("std"); // :87:17: error: use of undefined value here causes illegal behavior // :87:17: note: when computing vector element at index '0' // :87:17: error: use of undefined value here causes illegal behavior +// :87:17: note: when computing vector element at index '0' // :87:17: error: use of undefined value here causes illegal behavior // :87:17: note: when computing vector element at index '0' // :87:17: error: use of undefined value here causes illegal behavior @@ -1615,7 +1609,7 @@ const std = @import("std"); // :87:17: error: use of undefined value here causes illegal behavior // :87:17: note: when computing vector element at index '0' // :87:17: error: use of undefined value here causes illegal behavior -// :87:17: note: when computing vector element at index '1' +// :87:17: note: when computing vector element at index '0' // :87:17: error: use of undefined value here causes illegal behavior // :87:17: note: when computing vector element at index '0' // :87:17: error: use of undefined value here causes illegal behavior @@ -1623,6 +1617,7 @@ const std = @import("std"); // :87:17: error: use of undefined value here causes illegal behavior // :87:17: note: when computing vector element at index '0' // :87:17: error: use of undefined value here causes illegal behavior +// :87:17: note: when computing vector element at index '0' // :87:17: error: use of undefined value here causes illegal behavior // :87:17: note: when computing vector element at index '0' // :87:17: error: use of undefined value here causes illegal behavior @@ -1630,7 +1625,7 @@ const std = @import("std"); // :87:17: error: use of undefined value here causes illegal behavior // :87:17: note: when computing vector element at index '0' // :87:17: error: use of undefined value here causes illegal behavior -// :87:17: note: when computing vector element at index '1' +// :87:17: note: when computing vector element at index '0' // :87:17: error: use of undefined value here causes illegal behavior // :87:17: note: when computing vector element at index '0' // :87:17: error: use of undefined value here causes illegal behavior @@ -1638,6 +1633,7 @@ const std = @import("std"); // :87:17: error: use of undefined value here causes illegal behavior // :87:17: note: when computing vector element at index '0' // :87:17: error: use of undefined value here causes illegal behavior +// :87:17: note: when computing vector element at index '0' // :87:17: error: use of undefined value here causes illegal behavior // :87:17: note: when computing vector element at index '0' // :87:17: error: use of undefined value here causes illegal behavior @@ -1647,108 +1643,105 @@ const std = @import("std"); // :87:17: error: use of undefined value here causes illegal behavior // :87:17: note: when computing vector element at index '1' // :87:17: error: use of undefined value here causes illegal behavior -// :87:17: note: when computing vector element at index '0' +// :87:17: note: when computing vector element at index '1' // :87:17: error: use of undefined value here causes illegal behavior -// :87:17: note: when computing vector element at index '0' +// :87:17: note: when computing vector element at index '1' // :87:17: error: use of undefined value here causes illegal behavior -// :87:17: note: when computing vector element at index '0' +// :87:17: note: when computing vector element at index '1' +// :87:17: error: use of undefined value here causes illegal behavior +// :87:17: note: when computing vector element at index '1' +// :87:17: error: use of undefined value here causes illegal behavior +// :87:17: note: when computing vector element at index '1' // :87:22: error: use of undefined value here causes illegal behavior // :87:22: error: use of undefined value here causes illegal behavior -// :87:22: note: when computing vector element at index '0' // :87:22: error: use of undefined value here causes illegal behavior -// :87:22: note: when computing vector element at index '0' // :87:22: error: use of undefined value here causes illegal behavior -// :87:22: note: when computing vector element at index '1' // :87:22: error: use of undefined value here causes illegal behavior -// :87:22: note: when computing vector element at index '0' // :87:22: error: use of undefined value here causes illegal behavior -// :87:22: note: when computing vector element at index '0' // :87:22: error: use of undefined value here causes illegal behavior +// :87:22: note: when computing vector element at index '0' // :87:22: error: use of undefined value here causes illegal behavior // :87:22: note: when computing vector element at index '0' // :87:22: error: use of undefined value here causes illegal behavior // :87:22: note: when computing vector element at index '0' // :87:22: error: use of undefined value here causes illegal behavior -// :87:22: note: when computing vector element at index '1' +// :87:22: note: when computing vector element at index '0' // :87:22: error: use of undefined value here causes illegal behavior // :87:22: note: when computing vector element at index '0' // :87:22: error: use of undefined value here causes illegal behavior // :87:22: note: when computing vector element at index '0' // :87:22: error: use of undefined value here causes illegal behavior +// :87:22: note: when computing vector element at index '0' // :87:22: error: use of undefined value here causes illegal behavior // :87:22: note: when computing vector element at index '0' // :87:22: error: use of undefined value here causes illegal behavior // :87:22: note: when computing vector element at index '0' // :87:22: error: use of undefined value here causes illegal behavior -// :87:22: note: when computing vector element at index '1' +// :87:22: note: when computing vector element at index '0' // :87:22: error: use of undefined value here causes illegal behavior // :87:22: note: when computing vector element at index '0' // :87:22: error: use of undefined value here causes illegal behavior // :87:22: note: when computing vector element at index '0' // :87:22: error: use of undefined value here causes illegal behavior +// :87:22: note: when computing vector element at index '0' // :87:22: error: use of undefined value here causes illegal behavior // :87:22: note: when computing vector element at index '0' // :87:22: error: use of undefined value here causes illegal behavior // :87:22: note: when computing vector element at index '0' // :87:22: error: use of undefined value here causes illegal behavior -// :87:22: note: when computing vector element at index '1' +// :87:22: note: when computing vector element at index '0' // :87:22: error: use of undefined value here causes illegal behavior // :87:22: note: when computing vector element at index '0' // :87:22: error: use of undefined value here causes illegal behavior // :87:22: note: when computing vector element at index '0' // :87:22: error: use of undefined value here causes illegal behavior +// :87:22: note: when computing vector element at index '0' // :87:22: error: use of undefined value here causes illegal behavior // :87:22: note: when computing vector element at index '0' // :87:22: error: use of undefined value here causes illegal behavior // :87:22: note: when computing vector element at index '0' // :87:22: error: use of undefined value here causes illegal behavior -// :87:22: note: when computing vector element at index '1' +// :87:22: note: when computing vector element at index '0' // :87:22: error: use of undefined value here causes illegal behavior // :87:22: note: when computing vector element at index '0' // :87:22: error: use of undefined value here causes illegal behavior // :87:22: note: when computing vector element at index '0' // :87:22: error: use of undefined value here causes illegal behavior +// :87:22: note: when computing vector element at index '1' // :87:22: error: use of undefined value here causes illegal behavior -// :87:22: note: when computing vector element at index '0' +// :87:22: note: when computing vector element at index '1' // :87:22: error: use of undefined value here causes illegal behavior -// :87:22: note: when computing vector element at index '0' +// :87:22: note: when computing vector element at index '1' // :87:22: error: use of undefined value here causes illegal behavior // :87:22: note: when computing vector element at index '1' // :87:22: error: use of undefined value here causes illegal behavior -// :87:22: note: when computing vector element at index '0' +// :87:22: note: when computing vector element at index '1' // :87:22: error: use of undefined value here causes illegal behavior -// :87:22: note: when computing vector element at index '0' +// :87:22: note: when computing vector element at index '1' // :90:27: error: use of undefined value here causes illegal behavior // :90:27: error: use of undefined value here causes illegal behavior -// :90:27: note: when computing vector element at index '0' // :90:27: error: use of undefined value here causes illegal behavior -// :90:27: note: when computing vector element at index '0' // :90:27: error: use of undefined value here causes illegal behavior -// :90:27: note: when computing vector element at index '0' // :90:27: error: use of undefined value here causes illegal behavior -// :90:27: note: when computing vector element at index '1' // :90:27: error: use of undefined value here causes illegal behavior -// :90:27: note: when computing vector element at index '0' // :90:27: error: use of undefined value here causes illegal behavior // :90:27: note: when computing vector element at index '0' // :90:27: error: use of undefined value here causes illegal behavior // :90:27: note: when computing vector element at index '0' // :90:27: error: use of undefined value here causes illegal behavior -// :90:27: error: use of undefined value here causes illegal behavior // :90:27: note: when computing vector element at index '0' // :90:27: error: use of undefined value here causes illegal behavior // :90:27: note: when computing vector element at index '0' // :90:27: error: use of undefined value here causes illegal behavior // :90:27: note: when computing vector element at index '0' // :90:27: error: use of undefined value here causes illegal behavior -// :90:27: note: when computing vector element at index '1' -// :90:27: error: use of undefined value here causes illegal behavior // :90:27: note: when computing vector element at index '0' // :90:27: error: use of undefined value here causes illegal behavior // :90:27: note: when computing vector element at index '0' // :90:27: error: use of undefined value here causes illegal behavior // :90:27: note: when computing vector element at index '0' // :90:27: error: use of undefined value here causes illegal behavior +// :90:27: note: when computing vector element at index '0' // :90:27: error: use of undefined value here causes illegal behavior // :90:27: note: when computing vector element at index '0' // :90:27: error: use of undefined value here causes illegal behavior @@ -1756,7 +1749,7 @@ const std = @import("std"); // :90:27: error: use of undefined value here causes illegal behavior // :90:27: note: when computing vector element at index '0' // :90:27: error: use of undefined value here causes illegal behavior -// :90:27: note: when computing vector element at index '1' +// :90:27: note: when computing vector element at index '0' // :90:27: error: use of undefined value here causes illegal behavior // :90:27: note: when computing vector element at index '0' // :90:27: error: use of undefined value here causes illegal behavior @@ -1764,6 +1757,7 @@ const std = @import("std"); // :90:27: error: use of undefined value here causes illegal behavior // :90:27: note: when computing vector element at index '0' // :90:27: error: use of undefined value here causes illegal behavior +// :90:27: note: when computing vector element at index '0' // :90:27: error: use of undefined value here causes illegal behavior // :90:27: note: when computing vector element at index '0' // :90:27: error: use of undefined value here causes illegal behavior @@ -1771,7 +1765,7 @@ const std = @import("std"); // :90:27: error: use of undefined value here causes illegal behavior // :90:27: note: when computing vector element at index '0' // :90:27: error: use of undefined value here causes illegal behavior -// :90:27: note: when computing vector element at index '1' +// :90:27: note: when computing vector element at index '0' // :90:27: error: use of undefined value here causes illegal behavior // :90:27: note: when computing vector element at index '0' // :90:27: error: use of undefined value here causes illegal behavior @@ -1779,6 +1773,7 @@ const std = @import("std"); // :90:27: error: use of undefined value here causes illegal behavior // :90:27: note: when computing vector element at index '0' // :90:27: error: use of undefined value here causes illegal behavior +// :90:27: note: when computing vector element at index '0' // :90:27: error: use of undefined value here causes illegal behavior // :90:27: note: when computing vector element at index '0' // :90:27: error: use of undefined value here causes illegal behavior @@ -1786,7 +1781,7 @@ const std = @import("std"); // :90:27: error: use of undefined value here causes illegal behavior // :90:27: note: when computing vector element at index '0' // :90:27: error: use of undefined value here causes illegal behavior -// :90:27: note: when computing vector element at index '1' +// :90:27: note: when computing vector element at index '0' // :90:27: error: use of undefined value here causes illegal behavior // :90:27: note: when computing vector element at index '0' // :90:27: error: use of undefined value here causes illegal behavior @@ -1794,6 +1789,7 @@ const std = @import("std"); // :90:27: error: use of undefined value here causes illegal behavior // :90:27: note: when computing vector element at index '0' // :90:27: error: use of undefined value here causes illegal behavior +// :90:27: note: when computing vector element at index '0' // :90:27: error: use of undefined value here causes illegal behavior // :90:27: note: when computing vector element at index '0' // :90:27: error: use of undefined value here causes illegal behavior @@ -1803,108 +1799,105 @@ const std = @import("std"); // :90:27: error: use of undefined value here causes illegal behavior // :90:27: note: when computing vector element at index '1' // :90:27: error: use of undefined value here causes illegal behavior -// :90:27: note: when computing vector element at index '0' +// :90:27: note: when computing vector element at index '1' // :90:27: error: use of undefined value here causes illegal behavior -// :90:27: note: when computing vector element at index '0' +// :90:27: note: when computing vector element at index '1' // :90:27: error: use of undefined value here causes illegal behavior -// :90:27: note: when computing vector element at index '0' +// :90:27: note: when computing vector element at index '1' +// :90:27: error: use of undefined value here causes illegal behavior +// :90:27: note: when computing vector element at index '1' +// :90:27: error: use of undefined value here causes illegal behavior +// :90:27: note: when computing vector element at index '1' // :90:30: error: use of undefined value here causes illegal behavior // :90:30: error: use of undefined value here causes illegal behavior -// :90:30: note: when computing vector element at index '0' // :90:30: error: use of undefined value here causes illegal behavior -// :90:30: note: when computing vector element at index '0' // :90:30: error: use of undefined value here causes illegal behavior -// :90:30: note: when computing vector element at index '1' // :90:30: error: use of undefined value here causes illegal behavior -// :90:30: note: when computing vector element at index '0' // :90:30: error: use of undefined value here causes illegal behavior -// :90:30: note: when computing vector element at index '0' // :90:30: error: use of undefined value here causes illegal behavior +// :90:30: note: when computing vector element at index '0' // :90:30: error: use of undefined value here causes illegal behavior // :90:30: note: when computing vector element at index '0' // :90:30: error: use of undefined value here causes illegal behavior // :90:30: note: when computing vector element at index '0' // :90:30: error: use of undefined value here causes illegal behavior -// :90:30: note: when computing vector element at index '1' +// :90:30: note: when computing vector element at index '0' // :90:30: error: use of undefined value here causes illegal behavior // :90:30: note: when computing vector element at index '0' // :90:30: error: use of undefined value here causes illegal behavior // :90:30: note: when computing vector element at index '0' // :90:30: error: use of undefined value here causes illegal behavior +// :90:30: note: when computing vector element at index '0' // :90:30: error: use of undefined value here causes illegal behavior // :90:30: note: when computing vector element at index '0' // :90:30: error: use of undefined value here causes illegal behavior // :90:30: note: when computing vector element at index '0' // :90:30: error: use of undefined value here causes illegal behavior -// :90:30: note: when computing vector element at index '1' +// :90:30: note: when computing vector element at index '0' // :90:30: error: use of undefined value here causes illegal behavior // :90:30: note: when computing vector element at index '0' // :90:30: error: use of undefined value here causes illegal behavior // :90:30: note: when computing vector element at index '0' // :90:30: error: use of undefined value here causes illegal behavior +// :90:30: note: when computing vector element at index '0' // :90:30: error: use of undefined value here causes illegal behavior // :90:30: note: when computing vector element at index '0' // :90:30: error: use of undefined value here causes illegal behavior // :90:30: note: when computing vector element at index '0' // :90:30: error: use of undefined value here causes illegal behavior -// :90:30: note: when computing vector element at index '1' +// :90:30: note: when computing vector element at index '0' // :90:30: error: use of undefined value here causes illegal behavior // :90:30: note: when computing vector element at index '0' // :90:30: error: use of undefined value here causes illegal behavior // :90:30: note: when computing vector element at index '0' // :90:30: error: use of undefined value here causes illegal behavior +// :90:30: note: when computing vector element at index '0' // :90:30: error: use of undefined value here causes illegal behavior // :90:30: note: when computing vector element at index '0' // :90:30: error: use of undefined value here causes illegal behavior // :90:30: note: when computing vector element at index '0' // :90:30: error: use of undefined value here causes illegal behavior -// :90:30: note: when computing vector element at index '1' +// :90:30: note: when computing vector element at index '0' // :90:30: error: use of undefined value here causes illegal behavior // :90:30: note: when computing vector element at index '0' // :90:30: error: use of undefined value here causes illegal behavior // :90:30: note: when computing vector element at index '0' // :90:30: error: use of undefined value here causes illegal behavior +// :90:30: note: when computing vector element at index '1' // :90:30: error: use of undefined value here causes illegal behavior -// :90:30: note: when computing vector element at index '0' +// :90:30: note: when computing vector element at index '1' // :90:30: error: use of undefined value here causes illegal behavior -// :90:30: note: when computing vector element at index '0' +// :90:30: note: when computing vector element at index '1' // :90:30: error: use of undefined value here causes illegal behavior // :90:30: note: when computing vector element at index '1' // :90:30: error: use of undefined value here causes illegal behavior -// :90:30: note: when computing vector element at index '0' +// :90:30: note: when computing vector element at index '1' // :90:30: error: use of undefined value here causes illegal behavior -// :90:30: note: when computing vector element at index '0' +// :90:30: note: when computing vector element at index '1' // :93:34: error: use of undefined value here causes illegal behavior // :93:34: error: use of undefined value here causes illegal behavior -// :93:34: note: when computing vector element at index '0' // :93:34: error: use of undefined value here causes illegal behavior -// :93:34: note: when computing vector element at index '0' // :93:34: error: use of undefined value here causes illegal behavior -// :93:34: note: when computing vector element at index '0' // :93:34: error: use of undefined value here causes illegal behavior -// :93:34: note: when computing vector element at index '1' // :93:34: error: use of undefined value here causes illegal behavior -// :93:34: note: when computing vector element at index '0' // :93:34: error: use of undefined value here causes illegal behavior // :93:34: note: when computing vector element at index '0' // :93:34: error: use of undefined value here causes illegal behavior // :93:34: note: when computing vector element at index '0' // :93:34: error: use of undefined value here causes illegal behavior -// :93:34: error: use of undefined value here causes illegal behavior // :93:34: note: when computing vector element at index '0' // :93:34: error: use of undefined value here causes illegal behavior // :93:34: note: when computing vector element at index '0' // :93:34: error: use of undefined value here causes illegal behavior // :93:34: note: when computing vector element at index '0' // :93:34: error: use of undefined value here causes illegal behavior -// :93:34: note: when computing vector element at index '1' -// :93:34: error: use of undefined value here causes illegal behavior // :93:34: note: when computing vector element at index '0' // :93:34: error: use of undefined value here causes illegal behavior // :93:34: note: when computing vector element at index '0' // :93:34: error: use of undefined value here causes illegal behavior // :93:34: note: when computing vector element at index '0' // :93:34: error: use of undefined value here causes illegal behavior +// :93:34: note: when computing vector element at index '0' // :93:34: error: use of undefined value here causes illegal behavior // :93:34: note: when computing vector element at index '0' // :93:34: error: use of undefined value here causes illegal behavior @@ -1912,7 +1905,7 @@ const std = @import("std"); // :93:34: error: use of undefined value here causes illegal behavior // :93:34: note: when computing vector element at index '0' // :93:34: error: use of undefined value here causes illegal behavior -// :93:34: note: when computing vector element at index '1' +// :93:34: note: when computing vector element at index '0' // :93:34: error: use of undefined value here causes illegal behavior // :93:34: note: when computing vector element at index '0' // :93:34: error: use of undefined value here causes illegal behavior @@ -1920,6 +1913,7 @@ const std = @import("std"); // :93:34: error: use of undefined value here causes illegal behavior // :93:34: note: when computing vector element at index '0' // :93:34: error: use of undefined value here causes illegal behavior +// :93:34: note: when computing vector element at index '0' // :93:34: error: use of undefined value here causes illegal behavior // :93:34: note: when computing vector element at index '0' // :93:34: error: use of undefined value here causes illegal behavior @@ -1927,7 +1921,7 @@ const std = @import("std"); // :93:34: error: use of undefined value here causes illegal behavior // :93:34: note: when computing vector element at index '0' // :93:34: error: use of undefined value here causes illegal behavior -// :93:34: note: when computing vector element at index '1' +// :93:34: note: when computing vector element at index '0' // :93:34: error: use of undefined value here causes illegal behavior // :93:34: note: when computing vector element at index '0' // :93:34: error: use of undefined value here causes illegal behavior @@ -1935,6 +1929,7 @@ const std = @import("std"); // :93:34: error: use of undefined value here causes illegal behavior // :93:34: note: when computing vector element at index '0' // :93:34: error: use of undefined value here causes illegal behavior +// :93:34: note: when computing vector element at index '0' // :93:34: error: use of undefined value here causes illegal behavior // :93:34: note: when computing vector element at index '0' // :93:34: error: use of undefined value here causes illegal behavior @@ -1942,7 +1937,7 @@ const std = @import("std"); // :93:34: error: use of undefined value here causes illegal behavior // :93:34: note: when computing vector element at index '0' // :93:34: error: use of undefined value here causes illegal behavior -// :93:34: note: when computing vector element at index '1' +// :93:34: note: when computing vector element at index '0' // :93:34: error: use of undefined value here causes illegal behavior // :93:34: note: when computing vector element at index '0' // :93:34: error: use of undefined value here causes illegal behavior @@ -1950,6 +1945,7 @@ const std = @import("std"); // :93:34: error: use of undefined value here causes illegal behavior // :93:34: note: when computing vector element at index '0' // :93:34: error: use of undefined value here causes illegal behavior +// :93:34: note: when computing vector element at index '0' // :93:34: error: use of undefined value here causes illegal behavior // :93:34: note: when computing vector element at index '0' // :93:34: error: use of undefined value here causes illegal behavior @@ -1959,108 +1955,105 @@ const std = @import("std"); // :93:34: error: use of undefined value here causes illegal behavior // :93:34: note: when computing vector element at index '1' // :93:34: error: use of undefined value here causes illegal behavior -// :93:34: note: when computing vector element at index '0' +// :93:34: note: when computing vector element at index '1' // :93:34: error: use of undefined value here causes illegal behavior -// :93:34: note: when computing vector element at index '0' +// :93:34: note: when computing vector element at index '1' // :93:34: error: use of undefined value here causes illegal behavior -// :93:34: note: when computing vector element at index '0' +// :93:34: note: when computing vector element at index '1' +// :93:34: error: use of undefined value here causes illegal behavior +// :93:34: note: when computing vector element at index '1' +// :93:34: error: use of undefined value here causes illegal behavior +// :93:34: note: when computing vector element at index '1' // :93:37: error: use of undefined value here causes illegal behavior // :93:37: error: use of undefined value here causes illegal behavior -// :93:37: note: when computing vector element at index '0' // :93:37: error: use of undefined value here causes illegal behavior -// :93:37: note: when computing vector element at index '0' // :93:37: error: use of undefined value here causes illegal behavior -// :93:37: note: when computing vector element at index '1' // :93:37: error: use of undefined value here causes illegal behavior -// :93:37: note: when computing vector element at index '0' // :93:37: error: use of undefined value here causes illegal behavior -// :93:37: note: when computing vector element at index '0' // :93:37: error: use of undefined value here causes illegal behavior +// :93:37: note: when computing vector element at index '0' // :93:37: error: use of undefined value here causes illegal behavior // :93:37: note: when computing vector element at index '0' // :93:37: error: use of undefined value here causes illegal behavior // :93:37: note: when computing vector element at index '0' // :93:37: error: use of undefined value here causes illegal behavior -// :93:37: note: when computing vector element at index '1' +// :93:37: note: when computing vector element at index '0' // :93:37: error: use of undefined value here causes illegal behavior // :93:37: note: when computing vector element at index '0' // :93:37: error: use of undefined value here causes illegal behavior // :93:37: note: when computing vector element at index '0' // :93:37: error: use of undefined value here causes illegal behavior +// :93:37: note: when computing vector element at index '0' // :93:37: error: use of undefined value here causes illegal behavior // :93:37: note: when computing vector element at index '0' // :93:37: error: use of undefined value here causes illegal behavior // :93:37: note: when computing vector element at index '0' // :93:37: error: use of undefined value here causes illegal behavior -// :93:37: note: when computing vector element at index '1' +// :93:37: note: when computing vector element at index '0' // :93:37: error: use of undefined value here causes illegal behavior // :93:37: note: when computing vector element at index '0' // :93:37: error: use of undefined value here causes illegal behavior // :93:37: note: when computing vector element at index '0' // :93:37: error: use of undefined value here causes illegal behavior +// :93:37: note: when computing vector element at index '0' // :93:37: error: use of undefined value here causes illegal behavior // :93:37: note: when computing vector element at index '0' // :93:37: error: use of undefined value here causes illegal behavior // :93:37: note: when computing vector element at index '0' // :93:37: error: use of undefined value here causes illegal behavior -// :93:37: note: when computing vector element at index '1' +// :93:37: note: when computing vector element at index '0' // :93:37: error: use of undefined value here causes illegal behavior // :93:37: note: when computing vector element at index '0' // :93:37: error: use of undefined value here causes illegal behavior // :93:37: note: when computing vector element at index '0' // :93:37: error: use of undefined value here causes illegal behavior +// :93:37: note: when computing vector element at index '0' // :93:37: error: use of undefined value here causes illegal behavior // :93:37: note: when computing vector element at index '0' // :93:37: error: use of undefined value here causes illegal behavior // :93:37: note: when computing vector element at index '0' // :93:37: error: use of undefined value here causes illegal behavior -// :93:37: note: when computing vector element at index '1' +// :93:37: note: when computing vector element at index '0' // :93:37: error: use of undefined value here causes illegal behavior // :93:37: note: when computing vector element at index '0' // :93:37: error: use of undefined value here causes illegal behavior // :93:37: note: when computing vector element at index '0' // :93:37: error: use of undefined value here causes illegal behavior +// :93:37: note: when computing vector element at index '1' // :93:37: error: use of undefined value here causes illegal behavior -// :93:37: note: when computing vector element at index '0' +// :93:37: note: when computing vector element at index '1' // :93:37: error: use of undefined value here causes illegal behavior -// :93:37: note: when computing vector element at index '0' +// :93:37: note: when computing vector element at index '1' // :93:37: error: use of undefined value here causes illegal behavior // :93:37: note: when computing vector element at index '1' // :93:37: error: use of undefined value here causes illegal behavior -// :93:37: note: when computing vector element at index '0' +// :93:37: note: when computing vector element at index '1' // :93:37: error: use of undefined value here causes illegal behavior -// :93:37: note: when computing vector element at index '0' +// :93:37: note: when computing vector element at index '1' // :96:17: error: use of undefined value here causes illegal behavior // :96:17: error: use of undefined value here causes illegal behavior -// :96:17: note: when computing vector element at index '0' // :96:17: error: use of undefined value here causes illegal behavior -// :96:17: note: when computing vector element at index '0' // :96:17: error: use of undefined value here causes illegal behavior -// :96:17: note: when computing vector element at index '0' // :96:17: error: use of undefined value here causes illegal behavior -// :96:17: note: when computing vector element at index '1' // :96:17: error: use of undefined value here causes illegal behavior -// :96:17: note: when computing vector element at index '0' // :96:17: error: use of undefined value here causes illegal behavior // :96:17: note: when computing vector element at index '0' // :96:17: error: use of undefined value here causes illegal behavior // :96:17: note: when computing vector element at index '0' // :96:17: error: use of undefined value here causes illegal behavior -// :96:17: error: use of undefined value here causes illegal behavior // :96:17: note: when computing vector element at index '0' // :96:17: error: use of undefined value here causes illegal behavior // :96:17: note: when computing vector element at index '0' // :96:17: error: use of undefined value here causes illegal behavior // :96:17: note: when computing vector element at index '0' // :96:17: error: use of undefined value here causes illegal behavior -// :96:17: note: when computing vector element at index '1' -// :96:17: error: use of undefined value here causes illegal behavior // :96:17: note: when computing vector element at index '0' // :96:17: error: use of undefined value here causes illegal behavior // :96:17: note: when computing vector element at index '0' // :96:17: error: use of undefined value here causes illegal behavior // :96:17: note: when computing vector element at index '0' // :96:17: error: use of undefined value here causes illegal behavior +// :96:17: note: when computing vector element at index '0' // :96:17: error: use of undefined value here causes illegal behavior // :96:17: note: when computing vector element at index '0' // :96:17: error: use of undefined value here causes illegal behavior @@ -2068,7 +2061,7 @@ const std = @import("std"); // :96:17: error: use of undefined value here causes illegal behavior // :96:17: note: when computing vector element at index '0' // :96:17: error: use of undefined value here causes illegal behavior -// :96:17: note: when computing vector element at index '1' +// :96:17: note: when computing vector element at index '0' // :96:17: error: use of undefined value here causes illegal behavior // :96:17: note: when computing vector element at index '0' // :96:17: error: use of undefined value here causes illegal behavior @@ -2076,6 +2069,7 @@ const std = @import("std"); // :96:17: error: use of undefined value here causes illegal behavior // :96:17: note: when computing vector element at index '0' // :96:17: error: use of undefined value here causes illegal behavior +// :96:17: note: when computing vector element at index '0' // :96:17: error: use of undefined value here causes illegal behavior // :96:17: note: when computing vector element at index '0' // :96:17: error: use of undefined value here causes illegal behavior @@ -2083,7 +2077,7 @@ const std = @import("std"); // :96:17: error: use of undefined value here causes illegal behavior // :96:17: note: when computing vector element at index '0' // :96:17: error: use of undefined value here causes illegal behavior -// :96:17: note: when computing vector element at index '1' +// :96:17: note: when computing vector element at index '0' // :96:17: error: use of undefined value here causes illegal behavior // :96:17: note: when computing vector element at index '0' // :96:17: error: use of undefined value here causes illegal behavior @@ -2091,6 +2085,7 @@ const std = @import("std"); // :96:17: error: use of undefined value here causes illegal behavior // :96:17: note: when computing vector element at index '0' // :96:17: error: use of undefined value here causes illegal behavior +// :96:17: note: when computing vector element at index '0' // :96:17: error: use of undefined value here causes illegal behavior // :96:17: note: when computing vector element at index '0' // :96:17: error: use of undefined value here causes illegal behavior @@ -2098,7 +2093,7 @@ const std = @import("std"); // :96:17: error: use of undefined value here causes illegal behavior // :96:17: note: when computing vector element at index '0' // :96:17: error: use of undefined value here causes illegal behavior -// :96:17: note: when computing vector element at index '1' +// :96:17: note: when computing vector element at index '0' // :96:17: error: use of undefined value here causes illegal behavior // :96:17: note: when computing vector element at index '0' // :96:17: error: use of undefined value here causes illegal behavior @@ -2106,6 +2101,7 @@ const std = @import("std"); // :96:17: error: use of undefined value here causes illegal behavior // :96:17: note: when computing vector element at index '0' // :96:17: error: use of undefined value here causes illegal behavior +// :96:17: note: when computing vector element at index '0' // :96:17: error: use of undefined value here causes illegal behavior // :96:17: note: when computing vector element at index '0' // :96:17: error: use of undefined value here causes illegal behavior @@ -2115,67 +2111,65 @@ const std = @import("std"); // :96:17: error: use of undefined value here causes illegal behavior // :96:17: note: when computing vector element at index '1' // :96:17: error: use of undefined value here causes illegal behavior -// :96:17: note: when computing vector element at index '0' +// :96:17: note: when computing vector element at index '1' // :96:17: error: use of undefined value here causes illegal behavior -// :96:17: note: when computing vector element at index '0' +// :96:17: note: when computing vector element at index '1' // :96:17: error: use of undefined value here causes illegal behavior -// :96:17: note: when computing vector element at index '0' -// :96:22: error: use of undefined value here causes illegal behavior -// :96:22: error: use of undefined value here causes illegal behavior -// :96:22: note: when computing vector element at index '0' +// :96:17: note: when computing vector element at index '1' +// :96:17: error: use of undefined value here causes illegal behavior +// :96:17: note: when computing vector element at index '1' +// :96:17: error: use of undefined value here causes illegal behavior +// :96:17: note: when computing vector element at index '1' // :96:22: error: use of undefined value here causes illegal behavior -// :96:22: note: when computing vector element at index '0' // :96:22: error: use of undefined value here causes illegal behavior -// :96:22: note: when computing vector element at index '1' // :96:22: error: use of undefined value here causes illegal behavior -// :96:22: note: when computing vector element at index '0' // :96:22: error: use of undefined value here causes illegal behavior -// :96:22: note: when computing vector element at index '0' // :96:22: error: use of undefined value here causes illegal behavior // :96:22: error: use of undefined value here causes illegal behavior -// :96:22: note: when computing vector element at index '0' // :96:22: error: use of undefined value here causes illegal behavior // :96:22: note: when computing vector element at index '0' // :96:22: error: use of undefined value here causes illegal behavior -// :96:22: note: when computing vector element at index '1' -// :96:22: error: use of undefined value here causes illegal behavior // :96:22: note: when computing vector element at index '0' // :96:22: error: use of undefined value here causes illegal behavior // :96:22: note: when computing vector element at index '0' // :96:22: error: use of undefined value here causes illegal behavior +// :96:22: note: when computing vector element at index '0' // :96:22: error: use of undefined value here causes illegal behavior // :96:22: note: when computing vector element at index '0' // :96:22: error: use of undefined value here causes illegal behavior // :96:22: note: when computing vector element at index '0' // :96:22: error: use of undefined value here causes illegal behavior -// :96:22: note: when computing vector element at index '1' +// :96:22: note: when computing vector element at index '0' // :96:22: error: use of undefined value here causes illegal behavior // :96:22: note: when computing vector element at index '0' // :96:22: error: use of undefined value here causes illegal behavior // :96:22: note: when computing vector element at index '0' // :96:22: error: use of undefined value here causes illegal behavior +// :96:22: note: when computing vector element at index '0' // :96:22: error: use of undefined value here causes illegal behavior // :96:22: note: when computing vector element at index '0' // :96:22: error: use of undefined value here causes illegal behavior // :96:22: note: when computing vector element at index '0' // :96:22: error: use of undefined value here causes illegal behavior -// :96:22: note: when computing vector element at index '1' +// :96:22: note: when computing vector element at index '0' // :96:22: error: use of undefined value here causes illegal behavior // :96:22: note: when computing vector element at index '0' // :96:22: error: use of undefined value here causes illegal behavior // :96:22: note: when computing vector element at index '0' // :96:22: error: use of undefined value here causes illegal behavior +// :96:22: note: when computing vector element at index '0' // :96:22: error: use of undefined value here causes illegal behavior // :96:22: note: when computing vector element at index '0' // :96:22: error: use of undefined value here causes illegal behavior // :96:22: note: when computing vector element at index '0' // :96:22: error: use of undefined value here causes illegal behavior -// :96:22: note: when computing vector element at index '1' +// :96:22: note: when computing vector element at index '0' // :96:22: error: use of undefined value here causes illegal behavior // :96:22: note: when computing vector element at index '0' // :96:22: error: use of undefined value here causes illegal behavior // :96:22: note: when computing vector element at index '0' // :96:22: error: use of undefined value here causes illegal behavior +// :96:22: note: when computing vector element at index '0' // :96:22: error: use of undefined value here causes illegal behavior // :96:22: note: when computing vector element at index '0' // :96:22: error: use of undefined value here causes illegal behavior @@ -2183,40 +2177,39 @@ const std = @import("std"); // :96:22: error: use of undefined value here causes illegal behavior // :96:22: note: when computing vector element at index '1' // :96:22: error: use of undefined value here causes illegal behavior -// :96:22: note: when computing vector element at index '0' +// :96:22: note: when computing vector element at index '1' // :96:22: error: use of undefined value here causes illegal behavior -// :96:22: note: when computing vector element at index '0' +// :96:22: note: when computing vector element at index '1' +// :96:22: error: use of undefined value here causes illegal behavior +// :96:22: note: when computing vector element at index '1' +// :96:22: error: use of undefined value here causes illegal behavior +// :96:22: note: when computing vector element at index '1' +// :96:22: error: use of undefined value here causes illegal behavior +// :96:22: note: when computing vector element at index '1' // :99:27: error: use of undefined value here causes illegal behavior // :99:27: error: use of undefined value here causes illegal behavior -// :99:27: note: when computing vector element at index '0' // :99:27: error: use of undefined value here causes illegal behavior -// :99:27: note: when computing vector element at index '0' // :99:27: error: use of undefined value here causes illegal behavior -// :99:27: note: when computing vector element at index '0' // :99:27: error: use of undefined value here causes illegal behavior -// :99:27: note: when computing vector element at index '1' // :99:27: error: use of undefined value here causes illegal behavior -// :99:27: note: when computing vector element at index '0' // :99:27: error: use of undefined value here causes illegal behavior // :99:27: note: when computing vector element at index '0' // :99:27: error: use of undefined value here causes illegal behavior // :99:27: note: when computing vector element at index '0' // :99:27: error: use of undefined value here causes illegal behavior -// :99:27: error: use of undefined value here causes illegal behavior // :99:27: note: when computing vector element at index '0' // :99:27: error: use of undefined value here causes illegal behavior // :99:27: note: when computing vector element at index '0' // :99:27: error: use of undefined value here causes illegal behavior // :99:27: note: when computing vector element at index '0' // :99:27: error: use of undefined value here causes illegal behavior -// :99:27: note: when computing vector element at index '1' -// :99:27: error: use of undefined value here causes illegal behavior // :99:27: note: when computing vector element at index '0' // :99:27: error: use of undefined value here causes illegal behavior // :99:27: note: when computing vector element at index '0' // :99:27: error: use of undefined value here causes illegal behavior // :99:27: note: when computing vector element at index '0' // :99:27: error: use of undefined value here causes illegal behavior +// :99:27: note: when computing vector element at index '0' // :99:27: error: use of undefined value here causes illegal behavior // :99:27: note: when computing vector element at index '0' // :99:27: error: use of undefined value here causes illegal behavior @@ -2224,7 +2217,7 @@ const std = @import("std"); // :99:27: error: use of undefined value here causes illegal behavior // :99:27: note: when computing vector element at index '0' // :99:27: error: use of undefined value here causes illegal behavior -// :99:27: note: when computing vector element at index '1' +// :99:27: note: when computing vector element at index '0' // :99:27: error: use of undefined value here causes illegal behavior // :99:27: note: when computing vector element at index '0' // :99:27: error: use of undefined value here causes illegal behavior @@ -2232,6 +2225,7 @@ const std = @import("std"); // :99:27: error: use of undefined value here causes illegal behavior // :99:27: note: when computing vector element at index '0' // :99:27: error: use of undefined value here causes illegal behavior +// :99:27: note: when computing vector element at index '0' // :99:27: error: use of undefined value here causes illegal behavior // :99:27: note: when computing vector element at index '0' // :99:27: error: use of undefined value here causes illegal behavior @@ -2239,7 +2233,7 @@ const std = @import("std"); // :99:27: error: use of undefined value here causes illegal behavior // :99:27: note: when computing vector element at index '0' // :99:27: error: use of undefined value here causes illegal behavior -// :99:27: note: when computing vector element at index '1' +// :99:27: note: when computing vector element at index '0' // :99:27: error: use of undefined value here causes illegal behavior // :99:27: note: when computing vector element at index '0' // :99:27: error: use of undefined value here causes illegal behavior @@ -2247,6 +2241,7 @@ const std = @import("std"); // :99:27: error: use of undefined value here causes illegal behavior // :99:27: note: when computing vector element at index '0' // :99:27: error: use of undefined value here causes illegal behavior +// :99:27: note: when computing vector element at index '0' // :99:27: error: use of undefined value here causes illegal behavior // :99:27: note: when computing vector element at index '0' // :99:27: error: use of undefined value here causes illegal behavior @@ -2254,7 +2249,7 @@ const std = @import("std"); // :99:27: error: use of undefined value here causes illegal behavior // :99:27: note: when computing vector element at index '0' // :99:27: error: use of undefined value here causes illegal behavior -// :99:27: note: when computing vector element at index '1' +// :99:27: note: when computing vector element at index '0' // :99:27: error: use of undefined value here causes illegal behavior // :99:27: note: when computing vector element at index '0' // :99:27: error: use of undefined value here causes illegal behavior @@ -2262,6 +2257,7 @@ const std = @import("std"); // :99:27: error: use of undefined value here causes illegal behavior // :99:27: note: when computing vector element at index '0' // :99:27: error: use of undefined value here causes illegal behavior +// :99:27: note: when computing vector element at index '0' // :99:27: error: use of undefined value here causes illegal behavior // :99:27: note: when computing vector element at index '0' // :99:27: error: use of undefined value here causes illegal behavior @@ -2271,77 +2267,81 @@ const std = @import("std"); // :99:27: error: use of undefined value here causes illegal behavior // :99:27: note: when computing vector element at index '1' // :99:27: error: use of undefined value here causes illegal behavior -// :99:27: note: when computing vector element at index '0' +// :99:27: note: when computing vector element at index '1' // :99:27: error: use of undefined value here causes illegal behavior -// :99:27: note: when computing vector element at index '0' +// :99:27: note: when computing vector element at index '1' // :99:27: error: use of undefined value here causes illegal behavior -// :99:27: note: when computing vector element at index '0' +// :99:27: note: when computing vector element at index '1' +// :99:27: error: use of undefined value here causes illegal behavior +// :99:27: note: when computing vector element at index '1' +// :99:27: error: use of undefined value here causes illegal behavior +// :99:27: note: when computing vector element at index '1' // :99:30: error: use of undefined value here causes illegal behavior // :99:30: error: use of undefined value here causes illegal behavior -// :99:30: note: when computing vector element at index '0' // :99:30: error: use of undefined value here causes illegal behavior -// :99:30: note: when computing vector element at index '0' // :99:30: error: use of undefined value here causes illegal behavior -// :99:30: note: when computing vector element at index '1' // :99:30: error: use of undefined value here causes illegal behavior -// :99:30: note: when computing vector element at index '0' // :99:30: error: use of undefined value here causes illegal behavior -// :99:30: note: when computing vector element at index '0' // :99:30: error: use of undefined value here causes illegal behavior +// :99:30: note: when computing vector element at index '0' // :99:30: error: use of undefined value here causes illegal behavior // :99:30: note: when computing vector element at index '0' // :99:30: error: use of undefined value here causes illegal behavior // :99:30: note: when computing vector element at index '0' // :99:30: error: use of undefined value here causes illegal behavior -// :99:30: note: when computing vector element at index '1' +// :99:30: note: when computing vector element at index '0' // :99:30: error: use of undefined value here causes illegal behavior // :99:30: note: when computing vector element at index '0' // :99:30: error: use of undefined value here causes illegal behavior // :99:30: note: when computing vector element at index '0' // :99:30: error: use of undefined value here causes illegal behavior +// :99:30: note: when computing vector element at index '0' // :99:30: error: use of undefined value here causes illegal behavior // :99:30: note: when computing vector element at index '0' // :99:30: error: use of undefined value here causes illegal behavior // :99:30: note: when computing vector element at index '0' // :99:30: error: use of undefined value here causes illegal behavior -// :99:30: note: when computing vector element at index '1' +// :99:30: note: when computing vector element at index '0' // :99:30: error: use of undefined value here causes illegal behavior // :99:30: note: when computing vector element at index '0' // :99:30: error: use of undefined value here causes illegal behavior // :99:30: note: when computing vector element at index '0' // :99:30: error: use of undefined value here causes illegal behavior +// :99:30: note: when computing vector element at index '0' // :99:30: error: use of undefined value here causes illegal behavior // :99:30: note: when computing vector element at index '0' // :99:30: error: use of undefined value here causes illegal behavior // :99:30: note: when computing vector element at index '0' // :99:30: error: use of undefined value here causes illegal behavior -// :99:30: note: when computing vector element at index '1' +// :99:30: note: when computing vector element at index '0' // :99:30: error: use of undefined value here causes illegal behavior // :99:30: note: when computing vector element at index '0' // :99:30: error: use of undefined value here causes illegal behavior // :99:30: note: when computing vector element at index '0' // :99:30: error: use of undefined value here causes illegal behavior +// :99:30: note: when computing vector element at index '0' // :99:30: error: use of undefined value here causes illegal behavior // :99:30: note: when computing vector element at index '0' // :99:30: error: use of undefined value here causes illegal behavior // :99:30: note: when computing vector element at index '0' // :99:30: error: use of undefined value here causes illegal behavior -// :99:30: note: when computing vector element at index '1' +// :99:30: note: when computing vector element at index '0' // :99:30: error: use of undefined value here causes illegal behavior // :99:30: note: when computing vector element at index '0' // :99:30: error: use of undefined value here causes illegal behavior // :99:30: note: when computing vector element at index '0' // :99:30: error: use of undefined value here causes illegal behavior +// :99:30: note: when computing vector element at index '1' // :99:30: error: use of undefined value here causes illegal behavior -// :99:30: note: when computing vector element at index '0' +// :99:30: note: when computing vector element at index '1' // :99:30: error: use of undefined value here causes illegal behavior -// :99:30: note: when computing vector element at index '0' +// :99:30: note: when computing vector element at index '1' // :99:30: error: use of undefined value here causes illegal behavior // :99:30: note: when computing vector element at index '1' // :99:30: error: use of undefined value here causes illegal behavior -// :99:30: note: when computing vector element at index '0' +// :99:30: note: when computing vector element at index '1' // :99:30: error: use of undefined value here causes illegal behavior -// :99:30: note: when computing vector element at index '0' +// :99:30: note: when computing vector element at index '1' // :104:22: error: use of undefined value here causes illegal behavior // :104:22: error: use of undefined value here causes illegal behavior // :104:22: error: use of undefined value here causes illegal behavior @@ -2349,21 +2349,13 @@ const std = @import("std"); // :104:22: error: use of undefined value here causes illegal behavior // :104:22: error: use of undefined value here causes illegal behavior // :104:22: error: use of undefined value here causes illegal behavior -// :104:22: note: when computing vector element at index '1' // :104:22: error: use of undefined value here causes illegal behavior -// :104:22: note: when computing vector element at index '1' // :104:22: error: use of undefined value here causes illegal behavior -// :104:22: note: when computing vector element at index '1' // :104:22: error: use of undefined value here causes illegal behavior -// :104:22: note: when computing vector element at index '1' // :104:22: error: use of undefined value here causes illegal behavior -// :104:22: note: when computing vector element at index '0' // :104:22: error: use of undefined value here causes illegal behavior -// :104:22: note: when computing vector element at index '0' // :104:22: error: use of undefined value here causes illegal behavior -// :104:22: note: when computing vector element at index '0' // :104:22: error: use of undefined value here causes illegal behavior -// :104:22: note: when computing vector element at index '0' // :104:22: error: use of undefined value here causes illegal behavior // :104:22: error: use of undefined value here causes illegal behavior // :104:22: error: use of undefined value here causes illegal behavior @@ -2371,21 +2363,13 @@ const std = @import("std"); // :104:22: error: use of undefined value here causes illegal behavior // :104:22: error: use of undefined value here causes illegal behavior // :104:22: error: use of undefined value here causes illegal behavior -// :104:22: note: when computing vector element at index '1' // :104:22: error: use of undefined value here causes illegal behavior -// :104:22: note: when computing vector element at index '1' // :104:22: error: use of undefined value here causes illegal behavior -// :104:22: note: when computing vector element at index '1' // :104:22: error: use of undefined value here causes illegal behavior -// :104:22: note: when computing vector element at index '1' // :104:22: error: use of undefined value here causes illegal behavior -// :104:22: note: when computing vector element at index '0' // :104:22: error: use of undefined value here causes illegal behavior -// :104:22: note: when computing vector element at index '0' // :104:22: error: use of undefined value here causes illegal behavior -// :104:22: note: when computing vector element at index '0' // :104:22: error: use of undefined value here causes illegal behavior -// :104:22: note: when computing vector element at index '0' // :104:22: error: use of undefined value here causes illegal behavior // :104:22: error: use of undefined value here causes illegal behavior // :104:22: error: use of undefined value here causes illegal behavior @@ -2393,13 +2377,11 @@ const std = @import("std"); // :104:22: error: use of undefined value here causes illegal behavior // :104:22: error: use of undefined value here causes illegal behavior // :104:22: error: use of undefined value here causes illegal behavior -// :104:22: note: when computing vector element at index '1' // :104:22: error: use of undefined value here causes illegal behavior -// :104:22: note: when computing vector element at index '1' // :104:22: error: use of undefined value here causes illegal behavior -// :104:22: note: when computing vector element at index '1' +// :104:22: note: when computing vector element at index '0' // :104:22: error: use of undefined value here causes illegal behavior -// :104:22: note: when computing vector element at index '1' +// :104:22: note: when computing vector element at index '0' // :104:22: error: use of undefined value here causes illegal behavior // :104:22: note: when computing vector element at index '0' // :104:22: error: use of undefined value here causes illegal behavior @@ -2409,19 +2391,25 @@ const std = @import("std"); // :104:22: error: use of undefined value here causes illegal behavior // :104:22: note: when computing vector element at index '0' // :104:22: error: use of undefined value here causes illegal behavior +// :104:22: note: when computing vector element at index '0' // :104:22: error: use of undefined value here causes illegal behavior +// :104:22: note: when computing vector element at index '0' // :104:22: error: use of undefined value here causes illegal behavior +// :104:22: note: when computing vector element at index '0' // :104:22: error: use of undefined value here causes illegal behavior +// :104:22: note: when computing vector element at index '0' // :104:22: error: use of undefined value here causes illegal behavior +// :104:22: note: when computing vector element at index '0' // :104:22: error: use of undefined value here causes illegal behavior +// :104:22: note: when computing vector element at index '0' // :104:22: error: use of undefined value here causes illegal behavior -// :104:22: note: when computing vector element at index '1' +// :104:22: note: when computing vector element at index '0' // :104:22: error: use of undefined value here causes illegal behavior -// :104:22: note: when computing vector element at index '1' +// :104:22: note: when computing vector element at index '0' // :104:22: error: use of undefined value here causes illegal behavior -// :104:22: note: when computing vector element at index '1' +// :104:22: note: when computing vector element at index '0' // :104:22: error: use of undefined value here causes illegal behavior -// :104:22: note: when computing vector element at index '1' +// :104:22: note: when computing vector element at index '0' // :104:22: error: use of undefined value here causes illegal behavior // :104:22: note: when computing vector element at index '0' // :104:22: error: use of undefined value here causes illegal behavior @@ -2431,11 +2419,17 @@ const std = @import("std"); // :104:22: error: use of undefined value here causes illegal behavior // :104:22: note: when computing vector element at index '0' // :104:22: error: use of undefined value here causes illegal behavior +// :104:22: note: when computing vector element at index '0' // :104:22: error: use of undefined value here causes illegal behavior +// :104:22: note: when computing vector element at index '0' // :104:22: error: use of undefined value here causes illegal behavior +// :104:22: note: when computing vector element at index '0' // :104:22: error: use of undefined value here causes illegal behavior +// :104:22: note: when computing vector element at index '0' // :104:22: error: use of undefined value here causes illegal behavior +// :104:22: note: when computing vector element at index '1' // :104:22: error: use of undefined value here causes illegal behavior +// :104:22: note: when computing vector element at index '1' // :104:22: error: use of undefined value here causes illegal behavior // :104:22: note: when computing vector element at index '1' // :104:22: error: use of undefined value here causes illegal behavior @@ -2445,19 +2439,25 @@ const std = @import("std"); // :104:22: error: use of undefined value here causes illegal behavior // :104:22: note: when computing vector element at index '1' // :104:22: error: use of undefined value here causes illegal behavior -// :104:22: note: when computing vector element at index '0' +// :104:22: note: when computing vector element at index '1' // :104:22: error: use of undefined value here causes illegal behavior -// :104:22: note: when computing vector element at index '0' +// :104:22: note: when computing vector element at index '1' // :104:22: error: use of undefined value here causes illegal behavior -// :104:22: note: when computing vector element at index '0' +// :104:22: note: when computing vector element at index '1' // :104:22: error: use of undefined value here causes illegal behavior -// :104:22: note: when computing vector element at index '0' +// :104:22: note: when computing vector element at index '1' // :104:22: error: use of undefined value here causes illegal behavior +// :104:22: note: when computing vector element at index '1' // :104:22: error: use of undefined value here causes illegal behavior +// :104:22: note: when computing vector element at index '1' // :104:22: error: use of undefined value here causes illegal behavior +// :104:22: note: when computing vector element at index '1' // :104:22: error: use of undefined value here causes illegal behavior +// :104:22: note: when computing vector element at index '1' // :104:22: error: use of undefined value here causes illegal behavior +// :104:22: note: when computing vector element at index '1' // :104:22: error: use of undefined value here causes illegal behavior +// :104:22: note: when computing vector element at index '1' // :104:22: error: use of undefined value here causes illegal behavior // :104:22: note: when computing vector element at index '1' // :104:22: error: use of undefined value here causes illegal behavior @@ -2467,13 +2467,13 @@ const std = @import("std"); // :104:22: error: use of undefined value here causes illegal behavior // :104:22: note: when computing vector element at index '1' // :104:22: error: use of undefined value here causes illegal behavior -// :104:22: note: when computing vector element at index '0' +// :104:22: note: when computing vector element at index '1' // :104:22: error: use of undefined value here causes illegal behavior -// :104:22: note: when computing vector element at index '0' +// :104:22: note: when computing vector element at index '1' // :104:22: error: use of undefined value here causes illegal behavior -// :104:22: note: when computing vector element at index '0' +// :104:22: note: when computing vector element at index '1' // :104:22: error: use of undefined value here causes illegal behavior -// :104:22: note: when computing vector element at index '0' +// :104:22: note: when computing vector element at index '1' // :107:30: error: use of undefined value here causes illegal behavior // :107:30: error: use of undefined value here causes illegal behavior // :107:30: error: use of undefined value here causes illegal behavior @@ -2481,21 +2481,13 @@ const std = @import("std"); // :107:30: error: use of undefined value here causes illegal behavior // :107:30: error: use of undefined value here causes illegal behavior // :107:30: error: use of undefined value here causes illegal behavior -// :107:30: note: when computing vector element at index '1' // :107:30: error: use of undefined value here causes illegal behavior -// :107:30: note: when computing vector element at index '1' // :107:30: error: use of undefined value here causes illegal behavior -// :107:30: note: when computing vector element at index '1' // :107:30: error: use of undefined value here causes illegal behavior -// :107:30: note: when computing vector element at index '1' // :107:30: error: use of undefined value here causes illegal behavior -// :107:30: note: when computing vector element at index '0' // :107:30: error: use of undefined value here causes illegal behavior -// :107:30: note: when computing vector element at index '0' // :107:30: error: use of undefined value here causes illegal behavior -// :107:30: note: when computing vector element at index '0' // :107:30: error: use of undefined value here causes illegal behavior -// :107:30: note: when computing vector element at index '0' // :107:30: error: use of undefined value here causes illegal behavior // :107:30: error: use of undefined value here causes illegal behavior // :107:30: error: use of undefined value here causes illegal behavior @@ -2503,21 +2495,13 @@ const std = @import("std"); // :107:30: error: use of undefined value here causes illegal behavior // :107:30: error: use of undefined value here causes illegal behavior // :107:30: error: use of undefined value here causes illegal behavior -// :107:30: note: when computing vector element at index '1' // :107:30: error: use of undefined value here causes illegal behavior -// :107:30: note: when computing vector element at index '1' // :107:30: error: use of undefined value here causes illegal behavior -// :107:30: note: when computing vector element at index '1' // :107:30: error: use of undefined value here causes illegal behavior -// :107:30: note: when computing vector element at index '1' // :107:30: error: use of undefined value here causes illegal behavior -// :107:30: note: when computing vector element at index '0' // :107:30: error: use of undefined value here causes illegal behavior -// :107:30: note: when computing vector element at index '0' // :107:30: error: use of undefined value here causes illegal behavior -// :107:30: note: when computing vector element at index '0' // :107:30: error: use of undefined value here causes illegal behavior -// :107:30: note: when computing vector element at index '0' // :107:30: error: use of undefined value here causes illegal behavior // :107:30: error: use of undefined value here causes illegal behavior // :107:30: error: use of undefined value here causes illegal behavior @@ -2525,13 +2509,11 @@ const std = @import("std"); // :107:30: error: use of undefined value here causes illegal behavior // :107:30: error: use of undefined value here causes illegal behavior // :107:30: error: use of undefined value here causes illegal behavior -// :107:30: note: when computing vector element at index '1' // :107:30: error: use of undefined value here causes illegal behavior -// :107:30: note: when computing vector element at index '1' // :107:30: error: use of undefined value here causes illegal behavior -// :107:30: note: when computing vector element at index '1' +// :107:30: note: when computing vector element at index '0' // :107:30: error: use of undefined value here causes illegal behavior -// :107:30: note: when computing vector element at index '1' +// :107:30: note: when computing vector element at index '0' // :107:30: error: use of undefined value here causes illegal behavior // :107:30: note: when computing vector element at index '0' // :107:30: error: use of undefined value here causes illegal behavior @@ -2541,19 +2523,25 @@ const std = @import("std"); // :107:30: error: use of undefined value here causes illegal behavior // :107:30: note: when computing vector element at index '0' // :107:30: error: use of undefined value here causes illegal behavior +// :107:30: note: when computing vector element at index '0' // :107:30: error: use of undefined value here causes illegal behavior +// :107:30: note: when computing vector element at index '0' // :107:30: error: use of undefined value here causes illegal behavior +// :107:30: note: when computing vector element at index '0' // :107:30: error: use of undefined value here causes illegal behavior +// :107:30: note: when computing vector element at index '0' // :107:30: error: use of undefined value here causes illegal behavior +// :107:30: note: when computing vector element at index '0' // :107:30: error: use of undefined value here causes illegal behavior +// :107:30: note: when computing vector element at index '0' // :107:30: error: use of undefined value here causes illegal behavior -// :107:30: note: when computing vector element at index '1' +// :107:30: note: when computing vector element at index '0' // :107:30: error: use of undefined value here causes illegal behavior -// :107:30: note: when computing vector element at index '1' +// :107:30: note: when computing vector element at index '0' // :107:30: error: use of undefined value here causes illegal behavior -// :107:30: note: when computing vector element at index '1' +// :107:30: note: when computing vector element at index '0' // :107:30: error: use of undefined value here causes illegal behavior -// :107:30: note: when computing vector element at index '1' +// :107:30: note: when computing vector element at index '0' // :107:30: error: use of undefined value here causes illegal behavior // :107:30: note: when computing vector element at index '0' // :107:30: error: use of undefined value here causes illegal behavior @@ -2563,11 +2551,17 @@ const std = @import("std"); // :107:30: error: use of undefined value here causes illegal behavior // :107:30: note: when computing vector element at index '0' // :107:30: error: use of undefined value here causes illegal behavior +// :107:30: note: when computing vector element at index '0' // :107:30: error: use of undefined value here causes illegal behavior +// :107:30: note: when computing vector element at index '0' // :107:30: error: use of undefined value here causes illegal behavior +// :107:30: note: when computing vector element at index '0' // :107:30: error: use of undefined value here causes illegal behavior +// :107:30: note: when computing vector element at index '0' // :107:30: error: use of undefined value here causes illegal behavior +// :107:30: note: when computing vector element at index '1' // :107:30: error: use of undefined value here causes illegal behavior +// :107:30: note: when computing vector element at index '1' // :107:30: error: use of undefined value here causes illegal behavior // :107:30: note: when computing vector element at index '1' // :107:30: error: use of undefined value here causes illegal behavior @@ -2577,19 +2571,25 @@ const std = @import("std"); // :107:30: error: use of undefined value here causes illegal behavior // :107:30: note: when computing vector element at index '1' // :107:30: error: use of undefined value here causes illegal behavior -// :107:30: note: when computing vector element at index '0' +// :107:30: note: when computing vector element at index '1' // :107:30: error: use of undefined value here causes illegal behavior -// :107:30: note: when computing vector element at index '0' +// :107:30: note: when computing vector element at index '1' // :107:30: error: use of undefined value here causes illegal behavior -// :107:30: note: when computing vector element at index '0' +// :107:30: note: when computing vector element at index '1' // :107:30: error: use of undefined value here causes illegal behavior -// :107:30: note: when computing vector element at index '0' +// :107:30: note: when computing vector element at index '1' // :107:30: error: use of undefined value here causes illegal behavior +// :107:30: note: when computing vector element at index '1' // :107:30: error: use of undefined value here causes illegal behavior +// :107:30: note: when computing vector element at index '1' // :107:30: error: use of undefined value here causes illegal behavior +// :107:30: note: when computing vector element at index '1' // :107:30: error: use of undefined value here causes illegal behavior +// :107:30: note: when computing vector element at index '1' // :107:30: error: use of undefined value here causes illegal behavior +// :107:30: note: when computing vector element at index '1' // :107:30: error: use of undefined value here causes illegal behavior +// :107:30: note: when computing vector element at index '1' // :107:30: error: use of undefined value here causes illegal behavior // :107:30: note: when computing vector element at index '1' // :107:30: error: use of undefined value here causes illegal behavior @@ -2599,13 +2599,13 @@ const std = @import("std"); // :107:30: error: use of undefined value here causes illegal behavior // :107:30: note: when computing vector element at index '1' // :107:30: error: use of undefined value here causes illegal behavior -// :107:30: note: when computing vector element at index '0' +// :107:30: note: when computing vector element at index '1' // :107:30: error: use of undefined value here causes illegal behavior -// :107:30: note: when computing vector element at index '0' +// :107:30: note: when computing vector element at index '1' // :107:30: error: use of undefined value here causes illegal behavior -// :107:30: note: when computing vector element at index '0' +// :107:30: note: when computing vector element at index '1' // :107:30: error: use of undefined value here causes illegal behavior -// :107:30: note: when computing vector element at index '0' +// :107:30: note: when computing vector element at index '1' // :110:37: error: use of undefined value here causes illegal behavior // :110:37: error: use of undefined value here causes illegal behavior // :110:37: error: use of undefined value here causes illegal behavior @@ -2613,21 +2613,13 @@ const std = @import("std"); // :110:37: error: use of undefined value here causes illegal behavior // :110:37: error: use of undefined value here causes illegal behavior // :110:37: error: use of undefined value here causes illegal behavior -// :110:37: note: when computing vector element at index '1' // :110:37: error: use of undefined value here causes illegal behavior -// :110:37: note: when computing vector element at index '1' // :110:37: error: use of undefined value here causes illegal behavior -// :110:37: note: when computing vector element at index '1' // :110:37: error: use of undefined value here causes illegal behavior -// :110:37: note: when computing vector element at index '1' // :110:37: error: use of undefined value here causes illegal behavior -// :110:37: note: when computing vector element at index '0' // :110:37: error: use of undefined value here causes illegal behavior -// :110:37: note: when computing vector element at index '0' // :110:37: error: use of undefined value here causes illegal behavior -// :110:37: note: when computing vector element at index '0' // :110:37: error: use of undefined value here causes illegal behavior -// :110:37: note: when computing vector element at index '0' // :110:37: error: use of undefined value here causes illegal behavior // :110:37: error: use of undefined value here causes illegal behavior // :110:37: error: use of undefined value here causes illegal behavior @@ -2635,21 +2627,13 @@ const std = @import("std"); // :110:37: error: use of undefined value here causes illegal behavior // :110:37: error: use of undefined value here causes illegal behavior // :110:37: error: use of undefined value here causes illegal behavior -// :110:37: note: when computing vector element at index '1' // :110:37: error: use of undefined value here causes illegal behavior -// :110:37: note: when computing vector element at index '1' // :110:37: error: use of undefined value here causes illegal behavior -// :110:37: note: when computing vector element at index '1' // :110:37: error: use of undefined value here causes illegal behavior -// :110:37: note: when computing vector element at index '1' // :110:37: error: use of undefined value here causes illegal behavior -// :110:37: note: when computing vector element at index '0' // :110:37: error: use of undefined value here causes illegal behavior -// :110:37: note: when computing vector element at index '0' // :110:37: error: use of undefined value here causes illegal behavior -// :110:37: note: when computing vector element at index '0' // :110:37: error: use of undefined value here causes illegal behavior -// :110:37: note: when computing vector element at index '0' // :110:37: error: use of undefined value here causes illegal behavior // :110:37: error: use of undefined value here causes illegal behavior // :110:37: error: use of undefined value here causes illegal behavior @@ -2657,13 +2641,11 @@ const std = @import("std"); // :110:37: error: use of undefined value here causes illegal behavior // :110:37: error: use of undefined value here causes illegal behavior // :110:37: error: use of undefined value here causes illegal behavior -// :110:37: note: when computing vector element at index '1' // :110:37: error: use of undefined value here causes illegal behavior -// :110:37: note: when computing vector element at index '1' // :110:37: error: use of undefined value here causes illegal behavior -// :110:37: note: when computing vector element at index '1' +// :110:37: note: when computing vector element at index '0' // :110:37: error: use of undefined value here causes illegal behavior -// :110:37: note: when computing vector element at index '1' +// :110:37: note: when computing vector element at index '0' // :110:37: error: use of undefined value here causes illegal behavior // :110:37: note: when computing vector element at index '0' // :110:37: error: use of undefined value here causes illegal behavior @@ -2673,19 +2655,25 @@ const std = @import("std"); // :110:37: error: use of undefined value here causes illegal behavior // :110:37: note: when computing vector element at index '0' // :110:37: error: use of undefined value here causes illegal behavior +// :110:37: note: when computing vector element at index '0' // :110:37: error: use of undefined value here causes illegal behavior +// :110:37: note: when computing vector element at index '0' // :110:37: error: use of undefined value here causes illegal behavior +// :110:37: note: when computing vector element at index '0' // :110:37: error: use of undefined value here causes illegal behavior +// :110:37: note: when computing vector element at index '0' // :110:37: error: use of undefined value here causes illegal behavior +// :110:37: note: when computing vector element at index '0' // :110:37: error: use of undefined value here causes illegal behavior +// :110:37: note: when computing vector element at index '0' // :110:37: error: use of undefined value here causes illegal behavior -// :110:37: note: when computing vector element at index '1' +// :110:37: note: when computing vector element at index '0' // :110:37: error: use of undefined value here causes illegal behavior -// :110:37: note: when computing vector element at index '1' +// :110:37: note: when computing vector element at index '0' // :110:37: error: use of undefined value here causes illegal behavior -// :110:37: note: when computing vector element at index '1' +// :110:37: note: when computing vector element at index '0' // :110:37: error: use of undefined value here causes illegal behavior -// :110:37: note: when computing vector element at index '1' +// :110:37: note: when computing vector element at index '0' // :110:37: error: use of undefined value here causes illegal behavior // :110:37: note: when computing vector element at index '0' // :110:37: error: use of undefined value here causes illegal behavior @@ -2695,11 +2683,17 @@ const std = @import("std"); // :110:37: error: use of undefined value here causes illegal behavior // :110:37: note: when computing vector element at index '0' // :110:37: error: use of undefined value here causes illegal behavior +// :110:37: note: when computing vector element at index '0' // :110:37: error: use of undefined value here causes illegal behavior +// :110:37: note: when computing vector element at index '0' // :110:37: error: use of undefined value here causes illegal behavior +// :110:37: note: when computing vector element at index '0' // :110:37: error: use of undefined value here causes illegal behavior +// :110:37: note: when computing vector element at index '0' // :110:37: error: use of undefined value here causes illegal behavior +// :110:37: note: when computing vector element at index '1' // :110:37: error: use of undefined value here causes illegal behavior +// :110:37: note: when computing vector element at index '1' // :110:37: error: use of undefined value here causes illegal behavior // :110:37: note: when computing vector element at index '1' // :110:37: error: use of undefined value here causes illegal behavior @@ -2709,19 +2703,25 @@ const std = @import("std"); // :110:37: error: use of undefined value here causes illegal behavior // :110:37: note: when computing vector element at index '1' // :110:37: error: use of undefined value here causes illegal behavior -// :110:37: note: when computing vector element at index '0' +// :110:37: note: when computing vector element at index '1' // :110:37: error: use of undefined value here causes illegal behavior -// :110:37: note: when computing vector element at index '0' +// :110:37: note: when computing vector element at index '1' // :110:37: error: use of undefined value here causes illegal behavior -// :110:37: note: when computing vector element at index '0' +// :110:37: note: when computing vector element at index '1' // :110:37: error: use of undefined value here causes illegal behavior -// :110:37: note: when computing vector element at index '0' +// :110:37: note: when computing vector element at index '1' // :110:37: error: use of undefined value here causes illegal behavior +// :110:37: note: when computing vector element at index '1' // :110:37: error: use of undefined value here causes illegal behavior +// :110:37: note: when computing vector element at index '1' // :110:37: error: use of undefined value here causes illegal behavior +// :110:37: note: when computing vector element at index '1' // :110:37: error: use of undefined value here causes illegal behavior +// :110:37: note: when computing vector element at index '1' // :110:37: error: use of undefined value here causes illegal behavior +// :110:37: note: when computing vector element at index '1' // :110:37: error: use of undefined value here causes illegal behavior +// :110:37: note: when computing vector element at index '1' // :110:37: error: use of undefined value here causes illegal behavior // :110:37: note: when computing vector element at index '1' // :110:37: error: use of undefined value here causes illegal behavior @@ -2731,13 +2731,13 @@ const std = @import("std"); // :110:37: error: use of undefined value here causes illegal behavior // :110:37: note: when computing vector element at index '1' // :110:37: error: use of undefined value here causes illegal behavior -// :110:37: note: when computing vector element at index '0' +// :110:37: note: when computing vector element at index '1' // :110:37: error: use of undefined value here causes illegal behavior -// :110:37: note: when computing vector element at index '0' +// :110:37: note: when computing vector element at index '1' // :110:37: error: use of undefined value here causes illegal behavior -// :110:37: note: when computing vector element at index '0' +// :110:37: note: when computing vector element at index '1' // :110:37: error: use of undefined value here causes illegal behavior -// :110:37: note: when computing vector element at index '0' +// :110:37: note: when computing vector element at index '1' // :113:22: error: use of undefined value here causes illegal behavior // :113:22: error: use of undefined value here causes illegal behavior // :113:22: error: use of undefined value here causes illegal behavior @@ -2745,21 +2745,13 @@ const std = @import("std"); // :113:22: error: use of undefined value here causes illegal behavior // :113:22: error: use of undefined value here causes illegal behavior // :113:22: error: use of undefined value here causes illegal behavior -// :113:22: note: when computing vector element at index '1' // :113:22: error: use of undefined value here causes illegal behavior -// :113:22: note: when computing vector element at index '1' // :113:22: error: use of undefined value here causes illegal behavior -// :113:22: note: when computing vector element at index '1' // :113:22: error: use of undefined value here causes illegal behavior -// :113:22: note: when computing vector element at index '1' // :113:22: error: use of undefined value here causes illegal behavior -// :113:22: note: when computing vector element at index '0' // :113:22: error: use of undefined value here causes illegal behavior -// :113:22: note: when computing vector element at index '0' // :113:22: error: use of undefined value here causes illegal behavior -// :113:22: note: when computing vector element at index '0' // :113:22: error: use of undefined value here causes illegal behavior -// :113:22: note: when computing vector element at index '0' // :113:22: error: use of undefined value here causes illegal behavior // :113:22: error: use of undefined value here causes illegal behavior // :113:22: error: use of undefined value here causes illegal behavior @@ -2767,21 +2759,13 @@ const std = @import("std"); // :113:22: error: use of undefined value here causes illegal behavior // :113:22: error: use of undefined value here causes illegal behavior // :113:22: error: use of undefined value here causes illegal behavior -// :113:22: note: when computing vector element at index '1' // :113:22: error: use of undefined value here causes illegal behavior -// :113:22: note: when computing vector element at index '1' // :113:22: error: use of undefined value here causes illegal behavior -// :113:22: note: when computing vector element at index '1' // :113:22: error: use of undefined value here causes illegal behavior -// :113:22: note: when computing vector element at index '1' // :113:22: error: use of undefined value here causes illegal behavior -// :113:22: note: when computing vector element at index '0' // :113:22: error: use of undefined value here causes illegal behavior -// :113:22: note: when computing vector element at index '0' // :113:22: error: use of undefined value here causes illegal behavior -// :113:22: note: when computing vector element at index '0' // :113:22: error: use of undefined value here causes illegal behavior -// :113:22: note: when computing vector element at index '0' // :113:22: error: use of undefined value here causes illegal behavior // :113:22: error: use of undefined value here causes illegal behavior // :113:22: error: use of undefined value here causes illegal behavior @@ -2789,13 +2773,11 @@ const std = @import("std"); // :113:22: error: use of undefined value here causes illegal behavior // :113:22: error: use of undefined value here causes illegal behavior // :113:22: error: use of undefined value here causes illegal behavior -// :113:22: note: when computing vector element at index '1' // :113:22: error: use of undefined value here causes illegal behavior -// :113:22: note: when computing vector element at index '1' // :113:22: error: use of undefined value here causes illegal behavior -// :113:22: note: when computing vector element at index '1' +// :113:22: note: when computing vector element at index '0' // :113:22: error: use of undefined value here causes illegal behavior -// :113:22: note: when computing vector element at index '1' +// :113:22: note: when computing vector element at index '0' // :113:22: error: use of undefined value here causes illegal behavior // :113:22: note: when computing vector element at index '0' // :113:22: error: use of undefined value here causes illegal behavior @@ -2805,19 +2787,25 @@ const std = @import("std"); // :113:22: error: use of undefined value here causes illegal behavior // :113:22: note: when computing vector element at index '0' // :113:22: error: use of undefined value here causes illegal behavior +// :113:22: note: when computing vector element at index '0' // :113:22: error: use of undefined value here causes illegal behavior +// :113:22: note: when computing vector element at index '0' // :113:22: error: use of undefined value here causes illegal behavior +// :113:22: note: when computing vector element at index '0' // :113:22: error: use of undefined value here causes illegal behavior +// :113:22: note: when computing vector element at index '0' // :113:22: error: use of undefined value here causes illegal behavior +// :113:22: note: when computing vector element at index '0' // :113:22: error: use of undefined value here causes illegal behavior +// :113:22: note: when computing vector element at index '0' // :113:22: error: use of undefined value here causes illegal behavior -// :113:22: note: when computing vector element at index '1' +// :113:22: note: when computing vector element at index '0' // :113:22: error: use of undefined value here causes illegal behavior -// :113:22: note: when computing vector element at index '1' +// :113:22: note: when computing vector element at index '0' // :113:22: error: use of undefined value here causes illegal behavior -// :113:22: note: when computing vector element at index '1' +// :113:22: note: when computing vector element at index '0' // :113:22: error: use of undefined value here causes illegal behavior -// :113:22: note: when computing vector element at index '1' +// :113:22: note: when computing vector element at index '0' // :113:22: error: use of undefined value here causes illegal behavior // :113:22: note: when computing vector element at index '0' // :113:22: error: use of undefined value here causes illegal behavior @@ -2827,11 +2815,17 @@ const std = @import("std"); // :113:22: error: use of undefined value here causes illegal behavior // :113:22: note: when computing vector element at index '0' // :113:22: error: use of undefined value here causes illegal behavior +// :113:22: note: when computing vector element at index '0' // :113:22: error: use of undefined value here causes illegal behavior +// :113:22: note: when computing vector element at index '0' // :113:22: error: use of undefined value here causes illegal behavior +// :113:22: note: when computing vector element at index '0' // :113:22: error: use of undefined value here causes illegal behavior +// :113:22: note: when computing vector element at index '0' // :113:22: error: use of undefined value here causes illegal behavior +// :113:22: note: when computing vector element at index '1' // :113:22: error: use of undefined value here causes illegal behavior +// :113:22: note: when computing vector element at index '1' // :113:22: error: use of undefined value here causes illegal behavior // :113:22: note: when computing vector element at index '1' // :113:22: error: use of undefined value here causes illegal behavior @@ -2841,19 +2835,25 @@ const std = @import("std"); // :113:22: error: use of undefined value here causes illegal behavior // :113:22: note: when computing vector element at index '1' // :113:22: error: use of undefined value here causes illegal behavior -// :113:22: note: when computing vector element at index '0' +// :113:22: note: when computing vector element at index '1' // :113:22: error: use of undefined value here causes illegal behavior -// :113:22: note: when computing vector element at index '0' +// :113:22: note: when computing vector element at index '1' // :113:22: error: use of undefined value here causes illegal behavior -// :113:22: note: when computing vector element at index '0' +// :113:22: note: when computing vector element at index '1' // :113:22: error: use of undefined value here causes illegal behavior -// :113:22: note: when computing vector element at index '0' +// :113:22: note: when computing vector element at index '1' // :113:22: error: use of undefined value here causes illegal behavior +// :113:22: note: when computing vector element at index '1' // :113:22: error: use of undefined value here causes illegal behavior +// :113:22: note: when computing vector element at index '1' // :113:22: error: use of undefined value here causes illegal behavior +// :113:22: note: when computing vector element at index '1' // :113:22: error: use of undefined value here causes illegal behavior +// :113:22: note: when computing vector element at index '1' // :113:22: error: use of undefined value here causes illegal behavior +// :113:22: note: when computing vector element at index '1' // :113:22: error: use of undefined value here causes illegal behavior +// :113:22: note: when computing vector element at index '1' // :113:22: error: use of undefined value here causes illegal behavior // :113:22: note: when computing vector element at index '1' // :113:22: error: use of undefined value here causes illegal behavior @@ -2863,13 +2863,13 @@ const std = @import("std"); // :113:22: error: use of undefined value here causes illegal behavior // :113:22: note: when computing vector element at index '1' // :113:22: error: use of undefined value here causes illegal behavior -// :113:22: note: when computing vector element at index '0' +// :113:22: note: when computing vector element at index '1' // :113:22: error: use of undefined value here causes illegal behavior -// :113:22: note: when computing vector element at index '0' +// :113:22: note: when computing vector element at index '1' // :113:22: error: use of undefined value here causes illegal behavior -// :113:22: note: when computing vector element at index '0' +// :113:22: note: when computing vector element at index '1' // :113:22: error: use of undefined value here causes illegal behavior -// :113:22: note: when computing vector element at index '0' +// :113:22: note: when computing vector element at index '1' // :116:30: error: use of undefined value here causes illegal behavior // :116:30: error: use of undefined value here causes illegal behavior // :116:30: error: use of undefined value here causes illegal behavior @@ -2877,21 +2877,13 @@ const std = @import("std"); // :116:30: error: use of undefined value here causes illegal behavior // :116:30: error: use of undefined value here causes illegal behavior // :116:30: error: use of undefined value here causes illegal behavior -// :116:30: note: when computing vector element at index '1' // :116:30: error: use of undefined value here causes illegal behavior -// :116:30: note: when computing vector element at index '1' // :116:30: error: use of undefined value here causes illegal behavior -// :116:30: note: when computing vector element at index '1' // :116:30: error: use of undefined value here causes illegal behavior -// :116:30: note: when computing vector element at index '1' // :116:30: error: use of undefined value here causes illegal behavior -// :116:30: note: when computing vector element at index '0' // :116:30: error: use of undefined value here causes illegal behavior -// :116:30: note: when computing vector element at index '0' // :116:30: error: use of undefined value here causes illegal behavior -// :116:30: note: when computing vector element at index '0' // :116:30: error: use of undefined value here causes illegal behavior -// :116:30: note: when computing vector element at index '0' // :116:30: error: use of undefined value here causes illegal behavior // :116:30: error: use of undefined value here causes illegal behavior // :116:30: error: use of undefined value here causes illegal behavior @@ -2899,21 +2891,13 @@ const std = @import("std"); // :116:30: error: use of undefined value here causes illegal behavior // :116:30: error: use of undefined value here causes illegal behavior // :116:30: error: use of undefined value here causes illegal behavior -// :116:30: note: when computing vector element at index '1' // :116:30: error: use of undefined value here causes illegal behavior -// :116:30: note: when computing vector element at index '1' // :116:30: error: use of undefined value here causes illegal behavior -// :116:30: note: when computing vector element at index '1' // :116:30: error: use of undefined value here causes illegal behavior -// :116:30: note: when computing vector element at index '1' // :116:30: error: use of undefined value here causes illegal behavior -// :116:30: note: when computing vector element at index '0' // :116:30: error: use of undefined value here causes illegal behavior -// :116:30: note: when computing vector element at index '0' // :116:30: error: use of undefined value here causes illegal behavior -// :116:30: note: when computing vector element at index '0' // :116:30: error: use of undefined value here causes illegal behavior -// :116:30: note: when computing vector element at index '0' // :116:30: error: use of undefined value here causes illegal behavior // :116:30: error: use of undefined value here causes illegal behavior // :116:30: error: use of undefined value here causes illegal behavior @@ -2921,13 +2905,11 @@ const std = @import("std"); // :116:30: error: use of undefined value here causes illegal behavior // :116:30: error: use of undefined value here causes illegal behavior // :116:30: error: use of undefined value here causes illegal behavior -// :116:30: note: when computing vector element at index '1' // :116:30: error: use of undefined value here causes illegal behavior -// :116:30: note: when computing vector element at index '1' // :116:30: error: use of undefined value here causes illegal behavior -// :116:30: note: when computing vector element at index '1' +// :116:30: note: when computing vector element at index '0' // :116:30: error: use of undefined value here causes illegal behavior -// :116:30: note: when computing vector element at index '1' +// :116:30: note: when computing vector element at index '0' // :116:30: error: use of undefined value here causes illegal behavior // :116:30: note: when computing vector element at index '0' // :116:30: error: use of undefined value here causes illegal behavior @@ -2937,19 +2919,25 @@ const std = @import("std"); // :116:30: error: use of undefined value here causes illegal behavior // :116:30: note: when computing vector element at index '0' // :116:30: error: use of undefined value here causes illegal behavior +// :116:30: note: when computing vector element at index '0' // :116:30: error: use of undefined value here causes illegal behavior +// :116:30: note: when computing vector element at index '0' // :116:30: error: use of undefined value here causes illegal behavior +// :116:30: note: when computing vector element at index '0' // :116:30: error: use of undefined value here causes illegal behavior +// :116:30: note: when computing vector element at index '0' // :116:30: error: use of undefined value here causes illegal behavior +// :116:30: note: when computing vector element at index '0' // :116:30: error: use of undefined value here causes illegal behavior +// :116:30: note: when computing vector element at index '0' // :116:30: error: use of undefined value here causes illegal behavior -// :116:30: note: when computing vector element at index '1' +// :116:30: note: when computing vector element at index '0' // :116:30: error: use of undefined value here causes illegal behavior -// :116:30: note: when computing vector element at index '1' +// :116:30: note: when computing vector element at index '0' // :116:30: error: use of undefined value here causes illegal behavior -// :116:30: note: when computing vector element at index '1' +// :116:30: note: when computing vector element at index '0' // :116:30: error: use of undefined value here causes illegal behavior -// :116:30: note: when computing vector element at index '1' +// :116:30: note: when computing vector element at index '0' // :116:30: error: use of undefined value here causes illegal behavior // :116:30: note: when computing vector element at index '0' // :116:30: error: use of undefined value here causes illegal behavior @@ -2959,11 +2947,17 @@ const std = @import("std"); // :116:30: error: use of undefined value here causes illegal behavior // :116:30: note: when computing vector element at index '0' // :116:30: error: use of undefined value here causes illegal behavior +// :116:30: note: when computing vector element at index '0' // :116:30: error: use of undefined value here causes illegal behavior +// :116:30: note: when computing vector element at index '0' // :116:30: error: use of undefined value here causes illegal behavior +// :116:30: note: when computing vector element at index '0' // :116:30: error: use of undefined value here causes illegal behavior +// :116:30: note: when computing vector element at index '0' // :116:30: error: use of undefined value here causes illegal behavior +// :116:30: note: when computing vector element at index '1' // :116:30: error: use of undefined value here causes illegal behavior +// :116:30: note: when computing vector element at index '1' // :116:30: error: use of undefined value here causes illegal behavior // :116:30: note: when computing vector element at index '1' // :116:30: error: use of undefined value here causes illegal behavior @@ -2973,19 +2967,25 @@ const std = @import("std"); // :116:30: error: use of undefined value here causes illegal behavior // :116:30: note: when computing vector element at index '1' // :116:30: error: use of undefined value here causes illegal behavior -// :116:30: note: when computing vector element at index '0' +// :116:30: note: when computing vector element at index '1' // :116:30: error: use of undefined value here causes illegal behavior -// :116:30: note: when computing vector element at index '0' +// :116:30: note: when computing vector element at index '1' // :116:30: error: use of undefined value here causes illegal behavior -// :116:30: note: when computing vector element at index '0' +// :116:30: note: when computing vector element at index '1' // :116:30: error: use of undefined value here causes illegal behavior -// :116:30: note: when computing vector element at index '0' +// :116:30: note: when computing vector element at index '1' // :116:30: error: use of undefined value here causes illegal behavior +// :116:30: note: when computing vector element at index '1' // :116:30: error: use of undefined value here causes illegal behavior +// :116:30: note: when computing vector element at index '1' // :116:30: error: use of undefined value here causes illegal behavior +// :116:30: note: when computing vector element at index '1' // :116:30: error: use of undefined value here causes illegal behavior +// :116:30: note: when computing vector element at index '1' // :116:30: error: use of undefined value here causes illegal behavior +// :116:30: note: when computing vector element at index '1' // :116:30: error: use of undefined value here causes illegal behavior +// :116:30: note: when computing vector element at index '1' // :116:30: error: use of undefined value here causes illegal behavior // :116:30: note: when computing vector element at index '1' // :116:30: error: use of undefined value here causes illegal behavior @@ -2995,10 +2995,10 @@ const std = @import("std"); // :116:30: error: use of undefined value here causes illegal behavior // :116:30: note: when computing vector element at index '1' // :116:30: error: use of undefined value here causes illegal behavior -// :116:30: note: when computing vector element at index '0' +// :116:30: note: when computing vector element at index '1' // :116:30: error: use of undefined value here causes illegal behavior -// :116:30: note: when computing vector element at index '0' +// :116:30: note: when computing vector element at index '1' // :116:30: error: use of undefined value here causes illegal behavior -// :116:30: note: when computing vector element at index '0' +// :116:30: note: when computing vector element at index '1' // :116:30: error: use of undefined value here causes illegal behavior -// :116:30: note: when computing vector element at index '0' +// :116:30: note: when computing vector element at index '1' diff --git a/test/cases/compile_errors/union_auto-enum_value_already_taken.zig b/test/cases/compile_errors/union_auto-enum_value_already_taken.zig @@ -12,5 +12,5 @@ export fn entry() void { // error // -// :6:9: error: enum tag value 60 already taken -// :4:9: note: other occurrence here +// :6:9: error: enum tag value '60' for field 'E' already taken +// :4:9: note: previous occurrence in field 'C' diff --git a/test/cases/compile_errors/union_depends_on_pointer_alignment.zig b/test/cases/compile_errors/union_depends_on_pointer_alignment.zig @@ -1,11 +0,0 @@ -const U = union { - next: ?*align(1) U align(128), -}; - -export fn entry() usize { - return @alignOf(U); -} - -// error -// -// :1:11: error: union layout depends on being pointer aligned diff --git a/test/cases/compile_errors/union_enum_field_missing.zig b/test/cases/compile_errors/union_enum_field_missing.zig @@ -15,6 +15,5 @@ export fn entry() usize { // error // -// :7:11: error: enum field(s) missing in union -// :4:5: note: field 'c' missing, declared here -// :1:11: note: enum declared here +// :7:11: error: enum field 'c' missing from union +// :4:5: note: enum field here diff --git a/test/cases/compile_errors/union_field_ordered_differently_than_enum.zig b/test/cases/compile_errors/union_field_ordered_differently_than_enum.zig @@ -21,7 +21,6 @@ export fn entry() usize { // error // -// :4:5: error: union field 'b' ordered differently than corresponding enum field -// :1:23: note: enum field here -// :14:5: error: union field 'b' ordered differently than corresponding enum field -// :10:5: note: enum field here +// :3:15: error: union field order does not match tag enum field order +// :5:5: note: union field 'a' is index 1 +// :1:20: note: enum field 'a' is index 0 diff --git a/test/cases/compile_errors/union_noreturn_field_initialized.zig b/test/cases/compile_errors/union_noreturn_field_initialized.zig @@ -15,8 +15,8 @@ pub export fn entry2() void { const U = union(enum) { a: noreturn, }; - var u: U = undefined; - u = .a; + const u: U = .a; + _ = u; } pub export fn entry3() void { const U = union(enum) { @@ -30,12 +30,12 @@ pub export fn entry3() void { // error // -// :11:14: error: cannot initialize 'noreturn' field of union +// :11:14: error: cannot initialize union field with uninstantiable type 'noreturn' // :4:9: note: field 'b' declared here // :2:15: note: union declared here -// :19:10: error: cannot initialize 'noreturn' field of union +// :18:19: error: cannot initialize union field with uninstantiable type 'noreturn' // :16:9: note: field 'a' declared here // :15:15: note: union declared here -// :28:13: error: runtime coercion from enum '@typeInfo(tmp.entry3.U).@"union".tag_type.?' to union 'tmp.entry3.U' which has a 'noreturn' field -// :23:9: note: 'noreturn' field here +// :28:13: error: runtime coercion from enum '@typeInfo(tmp.entry3.U).@"union".tag_type.?' to union 'tmp.entry3.U' which has non-void fields +// :23:9: note: field 'a' has uninstantiable type 'noreturn' // :22:15: note: union declared here diff --git a/test/cases/compile_errors/union_with_specified_enum_omits_field.zig b/test/cases/compile_errors/union_with_specified_enum_omits_field.zig @@ -13,6 +13,5 @@ export fn entry() usize { // error // -// :6:17: error: enum field(s) missing in union -// :4:5: note: field 'C' missing, declared here -// :1:16: note: enum declared here +// :6:17: error: enum field 'C' missing from union +// :4:5: note: enum field here diff --git a/test/cases/compile_errors/union_with_too_small_explicit_signed_tag_type.zig b/test/cases/compile_errors/union_with_too_small_explicit_signed_tag_type.zig @@ -10,5 +10,4 @@ export fn entry() void { // error // -// :1:22: error: specified integer tag type cannot represent every field -// :1:22: note: type 'i2' cannot fit values in range 0...3 +// :4:5: error: enum tag value '2' too large for type 'i2' diff --git a/test/cases/compile_errors/union_with_too_small_explicit_unsigned_tag_type.zig b/test/cases/compile_errors/union_with_too_small_explicit_unsigned_tag_type.zig @@ -11,5 +11,4 @@ export fn entry() void { // error // -// :1:22: error: specified integer tag type cannot represent every field -// :1:22: note: type 'u2' cannot fit values in range 0...4 +// :6:5: error: enum tag value '4' too large for type 'u2' diff --git a/test/cases/compile_errors/untagged_union_integer_conversion.zig b/test/cases/compile_errors/untagged_union_integer_conversion.zig @@ -1,4 +1,4 @@ -const UntaggedUnion = union {}; +const UntaggedUnion = union { a: void }; comptime { @intFromEnum(@as(UntaggedUnion, undefined)); } diff --git a/test/cases/compile_errors/variadic_arg_validation.zig b/test/cases/compile_errors/variadic_arg_validation.zig @@ -25,4 +25,4 @@ pub export fn entry3() void { // :14:24: error: cannot pass 'u48' to variadic function // :14:24: note: only integers with 0 or power of two bits are extern compatible // :18:24: error: cannot pass 'void' to variadic function -// :18:24: note: 'void' is a zero bit type; for C 'void' use 'anyopaque' +// :18:24: note: 'void' is a zero bit type diff --git a/test/cases/compile_errors/zero_width_nonexhaustive_enum.zig b/test/cases/compile_errors/zero_width_nonexhaustive_enum.zig @@ -1,17 +1,20 @@ comptime { - _ = enum(i0) { a, _ }; + const E = enum(i0) { a, _ }; + _ = @as(E, undefined); } comptime { - _ = enum(u0) { a, _ }; + const E = enum(u0) { a, _ }; + _ = @as(E, undefined); } comptime { - _ = enum(u0) { a, b, _ }; + const E = enum(u0) { a, b, _ }; + _ = @as(E, undefined); } // error // -// :2:9: error: non-exhaustive enum specifies every value -// :6:9: error: non-exhaustive enum specifies every value -// :10:23: error: enumeration value '1' too large for type 'u0' +// :2:15: error: non-exhaustive enum specifies every value +// :7:15: error: non-exhaustive enum specifies every value +// :12:29: error: enum tag value '1' too large for type 'u0' diff --git a/test/incremental/change_enum_tag_type b/test/incremental/change_enum_tag_type @@ -44,7 +44,7 @@ comptime { } const std = @import("std"); const io = std.Io.Threaded.global_single_threaded.io(); -#expect_error=main.zig:7:5: error: enumeration value '4' too large for type 'u2' +#expect_error=main.zig:7:5: error: enum tag value '4' too large for type 'u2' #update=increase tag size #file=main.zig const Tag = u3;