authorgravatar for mlugg@mlugg.co.ukMatthew Lugg <mlugg@mlugg.co.uk> 2026-03-01 19:18:04+00:00
committergravatar for mlugg@mlugg.co.ukMatthew Lugg <mlugg@mlugg.co.uk> 2026-03-10 10:26:14+00:00
log6d997ebe47d91641e70971bf3c227df6cbae041a
tree9545282794a262e16b8aff59f4d9392b76393932
parent4eb8360911d80d4891be6ed47792121a2ccde353
signaturelock-open Commit is signed but in an unrecognized format.

tests: get cases passing (and a few other bits)


95 files changed, 4230 insertions(+), 4309 deletions(-)

test/c_abi/main.zig+2-2
......@@ -718,7 +718,7 @@ export fn zig_med_struct_ints(s: MedStructInts) void {
718718 expect(s.z == 3) catch @panic("test failure");
719719}
720720
721const SmallPackedStruct = packed struct {
721const SmallPackedStruct = packed struct(u8) {
722722 a: u2,
723723 b: u2,
724724 c: u2,
......@@ -744,7 +744,7 @@ test "C ABI small packed struct" {
744744 try expect(s2.d == 3);
745745}
746746
747const BigPackedStruct = packed struct {
747const BigPackedStruct = packed struct(u128) {
748748 a: u64,
749749 b: u64,
750750};
test/cases/compile_errors/@import_zon_bad_type.zig+4-4
......@@ -116,13 +116,13 @@ export fn testMutablePointer() void {
116116// tmp.zig:85:26: note: ZON does not allow nested optionals
117117// tmp.zig:90:29: error: type '*i32' is not available in ZON
118118// tmp.zig:90:29: note: ZON does not allow mutable pointers
119// neg_inf.zon:1:1: error: expected type '@EnumLiteral()'
120// tmp.zig:37:38: note: imported here
121119// neg_inf.zon:1:1: error: expected type '?u8'
122120// tmp.zig:57:28: note: imported here
121// neg_inf.zon:1:1: error: expected type '@EnumLiteral()'
122// tmp.zig:37:38: note: imported here
123123// neg_inf.zon:1:1: error: expected type 'tmp.E'
124124// tmp.zig:63:26: note: imported here
125// neg_inf.zon:1:1: error: expected type 'tmp.U'
126// tmp.zig:69:26: note: imported here
127125// neg_inf.zon:1:1: error: expected type 'tmp.EU'
128126// tmp.zig:75:27: note: imported here
127// neg_inf.zon:1:1: error: expected type 'tmp.U'
128// tmp.zig:69:26: note: imported here
test/cases/compile_errors/@import_zon_opt_in_err.zig+10-10
......@@ -58,25 +58,25 @@ export fn testVector() void {
5858// error
5959// imports=zon/vec2.zon
6060//
61// vec2.zon:1:2: error: expected type '?f32'
62// tmp.zig:2:29: note: imported here
6361// vec2.zon:1:2: error: expected type '*const ?f32'
6462// tmp.zig:7:36: note: imported here
6563// vec2.zon:1:2: error: expected type '?*const f32'
6664// tmp.zig:12:36: note: imported here
65// vec2.zon:1:2: error: expected type '?@EnumLiteral()'
66// tmp.zig:33:39: note: imported here
67// vec2.zon:1:2: error: expected type '?@Vector(3, f32)'
68// tmp.zig:54:41: note: imported here
69// vec2.zon:1:2: error: expected type '?[1]u8'
70// tmp.zig:38:31: note: imported here
71// vec2.zon:1:2: error: expected type '?[]const u8'
72// tmp.zig:49:36: note: imported here
6773// vec2.zon:1:2: error: expected type '?bool'
6874// tmp.zig:17:30: note: imported here
75// vec2.zon:1:2: error: expected type '?f32'
76// tmp.zig:2:29: note: imported here
6977// vec2.zon:1:2: error: expected type '?i32'
7078// tmp.zig:22:29: note: imported here
7179// vec2.zon:1:2: error: expected type '?tmp.Enum'
7280// tmp.zig:28:30: note: imported here
73// vec2.zon:1:2: error: expected type '?@EnumLiteral()'
74// tmp.zig:33:39: note: imported here
75// vec2.zon:1:2: error: expected type '?[1]u8'
76// tmp.zig:38:31: note: imported here
7781// vec2.zon:1:2: error: expected type '?tmp.Union'
7882// tmp.zig:44:31: note: imported here
79// vec2.zon:1:2: error: expected type '?[]const u8'
80// tmp.zig:49:36: note: imported here
81// vec2.zon:1:2: error: expected type '?@Vector(3, f32)'
82// tmp.zig:54:41: note: imported here
test/cases/compile_errors/@import_zon_opt_in_err_struct.zig+4-4
......@@ -13,7 +13,7 @@ export fn testTuple() void {
1313// error
1414// imports=zon/nan.zon
1515//
16//nan.zon:1:1: error: expected type '?tmp.Struct'
17//tmp.zig:3:32: note: imported here
18//nan.zon:1:1: error: expected type '?struct { bool }'
19//tmp.zig:9:31: note: imported here
16// nan.zon:1:1: error: expected type '?struct { bool }'
17// tmp.zig:9:31: note: imported here
18// nan.zon:1:1: error: expected type '?tmp.Struct'
19// tmp.zig:3:32: note: imported here
test/cases/compile_errors/@intFromPtr_with_bad_type.zig deleted-9
......@@ -1,9 +0,0 @@
1const x = 42;
2const y = @intFromPtr(&x);
3pub export fn entry() void {
4 _ = y;
5}
6
7// error
8//
9// :2:23: error: comptime-only type 'comptime_int' has no pointer address
test/cases/compile_errors/AstGen_comptime_known_struct_is_resolved_before_error.zig deleted-17
......@@ -1,17 +0,0 @@
1const S1 = struct {
2 a: S2,
3};
4const S2 = struct {
5 b: fn () void,
6};
7pub export fn entry() void {
8 var s: S1 = undefined;
9 _ = &s;
10}
11
12// error
13//
14// :8:12: error: variable of type 'tmp.S1' must be const or comptime
15// :2:8: note: struct requires comptime because of this field
16// :5:8: note: struct requires comptime because of this field
17// :5:8: note: use '*const fn () void' for a function pointer type
test/cases/compile_errors/C_pointer_pointing_to_non_C_ABI_compatible_type_or_has_align_attr.zig deleted-12
......@@ -1,12 +0,0 @@
1const Foo = struct { a: u32 };
2export fn a() void {
3 const T = [*c]Foo;
4 const t: T = undefined;
5 _ = t;
6}
7
8// error
9//
10// :3:19: error: C pointers cannot point to non-C-ABI-compatible type 'tmp.Foo'
11// :3:19: note: only extern structs and ABI sized packed structs are extern compatible
12// :1:13: note: struct declared here
test/cases/compile_errors/aggregate_too_large.zig+7-9
......@@ -12,16 +12,14 @@ const U = union {
1212 b: [1 << 32]u8,
1313};
1414
15const V = union {
16 a: u32,
17 b: T,
18};
19
2015comptime {
21 _ = S;
22 _ = T;
23 _ = U;
24 _ = V;
16 _ = @as(S, undefined);
17}
18comptime {
19 _ = @as(T, undefined);
20}
21comptime {
22 _ = @as(U, undefined);
2523}
2624
2725// error
test/cases/compile_errors/alignOf_bad_type.zig+1-1
......@@ -9,5 +9,5 @@ export fn entry1() usize {
99// error
1010//
1111// :2:21: error: no align available for uninstantiable type 'noreturn'
12// :6:21: error: no align available for uninstantiable type 'alignOf_bad_type.S'
12// :6:21: error: no align available for uninstantiable type 'tmp.S'
1313// :4:11: note: struct declared here
test/cases/compile_errors/align_zero.zig+4-4
......@@ -30,11 +30,11 @@ export fn g() void {
3030}
3131
3232export fn h() void {
33 _ = struct { field: i32 align(0) };
33 _ = @as(struct { field: i32 align(0) }, undefined);
3434}
3535
3636export fn i() void {
37 _ = union { field: i32 align(0) };
37 _ = @as(union { field: i32 align(0) }, undefined);
3838}
3939
4040export fn j() void {
......@@ -54,7 +54,7 @@ export fn k() void {
5454// :20:30: error: alignment must be >= 1
5555// :25:16: error: alignment must be >= 1
5656// :29:17: error: alignment must be >= 1
57// :33:35: error: alignment must be >= 1
58// :37:34: error: alignment must be >= 1
57// :33:39: error: alignment must be >= 1
58// :37:38: error: alignment must be >= 1
5959// :41:51: error: alignment must be >= 1
6060// :45:25: error: alignment must be >= 1
test/cases/compile_errors/assign_inline_fn_to_non-comptime_var.zig deleted-10
......@@ -1,10 +0,0 @@
1export fn entry() void {
2 var a = &b;
3 _ = &a;
4}
5inline fn b() void {}
6
7// error
8//
9// :2:9: error: variable of type '*const fn () callconv(.@"inline") void' must be const or comptime
10// :2:9: note: function has inline calling convention
test/cases/compile_errors/bit_ptr_non_packed.zig+6-2
......@@ -16,7 +16,11 @@ export fn entry3() void {
1616// error
1717//
1818// :3:23: error: bit-pointer cannot refer to value of type 'tmp.entry1.S'
19// :3:23: note: only packed structs layout are allowed in packed types
19// :3:23: note: non-packed structs do not have a bit-packed representation
20// :2:22: note: struct declared here
2021// :8:36: error: bit-pointer cannot refer to value of type 'tmp.entry2.S'
21// :8:36: note: only packed structs layout are allowed in packed types
22// :8:36: note: non-packed structs do not have a bit-packed representation
23// :7:15: note: struct declared here
2224// :13:23: error: bit-pointer cannot refer to value of type 'tmp.entry3.E'
25// :12:15: note: integer tag type of enum is inferred
26// :12:15: note: consider explicitly specifying the integer tag type
test/cases/compile_errors/bitsize_of_packed_struct_checks_backing_int_ty.zig+3-1
......@@ -8,4 +8,6 @@ pub export fn entry() void {
88
99// error
1010//
11// :1:27: error: backing integer type 'u32' has bit size 32 but the struct fields have a total bit size of 1
11// :1:20: error: backing integer bit width does not match total bit width of fields
12// :1:27: note: backing integer 'u32' has bit width '32'
13// :1:20: note: struct fields have total bit width '1'
test/cases/compile_errors/c_pointer_to_void.zig deleted-9
......@@ -1,9 +0,0 @@
1export fn entry() void {
2 const a: [*c]void = undefined;
3 _ = a;
4}
5
6// error
7//
8// :2:18: error: C pointers cannot point to non-C-ABI-compatible type 'void'
9// :2:18: note: 'void' is a zero bit type; for C 'void' use 'anyopaque'
test/cases/compile_errors/call_runtime_known_inline_fn_ptr.zig created+11
......@@ -0,0 +1,11 @@
1export fn entry() void {
2 var a = &b;
3 a = a;
4 a();
5}
6inline fn b() void {}
7
8// error
9//
10// :4:5: error: unable to resolve comptime value
11// :4:5: note: function being called inline must be comptime-known
test/cases/compile_errors/coerce_int_to_float.zig+6-6
......@@ -40,13 +40,13 @@ export fn entry() void {
4040
4141// error
4242//
43// :6:20: error: expected type 'f16', found 'u12'
43// :6:20: error: expected type 'f128', found 'i115'
44// :6:20: error: expected type 'f128', found 'u114'
4445// :6:20: error: expected type 'f16', found 'i13'
45// :6:20: error: expected type 'f32', found 'u25'
46// :6:20: error: expected type 'f16', found 'u12'
4647// :6:20: error: expected type 'f32', found 'i26'
47// :6:20: error: expected type 'f64', found 'u54'
48// :6:20: error: expected type 'f32', found 'u25'
4849// :6:20: error: expected type 'f64', found 'i55'
49// :6:20: error: expected type 'f80', found 'u65'
50// :6:20: error: expected type 'f64', found 'u54'
5051// :6:20: error: expected type 'f80', found 'i66'
51// :6:20: error: expected type 'f128', found 'u114'
52// :6:20: error: expected type 'f128', found 'i115'
52// :6:20: error: expected type 'f80', found 'u65'
test/cases/compile_errors/comptime_var_referenced_by_type.zig+1-1
......@@ -21,6 +21,6 @@ comptime {
2121// error
2222//
2323// :7:16: error: captured value contains reference to comptime var
24// :7:16: note: 'wrapper' points to '@as(*const tmp.Wrapper, @ptrCast(&v0)).*', where
24// :7:16: note: 'wrapper' points to 'v0', where
2525// :16:5: note: 'v0.ptr' points to comptime var declared here
2626// :17:29: note: called at comptime here
test/cases/compile_errors/direct_struct_loop.zig+1-1
......@@ -7,4 +7,4 @@ export fn entry() usize {
77
88// error
99//
10// :1:11: error: struct 'tmp.A' depends on itself
10// :2:8: error: type 'tmp.A' depends on itself for field declared here
test/cases/compile_errors/directly_embedding_opaque_type_in_struct_and_union.zig+4-2
......@@ -26,9 +26,11 @@ export fn d() void {
2626
2727// error
2828//
29// :3:8: error: opaque types have unknown size and therefore cannot be directly embedded in structs
29// :3:8: error: cannot directly embed opaque type 'tmp.O' in struct
30// :3:8: note: opaque types have unknown size
3031// :1:11: note: opaque declared here
31// :7:10: error: opaque types have unknown size and therefore cannot be directly embedded in unions
32// :7:10: error: cannot directly embed opaque type 'tmp.O' in union
33// :7:10: note: opaque types have unknown size
3234// :1:11: note: opaque declared here
3335// :18:24: error: cannot cast to opaque type 'tmp.O'
3436// :1:11: note: opaque declared here
test/cases/compile_errors/enum_field_value_references_enum.zig+4-8
......@@ -1,15 +1,11 @@
11pub const Foo = enum(c_int) {
2 A = Foo.B,
3 C = D,
4
5 pub const B = 0;
2 a = 10,
3 b = @intFromEnum(Foo.a) - 1,
64};
75export fn entry() void {
8 const s: Foo = Foo.E;
9 _ = s;
6 _ = @as(Foo, .a);
107}
11const D = 1;
128
139// error
1410//
15// :1:5: error: dependency loop detected
11// :3:25: error: type 'tmp.Foo' depends on itself for field usage here
test/cases/compile_errors/enum_field_value_references_nonexistent_circular.zig+1-1
......@@ -10,4 +10,4 @@ const D = 1;
1010
1111// error
1212//
13// :1:5: error: dependency loop detected
13// :2:12: error: type 'tmp.Foo' depends on itself for field usage here
test/cases/compile_errors/enum_value_already_taken.zig+2-2
......@@ -12,5 +12,5 @@ export fn entry() void {
1212
1313// error
1414//
15// :6:9: error: enum tag value 60 already taken
16// :4:9: note: other occurrence here
15// :6:9: error: enum tag value '60' for field 'E' already taken
16// :4:9: note: previous occurrence in field 'C'
test/cases/compile_errors/error_set_membership.zig+2-1
......@@ -26,5 +26,6 @@ pub fn main() Error!void {
2626// error
2727// target=x86_64-linux
2828//
29// :23:29: error: expected type 'error{InvalidCharacter}', found '@typeInfo(@typeInfo(@TypeOf(tmp.fooey)).@"fn".return_type.?).error_union.error_set'
29// :23:29: error: expected type 'error{InvalidCharacter}!void', found '@typeInfo(@typeInfo(@TypeOf(tmp.fooey)).@"fn".return_type.?).error_union.error_set'
3030// :23:29: note: 'error.InvalidDirection' not a member of destination error set
31// :22:20: note: function return type declared here
test/cases/compile_errors/fn_body_in_struct_runtime_known.zig created+17
......@@ -0,0 +1,17 @@
1const S1 = struct {
2 a: S2,
3};
4const S2 = struct {
5 b: fn () void,
6};
7pub export fn entry() void {
8 var s: S1 = undefined;
9 _ = &s;
10}
11
12// error
13//
14// :8:12: error: variable of type 'tmp.S1' must be const or comptime
15// :2:8: note: struct requires comptime because of this field
16// :5:8: note: struct requires comptime because of this field
17// :5:8: note: use '*const fn () void' for a function pointer type
test/cases/compile_errors/function_ptr_alignment.zig+1-1
......@@ -11,5 +11,5 @@ comptime {
1111// error
1212// target=x86_64-linux
1313//
14// :8:41: error: expected type '*align(2) const fn () void', found '*const fn () void'
14// :8:41: error: expected type '*align(2) const fn () void', found '*align(1) const fn () void'
1515// :8:41: note: pointer alignment '1' cannot cast into pointer alignment '2'
test/cases/compile_errors/function_with_non-extern_non-packed_struct_parameter.zig+1-1
......@@ -11,5 +11,5 @@ export fn entry(foo: Foo) void {
1111// target=x86_64-linux
1212//
1313// :6:17: error: parameter of type 'tmp.Foo' not allowed in function with calling convention 'x86_64_sysv'
14// :6:17: note: only extern structs and ABI sized packed structs are extern compatible
14// :6:17: note: struct with automatic layout has no guaranteed in-memory representation
1515// :1:13: note: struct declared here
test/cases/compile_errors/function_with_non-extern_non-packed_union_parameter.zig+1-1
......@@ -11,5 +11,5 @@ export fn entry(foo: Foo) void {
1111// target=x86_64-linux
1212//
1313// :6:17: error: parameter of type 'tmp.Foo' not allowed in function with calling convention 'x86_64_sysv'
14// :6:17: note: only extern unions and ABI sized packed unions are extern compatible
14// :6:17: note: union with automatic layout has no guaranteed in-memory representation
1515// :1:13: note: union declared here
test/cases/compile_errors/generic_function_returning_opaque_type.zig+1-1
......@@ -11,6 +11,6 @@ export fn bar() void {
1111
1212// error
1313//
14// :1:30: error: opaque return type 'anyopaque' not allowed
1415// :1:30: error: opaque return type 'tmp.MyOpaque' not allowed
1516// :4:18: note: opaque declared here
16// :1:30: error: opaque return type 'anyopaque' not allowed
test/cases/compile_errors/indexing_an_array_of_size_zero.zig+1-1
......@@ -6,4 +6,4 @@ export fn foo() void {
66
77// error
88//
9// :3:27: error: indexing into empty array is not allowed
9// :3:27: error: cannot index into empty array
test/cases/compile_errors/indexing_an_array_of_size_zero_with_runtime_index.zig+1-1
......@@ -8,4 +8,4 @@ export fn foo() void {
88
99// error
1010//
11// :5:27: error: indexing into empty array is not allowed
11// :5:27: error: cannot index into empty array
test/cases/compile_errors/indirect_struct_loop.zig+5-1
......@@ -13,4 +13,8 @@ export fn entry() usize {
1313
1414// error
1515//
16// :1:11: error: struct 'tmp.A' depends on itself
16// error: dependency loop with length 3
17// :2:8: note: type 'tmp.A' depends on type 'tmp.B' for field declared here
18// :5:8: note: type 'tmp.B' depends on type 'tmp.C' for field declared here
19// :8:8: note: type 'tmp.C' depends on type 'tmp.A' for field declared here
20// note: eliminate any one of these dependencies to break the loop
test/cases/compile_errors/initialize_empty_union.zig+18-18
......@@ -49,33 +49,33 @@ export fn deref5(ptr: *const U5) void {
4949
5050// error
5151//
52// :13:17: error: expected type 'initialize_empty_union.U0', found '@TypeOf(undefined)'
53// :13:17: note: cannot coerce to uninstantiable type 'initialize_empty_union.U0'
52// :13:17: error: expected type 'tmp.U0', found '@TypeOf(undefined)'
53// :13:17: note: cannot coerce to uninstantiable type 'tmp.U0'
5454// :5:12: note: union declared here
55// :16:17: error: expected type 'initialize_empty_union.U1', found '@TypeOf(undefined)'
56// :16:17: note: cannot coerce to uninstantiable type 'initialize_empty_union.U1'
55// :16:17: error: expected type 'tmp.U1', found '@TypeOf(undefined)'
56// :16:17: note: cannot coerce to uninstantiable type 'tmp.U1'
5757// :6:12: note: union declared here
58// :19:17: error: expected type 'initialize_empty_union.U2', found '@TypeOf(undefined)'
59// :19:17: note: cannot coerce to uninstantiable type 'initialize_empty_union.U2'
58// :19:17: error: expected type 'tmp.U2', found '@TypeOf(undefined)'
59// :19:17: note: cannot coerce to uninstantiable type 'tmp.U2'
6060// :7:12: note: union declared here
61// :22:17: error: expected type 'initialize_empty_union.U3', found '@TypeOf(undefined)'
62// :22:17: note: cannot coerce to uninstantiable type 'initialize_empty_union.U3'
61// :22:17: error: expected type 'tmp.U3', found '@TypeOf(undefined)'
62// :22:17: note: cannot coerce to uninstantiable type 'tmp.U3'
6363// :8:12: note: union declared here
64// :25:17: error: expected type 'initialize_empty_union.U4', found '@TypeOf(undefined)'
65// :25:17: note: cannot coerce to uninstantiable type 'initialize_empty_union.U4'
64// :25:17: error: expected type 'tmp.U4', found '@TypeOf(undefined)'
65// :25:17: note: cannot coerce to uninstantiable type 'tmp.U4'
6666// :9:12: note: union declared here
67// :28:17: error: expected type 'initialize_empty_union.U5', found '@TypeOf(undefined)'
68// :28:17: note: cannot coerce to uninstantiable type 'initialize_empty_union.U5'
67// :28:17: error: expected type 'tmp.U5', found '@TypeOf(undefined)'
68// :28:17: note: cannot coerce to uninstantiable type 'tmp.U5'
6969// :10:12: note: union declared here
70// :32:12: error: cannot load uninstantiable type 'initialize_empty_union.U0'
70// :32:12: error: cannot load uninstantiable type 'tmp.U0'
7171// :5:12: note: union declared here
72// :35:12: error: cannot load uninstantiable type 'initialize_empty_union.U1'
72// :35:12: error: cannot load uninstantiable type 'tmp.U1'
7373// :6:12: note: union declared here
74// :38:12: error: cannot load uninstantiable type 'initialize_empty_union.U2'
74// :38:12: error: cannot load uninstantiable type 'tmp.U2'
7575// :7:12: note: union declared here
76// :41:12: error: cannot load uninstantiable type 'initialize_empty_union.U3'
76// :41:12: error: cannot load uninstantiable type 'tmp.U3'
7777// :8:12: note: union declared here
78// :44:12: error: cannot load uninstantiable type 'initialize_empty_union.U4'
78// :44:12: error: cannot load uninstantiable type 'tmp.U4'
7979// :9:12: note: union declared here
80// :47:12: error: cannot load uninstantiable type 'initialize_empty_union.U5'
80// :47:12: error: cannot load uninstantiable type 'tmp.U5'
8181// :10:12: note: union declared here
test/cases/compile_errors/instantiating_an_undefined_value_for_an_invalid_struct_that_contains_itself.zig+1-1
......@@ -10,4 +10,4 @@ export fn entry() usize {
1010
1111// error
1212//
13// :1:13: error: struct 'tmp.Foo' depends on itself
13// :2:8: error: type 'tmp.Foo' depends on itself for field declared here
test/cases/compile_errors/instantiating_an_undefined_value_for_an_invalid_union_that_contains_itself.zig+1-1
......@@ -10,4 +10,4 @@ export fn entry() usize {
1010
1111// error
1212//
13// :1:13: error: union 'tmp.Foo' depends on itself
13// :2:8: error: type 'tmp.Foo' depends on itself for field declared here
test/cases/compile_errors/invalid_dependency_on_struct_size.zig+12-10
......@@ -1,16 +1,18 @@
1comptime {
2 const S = struct {
3 const Foo = struct {
4 y: Bar,
5 };
6 const Bar = struct {
7 y: if (@sizeOf(Foo) == 0) u64 else void,
8 };
1const S = struct {
2 const Foo = struct {
3 y: Bar,
94 };
10
5 const Bar = struct {
6 y: if (@sizeOf(Foo) == 0) u64 else void,
7 };
8};
9comptime {
1110 _ = @sizeOf(S.Foo) + 1;
1211}
1312
1413// error
1514//
16// :6:21: error: struct layout depends on it having runtime bits
15// error: dependency loop with length 2
16// :3:12: note: type 'tmp.S.Foo' depends on type 'tmp.S.Bar' for field declared here
17// :6:24: note: type 'tmp.S.Bar' depends on type 'tmp.S.Foo' for size query here
18// note: eliminate any one of these dependencies to break the loop
test/cases/compile_errors/invalid_optional_type_in_extern_struct.zig+2-2
......@@ -2,10 +2,10 @@ const stroo = extern struct {
22 moo: ?[*c]u8,
33};
44export fn testf(fluff: *stroo) void {
5 _ = fluff;
5 _ = fluff.*;
66}
77
88// error
99//
1010// :2:10: error: extern structs cannot contain fields of type '?[*c]u8'
11// :2:10: note: only pointer like optionals are extern compatible
11// :2:10: note: non-pointer optionals have no guaranteed in-memory representation
test/cases/compile_errors/invalid_pointer_arithmetic.zig+1-7
......@@ -26,11 +26,6 @@ comptime {
2626 _ = x - y;
2727}
2828
29comptime {
30 const x: [*]u0 = @ptrFromInt(1);
31 _ = x + 1;
32}
33
3429comptime {
3530 const x: *u0 = @ptrFromInt(1);
3631 const y: *u0 = @ptrFromInt(2);
......@@ -46,5 +41,4 @@ comptime {
4641// :12:11: error: invalid operands to binary expression: 'pointer' and 'pointer'
4742// :20:11: error: incompatible pointer arithmetic operands '[*]u8' and '[*]u16'
4843// :26:11: error: incompatible pointer arithmetic operands '*u8' and '*u16'
49// :31:11: error: pointer arithmetic requires element type 'u0' to have runtime bits
50// :37:11: error: pointer arithmetic requires element type 'u0' to have runtime bits
44// :32:11: error: pointer subtraction requires element type 'u0' to have runtime bits
test/cases/compile_errors/invalid_type_in_builtin_extern.zig+10-4
......@@ -1,16 +1,22 @@
11const x = @extern(*comptime_int, .{ .name = "foo" });
22const y = @extern(*fn (u8) u8, .{ .name = "bar" });
3pub export fn entry() void {
3const z = @extern(*fn (u8) callconv(.c) u8, .{ .name = "bar" });
4comptime {
45 _ = x;
56}
6pub export fn entry2() void {
7comptime {
78 _ = y;
89}
10comptime {
11 _ = z;
12}
913
1014// error
1115//
1216// :1:19: error: extern symbol cannot have type '*comptime_int'
13// :1:19: note: pointer to comptime-only type 'comptime_int'
17// :1:19: note: pointer element type 'comptime_int' is not extern compatible
1418// :2:19: error: extern symbol cannot have type '*fn (u8) u8'
15// :2:19: note: pointer to extern function must be 'const'
19// :2:19: note: pointer element type 'fn (u8) u8' is not extern compatible
1620// :2:19: note: extern function must specify calling convention
21// :3:19: error: extern symbol cannot have type '*fn (u8) callconv(.c) u8'
22// :3:19: note: pointer to extern function must be 'const'
test/cases/compile_errors/non-const_variables_of_things_that_require_const_variables.zig+18-23
......@@ -1,49 +1,44 @@
1export fn entry1() void {
2 var m2 = &2;
3 _ = &m2;
4}
5export fn entry2() void {
1export fn entry0() void {
62 var a = undefined;
73 _ = &a;
84}
9export fn entry3() void {
5export fn entry1() void {
106 var b = 1;
117 _ = &b;
128}
13export fn entry4() void {
9export fn entry2() void {
1410 var c = 1.0;
1511 _ = &c;
1612}
17export fn entry5() void {
13export fn entry3() void {
1814 var d = null;
1915 _ = &d;
2016}
21export fn entry6(opaque_: *Opaque) void {
17export fn entry4(opaque_: *Opaque) void {
2218 var e = opaque_.*;
2319 _ = &e;
2420}
25export fn entry7() void {
21export fn entry5() void {
2622 var f = i32;
2723 _ = &f;
2824}
2925const Opaque = opaque {};
30export fn entry8() void {
26export fn entry6() void {
3127 var e: Opaque = undefined;
3228 _ = &e;
3329}
3430
3531// error
3632//
37// :2:9: error: variable of type '*const comptime_int' must be const or comptime
38// :6:9: error: variable of type '@TypeOf(undefined)' must be const or comptime
39// :10:9: error: variable of type 'comptime_int' must be const or comptime
33// :2:9: error: variable of type '@TypeOf(undefined)' must be const or comptime
34// :6:9: error: variable of type 'comptime_int' must be const or comptime
35// :6:9: note: to modify this variable at runtime, it must be given an explicit fixed-size number type
36// :10:9: error: variable of type 'comptime_float' must be const or comptime
4037// :10:9: note: to modify this variable at runtime, it must be given an explicit fixed-size number type
41// :14:9: error: variable of type 'comptime_float' must be const or comptime
42// :14:9: note: to modify this variable at runtime, it must be given an explicit fixed-size number type
43// :18:9: error: variable of type '@TypeOf(null)' must be const or comptime
44// :22:20: error: cannot load opaque type 'tmp.Opaque'
45// :29:16: note: opaque declared here
46// :26:9: error: variable of type 'type' must be const or comptime
47// :26:9: note: types are not available at runtime
48// :31:12: error: non-extern variable with opaque type 'tmp.Opaque'
49// :29:16: note: opaque declared here
38// :14:9: error: variable of type '@TypeOf(null)' must be const or comptime
39// :18:20: error: cannot load opaque type 'tmp.Opaque'
40// :25:16: note: opaque declared here
41// :22:9: error: variable of type 'type' must be const or comptime
42// :22:9: note: types are not available at runtime
43// :27:12: error: non-extern variable with opaque type 'tmp.Opaque'
44// :25:16: note: opaque declared here
test/cases/compile_errors/non-exhaustive_enum_marker_assigned_a_value.zig-11
......@@ -3,18 +3,7 @@ const A = enum {
33 b,
44 _ = 1,
55};
6const B = enum {
7 a,
8 b,
9 _,
10};
11comptime {
12 _ = A;
13 _ = B;
14}
156
167// error
178//
189// :4:9: error: '_' is used to mark an enum as non-exhaustive and cannot be assigned a value
19// :6:11: error: non-exhaustive enum missing integer tag type
20// :9:5: note: marked non-exhaustive here
test/cases/compile_errors/non-exhaustive_enum_missing_tag_type.zig created+10
......@@ -0,0 +1,10 @@
1const E = enum {
2 a,
3 b,
4 _,
5};
6
7// error
8//
9// :1:11: error: non-exhaustive enum missing integer tag type
10// :4:5: note: marked non-exhaustive here
test/cases/compile_errors/non-exhaustive_enum_specifies_every_value.zig+1-1
......@@ -4,7 +4,7 @@ const C = enum(u1) {
44 _,
55};
66pub export fn entry() void {
7 _ = C;
7 _ = C.a;
88}
99
1010// error
test/cases/compile_errors/non-inline_for_loop_on_a_type_that_requires_comptime.zig+1-1
......@@ -11,6 +11,6 @@ export fn entry() void {
1111
1212// error
1313//
14// :7:10: error: values of type '[2]tmp.Foo' must be comptime-known, but index value is runtime-known
14// :7:10: error: values of type 'tmp.Foo' must be comptime-known, but index value is runtime-known
1515// :3:8: note: struct requires comptime because of this field
1616// :3:8: note: types are not available at runtime
test/cases/compile_errors/non_constant_expression_in_array_size.zig+1-1
......@@ -14,4 +14,4 @@ export fn entry() usize {
1414//
1515// :6:12: error: unable to resolve comptime value
1616// :2:12: note: called at comptime from here
17// :1:13: note: types must be comptime-known
17// :2:8: note: struct field types must be comptime-known
test/cases/compile_errors/noreturn_struct_field.zig deleted-10
......@@ -1,10 +0,0 @@
1const S = struct {
2 s: noreturn,
3};
4comptime {
5 _ = @typeInfo(S);
6}
7
8// error
9//
10// :2:8: error: struct fields cannot be 'noreturn'
test/cases/compile_errors/old_fn_ptr_in_extern_context.zig-6
......@@ -4,15 +4,9 @@ const S = extern struct {
44comptime {
55 _ = @sizeOf(S) == 1;
66}
7comptime {
8 _ = [*c][4]fn () callconv(.c) void;
9}
107
118// error
129//
1310// :2:8: error: extern structs cannot contain fields of type 'fn () callconv(.c) void'
1411// :2:8: note: type has no guaranteed in-memory representation
1512// :2:8: note: use '*const ' to make a function pointer type
16// :8:13: error: C pointers cannot point to non-C-ABI-compatible type '[4]fn () callconv(.c) void'
17// :8:13: note: type has no guaranteed in-memory representation
18// :8:13: note: use '*const ' to make a function pointer type
test/cases/compile_errors/overflow_in_enum_value_allocation.zig+1-1
......@@ -9,4 +9,4 @@ pub export fn entry() void {
99
1010// error
1111//
12// :3:5: error: enumeration value '256' too large for type 'u8'
12// :3:5: error: enum tag value '256' too large for type 'u8'
test/cases/compile_errors/packed_struct_backing_int_wrong.zig+6-2
......@@ -44,8 +44,12 @@ export fn entry7() void {
4444
4545// error
4646//
47// :2:31: error: backing integer type 'u32' has bit size 32 but the struct fields have a total bit size of 29
48// :9:31: error: backing integer type 'i31' has bit size 31 but the struct fields have a total bit size of 32
47// :2:24: error: backing integer bit width does not match total bit width of fields
48// :2:31: note: backing integer 'u32' has bit width '32'
49// :2:24: note: struct fields have total bit width '29'
50// :9:24: error: backing integer bit width does not match total bit width of fields
51// :9:31: note: backing integer 'i31' has bit width '31'
52// :9:24: note: struct fields have total bit width '32'
4953// :17:31: error: expected backing integer type, found 'void'
5054// :23:31: error: expected backing integer type, found 'void'
5155// :27:31: error: expected backing integer type, found 'noreturn'
test/cases/compile_errors/packed_struct_with_fields_of_not_allowed_types.zig+15-12
......@@ -85,29 +85,32 @@ export fn entry15() void {
8585// error
8686//
8787// :3:12: error: packed structs cannot contain fields of type 'anyerror'
88// :3:12: note: type has no guaranteed in-memory representation
88// :3:12: note: type does not have a bit-packed representation
8989// :8:12: error: packed structs cannot contain fields of type '[2]u24'
90// :8:12: note: type has no guaranteed in-memory representation
90// :8:12: note: type does not have a bit-packed representation
9191// :13:20: error: packed structs cannot contain fields of type 'anyerror!u32'
92// :13:20: note: type has no guaranteed in-memory representation
92// :13:20: note: type does not have a bit-packed representation
9393// :18:12: error: packed structs cannot contain fields of type 'tmp.S'
94// :18:12: note: only packed structs layout are allowed in packed types
94// :18:12: note: non-packed structs do not have a bit-packed representation
9595// :56:11: note: struct declared here
9696// :23:12: error: packed structs cannot contain fields of type 'tmp.U'
97// :23:12: note: only packed unions layout are allowed in packed types
97// :23:12: note: non-packed unions do not have a bit-packed representation
9898// :59:18: note: union declared here
9999// :28:12: error: packed structs cannot contain fields of type '?anyerror'
100// :28:12: note: type has no guaranteed in-memory representation
100// :28:12: note: type does not have a bit-packed representation
101101// :38:12: error: packed structs cannot contain fields of type 'fn () void'
102// :38:12: note: type has no guaranteed in-memory representation
103// :38:12: note: use '*const ' to make a function pointer type
102// :38:12: note: type does not have a bit-packed representation
103// :43:12: error: packed structs cannot contain fields of type '*const fn () void'
104// :43:12: note: pointers cannot be directly bitpacked
105// :43:12: note: consider using 'usize' and '@intFromPtr'
104106// :65:31: error: packed structs cannot contain fields of type '[]u8'
105// :65:31: note: slices have no guaranteed in-memory representation
107// :65:31: note: slices do not have a bit-packed representation
106108// :70:12: error: packed structs cannot contain fields of type '*type'
107// :70:12: note: comptime-only pointer has no guaranteed in-memory representation
108// :70:12: note: types are not available at runtime
109// :70:12: note: pointers cannot be directly bitpacked
110// :70:12: note: consider using 'usize' and '@intFromPtr'
109111// :76:12: error: packed structs cannot contain fields of type 'tmp.entry14.E'
110// :74:15: note: enum declared here
112// :74:15: note: integer tag type of enum is inferred
113// :74:15: note: consider explicitly specifying the integer tag type
111114// :81:12: error: packed structs cannot contain fields of type '*const u32'
112115// :81:12: note: pointers cannot be directly bitpacked
113116// :81:12: note: consider using 'usize' and '@intFromPtr'
test/cases/compile_errors/packed_union_fields_mismatch.zig+6-4
......@@ -1,12 +1,14 @@
11export fn entry1() void {
2 _ = packed union {
2 const U = packed union {
33 a: u1,
44 b: u2,
55 };
6 _ = @as(U, undefined);
67}
78
89// error
910//
10// :2:16: error: packed union has fields with mismatching bit sizes
11// :3:12: note: 1 bits here
12// :4:12: note: 2 bits here
11// :4:12: error: field bit width does not match earlier field
12// :4:12: note: field type 'u2' has bit width '2'
13// :3:12: note: other field type 'u1' has bit width '1'
14// :4:12: note: all fields in a packed union must have the same bit width
test/cases/compile_errors/packed_union_given_enum_tag_type.zig deleted-18
......@@ -1,18 +0,0 @@
1const Letter = enum {
2 A,
3 B,
4 C,
5};
6const Payload = packed union(Letter) {
7 A: i32,
8 B: f64,
9 C: bool,
10};
11export fn entry() void {
12 const a: Payload = .{ .A = 1234 };
13 _ = a;
14}
15
16// error
17//
18// :6:30: error: packed union does not support enum tag type
test/cases/compile_errors/packed_union_with_fields_of_not_allowed_types.zig+8-7
......@@ -1,6 +1,7 @@
1const S = struct { a: u32 };
12export fn entry0() void {
23 _ = @sizeOf(packed union {
3 foo: struct { a: u32 },
4 foo: S,
45 bar: bool,
56 });
67}
......@@ -12,9 +13,9 @@ export fn entry1() void {
1213
1314// error
1415//
15// :3:14: error: packed unions cannot contain fields of type 'packed_union_with_fields_of_not_allowed_types.entry0__union_180__struct_182'
16// :3:14: note: non-packed structs do not have a bit-packed representation
17// :3:14: note: struct declared here
18// :9:12: error: packed unions cannot contain fields of type '*const u32'
19// :9:12: note: pointers cannot be directly bitpacked
20// :9:12: note: consider using 'usize' and '@intFromPtr'
16// :4:14: error: packed unions cannot contain fields of type 'tmp.S'
17// :4:14: note: non-packed structs do not have a bit-packed representation
18// :1:11: note: struct declared here
19// :10:12: error: packed unions cannot contain fields of type '*const u32'
20// :10:12: note: pointers cannot be directly bitpacked
21// :10:12: note: consider using 'usize' and '@intFromPtr'
test/cases/compile_errors/pointer_in_bitpack.zig created+22
......@@ -0,0 +1,22 @@
1const S = packed struct {
2 ptr: *u32,
3};
4export fn foo() void {
5 _ = @as(S, undefined);
6}
7
8const U = packed union {
9 ptr: *u32,
10};
11export fn bar() void {
12 _ = @as(U, undefined);
13}
14
15// error
16//
17// :2:10: error: packed structs cannot contain fields of type '*u32'
18// :2:10: note: pointers cannot be directly bitpacked
19// :2:10: note: consider using 'usize' and '@intFromPtr'
20// :9:10: error: packed unions cannot contain fields of type '*u32'
21// :9:10: note: pointers cannot be directly bitpacked
22// :9:10: note: consider using 'usize' and '@intFromPtr'
test/cases/compile_errors/reify_enum_with_duplicate_field.zig+4-3
......@@ -1,8 +1,9 @@
11export fn entry() void {
2 _ = @Enum(u32, .nonexhaustive, &.{ "A", "A" }, &.{ 0, 1 });
2 const E = @Enum(u32, .nonexhaustive, &.{ "A", "A" }, &.{ 0, 1 });
3 _ = @as(E, undefined);
34}
45
56// error
67//
7// :2:36: error: duplicate enum field 'A'
8// :2:36: note: other field here
8// :2:42: error: duplicate enum field 'A' at index '1'
9// :2:42: note: previous field at index '0'
test/cases/compile_errors/reify_enum_with_duplicate_tag_value.zig+4-3
......@@ -1,8 +1,9 @@
11export fn entry() void {
2 _ = @Enum(u32, .nonexhaustive, &.{ "A", "B" }, &.{ 10, 10 });
2 const E = @Enum(u32, .nonexhaustive, &.{ "a", "b" }, &.{ 10, 10 });
3 _ = E.a;
34}
45
56// error
67//
7// :2:52: error: enum tag value 10 already taken
8// :2:52: note: other enum tag value here
8// :2:58: error: enum tag value '10' for field 'b' already taken
9// :2:58: note: previous occurrence in field 'a'
test/cases/compile_errors/reify_type_for_exhaustive_enum_with_non-integer_tag_type.zig+1-1
......@@ -5,4 +5,4 @@ export fn entry() void {
55
66// error
77//
8// :1:19: error: tag type must be an integer type
8// :1:19: error: expected integer tag type, found 'bool'
test/cases/compile_errors/reify_type_for_tagged_packed_union.zig deleted-11
......@@ -1,11 +0,0 @@
1const Tag = @Enum(u2, .exhaustive, &.{ "signed", "unsigned" }, &.{ 0, 1 });
2const Packed = @Union(.@"packed", Tag, &.{ "signed", "unsigned" }, &.{ i32, u32 }, &@splat(.{}));
3
4export fn entry() void {
5 const tagged: Packed = .{ .signed = -1 };
6 _ = tagged;
7}
8
9// error
10//
11// :2:35: error: packed union does not support enum tag type
test/cases/compile_errors/reify_type_for_tagged_union_with_extra_enum_field.zig+2-3
......@@ -7,6 +7,5 @@ export fn entry() void {
77
88// error
99//
10// :2:35: error: 1 enum fields missing in union
11// :1:13: note: field 'arst' missing, declared here
12// :1:13: note: enum declared here
10// :2:16: error: enum field 'arst' missing from union
11// :1:36: note: enum field here
test/cases/compile_errors/reify_type_for_tagged_union_with_no_union_fields.zig+2-4
......@@ -7,7 +7,5 @@ export fn entry() void {
77
88// error
99//
10// :2:35: error: 2 enum fields missing in union
11// :1:13: note: field 'signed' missing, declared here
12// :1:13: note: field 'unsigned' missing, declared here
13// :1:13: note: enum declared here
10// :2:16: error: enum field 'signed' missing from union
11// :1:36: note: enum field here
test/cases/compile_errors/reify_type_for_union_with_opaque_field.zig+5-3
......@@ -1,9 +1,11 @@
1const Untagged = @Union(.auto, null, &.{"foo"}, &.{opaque {}}, &.{.{}});
1const Opaque = opaque {};
2const Untagged = @Union(.auto, null, &.{"foo"}, &.{Opaque}, &.{.{}});
23export fn entry() usize {
34 return @sizeOf(Untagged);
45}
56
67// error
78//
8// :1:49: error: opaque types have unknown size and therefore cannot be directly embedded in unions
9// :1:52: note: opaque declared here
9// :2:49: error: cannot directly embed opaque type 'tmp.Opaque' in union
10// :2:49: note: opaque types have unknown size
11// :1:16: note: opaque declared here
test/cases/compile_errors/reify_type_with_invalid_field_alignment.zig+6-2
......@@ -2,7 +2,11 @@ comptime {
22 _ = @Union(.auto, null, &.{"foo"}, &.{usize}, &.{.{ .@"align" = 3 }});
33}
44comptime {
5 _ = @Struct(.auto, null, &.{"a"}, &.{u32}, &.{.{ .@"comptime" = true, .@"align" = 5 }});
5 _ = @Struct(.auto, null, &.{"a"}, &.{u32}, &.{.{
6 .@"comptime" = true,
7 .@"align" = 5,
8 .default_value_ptr = &@as(u32, 0),
9 }});
610}
711comptime {
812 _ = @Pointer(.many, .{ .@"align" = 7 }, u8, null);
......@@ -12,4 +16,4 @@ comptime {
1216//
1317// :2:51: error: alignment value '3' is not a power of two
1418// :5:48: error: alignment value '5' is not a power of two
15// :8:26: error: alignment value '7' is not a power of two
19// :12:26: error: alignment value '7' is not a power of two
test/cases/compile_errors/resolve_inferred_error_set_of_generic_fn.zig+1-2
......@@ -12,5 +12,4 @@ export fn entry() void {
1212
1313// error
1414//
15// :10:15: error: unable to resolve inferred error set of generic function
16// :1:1: note: generic function declared here
15// :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'
test/cases/compile_errors/runtime_@ptrFromInt_to_comptime_only_type.zig+2-3
......@@ -10,6 +10,5 @@ pub export fn callbackFin(id: c_int, arg: ?*anyopaque) void {
1010
1111// error
1212//
13// :5:54: error: pointer to comptime-only type '?*tmp.GuSettings' must be comptime-known, but operand is runtime-known
14// :2:10: note: struct requires comptime because of this field
15// :2:10: note: use '*const fn (c_int) callconv(.c) void' for a function pointer type
13// :6:19: error: cannot load comptime-only type '?fn (c_int) callconv(.c) void'
14// :6:20: note: pointer of type '*?fn (c_int) callconv(.c) void' is runtime-known
test/cases/compile_errors/runtime_index_into_comptime_only_many_ptr.zig+3-3
......@@ -1,10 +1,10 @@
11var rt: usize = 0;
22export fn foo() void {
33 const x: [*]const type = &.{ u8, u16 };
4 _ = &x[rt];
4 _ = x[rt];
55}
66
77// error
88//
9// :4:12: error: values of type '[*]const type' must be comptime-known, but index value is runtime-known
10// :4:11: note: types are not available at runtime
9// :4:11: error: values of type 'type' must be comptime-known, but index value is runtime-known
10// :4:10: note: types are not available at runtime
test/cases/compile_errors/runtime_index_into_comptime_type_slice.zig+1-2
......@@ -12,7 +12,6 @@ export fn entry() void {
1212
1313// error
1414//
15// :9:54: error: values of type '[]const builtin.Type.StructField' must be comptime-known, but index value is runtime-known
15// :9:54: error: values of type 'builtin.Type.StructField' must be comptime-known, but index value is runtime-known
1616// : note: struct requires comptime because of this field
1717// : note: types are not available at runtime
18// : struct requires comptime because of this field
test/cases/compile_errors/runtime_indexing_comptime_array.zig+3-3
......@@ -24,9 +24,9 @@ pub export fn entry3() void {
2424}
2525// error
2626//
27// :7:10: error: values of type '[2]fn () void' must be comptime-known, but index value is runtime-known
27// :7:10: error: values of type 'fn () void' must be comptime-known, but index value is runtime-known
2828// :7:10: note: use '*const fn () void' for a function pointer type
29// :15:18: error: values of type '[2]fn () void' must be comptime-known, but index value is runtime-known
29// :15:18: error: values of type 'fn () void' must be comptime-known, but index value is runtime-known
3030// :15:17: note: use '*const fn () void' for a function pointer type
31// :22:19: error: values of type '[2]fn () void' must be comptime-known, but index value is runtime-known
31// :22:19: error: values of type 'fn () void' must be comptime-known, but index value is runtime-known
3232// :22:18: note: use '*const fn () void' for a function pointer type
test/cases/compile_errors/runtime_operation_in_comptime_scope.zig+4-4
......@@ -25,13 +25,13 @@ var rt: u32 = undefined;
2525//
2626// :19:8: error: unable to evaluate comptime expression
2727// :19:5: note: operation is runtime due to this operand
28// :6:8: note: called at comptime from here
29// :5:1: note: 'comptime' keyword forces comptime evaluation
30// :19:8: error: unable to evaluate comptime expression
31// :19:5: note: operation is runtime due to this operand
2832// :14:8: note: called at comptime from here
2933// :10:12: note: called at comptime from here
3034// :10:12: note: call to function with comptime-only return type 'type' is evaluated at comptime
3135// :13:10: note: return type declared here
3236// :10:12: note: types are not available at runtime
3337// :2:8: note: called inline here
34// :19:8: error: unable to evaluate comptime expression
35// :19:5: note: operation is runtime due to this operand
36// :6:8: note: called at comptime from here
37// :5:1: note: 'comptime' keyword forces comptime evaluation
test/cases/compile_errors/self_referential_struct_requires_comptime.zig-1
......@@ -12,4 +12,3 @@ pub export fn entry() void {
1212// :6:12: error: variable of type 'tmp.S' must be const or comptime
1313// :2:8: note: struct requires comptime because of this field
1414// :2:8: note: use '*const fn () void' for a function pointer type
15// :3:8: note: struct requires comptime because of this field
test/cases/compile_errors/self_referential_union_requires_comptime.zig-1
......@@ -12,4 +12,3 @@ pub export fn entry() void {
1212// :6:12: error: variable of type 'tmp.U' must be const or comptime
1313// :2:8: note: union requires comptime because of this field
1414// :2:8: note: use '*const fn () void' for a function pointer type
15// :3:8: note: union requires comptime because of this field
test/cases/compile_errors/sizeOf_bad_type.zig+2
......@@ -22,4 +22,6 @@ export fn entry4() usize {
2222// :5:20: error: no size available for comptime-only type 'comptime_int'
2323// :8:20: error: no size available for uninstantiable type 'noreturn'
2424// :12:20: error: no size available for comptime-only type 'tmp.S3'
25// :10:12: note: struct declared here
2526// :16:20: error: no size available for uninstantiable type 'tmp.S4'
27// :14:12: note: struct declared here
test/cases/compile_errors/sizeof_alignof_empty_union.zig+12-12
......@@ -49,27 +49,27 @@ export fn align5() void {
4949
5050// error
5151//
52// :13:17: error: no size available for uninstantiable type 'sizeof_alignof_empty_union.U0'
52// :13:17: error: no size available for uninstantiable type 'tmp.U0'
5353// :5:12: note: union declared here
54// :16:17: error: no size available for uninstantiable type 'sizeof_alignof_empty_union.U1'
54// :16:17: error: no size available for uninstantiable type 'tmp.U1'
5555// :6:12: note: union declared here
56// :19:17: error: no size available for uninstantiable type 'sizeof_alignof_empty_union.U2'
56// :19:17: error: no size available for uninstantiable type 'tmp.U2'
5757// :7:12: note: union declared here
58// :22:17: error: no size available for uninstantiable type 'sizeof_alignof_empty_union.U3'
58// :22:17: error: no size available for uninstantiable type 'tmp.U3'
5959// :8:12: note: union declared here
60// :25:17: error: no size available for uninstantiable type 'sizeof_alignof_empty_union.U4'
60// :25:17: error: no size available for uninstantiable type 'tmp.U4'
6161// :9:12: note: union declared here
62// :28:17: error: no size available for uninstantiable type 'sizeof_alignof_empty_union.U5'
62// :28:17: error: no size available for uninstantiable type 'tmp.U5'
6363// :10:12: note: union declared here
64// :32:18: error: no align available for uninstantiable type 'sizeof_alignof_empty_union.U0'
64// :32:18: error: no align available for uninstantiable type 'tmp.U0'
6565// :5:12: note: union declared here
66// :35:18: error: no align available for uninstantiable type 'sizeof_alignof_empty_union.U1'
66// :35:18: error: no align available for uninstantiable type 'tmp.U1'
6767// :6:12: note: union declared here
68// :38:18: error: no align available for uninstantiable type 'sizeof_alignof_empty_union.U2'
68// :38:18: error: no align available for uninstantiable type 'tmp.U2'
6969// :7:12: note: union declared here
70// :41:18: error: no align available for uninstantiable type 'sizeof_alignof_empty_union.U3'
70// :41:18: error: no align available for uninstantiable type 'tmp.U3'
7171// :8:12: note: union declared here
72// :44:18: error: no align available for uninstantiable type 'sizeof_alignof_empty_union.U4'
72// :44:18: error: no align available for uninstantiable type 'tmp.U4'
7373// :9:12: note: union declared here
74// :47:18: error: no align available for uninstantiable type 'sizeof_alignof_empty_union.U5'
74// :47:18: error: no align available for uninstantiable type 'tmp.U5'
7575// :10:12: note: union declared here
test/cases/compile_errors/slice_used_as_extern_fn_param.zig+1-1
......@@ -1,6 +1,6 @@
11extern fn Text(str: []const u8, num: i32) callconv(.c) void;
22export fn entry() void {
3 _ = Text;
3 Text(undefined, undefined);
44}
55
66// error
test/cases/compile_errors/specify_enum_tag_type_that_is_too_small.zig+9-9
......@@ -1,9 +1,9 @@
11const Small = enum(u2) {
2 One,
3 Two,
4 Three,
5 Four,
6 Five,
2 one,
3 two,
4 three,
5 four,
6 five,
77};
88
99const SmallUnion = union(enum(u2)) {
......@@ -14,13 +14,13 @@ const SmallUnion = union(enum(u2)) {
1414};
1515
1616comptime {
17 _ = Small;
17 _ = Small.one;
1818}
1919comptime {
20 _ = SmallUnion;
20 _ = SmallUnion.one;
2121}
2222
2323// error
2424//
25// :6:5: error: enumeration value '4' too large for type 'u2'
26// :13:5: error: enumeration value '4' too large for type 'u2'
25// :6:5: error: enum tag value '4' too large for type 'u2'
26// :13:5: error: enum tag value '4' too large for type 'u2'
test/cases/compile_errors/store_comptime_only_type_to_runtime_pointer.zig+2-9
......@@ -21,22 +21,15 @@ export fn e() void {
2121 p.* = undefined;
2222}
2323
24export fn f() void {
25 const p: **comptime_int = @ptrFromInt(16); // double pointer ('*comptime_int' is comptime-only)
26 p.* = undefined;
27}
28
2924// error
3025//
3126// :3:9: error: cannot store comptime-only type 'fn () void' at runtime
3227// :3:6: note: operation is runtime due to this pointer
3328// :7:11: error: expected type 'anyopaque', found '@TypeOf(undefined)'
34// :7:11: note: cannot coerce to 'anyopaque'
29// :7:11: note: cannot coerce to uninstantiable type 'anyopaque'
3530// :11:12: error: cannot load opaque type 'anyopaque'
3631// :16:11: error: expected type 'tmp.Opaque', found '@TypeOf(undefined)'
37// :16:11: note: cannot coerce to 'tmp.Opaque'
32// :16:11: note: cannot coerce to uninstantiable type 'tmp.Opaque'
3833// :14:16: note: opaque declared here
3934// :21:9: error: cannot store comptime-only type 'comptime_int' at runtime
4035// :21:6: note: operation is runtime due to this pointer
41// :26:9: error: cannot store comptime-only type '*comptime_int' at runtime
42// :26:6: note: operation is runtime due to this pointer
test/cases/compile_errors/struct_depends_on_itself_via_non_initial_field.zig+2-2
......@@ -4,9 +4,9 @@ const A = struct {
44};
55
66comptime {
7 _ = A;
7 _ = @as(A, undefined);
88}
99
1010// error
1111//
12// :1:11: error: struct 'tmp.A' depends on itself
12// :3:21: error: type 'tmp.A' depends on itself for size query here
test/cases/compile_errors/struct_depends_on_itself_via_optional_field.zig+4-1
......@@ -12,4 +12,7 @@ export fn entry() void {
1212
1313// error
1414//
15// :1:17: error: struct 'tmp.LhsExpr' depends on itself
15// error: dependency loop with length 2
16// :2:14: note: type 'tmp.LhsExpr' depends on type 'tmp.AstObject' for field declared here
17// :5:14: note: type 'tmp.AstObject' depends on type 'tmp.LhsExpr' for field declared here
18// note: eliminate any one of these dependencies to break the loop
test/cases/compile_errors/struct_depends_on_pointer_alignment.zig deleted-11
......@@ -1,11 +0,0 @@
1const S = struct {
2 next: ?*align(1) S align(128),
3};
4
5export fn entry() usize {
6 return @alignOf(S);
7}
8
9// error
10//
11// :1:11: error: struct layout depends on being pointer aligned
test/cases/compile_errors/too_big_packed_struct.zig+1-1
......@@ -8,4 +8,4 @@ pub export fn entry() void {
88
99// error
1010//
11// :2:22: error: size of packed struct '131070' exceeds maximum bit width of 65535
11// :2:22: error: packed struct bit width '131070' exceeds maximum bit width of 65535
test/cases/compile_errors/top_level_decl_dependency_loop.zig+6-1
......@@ -7,4 +7,9 @@ export fn entry() void {
77
88// error
99//
10// :1:1: error: dependency loop detected
10// error: dependency loop with length 4
11// :1:23: note: value of declaration 'tmp.a' uses type of declaration 'tmp.a' here
12// :1:18: note: type of declaration 'tmp.a' uses value of declaration 'tmp.b' here
13// :2:23: note: value of declaration 'tmp.b' uses type of declaration 'tmp.b' here
14// :2:18: note: type of declaration 'tmp.b' uses value of declaration 'tmp.a' here
15// note: eliminate any one of these dependencies to break the loop
test/cases/compile_errors/unable_to_evaluate_comptime_expr.zig-19
......@@ -16,22 +16,6 @@ pub export fn entry2() void {
1616 _ = b;
1717}
1818
19const Int = @typeInfo(bar).@"struct".backing_integer.?;
20
21const foo = enum(Int) {
22 c = @bitCast(bar{
23 .name = "test",
24 }),
25};
26
27const bar = packed struct {
28 name: [*:0]const u8,
29};
30
31pub export fn entry3() void {
32 _ = @field(foo, "c");
33}
34
3519// error
3620//
3721// :7:13: error: unable to evaluate comptime expression
......@@ -40,6 +24,3 @@ pub export fn entry3() void {
4024// :13:13: error: unable to evaluate comptime expression
4125// :13:16: note: operation is runtime due to this operand
4226// :13:13: note: initializer of container-level variable must be comptime-known
43// :22:9: error: unable to evaluate comptime expression
44// :22:21: note: operation is runtime due to this operand
45// :21:13: note: enum field values must be comptime-known
test/cases/compile_errors/undef_arith_is_illegal.zig+1508-1508
......@@ -192,50 +192,30 @@ const std = @import("std");
192192// :65:17: error: use of undefined value here causes illegal behavior
193193// :65:17: error: use of undefined value here causes illegal behavior
194194// :65:17: error: use of undefined value here causes illegal behavior
195// :65:17: note: when computing vector element at index '0'
196195// :65:17: error: use of undefined value here causes illegal behavior
197// :65:17: note: when computing vector element at index '0'
198196// :65:17: error: use of undefined value here causes illegal behavior
199// :65:17: note: when computing vector element at index '0'
200197// :65:17: error: use of undefined value here causes illegal behavior
201// :65:17: note: when computing vector element at index '0'
202198// :65:17: error: use of undefined value here causes illegal behavior
203// :65:17: note: when computing vector element at index '1'
204199// :65:17: error: use of undefined value here causes illegal behavior
205// :65:17: note: when computing vector element at index '1'
206200// :65:17: error: use of undefined value here causes illegal behavior
207// :65:17: note: when computing vector element at index '0'
208201// :65:17: error: use of undefined value here causes illegal behavior
209// :65:17: note: when computing vector element at index '0'
210202// :65:17: error: use of undefined value here causes illegal behavior
211// :65:17: note: when computing vector element at index '0'
212203// :65:17: error: use of undefined value here causes illegal behavior
213// :65:17: note: when computing vector element at index '0'
214204// :65:17: error: use of undefined value here causes illegal behavior
215205// :65:17: error: use of undefined value here causes illegal behavior
216206// :65:17: error: use of undefined value here causes illegal behavior
217// :65:17: note: when computing vector element at index '0'
218207// :65:17: error: use of undefined value here causes illegal behavior
219// :65:17: note: when computing vector element at index '0'
220208// :65:17: error: use of undefined value here causes illegal behavior
221// :65:17: note: when computing vector element at index '0'
222209// :65:17: error: use of undefined value here causes illegal behavior
223// :65:17: note: when computing vector element at index '0'
224210// :65:17: error: use of undefined value here causes illegal behavior
225// :65:17: note: when computing vector element at index '1'
226211// :65:17: error: use of undefined value here causes illegal behavior
227// :65:17: note: when computing vector element at index '1'
228212// :65:17: error: use of undefined value here causes illegal behavior
229// :65:17: note: when computing vector element at index '0'
230213// :65:17: error: use of undefined value here causes illegal behavior
231// :65:17: note: when computing vector element at index '0'
232214// :65:17: error: use of undefined value here causes illegal behavior
233215// :65:17: note: when computing vector element at index '0'
234216// :65:17: error: use of undefined value here causes illegal behavior
235217// :65:17: note: when computing vector element at index '0'
236218// :65:17: error: use of undefined value here causes illegal behavior
237// :65:17: error: use of undefined value here causes illegal behavior
238// :65:17: error: use of undefined value here causes illegal behavior
239219// :65:17: note: when computing vector element at index '0'
240220// :65:17: error: use of undefined value here causes illegal behavior
241221// :65:17: note: when computing vector element at index '0'
......@@ -244,10 +224,6 @@ const std = @import("std");
244224// :65:17: error: use of undefined value here causes illegal behavior
245225// :65:17: note: when computing vector element at index '0'
246226// :65:17: error: use of undefined value here causes illegal behavior
247// :65:17: note: when computing vector element at index '1'
248// :65:17: error: use of undefined value here causes illegal behavior
249// :65:17: note: when computing vector element at index '1'
250// :65:17: error: use of undefined value here causes illegal behavior
251227// :65:17: note: when computing vector element at index '0'
252228// :65:17: error: use of undefined value here causes illegal behavior
253229// :65:17: note: when computing vector element at index '0'
......@@ -256,7 +232,9 @@ const std = @import("std");
256232// :65:17: error: use of undefined value here causes illegal behavior
257233// :65:17: note: when computing vector element at index '0'
258234// :65:17: error: use of undefined value here causes illegal behavior
235// :65:17: note: when computing vector element at index '0'
259236// :65:17: error: use of undefined value here causes illegal behavior
237// :65:17: note: when computing vector element at index '0'
260238// :65:17: error: use of undefined value here causes illegal behavior
261239// :65:17: note: when computing vector element at index '0'
262240// :65:17: error: use of undefined value here causes illegal behavior
......@@ -266,9 +244,9 @@ const std = @import("std");
266244// :65:17: error: use of undefined value here causes illegal behavior
267245// :65:17: note: when computing vector element at index '0'
268246// :65:17: error: use of undefined value here causes illegal behavior
269// :65:17: note: when computing vector element at index '1'
247// :65:17: note: when computing vector element at index '0'
270248// :65:17: error: use of undefined value here causes illegal behavior
271// :65:17: note: when computing vector element at index '1'
249// :65:17: note: when computing vector element at index '0'
272250// :65:17: error: use of undefined value here causes illegal behavior
273251// :65:17: note: when computing vector element at index '0'
274252// :65:17: error: use of undefined value here causes illegal behavior
......@@ -278,7 +256,9 @@ const std = @import("std");
278256// :65:17: error: use of undefined value here causes illegal behavior
279257// :65:17: note: when computing vector element at index '0'
280258// :65:17: error: use of undefined value here causes illegal behavior
259// :65:17: note: when computing vector element at index '0'
281260// :65:17: error: use of undefined value here causes illegal behavior
261// :65:17: note: when computing vector element at index '0'
282262// :65:17: error: use of undefined value here causes illegal behavior
283263// :65:17: note: when computing vector element at index '0'
284264// :65:17: error: use of undefined value here causes illegal behavior
......@@ -288,9 +268,9 @@ const std = @import("std");
288268// :65:17: error: use of undefined value here causes illegal behavior
289269// :65:17: note: when computing vector element at index '0'
290270// :65:17: error: use of undefined value here causes illegal behavior
291// :65:17: note: when computing vector element at index '1'
271// :65:17: note: when computing vector element at index '0'
292272// :65:17: error: use of undefined value here causes illegal behavior
293// :65:17: note: when computing vector element at index '1'
273// :65:17: note: when computing vector element at index '0'
294274// :65:17: error: use of undefined value here causes illegal behavior
295275// :65:17: note: when computing vector element at index '0'
296276// :65:17: error: use of undefined value here causes illegal behavior
......@@ -300,7 +280,9 @@ const std = @import("std");
300280// :65:17: error: use of undefined value here causes illegal behavior
301281// :65:17: note: when computing vector element at index '0'
302282// :65:17: error: use of undefined value here causes illegal behavior
283// :65:17: note: when computing vector element at index '0'
303284// :65:17: error: use of undefined value here causes illegal behavior
285// :65:17: note: when computing vector element at index '0'
304286// :65:17: error: use of undefined value here causes illegal behavior
305287// :65:17: note: when computing vector element at index '0'
306288// :65:17: error: use of undefined value here causes illegal behavior
......@@ -310,9 +292,9 @@ const std = @import("std");
310292// :65:17: error: use of undefined value here causes illegal behavior
311293// :65:17: note: when computing vector element at index '0'
312294// :65:17: error: use of undefined value here causes illegal behavior
313// :65:17: note: when computing vector element at index '1'
295// :65:17: note: when computing vector element at index '0'
314296// :65:17: error: use of undefined value here causes illegal behavior
315// :65:17: note: when computing vector element at index '1'
297// :65:17: note: when computing vector element at index '0'
316298// :65:17: error: use of undefined value here causes illegal behavior
317299// :65:17: note: when computing vector element at index '0'
318300// :65:17: error: use of undefined value here causes illegal behavior
......@@ -322,7 +304,9 @@ const std = @import("std");
322304// :65:17: error: use of undefined value here causes illegal behavior
323305// :65:17: note: when computing vector element at index '0'
324306// :65:17: error: use of undefined value here causes illegal behavior
307// :65:17: note: when computing vector element at index '0'
325308// :65:17: error: use of undefined value here causes illegal behavior
309// :65:17: note: when computing vector element at index '0'
326310// :65:17: error: use of undefined value here causes illegal behavior
327311// :65:17: note: when computing vector element at index '0'
328312// :65:17: error: use of undefined value here causes illegal behavior
......@@ -332,9 +316,9 @@ const std = @import("std");
332316// :65:17: error: use of undefined value here causes illegal behavior
333317// :65:17: note: when computing vector element at index '0'
334318// :65:17: error: use of undefined value here causes illegal behavior
335// :65:17: note: when computing vector element at index '1'
319// :65:17: note: when computing vector element at index '0'
336320// :65:17: error: use of undefined value here causes illegal behavior
337// :65:17: note: when computing vector element at index '1'
321// :65:17: note: when computing vector element at index '0'
338322// :65:17: error: use of undefined value here causes illegal behavior
339323// :65:17: note: when computing vector element at index '0'
340324// :65:17: error: use of undefined value here causes illegal behavior
......@@ -344,7 +328,9 @@ const std = @import("std");
344328// :65:17: error: use of undefined value here causes illegal behavior
345329// :65:17: note: when computing vector element at index '0'
346330// :65:17: error: use of undefined value here causes illegal behavior
331// :65:17: note: when computing vector element at index '0'
347332// :65:17: error: use of undefined value here causes illegal behavior
333// :65:17: note: when computing vector element at index '0'
348334// :65:17: error: use of undefined value here causes illegal behavior
349335// :65:17: note: when computing vector element at index '0'
350336// :65:17: error: use of undefined value here causes illegal behavior
......@@ -354,9 +340,9 @@ const std = @import("std");
354340// :65:17: error: use of undefined value here causes illegal behavior
355341// :65:17: note: when computing vector element at index '0'
356342// :65:17: error: use of undefined value here causes illegal behavior
357// :65:17: note: when computing vector element at index '1'
343// :65:17: note: when computing vector element at index '0'
358344// :65:17: error: use of undefined value here causes illegal behavior
359// :65:17: note: when computing vector element at index '1'
345// :65:17: note: when computing vector element at index '0'
360346// :65:17: error: use of undefined value here causes illegal behavior
361347// :65:17: note: when computing vector element at index '0'
362348// :65:17: error: use of undefined value here causes illegal behavior
......@@ -366,7 +352,9 @@ const std = @import("std");
366352// :65:17: error: use of undefined value here causes illegal behavior
367353// :65:17: note: when computing vector element at index '0'
368354// :65:17: error: use of undefined value here causes illegal behavior
355// :65:17: note: when computing vector element at index '0'
369356// :65:17: error: use of undefined value here causes illegal behavior
357// :65:17: note: when computing vector element at index '0'
370358// :65:17: error: use of undefined value here causes illegal behavior
371359// :65:17: note: when computing vector element at index '0'
372360// :65:17: error: use of undefined value here causes illegal behavior
......@@ -376,9 +364,9 @@ const std = @import("std");
376364// :65:17: error: use of undefined value here causes illegal behavior
377365// :65:17: note: when computing vector element at index '0'
378366// :65:17: error: use of undefined value here causes illegal behavior
379// :65:17: note: when computing vector element at index '1'
367// :65:17: note: when computing vector element at index '0'
380368// :65:17: error: use of undefined value here causes illegal behavior
381// :65:17: note: when computing vector element at index '1'
369// :65:17: note: when computing vector element at index '0'
382370// :65:17: error: use of undefined value here causes illegal behavior
383371// :65:17: note: when computing vector element at index '0'
384372// :65:17: error: use of undefined value here causes illegal behavior
......@@ -388,7 +376,9 @@ const std = @import("std");
388376// :65:17: error: use of undefined value here causes illegal behavior
389377// :65:17: note: when computing vector element at index '0'
390378// :65:17: error: use of undefined value here causes illegal behavior
379// :65:17: note: when computing vector element at index '0'
391380// :65:17: error: use of undefined value here causes illegal behavior
381// :65:17: note: when computing vector element at index '0'
392382// :65:17: error: use of undefined value here causes illegal behavior
393383// :65:17: note: when computing vector element at index '0'
394384// :65:17: error: use of undefined value here causes illegal behavior
......@@ -402,35 +392,45 @@ const std = @import("std");
402392// :65:17: error: use of undefined value here causes illegal behavior
403393// :65:17: note: when computing vector element at index '1'
404394// :65:17: error: use of undefined value here causes illegal behavior
405// :65:17: note: when computing vector element at index '0'
395// :65:17: note: when computing vector element at index '1'
406396// :65:17: error: use of undefined value here causes illegal behavior
407// :65:17: note: when computing vector element at index '0'
397// :65:17: note: when computing vector element at index '1'
408398// :65:17: error: use of undefined value here causes illegal behavior
409// :65:17: note: when computing vector element at index '0'
399// :65:17: note: when computing vector element at index '1'
410400// :65:17: error: use of undefined value here causes illegal behavior
411// :65:17: note: when computing vector element at index '0'
401// :65:17: note: when computing vector element at index '1'
412402// :65:17: error: use of undefined value here causes illegal behavior
403// :65:17: note: when computing vector element at index '1'
413404// :65:17: error: use of undefined value here causes illegal behavior
405// :65:17: note: when computing vector element at index '1'
414406// :65:17: error: use of undefined value here causes illegal behavior
415// :65:17: note: when computing vector element at index '0'
407// :65:17: note: when computing vector element at index '1'
416408// :65:17: error: use of undefined value here causes illegal behavior
417// :65:17: note: when computing vector element at index '0'
409// :65:17: note: when computing vector element at index '1'
418410// :65:17: error: use of undefined value here causes illegal behavior
419// :65:17: note: when computing vector element at index '0'
411// :65:17: note: when computing vector element at index '1'
420412// :65:17: error: use of undefined value here causes illegal behavior
421// :65:17: note: when computing vector element at index '0'
413// :65:17: note: when computing vector element at index '1'
422414// :65:17: error: use of undefined value here causes illegal behavior
423415// :65:17: note: when computing vector element at index '1'
424416// :65:17: error: use of undefined value here causes illegal behavior
425417// :65:17: note: when computing vector element at index '1'
426418// :65:17: error: use of undefined value here causes illegal behavior
427// :65:17: note: when computing vector element at index '0'
419// :65:17: note: when computing vector element at index '1'
428420// :65:17: error: use of undefined value here causes illegal behavior
429// :65:17: note: when computing vector element at index '0'
421// :65:17: note: when computing vector element at index '1'
430422// :65:17: error: use of undefined value here causes illegal behavior
431// :65:17: note: when computing vector element at index '0'
423// :65:17: note: when computing vector element at index '1'
432424// :65:17: error: use of undefined value here causes illegal behavior
433// :65:17: note: when computing vector element at index '0'
425// :65:17: note: when computing vector element at index '1'
426// :65:17: error: use of undefined value here causes illegal behavior
427// :65:17: note: when computing vector element at index '1'
428// :65:17: error: use of undefined value here causes illegal behavior
429// :65:17: note: when computing vector element at index '1'
430// :65:17: error: use of undefined value here causes illegal behavior
431// :65:17: note: when computing vector element at index '1'
432// :65:17: error: use of undefined value here causes illegal behavior
433// :65:17: note: when computing vector element at index '1'
434434// :65:21: error: use of undefined value here causes illegal behavior
435435// :65:21: note: when computing vector element at index '0'
436436// :65:21: error: use of undefined value here causes illegal behavior
......@@ -478,50 +478,30 @@ const std = @import("std");
478478// :69:27: error: use of undefined value here causes illegal behavior
479479// :69:27: error: use of undefined value here causes illegal behavior
480480// :69:27: error: use of undefined value here causes illegal behavior
481// :69:27: note: when computing vector element at index '0'
482481// :69:27: error: use of undefined value here causes illegal behavior
483// :69:27: note: when computing vector element at index '0'
484482// :69:27: error: use of undefined value here causes illegal behavior
485// :69:27: note: when computing vector element at index '0'
486483// :69:27: error: use of undefined value here causes illegal behavior
487// :69:27: note: when computing vector element at index '0'
488484// :69:27: error: use of undefined value here causes illegal behavior
489// :69:27: note: when computing vector element at index '1'
490485// :69:27: error: use of undefined value here causes illegal behavior
491// :69:27: note: when computing vector element at index '1'
492486// :69:27: error: use of undefined value here causes illegal behavior
493// :69:27: note: when computing vector element at index '0'
494487// :69:27: error: use of undefined value here causes illegal behavior
495// :69:27: note: when computing vector element at index '0'
496488// :69:27: error: use of undefined value here causes illegal behavior
497// :69:27: note: when computing vector element at index '0'
498489// :69:27: error: use of undefined value here causes illegal behavior
499// :69:27: note: when computing vector element at index '0'
500490// :69:27: error: use of undefined value here causes illegal behavior
501491// :69:27: error: use of undefined value here causes illegal behavior
502492// :69:27: error: use of undefined value here causes illegal behavior
503// :69:27: note: when computing vector element at index '0'
504493// :69:27: error: use of undefined value here causes illegal behavior
505// :69:27: note: when computing vector element at index '0'
506494// :69:27: error: use of undefined value here causes illegal behavior
507// :69:27: note: when computing vector element at index '0'
508495// :69:27: error: use of undefined value here causes illegal behavior
509// :69:27: note: when computing vector element at index '0'
510496// :69:27: error: use of undefined value here causes illegal behavior
511// :69:27: note: when computing vector element at index '1'
512497// :69:27: error: use of undefined value here causes illegal behavior
513// :69:27: note: when computing vector element at index '1'
514498// :69:27: error: use of undefined value here causes illegal behavior
515// :69:27: note: when computing vector element at index '0'
516499// :69:27: error: use of undefined value here causes illegal behavior
517// :69:27: note: when computing vector element at index '0'
518500// :69:27: error: use of undefined value here causes illegal behavior
519501// :69:27: note: when computing vector element at index '0'
520502// :69:27: error: use of undefined value here causes illegal behavior
521503// :69:27: note: when computing vector element at index '0'
522504// :69:27: error: use of undefined value here causes illegal behavior
523// :69:27: error: use of undefined value here causes illegal behavior
524// :69:27: error: use of undefined value here causes illegal behavior
525505// :69:27: note: when computing vector element at index '0'
526506// :69:27: error: use of undefined value here causes illegal behavior
527507// :69:27: note: when computing vector element at index '0'
......@@ -530,10 +510,6 @@ const std = @import("std");
530510// :69:27: error: use of undefined value here causes illegal behavior
531511// :69:27: note: when computing vector element at index '0'
532512// :69:27: error: use of undefined value here causes illegal behavior
533// :69:27: note: when computing vector element at index '1'
534// :69:27: error: use of undefined value here causes illegal behavior
535// :69:27: note: when computing vector element at index '1'
536// :69:27: error: use of undefined value here causes illegal behavior
537513// :69:27: note: when computing vector element at index '0'
538514// :69:27: error: use of undefined value here causes illegal behavior
539515// :69:27: note: when computing vector element at index '0'
......@@ -542,7 +518,9 @@ const std = @import("std");
542518// :69:27: error: use of undefined value here causes illegal behavior
543519// :69:27: note: when computing vector element at index '0'
544520// :69:27: error: use of undefined value here causes illegal behavior
521// :69:27: note: when computing vector element at index '0'
545522// :69:27: error: use of undefined value here causes illegal behavior
523// :69:27: note: when computing vector element at index '0'
546524// :69:27: error: use of undefined value here causes illegal behavior
547525// :69:27: note: when computing vector element at index '0'
548526// :69:27: error: use of undefined value here causes illegal behavior
......@@ -552,9 +530,9 @@ const std = @import("std");
552530// :69:27: error: use of undefined value here causes illegal behavior
553531// :69:27: note: when computing vector element at index '0'
554532// :69:27: error: use of undefined value here causes illegal behavior
555// :69:27: note: when computing vector element at index '1'
533// :69:27: note: when computing vector element at index '0'
556534// :69:27: error: use of undefined value here causes illegal behavior
557// :69:27: note: when computing vector element at index '1'
535// :69:27: note: when computing vector element at index '0'
558536// :69:27: error: use of undefined value here causes illegal behavior
559537// :69:27: note: when computing vector element at index '0'
560538// :69:27: error: use of undefined value here causes illegal behavior
......@@ -564,7 +542,9 @@ const std = @import("std");
564542// :69:27: error: use of undefined value here causes illegal behavior
565543// :69:27: note: when computing vector element at index '0'
566544// :69:27: error: use of undefined value here causes illegal behavior
545// :69:27: note: when computing vector element at index '0'
567546// :69:27: error: use of undefined value here causes illegal behavior
547// :69:27: note: when computing vector element at index '0'
568548// :69:27: error: use of undefined value here causes illegal behavior
569549// :69:27: note: when computing vector element at index '0'
570550// :69:27: error: use of undefined value here causes illegal behavior
......@@ -574,9 +554,9 @@ const std = @import("std");
574554// :69:27: error: use of undefined value here causes illegal behavior
575555// :69:27: note: when computing vector element at index '0'
576556// :69:27: error: use of undefined value here causes illegal behavior
577// :69:27: note: when computing vector element at index '1'
557// :69:27: note: when computing vector element at index '0'
578558// :69:27: error: use of undefined value here causes illegal behavior
579// :69:27: note: when computing vector element at index '1'
559// :69:27: note: when computing vector element at index '0'
580560// :69:27: error: use of undefined value here causes illegal behavior
581561// :69:27: note: when computing vector element at index '0'
582562// :69:27: error: use of undefined value here causes illegal behavior
......@@ -586,7 +566,9 @@ const std = @import("std");
586566// :69:27: error: use of undefined value here causes illegal behavior
587567// :69:27: note: when computing vector element at index '0'
588568// :69:27: error: use of undefined value here causes illegal behavior
569// :69:27: note: when computing vector element at index '0'
589570// :69:27: error: use of undefined value here causes illegal behavior
571// :69:27: note: when computing vector element at index '0'
590572// :69:27: error: use of undefined value here causes illegal behavior
591573// :69:27: note: when computing vector element at index '0'
592574// :69:27: error: use of undefined value here causes illegal behavior
......@@ -596,9 +578,9 @@ const std = @import("std");
596578// :69:27: error: use of undefined value here causes illegal behavior
597579// :69:27: note: when computing vector element at index '0'
598580// :69:27: error: use of undefined value here causes illegal behavior
599// :69:27: note: when computing vector element at index '1'
581// :69:27: note: when computing vector element at index '0'
600582// :69:27: error: use of undefined value here causes illegal behavior
601// :69:27: note: when computing vector element at index '1'
583// :69:27: note: when computing vector element at index '0'
602584// :69:27: error: use of undefined value here causes illegal behavior
603585// :69:27: note: when computing vector element at index '0'
604586// :69:27: error: use of undefined value here causes illegal behavior
......@@ -608,7 +590,9 @@ const std = @import("std");
608590// :69:27: error: use of undefined value here causes illegal behavior
609591// :69:27: note: when computing vector element at index '0'
610592// :69:27: error: use of undefined value here causes illegal behavior
593// :69:27: note: when computing vector element at index '0'
611594// :69:27: error: use of undefined value here causes illegal behavior
595// :69:27: note: when computing vector element at index '0'
612596// :69:27: error: use of undefined value here causes illegal behavior
613597// :69:27: note: when computing vector element at index '0'
614598// :69:27: error: use of undefined value here causes illegal behavior
......@@ -618,9 +602,9 @@ const std = @import("std");
618602// :69:27: error: use of undefined value here causes illegal behavior
619603// :69:27: note: when computing vector element at index '0'
620604// :69:27: error: use of undefined value here causes illegal behavior
621// :69:27: note: when computing vector element at index '1'
605// :69:27: note: when computing vector element at index '0'
622606// :69:27: error: use of undefined value here causes illegal behavior
623// :69:27: note: when computing vector element at index '1'
607// :69:27: note: when computing vector element at index '0'
624608// :69:27: error: use of undefined value here causes illegal behavior
625609// :69:27: note: when computing vector element at index '0'
626610// :69:27: error: use of undefined value here causes illegal behavior
......@@ -630,7 +614,9 @@ const std = @import("std");
630614// :69:27: error: use of undefined value here causes illegal behavior
631615// :69:27: note: when computing vector element at index '0'
632616// :69:27: error: use of undefined value here causes illegal behavior
617// :69:27: note: when computing vector element at index '0'
633618// :69:27: error: use of undefined value here causes illegal behavior
619// :69:27: note: when computing vector element at index '0'
634620// :69:27: error: use of undefined value here causes illegal behavior
635621// :69:27: note: when computing vector element at index '0'
636622// :69:27: error: use of undefined value here causes illegal behavior
......@@ -640,9 +626,9 @@ const std = @import("std");
640626// :69:27: error: use of undefined value here causes illegal behavior
641627// :69:27: note: when computing vector element at index '0'
642628// :69:27: error: use of undefined value here causes illegal behavior
643// :69:27: note: when computing vector element at index '1'
629// :69:27: note: when computing vector element at index '0'
644630// :69:27: error: use of undefined value here causes illegal behavior
645// :69:27: note: when computing vector element at index '1'
631// :69:27: note: when computing vector element at index '0'
646632// :69:27: error: use of undefined value here causes illegal behavior
647633// :69:27: note: when computing vector element at index '0'
648634// :69:27: error: use of undefined value here causes illegal behavior
......@@ -652,7 +638,9 @@ const std = @import("std");
652638// :69:27: error: use of undefined value here causes illegal behavior
653639// :69:27: note: when computing vector element at index '0'
654640// :69:27: error: use of undefined value here causes illegal behavior
641// :69:27: note: when computing vector element at index '0'
655642// :69:27: error: use of undefined value here causes illegal behavior
643// :69:27: note: when computing vector element at index '0'
656644// :69:27: error: use of undefined value here causes illegal behavior
657645// :69:27: note: when computing vector element at index '0'
658646// :69:27: error: use of undefined value here causes illegal behavior
......@@ -662,9 +650,9 @@ const std = @import("std");
662650// :69:27: error: use of undefined value here causes illegal behavior
663651// :69:27: note: when computing vector element at index '0'
664652// :69:27: error: use of undefined value here causes illegal behavior
665// :69:27: note: when computing vector element at index '1'
653// :69:27: note: when computing vector element at index '0'
666654// :69:27: error: use of undefined value here causes illegal behavior
667// :69:27: note: when computing vector element at index '1'
655// :69:27: note: when computing vector element at index '0'
668656// :69:27: error: use of undefined value here causes illegal behavior
669657// :69:27: note: when computing vector element at index '0'
670658// :69:27: error: use of undefined value here causes illegal behavior
......@@ -674,7 +662,9 @@ const std = @import("std");
674662// :69:27: error: use of undefined value here causes illegal behavior
675663// :69:27: note: when computing vector element at index '0'
676664// :69:27: error: use of undefined value here causes illegal behavior
665// :69:27: note: when computing vector element at index '0'
677666// :69:27: error: use of undefined value here causes illegal behavior
667// :69:27: note: when computing vector element at index '0'
678668// :69:27: error: use of undefined value here causes illegal behavior
679669// :69:27: note: when computing vector element at index '0'
680670// :69:27: error: use of undefined value here causes illegal behavior
......@@ -688,35 +678,45 @@ const std = @import("std");
688678// :69:27: error: use of undefined value here causes illegal behavior
689679// :69:27: note: when computing vector element at index '1'
690680// :69:27: error: use of undefined value here causes illegal behavior
691// :69:27: note: when computing vector element at index '0'
681// :69:27: note: when computing vector element at index '1'
692682// :69:27: error: use of undefined value here causes illegal behavior
693// :69:27: note: when computing vector element at index '0'
683// :69:27: note: when computing vector element at index '1'
694684// :69:27: error: use of undefined value here causes illegal behavior
695// :69:27: note: when computing vector element at index '0'
685// :69:27: note: when computing vector element at index '1'
696686// :69:27: error: use of undefined value here causes illegal behavior
697// :69:27: note: when computing vector element at index '0'
687// :69:27: note: when computing vector element at index '1'
698688// :69:27: error: use of undefined value here causes illegal behavior
689// :69:27: note: when computing vector element at index '1'
699690// :69:27: error: use of undefined value here causes illegal behavior
691// :69:27: note: when computing vector element at index '1'
700692// :69:27: error: use of undefined value here causes illegal behavior
701// :69:27: note: when computing vector element at index '0'
693// :69:27: note: when computing vector element at index '1'
702694// :69:27: error: use of undefined value here causes illegal behavior
703// :69:27: note: when computing vector element at index '0'
695// :69:27: note: when computing vector element at index '1'
704696// :69:27: error: use of undefined value here causes illegal behavior
705// :69:27: note: when computing vector element at index '0'
697// :69:27: note: when computing vector element at index '1'
706698// :69:27: error: use of undefined value here causes illegal behavior
707// :69:27: note: when computing vector element at index '0'
699// :69:27: note: when computing vector element at index '1'
708700// :69:27: error: use of undefined value here causes illegal behavior
709701// :69:27: note: when computing vector element at index '1'
710702// :69:27: error: use of undefined value here causes illegal behavior
711703// :69:27: note: when computing vector element at index '1'
712704// :69:27: error: use of undefined value here causes illegal behavior
713// :69:27: note: when computing vector element at index '0'
705// :69:27: note: when computing vector element at index '1'
714706// :69:27: error: use of undefined value here causes illegal behavior
715// :69:27: note: when computing vector element at index '0'
707// :69:27: note: when computing vector element at index '1'
716708// :69:27: error: use of undefined value here causes illegal behavior
717// :69:27: note: when computing vector element at index '0'
709// :69:27: note: when computing vector element at index '1'
718710// :69:27: error: use of undefined value here causes illegal behavior
719// :69:27: note: when computing vector element at index '0'
711// :69:27: note: when computing vector element at index '1'
712// :69:27: error: use of undefined value here causes illegal behavior
713// :69:27: note: when computing vector element at index '1'
714// :69:27: error: use of undefined value here causes illegal behavior
715// :69:27: note: when computing vector element at index '1'
716// :69:27: error: use of undefined value here causes illegal behavior
717// :69:27: note: when computing vector element at index '1'
718// :69:27: error: use of undefined value here causes illegal behavior
719// :69:27: note: when computing vector element at index '1'
720720// :69:30: error: use of undefined value here causes illegal behavior
721721// :69:30: note: when computing vector element at index '0'
722722// :69:30: error: use of undefined value here causes illegal behavior
......@@ -764,50 +764,30 @@ const std = @import("std");
764764// :73:27: error: use of undefined value here causes illegal behavior
765765// :73:27: error: use of undefined value here causes illegal behavior
766766// :73:27: error: use of undefined value here causes illegal behavior
767// :73:27: note: when computing vector element at index '0'
768767// :73:27: error: use of undefined value here causes illegal behavior
769// :73:27: note: when computing vector element at index '0'
770768// :73:27: error: use of undefined value here causes illegal behavior
771// :73:27: note: when computing vector element at index '0'
772769// :73:27: error: use of undefined value here causes illegal behavior
773// :73:27: note: when computing vector element at index '0'
774770// :73:27: error: use of undefined value here causes illegal behavior
775// :73:27: note: when computing vector element at index '1'
776771// :73:27: error: use of undefined value here causes illegal behavior
777// :73:27: note: when computing vector element at index '1'
778772// :73:27: error: use of undefined value here causes illegal behavior
779// :73:27: note: when computing vector element at index '0'
780773// :73:27: error: use of undefined value here causes illegal behavior
781// :73:27: note: when computing vector element at index '0'
782774// :73:27: error: use of undefined value here causes illegal behavior
783// :73:27: note: when computing vector element at index '0'
784775// :73:27: error: use of undefined value here causes illegal behavior
785// :73:27: note: when computing vector element at index '0'
786776// :73:27: error: use of undefined value here causes illegal behavior
787777// :73:27: error: use of undefined value here causes illegal behavior
788778// :73:27: error: use of undefined value here causes illegal behavior
789// :73:27: note: when computing vector element at index '0'
790779// :73:27: error: use of undefined value here causes illegal behavior
791// :73:27: note: when computing vector element at index '0'
792780// :73:27: error: use of undefined value here causes illegal behavior
793// :73:27: note: when computing vector element at index '0'
794781// :73:27: error: use of undefined value here causes illegal behavior
795// :73:27: note: when computing vector element at index '0'
796782// :73:27: error: use of undefined value here causes illegal behavior
797// :73:27: note: when computing vector element at index '1'
798783// :73:27: error: use of undefined value here causes illegal behavior
799// :73:27: note: when computing vector element at index '1'
800784// :73:27: error: use of undefined value here causes illegal behavior
801// :73:27: note: when computing vector element at index '0'
802785// :73:27: error: use of undefined value here causes illegal behavior
803// :73:27: note: when computing vector element at index '0'
804786// :73:27: error: use of undefined value here causes illegal behavior
805787// :73:27: note: when computing vector element at index '0'
806788// :73:27: error: use of undefined value here causes illegal behavior
807789// :73:27: note: when computing vector element at index '0'
808790// :73:27: error: use of undefined value here causes illegal behavior
809// :73:27: error: use of undefined value here causes illegal behavior
810// :73:27: error: use of undefined value here causes illegal behavior
811791// :73:27: note: when computing vector element at index '0'
812792// :73:27: error: use of undefined value here causes illegal behavior
813793// :73:27: note: when computing vector element at index '0'
......@@ -816,10 +796,6 @@ const std = @import("std");
816796// :73:27: error: use of undefined value here causes illegal behavior
817797// :73:27: note: when computing vector element at index '0'
818798// :73:27: error: use of undefined value here causes illegal behavior
819// :73:27: note: when computing vector element at index '1'
820// :73:27: error: use of undefined value here causes illegal behavior
821// :73:27: note: when computing vector element at index '1'
822// :73:27: error: use of undefined value here causes illegal behavior
823799// :73:27: note: when computing vector element at index '0'
824800// :73:27: error: use of undefined value here causes illegal behavior
825801// :73:27: note: when computing vector element at index '0'
......@@ -828,7 +804,9 @@ const std = @import("std");
828804// :73:27: error: use of undefined value here causes illegal behavior
829805// :73:27: note: when computing vector element at index '0'
830806// :73:27: error: use of undefined value here causes illegal behavior
807// :73:27: note: when computing vector element at index '0'
831808// :73:27: error: use of undefined value here causes illegal behavior
809// :73:27: note: when computing vector element at index '0'
832810// :73:27: error: use of undefined value here causes illegal behavior
833811// :73:27: note: when computing vector element at index '0'
834812// :73:27: error: use of undefined value here causes illegal behavior
......@@ -838,9 +816,9 @@ const std = @import("std");
838816// :73:27: error: use of undefined value here causes illegal behavior
839817// :73:27: note: when computing vector element at index '0'
840818// :73:27: error: use of undefined value here causes illegal behavior
841// :73:27: note: when computing vector element at index '1'
819// :73:27: note: when computing vector element at index '0'
842820// :73:27: error: use of undefined value here causes illegal behavior
843// :73:27: note: when computing vector element at index '1'
821// :73:27: note: when computing vector element at index '0'
844822// :73:27: error: use of undefined value here causes illegal behavior
845823// :73:27: note: when computing vector element at index '0'
846824// :73:27: error: use of undefined value here causes illegal behavior
......@@ -850,7 +828,9 @@ const std = @import("std");
850828// :73:27: error: use of undefined value here causes illegal behavior
851829// :73:27: note: when computing vector element at index '0'
852830// :73:27: error: use of undefined value here causes illegal behavior
831// :73:27: note: when computing vector element at index '0'
853832// :73:27: error: use of undefined value here causes illegal behavior
833// :73:27: note: when computing vector element at index '0'
854834// :73:27: error: use of undefined value here causes illegal behavior
855835// :73:27: note: when computing vector element at index '0'
856836// :73:27: error: use of undefined value here causes illegal behavior
......@@ -860,9 +840,9 @@ const std = @import("std");
860840// :73:27: error: use of undefined value here causes illegal behavior
861841// :73:27: note: when computing vector element at index '0'
862842// :73:27: error: use of undefined value here causes illegal behavior
863// :73:27: note: when computing vector element at index '1'
843// :73:27: note: when computing vector element at index '0'
864844// :73:27: error: use of undefined value here causes illegal behavior
865// :73:27: note: when computing vector element at index '1'
845// :73:27: note: when computing vector element at index '0'
866846// :73:27: error: use of undefined value here causes illegal behavior
867847// :73:27: note: when computing vector element at index '0'
868848// :73:27: error: use of undefined value here causes illegal behavior
......@@ -872,7 +852,9 @@ const std = @import("std");
872852// :73:27: error: use of undefined value here causes illegal behavior
873853// :73:27: note: when computing vector element at index '0'
874854// :73:27: error: use of undefined value here causes illegal behavior
855// :73:27: note: when computing vector element at index '0'
875856// :73:27: error: use of undefined value here causes illegal behavior
857// :73:27: note: when computing vector element at index '0'
876858// :73:27: error: use of undefined value here causes illegal behavior
877859// :73:27: note: when computing vector element at index '0'
878860// :73:27: error: use of undefined value here causes illegal behavior
......@@ -882,9 +864,9 @@ const std = @import("std");
882864// :73:27: error: use of undefined value here causes illegal behavior
883865// :73:27: note: when computing vector element at index '0'
884866// :73:27: error: use of undefined value here causes illegal behavior
885// :73:27: note: when computing vector element at index '1'
867// :73:27: note: when computing vector element at index '0'
886868// :73:27: error: use of undefined value here causes illegal behavior
887// :73:27: note: when computing vector element at index '1'
869// :73:27: note: when computing vector element at index '0'
888870// :73:27: error: use of undefined value here causes illegal behavior
889871// :73:27: note: when computing vector element at index '0'
890872// :73:27: error: use of undefined value here causes illegal behavior
......@@ -894,7 +876,9 @@ const std = @import("std");
894876// :73:27: error: use of undefined value here causes illegal behavior
895877// :73:27: note: when computing vector element at index '0'
896878// :73:27: error: use of undefined value here causes illegal behavior
879// :73:27: note: when computing vector element at index '0'
897880// :73:27: error: use of undefined value here causes illegal behavior
881// :73:27: note: when computing vector element at index '0'
898882// :73:27: error: use of undefined value here causes illegal behavior
899883// :73:27: note: when computing vector element at index '0'
900884// :73:27: error: use of undefined value here causes illegal behavior
......@@ -904,9 +888,9 @@ const std = @import("std");
904888// :73:27: error: use of undefined value here causes illegal behavior
905889// :73:27: note: when computing vector element at index '0'
906890// :73:27: error: use of undefined value here causes illegal behavior
907// :73:27: note: when computing vector element at index '1'
891// :73:27: note: when computing vector element at index '0'
908892// :73:27: error: use of undefined value here causes illegal behavior
909// :73:27: note: when computing vector element at index '1'
893// :73:27: note: when computing vector element at index '0'
910894// :73:27: error: use of undefined value here causes illegal behavior
911895// :73:27: note: when computing vector element at index '0'
912896// :73:27: error: use of undefined value here causes illegal behavior
......@@ -916,7 +900,9 @@ const std = @import("std");
916900// :73:27: error: use of undefined value here causes illegal behavior
917901// :73:27: note: when computing vector element at index '0'
918902// :73:27: error: use of undefined value here causes illegal behavior
903// :73:27: note: when computing vector element at index '0'
919904// :73:27: error: use of undefined value here causes illegal behavior
905// :73:27: note: when computing vector element at index '0'
920906// :73:27: error: use of undefined value here causes illegal behavior
921907// :73:27: note: when computing vector element at index '0'
922908// :73:27: error: use of undefined value here causes illegal behavior
......@@ -926,9 +912,9 @@ const std = @import("std");
926912// :73:27: error: use of undefined value here causes illegal behavior
927913// :73:27: note: when computing vector element at index '0'
928914// :73:27: error: use of undefined value here causes illegal behavior
929// :73:27: note: when computing vector element at index '1'
915// :73:27: note: when computing vector element at index '0'
930916// :73:27: error: use of undefined value here causes illegal behavior
931// :73:27: note: when computing vector element at index '1'
917// :73:27: note: when computing vector element at index '0'
932918// :73:27: error: use of undefined value here causes illegal behavior
933919// :73:27: note: when computing vector element at index '0'
934920// :73:27: error: use of undefined value here causes illegal behavior
......@@ -938,7 +924,9 @@ const std = @import("std");
938924// :73:27: error: use of undefined value here causes illegal behavior
939925// :73:27: note: when computing vector element at index '0'
940926// :73:27: error: use of undefined value here causes illegal behavior
927// :73:27: note: when computing vector element at index '0'
941928// :73:27: error: use of undefined value here causes illegal behavior
929// :73:27: note: when computing vector element at index '0'
942930// :73:27: error: use of undefined value here causes illegal behavior
943931// :73:27: note: when computing vector element at index '0'
944932// :73:27: error: use of undefined value here causes illegal behavior
......@@ -948,9 +936,9 @@ const std = @import("std");
948936// :73:27: error: use of undefined value here causes illegal behavior
949937// :73:27: note: when computing vector element at index '0'
950938// :73:27: error: use of undefined value here causes illegal behavior
951// :73:27: note: when computing vector element at index '1'
939// :73:27: note: when computing vector element at index '0'
952940// :73:27: error: use of undefined value here causes illegal behavior
953// :73:27: note: when computing vector element at index '1'
941// :73:27: note: when computing vector element at index '0'
954942// :73:27: error: use of undefined value here causes illegal behavior
955943// :73:27: note: when computing vector element at index '0'
956944// :73:27: error: use of undefined value here causes illegal behavior
......@@ -960,7 +948,9 @@ const std = @import("std");
960948// :73:27: error: use of undefined value here causes illegal behavior
961949// :73:27: note: when computing vector element at index '0'
962950// :73:27: error: use of undefined value here causes illegal behavior
951// :73:27: note: when computing vector element at index '0'
963952// :73:27: error: use of undefined value here causes illegal behavior
953// :73:27: note: when computing vector element at index '0'
964954// :73:27: error: use of undefined value here causes illegal behavior
965955// :73:27: note: when computing vector element at index '0'
966956// :73:27: error: use of undefined value here causes illegal behavior
......@@ -974,35 +964,45 @@ const std = @import("std");
974964// :73:27: error: use of undefined value here causes illegal behavior
975965// :73:27: note: when computing vector element at index '1'
976966// :73:27: error: use of undefined value here causes illegal behavior
977// :73:27: note: when computing vector element at index '0'
967// :73:27: note: when computing vector element at index '1'
978968// :73:27: error: use of undefined value here causes illegal behavior
979// :73:27: note: when computing vector element at index '0'
969// :73:27: note: when computing vector element at index '1'
980970// :73:27: error: use of undefined value here causes illegal behavior
981// :73:27: note: when computing vector element at index '0'
971// :73:27: note: when computing vector element at index '1'
982972// :73:27: error: use of undefined value here causes illegal behavior
983// :73:27: note: when computing vector element at index '0'
973// :73:27: note: when computing vector element at index '1'
984974// :73:27: error: use of undefined value here causes illegal behavior
975// :73:27: note: when computing vector element at index '1'
985976// :73:27: error: use of undefined value here causes illegal behavior
977// :73:27: note: when computing vector element at index '1'
986978// :73:27: error: use of undefined value here causes illegal behavior
987// :73:27: note: when computing vector element at index '0'
979// :73:27: note: when computing vector element at index '1'
988980// :73:27: error: use of undefined value here causes illegal behavior
989// :73:27: note: when computing vector element at index '0'
981// :73:27: note: when computing vector element at index '1'
990982// :73:27: error: use of undefined value here causes illegal behavior
991// :73:27: note: when computing vector element at index '0'
983// :73:27: note: when computing vector element at index '1'
992984// :73:27: error: use of undefined value here causes illegal behavior
993// :73:27: note: when computing vector element at index '0'
985// :73:27: note: when computing vector element at index '1'
994986// :73:27: error: use of undefined value here causes illegal behavior
995987// :73:27: note: when computing vector element at index '1'
996988// :73:27: error: use of undefined value here causes illegal behavior
997989// :73:27: note: when computing vector element at index '1'
998990// :73:27: error: use of undefined value here causes illegal behavior
999// :73:27: note: when computing vector element at index '0'
991// :73:27: note: when computing vector element at index '1'
1000992// :73:27: error: use of undefined value here causes illegal behavior
1001// :73:27: note: when computing vector element at index '0'
993// :73:27: note: when computing vector element at index '1'
1002994// :73:27: error: use of undefined value here causes illegal behavior
1003// :73:27: note: when computing vector element at index '0'
995// :73:27: note: when computing vector element at index '1'
1004996// :73:27: error: use of undefined value here causes illegal behavior
1005// :73:27: note: when computing vector element at index '0'
997// :73:27: note: when computing vector element at index '1'
998// :73:27: error: use of undefined value here causes illegal behavior
999// :73:27: note: when computing vector element at index '1'
1000// :73:27: error: use of undefined value here causes illegal behavior
1001// :73:27: note: when computing vector element at index '1'
1002// :73:27: error: use of undefined value here causes illegal behavior
1003// :73:27: note: when computing vector element at index '1'
1004// :73:27: error: use of undefined value here causes illegal behavior
1005// :73:27: note: when computing vector element at index '1'
10061006// :73:30: error: use of undefined value here causes illegal behavior
10071007// :73:30: note: when computing vector element at index '0'
10081008// :73:30: error: use of undefined value here causes illegal behavior
......@@ -1050,50 +1050,30 @@ const std = @import("std");
10501050// :77:27: error: use of undefined value here causes illegal behavior
10511051// :77:27: error: use of undefined value here causes illegal behavior
10521052// :77:27: error: use of undefined value here causes illegal behavior
1053// :77:27: note: when computing vector element at index '0'
10541053// :77:27: error: use of undefined value here causes illegal behavior
1055// :77:27: note: when computing vector element at index '0'
10561054// :77:27: error: use of undefined value here causes illegal behavior
1057// :77:27: note: when computing vector element at index '0'
10581055// :77:27: error: use of undefined value here causes illegal behavior
1059// :77:27: note: when computing vector element at index '0'
10601056// :77:27: error: use of undefined value here causes illegal behavior
1061// :77:27: note: when computing vector element at index '1'
10621057// :77:27: error: use of undefined value here causes illegal behavior
1063// :77:27: note: when computing vector element at index '1'
10641058// :77:27: error: use of undefined value here causes illegal behavior
1065// :77:27: note: when computing vector element at index '0'
10661059// :77:27: error: use of undefined value here causes illegal behavior
1067// :77:27: note: when computing vector element at index '0'
10681060// :77:27: error: use of undefined value here causes illegal behavior
1069// :77:27: note: when computing vector element at index '0'
10701061// :77:27: error: use of undefined value here causes illegal behavior
1071// :77:27: note: when computing vector element at index '0'
10721062// :77:27: error: use of undefined value here causes illegal behavior
10731063// :77:27: error: use of undefined value here causes illegal behavior
10741064// :77:27: error: use of undefined value here causes illegal behavior
1075// :77:27: note: when computing vector element at index '0'
10761065// :77:27: error: use of undefined value here causes illegal behavior
1077// :77:27: note: when computing vector element at index '0'
10781066// :77:27: error: use of undefined value here causes illegal behavior
1079// :77:27: note: when computing vector element at index '0'
10801067// :77:27: error: use of undefined value here causes illegal behavior
1081// :77:27: note: when computing vector element at index '0'
10821068// :77:27: error: use of undefined value here causes illegal behavior
1083// :77:27: note: when computing vector element at index '1'
10841069// :77:27: error: use of undefined value here causes illegal behavior
1085// :77:27: note: when computing vector element at index '1'
10861070// :77:27: error: use of undefined value here causes illegal behavior
1087// :77:27: note: when computing vector element at index '0'
10881071// :77:27: error: use of undefined value here causes illegal behavior
1089// :77:27: note: when computing vector element at index '0'
10901072// :77:27: error: use of undefined value here causes illegal behavior
10911073// :77:27: note: when computing vector element at index '0'
10921074// :77:27: error: use of undefined value here causes illegal behavior
10931075// :77:27: note: when computing vector element at index '0'
10941076// :77:27: error: use of undefined value here causes illegal behavior
1095// :77:27: error: use of undefined value here causes illegal behavior
1096// :77:27: error: use of undefined value here causes illegal behavior
10971077// :77:27: note: when computing vector element at index '0'
10981078// :77:27: error: use of undefined value here causes illegal behavior
10991079// :77:27: note: when computing vector element at index '0'
......@@ -1102,10 +1082,6 @@ const std = @import("std");
11021082// :77:27: error: use of undefined value here causes illegal behavior
11031083// :77:27: note: when computing vector element at index '0'
11041084// :77:27: error: use of undefined value here causes illegal behavior
1105// :77:27: note: when computing vector element at index '1'
1106// :77:27: error: use of undefined value here causes illegal behavior
1107// :77:27: note: when computing vector element at index '1'
1108// :77:27: error: use of undefined value here causes illegal behavior
11091085// :77:27: note: when computing vector element at index '0'
11101086// :77:27: error: use of undefined value here causes illegal behavior
11111087// :77:27: note: when computing vector element at index '0'
......@@ -1114,7 +1090,9 @@ const std = @import("std");
11141090// :77:27: error: use of undefined value here causes illegal behavior
11151091// :77:27: note: when computing vector element at index '0'
11161092// :77:27: error: use of undefined value here causes illegal behavior
1093// :77:27: note: when computing vector element at index '0'
11171094// :77:27: error: use of undefined value here causes illegal behavior
1095// :77:27: note: when computing vector element at index '0'
11181096// :77:27: error: use of undefined value here causes illegal behavior
11191097// :77:27: note: when computing vector element at index '0'
11201098// :77:27: error: use of undefined value here causes illegal behavior
......@@ -1124,9 +1102,9 @@ const std = @import("std");
11241102// :77:27: error: use of undefined value here causes illegal behavior
11251103// :77:27: note: when computing vector element at index '0'
11261104// :77:27: error: use of undefined value here causes illegal behavior
1127// :77:27: note: when computing vector element at index '1'
1105// :77:27: note: when computing vector element at index '0'
11281106// :77:27: error: use of undefined value here causes illegal behavior
1129// :77:27: note: when computing vector element at index '1'
1107// :77:27: note: when computing vector element at index '0'
11301108// :77:27: error: use of undefined value here causes illegal behavior
11311109// :77:27: note: when computing vector element at index '0'
11321110// :77:27: error: use of undefined value here causes illegal behavior
......@@ -1136,7 +1114,9 @@ const std = @import("std");
11361114// :77:27: error: use of undefined value here causes illegal behavior
11371115// :77:27: note: when computing vector element at index '0'
11381116// :77:27: error: use of undefined value here causes illegal behavior
1117// :77:27: note: when computing vector element at index '0'
11391118// :77:27: error: use of undefined value here causes illegal behavior
1119// :77:27: note: when computing vector element at index '0'
11401120// :77:27: error: use of undefined value here causes illegal behavior
11411121// :77:27: note: when computing vector element at index '0'
11421122// :77:27: error: use of undefined value here causes illegal behavior
......@@ -1146,9 +1126,9 @@ const std = @import("std");
11461126// :77:27: error: use of undefined value here causes illegal behavior
11471127// :77:27: note: when computing vector element at index '0'
11481128// :77:27: error: use of undefined value here causes illegal behavior
1149// :77:27: note: when computing vector element at index '1'
1129// :77:27: note: when computing vector element at index '0'
11501130// :77:27: error: use of undefined value here causes illegal behavior
1151// :77:27: note: when computing vector element at index '1'
1131// :77:27: note: when computing vector element at index '0'
11521132// :77:27: error: use of undefined value here causes illegal behavior
11531133// :77:27: note: when computing vector element at index '0'
11541134// :77:27: error: use of undefined value here causes illegal behavior
......@@ -1158,7 +1138,9 @@ const std = @import("std");
11581138// :77:27: error: use of undefined value here causes illegal behavior
11591139// :77:27: note: when computing vector element at index '0'
11601140// :77:27: error: use of undefined value here causes illegal behavior
1141// :77:27: note: when computing vector element at index '0'
11611142// :77:27: error: use of undefined value here causes illegal behavior
1143// :77:27: note: when computing vector element at index '0'
11621144// :77:27: error: use of undefined value here causes illegal behavior
11631145// :77:27: note: when computing vector element at index '0'
11641146// :77:27: error: use of undefined value here causes illegal behavior
......@@ -1168,9 +1150,9 @@ const std = @import("std");
11681150// :77:27: error: use of undefined value here causes illegal behavior
11691151// :77:27: note: when computing vector element at index '0'
11701152// :77:27: error: use of undefined value here causes illegal behavior
1171// :77:27: note: when computing vector element at index '1'
1153// :77:27: note: when computing vector element at index '0'
11721154// :77:27: error: use of undefined value here causes illegal behavior
1173// :77:27: note: when computing vector element at index '1'
1155// :77:27: note: when computing vector element at index '0'
11741156// :77:27: error: use of undefined value here causes illegal behavior
11751157// :77:27: note: when computing vector element at index '0'
11761158// :77:27: error: use of undefined value here causes illegal behavior
......@@ -1180,7 +1162,9 @@ const std = @import("std");
11801162// :77:27: error: use of undefined value here causes illegal behavior
11811163// :77:27: note: when computing vector element at index '0'
11821164// :77:27: error: use of undefined value here causes illegal behavior
1165// :77:27: note: when computing vector element at index '0'
11831166// :77:27: error: use of undefined value here causes illegal behavior
1167// :77:27: note: when computing vector element at index '0'
11841168// :77:27: error: use of undefined value here causes illegal behavior
11851169// :77:27: note: when computing vector element at index '0'
11861170// :77:27: error: use of undefined value here causes illegal behavior
......@@ -1190,9 +1174,9 @@ const std = @import("std");
11901174// :77:27: error: use of undefined value here causes illegal behavior
11911175// :77:27: note: when computing vector element at index '0'
11921176// :77:27: error: use of undefined value here causes illegal behavior
1193// :77:27: note: when computing vector element at index '1'
1177// :77:27: note: when computing vector element at index '0'
11941178// :77:27: error: use of undefined value here causes illegal behavior
1195// :77:27: note: when computing vector element at index '1'
1179// :77:27: note: when computing vector element at index '0'
11961180// :77:27: error: use of undefined value here causes illegal behavior
11971181// :77:27: note: when computing vector element at index '0'
11981182// :77:27: error: use of undefined value here causes illegal behavior
......@@ -1202,7 +1186,9 @@ const std = @import("std");
12021186// :77:27: error: use of undefined value here causes illegal behavior
12031187// :77:27: note: when computing vector element at index '0'
12041188// :77:27: error: use of undefined value here causes illegal behavior
1189// :77:27: note: when computing vector element at index '0'
12051190// :77:27: error: use of undefined value here causes illegal behavior
1191// :77:27: note: when computing vector element at index '0'
12061192// :77:27: error: use of undefined value here causes illegal behavior
12071193// :77:27: note: when computing vector element at index '0'
12081194// :77:27: error: use of undefined value here causes illegal behavior
......@@ -1212,9 +1198,9 @@ const std = @import("std");
12121198// :77:27: error: use of undefined value here causes illegal behavior
12131199// :77:27: note: when computing vector element at index '0'
12141200// :77:27: error: use of undefined value here causes illegal behavior
1215// :77:27: note: when computing vector element at index '1'
1201// :77:27: note: when computing vector element at index '0'
12161202// :77:27: error: use of undefined value here causes illegal behavior
1217// :77:27: note: when computing vector element at index '1'
1203// :77:27: note: when computing vector element at index '0'
12181204// :77:27: error: use of undefined value here causes illegal behavior
12191205// :77:27: note: when computing vector element at index '0'
12201206// :77:27: error: use of undefined value here causes illegal behavior
......@@ -1224,7 +1210,9 @@ const std = @import("std");
12241210// :77:27: error: use of undefined value here causes illegal behavior
12251211// :77:27: note: when computing vector element at index '0'
12261212// :77:27: error: use of undefined value here causes illegal behavior
1213// :77:27: note: when computing vector element at index '0'
12271214// :77:27: error: use of undefined value here causes illegal behavior
1215// :77:27: note: when computing vector element at index '0'
12281216// :77:27: error: use of undefined value here causes illegal behavior
12291217// :77:27: note: when computing vector element at index '0'
12301218// :77:27: error: use of undefined value here causes illegal behavior
......@@ -1234,9 +1222,9 @@ const std = @import("std");
12341222// :77:27: error: use of undefined value here causes illegal behavior
12351223// :77:27: note: when computing vector element at index '0'
12361224// :77:27: error: use of undefined value here causes illegal behavior
1237// :77:27: note: when computing vector element at index '1'
1225// :77:27: note: when computing vector element at index '0'
12381226// :77:27: error: use of undefined value here causes illegal behavior
1239// :77:27: note: when computing vector element at index '1'
1227// :77:27: note: when computing vector element at index '0'
12401228// :77:27: error: use of undefined value here causes illegal behavior
12411229// :77:27: note: when computing vector element at index '0'
12421230// :77:27: error: use of undefined value here causes illegal behavior
......@@ -1246,7 +1234,9 @@ const std = @import("std");
12461234// :77:27: error: use of undefined value here causes illegal behavior
12471235// :77:27: note: when computing vector element at index '0'
12481236// :77:27: error: use of undefined value here causes illegal behavior
1237// :77:27: note: when computing vector element at index '0'
12491238// :77:27: error: use of undefined value here causes illegal behavior
1239// :77:27: note: when computing vector element at index '0'
12501240// :77:27: error: use of undefined value here causes illegal behavior
12511241// :77:27: note: when computing vector element at index '0'
12521242// :77:27: error: use of undefined value here causes illegal behavior
......@@ -1260,35 +1250,45 @@ const std = @import("std");
12601250// :77:27: error: use of undefined value here causes illegal behavior
12611251// :77:27: note: when computing vector element at index '1'
12621252// :77:27: error: use of undefined value here causes illegal behavior
1263// :77:27: note: when computing vector element at index '0'
1253// :77:27: note: when computing vector element at index '1'
12641254// :77:27: error: use of undefined value here causes illegal behavior
1265// :77:27: note: when computing vector element at index '0'
1255// :77:27: note: when computing vector element at index '1'
12661256// :77:27: error: use of undefined value here causes illegal behavior
1267// :77:27: note: when computing vector element at index '0'
1257// :77:27: note: when computing vector element at index '1'
12681258// :77:27: error: use of undefined value here causes illegal behavior
1269// :77:27: note: when computing vector element at index '0'
1259// :77:27: note: when computing vector element at index '1'
12701260// :77:27: error: use of undefined value here causes illegal behavior
1261// :77:27: note: when computing vector element at index '1'
12711262// :77:27: error: use of undefined value here causes illegal behavior
1263// :77:27: note: when computing vector element at index '1'
12721264// :77:27: error: use of undefined value here causes illegal behavior
1273// :77:27: note: when computing vector element at index '0'
1265// :77:27: note: when computing vector element at index '1'
12741266// :77:27: error: use of undefined value here causes illegal behavior
1275// :77:27: note: when computing vector element at index '0'
1267// :77:27: note: when computing vector element at index '1'
12761268// :77:27: error: use of undefined value here causes illegal behavior
1277// :77:27: note: when computing vector element at index '0'
1269// :77:27: note: when computing vector element at index '1'
12781270// :77:27: error: use of undefined value here causes illegal behavior
1279// :77:27: note: when computing vector element at index '0'
1271// :77:27: note: when computing vector element at index '1'
12801272// :77:27: error: use of undefined value here causes illegal behavior
12811273// :77:27: note: when computing vector element at index '1'
12821274// :77:27: error: use of undefined value here causes illegal behavior
12831275// :77:27: note: when computing vector element at index '1'
12841276// :77:27: error: use of undefined value here causes illegal behavior
1285// :77:27: note: when computing vector element at index '0'
1277// :77:27: note: when computing vector element at index '1'
12861278// :77:27: error: use of undefined value here causes illegal behavior
1287// :77:27: note: when computing vector element at index '0'
1279// :77:27: note: when computing vector element at index '1'
12881280// :77:27: error: use of undefined value here causes illegal behavior
1289// :77:27: note: when computing vector element at index '0'
1281// :77:27: note: when computing vector element at index '1'
12901282// :77:27: error: use of undefined value here causes illegal behavior
1291// :77:27: note: when computing vector element at index '0'
1283// :77:27: note: when computing vector element at index '1'
1284// :77:27: error: use of undefined value here causes illegal behavior
1285// :77:27: note: when computing vector element at index '1'
1286// :77:27: error: use of undefined value here causes illegal behavior
1287// :77:27: note: when computing vector element at index '1'
1288// :77:27: error: use of undefined value here causes illegal behavior
1289// :77:27: note: when computing vector element at index '1'
1290// :77:27: error: use of undefined value here causes illegal behavior
1291// :77:27: note: when computing vector element at index '1'
12921292// :77:30: error: use of undefined value here causes illegal behavior
12931293// :77:30: note: when computing vector element at index '0'
12941294// :77:30: error: use of undefined value here causes illegal behavior
......@@ -1336,50 +1336,30 @@ const std = @import("std");
13361336// :81:17: error: use of undefined value here causes illegal behavior
13371337// :81:17: error: use of undefined value here causes illegal behavior
13381338// :81:17: error: use of undefined value here causes illegal behavior
1339// :81:17: note: when computing vector element at index '0'
13401339// :81:17: error: use of undefined value here causes illegal behavior
1341// :81:17: note: when computing vector element at index '0'
13421340// :81:17: error: use of undefined value here causes illegal behavior
1343// :81:17: note: when computing vector element at index '0'
13441341// :81:17: error: use of undefined value here causes illegal behavior
1345// :81:17: note: when computing vector element at index '0'
13461342// :81:17: error: use of undefined value here causes illegal behavior
1347// :81:17: note: when computing vector element at index '1'
13481343// :81:17: error: use of undefined value here causes illegal behavior
1349// :81:17: note: when computing vector element at index '1'
13501344// :81:17: error: use of undefined value here causes illegal behavior
1351// :81:17: note: when computing vector element at index '0'
13521345// :81:17: error: use of undefined value here causes illegal behavior
1353// :81:17: note: when computing vector element at index '0'
13541346// :81:17: error: use of undefined value here causes illegal behavior
1355// :81:17: note: when computing vector element at index '0'
13561347// :81:17: error: use of undefined value here causes illegal behavior
1357// :81:17: note: when computing vector element at index '0'
13581348// :81:17: error: use of undefined value here causes illegal behavior
13591349// :81:17: error: use of undefined value here causes illegal behavior
13601350// :81:17: error: use of undefined value here causes illegal behavior
1361// :81:17: note: when computing vector element at index '0'
13621351// :81:17: error: use of undefined value here causes illegal behavior
1363// :81:17: note: when computing vector element at index '0'
13641352// :81:17: error: use of undefined value here causes illegal behavior
1365// :81:17: note: when computing vector element at index '0'
13661353// :81:17: error: use of undefined value here causes illegal behavior
1367// :81:17: note: when computing vector element at index '0'
13681354// :81:17: error: use of undefined value here causes illegal behavior
1369// :81:17: note: when computing vector element at index '1'
13701355// :81:17: error: use of undefined value here causes illegal behavior
1371// :81:17: note: when computing vector element at index '1'
13721356// :81:17: error: use of undefined value here causes illegal behavior
1373// :81:17: note: when computing vector element at index '0'
13741357// :81:17: error: use of undefined value here causes illegal behavior
1375// :81:17: note: when computing vector element at index '0'
13761358// :81:17: error: use of undefined value here causes illegal behavior
13771359// :81:17: note: when computing vector element at index '0'
13781360// :81:17: error: use of undefined value here causes illegal behavior
13791361// :81:17: note: when computing vector element at index '0'
13801362// :81:17: error: use of undefined value here causes illegal behavior
1381// :81:17: error: use of undefined value here causes illegal behavior
1382// :81:17: error: use of undefined value here causes illegal behavior
13831363// :81:17: note: when computing vector element at index '0'
13841364// :81:17: error: use of undefined value here causes illegal behavior
13851365// :81:17: note: when computing vector element at index '0'
......@@ -1388,10 +1368,6 @@ const std = @import("std");
13881368// :81:17: error: use of undefined value here causes illegal behavior
13891369// :81:17: note: when computing vector element at index '0'
13901370// :81:17: error: use of undefined value here causes illegal behavior
1391// :81:17: note: when computing vector element at index '1'
1392// :81:17: error: use of undefined value here causes illegal behavior
1393// :81:17: note: when computing vector element at index '1'
1394// :81:17: error: use of undefined value here causes illegal behavior
13951371// :81:17: note: when computing vector element at index '0'
13961372// :81:17: error: use of undefined value here causes illegal behavior
13971373// :81:17: note: when computing vector element at index '0'
......@@ -1400,7 +1376,9 @@ const std = @import("std");
14001376// :81:17: error: use of undefined value here causes illegal behavior
14011377// :81:17: note: when computing vector element at index '0'
14021378// :81:17: error: use of undefined value here causes illegal behavior
1379// :81:17: note: when computing vector element at index '0'
14031380// :81:17: error: use of undefined value here causes illegal behavior
1381// :81:17: note: when computing vector element at index '0'
14041382// :81:17: error: use of undefined value here causes illegal behavior
14051383// :81:17: note: when computing vector element at index '0'
14061384// :81:17: error: use of undefined value here causes illegal behavior
......@@ -1410,9 +1388,9 @@ const std = @import("std");
14101388// :81:17: error: use of undefined value here causes illegal behavior
14111389// :81:17: note: when computing vector element at index '0'
14121390// :81:17: error: use of undefined value here causes illegal behavior
1413// :81:17: note: when computing vector element at index '1'
1391// :81:17: note: when computing vector element at index '0'
14141392// :81:17: error: use of undefined value here causes illegal behavior
1415// :81:17: note: when computing vector element at index '1'
1393// :81:17: note: when computing vector element at index '0'
14161394// :81:17: error: use of undefined value here causes illegal behavior
14171395// :81:17: note: when computing vector element at index '0'
14181396// :81:17: error: use of undefined value here causes illegal behavior
......@@ -1422,7 +1400,9 @@ const std = @import("std");
14221400// :81:17: error: use of undefined value here causes illegal behavior
14231401// :81:17: note: when computing vector element at index '0'
14241402// :81:17: error: use of undefined value here causes illegal behavior
1403// :81:17: note: when computing vector element at index '0'
14251404// :81:17: error: use of undefined value here causes illegal behavior
1405// :81:17: note: when computing vector element at index '0'
14261406// :81:17: error: use of undefined value here causes illegal behavior
14271407// :81:17: note: when computing vector element at index '0'
14281408// :81:17: error: use of undefined value here causes illegal behavior
......@@ -1432,9 +1412,9 @@ const std = @import("std");
14321412// :81:17: error: use of undefined value here causes illegal behavior
14331413// :81:17: note: when computing vector element at index '0'
14341414// :81:17: error: use of undefined value here causes illegal behavior
1435// :81:17: note: when computing vector element at index '1'
1415// :81:17: note: when computing vector element at index '0'
14361416// :81:17: error: use of undefined value here causes illegal behavior
1437// :81:17: note: when computing vector element at index '1'
1417// :81:17: note: when computing vector element at index '0'
14381418// :81:17: error: use of undefined value here causes illegal behavior
14391419// :81:17: note: when computing vector element at index '0'
14401420// :81:17: error: use of undefined value here causes illegal behavior
......@@ -1444,7 +1424,9 @@ const std = @import("std");
14441424// :81:17: error: use of undefined value here causes illegal behavior
14451425// :81:17: note: when computing vector element at index '0'
14461426// :81:17: error: use of undefined value here causes illegal behavior
1427// :81:17: note: when computing vector element at index '0'
14471428// :81:17: error: use of undefined value here causes illegal behavior
1429// :81:17: note: when computing vector element at index '0'
14481430// :81:17: error: use of undefined value here causes illegal behavior
14491431// :81:17: note: when computing vector element at index '0'
14501432// :81:17: error: use of undefined value here causes illegal behavior
......@@ -1454,9 +1436,9 @@ const std = @import("std");
14541436// :81:17: error: use of undefined value here causes illegal behavior
14551437// :81:17: note: when computing vector element at index '0'
14561438// :81:17: error: use of undefined value here causes illegal behavior
1457// :81:17: note: when computing vector element at index '1'
1439// :81:17: note: when computing vector element at index '0'
14581440// :81:17: error: use of undefined value here causes illegal behavior
1459// :81:17: note: when computing vector element at index '1'
1441// :81:17: note: when computing vector element at index '0'
14601442// :81:17: error: use of undefined value here causes illegal behavior
14611443// :81:17: note: when computing vector element at index '0'
14621444// :81:17: error: use of undefined value here causes illegal behavior
......@@ -1466,7 +1448,9 @@ const std = @import("std");
14661448// :81:17: error: use of undefined value here causes illegal behavior
14671449// :81:17: note: when computing vector element at index '0'
14681450// :81:17: error: use of undefined value here causes illegal behavior
1451// :81:17: note: when computing vector element at index '0'
14691452// :81:17: error: use of undefined value here causes illegal behavior
1453// :81:17: note: when computing vector element at index '0'
14701454// :81:17: error: use of undefined value here causes illegal behavior
14711455// :81:17: note: when computing vector element at index '0'
14721456// :81:17: error: use of undefined value here causes illegal behavior
......@@ -1476,9 +1460,9 @@ const std = @import("std");
14761460// :81:17: error: use of undefined value here causes illegal behavior
14771461// :81:17: note: when computing vector element at index '0'
14781462// :81:17: error: use of undefined value here causes illegal behavior
1479// :81:17: note: when computing vector element at index '1'
1463// :81:17: note: when computing vector element at index '0'
14801464// :81:17: error: use of undefined value here causes illegal behavior
1481// :81:17: note: when computing vector element at index '1'
1465// :81:17: note: when computing vector element at index '0'
14821466// :81:17: error: use of undefined value here causes illegal behavior
14831467// :81:17: note: when computing vector element at index '0'
14841468// :81:17: error: use of undefined value here causes illegal behavior
......@@ -1488,7 +1472,9 @@ const std = @import("std");
14881472// :81:17: error: use of undefined value here causes illegal behavior
14891473// :81:17: note: when computing vector element at index '0'
14901474// :81:17: error: use of undefined value here causes illegal behavior
1475// :81:17: note: when computing vector element at index '0'
14911476// :81:17: error: use of undefined value here causes illegal behavior
1477// :81:17: note: when computing vector element at index '0'
14921478// :81:17: error: use of undefined value here causes illegal behavior
14931479// :81:17: note: when computing vector element at index '0'
14941480// :81:17: error: use of undefined value here causes illegal behavior
......@@ -1498,9 +1484,9 @@ const std = @import("std");
14981484// :81:17: error: use of undefined value here causes illegal behavior
14991485// :81:17: note: when computing vector element at index '0'
15001486// :81:17: error: use of undefined value here causes illegal behavior
1501// :81:17: note: when computing vector element at index '1'
1487// :81:17: note: when computing vector element at index '0'
15021488// :81:17: error: use of undefined value here causes illegal behavior
1503// :81:17: note: when computing vector element at index '1'
1489// :81:17: note: when computing vector element at index '0'
15041490// :81:17: error: use of undefined value here causes illegal behavior
15051491// :81:17: note: when computing vector element at index '0'
15061492// :81:17: error: use of undefined value here causes illegal behavior
......@@ -1510,7 +1496,9 @@ const std = @import("std");
15101496// :81:17: error: use of undefined value here causes illegal behavior
15111497// :81:17: note: when computing vector element at index '0'
15121498// :81:17: error: use of undefined value here causes illegal behavior
1499// :81:17: note: when computing vector element at index '0'
15131500// :81:17: error: use of undefined value here causes illegal behavior
1501// :81:17: note: when computing vector element at index '0'
15141502// :81:17: error: use of undefined value here causes illegal behavior
15151503// :81:17: note: when computing vector element at index '0'
15161504// :81:17: error: use of undefined value here causes illegal behavior
......@@ -1520,9 +1508,9 @@ const std = @import("std");
15201508// :81:17: error: use of undefined value here causes illegal behavior
15211509// :81:17: note: when computing vector element at index '0'
15221510// :81:17: error: use of undefined value here causes illegal behavior
1523// :81:17: note: when computing vector element at index '1'
1511// :81:17: note: when computing vector element at index '0'
15241512// :81:17: error: use of undefined value here causes illegal behavior
1525// :81:17: note: when computing vector element at index '1'
1513// :81:17: note: when computing vector element at index '0'
15261514// :81:17: error: use of undefined value here causes illegal behavior
15271515// :81:17: note: when computing vector element at index '0'
15281516// :81:17: error: use of undefined value here causes illegal behavior
......@@ -1532,7 +1520,9 @@ const std = @import("std");
15321520// :81:17: error: use of undefined value here causes illegal behavior
15331521// :81:17: note: when computing vector element at index '0'
15341522// :81:17: error: use of undefined value here causes illegal behavior
1523// :81:17: note: when computing vector element at index '0'
15351524// :81:17: error: use of undefined value here causes illegal behavior
1525// :81:17: note: when computing vector element at index '0'
15361526// :81:17: error: use of undefined value here causes illegal behavior
15371527// :81:17: note: when computing vector element at index '0'
15381528// :81:17: error: use of undefined value here causes illegal behavior
......@@ -1546,35 +1536,45 @@ const std = @import("std");
15461536// :81:17: error: use of undefined value here causes illegal behavior
15471537// :81:17: note: when computing vector element at index '1'
15481538// :81:17: error: use of undefined value here causes illegal behavior
1549// :81:17: note: when computing vector element at index '0'
1539// :81:17: note: when computing vector element at index '1'
15501540// :81:17: error: use of undefined value here causes illegal behavior
1551// :81:17: note: when computing vector element at index '0'
1541// :81:17: note: when computing vector element at index '1'
15521542// :81:17: error: use of undefined value here causes illegal behavior
1553// :81:17: note: when computing vector element at index '0'
1543// :81:17: note: when computing vector element at index '1'
15541544// :81:17: error: use of undefined value here causes illegal behavior
1555// :81:17: note: when computing vector element at index '0'
1545// :81:17: note: when computing vector element at index '1'
15561546// :81:17: error: use of undefined value here causes illegal behavior
1547// :81:17: note: when computing vector element at index '1'
15571548// :81:17: error: use of undefined value here causes illegal behavior
1549// :81:17: note: when computing vector element at index '1'
15581550// :81:17: error: use of undefined value here causes illegal behavior
1559// :81:17: note: when computing vector element at index '0'
1551// :81:17: note: when computing vector element at index '1'
15601552// :81:17: error: use of undefined value here causes illegal behavior
1561// :81:17: note: when computing vector element at index '0'
1553// :81:17: note: when computing vector element at index '1'
15621554// :81:17: error: use of undefined value here causes illegal behavior
1563// :81:17: note: when computing vector element at index '0'
1555// :81:17: note: when computing vector element at index '1'
15641556// :81:17: error: use of undefined value here causes illegal behavior
1565// :81:17: note: when computing vector element at index '0'
1557// :81:17: note: when computing vector element at index '1'
15661558// :81:17: error: use of undefined value here causes illegal behavior
15671559// :81:17: note: when computing vector element at index '1'
15681560// :81:17: error: use of undefined value here causes illegal behavior
15691561// :81:17: note: when computing vector element at index '1'
15701562// :81:17: error: use of undefined value here causes illegal behavior
1571// :81:17: note: when computing vector element at index '0'
1563// :81:17: note: when computing vector element at index '1'
15721564// :81:17: error: use of undefined value here causes illegal behavior
1573// :81:17: note: when computing vector element at index '0'
1565// :81:17: note: when computing vector element at index '1'
15741566// :81:17: error: use of undefined value here causes illegal behavior
1575// :81:17: note: when computing vector element at index '0'
1567// :81:17: note: when computing vector element at index '1'
15761568// :81:17: error: use of undefined value here causes illegal behavior
1577// :81:17: note: when computing vector element at index '0'
1569// :81:17: note: when computing vector element at index '1'
1570// :81:17: error: use of undefined value here causes illegal behavior
1571// :81:17: note: when computing vector element at index '1'
1572// :81:17: error: use of undefined value here causes illegal behavior
1573// :81:17: note: when computing vector element at index '1'
1574// :81:17: error: use of undefined value here causes illegal behavior
1575// :81:17: note: when computing vector element at index '1'
1576// :81:17: error: use of undefined value here causes illegal behavior
1577// :81:17: note: when computing vector element at index '1'
15781578// :81:21: error: use of undefined value here causes illegal behavior
15791579// :81:21: note: when computing vector element at index '0'
15801580// :81:21: error: use of undefined value here causes illegal behavior
......@@ -1622,39 +1622,25 @@ const std = @import("std");
16221622// :85:22: error: use of undefined value here causes illegal behavior
16231623// :85:22: error: use of undefined value here causes illegal behavior
16241624// :85:22: error: use of undefined value here causes illegal behavior
1625// :85:22: note: when computing vector element at index '0'
16261625// :85:22: error: use of undefined value here causes illegal behavior
1627// :85:22: note: when computing vector element at index '0'
16281626// :85:22: error: use of undefined value here causes illegal behavior
1629// :85:22: note: when computing vector element at index '0'
16301627// :85:22: error: use of undefined value here causes illegal behavior
1631// :85:22: note: when computing vector element at index '0'
16321628// :85:22: error: use of undefined value here causes illegal behavior
1633// :85:22: note: when computing vector element at index '1'
16341629// :85:22: error: use of undefined value here causes illegal behavior
1635// :85:22: note: when computing vector element at index '1'
16361630// :85:22: error: use of undefined value here causes illegal behavior
1637// :85:22: note: when computing vector element at index '0'
16381631// :85:22: error: use of undefined value here causes illegal behavior
1639// :85:22: note: when computing vector element at index '0'
16401632// :85:22: error: use of undefined value here causes illegal behavior
1641// :85:22: note: when computing vector element at index '0'
16421633// :85:22: error: use of undefined value here causes illegal behavior
1643// :85:22: note: when computing vector element at index '0'
16441634// :85:22: error: use of undefined value here causes illegal behavior
16451635// :85:22: error: use of undefined value here causes illegal behavior
16461636// :85:22: error: use of undefined value here causes illegal behavior
1647// :85:22: note: when computing vector element at index '0'
16481637// :85:22: error: use of undefined value here causes illegal behavior
1649// :85:22: note: when computing vector element at index '0'
16501638// :85:22: error: use of undefined value here causes illegal behavior
1651// :85:22: note: when computing vector element at index '0'
16521639// :85:22: error: use of undefined value here causes illegal behavior
1653// :85:22: note: when computing vector element at index '0'
16541640// :85:22: error: use of undefined value here causes illegal behavior
1655// :85:22: note: when computing vector element at index '1'
16561641// :85:22: error: use of undefined value here causes illegal behavior
1657// :85:22: note: when computing vector element at index '1'
1642// :85:22: error: use of undefined value here causes illegal behavior
1643// :85:22: error: use of undefined value here causes illegal behavior
16581644// :85:22: error: use of undefined value here causes illegal behavior
16591645// :85:22: note: when computing vector element at index '0'
16601646// :85:22: error: use of undefined value here causes illegal behavior
......@@ -1664,7 +1650,9 @@ const std = @import("std");
16641650// :85:22: error: use of undefined value here causes illegal behavior
16651651// :85:22: note: when computing vector element at index '0'
16661652// :85:22: error: use of undefined value here causes illegal behavior
1653// :85:22: note: when computing vector element at index '0'
16671654// :85:22: error: use of undefined value here causes illegal behavior
1655// :85:22: note: when computing vector element at index '0'
16681656// :85:22: error: use of undefined value here causes illegal behavior
16691657// :85:22: note: when computing vector element at index '0'
16701658// :85:22: error: use of undefined value here causes illegal behavior
......@@ -1674,9 +1662,9 @@ const std = @import("std");
16741662// :85:22: error: use of undefined value here causes illegal behavior
16751663// :85:22: note: when computing vector element at index '0'
16761664// :85:22: error: use of undefined value here causes illegal behavior
1677// :85:22: note: when computing vector element at index '1'
1665// :85:22: note: when computing vector element at index '0'
16781666// :85:22: error: use of undefined value here causes illegal behavior
1679// :85:22: note: when computing vector element at index '1'
1667// :85:22: note: when computing vector element at index '0'
16801668// :85:22: error: use of undefined value here causes illegal behavior
16811669// :85:22: note: when computing vector element at index '0'
16821670// :85:22: error: use of undefined value here causes illegal behavior
......@@ -1686,7 +1674,9 @@ const std = @import("std");
16861674// :85:22: error: use of undefined value here causes illegal behavior
16871675// :85:22: note: when computing vector element at index '0'
16881676// :85:22: error: use of undefined value here causes illegal behavior
1677// :85:22: note: when computing vector element at index '0'
16891678// :85:22: error: use of undefined value here causes illegal behavior
1679// :85:22: note: when computing vector element at index '0'
16901680// :85:22: error: use of undefined value here causes illegal behavior
16911681// :85:22: note: when computing vector element at index '0'
16921682// :85:22: error: use of undefined value here causes illegal behavior
......@@ -1696,9 +1686,9 @@ const std = @import("std");
16961686// :85:22: error: use of undefined value here causes illegal behavior
16971687// :85:22: note: when computing vector element at index '0'
16981688// :85:22: error: use of undefined value here causes illegal behavior
1699// :85:22: note: when computing vector element at index '1'
1689// :85:22: note: when computing vector element at index '0'
17001690// :85:22: error: use of undefined value here causes illegal behavior
1701// :85:22: note: when computing vector element at index '1'
1691// :85:22: note: when computing vector element at index '0'
17021692// :85:22: error: use of undefined value here causes illegal behavior
17031693// :85:22: note: when computing vector element at index '0'
17041694// :85:22: error: use of undefined value here causes illegal behavior
......@@ -1708,7 +1698,9 @@ const std = @import("std");
17081698// :85:22: error: use of undefined value here causes illegal behavior
17091699// :85:22: note: when computing vector element at index '0'
17101700// :85:22: error: use of undefined value here causes illegal behavior
1701// :85:22: note: when computing vector element at index '0'
17111702// :85:22: error: use of undefined value here causes illegal behavior
1703// :85:22: note: when computing vector element at index '0'
17121704// :85:22: error: use of undefined value here causes illegal behavior
17131705// :85:22: note: when computing vector element at index '0'
17141706// :85:22: error: use of undefined value here causes illegal behavior
......@@ -1718,10 +1710,6 @@ const std = @import("std");
17181710// :85:22: error: use of undefined value here causes illegal behavior
17191711// :85:22: note: when computing vector element at index '0'
17201712// :85:22: error: use of undefined value here causes illegal behavior
1721// :85:22: note: when computing vector element at index '1'
1722// :85:22: error: use of undefined value here causes illegal behavior
1723// :85:22: note: when computing vector element at index '1'
1724// :85:22: error: use of undefined value here causes illegal behavior
17251713// :85:22: note: when computing vector element at index '0'
17261714// :85:22: error: use of undefined value here causes illegal behavior
17271715// :85:22: note: when computing vector element at index '0'
......@@ -1730,8 +1718,6 @@ const std = @import("std");
17301718// :85:22: error: use of undefined value here causes illegal behavior
17311719// :85:22: note: when computing vector element at index '0'
17321720// :85:22: error: use of undefined value here causes illegal behavior
1733// :85:22: error: use of undefined value here causes illegal behavior
1734// :85:22: error: use of undefined value here causes illegal behavior
17351721// :85:22: note: when computing vector element at index '0'
17361722// :85:22: error: use of undefined value here causes illegal behavior
17371723// :85:22: note: when computing vector element at index '0'
......@@ -1740,10 +1726,6 @@ const std = @import("std");
17401726// :85:22: error: use of undefined value here causes illegal behavior
17411727// :85:22: note: when computing vector element at index '0'
17421728// :85:22: error: use of undefined value here causes illegal behavior
1743// :85:22: note: when computing vector element at index '1'
1744// :85:22: error: use of undefined value here causes illegal behavior
1745// :85:22: note: when computing vector element at index '1'
1746// :85:22: error: use of undefined value here causes illegal behavior
17471729// :85:22: note: when computing vector element at index '0'
17481730// :85:22: error: use of undefined value here causes illegal behavior
17491731// :85:22: note: when computing vector element at index '0'
......@@ -1752,7 +1734,9 @@ const std = @import("std");
17521734// :85:22: error: use of undefined value here causes illegal behavior
17531735// :85:22: note: when computing vector element at index '0'
17541736// :85:22: error: use of undefined value here causes illegal behavior
1737// :85:22: note: when computing vector element at index '0'
17551738// :85:22: error: use of undefined value here causes illegal behavior
1739// :85:22: note: when computing vector element at index '0'
17561740// :85:22: error: use of undefined value here causes illegal behavior
17571741// :85:22: note: when computing vector element at index '0'
17581742// :85:22: error: use of undefined value here causes illegal behavior
......@@ -1762,9 +1746,9 @@ const std = @import("std");
17621746// :85:22: error: use of undefined value here causes illegal behavior
17631747// :85:22: note: when computing vector element at index '0'
17641748// :85:22: error: use of undefined value here causes illegal behavior
1765// :85:22: note: when computing vector element at index '1'
1749// :85:22: note: when computing vector element at index '0'
17661750// :85:22: error: use of undefined value here causes illegal behavior
1767// :85:22: note: when computing vector element at index '1'
1751// :85:22: note: when computing vector element at index '0'
17681752// :85:22: error: use of undefined value here causes illegal behavior
17691753// :85:22: note: when computing vector element at index '0'
17701754// :85:22: error: use of undefined value here causes illegal behavior
......@@ -1774,7 +1758,9 @@ const std = @import("std");
17741758// :85:22: error: use of undefined value here causes illegal behavior
17751759// :85:22: note: when computing vector element at index '0'
17761760// :85:22: error: use of undefined value here causes illegal behavior
1761// :85:22: note: when computing vector element at index '0'
17771762// :85:22: error: use of undefined value here causes illegal behavior
1763// :85:22: note: when computing vector element at index '0'
17781764// :85:22: error: use of undefined value here causes illegal behavior
17791765// :85:22: note: when computing vector element at index '0'
17801766// :85:22: error: use of undefined value here causes illegal behavior
......@@ -1784,9 +1770,9 @@ const std = @import("std");
17841770// :85:22: error: use of undefined value here causes illegal behavior
17851771// :85:22: note: when computing vector element at index '0'
17861772// :85:22: error: use of undefined value here causes illegal behavior
1787// :85:22: note: when computing vector element at index '1'
1773// :85:22: note: when computing vector element at index '0'
17881774// :85:22: error: use of undefined value here causes illegal behavior
1789// :85:22: note: when computing vector element at index '1'
1775// :85:22: note: when computing vector element at index '0'
17901776// :85:22: error: use of undefined value here causes illegal behavior
17911777// :85:22: note: when computing vector element at index '0'
17921778// :85:22: error: use of undefined value here causes illegal behavior
......@@ -1796,7 +1782,9 @@ const std = @import("std");
17961782// :85:22: error: use of undefined value here causes illegal behavior
17971783// :85:22: note: when computing vector element at index '0'
17981784// :85:22: error: use of undefined value here causes illegal behavior
1785// :85:22: note: when computing vector element at index '0'
17991786// :85:22: error: use of undefined value here causes illegal behavior
1787// :85:22: note: when computing vector element at index '0'
18001788// :85:22: error: use of undefined value here causes illegal behavior
18011789// :85:22: note: when computing vector element at index '0'
18021790// :85:22: error: use of undefined value here causes illegal behavior
......@@ -1806,9 +1794,9 @@ const std = @import("std");
18061794// :85:22: error: use of undefined value here causes illegal behavior
18071795// :85:22: note: when computing vector element at index '0'
18081796// :85:22: error: use of undefined value here causes illegal behavior
1809// :85:22: note: when computing vector element at index '1'
1797// :85:22: note: when computing vector element at index '0'
18101798// :85:22: error: use of undefined value here causes illegal behavior
1811// :85:22: note: when computing vector element at index '1'
1799// :85:22: note: when computing vector element at index '0'
18121800// :85:22: error: use of undefined value here causes illegal behavior
18131801// :85:22: note: when computing vector element at index '0'
18141802// :85:22: error: use of undefined value here causes illegal behavior
......@@ -1818,7 +1806,9 @@ const std = @import("std");
18181806// :85:22: error: use of undefined value here causes illegal behavior
18191807// :85:22: note: when computing vector element at index '0'
18201808// :85:22: error: use of undefined value here causes illegal behavior
1809// :85:22: note: when computing vector element at index '0'
18211810// :85:22: error: use of undefined value here causes illegal behavior
1811// :85:22: note: when computing vector element at index '0'
18221812// :85:22: error: use of undefined value here causes illegal behavior
18231813// :85:22: note: when computing vector element at index '0'
18241814// :85:22: error: use of undefined value here causes illegal behavior
......@@ -1832,35 +1822,45 @@ const std = @import("std");
18321822// :85:22: error: use of undefined value here causes illegal behavior
18331823// :85:22: note: when computing vector element at index '1'
18341824// :85:22: error: use of undefined value here causes illegal behavior
1835// :85:22: note: when computing vector element at index '0'
1825// :85:22: note: when computing vector element at index '1'
18361826// :85:22: error: use of undefined value here causes illegal behavior
1837// :85:22: note: when computing vector element at index '0'
1827// :85:22: note: when computing vector element at index '1'
18381828// :85:22: error: use of undefined value here causes illegal behavior
1839// :85:22: note: when computing vector element at index '0'
1829// :85:22: note: when computing vector element at index '1'
18401830// :85:22: error: use of undefined value here causes illegal behavior
1841// :85:22: note: when computing vector element at index '0'
1831// :85:22: note: when computing vector element at index '1'
18421832// :85:22: error: use of undefined value here causes illegal behavior
1833// :85:22: note: when computing vector element at index '1'
18431834// :85:22: error: use of undefined value here causes illegal behavior
1835// :85:22: note: when computing vector element at index '1'
18441836// :85:22: error: use of undefined value here causes illegal behavior
1845// :85:22: note: when computing vector element at index '0'
1837// :85:22: note: when computing vector element at index '1'
18461838// :85:22: error: use of undefined value here causes illegal behavior
1847// :85:22: note: when computing vector element at index '0'
1839// :85:22: note: when computing vector element at index '1'
18481840// :85:22: error: use of undefined value here causes illegal behavior
1849// :85:22: note: when computing vector element at index '0'
1841// :85:22: note: when computing vector element at index '1'
18501842// :85:22: error: use of undefined value here causes illegal behavior
1851// :85:22: note: when computing vector element at index '0'
1843// :85:22: note: when computing vector element at index '1'
18521844// :85:22: error: use of undefined value here causes illegal behavior
18531845// :85:22: note: when computing vector element at index '1'
18541846// :85:22: error: use of undefined value here causes illegal behavior
18551847// :85:22: note: when computing vector element at index '1'
18561848// :85:22: error: use of undefined value here causes illegal behavior
1857// :85:22: note: when computing vector element at index '0'
1849// :85:22: note: when computing vector element at index '1'
18581850// :85:22: error: use of undefined value here causes illegal behavior
1859// :85:22: note: when computing vector element at index '0'
1851// :85:22: note: when computing vector element at index '1'
18601852// :85:22: error: use of undefined value here causes illegal behavior
1861// :85:22: note: when computing vector element at index '0'
1853// :85:22: note: when computing vector element at index '1'
18621854// :85:22: error: use of undefined value here causes illegal behavior
1863// :85:22: note: when computing vector element at index '0'
1855// :85:22: note: when computing vector element at index '1'
1856// :85:22: error: use of undefined value here causes illegal behavior
1857// :85:22: note: when computing vector element at index '1'
1858// :85:22: error: use of undefined value here causes illegal behavior
1859// :85:22: note: when computing vector element at index '1'
1860// :85:22: error: use of undefined value here causes illegal behavior
1861// :85:22: note: when computing vector element at index '1'
1862// :85:22: error: use of undefined value here causes illegal behavior
1863// :85:22: note: when computing vector element at index '1'
18641864// :85:25: error: use of undefined value here causes illegal behavior
18651865// :85:25: note: when computing vector element at index '0'
18661866// :85:25: error: use of undefined value here causes illegal behavior
......@@ -1908,50 +1908,30 @@ const std = @import("std");
19081908// :89:22: error: use of undefined value here causes illegal behavior
19091909// :89:22: error: use of undefined value here causes illegal behavior
19101910// :89:22: error: use of undefined value here causes illegal behavior
1911// :89:22: note: when computing vector element at index '0'
19121911// :89:22: error: use of undefined value here causes illegal behavior
1913// :89:22: note: when computing vector element at index '0'
19141912// :89:22: error: use of undefined value here causes illegal behavior
1915// :89:22: note: when computing vector element at index '0'
19161913// :89:22: error: use of undefined value here causes illegal behavior
1917// :89:22: note: when computing vector element at index '0'
19181914// :89:22: error: use of undefined value here causes illegal behavior
1919// :89:22: note: when computing vector element at index '1'
19201915// :89:22: error: use of undefined value here causes illegal behavior
1921// :89:22: note: when computing vector element at index '1'
19221916// :89:22: error: use of undefined value here causes illegal behavior
1923// :89:22: note: when computing vector element at index '0'
19241917// :89:22: error: use of undefined value here causes illegal behavior
1925// :89:22: note: when computing vector element at index '0'
19261918// :89:22: error: use of undefined value here causes illegal behavior
1927// :89:22: note: when computing vector element at index '0'
19281919// :89:22: error: use of undefined value here causes illegal behavior
1929// :89:22: note: when computing vector element at index '0'
19301920// :89:22: error: use of undefined value here causes illegal behavior
19311921// :89:22: error: use of undefined value here causes illegal behavior
19321922// :89:22: error: use of undefined value here causes illegal behavior
1933// :89:22: note: when computing vector element at index '0'
19341923// :89:22: error: use of undefined value here causes illegal behavior
1935// :89:22: note: when computing vector element at index '0'
19361924// :89:22: error: use of undefined value here causes illegal behavior
1937// :89:22: note: when computing vector element at index '0'
19381925// :89:22: error: use of undefined value here causes illegal behavior
1939// :89:22: note: when computing vector element at index '0'
19401926// :89:22: error: use of undefined value here causes illegal behavior
1941// :89:22: note: when computing vector element at index '1'
19421927// :89:22: error: use of undefined value here causes illegal behavior
1943// :89:22: note: when computing vector element at index '1'
19441928// :89:22: error: use of undefined value here causes illegal behavior
1945// :89:22: note: when computing vector element at index '0'
19461929// :89:22: error: use of undefined value here causes illegal behavior
1947// :89:22: note: when computing vector element at index '0'
19481930// :89:22: error: use of undefined value here causes illegal behavior
19491931// :89:22: note: when computing vector element at index '0'
19501932// :89:22: error: use of undefined value here causes illegal behavior
19511933// :89:22: note: when computing vector element at index '0'
19521934// :89:22: error: use of undefined value here causes illegal behavior
1953// :89:22: error: use of undefined value here causes illegal behavior
1954// :89:22: error: use of undefined value here causes illegal behavior
19551935// :89:22: note: when computing vector element at index '0'
19561936// :89:22: error: use of undefined value here causes illegal behavior
19571937// :89:22: note: when computing vector element at index '0'
......@@ -1960,10 +1940,6 @@ const std = @import("std");
19601940// :89:22: error: use of undefined value here causes illegal behavior
19611941// :89:22: note: when computing vector element at index '0'
19621942// :89:22: error: use of undefined value here causes illegal behavior
1963// :89:22: note: when computing vector element at index '1'
1964// :89:22: error: use of undefined value here causes illegal behavior
1965// :89:22: note: when computing vector element at index '1'
1966// :89:22: error: use of undefined value here causes illegal behavior
19671943// :89:22: note: when computing vector element at index '0'
19681944// :89:22: error: use of undefined value here causes illegal behavior
19691945// :89:22: note: when computing vector element at index '0'
......@@ -1972,7 +1948,9 @@ const std = @import("std");
19721948// :89:22: error: use of undefined value here causes illegal behavior
19731949// :89:22: note: when computing vector element at index '0'
19741950// :89:22: error: use of undefined value here causes illegal behavior
1951// :89:22: note: when computing vector element at index '0'
19751952// :89:22: error: use of undefined value here causes illegal behavior
1953// :89:22: note: when computing vector element at index '0'
19761954// :89:22: error: use of undefined value here causes illegal behavior
19771955// :89:22: note: when computing vector element at index '0'
19781956// :89:22: error: use of undefined value here causes illegal behavior
......@@ -1982,9 +1960,9 @@ const std = @import("std");
19821960// :89:22: error: use of undefined value here causes illegal behavior
19831961// :89:22: note: when computing vector element at index '0'
19841962// :89:22: error: use of undefined value here causes illegal behavior
1985// :89:22: note: when computing vector element at index '1'
1963// :89:22: note: when computing vector element at index '0'
19861964// :89:22: error: use of undefined value here causes illegal behavior
1987// :89:22: note: when computing vector element at index '1'
1965// :89:22: note: when computing vector element at index '0'
19881966// :89:22: error: use of undefined value here causes illegal behavior
19891967// :89:22: note: when computing vector element at index '0'
19901968// :89:22: error: use of undefined value here causes illegal behavior
......@@ -1994,7 +1972,9 @@ const std = @import("std");
19941972// :89:22: error: use of undefined value here causes illegal behavior
19951973// :89:22: note: when computing vector element at index '0'
19961974// :89:22: error: use of undefined value here causes illegal behavior
1975// :89:22: note: when computing vector element at index '0'
19971976// :89:22: error: use of undefined value here causes illegal behavior
1977// :89:22: note: when computing vector element at index '0'
19981978// :89:22: error: use of undefined value here causes illegal behavior
19991979// :89:22: note: when computing vector element at index '0'
20001980// :89:22: error: use of undefined value here causes illegal behavior
......@@ -2004,9 +1984,9 @@ const std = @import("std");
20041984// :89:22: error: use of undefined value here causes illegal behavior
20051985// :89:22: note: when computing vector element at index '0'
20061986// :89:22: error: use of undefined value here causes illegal behavior
2007// :89:22: note: when computing vector element at index '1'
1987// :89:22: note: when computing vector element at index '0'
20081988// :89:22: error: use of undefined value here causes illegal behavior
2009// :89:22: note: when computing vector element at index '1'
1989// :89:22: note: when computing vector element at index '0'
20101990// :89:22: error: use of undefined value here causes illegal behavior
20111991// :89:22: note: when computing vector element at index '0'
20121992// :89:22: error: use of undefined value here causes illegal behavior
......@@ -2016,7 +1996,9 @@ const std = @import("std");
20161996// :89:22: error: use of undefined value here causes illegal behavior
20171997// :89:22: note: when computing vector element at index '0'
20181998// :89:22: error: use of undefined value here causes illegal behavior
1999// :89:22: note: when computing vector element at index '0'
20192000// :89:22: error: use of undefined value here causes illegal behavior
2001// :89:22: note: when computing vector element at index '0'
20202002// :89:22: error: use of undefined value here causes illegal behavior
20212003// :89:22: note: when computing vector element at index '0'
20222004// :89:22: error: use of undefined value here causes illegal behavior
......@@ -2026,9 +2008,9 @@ const std = @import("std");
20262008// :89:22: error: use of undefined value here causes illegal behavior
20272009// :89:22: note: when computing vector element at index '0'
20282010// :89:22: error: use of undefined value here causes illegal behavior
2029// :89:22: note: when computing vector element at index '1'
2011// :89:22: note: when computing vector element at index '0'
20302012// :89:22: error: use of undefined value here causes illegal behavior
2031// :89:22: note: when computing vector element at index '1'
2013// :89:22: note: when computing vector element at index '0'
20322014// :89:22: error: use of undefined value here causes illegal behavior
20332015// :89:22: note: when computing vector element at index '0'
20342016// :89:22: error: use of undefined value here causes illegal behavior
......@@ -2038,7 +2020,9 @@ const std = @import("std");
20382020// :89:22: error: use of undefined value here causes illegal behavior
20392021// :89:22: note: when computing vector element at index '0'
20402022// :89:22: error: use of undefined value here causes illegal behavior
2023// :89:22: note: when computing vector element at index '0'
20412024// :89:22: error: use of undefined value here causes illegal behavior
2025// :89:22: note: when computing vector element at index '0'
20422026// :89:22: error: use of undefined value here causes illegal behavior
20432027// :89:22: note: when computing vector element at index '0'
20442028// :89:22: error: use of undefined value here causes illegal behavior
......@@ -2048,9 +2032,9 @@ const std = @import("std");
20482032// :89:22: error: use of undefined value here causes illegal behavior
20492033// :89:22: note: when computing vector element at index '0'
20502034// :89:22: error: use of undefined value here causes illegal behavior
2051// :89:22: note: when computing vector element at index '1'
2035// :89:22: note: when computing vector element at index '0'
20522036// :89:22: error: use of undefined value here causes illegal behavior
2053// :89:22: note: when computing vector element at index '1'
2037// :89:22: note: when computing vector element at index '0'
20542038// :89:22: error: use of undefined value here causes illegal behavior
20552039// :89:22: note: when computing vector element at index '0'
20562040// :89:22: error: use of undefined value here causes illegal behavior
......@@ -2060,7 +2044,9 @@ const std = @import("std");
20602044// :89:22: error: use of undefined value here causes illegal behavior
20612045// :89:22: note: when computing vector element at index '0'
20622046// :89:22: error: use of undefined value here causes illegal behavior
2047// :89:22: note: when computing vector element at index '0'
20632048// :89:22: error: use of undefined value here causes illegal behavior
2049// :89:22: note: when computing vector element at index '0'
20642050// :89:22: error: use of undefined value here causes illegal behavior
20652051// :89:22: note: when computing vector element at index '0'
20662052// :89:22: error: use of undefined value here causes illegal behavior
......@@ -2070,9 +2056,9 @@ const std = @import("std");
20702056// :89:22: error: use of undefined value here causes illegal behavior
20712057// :89:22: note: when computing vector element at index '0'
20722058// :89:22: error: use of undefined value here causes illegal behavior
2073// :89:22: note: when computing vector element at index '1'
2059// :89:22: note: when computing vector element at index '0'
20742060// :89:22: error: use of undefined value here causes illegal behavior
2075// :89:22: note: when computing vector element at index '1'
2061// :89:22: note: when computing vector element at index '0'
20762062// :89:22: error: use of undefined value here causes illegal behavior
20772063// :89:22: note: when computing vector element at index '0'
20782064// :89:22: error: use of undefined value here causes illegal behavior
......@@ -2082,7 +2068,9 @@ const std = @import("std");
20822068// :89:22: error: use of undefined value here causes illegal behavior
20832069// :89:22: note: when computing vector element at index '0'
20842070// :89:22: error: use of undefined value here causes illegal behavior
2071// :89:22: note: when computing vector element at index '0'
20852072// :89:22: error: use of undefined value here causes illegal behavior
2073// :89:22: note: when computing vector element at index '0'
20862074// :89:22: error: use of undefined value here causes illegal behavior
20872075// :89:22: note: when computing vector element at index '0'
20882076// :89:22: error: use of undefined value here causes illegal behavior
......@@ -2092,9 +2080,9 @@ const std = @import("std");
20922080// :89:22: error: use of undefined value here causes illegal behavior
20932081// :89:22: note: when computing vector element at index '0'
20942082// :89:22: error: use of undefined value here causes illegal behavior
2095// :89:22: note: when computing vector element at index '1'
2083// :89:22: note: when computing vector element at index '0'
20962084// :89:22: error: use of undefined value here causes illegal behavior
2097// :89:22: note: when computing vector element at index '1'
2085// :89:22: note: when computing vector element at index '0'
20982086// :89:22: error: use of undefined value here causes illegal behavior
20992087// :89:22: note: when computing vector element at index '0'
21002088// :89:22: error: use of undefined value here causes illegal behavior
......@@ -2104,7 +2092,9 @@ const std = @import("std");
21042092// :89:22: error: use of undefined value here causes illegal behavior
21052093// :89:22: note: when computing vector element at index '0'
21062094// :89:22: error: use of undefined value here causes illegal behavior
2095// :89:22: note: when computing vector element at index '0'
21072096// :89:22: error: use of undefined value here causes illegal behavior
2097// :89:22: note: when computing vector element at index '0'
21082098// :89:22: error: use of undefined value here causes illegal behavior
21092099// :89:22: note: when computing vector element at index '0'
21102100// :89:22: error: use of undefined value here causes illegal behavior
......@@ -2118,35 +2108,45 @@ const std = @import("std");
21182108// :89:22: error: use of undefined value here causes illegal behavior
21192109// :89:22: note: when computing vector element at index '1'
21202110// :89:22: error: use of undefined value here causes illegal behavior
2121// :89:22: note: when computing vector element at index '0'
2111// :89:22: note: when computing vector element at index '1'
21222112// :89:22: error: use of undefined value here causes illegal behavior
2123// :89:22: note: when computing vector element at index '0'
2113// :89:22: note: when computing vector element at index '1'
21242114// :89:22: error: use of undefined value here causes illegal behavior
2125// :89:22: note: when computing vector element at index '0'
2115// :89:22: note: when computing vector element at index '1'
21262116// :89:22: error: use of undefined value here causes illegal behavior
2127// :89:22: note: when computing vector element at index '0'
2117// :89:22: note: when computing vector element at index '1'
21282118// :89:22: error: use of undefined value here causes illegal behavior
2119// :89:22: note: when computing vector element at index '1'
21292120// :89:22: error: use of undefined value here causes illegal behavior
2121// :89:22: note: when computing vector element at index '1'
21302122// :89:22: error: use of undefined value here causes illegal behavior
2131// :89:22: note: when computing vector element at index '0'
2123// :89:22: note: when computing vector element at index '1'
21322124// :89:22: error: use of undefined value here causes illegal behavior
2133// :89:22: note: when computing vector element at index '0'
2125// :89:22: note: when computing vector element at index '1'
21342126// :89:22: error: use of undefined value here causes illegal behavior
2135// :89:22: note: when computing vector element at index '0'
2127// :89:22: note: when computing vector element at index '1'
21362128// :89:22: error: use of undefined value here causes illegal behavior
2137// :89:22: note: when computing vector element at index '0'
2129// :89:22: note: when computing vector element at index '1'
21382130// :89:22: error: use of undefined value here causes illegal behavior
21392131// :89:22: note: when computing vector element at index '1'
21402132// :89:22: error: use of undefined value here causes illegal behavior
21412133// :89:22: note: when computing vector element at index '1'
21422134// :89:22: error: use of undefined value here causes illegal behavior
2143// :89:22: note: when computing vector element at index '0'
2135// :89:22: note: when computing vector element at index '1'
21442136// :89:22: error: use of undefined value here causes illegal behavior
2145// :89:22: note: when computing vector element at index '0'
2137// :89:22: note: when computing vector element at index '1'
21462138// :89:22: error: use of undefined value here causes illegal behavior
2147// :89:22: note: when computing vector element at index '0'
2139// :89:22: note: when computing vector element at index '1'
21482140// :89:22: error: use of undefined value here causes illegal behavior
2149// :89:22: note: when computing vector element at index '0'
2141// :89:22: note: when computing vector element at index '1'
2142// :89:22: error: use of undefined value here causes illegal behavior
2143// :89:22: note: when computing vector element at index '1'
2144// :89:22: error: use of undefined value here causes illegal behavior
2145// :89:22: note: when computing vector element at index '1'
2146// :89:22: error: use of undefined value here causes illegal behavior
2147// :89:22: note: when computing vector element at index '1'
2148// :89:22: error: use of undefined value here causes illegal behavior
2149// :89:22: note: when computing vector element at index '1'
21502150// :89:25: error: use of undefined value here causes illegal behavior
21512151// :89:25: note: when computing vector element at index '0'
21522152// :89:25: error: use of undefined value here causes illegal behavior
......@@ -2198,21 +2198,13 @@ const std = @import("std");
21982198// :95:17: error: use of undefined value here causes illegal behavior
21992199// :95:17: error: use of undefined value here causes illegal behavior
22002200// :95:17: error: use of undefined value here causes illegal behavior
2201// :95:17: note: when computing vector element at index '1'
22022201// :95:17: error: use of undefined value here causes illegal behavior
2203// :95:17: note: when computing vector element at index '1'
22042202// :95:17: error: use of undefined value here causes illegal behavior
2205// :95:17: note: when computing vector element at index '1'
22062203// :95:17: error: use of undefined value here causes illegal behavior
2207// :95:17: note: when computing vector element at index '1'
22082204// :95:17: error: use of undefined value here causes illegal behavior
2209// :95:17: note: when computing vector element at index '0'
22102205// :95:17: error: use of undefined value here causes illegal behavior
2211// :95:17: note: when computing vector element at index '0'
22122206// :95:17: error: use of undefined value here causes illegal behavior
2213// :95:17: note: when computing vector element at index '0'
22142207// :95:17: error: use of undefined value here causes illegal behavior
2215// :95:17: note: when computing vector element at index '0'
22162208// :95:17: error: use of undefined value here causes illegal behavior
22172209// :95:17: error: use of undefined value here causes illegal behavior
22182210// :95:17: error: use of undefined value here causes illegal behavior
......@@ -2220,21 +2212,13 @@ const std = @import("std");
22202212// :95:17: error: use of undefined value here causes illegal behavior
22212213// :95:17: error: use of undefined value here causes illegal behavior
22222214// :95:17: error: use of undefined value here causes illegal behavior
2223// :95:17: note: when computing vector element at index '1'
22242215// :95:17: error: use of undefined value here causes illegal behavior
2225// :95:17: note: when computing vector element at index '1'
22262216// :95:17: error: use of undefined value here causes illegal behavior
2227// :95:17: note: when computing vector element at index '1'
22282217// :95:17: error: use of undefined value here causes illegal behavior
2229// :95:17: note: when computing vector element at index '1'
22302218// :95:17: error: use of undefined value here causes illegal behavior
2231// :95:17: note: when computing vector element at index '0'
22322219// :95:17: error: use of undefined value here causes illegal behavior
2233// :95:17: note: when computing vector element at index '0'
22342220// :95:17: error: use of undefined value here causes illegal behavior
2235// :95:17: note: when computing vector element at index '0'
22362221// :95:17: error: use of undefined value here causes illegal behavior
2237// :95:17: note: when computing vector element at index '0'
22382222// :95:17: error: use of undefined value here causes illegal behavior
22392223// :95:17: error: use of undefined value here causes illegal behavior
22402224// :95:17: error: use of undefined value here causes illegal behavior
......@@ -2242,21 +2226,13 @@ const std = @import("std");
22422226// :95:17: error: use of undefined value here causes illegal behavior
22432227// :95:17: error: use of undefined value here causes illegal behavior
22442228// :95:17: error: use of undefined value here causes illegal behavior
2245// :95:17: note: when computing vector element at index '1'
22462229// :95:17: error: use of undefined value here causes illegal behavior
2247// :95:17: note: when computing vector element at index '1'
22482230// :95:17: error: use of undefined value here causes illegal behavior
2249// :95:17: note: when computing vector element at index '1'
22502231// :95:17: error: use of undefined value here causes illegal behavior
2251// :95:17: note: when computing vector element at index '1'
22522232// :95:17: error: use of undefined value here causes illegal behavior
2253// :95:17: note: when computing vector element at index '0'
22542233// :95:17: error: use of undefined value here causes illegal behavior
2255// :95:17: note: when computing vector element at index '0'
22562234// :95:17: error: use of undefined value here causes illegal behavior
2257// :95:17: note: when computing vector element at index '0'
22582235// :95:17: error: use of undefined value here causes illegal behavior
2259// :95:17: note: when computing vector element at index '0'
22602236// :95:17: error: use of undefined value here causes illegal behavior
22612237// :95:17: error: use of undefined value here causes illegal behavior
22622238// :95:17: error: use of undefined value here causes illegal behavior
......@@ -2264,21 +2240,13 @@ const std = @import("std");
22642240// :95:17: error: use of undefined value here causes illegal behavior
22652241// :95:17: error: use of undefined value here causes illegal behavior
22662242// :95:17: error: use of undefined value here causes illegal behavior
2267// :95:17: note: when computing vector element at index '1'
22682243// :95:17: error: use of undefined value here causes illegal behavior
2269// :95:17: note: when computing vector element at index '1'
22702244// :95:17: error: use of undefined value here causes illegal behavior
2271// :95:17: note: when computing vector element at index '1'
22722245// :95:17: error: use of undefined value here causes illegal behavior
2273// :95:17: note: when computing vector element at index '1'
22742246// :95:17: error: use of undefined value here causes illegal behavior
2275// :95:17: note: when computing vector element at index '0'
22762247// :95:17: error: use of undefined value here causes illegal behavior
2277// :95:17: note: when computing vector element at index '0'
22782248// :95:17: error: use of undefined value here causes illegal behavior
2279// :95:17: note: when computing vector element at index '0'
22802249// :95:17: error: use of undefined value here causes illegal behavior
2281// :95:17: note: when computing vector element at index '0'
22822250// :95:17: error: use of undefined value here causes illegal behavior
22832251// :95:17: error: use of undefined value here causes illegal behavior
22842252// :95:17: error: use of undefined value here causes illegal behavior
......@@ -2286,13 +2254,9 @@ const std = @import("std");
22862254// :95:17: error: use of undefined value here causes illegal behavior
22872255// :95:17: error: use of undefined value here causes illegal behavior
22882256// :95:17: error: use of undefined value here causes illegal behavior
2289// :95:17: note: when computing vector element at index '1'
22902257// :95:17: error: use of undefined value here causes illegal behavior
2291// :95:17: note: when computing vector element at index '1'
22922258// :95:17: error: use of undefined value here causes illegal behavior
2293// :95:17: note: when computing vector element at index '1'
22942259// :95:17: error: use of undefined value here causes illegal behavior
2295// :95:17: note: when computing vector element at index '1'
22962260// :95:17: error: use of undefined value here causes illegal behavior
22972261// :95:17: note: when computing vector element at index '0'
22982262// :95:17: error: use of undefined value here causes illegal behavior
......@@ -2302,19 +2266,21 @@ const std = @import("std");
23022266// :95:17: error: use of undefined value here causes illegal behavior
23032267// :95:17: note: when computing vector element at index '0'
23042268// :95:17: error: use of undefined value here causes illegal behavior
2269// :95:17: note: when computing vector element at index '0'
23052270// :95:17: error: use of undefined value here causes illegal behavior
2271// :95:17: note: when computing vector element at index '0'
23062272// :95:17: error: use of undefined value here causes illegal behavior
2273// :95:17: note: when computing vector element at index '0'
23072274// :95:17: error: use of undefined value here causes illegal behavior
2275// :95:17: note: when computing vector element at index '0'
23082276// :95:17: error: use of undefined value here causes illegal behavior
2277// :95:17: note: when computing vector element at index '0'
23092278// :95:17: error: use of undefined value here causes illegal behavior
2279// :95:17: note: when computing vector element at index '0'
23102280// :95:17: error: use of undefined value here causes illegal behavior
2311// :95:17: note: when computing vector element at index '1'
2312// :95:17: error: use of undefined value here causes illegal behavior
2313// :95:17: note: when computing vector element at index '1'
2314// :95:17: error: use of undefined value here causes illegal behavior
2315// :95:17: note: when computing vector element at index '1'
2281// :95:17: note: when computing vector element at index '0'
23162282// :95:17: error: use of undefined value here causes illegal behavior
2317// :95:17: note: when computing vector element at index '1'
2283// :95:17: note: when computing vector element at index '0'
23182284// :95:17: error: use of undefined value here causes illegal behavior
23192285// :95:17: note: when computing vector element at index '0'
23202286// :95:17: error: use of undefined value here causes illegal behavior
......@@ -2324,19 +2290,25 @@ const std = @import("std");
23242290// :95:17: error: use of undefined value here causes illegal behavior
23252291// :95:17: note: when computing vector element at index '0'
23262292// :95:17: error: use of undefined value here causes illegal behavior
2293// :95:17: note: when computing vector element at index '0'
23272294// :95:17: error: use of undefined value here causes illegal behavior
2295// :95:17: note: when computing vector element at index '0'
23282296// :95:17: error: use of undefined value here causes illegal behavior
2297// :95:17: note: when computing vector element at index '0'
23292298// :95:17: error: use of undefined value here causes illegal behavior
2299// :95:17: note: when computing vector element at index '0'
23302300// :95:17: error: use of undefined value here causes illegal behavior
2301// :95:17: note: when computing vector element at index '0'
23312302// :95:17: error: use of undefined value here causes illegal behavior
2303// :95:17: note: when computing vector element at index '0'
23322304// :95:17: error: use of undefined value here causes illegal behavior
2333// :95:17: note: when computing vector element at index '1'
2305// :95:17: note: when computing vector element at index '0'
23342306// :95:17: error: use of undefined value here causes illegal behavior
2335// :95:17: note: when computing vector element at index '1'
2307// :95:17: note: when computing vector element at index '0'
23362308// :95:17: error: use of undefined value here causes illegal behavior
2337// :95:17: note: when computing vector element at index '1'
2309// :95:17: note: when computing vector element at index '0'
23382310// :95:17: error: use of undefined value here causes illegal behavior
2339// :95:17: note: when computing vector element at index '1'
2311// :95:17: note: when computing vector element at index '0'
23402312// :95:17: error: use of undefined value here causes illegal behavior
23412313// :95:17: note: when computing vector element at index '0'
23422314// :95:17: error: use of undefined value here causes illegal behavior
......@@ -2346,19 +2318,25 @@ const std = @import("std");
23462318// :95:17: error: use of undefined value here causes illegal behavior
23472319// :95:17: note: when computing vector element at index '0'
23482320// :95:17: error: use of undefined value here causes illegal behavior
2321// :95:17: note: when computing vector element at index '0'
23492322// :95:17: error: use of undefined value here causes illegal behavior
2323// :95:17: note: when computing vector element at index '0'
23502324// :95:17: error: use of undefined value here causes illegal behavior
2325// :95:17: note: when computing vector element at index '0'
23512326// :95:17: error: use of undefined value here causes illegal behavior
2327// :95:17: note: when computing vector element at index '0'
23522328// :95:17: error: use of undefined value here causes illegal behavior
2329// :95:17: note: when computing vector element at index '0'
23532330// :95:17: error: use of undefined value here causes illegal behavior
2331// :95:17: note: when computing vector element at index '0'
23542332// :95:17: error: use of undefined value here causes illegal behavior
2355// :95:17: note: when computing vector element at index '1'
2333// :95:17: note: when computing vector element at index '0'
23562334// :95:17: error: use of undefined value here causes illegal behavior
2357// :95:17: note: when computing vector element at index '1'
2335// :95:17: note: when computing vector element at index '0'
23582336// :95:17: error: use of undefined value here causes illegal behavior
2359// :95:17: note: when computing vector element at index '1'
2337// :95:17: note: when computing vector element at index '0'
23602338// :95:17: error: use of undefined value here causes illegal behavior
2361// :95:17: note: when computing vector element at index '1'
2339// :95:17: note: when computing vector element at index '0'
23622340// :95:17: error: use of undefined value here causes illegal behavior
23632341// :95:17: note: when computing vector element at index '0'
23642342// :95:17: error: use of undefined value here causes illegal behavior
......@@ -2368,11 +2346,17 @@ const std = @import("std");
23682346// :95:17: error: use of undefined value here causes illegal behavior
23692347// :95:17: note: when computing vector element at index '0'
23702348// :95:17: error: use of undefined value here causes illegal behavior
2349// :95:17: note: when computing vector element at index '1'
23712350// :95:17: error: use of undefined value here causes illegal behavior
2351// :95:17: note: when computing vector element at index '1'
23722352// :95:17: error: use of undefined value here causes illegal behavior
2353// :95:17: note: when computing vector element at index '1'
23732354// :95:17: error: use of undefined value here causes illegal behavior
2355// :95:17: note: when computing vector element at index '1'
23742356// :95:17: error: use of undefined value here causes illegal behavior
2357// :95:17: note: when computing vector element at index '1'
23752358// :95:17: error: use of undefined value here causes illegal behavior
2359// :95:17: note: when computing vector element at index '1'
23762360// :95:17: error: use of undefined value here causes illegal behavior
23772361// :95:17: note: when computing vector element at index '1'
23782362// :95:17: error: use of undefined value here causes illegal behavior
......@@ -2382,19 +2366,25 @@ const std = @import("std");
23822366// :95:17: error: use of undefined value here causes illegal behavior
23832367// :95:17: note: when computing vector element at index '1'
23842368// :95:17: error: use of undefined value here causes illegal behavior
2385// :95:17: note: when computing vector element at index '0'
2369// :95:17: note: when computing vector element at index '1'
23862370// :95:17: error: use of undefined value here causes illegal behavior
2387// :95:17: note: when computing vector element at index '0'
2371// :95:17: note: when computing vector element at index '1'
23882372// :95:17: error: use of undefined value here causes illegal behavior
2389// :95:17: note: when computing vector element at index '0'
2373// :95:17: note: when computing vector element at index '1'
23902374// :95:17: error: use of undefined value here causes illegal behavior
2391// :95:17: note: when computing vector element at index '0'
2375// :95:17: note: when computing vector element at index '1'
23922376// :95:17: error: use of undefined value here causes illegal behavior
2377// :95:17: note: when computing vector element at index '1'
23932378// :95:17: error: use of undefined value here causes illegal behavior
2379// :95:17: note: when computing vector element at index '1'
23942380// :95:17: error: use of undefined value here causes illegal behavior
2381// :95:17: note: when computing vector element at index '1'
23952382// :95:17: error: use of undefined value here causes illegal behavior
2383// :95:17: note: when computing vector element at index '1'
23962384// :95:17: error: use of undefined value here causes illegal behavior
2385// :95:17: note: when computing vector element at index '1'
23972386// :95:17: error: use of undefined value here causes illegal behavior
2387// :95:17: note: when computing vector element at index '1'
23982388// :95:17: error: use of undefined value here causes illegal behavior
23992389// :95:17: note: when computing vector element at index '1'
24002390// :95:17: error: use of undefined value here causes illegal behavior
......@@ -2404,19 +2394,25 @@ const std = @import("std");
24042394// :95:17: error: use of undefined value here causes illegal behavior
24052395// :95:17: note: when computing vector element at index '1'
24062396// :95:17: error: use of undefined value here causes illegal behavior
2407// :95:17: note: when computing vector element at index '0'
2397// :95:17: note: when computing vector element at index '1'
24082398// :95:17: error: use of undefined value here causes illegal behavior
2409// :95:17: note: when computing vector element at index '0'
2399// :95:17: note: when computing vector element at index '1'
24102400// :95:17: error: use of undefined value here causes illegal behavior
2411// :95:17: note: when computing vector element at index '0'
2401// :95:17: note: when computing vector element at index '1'
24122402// :95:17: error: use of undefined value here causes illegal behavior
2413// :95:17: note: when computing vector element at index '0'
2403// :95:17: note: when computing vector element at index '1'
24142404// :95:17: error: use of undefined value here causes illegal behavior
2405// :95:17: note: when computing vector element at index '1'
24152406// :95:17: error: use of undefined value here causes illegal behavior
2407// :95:17: note: when computing vector element at index '1'
24162408// :95:17: error: use of undefined value here causes illegal behavior
2409// :95:17: note: when computing vector element at index '1'
24172410// :95:17: error: use of undefined value here causes illegal behavior
2411// :95:17: note: when computing vector element at index '1'
24182412// :95:17: error: use of undefined value here causes illegal behavior
2413// :95:17: note: when computing vector element at index '1'
24192414// :95:17: error: use of undefined value here causes illegal behavior
2415// :95:17: note: when computing vector element at index '1'
24202416// :95:17: error: use of undefined value here causes illegal behavior
24212417// :95:17: note: when computing vector element at index '1'
24222418// :95:17: error: use of undefined value here causes illegal behavior
......@@ -2426,13 +2422,17 @@ const std = @import("std");
24262422// :95:17: error: use of undefined value here causes illegal behavior
24272423// :95:17: note: when computing vector element at index '1'
24282424// :95:17: error: use of undefined value here causes illegal behavior
2429// :95:17: note: when computing vector element at index '0'
2425// :95:17: note: when computing vector element at index '1'
24302426// :95:17: error: use of undefined value here causes illegal behavior
2431// :95:17: note: when computing vector element at index '0'
2427// :95:17: note: when computing vector element at index '1'
24322428// :95:17: error: use of undefined value here causes illegal behavior
2433// :95:17: note: when computing vector element at index '0'
2429// :95:17: note: when computing vector element at index '1'
24342430// :95:17: error: use of undefined value here causes illegal behavior
2435// :95:17: note: when computing vector element at index '0'
2431// :95:17: note: when computing vector element at index '1'
2432// :95:17: error: use of undefined value here causes illegal behavior
2433// :95:17: note: when computing vector element at index '1'
2434// :95:17: error: use of undefined value here causes illegal behavior
2435// :95:17: note: when computing vector element at index '1'
24362436// :99:27: error: use of undefined value here causes illegal behavior
24372437// :99:27: error: use of undefined value here causes illegal behavior
24382438// :99:27: error: use of undefined value here causes illegal behavior
......@@ -2440,21 +2440,13 @@ const std = @import("std");
24402440// :99:27: error: use of undefined value here causes illegal behavior
24412441// :99:27: error: use of undefined value here causes illegal behavior
24422442// :99:27: error: use of undefined value here causes illegal behavior
2443// :99:27: note: when computing vector element at index '1'
24442443// :99:27: error: use of undefined value here causes illegal behavior
2445// :99:27: note: when computing vector element at index '1'
24462444// :99:27: error: use of undefined value here causes illegal behavior
2447// :99:27: note: when computing vector element at index '1'
24482445// :99:27: error: use of undefined value here causes illegal behavior
2449// :99:27: note: when computing vector element at index '1'
24502446// :99:27: error: use of undefined value here causes illegal behavior
2451// :99:27: note: when computing vector element at index '0'
24522447// :99:27: error: use of undefined value here causes illegal behavior
2453// :99:27: note: when computing vector element at index '0'
24542448// :99:27: error: use of undefined value here causes illegal behavior
2455// :99:27: note: when computing vector element at index '0'
24562449// :99:27: error: use of undefined value here causes illegal behavior
2457// :99:27: note: when computing vector element at index '0'
24582450// :99:27: error: use of undefined value here causes illegal behavior
24592451// :99:27: error: use of undefined value here causes illegal behavior
24602452// :99:27: error: use of undefined value here causes illegal behavior
......@@ -2462,21 +2454,13 @@ const std = @import("std");
24622454// :99:27: error: use of undefined value here causes illegal behavior
24632455// :99:27: error: use of undefined value here causes illegal behavior
24642456// :99:27: error: use of undefined value here causes illegal behavior
2465// :99:27: note: when computing vector element at index '1'
24662457// :99:27: error: use of undefined value here causes illegal behavior
2467// :99:27: note: when computing vector element at index '1'
24682458// :99:27: error: use of undefined value here causes illegal behavior
2469// :99:27: note: when computing vector element at index '1'
24702459// :99:27: error: use of undefined value here causes illegal behavior
2471// :99:27: note: when computing vector element at index '1'
24722460// :99:27: error: use of undefined value here causes illegal behavior
2473// :99:27: note: when computing vector element at index '0'
24742461// :99:27: error: use of undefined value here causes illegal behavior
2475// :99:27: note: when computing vector element at index '0'
24762462// :99:27: error: use of undefined value here causes illegal behavior
2477// :99:27: note: when computing vector element at index '0'
24782463// :99:27: error: use of undefined value here causes illegal behavior
2479// :99:27: note: when computing vector element at index '0'
24802464// :99:27: error: use of undefined value here causes illegal behavior
24812465// :99:27: error: use of undefined value here causes illegal behavior
24822466// :99:27: error: use of undefined value here causes illegal behavior
......@@ -2484,21 +2468,13 @@ const std = @import("std");
24842468// :99:27: error: use of undefined value here causes illegal behavior
24852469// :99:27: error: use of undefined value here causes illegal behavior
24862470// :99:27: error: use of undefined value here causes illegal behavior
2487// :99:27: note: when computing vector element at index '1'
24882471// :99:27: error: use of undefined value here causes illegal behavior
2489// :99:27: note: when computing vector element at index '1'
24902472// :99:27: error: use of undefined value here causes illegal behavior
2491// :99:27: note: when computing vector element at index '1'
24922473// :99:27: error: use of undefined value here causes illegal behavior
2493// :99:27: note: when computing vector element at index '1'
24942474// :99:27: error: use of undefined value here causes illegal behavior
2495// :99:27: note: when computing vector element at index '0'
24962475// :99:27: error: use of undefined value here causes illegal behavior
2497// :99:27: note: when computing vector element at index '0'
24982476// :99:27: error: use of undefined value here causes illegal behavior
2499// :99:27: note: when computing vector element at index '0'
25002477// :99:27: error: use of undefined value here causes illegal behavior
2501// :99:27: note: when computing vector element at index '0'
25022478// :99:27: error: use of undefined value here causes illegal behavior
25032479// :99:27: error: use of undefined value here causes illegal behavior
25042480// :99:27: error: use of undefined value here causes illegal behavior
......@@ -2506,21 +2482,13 @@ const std = @import("std");
25062482// :99:27: error: use of undefined value here causes illegal behavior
25072483// :99:27: error: use of undefined value here causes illegal behavior
25082484// :99:27: error: use of undefined value here causes illegal behavior
2509// :99:27: note: when computing vector element at index '1'
25102485// :99:27: error: use of undefined value here causes illegal behavior
2511// :99:27: note: when computing vector element at index '1'
25122486// :99:27: error: use of undefined value here causes illegal behavior
2513// :99:27: note: when computing vector element at index '1'
25142487// :99:27: error: use of undefined value here causes illegal behavior
2515// :99:27: note: when computing vector element at index '1'
25162488// :99:27: error: use of undefined value here causes illegal behavior
2517// :99:27: note: when computing vector element at index '0'
25182489// :99:27: error: use of undefined value here causes illegal behavior
2519// :99:27: note: when computing vector element at index '0'
25202490// :99:27: error: use of undefined value here causes illegal behavior
2521// :99:27: note: when computing vector element at index '0'
25222491// :99:27: error: use of undefined value here causes illegal behavior
2523// :99:27: note: when computing vector element at index '0'
25242492// :99:27: error: use of undefined value here causes illegal behavior
25252493// :99:27: error: use of undefined value here causes illegal behavior
25262494// :99:27: error: use of undefined value here causes illegal behavior
......@@ -2528,13 +2496,9 @@ const std = @import("std");
25282496// :99:27: error: use of undefined value here causes illegal behavior
25292497// :99:27: error: use of undefined value here causes illegal behavior
25302498// :99:27: error: use of undefined value here causes illegal behavior
2531// :99:27: note: when computing vector element at index '1'
25322499// :99:27: error: use of undefined value here causes illegal behavior
2533// :99:27: note: when computing vector element at index '1'
25342500// :99:27: error: use of undefined value here causes illegal behavior
2535// :99:27: note: when computing vector element at index '1'
25362501// :99:27: error: use of undefined value here causes illegal behavior
2537// :99:27: note: when computing vector element at index '1'
25382502// :99:27: error: use of undefined value here causes illegal behavior
25392503// :99:27: note: when computing vector element at index '0'
25402504// :99:27: error: use of undefined value here causes illegal behavior
......@@ -2544,19 +2508,21 @@ const std = @import("std");
25442508// :99:27: error: use of undefined value here causes illegal behavior
25452509// :99:27: note: when computing vector element at index '0'
25462510// :99:27: error: use of undefined value here causes illegal behavior
2511// :99:27: note: when computing vector element at index '0'
25472512// :99:27: error: use of undefined value here causes illegal behavior
2513// :99:27: note: when computing vector element at index '0'
25482514// :99:27: error: use of undefined value here causes illegal behavior
2515// :99:27: note: when computing vector element at index '0'
25492516// :99:27: error: use of undefined value here causes illegal behavior
2517// :99:27: note: when computing vector element at index '0'
25502518// :99:27: error: use of undefined value here causes illegal behavior
2519// :99:27: note: when computing vector element at index '0'
25512520// :99:27: error: use of undefined value here causes illegal behavior
2521// :99:27: note: when computing vector element at index '0'
25522522// :99:27: error: use of undefined value here causes illegal behavior
2553// :99:27: note: when computing vector element at index '1'
2554// :99:27: error: use of undefined value here causes illegal behavior
2555// :99:27: note: when computing vector element at index '1'
2556// :99:27: error: use of undefined value here causes illegal behavior
2557// :99:27: note: when computing vector element at index '1'
2523// :99:27: note: when computing vector element at index '0'
25582524// :99:27: error: use of undefined value here causes illegal behavior
2559// :99:27: note: when computing vector element at index '1'
2525// :99:27: note: when computing vector element at index '0'
25602526// :99:27: error: use of undefined value here causes illegal behavior
25612527// :99:27: note: when computing vector element at index '0'
25622528// :99:27: error: use of undefined value here causes illegal behavior
......@@ -2566,19 +2532,25 @@ const std = @import("std");
25662532// :99:27: error: use of undefined value here causes illegal behavior
25672533// :99:27: note: when computing vector element at index '0'
25682534// :99:27: error: use of undefined value here causes illegal behavior
2535// :99:27: note: when computing vector element at index '0'
25692536// :99:27: error: use of undefined value here causes illegal behavior
2537// :99:27: note: when computing vector element at index '0'
25702538// :99:27: error: use of undefined value here causes illegal behavior
2539// :99:27: note: when computing vector element at index '0'
25712540// :99:27: error: use of undefined value here causes illegal behavior
2541// :99:27: note: when computing vector element at index '0'
25722542// :99:27: error: use of undefined value here causes illegal behavior
2543// :99:27: note: when computing vector element at index '0'
25732544// :99:27: error: use of undefined value here causes illegal behavior
2545// :99:27: note: when computing vector element at index '0'
25742546// :99:27: error: use of undefined value here causes illegal behavior
2575// :99:27: note: when computing vector element at index '1'
2547// :99:27: note: when computing vector element at index '0'
25762548// :99:27: error: use of undefined value here causes illegal behavior
2577// :99:27: note: when computing vector element at index '1'
2549// :99:27: note: when computing vector element at index '0'
25782550// :99:27: error: use of undefined value here causes illegal behavior
2579// :99:27: note: when computing vector element at index '1'
2551// :99:27: note: when computing vector element at index '0'
25802552// :99:27: error: use of undefined value here causes illegal behavior
2581// :99:27: note: when computing vector element at index '1'
2553// :99:27: note: when computing vector element at index '0'
25822554// :99:27: error: use of undefined value here causes illegal behavior
25832555// :99:27: note: when computing vector element at index '0'
25842556// :99:27: error: use of undefined value here causes illegal behavior
......@@ -2588,19 +2560,25 @@ const std = @import("std");
25882560// :99:27: error: use of undefined value here causes illegal behavior
25892561// :99:27: note: when computing vector element at index '0'
25902562// :99:27: error: use of undefined value here causes illegal behavior
2563// :99:27: note: when computing vector element at index '0'
25912564// :99:27: error: use of undefined value here causes illegal behavior
2565// :99:27: note: when computing vector element at index '0'
25922566// :99:27: error: use of undefined value here causes illegal behavior
2567// :99:27: note: when computing vector element at index '0'
25932568// :99:27: error: use of undefined value here causes illegal behavior
2569// :99:27: note: when computing vector element at index '0'
25942570// :99:27: error: use of undefined value here causes illegal behavior
2571// :99:27: note: when computing vector element at index '0'
25952572// :99:27: error: use of undefined value here causes illegal behavior
2573// :99:27: note: when computing vector element at index '0'
25962574// :99:27: error: use of undefined value here causes illegal behavior
2597// :99:27: note: when computing vector element at index '1'
2575// :99:27: note: when computing vector element at index '0'
25982576// :99:27: error: use of undefined value here causes illegal behavior
2599// :99:27: note: when computing vector element at index '1'
2577// :99:27: note: when computing vector element at index '0'
26002578// :99:27: error: use of undefined value here causes illegal behavior
2601// :99:27: note: when computing vector element at index '1'
2579// :99:27: note: when computing vector element at index '0'
26022580// :99:27: error: use of undefined value here causes illegal behavior
2603// :99:27: note: when computing vector element at index '1'
2581// :99:27: note: when computing vector element at index '0'
26042582// :99:27: error: use of undefined value here causes illegal behavior
26052583// :99:27: note: when computing vector element at index '0'
26062584// :99:27: error: use of undefined value here causes illegal behavior
......@@ -2610,11 +2588,17 @@ const std = @import("std");
26102588// :99:27: error: use of undefined value here causes illegal behavior
26112589// :99:27: note: when computing vector element at index '0'
26122590// :99:27: error: use of undefined value here causes illegal behavior
2591// :99:27: note: when computing vector element at index '1'
26132592// :99:27: error: use of undefined value here causes illegal behavior
2593// :99:27: note: when computing vector element at index '1'
26142594// :99:27: error: use of undefined value here causes illegal behavior
2595// :99:27: note: when computing vector element at index '1'
26152596// :99:27: error: use of undefined value here causes illegal behavior
2597// :99:27: note: when computing vector element at index '1'
26162598// :99:27: error: use of undefined value here causes illegal behavior
2599// :99:27: note: when computing vector element at index '1'
26172600// :99:27: error: use of undefined value here causes illegal behavior
2601// :99:27: note: when computing vector element at index '1'
26182602// :99:27: error: use of undefined value here causes illegal behavior
26192603// :99:27: note: when computing vector element at index '1'
26202604// :99:27: error: use of undefined value here causes illegal behavior
......@@ -2624,19 +2608,25 @@ const std = @import("std");
26242608// :99:27: error: use of undefined value here causes illegal behavior
26252609// :99:27: note: when computing vector element at index '1'
26262610// :99:27: error: use of undefined value here causes illegal behavior
2627// :99:27: note: when computing vector element at index '0'
2611// :99:27: note: when computing vector element at index '1'
26282612// :99:27: error: use of undefined value here causes illegal behavior
2629// :99:27: note: when computing vector element at index '0'
2613// :99:27: note: when computing vector element at index '1'
26302614// :99:27: error: use of undefined value here causes illegal behavior
2631// :99:27: note: when computing vector element at index '0'
2615// :99:27: note: when computing vector element at index '1'
26322616// :99:27: error: use of undefined value here causes illegal behavior
2633// :99:27: note: when computing vector element at index '0'
2617// :99:27: note: when computing vector element at index '1'
26342618// :99:27: error: use of undefined value here causes illegal behavior
2619// :99:27: note: when computing vector element at index '1'
26352620// :99:27: error: use of undefined value here causes illegal behavior
2621// :99:27: note: when computing vector element at index '1'
26362622// :99:27: error: use of undefined value here causes illegal behavior
2623// :99:27: note: when computing vector element at index '1'
26372624// :99:27: error: use of undefined value here causes illegal behavior
2625// :99:27: note: when computing vector element at index '1'
26382626// :99:27: error: use of undefined value here causes illegal behavior
2627// :99:27: note: when computing vector element at index '1'
26392628// :99:27: error: use of undefined value here causes illegal behavior
2629// :99:27: note: when computing vector element at index '1'
26402630// :99:27: error: use of undefined value here causes illegal behavior
26412631// :99:27: note: when computing vector element at index '1'
26422632// :99:27: error: use of undefined value here causes illegal behavior
......@@ -2646,19 +2636,25 @@ const std = @import("std");
26462636// :99:27: error: use of undefined value here causes illegal behavior
26472637// :99:27: note: when computing vector element at index '1'
26482638// :99:27: error: use of undefined value here causes illegal behavior
2649// :99:27: note: when computing vector element at index '0'
2639// :99:27: note: when computing vector element at index '1'
26502640// :99:27: error: use of undefined value here causes illegal behavior
2651// :99:27: note: when computing vector element at index '0'
2641// :99:27: note: when computing vector element at index '1'
26522642// :99:27: error: use of undefined value here causes illegal behavior
2653// :99:27: note: when computing vector element at index '0'
2643// :99:27: note: when computing vector element at index '1'
26542644// :99:27: error: use of undefined value here causes illegal behavior
2655// :99:27: note: when computing vector element at index '0'
2645// :99:27: note: when computing vector element at index '1'
26562646// :99:27: error: use of undefined value here causes illegal behavior
2647// :99:27: note: when computing vector element at index '1'
26572648// :99:27: error: use of undefined value here causes illegal behavior
2649// :99:27: note: when computing vector element at index '1'
26582650// :99:27: error: use of undefined value here causes illegal behavior
2651// :99:27: note: when computing vector element at index '1'
26592652// :99:27: error: use of undefined value here causes illegal behavior
2653// :99:27: note: when computing vector element at index '1'
26602654// :99:27: error: use of undefined value here causes illegal behavior
2655// :99:27: note: when computing vector element at index '1'
26612656// :99:27: error: use of undefined value here causes illegal behavior
2657// :99:27: note: when computing vector element at index '1'
26622658// :99:27: error: use of undefined value here causes illegal behavior
26632659// :99:27: note: when computing vector element at index '1'
26642660// :99:27: error: use of undefined value here causes illegal behavior
......@@ -2668,13 +2664,17 @@ const std = @import("std");
26682664// :99:27: error: use of undefined value here causes illegal behavior
26692665// :99:27: note: when computing vector element at index '1'
26702666// :99:27: error: use of undefined value here causes illegal behavior
2671// :99:27: note: when computing vector element at index '0'
2667// :99:27: note: when computing vector element at index '1'
26722668// :99:27: error: use of undefined value here causes illegal behavior
2673// :99:27: note: when computing vector element at index '0'
2669// :99:27: note: when computing vector element at index '1'
26742670// :99:27: error: use of undefined value here causes illegal behavior
2675// :99:27: note: when computing vector element at index '0'
2671// :99:27: note: when computing vector element at index '1'
26762672// :99:27: error: use of undefined value here causes illegal behavior
2677// :99:27: note: when computing vector element at index '0'
2673// :99:27: note: when computing vector element at index '1'
2674// :99:27: error: use of undefined value here causes illegal behavior
2675// :99:27: note: when computing vector element at index '1'
2676// :99:27: error: use of undefined value here causes illegal behavior
2677// :99:27: note: when computing vector element at index '1'
26782678// :103:27: error: use of undefined value here causes illegal behavior
26792679// :103:27: error: use of undefined value here causes illegal behavior
26802680// :103:27: error: use of undefined value here causes illegal behavior
......@@ -2682,21 +2682,13 @@ const std = @import("std");
26822682// :103:27: error: use of undefined value here causes illegal behavior
26832683// :103:27: error: use of undefined value here causes illegal behavior
26842684// :103:27: error: use of undefined value here causes illegal behavior
2685// :103:27: note: when computing vector element at index '1'
26862685// :103:27: error: use of undefined value here causes illegal behavior
2687// :103:27: note: when computing vector element at index '1'
26882686// :103:27: error: use of undefined value here causes illegal behavior
2689// :103:27: note: when computing vector element at index '1'
26902687// :103:27: error: use of undefined value here causes illegal behavior
2691// :103:27: note: when computing vector element at index '1'
26922688// :103:27: error: use of undefined value here causes illegal behavior
2693// :103:27: note: when computing vector element at index '0'
26942689// :103:27: error: use of undefined value here causes illegal behavior
2695// :103:27: note: when computing vector element at index '0'
26962690// :103:27: error: use of undefined value here causes illegal behavior
2697// :103:27: note: when computing vector element at index '0'
26982691// :103:27: error: use of undefined value here causes illegal behavior
2699// :103:27: note: when computing vector element at index '0'
27002692// :103:27: error: use of undefined value here causes illegal behavior
27012693// :103:27: error: use of undefined value here causes illegal behavior
27022694// :103:27: error: use of undefined value here causes illegal behavior
......@@ -2704,21 +2696,13 @@ const std = @import("std");
27042696// :103:27: error: use of undefined value here causes illegal behavior
27052697// :103:27: error: use of undefined value here causes illegal behavior
27062698// :103:27: error: use of undefined value here causes illegal behavior
2707// :103:27: note: when computing vector element at index '1'
27082699// :103:27: error: use of undefined value here causes illegal behavior
2709// :103:27: note: when computing vector element at index '1'
27102700// :103:27: error: use of undefined value here causes illegal behavior
2711// :103:27: note: when computing vector element at index '1'
27122701// :103:27: error: use of undefined value here causes illegal behavior
2713// :103:27: note: when computing vector element at index '1'
27142702// :103:27: error: use of undefined value here causes illegal behavior
2715// :103:27: note: when computing vector element at index '0'
27162703// :103:27: error: use of undefined value here causes illegal behavior
2717// :103:27: note: when computing vector element at index '0'
27182704// :103:27: error: use of undefined value here causes illegal behavior
2719// :103:27: note: when computing vector element at index '0'
27202705// :103:27: error: use of undefined value here causes illegal behavior
2721// :103:27: note: when computing vector element at index '0'
27222706// :103:27: error: use of undefined value here causes illegal behavior
27232707// :103:27: error: use of undefined value here causes illegal behavior
27242708// :103:27: error: use of undefined value here causes illegal behavior
......@@ -2726,21 +2710,13 @@ const std = @import("std");
27262710// :103:27: error: use of undefined value here causes illegal behavior
27272711// :103:27: error: use of undefined value here causes illegal behavior
27282712// :103:27: error: use of undefined value here causes illegal behavior
2729// :103:27: note: when computing vector element at index '1'
27302713// :103:27: error: use of undefined value here causes illegal behavior
2731// :103:27: note: when computing vector element at index '1'
27322714// :103:27: error: use of undefined value here causes illegal behavior
2733// :103:27: note: when computing vector element at index '1'
27342715// :103:27: error: use of undefined value here causes illegal behavior
2735// :103:27: note: when computing vector element at index '1'
27362716// :103:27: error: use of undefined value here causes illegal behavior
2737// :103:27: note: when computing vector element at index '0'
27382717// :103:27: error: use of undefined value here causes illegal behavior
2739// :103:27: note: when computing vector element at index '0'
27402718// :103:27: error: use of undefined value here causes illegal behavior
2741// :103:27: note: when computing vector element at index '0'
27422719// :103:27: error: use of undefined value here causes illegal behavior
2743// :103:27: note: when computing vector element at index '0'
27442720// :103:27: error: use of undefined value here causes illegal behavior
27452721// :103:27: error: use of undefined value here causes illegal behavior
27462722// :103:27: error: use of undefined value here causes illegal behavior
......@@ -2748,21 +2724,13 @@ const std = @import("std");
27482724// :103:27: error: use of undefined value here causes illegal behavior
27492725// :103:27: error: use of undefined value here causes illegal behavior
27502726// :103:27: error: use of undefined value here causes illegal behavior
2751// :103:27: note: when computing vector element at index '1'
27522727// :103:27: error: use of undefined value here causes illegal behavior
2753// :103:27: note: when computing vector element at index '1'
27542728// :103:27: error: use of undefined value here causes illegal behavior
2755// :103:27: note: when computing vector element at index '1'
27562729// :103:27: error: use of undefined value here causes illegal behavior
2757// :103:27: note: when computing vector element at index '1'
27582730// :103:27: error: use of undefined value here causes illegal behavior
2759// :103:27: note: when computing vector element at index '0'
27602731// :103:27: error: use of undefined value here causes illegal behavior
2761// :103:27: note: when computing vector element at index '0'
27622732// :103:27: error: use of undefined value here causes illegal behavior
2763// :103:27: note: when computing vector element at index '0'
27642733// :103:27: error: use of undefined value here causes illegal behavior
2765// :103:27: note: when computing vector element at index '0'
27662734// :103:27: error: use of undefined value here causes illegal behavior
27672735// :103:27: error: use of undefined value here causes illegal behavior
27682736// :103:27: error: use of undefined value here causes illegal behavior
......@@ -2770,13 +2738,9 @@ const std = @import("std");
27702738// :103:27: error: use of undefined value here causes illegal behavior
27712739// :103:27: error: use of undefined value here causes illegal behavior
27722740// :103:27: error: use of undefined value here causes illegal behavior
2773// :103:27: note: when computing vector element at index '1'
27742741// :103:27: error: use of undefined value here causes illegal behavior
2775// :103:27: note: when computing vector element at index '1'
27762742// :103:27: error: use of undefined value here causes illegal behavior
2777// :103:27: note: when computing vector element at index '1'
27782743// :103:27: error: use of undefined value here causes illegal behavior
2779// :103:27: note: when computing vector element at index '1'
27802744// :103:27: error: use of undefined value here causes illegal behavior
27812745// :103:27: note: when computing vector element at index '0'
27822746// :103:27: error: use of undefined value here causes illegal behavior
......@@ -2786,19 +2750,21 @@ const std = @import("std");
27862750// :103:27: error: use of undefined value here causes illegal behavior
27872751// :103:27: note: when computing vector element at index '0'
27882752// :103:27: error: use of undefined value here causes illegal behavior
2753// :103:27: note: when computing vector element at index '0'
27892754// :103:27: error: use of undefined value here causes illegal behavior
2755// :103:27: note: when computing vector element at index '0'
27902756// :103:27: error: use of undefined value here causes illegal behavior
2757// :103:27: note: when computing vector element at index '0'
27912758// :103:27: error: use of undefined value here causes illegal behavior
2759// :103:27: note: when computing vector element at index '0'
27922760// :103:27: error: use of undefined value here causes illegal behavior
2761// :103:27: note: when computing vector element at index '0'
27932762// :103:27: error: use of undefined value here causes illegal behavior
2763// :103:27: note: when computing vector element at index '0'
27942764// :103:27: error: use of undefined value here causes illegal behavior
2795// :103:27: note: when computing vector element at index '1'
2796// :103:27: error: use of undefined value here causes illegal behavior
2797// :103:27: note: when computing vector element at index '1'
2798// :103:27: error: use of undefined value here causes illegal behavior
2799// :103:27: note: when computing vector element at index '1'
2765// :103:27: note: when computing vector element at index '0'
28002766// :103:27: error: use of undefined value here causes illegal behavior
2801// :103:27: note: when computing vector element at index '1'
2767// :103:27: note: when computing vector element at index '0'
28022768// :103:27: error: use of undefined value here causes illegal behavior
28032769// :103:27: note: when computing vector element at index '0'
28042770// :103:27: error: use of undefined value here causes illegal behavior
......@@ -2808,19 +2774,25 @@ const std = @import("std");
28082774// :103:27: error: use of undefined value here causes illegal behavior
28092775// :103:27: note: when computing vector element at index '0'
28102776// :103:27: error: use of undefined value here causes illegal behavior
2777// :103:27: note: when computing vector element at index '0'
28112778// :103:27: error: use of undefined value here causes illegal behavior
2779// :103:27: note: when computing vector element at index '0'
28122780// :103:27: error: use of undefined value here causes illegal behavior
2781// :103:27: note: when computing vector element at index '0'
28132782// :103:27: error: use of undefined value here causes illegal behavior
2783// :103:27: note: when computing vector element at index '0'
28142784// :103:27: error: use of undefined value here causes illegal behavior
2785// :103:27: note: when computing vector element at index '0'
28152786// :103:27: error: use of undefined value here causes illegal behavior
2787// :103:27: note: when computing vector element at index '0'
28162788// :103:27: error: use of undefined value here causes illegal behavior
2817// :103:27: note: when computing vector element at index '1'
2789// :103:27: note: when computing vector element at index '0'
28182790// :103:27: error: use of undefined value here causes illegal behavior
2819// :103:27: note: when computing vector element at index '1'
2791// :103:27: note: when computing vector element at index '0'
28202792// :103:27: error: use of undefined value here causes illegal behavior
2821// :103:27: note: when computing vector element at index '1'
2793// :103:27: note: when computing vector element at index '0'
28222794// :103:27: error: use of undefined value here causes illegal behavior
2823// :103:27: note: when computing vector element at index '1'
2795// :103:27: note: when computing vector element at index '0'
28242796// :103:27: error: use of undefined value here causes illegal behavior
28252797// :103:27: note: when computing vector element at index '0'
28262798// :103:27: error: use of undefined value here causes illegal behavior
......@@ -2830,19 +2802,25 @@ const std = @import("std");
28302802// :103:27: error: use of undefined value here causes illegal behavior
28312803// :103:27: note: when computing vector element at index '0'
28322804// :103:27: error: use of undefined value here causes illegal behavior
2805// :103:27: note: when computing vector element at index '0'
28332806// :103:27: error: use of undefined value here causes illegal behavior
2807// :103:27: note: when computing vector element at index '0'
28342808// :103:27: error: use of undefined value here causes illegal behavior
2809// :103:27: note: when computing vector element at index '0'
28352810// :103:27: error: use of undefined value here causes illegal behavior
2811// :103:27: note: when computing vector element at index '0'
28362812// :103:27: error: use of undefined value here causes illegal behavior
2813// :103:27: note: when computing vector element at index '0'
28372814// :103:27: error: use of undefined value here causes illegal behavior
2815// :103:27: note: when computing vector element at index '0'
28382816// :103:27: error: use of undefined value here causes illegal behavior
2839// :103:27: note: when computing vector element at index '1'
2817// :103:27: note: when computing vector element at index '0'
28402818// :103:27: error: use of undefined value here causes illegal behavior
2841// :103:27: note: when computing vector element at index '1'
2819// :103:27: note: when computing vector element at index '0'
28422820// :103:27: error: use of undefined value here causes illegal behavior
2843// :103:27: note: when computing vector element at index '1'
2821// :103:27: note: when computing vector element at index '0'
28442822// :103:27: error: use of undefined value here causes illegal behavior
2845// :103:27: note: when computing vector element at index '1'
2823// :103:27: note: when computing vector element at index '0'
28462824// :103:27: error: use of undefined value here causes illegal behavior
28472825// :103:27: note: when computing vector element at index '0'
28482826// :103:27: error: use of undefined value here causes illegal behavior
......@@ -2852,11 +2830,17 @@ const std = @import("std");
28522830// :103:27: error: use of undefined value here causes illegal behavior
28532831// :103:27: note: when computing vector element at index '0'
28542832// :103:27: error: use of undefined value here causes illegal behavior
2833// :103:27: note: when computing vector element at index '1'
28552834// :103:27: error: use of undefined value here causes illegal behavior
2835// :103:27: note: when computing vector element at index '1'
28562836// :103:27: error: use of undefined value here causes illegal behavior
2837// :103:27: note: when computing vector element at index '1'
28572838// :103:27: error: use of undefined value here causes illegal behavior
2839// :103:27: note: when computing vector element at index '1'
28582840// :103:27: error: use of undefined value here causes illegal behavior
2841// :103:27: note: when computing vector element at index '1'
28592842// :103:27: error: use of undefined value here causes illegal behavior
2843// :103:27: note: when computing vector element at index '1'
28602844// :103:27: error: use of undefined value here causes illegal behavior
28612845// :103:27: note: when computing vector element at index '1'
28622846// :103:27: error: use of undefined value here causes illegal behavior
......@@ -2866,19 +2850,25 @@ const std = @import("std");
28662850// :103:27: error: use of undefined value here causes illegal behavior
28672851// :103:27: note: when computing vector element at index '1'
28682852// :103:27: error: use of undefined value here causes illegal behavior
2869// :103:27: note: when computing vector element at index '0'
2853// :103:27: note: when computing vector element at index '1'
28702854// :103:27: error: use of undefined value here causes illegal behavior
2871// :103:27: note: when computing vector element at index '0'
2855// :103:27: note: when computing vector element at index '1'
28722856// :103:27: error: use of undefined value here causes illegal behavior
2873// :103:27: note: when computing vector element at index '0'
2857// :103:27: note: when computing vector element at index '1'
28742858// :103:27: error: use of undefined value here causes illegal behavior
2875// :103:27: note: when computing vector element at index '0'
2859// :103:27: note: when computing vector element at index '1'
28762860// :103:27: error: use of undefined value here causes illegal behavior
2861// :103:27: note: when computing vector element at index '1'
28772862// :103:27: error: use of undefined value here causes illegal behavior
2863// :103:27: note: when computing vector element at index '1'
28782864// :103:27: error: use of undefined value here causes illegal behavior
2865// :103:27: note: when computing vector element at index '1'
28792866// :103:27: error: use of undefined value here causes illegal behavior
2867// :103:27: note: when computing vector element at index '1'
28802868// :103:27: error: use of undefined value here causes illegal behavior
2869// :103:27: note: when computing vector element at index '1'
28812870// :103:27: error: use of undefined value here causes illegal behavior
2871// :103:27: note: when computing vector element at index '1'
28822872// :103:27: error: use of undefined value here causes illegal behavior
28832873// :103:27: note: when computing vector element at index '1'
28842874// :103:27: error: use of undefined value here causes illegal behavior
......@@ -2888,19 +2878,25 @@ const std = @import("std");
28882878// :103:27: error: use of undefined value here causes illegal behavior
28892879// :103:27: note: when computing vector element at index '1'
28902880// :103:27: error: use of undefined value here causes illegal behavior
2891// :103:27: note: when computing vector element at index '0'
2881// :103:27: note: when computing vector element at index '1'
28922882// :103:27: error: use of undefined value here causes illegal behavior
2893// :103:27: note: when computing vector element at index '0'
2883// :103:27: note: when computing vector element at index '1'
28942884// :103:27: error: use of undefined value here causes illegal behavior
2895// :103:27: note: when computing vector element at index '0'
2885// :103:27: note: when computing vector element at index '1'
28962886// :103:27: error: use of undefined value here causes illegal behavior
2897// :103:27: note: when computing vector element at index '0'
2887// :103:27: note: when computing vector element at index '1'
28982888// :103:27: error: use of undefined value here causes illegal behavior
2889// :103:27: note: when computing vector element at index '1'
28992890// :103:27: error: use of undefined value here causes illegal behavior
2891// :103:27: note: when computing vector element at index '1'
29002892// :103:27: error: use of undefined value here causes illegal behavior
2893// :103:27: note: when computing vector element at index '1'
29012894// :103:27: error: use of undefined value here causes illegal behavior
2895// :103:27: note: when computing vector element at index '1'
29022896// :103:27: error: use of undefined value here causes illegal behavior
2897// :103:27: note: when computing vector element at index '1'
29032898// :103:27: error: use of undefined value here causes illegal behavior
2899// :103:27: note: when computing vector element at index '1'
29042900// :103:27: error: use of undefined value here causes illegal behavior
29052901// :103:27: note: when computing vector element at index '1'
29062902// :103:27: error: use of undefined value here causes illegal behavior
......@@ -2910,13 +2906,17 @@ const std = @import("std");
29102906// :103:27: error: use of undefined value here causes illegal behavior
29112907// :103:27: note: when computing vector element at index '1'
29122908// :103:27: error: use of undefined value here causes illegal behavior
2913// :103:27: note: when computing vector element at index '0'
2909// :103:27: note: when computing vector element at index '1'
29142910// :103:27: error: use of undefined value here causes illegal behavior
2915// :103:27: note: when computing vector element at index '0'
2911// :103:27: note: when computing vector element at index '1'
29162912// :103:27: error: use of undefined value here causes illegal behavior
2917// :103:27: note: when computing vector element at index '0'
2913// :103:27: note: when computing vector element at index '1'
29182914// :103:27: error: use of undefined value here causes illegal behavior
2919// :103:27: note: when computing vector element at index '0'
2915// :103:27: note: when computing vector element at index '1'
2916// :103:27: error: use of undefined value here causes illegal behavior
2917// :103:27: note: when computing vector element at index '1'
2918// :103:27: error: use of undefined value here causes illegal behavior
2919// :103:27: note: when computing vector element at index '1'
29202920// :107:27: error: use of undefined value here causes illegal behavior
29212921// :107:27: error: use of undefined value here causes illegal behavior
29222922// :107:27: error: use of undefined value here causes illegal behavior
......@@ -2924,21 +2924,13 @@ const std = @import("std");
29242924// :107:27: error: use of undefined value here causes illegal behavior
29252925// :107:27: error: use of undefined value here causes illegal behavior
29262926// :107:27: error: use of undefined value here causes illegal behavior
2927// :107:27: note: when computing vector element at index '1'
29282927// :107:27: error: use of undefined value here causes illegal behavior
2929// :107:27: note: when computing vector element at index '1'
29302928// :107:27: error: use of undefined value here causes illegal behavior
2931// :107:27: note: when computing vector element at index '1'
29322929// :107:27: error: use of undefined value here causes illegal behavior
2933// :107:27: note: when computing vector element at index '1'
29342930// :107:27: error: use of undefined value here causes illegal behavior
2935// :107:27: note: when computing vector element at index '0'
29362931// :107:27: error: use of undefined value here causes illegal behavior
2937// :107:27: note: when computing vector element at index '0'
29382932// :107:27: error: use of undefined value here causes illegal behavior
2939// :107:27: note: when computing vector element at index '0'
29402933// :107:27: error: use of undefined value here causes illegal behavior
2941// :107:27: note: when computing vector element at index '0'
29422934// :107:27: error: use of undefined value here causes illegal behavior
29432935// :107:27: error: use of undefined value here causes illegal behavior
29442936// :107:27: error: use of undefined value here causes illegal behavior
......@@ -2946,21 +2938,13 @@ const std = @import("std");
29462938// :107:27: error: use of undefined value here causes illegal behavior
29472939// :107:27: error: use of undefined value here causes illegal behavior
29482940// :107:27: error: use of undefined value here causes illegal behavior
2949// :107:27: note: when computing vector element at index '1'
29502941// :107:27: error: use of undefined value here causes illegal behavior
2951// :107:27: note: when computing vector element at index '1'
29522942// :107:27: error: use of undefined value here causes illegal behavior
2953// :107:27: note: when computing vector element at index '1'
29542943// :107:27: error: use of undefined value here causes illegal behavior
2955// :107:27: note: when computing vector element at index '1'
29562944// :107:27: error: use of undefined value here causes illegal behavior
2957// :107:27: note: when computing vector element at index '0'
29582945// :107:27: error: use of undefined value here causes illegal behavior
2959// :107:27: note: when computing vector element at index '0'
29602946// :107:27: error: use of undefined value here causes illegal behavior
2961// :107:27: note: when computing vector element at index '0'
29622947// :107:27: error: use of undefined value here causes illegal behavior
2963// :107:27: note: when computing vector element at index '0'
29642948// :107:27: error: use of undefined value here causes illegal behavior
29652949// :107:27: error: use of undefined value here causes illegal behavior
29662950// :107:27: error: use of undefined value here causes illegal behavior
......@@ -2968,21 +2952,13 @@ const std = @import("std");
29682952// :107:27: error: use of undefined value here causes illegal behavior
29692953// :107:27: error: use of undefined value here causes illegal behavior
29702954// :107:27: error: use of undefined value here causes illegal behavior
2971// :107:27: note: when computing vector element at index '1'
29722955// :107:27: error: use of undefined value here causes illegal behavior
2973// :107:27: note: when computing vector element at index '1'
29742956// :107:27: error: use of undefined value here causes illegal behavior
2975// :107:27: note: when computing vector element at index '1'
29762957// :107:27: error: use of undefined value here causes illegal behavior
2977// :107:27: note: when computing vector element at index '1'
29782958// :107:27: error: use of undefined value here causes illegal behavior
2979// :107:27: note: when computing vector element at index '0'
29802959// :107:27: error: use of undefined value here causes illegal behavior
2981// :107:27: note: when computing vector element at index '0'
29822960// :107:27: error: use of undefined value here causes illegal behavior
2983// :107:27: note: when computing vector element at index '0'
29842961// :107:27: error: use of undefined value here causes illegal behavior
2985// :107:27: note: when computing vector element at index '0'
29862962// :107:27: error: use of undefined value here causes illegal behavior
29872963// :107:27: error: use of undefined value here causes illegal behavior
29882964// :107:27: error: use of undefined value here causes illegal behavior
......@@ -2990,21 +2966,13 @@ const std = @import("std");
29902966// :107:27: error: use of undefined value here causes illegal behavior
29912967// :107:27: error: use of undefined value here causes illegal behavior
29922968// :107:27: error: use of undefined value here causes illegal behavior
2993// :107:27: note: when computing vector element at index '1'
29942969// :107:27: error: use of undefined value here causes illegal behavior
2995// :107:27: note: when computing vector element at index '1'
29962970// :107:27: error: use of undefined value here causes illegal behavior
2997// :107:27: note: when computing vector element at index '1'
29982971// :107:27: error: use of undefined value here causes illegal behavior
2999// :107:27: note: when computing vector element at index '1'
30002972// :107:27: error: use of undefined value here causes illegal behavior
3001// :107:27: note: when computing vector element at index '0'
30022973// :107:27: error: use of undefined value here causes illegal behavior
3003// :107:27: note: when computing vector element at index '0'
30042974// :107:27: error: use of undefined value here causes illegal behavior
3005// :107:27: note: when computing vector element at index '0'
30062975// :107:27: error: use of undefined value here causes illegal behavior
3007// :107:27: note: when computing vector element at index '0'
30082976// :107:27: error: use of undefined value here causes illegal behavior
30092977// :107:27: error: use of undefined value here causes illegal behavior
30102978// :107:27: error: use of undefined value here causes illegal behavior
......@@ -3012,13 +2980,9 @@ const std = @import("std");
30122980// :107:27: error: use of undefined value here causes illegal behavior
30132981// :107:27: error: use of undefined value here causes illegal behavior
30142982// :107:27: error: use of undefined value here causes illegal behavior
3015// :107:27: note: when computing vector element at index '1'
30162983// :107:27: error: use of undefined value here causes illegal behavior
3017// :107:27: note: when computing vector element at index '1'
30182984// :107:27: error: use of undefined value here causes illegal behavior
3019// :107:27: note: when computing vector element at index '1'
30202985// :107:27: error: use of undefined value here causes illegal behavior
3021// :107:27: note: when computing vector element at index '1'
30222986// :107:27: error: use of undefined value here causes illegal behavior
30232987// :107:27: note: when computing vector element at index '0'
30242988// :107:27: error: use of undefined value here causes illegal behavior
......@@ -3028,19 +2992,21 @@ const std = @import("std");
30282992// :107:27: error: use of undefined value here causes illegal behavior
30292993// :107:27: note: when computing vector element at index '0'
30302994// :107:27: error: use of undefined value here causes illegal behavior
2995// :107:27: note: when computing vector element at index '0'
30312996// :107:27: error: use of undefined value here causes illegal behavior
2997// :107:27: note: when computing vector element at index '0'
30322998// :107:27: error: use of undefined value here causes illegal behavior
2999// :107:27: note: when computing vector element at index '0'
30333000// :107:27: error: use of undefined value here causes illegal behavior
3001// :107:27: note: when computing vector element at index '0'
30343002// :107:27: error: use of undefined value here causes illegal behavior
3003// :107:27: note: when computing vector element at index '0'
30353004// :107:27: error: use of undefined value here causes illegal behavior
3005// :107:27: note: when computing vector element at index '0'
30363006// :107:27: error: use of undefined value here causes illegal behavior
3037// :107:27: note: when computing vector element at index '1'
3038// :107:27: error: use of undefined value here causes illegal behavior
3039// :107:27: note: when computing vector element at index '1'
3040// :107:27: error: use of undefined value here causes illegal behavior
3041// :107:27: note: when computing vector element at index '1'
3007// :107:27: note: when computing vector element at index '0'
30423008// :107:27: error: use of undefined value here causes illegal behavior
3043// :107:27: note: when computing vector element at index '1'
3009// :107:27: note: when computing vector element at index '0'
30443010// :107:27: error: use of undefined value here causes illegal behavior
30453011// :107:27: note: when computing vector element at index '0'
30463012// :107:27: error: use of undefined value here causes illegal behavior
......@@ -3050,19 +3016,25 @@ const std = @import("std");
30503016// :107:27: error: use of undefined value here causes illegal behavior
30513017// :107:27: note: when computing vector element at index '0'
30523018// :107:27: error: use of undefined value here causes illegal behavior
3019// :107:27: note: when computing vector element at index '0'
30533020// :107:27: error: use of undefined value here causes illegal behavior
3021// :107:27: note: when computing vector element at index '0'
30543022// :107:27: error: use of undefined value here causes illegal behavior
3023// :107:27: note: when computing vector element at index '0'
30553024// :107:27: error: use of undefined value here causes illegal behavior
3025// :107:27: note: when computing vector element at index '0'
30563026// :107:27: error: use of undefined value here causes illegal behavior
3027// :107:27: note: when computing vector element at index '0'
30573028// :107:27: error: use of undefined value here causes illegal behavior
3029// :107:27: note: when computing vector element at index '0'
30583030// :107:27: error: use of undefined value here causes illegal behavior
3059// :107:27: note: when computing vector element at index '1'
3031// :107:27: note: when computing vector element at index '0'
30603032// :107:27: error: use of undefined value here causes illegal behavior
3061// :107:27: note: when computing vector element at index '1'
3033// :107:27: note: when computing vector element at index '0'
30623034// :107:27: error: use of undefined value here causes illegal behavior
3063// :107:27: note: when computing vector element at index '1'
3035// :107:27: note: when computing vector element at index '0'
30643036// :107:27: error: use of undefined value here causes illegal behavior
3065// :107:27: note: when computing vector element at index '1'
3037// :107:27: note: when computing vector element at index '0'
30663038// :107:27: error: use of undefined value here causes illegal behavior
30673039// :107:27: note: when computing vector element at index '0'
30683040// :107:27: error: use of undefined value here causes illegal behavior
......@@ -3072,19 +3044,25 @@ const std = @import("std");
30723044// :107:27: error: use of undefined value here causes illegal behavior
30733045// :107:27: note: when computing vector element at index '0'
30743046// :107:27: error: use of undefined value here causes illegal behavior
3047// :107:27: note: when computing vector element at index '0'
30753048// :107:27: error: use of undefined value here causes illegal behavior
3049// :107:27: note: when computing vector element at index '0'
30763050// :107:27: error: use of undefined value here causes illegal behavior
3051// :107:27: note: when computing vector element at index '0'
30773052// :107:27: error: use of undefined value here causes illegal behavior
3053// :107:27: note: when computing vector element at index '0'
30783054// :107:27: error: use of undefined value here causes illegal behavior
3055// :107:27: note: when computing vector element at index '0'
30793056// :107:27: error: use of undefined value here causes illegal behavior
3057// :107:27: note: when computing vector element at index '0'
30803058// :107:27: error: use of undefined value here causes illegal behavior
3081// :107:27: note: when computing vector element at index '1'
3059// :107:27: note: when computing vector element at index '0'
30823060// :107:27: error: use of undefined value here causes illegal behavior
3083// :107:27: note: when computing vector element at index '1'
3061// :107:27: note: when computing vector element at index '0'
30843062// :107:27: error: use of undefined value here causes illegal behavior
3085// :107:27: note: when computing vector element at index '1'
3063// :107:27: note: when computing vector element at index '0'
30863064// :107:27: error: use of undefined value here causes illegal behavior
3087// :107:27: note: when computing vector element at index '1'
3065// :107:27: note: when computing vector element at index '0'
30883066// :107:27: error: use of undefined value here causes illegal behavior
30893067// :107:27: note: when computing vector element at index '0'
30903068// :107:27: error: use of undefined value here causes illegal behavior
......@@ -3094,11 +3072,17 @@ const std = @import("std");
30943072// :107:27: error: use of undefined value here causes illegal behavior
30953073// :107:27: note: when computing vector element at index '0'
30963074// :107:27: error: use of undefined value here causes illegal behavior
3075// :107:27: note: when computing vector element at index '1'
30973076// :107:27: error: use of undefined value here causes illegal behavior
3077// :107:27: note: when computing vector element at index '1'
30983078// :107:27: error: use of undefined value here causes illegal behavior
3079// :107:27: note: when computing vector element at index '1'
30993080// :107:27: error: use of undefined value here causes illegal behavior
3081// :107:27: note: when computing vector element at index '1'
31003082// :107:27: error: use of undefined value here causes illegal behavior
3083// :107:27: note: when computing vector element at index '1'
31013084// :107:27: error: use of undefined value here causes illegal behavior
3085// :107:27: note: when computing vector element at index '1'
31023086// :107:27: error: use of undefined value here causes illegal behavior
31033087// :107:27: note: when computing vector element at index '1'
31043088// :107:27: error: use of undefined value here causes illegal behavior
......@@ -3108,19 +3092,25 @@ const std = @import("std");
31083092// :107:27: error: use of undefined value here causes illegal behavior
31093093// :107:27: note: when computing vector element at index '1'
31103094// :107:27: error: use of undefined value here causes illegal behavior
3111// :107:27: note: when computing vector element at index '0'
3095// :107:27: note: when computing vector element at index '1'
31123096// :107:27: error: use of undefined value here causes illegal behavior
3113// :107:27: note: when computing vector element at index '0'
3097// :107:27: note: when computing vector element at index '1'
31143098// :107:27: error: use of undefined value here causes illegal behavior
3115// :107:27: note: when computing vector element at index '0'
3099// :107:27: note: when computing vector element at index '1'
31163100// :107:27: error: use of undefined value here causes illegal behavior
3117// :107:27: note: when computing vector element at index '0'
3101// :107:27: note: when computing vector element at index '1'
31183102// :107:27: error: use of undefined value here causes illegal behavior
3103// :107:27: note: when computing vector element at index '1'
31193104// :107:27: error: use of undefined value here causes illegal behavior
3105// :107:27: note: when computing vector element at index '1'
31203106// :107:27: error: use of undefined value here causes illegal behavior
3107// :107:27: note: when computing vector element at index '1'
31213108// :107:27: error: use of undefined value here causes illegal behavior
3109// :107:27: note: when computing vector element at index '1'
31223110// :107:27: error: use of undefined value here causes illegal behavior
3111// :107:27: note: when computing vector element at index '1'
31233112// :107:27: error: use of undefined value here causes illegal behavior
3113// :107:27: note: when computing vector element at index '1'
31243114// :107:27: error: use of undefined value here causes illegal behavior
31253115// :107:27: note: when computing vector element at index '1'
31263116// :107:27: error: use of undefined value here causes illegal behavior
......@@ -3130,19 +3120,29 @@ const std = @import("std");
31303120// :107:27: error: use of undefined value here causes illegal behavior
31313121// :107:27: note: when computing vector element at index '1'
31323122// :107:27: error: use of undefined value here causes illegal behavior
3133// :107:27: note: when computing vector element at index '0'
3123// :107:27: note: when computing vector element at index '1'
31343124// :107:27: error: use of undefined value here causes illegal behavior
3135// :107:27: note: when computing vector element at index '0'
3125// :107:27: note: when computing vector element at index '1'
31363126// :107:27: error: use of undefined value here causes illegal behavior
3137// :107:27: note: when computing vector element at index '0'
3127// :107:27: note: when computing vector element at index '1'
31383128// :107:27: error: use of undefined value here causes illegal behavior
3139// :107:27: note: when computing vector element at index '0'
3129// :107:27: note: when computing vector element at index '1'
3130// :107:27: error: use of undefined value here causes illegal behavior
3131// :107:27: note: when computing vector element at index '1'
3132// :107:27: error: use of undefined value here causes illegal behavior
3133// :107:27: note: when computing vector element at index '1'
31403134// :107:27: error: use of undefined value here causes illegal behavior
3135// :107:27: note: when computing vector element at index '1'
31413136// :107:27: error: use of undefined value here causes illegal behavior
3137// :107:27: note: when computing vector element at index '1'
31423138// :107:27: error: use of undefined value here causes illegal behavior
3139// :107:27: note: when computing vector element at index '1'
31433140// :107:27: error: use of undefined value here causes illegal behavior
3141// :107:27: note: when computing vector element at index '1'
31443142// :107:27: error: use of undefined value here causes illegal behavior
3143// :107:27: note: when computing vector element at index '1'
31453144// :107:27: error: use of undefined value here causes illegal behavior
3145// :107:27: note: when computing vector element at index '1'
31463146// :107:27: error: use of undefined value here causes illegal behavior
31473147// :107:27: note: when computing vector element at index '1'
31483148// :107:27: error: use of undefined value here causes illegal behavior
......@@ -3152,13 +3152,13 @@ const std = @import("std");
31523152// :107:27: error: use of undefined value here causes illegal behavior
31533153// :107:27: note: when computing vector element at index '1'
31543154// :107:27: error: use of undefined value here causes illegal behavior
3155// :107:27: note: when computing vector element at index '0'
3155// :107:27: note: when computing vector element at index '1'
31563156// :107:27: error: use of undefined value here causes illegal behavior
3157// :107:27: note: when computing vector element at index '0'
3157// :107:27: note: when computing vector element at index '1'
31583158// :107:27: error: use of undefined value here causes illegal behavior
3159// :107:27: note: when computing vector element at index '0'
3159// :107:27: note: when computing vector element at index '1'
31603160// :107:27: error: use of undefined value here causes illegal behavior
3161// :107:27: note: when computing vector element at index '0'
3161// :107:27: note: when computing vector element at index '1'
31623162// :111:22: error: use of undefined value here causes illegal behavior
31633163// :111:22: error: use of undefined value here causes illegal behavior
31643164// :111:22: error: use of undefined value here causes illegal behavior
......@@ -3166,21 +3166,13 @@ const std = @import("std");
31663166// :111:22: error: use of undefined value here causes illegal behavior
31673167// :111:22: error: use of undefined value here causes illegal behavior
31683168// :111:22: error: use of undefined value here causes illegal behavior
3169// :111:22: note: when computing vector element at index '1'
31703169// :111:22: error: use of undefined value here causes illegal behavior
3171// :111:22: note: when computing vector element at index '1'
31723170// :111:22: error: use of undefined value here causes illegal behavior
3173// :111:22: note: when computing vector element at index '1'
31743171// :111:22: error: use of undefined value here causes illegal behavior
3175// :111:22: note: when computing vector element at index '1'
31763172// :111:22: error: use of undefined value here causes illegal behavior
3177// :111:22: note: when computing vector element at index '0'
31783173// :111:22: error: use of undefined value here causes illegal behavior
3179// :111:22: note: when computing vector element at index '0'
31803174// :111:22: error: use of undefined value here causes illegal behavior
3181// :111:22: note: when computing vector element at index '0'
31823175// :111:22: error: use of undefined value here causes illegal behavior
3183// :111:22: note: when computing vector element at index '0'
31843176// :111:22: error: use of undefined value here causes illegal behavior
31853177// :111:22: error: use of undefined value here causes illegal behavior
31863178// :111:22: error: use of undefined value here causes illegal behavior
......@@ -3188,21 +3180,13 @@ const std = @import("std");
31883180// :111:22: error: use of undefined value here causes illegal behavior
31893181// :111:22: error: use of undefined value here causes illegal behavior
31903182// :111:22: error: use of undefined value here causes illegal behavior
3191// :111:22: note: when computing vector element at index '1'
31923183// :111:22: error: use of undefined value here causes illegal behavior
3193// :111:22: note: when computing vector element at index '1'
31943184// :111:22: error: use of undefined value here causes illegal behavior
3195// :111:22: note: when computing vector element at index '1'
31963185// :111:22: error: use of undefined value here causes illegal behavior
3197// :111:22: note: when computing vector element at index '1'
31983186// :111:22: error: use of undefined value here causes illegal behavior
3199// :111:22: note: when computing vector element at index '0'
32003187// :111:22: error: use of undefined value here causes illegal behavior
3201// :111:22: note: when computing vector element at index '0'
32023188// :111:22: error: use of undefined value here causes illegal behavior
3203// :111:22: note: when computing vector element at index '0'
32043189// :111:22: error: use of undefined value here causes illegal behavior
3205// :111:22: note: when computing vector element at index '0'
32063190// :111:22: error: use of undefined value here causes illegal behavior
32073191// :111:22: error: use of undefined value here causes illegal behavior
32083192// :111:22: error: use of undefined value here causes illegal behavior
......@@ -3210,21 +3194,13 @@ const std = @import("std");
32103194// :111:22: error: use of undefined value here causes illegal behavior
32113195// :111:22: error: use of undefined value here causes illegal behavior
32123196// :111:22: error: use of undefined value here causes illegal behavior
3213// :111:22: note: when computing vector element at index '1'
32143197// :111:22: error: use of undefined value here causes illegal behavior
3215// :111:22: note: when computing vector element at index '1'
32163198// :111:22: error: use of undefined value here causes illegal behavior
3217// :111:22: note: when computing vector element at index '1'
32183199// :111:22: error: use of undefined value here causes illegal behavior
3219// :111:22: note: when computing vector element at index '1'
32203200// :111:22: error: use of undefined value here causes illegal behavior
3221// :111:22: note: when computing vector element at index '0'
32223201// :111:22: error: use of undefined value here causes illegal behavior
3223// :111:22: note: when computing vector element at index '0'
32243202// :111:22: error: use of undefined value here causes illegal behavior
3225// :111:22: note: when computing vector element at index '0'
32263203// :111:22: error: use of undefined value here causes illegal behavior
3227// :111:22: note: when computing vector element at index '0'
32283204// :111:22: error: use of undefined value here causes illegal behavior
32293205// :111:22: error: use of undefined value here causes illegal behavior
32303206// :111:22: error: use of undefined value here causes illegal behavior
......@@ -3232,21 +3208,13 @@ const std = @import("std");
32323208// :111:22: error: use of undefined value here causes illegal behavior
32333209// :111:22: error: use of undefined value here causes illegal behavior
32343210// :111:22: error: use of undefined value here causes illegal behavior
3235// :111:22: note: when computing vector element at index '1'
32363211// :111:22: error: use of undefined value here causes illegal behavior
3237// :111:22: note: when computing vector element at index '1'
32383212// :111:22: error: use of undefined value here causes illegal behavior
3239// :111:22: note: when computing vector element at index '1'
32403213// :111:22: error: use of undefined value here causes illegal behavior
3241// :111:22: note: when computing vector element at index '1'
32423214// :111:22: error: use of undefined value here causes illegal behavior
3243// :111:22: note: when computing vector element at index '0'
32443215// :111:22: error: use of undefined value here causes illegal behavior
3245// :111:22: note: when computing vector element at index '0'
32463216// :111:22: error: use of undefined value here causes illegal behavior
3247// :111:22: note: when computing vector element at index '0'
32483217// :111:22: error: use of undefined value here causes illegal behavior
3249// :111:22: note: when computing vector element at index '0'
32503218// :111:22: error: use of undefined value here causes illegal behavior
32513219// :111:22: error: use of undefined value here causes illegal behavior
32523220// :111:22: error: use of undefined value here causes illegal behavior
......@@ -3254,13 +3222,9 @@ const std = @import("std");
32543222// :111:22: error: use of undefined value here causes illegal behavior
32553223// :111:22: error: use of undefined value here causes illegal behavior
32563224// :111:22: error: use of undefined value here causes illegal behavior
3257// :111:22: note: when computing vector element at index '1'
32583225// :111:22: error: use of undefined value here causes illegal behavior
3259// :111:22: note: when computing vector element at index '1'
32603226// :111:22: error: use of undefined value here causes illegal behavior
3261// :111:22: note: when computing vector element at index '1'
32623227// :111:22: error: use of undefined value here causes illegal behavior
3263// :111:22: note: when computing vector element at index '1'
32643228// :111:22: error: use of undefined value here causes illegal behavior
32653229// :111:22: note: when computing vector element at index '0'
32663230// :111:22: error: use of undefined value here causes illegal behavior
......@@ -3270,19 +3234,21 @@ const std = @import("std");
32703234// :111:22: error: use of undefined value here causes illegal behavior
32713235// :111:22: note: when computing vector element at index '0'
32723236// :111:22: error: use of undefined value here causes illegal behavior
3237// :111:22: note: when computing vector element at index '0'
32733238// :111:22: error: use of undefined value here causes illegal behavior
3239// :111:22: note: when computing vector element at index '0'
32743240// :111:22: error: use of undefined value here causes illegal behavior
3241// :111:22: note: when computing vector element at index '0'
32753242// :111:22: error: use of undefined value here causes illegal behavior
3243// :111:22: note: when computing vector element at index '0'
32763244// :111:22: error: use of undefined value here causes illegal behavior
3245// :111:22: note: when computing vector element at index '0'
32773246// :111:22: error: use of undefined value here causes illegal behavior
3247// :111:22: note: when computing vector element at index '0'
32783248// :111:22: error: use of undefined value here causes illegal behavior
3279// :111:22: note: when computing vector element at index '1'
3280// :111:22: error: use of undefined value here causes illegal behavior
3281// :111:22: note: when computing vector element at index '1'
3282// :111:22: error: use of undefined value here causes illegal behavior
3283// :111:22: note: when computing vector element at index '1'
3249// :111:22: note: when computing vector element at index '0'
32843250// :111:22: error: use of undefined value here causes illegal behavior
3285// :111:22: note: when computing vector element at index '1'
3251// :111:22: note: when computing vector element at index '0'
32863252// :111:22: error: use of undefined value here causes illegal behavior
32873253// :111:22: note: when computing vector element at index '0'
32883254// :111:22: error: use of undefined value here causes illegal behavior
......@@ -3292,19 +3258,25 @@ const std = @import("std");
32923258// :111:22: error: use of undefined value here causes illegal behavior
32933259// :111:22: note: when computing vector element at index '0'
32943260// :111:22: error: use of undefined value here causes illegal behavior
3261// :111:22: note: when computing vector element at index '0'
32953262// :111:22: error: use of undefined value here causes illegal behavior
3263// :111:22: note: when computing vector element at index '0'
32963264// :111:22: error: use of undefined value here causes illegal behavior
3265// :111:22: note: when computing vector element at index '0'
32973266// :111:22: error: use of undefined value here causes illegal behavior
3267// :111:22: note: when computing vector element at index '0'
32983268// :111:22: error: use of undefined value here causes illegal behavior
3269// :111:22: note: when computing vector element at index '0'
32993270// :111:22: error: use of undefined value here causes illegal behavior
3271// :111:22: note: when computing vector element at index '0'
33003272// :111:22: error: use of undefined value here causes illegal behavior
3301// :111:22: note: when computing vector element at index '1'
3273// :111:22: note: when computing vector element at index '0'
33023274// :111:22: error: use of undefined value here causes illegal behavior
3303// :111:22: note: when computing vector element at index '1'
3275// :111:22: note: when computing vector element at index '0'
33043276// :111:22: error: use of undefined value here causes illegal behavior
3305// :111:22: note: when computing vector element at index '1'
3277// :111:22: note: when computing vector element at index '0'
33063278// :111:22: error: use of undefined value here causes illegal behavior
3307// :111:22: note: when computing vector element at index '1'
3279// :111:22: note: when computing vector element at index '0'
33083280// :111:22: error: use of undefined value here causes illegal behavior
33093281// :111:22: note: when computing vector element at index '0'
33103282// :111:22: error: use of undefined value here causes illegal behavior
......@@ -3314,19 +3286,25 @@ const std = @import("std");
33143286// :111:22: error: use of undefined value here causes illegal behavior
33153287// :111:22: note: when computing vector element at index '0'
33163288// :111:22: error: use of undefined value here causes illegal behavior
3289// :111:22: note: when computing vector element at index '0'
33173290// :111:22: error: use of undefined value here causes illegal behavior
3291// :111:22: note: when computing vector element at index '0'
33183292// :111:22: error: use of undefined value here causes illegal behavior
3293// :111:22: note: when computing vector element at index '0'
33193294// :111:22: error: use of undefined value here causes illegal behavior
3295// :111:22: note: when computing vector element at index '0'
33203296// :111:22: error: use of undefined value here causes illegal behavior
3297// :111:22: note: when computing vector element at index '0'
33213298// :111:22: error: use of undefined value here causes illegal behavior
3299// :111:22: note: when computing vector element at index '0'
33223300// :111:22: error: use of undefined value here causes illegal behavior
3323// :111:22: note: when computing vector element at index '1'
3301// :111:22: note: when computing vector element at index '0'
33243302// :111:22: error: use of undefined value here causes illegal behavior
3325// :111:22: note: when computing vector element at index '1'
3303// :111:22: note: when computing vector element at index '0'
33263304// :111:22: error: use of undefined value here causes illegal behavior
3327// :111:22: note: when computing vector element at index '1'
3305// :111:22: note: when computing vector element at index '0'
33283306// :111:22: error: use of undefined value here causes illegal behavior
3329// :111:22: note: when computing vector element at index '1'
3307// :111:22: note: when computing vector element at index '0'
33303308// :111:22: error: use of undefined value here causes illegal behavior
33313309// :111:22: note: when computing vector element at index '0'
33323310// :111:22: error: use of undefined value here causes illegal behavior
......@@ -3336,11 +3314,17 @@ const std = @import("std");
33363314// :111:22: error: use of undefined value here causes illegal behavior
33373315// :111:22: note: when computing vector element at index '0'
33383316// :111:22: error: use of undefined value here causes illegal behavior
3317// :111:22: note: when computing vector element at index '1'
33393318// :111:22: error: use of undefined value here causes illegal behavior
3319// :111:22: note: when computing vector element at index '1'
33403320// :111:22: error: use of undefined value here causes illegal behavior
3321// :111:22: note: when computing vector element at index '1'
33413322// :111:22: error: use of undefined value here causes illegal behavior
3323// :111:22: note: when computing vector element at index '1'
33423324// :111:22: error: use of undefined value here causes illegal behavior
3325// :111:22: note: when computing vector element at index '1'
33433326// :111:22: error: use of undefined value here causes illegal behavior
3327// :111:22: note: when computing vector element at index '1'
33443328// :111:22: error: use of undefined value here causes illegal behavior
33453329// :111:22: note: when computing vector element at index '1'
33463330// :111:22: error: use of undefined value here causes illegal behavior
......@@ -3350,19 +3334,25 @@ const std = @import("std");
33503334// :111:22: error: use of undefined value here causes illegal behavior
33513335// :111:22: note: when computing vector element at index '1'
33523336// :111:22: error: use of undefined value here causes illegal behavior
3353// :111:22: note: when computing vector element at index '0'
3337// :111:22: note: when computing vector element at index '1'
33543338// :111:22: error: use of undefined value here causes illegal behavior
3355// :111:22: note: when computing vector element at index '0'
3339// :111:22: note: when computing vector element at index '1'
33563340// :111:22: error: use of undefined value here causes illegal behavior
3357// :111:22: note: when computing vector element at index '0'
3341// :111:22: note: when computing vector element at index '1'
33583342// :111:22: error: use of undefined value here causes illegal behavior
3359// :111:22: note: when computing vector element at index '0'
3343// :111:22: note: when computing vector element at index '1'
33603344// :111:22: error: use of undefined value here causes illegal behavior
3345// :111:22: note: when computing vector element at index '1'
33613346// :111:22: error: use of undefined value here causes illegal behavior
3347// :111:22: note: when computing vector element at index '1'
33623348// :111:22: error: use of undefined value here causes illegal behavior
3349// :111:22: note: when computing vector element at index '1'
33633350// :111:22: error: use of undefined value here causes illegal behavior
3351// :111:22: note: when computing vector element at index '1'
33643352// :111:22: error: use of undefined value here causes illegal behavior
3353// :111:22: note: when computing vector element at index '1'
33653354// :111:22: error: use of undefined value here causes illegal behavior
3355// :111:22: note: when computing vector element at index '1'
33663356// :111:22: error: use of undefined value here causes illegal behavior
33673357// :111:22: note: when computing vector element at index '1'
33683358// :111:22: error: use of undefined value here causes illegal behavior
......@@ -3372,19 +3362,25 @@ const std = @import("std");
33723362// :111:22: error: use of undefined value here causes illegal behavior
33733363// :111:22: note: when computing vector element at index '1'
33743364// :111:22: error: use of undefined value here causes illegal behavior
3375// :111:22: note: when computing vector element at index '0'
3365// :111:22: note: when computing vector element at index '1'
33763366// :111:22: error: use of undefined value here causes illegal behavior
3377// :111:22: note: when computing vector element at index '0'
3367// :111:22: note: when computing vector element at index '1'
33783368// :111:22: error: use of undefined value here causes illegal behavior
3379// :111:22: note: when computing vector element at index '0'
3369// :111:22: note: when computing vector element at index '1'
33803370// :111:22: error: use of undefined value here causes illegal behavior
3381// :111:22: note: when computing vector element at index '0'
3371// :111:22: note: when computing vector element at index '1'
33823372// :111:22: error: use of undefined value here causes illegal behavior
3373// :111:22: note: when computing vector element at index '1'
33833374// :111:22: error: use of undefined value here causes illegal behavior
3375// :111:22: note: when computing vector element at index '1'
33843376// :111:22: error: use of undefined value here causes illegal behavior
3377// :111:22: note: when computing vector element at index '1'
33853378// :111:22: error: use of undefined value here causes illegal behavior
3379// :111:22: note: when computing vector element at index '1'
33863380// :111:22: error: use of undefined value here causes illegal behavior
3381// :111:22: note: when computing vector element at index '1'
33873382// :111:22: error: use of undefined value here causes illegal behavior
3383// :111:22: note: when computing vector element at index '1'
33883384// :111:22: error: use of undefined value here causes illegal behavior
33893385// :111:22: note: when computing vector element at index '1'
33903386// :111:22: error: use of undefined value here causes illegal behavior
......@@ -3394,13 +3390,17 @@ const std = @import("std");
33943390// :111:22: error: use of undefined value here causes illegal behavior
33953391// :111:22: note: when computing vector element at index '1'
33963392// :111:22: error: use of undefined value here causes illegal behavior
3397// :111:22: note: when computing vector element at index '0'
3393// :111:22: note: when computing vector element at index '1'
33983394// :111:22: error: use of undefined value here causes illegal behavior
3399// :111:22: note: when computing vector element at index '0'
3395// :111:22: note: when computing vector element at index '1'
34003396// :111:22: error: use of undefined value here causes illegal behavior
3401// :111:22: note: when computing vector element at index '0'
3397// :111:22: note: when computing vector element at index '1'
34023398// :111:22: error: use of undefined value here causes illegal behavior
3403// :111:22: note: when computing vector element at index '0'
3399// :111:22: note: when computing vector element at index '1'
3400// :111:22: error: use of undefined value here causes illegal behavior
3401// :111:22: note: when computing vector element at index '1'
3402// :111:22: error: use of undefined value here causes illegal behavior
3403// :111:22: note: when computing vector element at index '1'
34043404// :115:22: error: use of undefined value here causes illegal behavior
34053405// :115:22: error: use of undefined value here causes illegal behavior
34063406// :115:22: error: use of undefined value here causes illegal behavior
......@@ -3408,21 +3408,13 @@ const std = @import("std");
34083408// :115:22: error: use of undefined value here causes illegal behavior
34093409// :115:22: error: use of undefined value here causes illegal behavior
34103410// :115:22: error: use of undefined value here causes illegal behavior
3411// :115:22: note: when computing vector element at index '1'
34123411// :115:22: error: use of undefined value here causes illegal behavior
3413// :115:22: note: when computing vector element at index '1'
34143412// :115:22: error: use of undefined value here causes illegal behavior
3415// :115:22: note: when computing vector element at index '1'
34163413// :115:22: error: use of undefined value here causes illegal behavior
3417// :115:22: note: when computing vector element at index '1'
34183414// :115:22: error: use of undefined value here causes illegal behavior
3419// :115:22: note: when computing vector element at index '0'
34203415// :115:22: error: use of undefined value here causes illegal behavior
3421// :115:22: note: when computing vector element at index '0'
34223416// :115:22: error: use of undefined value here causes illegal behavior
3423// :115:22: note: when computing vector element at index '0'
34243417// :115:22: error: use of undefined value here causes illegal behavior
3425// :115:22: note: when computing vector element at index '0'
34263418// :115:22: error: use of undefined value here causes illegal behavior
34273419// :115:22: error: use of undefined value here causes illegal behavior
34283420// :115:22: error: use of undefined value here causes illegal behavior
......@@ -3430,21 +3422,13 @@ const std = @import("std");
34303422// :115:22: error: use of undefined value here causes illegal behavior
34313423// :115:22: error: use of undefined value here causes illegal behavior
34323424// :115:22: error: use of undefined value here causes illegal behavior
3433// :115:22: note: when computing vector element at index '1'
34343425// :115:22: error: use of undefined value here causes illegal behavior
3435// :115:22: note: when computing vector element at index '1'
34363426// :115:22: error: use of undefined value here causes illegal behavior
3437// :115:22: note: when computing vector element at index '1'
34383427// :115:22: error: use of undefined value here causes illegal behavior
3439// :115:22: note: when computing vector element at index '1'
34403428// :115:22: error: use of undefined value here causes illegal behavior
3441// :115:22: note: when computing vector element at index '0'
34423429// :115:22: error: use of undefined value here causes illegal behavior
3443// :115:22: note: when computing vector element at index '0'
34443430// :115:22: error: use of undefined value here causes illegal behavior
3445// :115:22: note: when computing vector element at index '0'
34463431// :115:22: error: use of undefined value here causes illegal behavior
3447// :115:22: note: when computing vector element at index '0'
34483432// :115:22: error: use of undefined value here causes illegal behavior
34493433// :115:22: error: use of undefined value here causes illegal behavior
34503434// :115:22: error: use of undefined value here causes illegal behavior
......@@ -3452,21 +3436,13 @@ const std = @import("std");
34523436// :115:22: error: use of undefined value here causes illegal behavior
34533437// :115:22: error: use of undefined value here causes illegal behavior
34543438// :115:22: error: use of undefined value here causes illegal behavior
3455// :115:22: note: when computing vector element at index '1'
34563439// :115:22: error: use of undefined value here causes illegal behavior
3457// :115:22: note: when computing vector element at index '1'
34583440// :115:22: error: use of undefined value here causes illegal behavior
3459// :115:22: note: when computing vector element at index '1'
34603441// :115:22: error: use of undefined value here causes illegal behavior
3461// :115:22: note: when computing vector element at index '1'
34623442// :115:22: error: use of undefined value here causes illegal behavior
3463// :115:22: note: when computing vector element at index '0'
34643443// :115:22: error: use of undefined value here causes illegal behavior
3465// :115:22: note: when computing vector element at index '0'
34663444// :115:22: error: use of undefined value here causes illegal behavior
3467// :115:22: note: when computing vector element at index '0'
34683445// :115:22: error: use of undefined value here causes illegal behavior
3469// :115:22: note: when computing vector element at index '0'
34703446// :115:22: error: use of undefined value here causes illegal behavior
34713447// :115:22: error: use of undefined value here causes illegal behavior
34723448// :115:22: error: use of undefined value here causes illegal behavior
......@@ -3474,21 +3450,13 @@ const std = @import("std");
34743450// :115:22: error: use of undefined value here causes illegal behavior
34753451// :115:22: error: use of undefined value here causes illegal behavior
34763452// :115:22: error: use of undefined value here causes illegal behavior
3477// :115:22: note: when computing vector element at index '1'
34783453// :115:22: error: use of undefined value here causes illegal behavior
3479// :115:22: note: when computing vector element at index '1'
34803454// :115:22: error: use of undefined value here causes illegal behavior
3481// :115:22: note: when computing vector element at index '1'
34823455// :115:22: error: use of undefined value here causes illegal behavior
3483// :115:22: note: when computing vector element at index '1'
34843456// :115:22: error: use of undefined value here causes illegal behavior
3485// :115:22: note: when computing vector element at index '0'
34863457// :115:22: error: use of undefined value here causes illegal behavior
3487// :115:22: note: when computing vector element at index '0'
34883458// :115:22: error: use of undefined value here causes illegal behavior
3489// :115:22: note: when computing vector element at index '0'
34903459// :115:22: error: use of undefined value here causes illegal behavior
3491// :115:22: note: when computing vector element at index '0'
34923460// :115:22: error: use of undefined value here causes illegal behavior
34933461// :115:22: error: use of undefined value here causes illegal behavior
34943462// :115:22: error: use of undefined value here causes illegal behavior
......@@ -3496,13 +3464,9 @@ const std = @import("std");
34963464// :115:22: error: use of undefined value here causes illegal behavior
34973465// :115:22: error: use of undefined value here causes illegal behavior
34983466// :115:22: error: use of undefined value here causes illegal behavior
3499// :115:22: note: when computing vector element at index '1'
35003467// :115:22: error: use of undefined value here causes illegal behavior
3501// :115:22: note: when computing vector element at index '1'
35023468// :115:22: error: use of undefined value here causes illegal behavior
3503// :115:22: note: when computing vector element at index '1'
35043469// :115:22: error: use of undefined value here causes illegal behavior
3505// :115:22: note: when computing vector element at index '1'
35063470// :115:22: error: use of undefined value here causes illegal behavior
35073471// :115:22: note: when computing vector element at index '0'
35083472// :115:22: error: use of undefined value here causes illegal behavior
......@@ -3512,19 +3476,21 @@ const std = @import("std");
35123476// :115:22: error: use of undefined value here causes illegal behavior
35133477// :115:22: note: when computing vector element at index '0'
35143478// :115:22: error: use of undefined value here causes illegal behavior
3479// :115:22: note: when computing vector element at index '0'
35153480// :115:22: error: use of undefined value here causes illegal behavior
3481// :115:22: note: when computing vector element at index '0'
35163482// :115:22: error: use of undefined value here causes illegal behavior
3483// :115:22: note: when computing vector element at index '0'
35173484// :115:22: error: use of undefined value here causes illegal behavior
3485// :115:22: note: when computing vector element at index '0'
35183486// :115:22: error: use of undefined value here causes illegal behavior
3487// :115:22: note: when computing vector element at index '0'
35193488// :115:22: error: use of undefined value here causes illegal behavior
3489// :115:22: note: when computing vector element at index '0'
35203490// :115:22: error: use of undefined value here causes illegal behavior
3521// :115:22: note: when computing vector element at index '1'
3522// :115:22: error: use of undefined value here causes illegal behavior
3523// :115:22: note: when computing vector element at index '1'
3524// :115:22: error: use of undefined value here causes illegal behavior
3525// :115:22: note: when computing vector element at index '1'
3491// :115:22: note: when computing vector element at index '0'
35263492// :115:22: error: use of undefined value here causes illegal behavior
3527// :115:22: note: when computing vector element at index '1'
3493// :115:22: note: when computing vector element at index '0'
35283494// :115:22: error: use of undefined value here causes illegal behavior
35293495// :115:22: note: when computing vector element at index '0'
35303496// :115:22: error: use of undefined value here causes illegal behavior
......@@ -3534,19 +3500,25 @@ const std = @import("std");
35343500// :115:22: error: use of undefined value here causes illegal behavior
35353501// :115:22: note: when computing vector element at index '0'
35363502// :115:22: error: use of undefined value here causes illegal behavior
3503// :115:22: note: when computing vector element at index '0'
35373504// :115:22: error: use of undefined value here causes illegal behavior
3505// :115:22: note: when computing vector element at index '0'
35383506// :115:22: error: use of undefined value here causes illegal behavior
3507// :115:22: note: when computing vector element at index '0'
35393508// :115:22: error: use of undefined value here causes illegal behavior
3509// :115:22: note: when computing vector element at index '0'
35403510// :115:22: error: use of undefined value here causes illegal behavior
3511// :115:22: note: when computing vector element at index '0'
35413512// :115:22: error: use of undefined value here causes illegal behavior
3513// :115:22: note: when computing vector element at index '0'
35423514// :115:22: error: use of undefined value here causes illegal behavior
3543// :115:22: note: when computing vector element at index '1'
3515// :115:22: note: when computing vector element at index '0'
35443516// :115:22: error: use of undefined value here causes illegal behavior
3545// :115:22: note: when computing vector element at index '1'
3517// :115:22: note: when computing vector element at index '0'
35463518// :115:22: error: use of undefined value here causes illegal behavior
3547// :115:22: note: when computing vector element at index '1'
3519// :115:22: note: when computing vector element at index '0'
35483520// :115:22: error: use of undefined value here causes illegal behavior
3549// :115:22: note: when computing vector element at index '1'
3521// :115:22: note: when computing vector element at index '0'
35503522// :115:22: error: use of undefined value here causes illegal behavior
35513523// :115:22: note: when computing vector element at index '0'
35523524// :115:22: error: use of undefined value here causes illegal behavior
......@@ -3556,19 +3528,25 @@ const std = @import("std");
35563528// :115:22: error: use of undefined value here causes illegal behavior
35573529// :115:22: note: when computing vector element at index '0'
35583530// :115:22: error: use of undefined value here causes illegal behavior
3531// :115:22: note: when computing vector element at index '0'
35593532// :115:22: error: use of undefined value here causes illegal behavior
3533// :115:22: note: when computing vector element at index '0'
35603534// :115:22: error: use of undefined value here causes illegal behavior
3535// :115:22: note: when computing vector element at index '0'
35613536// :115:22: error: use of undefined value here causes illegal behavior
3537// :115:22: note: when computing vector element at index '0'
35623538// :115:22: error: use of undefined value here causes illegal behavior
3539// :115:22: note: when computing vector element at index '0'
35633540// :115:22: error: use of undefined value here causes illegal behavior
3541// :115:22: note: when computing vector element at index '0'
35643542// :115:22: error: use of undefined value here causes illegal behavior
3565// :115:22: note: when computing vector element at index '1'
3543// :115:22: note: when computing vector element at index '0'
35663544// :115:22: error: use of undefined value here causes illegal behavior
3567// :115:22: note: when computing vector element at index '1'
3545// :115:22: note: when computing vector element at index '0'
35683546// :115:22: error: use of undefined value here causes illegal behavior
3569// :115:22: note: when computing vector element at index '1'
3547// :115:22: note: when computing vector element at index '0'
35703548// :115:22: error: use of undefined value here causes illegal behavior
3571// :115:22: note: when computing vector element at index '1'
3549// :115:22: note: when computing vector element at index '0'
35723550// :115:22: error: use of undefined value here causes illegal behavior
35733551// :115:22: note: when computing vector element at index '0'
35743552// :115:22: error: use of undefined value here causes illegal behavior
......@@ -3578,11 +3556,17 @@ const std = @import("std");
35783556// :115:22: error: use of undefined value here causes illegal behavior
35793557// :115:22: note: when computing vector element at index '0'
35803558// :115:22: error: use of undefined value here causes illegal behavior
3559// :115:22: note: when computing vector element at index '1'
35813560// :115:22: error: use of undefined value here causes illegal behavior
3561// :115:22: note: when computing vector element at index '1'
35823562// :115:22: error: use of undefined value here causes illegal behavior
3563// :115:22: note: when computing vector element at index '1'
35833564// :115:22: error: use of undefined value here causes illegal behavior
3565// :115:22: note: when computing vector element at index '1'
35843566// :115:22: error: use of undefined value here causes illegal behavior
3567// :115:22: note: when computing vector element at index '1'
35853568// :115:22: error: use of undefined value here causes illegal behavior
3569// :115:22: note: when computing vector element at index '1'
35863570// :115:22: error: use of undefined value here causes illegal behavior
35873571// :115:22: note: when computing vector element at index '1'
35883572// :115:22: error: use of undefined value here causes illegal behavior
......@@ -3592,19 +3576,25 @@ const std = @import("std");
35923576// :115:22: error: use of undefined value here causes illegal behavior
35933577// :115:22: note: when computing vector element at index '1'
35943578// :115:22: error: use of undefined value here causes illegal behavior
3595// :115:22: note: when computing vector element at index '0'
3579// :115:22: note: when computing vector element at index '1'
35963580// :115:22: error: use of undefined value here causes illegal behavior
3597// :115:22: note: when computing vector element at index '0'
3581// :115:22: note: when computing vector element at index '1'
35983582// :115:22: error: use of undefined value here causes illegal behavior
3599// :115:22: note: when computing vector element at index '0'
3583// :115:22: note: when computing vector element at index '1'
36003584// :115:22: error: use of undefined value here causes illegal behavior
3601// :115:22: note: when computing vector element at index '0'
3585// :115:22: note: when computing vector element at index '1'
36023586// :115:22: error: use of undefined value here causes illegal behavior
3587// :115:22: note: when computing vector element at index '1'
36033588// :115:22: error: use of undefined value here causes illegal behavior
3589// :115:22: note: when computing vector element at index '1'
36043590// :115:22: error: use of undefined value here causes illegal behavior
3591// :115:22: note: when computing vector element at index '1'
36053592// :115:22: error: use of undefined value here causes illegal behavior
3593// :115:22: note: when computing vector element at index '1'
36063594// :115:22: error: use of undefined value here causes illegal behavior
3595// :115:22: note: when computing vector element at index '1'
36073596// :115:22: error: use of undefined value here causes illegal behavior
3597// :115:22: note: when computing vector element at index '1'
36083598// :115:22: error: use of undefined value here causes illegal behavior
36093599// :115:22: note: when computing vector element at index '1'
36103600// :115:22: error: use of undefined value here causes illegal behavior
......@@ -3614,19 +3604,27 @@ const std = @import("std");
36143604// :115:22: error: use of undefined value here causes illegal behavior
36153605// :115:22: note: when computing vector element at index '1'
36163606// :115:22: error: use of undefined value here causes illegal behavior
3617// :115:22: note: when computing vector element at index '0'
3607// :115:22: note: when computing vector element at index '1'
36183608// :115:22: error: use of undefined value here causes illegal behavior
3619// :115:22: note: when computing vector element at index '0'
3609// :115:22: note: when computing vector element at index '1'
36203610// :115:22: error: use of undefined value here causes illegal behavior
3621// :115:22: note: when computing vector element at index '0'
3611// :115:22: note: when computing vector element at index '1'
36223612// :115:22: error: use of undefined value here causes illegal behavior
3623// :115:22: note: when computing vector element at index '0'
3613// :115:22: note: when computing vector element at index '1'
3614// :115:22: error: use of undefined value here causes illegal behavior
3615// :115:22: note: when computing vector element at index '1'
36243616// :115:22: error: use of undefined value here causes illegal behavior
3617// :115:22: note: when computing vector element at index '1'
36253618// :115:22: error: use of undefined value here causes illegal behavior
3619// :115:22: note: when computing vector element at index '1'
36263620// :115:22: error: use of undefined value here causes illegal behavior
3621// :115:22: note: when computing vector element at index '1'
36273622// :115:22: error: use of undefined value here causes illegal behavior
3623// :115:22: note: when computing vector element at index '1'
36283624// :115:22: error: use of undefined value here causes illegal behavior
3625// :115:22: note: when computing vector element at index '1'
36293626// :115:22: error: use of undefined value here causes illegal behavior
3627// :115:22: note: when computing vector element at index '1'
36303628// :115:22: error: use of undefined value here causes illegal behavior
36313629// :115:22: note: when computing vector element at index '1'
36323630// :115:22: error: use of undefined value here causes illegal behavior
......@@ -3636,37 +3634,32 @@ const std = @import("std");
36363634// :115:22: error: use of undefined value here causes illegal behavior
36373635// :115:22: note: when computing vector element at index '1'
36383636// :115:22: error: use of undefined value here causes illegal behavior
3639// :115:22: note: when computing vector element at index '0'
3637// :115:22: note: when computing vector element at index '1'
36403638// :115:22: error: use of undefined value here causes illegal behavior
3641// :115:22: note: when computing vector element at index '0'
3639// :115:22: note: when computing vector element at index '1'
36423640// :115:22: error: use of undefined value here causes illegal behavior
3643// :115:22: note: when computing vector element at index '0'
3641// :115:22: note: when computing vector element at index '1'
36443642// :115:22: error: use of undefined value here causes illegal behavior
3645// :115:22: note: when computing vector element at index '0'
3643// :115:22: note: when computing vector element at index '1'
3644// :115:22: error: use of undefined value here causes illegal behavior
3645// :115:22: note: when computing vector element at index '1'
3646// :121:17: error: use of undefined value here causes illegal behavior
36463647// :121:17: error: use of undefined value here causes illegal behavior
36473648// :121:17: error: use of undefined value here causes illegal behavior
3648// :121:17: note: when computing vector element at index '0'
36493649// :121:17: error: use of undefined value here causes illegal behavior
3650// :121:17: note: when computing vector element at index '0'
36513650// :121:17: error: use of undefined value here causes illegal behavior
3652// :121:17: note: when computing vector element at index '0'
36533651// :121:17: error: use of undefined value here causes illegal behavior
3654// :121:17: note: when computing vector element at index '1'
36553652// :121:17: error: use of undefined value here causes illegal behavior
3656// :121:17: note: when computing vector element at index '0'
36573653// :121:17: error: use of undefined value here causes illegal behavior
3658// :121:17: note: when computing vector element at index '0'
36593654// :121:17: error: use of undefined value here causes illegal behavior
3660// :121:17: note: when computing vector element at index '0'
36613655// :121:17: error: use of undefined value here causes illegal behavior
36623656// :121:17: error: use of undefined value here causes illegal behavior
3663// :121:17: note: when computing vector element at index '0'
36643657// :121:17: error: use of undefined value here causes illegal behavior
36653658// :121:17: note: when computing vector element at index '0'
36663659// :121:17: error: use of undefined value here causes illegal behavior
36673660// :121:17: note: when computing vector element at index '0'
36683661// :121:17: error: use of undefined value here causes illegal behavior
3669// :121:17: note: when computing vector element at index '1'
3662// :121:17: note: when computing vector element at index '0'
36703663// :121:17: error: use of undefined value here causes illegal behavior
36713664// :121:17: note: when computing vector element at index '0'
36723665// :121:17: error: use of undefined value here causes illegal behavior
......@@ -3674,6 +3667,7 @@ const std = @import("std");
36743667// :121:17: error: use of undefined value here causes illegal behavior
36753668// :121:17: note: when computing vector element at index '0'
36763669// :121:17: error: use of undefined value here causes illegal behavior
3670// :121:17: note: when computing vector element at index '0'
36773671// :121:17: error: use of undefined value here causes illegal behavior
36783672// :121:17: note: when computing vector element at index '0'
36793673// :121:17: error: use of undefined value here causes illegal behavior
......@@ -3681,7 +3675,7 @@ const std = @import("std");
36813675// :121:17: error: use of undefined value here causes illegal behavior
36823676// :121:17: note: when computing vector element at index '0'
36833677// :121:17: error: use of undefined value here causes illegal behavior
3684// :121:17: note: when computing vector element at index '1'
3678// :121:17: note: when computing vector element at index '0'
36853679// :121:17: error: use of undefined value here causes illegal behavior
36863680// :121:17: note: when computing vector element at index '0'
36873681// :121:17: error: use of undefined value here causes illegal behavior
......@@ -3689,6 +3683,7 @@ const std = @import("std");
36893683// :121:17: error: use of undefined value here causes illegal behavior
36903684// :121:17: note: when computing vector element at index '0'
36913685// :121:17: error: use of undefined value here causes illegal behavior
3686// :121:17: note: when computing vector element at index '0'
36923687// :121:17: error: use of undefined value here causes illegal behavior
36933688// :121:17: note: when computing vector element at index '0'
36943689// :121:17: error: use of undefined value here causes illegal behavior
......@@ -3696,7 +3691,7 @@ const std = @import("std");
36963691// :121:17: error: use of undefined value here causes illegal behavior
36973692// :121:17: note: when computing vector element at index '0'
36983693// :121:17: error: use of undefined value here causes illegal behavior
3699// :121:17: note: when computing vector element at index '1'
3694// :121:17: note: when computing vector element at index '0'
37003695// :121:17: error: use of undefined value here causes illegal behavior
37013696// :121:17: note: when computing vector element at index '0'
37023697// :121:17: error: use of undefined value here causes illegal behavior
......@@ -3704,6 +3699,7 @@ const std = @import("std");
37043699// :121:17: error: use of undefined value here causes illegal behavior
37053700// :121:17: note: when computing vector element at index '0'
37063701// :121:17: error: use of undefined value here causes illegal behavior
3702// :121:17: note: when computing vector element at index '0'
37073703// :121:17: error: use of undefined value here causes illegal behavior
37083704// :121:17: note: when computing vector element at index '0'
37093705// :121:17: error: use of undefined value here causes illegal behavior
......@@ -3711,7 +3707,7 @@ const std = @import("std");
37113707// :121:17: error: use of undefined value here causes illegal behavior
37123708// :121:17: note: when computing vector element at index '0'
37133709// :121:17: error: use of undefined value here causes illegal behavior
3714// :121:17: note: when computing vector element at index '1'
3710// :121:17: note: when computing vector element at index '0'
37153711// :121:17: error: use of undefined value here causes illegal behavior
37163712// :121:17: note: when computing vector element at index '0'
37173713// :121:17: error: use of undefined value here causes illegal behavior
......@@ -3719,6 +3715,7 @@ const std = @import("std");
37193715// :121:17: error: use of undefined value here causes illegal behavior
37203716// :121:17: note: when computing vector element at index '0'
37213717// :121:17: error: use of undefined value here causes illegal behavior
3718// :121:17: note: when computing vector element at index '0'
37223719// :121:17: error: use of undefined value here causes illegal behavior
37233720// :121:17: note: when computing vector element at index '0'
37243721// :121:17: error: use of undefined value here causes illegal behavior
......@@ -3726,7 +3723,7 @@ const std = @import("std");
37263723// :121:17: error: use of undefined value here causes illegal behavior
37273724// :121:17: note: when computing vector element at index '0'
37283725// :121:17: error: use of undefined value here causes illegal behavior
3729// :121:17: note: when computing vector element at index '1'
3726// :121:17: note: when computing vector element at index '0'
37303727// :121:17: error: use of undefined value here causes illegal behavior
37313728// :121:17: note: when computing vector element at index '0'
37323729// :121:17: error: use of undefined value here causes illegal behavior
......@@ -3734,6 +3731,7 @@ const std = @import("std");
37343731// :121:17: error: use of undefined value here causes illegal behavior
37353732// :121:17: note: when computing vector element at index '0'
37363733// :121:17: error: use of undefined value here causes illegal behavior
3734// :121:17: note: when computing vector element at index '0'
37373735// :121:17: error: use of undefined value here causes illegal behavior
37383736// :121:17: note: when computing vector element at index '0'
37393737// :121:17: error: use of undefined value here causes illegal behavior
......@@ -3741,7 +3739,7 @@ const std = @import("std");
37413739// :121:17: error: use of undefined value here causes illegal behavior
37423740// :121:17: note: when computing vector element at index '0'
37433741// :121:17: error: use of undefined value here causes illegal behavior
3744// :121:17: note: when computing vector element at index '1'
3742// :121:17: note: when computing vector element at index '0'
37453743// :121:17: error: use of undefined value here causes illegal behavior
37463744// :121:17: note: when computing vector element at index '0'
37473745// :121:17: error: use of undefined value here causes illegal behavior
......@@ -3749,6 +3747,7 @@ const std = @import("std");
37493747// :121:17: error: use of undefined value here causes illegal behavior
37503748// :121:17: note: when computing vector element at index '0'
37513749// :121:17: error: use of undefined value here causes illegal behavior
3750// :121:17: note: when computing vector element at index '0'
37523751// :121:17: error: use of undefined value here causes illegal behavior
37533752// :121:17: note: when computing vector element at index '0'
37543753// :121:17: error: use of undefined value here causes illegal behavior
......@@ -3756,7 +3755,7 @@ const std = @import("std");
37563755// :121:17: error: use of undefined value here causes illegal behavior
37573756// :121:17: note: when computing vector element at index '0'
37583757// :121:17: error: use of undefined value here causes illegal behavior
3759// :121:17: note: when computing vector element at index '1'
3758// :121:17: note: when computing vector element at index '0'
37603759// :121:17: error: use of undefined value here causes illegal behavior
37613760// :121:17: note: when computing vector element at index '0'
37623761// :121:17: error: use of undefined value here causes illegal behavior
......@@ -3764,6 +3763,7 @@ const std = @import("std");
37643763// :121:17: error: use of undefined value here causes illegal behavior
37653764// :121:17: note: when computing vector element at index '0'
37663765// :121:17: error: use of undefined value here causes illegal behavior
3766// :121:17: note: when computing vector element at index '0'
37673767// :121:17: error: use of undefined value here causes illegal behavior
37683768// :121:17: note: when computing vector element at index '0'
37693769// :121:17: error: use of undefined value here causes illegal behavior
......@@ -3771,7 +3771,7 @@ const std = @import("std");
37713771// :121:17: error: use of undefined value here causes illegal behavior
37723772// :121:17: note: when computing vector element at index '0'
37733773// :121:17: error: use of undefined value here causes illegal behavior
3774// :121:17: note: when computing vector element at index '1'
3774// :121:17: note: when computing vector element at index '0'
37753775// :121:17: error: use of undefined value here causes illegal behavior
37763776// :121:17: note: when computing vector element at index '0'
37773777// :121:17: error: use of undefined value here causes illegal behavior
......@@ -3779,6 +3779,7 @@ const std = @import("std");
37793779// :121:17: error: use of undefined value here causes illegal behavior
37803780// :121:17: note: when computing vector element at index '0'
37813781// :121:17: error: use of undefined value here causes illegal behavior
3782// :121:17: note: when computing vector element at index '0'
37823783// :121:17: error: use of undefined value here causes illegal behavior
37833784// :121:17: note: when computing vector element at index '0'
37843785// :121:17: error: use of undefined value here causes illegal behavior
......@@ -3788,126 +3789,120 @@ const std = @import("std");
37883789// :121:17: error: use of undefined value here causes illegal behavior
37893790// :121:17: note: when computing vector element at index '1'
37903791// :121:17: error: use of undefined value here causes illegal behavior
3791// :121:17: note: when computing vector element at index '0'
3792// :121:17: error: use of undefined value here causes illegal behavior
3793// :121:17: note: when computing vector element at index '0'
3792// :121:17: note: when computing vector element at index '1'
37943793// :121:17: error: use of undefined value here causes illegal behavior
3795// :121:17: note: when computing vector element at index '0'
3794// :121:17: note: when computing vector element at index '1'
37963795// :121:17: error: use of undefined value here causes illegal behavior
3796// :121:17: note: when computing vector element at index '1'
37973797// :121:17: error: use of undefined value here causes illegal behavior
3798// :121:17: note: when computing vector element at index '0'
3798// :121:17: note: when computing vector element at index '1'
37993799// :121:17: error: use of undefined value here causes illegal behavior
3800// :121:17: note: when computing vector element at index '0'
3800// :121:17: note: when computing vector element at index '1'
38013801// :121:17: error: use of undefined value here causes illegal behavior
3802// :121:17: note: when computing vector element at index '0'
3802// :121:17: note: when computing vector element at index '1'
38033803// :121:17: error: use of undefined value here causes illegal behavior
38043804// :121:17: note: when computing vector element at index '1'
38053805// :121:17: error: use of undefined value here causes illegal behavior
3806// :121:17: note: when computing vector element at index '0'
3806// :121:17: note: when computing vector element at index '1'
38073807// :121:17: error: use of undefined value here causes illegal behavior
3808// :121:17: note: when computing vector element at index '0'
3808// :121:17: note: when computing vector element at index '1'
38093809// :121:17: error: use of undefined value here causes illegal behavior
3810// :121:17: note: when computing vector element at index '0'
3810// :121:17: note: when computing vector element at index '1'
38113811// :121:21: error: use of undefined value here causes illegal behavior
38123812// :121:21: error: use of undefined value here causes illegal behavior
3813// :121:21: note: when computing vector element at index '0'
38143813// :121:21: error: use of undefined value here causes illegal behavior
3815// :121:21: note: when computing vector element at index '0'
38163814// :121:21: error: use of undefined value here causes illegal behavior
3817// :121:21: note: when computing vector element at index '1'
38183815// :121:21: error: use of undefined value here causes illegal behavior
3819// :121:21: note: when computing vector element at index '0'
38203816// :121:21: error: use of undefined value here causes illegal behavior
3821// :121:21: note: when computing vector element at index '0'
38223817// :121:21: error: use of undefined value here causes illegal behavior
38233818// :121:21: error: use of undefined value here causes illegal behavior
3824// :121:21: note: when computing vector element at index '0'
38253819// :121:21: error: use of undefined value here causes illegal behavior
3826// :121:21: note: when computing vector element at index '0'
38273820// :121:21: error: use of undefined value here causes illegal behavior
3828// :121:21: note: when computing vector element at index '1'
38293821// :121:21: error: use of undefined value here causes illegal behavior
3830// :121:21: note: when computing vector element at index '0'
38313822// :121:21: error: use of undefined value here causes illegal behavior
38323823// :121:21: note: when computing vector element at index '0'
38333824// :121:21: error: use of undefined value here causes illegal behavior
3834// :121:21: error: use of undefined value here causes illegal behavior
38353825// :121:21: note: when computing vector element at index '0'
38363826// :121:21: error: use of undefined value here causes illegal behavior
38373827// :121:21: note: when computing vector element at index '0'
38383828// :121:21: error: use of undefined value here causes illegal behavior
3839// :121:21: note: when computing vector element at index '1'
3840// :121:21: error: use of undefined value here causes illegal behavior
38413829// :121:21: note: when computing vector element at index '0'
38423830// :121:21: error: use of undefined value here causes illegal behavior
38433831// :121:21: note: when computing vector element at index '0'
38443832// :121:21: error: use of undefined value here causes illegal behavior
3833// :121:21: note: when computing vector element at index '0'
38453834// :121:21: error: use of undefined value here causes illegal behavior
38463835// :121:21: note: when computing vector element at index '0'
38473836// :121:21: error: use of undefined value here causes illegal behavior
38483837// :121:21: note: when computing vector element at index '0'
38493838// :121:21: error: use of undefined value here causes illegal behavior
3850// :121:21: note: when computing vector element at index '1'
3839// :121:21: note: when computing vector element at index '0'
38513840// :121:21: error: use of undefined value here causes illegal behavior
38523841// :121:21: note: when computing vector element at index '0'
38533842// :121:21: error: use of undefined value here causes illegal behavior
38543843// :121:21: note: when computing vector element at index '0'
38553844// :121:21: error: use of undefined value here causes illegal behavior
3845// :121:21: note: when computing vector element at index '0'
38563846// :121:21: error: use of undefined value here causes illegal behavior
38573847// :121:21: note: when computing vector element at index '0'
38583848// :121:21: error: use of undefined value here causes illegal behavior
38593849// :121:21: note: when computing vector element at index '0'
38603850// :121:21: error: use of undefined value here causes illegal behavior
3861// :121:21: note: when computing vector element at index '1'
3851// :121:21: note: when computing vector element at index '0'
38623852// :121:21: error: use of undefined value here causes illegal behavior
38633853// :121:21: note: when computing vector element at index '0'
38643854// :121:21: error: use of undefined value here causes illegal behavior
38653855// :121:21: note: when computing vector element at index '0'
38663856// :121:21: error: use of undefined value here causes illegal behavior
3857// :121:21: note: when computing vector element at index '0'
38673858// :121:21: error: use of undefined value here causes illegal behavior
38683859// :121:21: note: when computing vector element at index '0'
38693860// :121:21: error: use of undefined value here causes illegal behavior
38703861// :121:21: note: when computing vector element at index '0'
38713862// :121:21: error: use of undefined value here causes illegal behavior
3872// :121:21: note: when computing vector element at index '1'
3863// :121:21: note: when computing vector element at index '0'
38733864// :121:21: error: use of undefined value here causes illegal behavior
38743865// :121:21: note: when computing vector element at index '0'
38753866// :121:21: error: use of undefined value here causes illegal behavior
38763867// :121:21: note: when computing vector element at index '0'
38773868// :121:21: error: use of undefined value here causes illegal behavior
3869// :121:21: note: when computing vector element at index '0'
38783870// :121:21: error: use of undefined value here causes illegal behavior
38793871// :121:21: note: when computing vector element at index '0'
38803872// :121:21: error: use of undefined value here causes illegal behavior
38813873// :121:21: note: when computing vector element at index '0'
38823874// :121:21: error: use of undefined value here causes illegal behavior
3883// :121:21: note: when computing vector element at index '1'
3875// :121:21: note: when computing vector element at index '0'
38843876// :121:21: error: use of undefined value here causes illegal behavior
38853877// :121:21: note: when computing vector element at index '0'
38863878// :121:21: error: use of undefined value here causes illegal behavior
38873879// :121:21: note: when computing vector element at index '0'
38883880// :121:21: error: use of undefined value here causes illegal behavior
3881// :121:21: note: when computing vector element at index '0'
38893882// :121:21: error: use of undefined value here causes illegal behavior
38903883// :121:21: note: when computing vector element at index '0'
38913884// :121:21: error: use of undefined value here causes illegal behavior
38923885// :121:21: note: when computing vector element at index '0'
38933886// :121:21: error: use of undefined value here causes illegal behavior
3894// :121:21: note: when computing vector element at index '1'
3887// :121:21: note: when computing vector element at index '0'
38953888// :121:21: error: use of undefined value here causes illegal behavior
38963889// :121:21: note: when computing vector element at index '0'
38973890// :121:21: error: use of undefined value here causes illegal behavior
38983891// :121:21: note: when computing vector element at index '0'
38993892// :121:21: error: use of undefined value here causes illegal behavior
3893// :121:21: note: when computing vector element at index '0'
39003894// :121:21: error: use of undefined value here causes illegal behavior
39013895// :121:21: note: when computing vector element at index '0'
39023896// :121:21: error: use of undefined value here causes illegal behavior
39033897// :121:21: note: when computing vector element at index '0'
39043898// :121:21: error: use of undefined value here causes illegal behavior
3905// :121:21: note: when computing vector element at index '1'
3899// :121:21: note: when computing vector element at index '0'
39063900// :121:21: error: use of undefined value here causes illegal behavior
39073901// :121:21: note: when computing vector element at index '0'
39083902// :121:21: error: use of undefined value here causes illegal behavior
39093903// :121:21: note: when computing vector element at index '0'
39103904// :121:21: error: use of undefined value here causes illegal behavior
3905// :121:21: note: when computing vector element at index '0'
39113906// :121:21: error: use of undefined value here causes illegal behavior
39123907// :121:21: note: when computing vector element at index '0'
39133908// :121:21: error: use of undefined value here causes illegal behavior
......@@ -3915,44 +3910,42 @@ const std = @import("std");
39153910// :121:21: error: use of undefined value here causes illegal behavior
39163911// :121:21: note: when computing vector element at index '1'
39173912// :121:21: error: use of undefined value here causes illegal behavior
3918// :121:21: note: when computing vector element at index '0'
3913// :121:21: note: when computing vector element at index '1'
39193914// :121:21: error: use of undefined value here causes illegal behavior
3920// :121:21: note: when computing vector element at index '0'
3915// :121:21: note: when computing vector element at index '1'
39213916// :121:21: error: use of undefined value here causes illegal behavior
3917// :121:21: note: when computing vector element at index '1'
39223918// :121:21: error: use of undefined value here causes illegal behavior
3923// :121:21: note: when computing vector element at index '0'
3919// :121:21: note: when computing vector element at index '1'
39243920// :121:21: error: use of undefined value here causes illegal behavior
3925// :121:21: note: when computing vector element at index '0'
3921// :121:21: note: when computing vector element at index '1'
39263922// :121:21: error: use of undefined value here causes illegal behavior
39273923// :121:21: note: when computing vector element at index '1'
39283924// :121:21: error: use of undefined value here causes illegal behavior
3929// :121:21: note: when computing vector element at index '0'
3925// :121:21: note: when computing vector element at index '1'
39303926// :121:21: error: use of undefined value here causes illegal behavior
3931// :121:21: note: when computing vector element at index '0'
3927// :121:21: note: when computing vector element at index '1'
3928// :121:21: error: use of undefined value here causes illegal behavior
3929// :121:21: note: when computing vector element at index '1'
3930// :121:21: error: use of undefined value here causes illegal behavior
3931// :121:21: note: when computing vector element at index '1'
3932// :125:27: error: use of undefined value here causes illegal behavior
39323933// :125:27: error: use of undefined value here causes illegal behavior
39333934// :125:27: error: use of undefined value here causes illegal behavior
3934// :125:27: note: when computing vector element at index '0'
39353935// :125:27: error: use of undefined value here causes illegal behavior
3936// :125:27: note: when computing vector element at index '0'
39373936// :125:27: error: use of undefined value here causes illegal behavior
3938// :125:27: note: when computing vector element at index '0'
39393937// :125:27: error: use of undefined value here causes illegal behavior
3940// :125:27: note: when computing vector element at index '1'
39413938// :125:27: error: use of undefined value here causes illegal behavior
3942// :125:27: note: when computing vector element at index '0'
39433939// :125:27: error: use of undefined value here causes illegal behavior
3944// :125:27: note: when computing vector element at index '0'
39453940// :125:27: error: use of undefined value here causes illegal behavior
3946// :125:27: note: when computing vector element at index '0'
39473941// :125:27: error: use of undefined value here causes illegal behavior
39483942// :125:27: error: use of undefined value here causes illegal behavior
3949// :125:27: note: when computing vector element at index '0'
39503943// :125:27: error: use of undefined value here causes illegal behavior
39513944// :125:27: note: when computing vector element at index '0'
39523945// :125:27: error: use of undefined value here causes illegal behavior
39533946// :125:27: note: when computing vector element at index '0'
39543947// :125:27: error: use of undefined value here causes illegal behavior
3955// :125:27: note: when computing vector element at index '1'
3948// :125:27: note: when computing vector element at index '0'
39563949// :125:27: error: use of undefined value here causes illegal behavior
39573950// :125:27: note: when computing vector element at index '0'
39583951// :125:27: error: use of undefined value here causes illegal behavior
......@@ -3960,6 +3953,7 @@ const std = @import("std");
39603953// :125:27: error: use of undefined value here causes illegal behavior
39613954// :125:27: note: when computing vector element at index '0'
39623955// :125:27: error: use of undefined value here causes illegal behavior
3956// :125:27: note: when computing vector element at index '0'
39633957// :125:27: error: use of undefined value here causes illegal behavior
39643958// :125:27: note: when computing vector element at index '0'
39653959// :125:27: error: use of undefined value here causes illegal behavior
......@@ -3967,7 +3961,7 @@ const std = @import("std");
39673961// :125:27: error: use of undefined value here causes illegal behavior
39683962// :125:27: note: when computing vector element at index '0'
39693963// :125:27: error: use of undefined value here causes illegal behavior
3970// :125:27: note: when computing vector element at index '1'
3964// :125:27: note: when computing vector element at index '0'
39713965// :125:27: error: use of undefined value here causes illegal behavior
39723966// :125:27: note: when computing vector element at index '0'
39733967// :125:27: error: use of undefined value here causes illegal behavior
......@@ -3975,6 +3969,7 @@ const std = @import("std");
39753969// :125:27: error: use of undefined value here causes illegal behavior
39763970// :125:27: note: when computing vector element at index '0'
39773971// :125:27: error: use of undefined value here causes illegal behavior
3972// :125:27: note: when computing vector element at index '0'
39783973// :125:27: error: use of undefined value here causes illegal behavior
39793974// :125:27: note: when computing vector element at index '0'
39803975// :125:27: error: use of undefined value here causes illegal behavior
......@@ -3982,7 +3977,7 @@ const std = @import("std");
39823977// :125:27: error: use of undefined value here causes illegal behavior
39833978// :125:27: note: when computing vector element at index '0'
39843979// :125:27: error: use of undefined value here causes illegal behavior
3985// :125:27: note: when computing vector element at index '1'
3980// :125:27: note: when computing vector element at index '0'
39863981// :125:27: error: use of undefined value here causes illegal behavior
39873982// :125:27: note: when computing vector element at index '0'
39883983// :125:27: error: use of undefined value here causes illegal behavior
......@@ -3990,6 +3985,7 @@ const std = @import("std");
39903985// :125:27: error: use of undefined value here causes illegal behavior
39913986// :125:27: note: when computing vector element at index '0'
39923987// :125:27: error: use of undefined value here causes illegal behavior
3988// :125:27: note: when computing vector element at index '0'
39933989// :125:27: error: use of undefined value here causes illegal behavior
39943990// :125:27: note: when computing vector element at index '0'
39953991// :125:27: error: use of undefined value here causes illegal behavior
......@@ -3997,7 +3993,7 @@ const std = @import("std");
39973993// :125:27: error: use of undefined value here causes illegal behavior
39983994// :125:27: note: when computing vector element at index '0'
39993995// :125:27: error: use of undefined value here causes illegal behavior
4000// :125:27: note: when computing vector element at index '1'
3996// :125:27: note: when computing vector element at index '0'
40013997// :125:27: error: use of undefined value here causes illegal behavior
40023998// :125:27: note: when computing vector element at index '0'
40033999// :125:27: error: use of undefined value here causes illegal behavior
......@@ -4005,6 +4001,7 @@ const std = @import("std");
40054001// :125:27: error: use of undefined value here causes illegal behavior
40064002// :125:27: note: when computing vector element at index '0'
40074003// :125:27: error: use of undefined value here causes illegal behavior
4004// :125:27: note: when computing vector element at index '0'
40084005// :125:27: error: use of undefined value here causes illegal behavior
40094006// :125:27: note: when computing vector element at index '0'
40104007// :125:27: error: use of undefined value here causes illegal behavior
......@@ -4012,7 +4009,7 @@ const std = @import("std");
40124009// :125:27: error: use of undefined value here causes illegal behavior
40134010// :125:27: note: when computing vector element at index '0'
40144011// :125:27: error: use of undefined value here causes illegal behavior
4015// :125:27: note: when computing vector element at index '1'
4012// :125:27: note: when computing vector element at index '0'
40164013// :125:27: error: use of undefined value here causes illegal behavior
40174014// :125:27: note: when computing vector element at index '0'
40184015// :125:27: error: use of undefined value here causes illegal behavior
......@@ -4020,6 +4017,7 @@ const std = @import("std");
40204017// :125:27: error: use of undefined value here causes illegal behavior
40214018// :125:27: note: when computing vector element at index '0'
40224019// :125:27: error: use of undefined value here causes illegal behavior
4020// :125:27: note: when computing vector element at index '0'
40234021// :125:27: error: use of undefined value here causes illegal behavior
40244022// :125:27: note: when computing vector element at index '0'
40254023// :125:27: error: use of undefined value here causes illegal behavior
......@@ -4027,7 +4025,7 @@ const std = @import("std");
40274025// :125:27: error: use of undefined value here causes illegal behavior
40284026// :125:27: note: when computing vector element at index '0'
40294027// :125:27: error: use of undefined value here causes illegal behavior
4030// :125:27: note: when computing vector element at index '1'
4028// :125:27: note: when computing vector element at index '0'
40314029// :125:27: error: use of undefined value here causes illegal behavior
40324030// :125:27: note: when computing vector element at index '0'
40334031// :125:27: error: use of undefined value here causes illegal behavior
......@@ -4035,6 +4033,7 @@ const std = @import("std");
40354033// :125:27: error: use of undefined value here causes illegal behavior
40364034// :125:27: note: when computing vector element at index '0'
40374035// :125:27: error: use of undefined value here causes illegal behavior
4036// :125:27: note: when computing vector element at index '0'
40384037// :125:27: error: use of undefined value here causes illegal behavior
40394038// :125:27: note: when computing vector element at index '0'
40404039// :125:27: error: use of undefined value here causes illegal behavior
......@@ -4042,7 +4041,7 @@ const std = @import("std");
40424041// :125:27: error: use of undefined value here causes illegal behavior
40434042// :125:27: note: when computing vector element at index '0'
40444043// :125:27: error: use of undefined value here causes illegal behavior
4045// :125:27: note: when computing vector element at index '1'
4044// :125:27: note: when computing vector element at index '0'
40464045// :125:27: error: use of undefined value here causes illegal behavior
40474046// :125:27: note: when computing vector element at index '0'
40484047// :125:27: error: use of undefined value here causes illegal behavior
......@@ -4050,6 +4049,7 @@ const std = @import("std");
40504049// :125:27: error: use of undefined value here causes illegal behavior
40514050// :125:27: note: when computing vector element at index '0'
40524051// :125:27: error: use of undefined value here causes illegal behavior
4052// :125:27: note: when computing vector element at index '0'
40534053// :125:27: error: use of undefined value here causes illegal behavior
40544054// :125:27: note: when computing vector element at index '0'
40554055// :125:27: error: use of undefined value here causes illegal behavior
......@@ -4057,7 +4057,7 @@ const std = @import("std");
40574057// :125:27: error: use of undefined value here causes illegal behavior
40584058// :125:27: note: when computing vector element at index '0'
40594059// :125:27: error: use of undefined value here causes illegal behavior
4060// :125:27: note: when computing vector element at index '1'
4060// :125:27: note: when computing vector element at index '0'
40614061// :125:27: error: use of undefined value here causes illegal behavior
40624062// :125:27: note: when computing vector element at index '0'
40634063// :125:27: error: use of undefined value here causes illegal behavior
......@@ -4065,6 +4065,7 @@ const std = @import("std");
40654065// :125:27: error: use of undefined value here causes illegal behavior
40664066// :125:27: note: when computing vector element at index '0'
40674067// :125:27: error: use of undefined value here causes illegal behavior
4068// :125:27: note: when computing vector element at index '0'
40684069// :125:27: error: use of undefined value here causes illegal behavior
40694070// :125:27: note: when computing vector element at index '0'
40704071// :125:27: error: use of undefined value here causes illegal behavior
......@@ -4074,126 +4075,120 @@ const std = @import("std");
40744075// :125:27: error: use of undefined value here causes illegal behavior
40754076// :125:27: note: when computing vector element at index '1'
40764077// :125:27: error: use of undefined value here causes illegal behavior
4077// :125:27: note: when computing vector element at index '0'
4078// :125:27: error: use of undefined value here causes illegal behavior
4079// :125:27: note: when computing vector element at index '0'
4078// :125:27: note: when computing vector element at index '1'
40804079// :125:27: error: use of undefined value here causes illegal behavior
4081// :125:27: note: when computing vector element at index '0'
4080// :125:27: note: when computing vector element at index '1'
40824081// :125:27: error: use of undefined value here causes illegal behavior
4082// :125:27: note: when computing vector element at index '1'
40834083// :125:27: error: use of undefined value here causes illegal behavior
4084// :125:27: note: when computing vector element at index '0'
4084// :125:27: note: when computing vector element at index '1'
40854085// :125:27: error: use of undefined value here causes illegal behavior
4086// :125:27: note: when computing vector element at index '0'
4086// :125:27: note: when computing vector element at index '1'
40874087// :125:27: error: use of undefined value here causes illegal behavior
4088// :125:27: note: when computing vector element at index '0'
4088// :125:27: note: when computing vector element at index '1'
40894089// :125:27: error: use of undefined value here causes illegal behavior
40904090// :125:27: note: when computing vector element at index '1'
40914091// :125:27: error: use of undefined value here causes illegal behavior
4092// :125:27: note: when computing vector element at index '0'
4092// :125:27: note: when computing vector element at index '1'
40934093// :125:27: error: use of undefined value here causes illegal behavior
4094// :125:27: note: when computing vector element at index '0'
4094// :125:27: note: when computing vector element at index '1'
40954095// :125:27: error: use of undefined value here causes illegal behavior
4096// :125:27: note: when computing vector element at index '0'
4096// :125:27: note: when computing vector element at index '1'
40974097// :125:30: error: use of undefined value here causes illegal behavior
40984098// :125:30: error: use of undefined value here causes illegal behavior
4099// :125:30: note: when computing vector element at index '0'
41004099// :125:30: error: use of undefined value here causes illegal behavior
4101// :125:30: note: when computing vector element at index '0'
41024100// :125:30: error: use of undefined value here causes illegal behavior
4103// :125:30: note: when computing vector element at index '1'
41044101// :125:30: error: use of undefined value here causes illegal behavior
4105// :125:30: note: when computing vector element at index '0'
41064102// :125:30: error: use of undefined value here causes illegal behavior
4107// :125:30: note: when computing vector element at index '0'
41084103// :125:30: error: use of undefined value here causes illegal behavior
41094104// :125:30: error: use of undefined value here causes illegal behavior
4110// :125:30: note: when computing vector element at index '0'
41114105// :125:30: error: use of undefined value here causes illegal behavior
4112// :125:30: note: when computing vector element at index '0'
41134106// :125:30: error: use of undefined value here causes illegal behavior
4114// :125:30: note: when computing vector element at index '1'
41154107// :125:30: error: use of undefined value here causes illegal behavior
4116// :125:30: note: when computing vector element at index '0'
41174108// :125:30: error: use of undefined value here causes illegal behavior
41184109// :125:30: note: when computing vector element at index '0'
41194110// :125:30: error: use of undefined value here causes illegal behavior
4120// :125:30: error: use of undefined value here causes illegal behavior
41214111// :125:30: note: when computing vector element at index '0'
41224112// :125:30: error: use of undefined value here causes illegal behavior
41234113// :125:30: note: when computing vector element at index '0'
41244114// :125:30: error: use of undefined value here causes illegal behavior
4125// :125:30: note: when computing vector element at index '1'
4126// :125:30: error: use of undefined value here causes illegal behavior
41274115// :125:30: note: when computing vector element at index '0'
41284116// :125:30: error: use of undefined value here causes illegal behavior
41294117// :125:30: note: when computing vector element at index '0'
41304118// :125:30: error: use of undefined value here causes illegal behavior
4119// :125:30: note: when computing vector element at index '0'
41314120// :125:30: error: use of undefined value here causes illegal behavior
41324121// :125:30: note: when computing vector element at index '0'
41334122// :125:30: error: use of undefined value here causes illegal behavior
41344123// :125:30: note: when computing vector element at index '0'
41354124// :125:30: error: use of undefined value here causes illegal behavior
4136// :125:30: note: when computing vector element at index '1'
4125// :125:30: note: when computing vector element at index '0'
41374126// :125:30: error: use of undefined value here causes illegal behavior
41384127// :125:30: note: when computing vector element at index '0'
41394128// :125:30: error: use of undefined value here causes illegal behavior
41404129// :125:30: note: when computing vector element at index '0'
41414130// :125:30: error: use of undefined value here causes illegal behavior
4131// :125:30: note: when computing vector element at index '0'
41424132// :125:30: error: use of undefined value here causes illegal behavior
41434133// :125:30: note: when computing vector element at index '0'
41444134// :125:30: error: use of undefined value here causes illegal behavior
41454135// :125:30: note: when computing vector element at index '0'
41464136// :125:30: error: use of undefined value here causes illegal behavior
4147// :125:30: note: when computing vector element at index '1'
4137// :125:30: note: when computing vector element at index '0'
41484138// :125:30: error: use of undefined value here causes illegal behavior
41494139// :125:30: note: when computing vector element at index '0'
41504140// :125:30: error: use of undefined value here causes illegal behavior
41514141// :125:30: note: when computing vector element at index '0'
41524142// :125:30: error: use of undefined value here causes illegal behavior
4143// :125:30: note: when computing vector element at index '0'
41534144// :125:30: error: use of undefined value here causes illegal behavior
41544145// :125:30: note: when computing vector element at index '0'
41554146// :125:30: error: use of undefined value here causes illegal behavior
41564147// :125:30: note: when computing vector element at index '0'
41574148// :125:30: error: use of undefined value here causes illegal behavior
4158// :125:30: note: when computing vector element at index '1'
4149// :125:30: note: when computing vector element at index '0'
41594150// :125:30: error: use of undefined value here causes illegal behavior
41604151// :125:30: note: when computing vector element at index '0'
41614152// :125:30: error: use of undefined value here causes illegal behavior
41624153// :125:30: note: when computing vector element at index '0'
41634154// :125:30: error: use of undefined value here causes illegal behavior
4155// :125:30: note: when computing vector element at index '0'
41644156// :125:30: error: use of undefined value here causes illegal behavior
41654157// :125:30: note: when computing vector element at index '0'
41664158// :125:30: error: use of undefined value here causes illegal behavior
41674159// :125:30: note: when computing vector element at index '0'
41684160// :125:30: error: use of undefined value here causes illegal behavior
4169// :125:30: note: when computing vector element at index '1'
4161// :125:30: note: when computing vector element at index '0'
41704162// :125:30: error: use of undefined value here causes illegal behavior
41714163// :125:30: note: when computing vector element at index '0'
41724164// :125:30: error: use of undefined value here causes illegal behavior
41734165// :125:30: note: when computing vector element at index '0'
41744166// :125:30: error: use of undefined value here causes illegal behavior
4167// :125:30: note: when computing vector element at index '0'
41754168// :125:30: error: use of undefined value here causes illegal behavior
41764169// :125:30: note: when computing vector element at index '0'
41774170// :125:30: error: use of undefined value here causes illegal behavior
41784171// :125:30: note: when computing vector element at index '0'
41794172// :125:30: error: use of undefined value here causes illegal behavior
4180// :125:30: note: when computing vector element at index '1'
4173// :125:30: note: when computing vector element at index '0'
41814174// :125:30: error: use of undefined value here causes illegal behavior
41824175// :125:30: note: when computing vector element at index '0'
41834176// :125:30: error: use of undefined value here causes illegal behavior
41844177// :125:30: note: when computing vector element at index '0'
41854178// :125:30: error: use of undefined value here causes illegal behavior
4179// :125:30: note: when computing vector element at index '0'
41864180// :125:30: error: use of undefined value here causes illegal behavior
41874181// :125:30: note: when computing vector element at index '0'
41884182// :125:30: error: use of undefined value here causes illegal behavior
41894183// :125:30: note: when computing vector element at index '0'
41904184// :125:30: error: use of undefined value here causes illegal behavior
4191// :125:30: note: when computing vector element at index '1'
4185// :125:30: note: when computing vector element at index '0'
41924186// :125:30: error: use of undefined value here causes illegal behavior
41934187// :125:30: note: when computing vector element at index '0'
41944188// :125:30: error: use of undefined value here causes illegal behavior
41954189// :125:30: note: when computing vector element at index '0'
41964190// :125:30: error: use of undefined value here causes illegal behavior
4191// :125:30: note: when computing vector element at index '0'
41974192// :125:30: error: use of undefined value here causes illegal behavior
41984193// :125:30: note: when computing vector element at index '0'
41994194// :125:30: error: use of undefined value here causes illegal behavior
......@@ -4201,44 +4196,42 @@ const std = @import("std");
42014196// :125:30: error: use of undefined value here causes illegal behavior
42024197// :125:30: note: when computing vector element at index '1'
42034198// :125:30: error: use of undefined value here causes illegal behavior
4204// :125:30: note: when computing vector element at index '0'
4199// :125:30: note: when computing vector element at index '1'
42054200// :125:30: error: use of undefined value here causes illegal behavior
4206// :125:30: note: when computing vector element at index '0'
4201// :125:30: note: when computing vector element at index '1'
42074202// :125:30: error: use of undefined value here causes illegal behavior
4203// :125:30: note: when computing vector element at index '1'
42084204// :125:30: error: use of undefined value here causes illegal behavior
4209// :125:30: note: when computing vector element at index '0'
4205// :125:30: note: when computing vector element at index '1'
42104206// :125:30: error: use of undefined value here causes illegal behavior
4211// :125:30: note: when computing vector element at index '0'
4207// :125:30: note: when computing vector element at index '1'
42124208// :125:30: error: use of undefined value here causes illegal behavior
42134209// :125:30: note: when computing vector element at index '1'
42144210// :125:30: error: use of undefined value here causes illegal behavior
4215// :125:30: note: when computing vector element at index '0'
4211// :125:30: note: when computing vector element at index '1'
42164212// :125:30: error: use of undefined value here causes illegal behavior
4217// :125:30: note: when computing vector element at index '0'
4213// :125:30: note: when computing vector element at index '1'
4214// :125:30: error: use of undefined value here causes illegal behavior
4215// :125:30: note: when computing vector element at index '1'
4216// :125:30: error: use of undefined value here causes illegal behavior
4217// :125:30: note: when computing vector element at index '1'
4218// :129:27: error: use of undefined value here causes illegal behavior
42184219// :129:27: error: use of undefined value here causes illegal behavior
42194220// :129:27: error: use of undefined value here causes illegal behavior
4220// :129:27: note: when computing vector element at index '0'
42214221// :129:27: error: use of undefined value here causes illegal behavior
4222// :129:27: note: when computing vector element at index '0'
42234222// :129:27: error: use of undefined value here causes illegal behavior
4224// :129:27: note: when computing vector element at index '0'
42254223// :129:27: error: use of undefined value here causes illegal behavior
4226// :129:27: note: when computing vector element at index '1'
42274224// :129:27: error: use of undefined value here causes illegal behavior
4228// :129:27: note: when computing vector element at index '0'
42294225// :129:27: error: use of undefined value here causes illegal behavior
4230// :129:27: note: when computing vector element at index '0'
42314226// :129:27: error: use of undefined value here causes illegal behavior
4232// :129:27: note: when computing vector element at index '0'
42334227// :129:27: error: use of undefined value here causes illegal behavior
42344228// :129:27: error: use of undefined value here causes illegal behavior
4235// :129:27: note: when computing vector element at index '0'
42364229// :129:27: error: use of undefined value here causes illegal behavior
42374230// :129:27: note: when computing vector element at index '0'
42384231// :129:27: error: use of undefined value here causes illegal behavior
42394232// :129:27: note: when computing vector element at index '0'
42404233// :129:27: error: use of undefined value here causes illegal behavior
4241// :129:27: note: when computing vector element at index '1'
4234// :129:27: note: when computing vector element at index '0'
42424235// :129:27: error: use of undefined value here causes illegal behavior
42434236// :129:27: note: when computing vector element at index '0'
42444237// :129:27: error: use of undefined value here causes illegal behavior
......@@ -4246,6 +4239,7 @@ const std = @import("std");
42464239// :129:27: error: use of undefined value here causes illegal behavior
42474240// :129:27: note: when computing vector element at index '0'
42484241// :129:27: error: use of undefined value here causes illegal behavior
4242// :129:27: note: when computing vector element at index '0'
42494243// :129:27: error: use of undefined value here causes illegal behavior
42504244// :129:27: note: when computing vector element at index '0'
42514245// :129:27: error: use of undefined value here causes illegal behavior
......@@ -4253,7 +4247,7 @@ const std = @import("std");
42534247// :129:27: error: use of undefined value here causes illegal behavior
42544248// :129:27: note: when computing vector element at index '0'
42554249// :129:27: error: use of undefined value here causes illegal behavior
4256// :129:27: note: when computing vector element at index '1'
4250// :129:27: note: when computing vector element at index '0'
42574251// :129:27: error: use of undefined value here causes illegal behavior
42584252// :129:27: note: when computing vector element at index '0'
42594253// :129:27: error: use of undefined value here causes illegal behavior
......@@ -4261,6 +4255,7 @@ const std = @import("std");
42614255// :129:27: error: use of undefined value here causes illegal behavior
42624256// :129:27: note: when computing vector element at index '0'
42634257// :129:27: error: use of undefined value here causes illegal behavior
4258// :129:27: note: when computing vector element at index '0'
42644259// :129:27: error: use of undefined value here causes illegal behavior
42654260// :129:27: note: when computing vector element at index '0'
42664261// :129:27: error: use of undefined value here causes illegal behavior
......@@ -4268,7 +4263,7 @@ const std = @import("std");
42684263// :129:27: error: use of undefined value here causes illegal behavior
42694264// :129:27: note: when computing vector element at index '0'
42704265// :129:27: error: use of undefined value here causes illegal behavior
4271// :129:27: note: when computing vector element at index '1'
4266// :129:27: note: when computing vector element at index '0'
42724267// :129:27: error: use of undefined value here causes illegal behavior
42734268// :129:27: note: when computing vector element at index '0'
42744269// :129:27: error: use of undefined value here causes illegal behavior
......@@ -4276,6 +4271,7 @@ const std = @import("std");
42764271// :129:27: error: use of undefined value here causes illegal behavior
42774272// :129:27: note: when computing vector element at index '0'
42784273// :129:27: error: use of undefined value here causes illegal behavior
4274// :129:27: note: when computing vector element at index '0'
42794275// :129:27: error: use of undefined value here causes illegal behavior
42804276// :129:27: note: when computing vector element at index '0'
42814277// :129:27: error: use of undefined value here causes illegal behavior
......@@ -4283,7 +4279,7 @@ const std = @import("std");
42834279// :129:27: error: use of undefined value here causes illegal behavior
42844280// :129:27: note: when computing vector element at index '0'
42854281// :129:27: error: use of undefined value here causes illegal behavior
4286// :129:27: note: when computing vector element at index '1'
4282// :129:27: note: when computing vector element at index '0'
42874283// :129:27: error: use of undefined value here causes illegal behavior
42884284// :129:27: note: when computing vector element at index '0'
42894285// :129:27: error: use of undefined value here causes illegal behavior
......@@ -4291,6 +4287,7 @@ const std = @import("std");
42914287// :129:27: error: use of undefined value here causes illegal behavior
42924288// :129:27: note: when computing vector element at index '0'
42934289// :129:27: error: use of undefined value here causes illegal behavior
4290// :129:27: note: when computing vector element at index '0'
42944291// :129:27: error: use of undefined value here causes illegal behavior
42954292// :129:27: note: when computing vector element at index '0'
42964293// :129:27: error: use of undefined value here causes illegal behavior
......@@ -4298,7 +4295,7 @@ const std = @import("std");
42984295// :129:27: error: use of undefined value here causes illegal behavior
42994296// :129:27: note: when computing vector element at index '0'
43004297// :129:27: error: use of undefined value here causes illegal behavior
4301// :129:27: note: when computing vector element at index '1'
4298// :129:27: note: when computing vector element at index '0'
43024299// :129:27: error: use of undefined value here causes illegal behavior
43034300// :129:27: note: when computing vector element at index '0'
43044301// :129:27: error: use of undefined value here causes illegal behavior
......@@ -4306,6 +4303,7 @@ const std = @import("std");
43064303// :129:27: error: use of undefined value here causes illegal behavior
43074304// :129:27: note: when computing vector element at index '0'
43084305// :129:27: error: use of undefined value here causes illegal behavior
4306// :129:27: note: when computing vector element at index '0'
43094307// :129:27: error: use of undefined value here causes illegal behavior
43104308// :129:27: note: when computing vector element at index '0'
43114309// :129:27: error: use of undefined value here causes illegal behavior
......@@ -4313,7 +4311,7 @@ const std = @import("std");
43134311// :129:27: error: use of undefined value here causes illegal behavior
43144312// :129:27: note: when computing vector element at index '0'
43154313// :129:27: error: use of undefined value here causes illegal behavior
4316// :129:27: note: when computing vector element at index '1'
4314// :129:27: note: when computing vector element at index '0'
43174315// :129:27: error: use of undefined value here causes illegal behavior
43184316// :129:27: note: when computing vector element at index '0'
43194317// :129:27: error: use of undefined value here causes illegal behavior
......@@ -4321,6 +4319,7 @@ const std = @import("std");
43214319// :129:27: error: use of undefined value here causes illegal behavior
43224320// :129:27: note: when computing vector element at index '0'
43234321// :129:27: error: use of undefined value here causes illegal behavior
4322// :129:27: note: when computing vector element at index '0'
43244323// :129:27: error: use of undefined value here causes illegal behavior
43254324// :129:27: note: when computing vector element at index '0'
43264325// :129:27: error: use of undefined value here causes illegal behavior
......@@ -4328,7 +4327,7 @@ const std = @import("std");
43284327// :129:27: error: use of undefined value here causes illegal behavior
43294328// :129:27: note: when computing vector element at index '0'
43304329// :129:27: error: use of undefined value here causes illegal behavior
4331// :129:27: note: when computing vector element at index '1'
4330// :129:27: note: when computing vector element at index '0'
43324331// :129:27: error: use of undefined value here causes illegal behavior
43334332// :129:27: note: when computing vector element at index '0'
43344333// :129:27: error: use of undefined value here causes illegal behavior
......@@ -4336,6 +4335,7 @@ const std = @import("std");
43364335// :129:27: error: use of undefined value here causes illegal behavior
43374336// :129:27: note: when computing vector element at index '0'
43384337// :129:27: error: use of undefined value here causes illegal behavior
4338// :129:27: note: when computing vector element at index '0'
43394339// :129:27: error: use of undefined value here causes illegal behavior
43404340// :129:27: note: when computing vector element at index '0'
43414341// :129:27: error: use of undefined value here causes illegal behavior
......@@ -4343,7 +4343,7 @@ const std = @import("std");
43434343// :129:27: error: use of undefined value here causes illegal behavior
43444344// :129:27: note: when computing vector element at index '0'
43454345// :129:27: error: use of undefined value here causes illegal behavior
4346// :129:27: note: when computing vector element at index '1'
4346// :129:27: note: when computing vector element at index '0'
43474347// :129:27: error: use of undefined value here causes illegal behavior
43484348// :129:27: note: when computing vector element at index '0'
43494349// :129:27: error: use of undefined value here causes illegal behavior
......@@ -4351,6 +4351,7 @@ const std = @import("std");
43514351// :129:27: error: use of undefined value here causes illegal behavior
43524352// :129:27: note: when computing vector element at index '0'
43534353// :129:27: error: use of undefined value here causes illegal behavior
4354// :129:27: note: when computing vector element at index '0'
43544355// :129:27: error: use of undefined value here causes illegal behavior
43554356// :129:27: note: when computing vector element at index '0'
43564357// :129:27: error: use of undefined value here causes illegal behavior
......@@ -4360,126 +4361,120 @@ const std = @import("std");
43604361// :129:27: error: use of undefined value here causes illegal behavior
43614362// :129:27: note: when computing vector element at index '1'
43624363// :129:27: error: use of undefined value here causes illegal behavior
4363// :129:27: note: when computing vector element at index '0'
4364// :129:27: error: use of undefined value here causes illegal behavior
4365// :129:27: note: when computing vector element at index '0'
4364// :129:27: note: when computing vector element at index '1'
43664365// :129:27: error: use of undefined value here causes illegal behavior
4367// :129:27: note: when computing vector element at index '0'
4366// :129:27: note: when computing vector element at index '1'
43684367// :129:27: error: use of undefined value here causes illegal behavior
4368// :129:27: note: when computing vector element at index '1'
43694369// :129:27: error: use of undefined value here causes illegal behavior
4370// :129:27: note: when computing vector element at index '0'
4370// :129:27: note: when computing vector element at index '1'
43714371// :129:27: error: use of undefined value here causes illegal behavior
4372// :129:27: note: when computing vector element at index '0'
4372// :129:27: note: when computing vector element at index '1'
43734373// :129:27: error: use of undefined value here causes illegal behavior
4374// :129:27: note: when computing vector element at index '0'
4374// :129:27: note: when computing vector element at index '1'
43754375// :129:27: error: use of undefined value here causes illegal behavior
43764376// :129:27: note: when computing vector element at index '1'
43774377// :129:27: error: use of undefined value here causes illegal behavior
4378// :129:27: note: when computing vector element at index '0'
4378// :129:27: note: when computing vector element at index '1'
43794379// :129:27: error: use of undefined value here causes illegal behavior
4380// :129:27: note: when computing vector element at index '0'
4380// :129:27: note: when computing vector element at index '1'
43814381// :129:27: error: use of undefined value here causes illegal behavior
4382// :129:27: note: when computing vector element at index '0'
4382// :129:27: note: when computing vector element at index '1'
43834383// :129:30: error: use of undefined value here causes illegal behavior
43844384// :129:30: error: use of undefined value here causes illegal behavior
4385// :129:30: note: when computing vector element at index '0'
43864385// :129:30: error: use of undefined value here causes illegal behavior
4387// :129:30: note: when computing vector element at index '0'
43884386// :129:30: error: use of undefined value here causes illegal behavior
4389// :129:30: note: when computing vector element at index '1'
43904387// :129:30: error: use of undefined value here causes illegal behavior
4391// :129:30: note: when computing vector element at index '0'
43924388// :129:30: error: use of undefined value here causes illegal behavior
4393// :129:30: note: when computing vector element at index '0'
43944389// :129:30: error: use of undefined value here causes illegal behavior
43954390// :129:30: error: use of undefined value here causes illegal behavior
4396// :129:30: note: when computing vector element at index '0'
43974391// :129:30: error: use of undefined value here causes illegal behavior
4398// :129:30: note: when computing vector element at index '0'
43994392// :129:30: error: use of undefined value here causes illegal behavior
4400// :129:30: note: when computing vector element at index '1'
44014393// :129:30: error: use of undefined value here causes illegal behavior
4402// :129:30: note: when computing vector element at index '0'
44034394// :129:30: error: use of undefined value here causes illegal behavior
44044395// :129:30: note: when computing vector element at index '0'
44054396// :129:30: error: use of undefined value here causes illegal behavior
4406// :129:30: error: use of undefined value here causes illegal behavior
44074397// :129:30: note: when computing vector element at index '0'
44084398// :129:30: error: use of undefined value here causes illegal behavior
44094399// :129:30: note: when computing vector element at index '0'
44104400// :129:30: error: use of undefined value here causes illegal behavior
4411// :129:30: note: when computing vector element at index '1'
4412// :129:30: error: use of undefined value here causes illegal behavior
44134401// :129:30: note: when computing vector element at index '0'
44144402// :129:30: error: use of undefined value here causes illegal behavior
44154403// :129:30: note: when computing vector element at index '0'
44164404// :129:30: error: use of undefined value here causes illegal behavior
4405// :129:30: note: when computing vector element at index '0'
44174406// :129:30: error: use of undefined value here causes illegal behavior
44184407// :129:30: note: when computing vector element at index '0'
44194408// :129:30: error: use of undefined value here causes illegal behavior
44204409// :129:30: note: when computing vector element at index '0'
44214410// :129:30: error: use of undefined value here causes illegal behavior
4422// :129:30: note: when computing vector element at index '1'
4411// :129:30: note: when computing vector element at index '0'
44234412// :129:30: error: use of undefined value here causes illegal behavior
44244413// :129:30: note: when computing vector element at index '0'
44254414// :129:30: error: use of undefined value here causes illegal behavior
44264415// :129:30: note: when computing vector element at index '0'
44274416// :129:30: error: use of undefined value here causes illegal behavior
4417// :129:30: note: when computing vector element at index '0'
44284418// :129:30: error: use of undefined value here causes illegal behavior
44294419// :129:30: note: when computing vector element at index '0'
44304420// :129:30: error: use of undefined value here causes illegal behavior
44314421// :129:30: note: when computing vector element at index '0'
44324422// :129:30: error: use of undefined value here causes illegal behavior
4433// :129:30: note: when computing vector element at index '1'
4423// :129:30: note: when computing vector element at index '0'
44344424// :129:30: error: use of undefined value here causes illegal behavior
44354425// :129:30: note: when computing vector element at index '0'
44364426// :129:30: error: use of undefined value here causes illegal behavior
44374427// :129:30: note: when computing vector element at index '0'
44384428// :129:30: error: use of undefined value here causes illegal behavior
4429// :129:30: note: when computing vector element at index '0'
44394430// :129:30: error: use of undefined value here causes illegal behavior
44404431// :129:30: note: when computing vector element at index '0'
44414432// :129:30: error: use of undefined value here causes illegal behavior
44424433// :129:30: note: when computing vector element at index '0'
44434434// :129:30: error: use of undefined value here causes illegal behavior
4444// :129:30: note: when computing vector element at index '1'
4435// :129:30: note: when computing vector element at index '0'
44454436// :129:30: error: use of undefined value here causes illegal behavior
44464437// :129:30: note: when computing vector element at index '0'
44474438// :129:30: error: use of undefined value here causes illegal behavior
44484439// :129:30: note: when computing vector element at index '0'
44494440// :129:30: error: use of undefined value here causes illegal behavior
4441// :129:30: note: when computing vector element at index '0'
44504442// :129:30: error: use of undefined value here causes illegal behavior
44514443// :129:30: note: when computing vector element at index '0'
44524444// :129:30: error: use of undefined value here causes illegal behavior
44534445// :129:30: note: when computing vector element at index '0'
44544446// :129:30: error: use of undefined value here causes illegal behavior
4455// :129:30: note: when computing vector element at index '1'
4447// :129:30: note: when computing vector element at index '0'
44564448// :129:30: error: use of undefined value here causes illegal behavior
44574449// :129:30: note: when computing vector element at index '0'
44584450// :129:30: error: use of undefined value here causes illegal behavior
44594451// :129:30: note: when computing vector element at index '0'
44604452// :129:30: error: use of undefined value here causes illegal behavior
4453// :129:30: note: when computing vector element at index '0'
44614454// :129:30: error: use of undefined value here causes illegal behavior
44624455// :129:30: note: when computing vector element at index '0'
44634456// :129:30: error: use of undefined value here causes illegal behavior
44644457// :129:30: note: when computing vector element at index '0'
44654458// :129:30: error: use of undefined value here causes illegal behavior
4466// :129:30: note: when computing vector element at index '1'
4459// :129:30: note: when computing vector element at index '0'
44674460// :129:30: error: use of undefined value here causes illegal behavior
44684461// :129:30: note: when computing vector element at index '0'
44694462// :129:30: error: use of undefined value here causes illegal behavior
44704463// :129:30: note: when computing vector element at index '0'
44714464// :129:30: error: use of undefined value here causes illegal behavior
4465// :129:30: note: when computing vector element at index '0'
44724466// :129:30: error: use of undefined value here causes illegal behavior
44734467// :129:30: note: when computing vector element at index '0'
44744468// :129:30: error: use of undefined value here causes illegal behavior
44754469// :129:30: note: when computing vector element at index '0'
44764470// :129:30: error: use of undefined value here causes illegal behavior
4477// :129:30: note: when computing vector element at index '1'
4471// :129:30: note: when computing vector element at index '0'
44784472// :129:30: error: use of undefined value here causes illegal behavior
44794473// :129:30: note: when computing vector element at index '0'
44804474// :129:30: error: use of undefined value here causes illegal behavior
44814475// :129:30: note: when computing vector element at index '0'
44824476// :129:30: error: use of undefined value here causes illegal behavior
4477// :129:30: note: when computing vector element at index '0'
44834478// :129:30: error: use of undefined value here causes illegal behavior
44844479// :129:30: note: when computing vector element at index '0'
44854480// :129:30: error: use of undefined value here causes illegal behavior
......@@ -4487,44 +4482,42 @@ const std = @import("std");
44874482// :129:30: error: use of undefined value here causes illegal behavior
44884483// :129:30: note: when computing vector element at index '1'
44894484// :129:30: error: use of undefined value here causes illegal behavior
4490// :129:30: note: when computing vector element at index '0'
4485// :129:30: note: when computing vector element at index '1'
44914486// :129:30: error: use of undefined value here causes illegal behavior
4492// :129:30: note: when computing vector element at index '0'
4487// :129:30: note: when computing vector element at index '1'
4488// :129:30: error: use of undefined value here causes illegal behavior
4489// :129:30: note: when computing vector element at index '1'
44934490// :129:30: error: use of undefined value here causes illegal behavior
4491// :129:30: note: when computing vector element at index '1'
44944492// :129:30: error: use of undefined value here causes illegal behavior
4495// :129:30: note: when computing vector element at index '0'
4493// :129:30: note: when computing vector element at index '1'
44964494// :129:30: error: use of undefined value here causes illegal behavior
4497// :129:30: note: when computing vector element at index '0'
4495// :129:30: note: when computing vector element at index '1'
44984496// :129:30: error: use of undefined value here causes illegal behavior
44994497// :129:30: note: when computing vector element at index '1'
45004498// :129:30: error: use of undefined value here causes illegal behavior
4501// :129:30: note: when computing vector element at index '0'
4499// :129:30: note: when computing vector element at index '1'
45024500// :129:30: error: use of undefined value here causes illegal behavior
4503// :129:30: note: when computing vector element at index '0'
4501// :129:30: note: when computing vector element at index '1'
4502// :129:30: error: use of undefined value here causes illegal behavior
4503// :129:30: note: when computing vector element at index '1'
4504// :133:27: error: use of undefined value here causes illegal behavior
45044505// :133:27: error: use of undefined value here causes illegal behavior
45054506// :133:27: error: use of undefined value here causes illegal behavior
4506// :133:27: note: when computing vector element at index '0'
45074507// :133:27: error: use of undefined value here causes illegal behavior
4508// :133:27: note: when computing vector element at index '0'
45094508// :133:27: error: use of undefined value here causes illegal behavior
4510// :133:27: note: when computing vector element at index '0'
45114509// :133:27: error: use of undefined value here causes illegal behavior
4512// :133:27: note: when computing vector element at index '1'
45134510// :133:27: error: use of undefined value here causes illegal behavior
4514// :133:27: note: when computing vector element at index '0'
45154511// :133:27: error: use of undefined value here causes illegal behavior
4516// :133:27: note: when computing vector element at index '0'
45174512// :133:27: error: use of undefined value here causes illegal behavior
4518// :133:27: note: when computing vector element at index '0'
45194513// :133:27: error: use of undefined value here causes illegal behavior
45204514// :133:27: error: use of undefined value here causes illegal behavior
4521// :133:27: note: when computing vector element at index '0'
45224515// :133:27: error: use of undefined value here causes illegal behavior
45234516// :133:27: note: when computing vector element at index '0'
45244517// :133:27: error: use of undefined value here causes illegal behavior
45254518// :133:27: note: when computing vector element at index '0'
45264519// :133:27: error: use of undefined value here causes illegal behavior
4527// :133:27: note: when computing vector element at index '1'
4520// :133:27: note: when computing vector element at index '0'
45284521// :133:27: error: use of undefined value here causes illegal behavior
45294522// :133:27: note: when computing vector element at index '0'
45304523// :133:27: error: use of undefined value here causes illegal behavior
......@@ -4532,6 +4525,7 @@ const std = @import("std");
45324525// :133:27: error: use of undefined value here causes illegal behavior
45334526// :133:27: note: when computing vector element at index '0'
45344527// :133:27: error: use of undefined value here causes illegal behavior
4528// :133:27: note: when computing vector element at index '0'
45354529// :133:27: error: use of undefined value here causes illegal behavior
45364530// :133:27: note: when computing vector element at index '0'
45374531// :133:27: error: use of undefined value here causes illegal behavior
......@@ -4539,7 +4533,7 @@ const std = @import("std");
45394533// :133:27: error: use of undefined value here causes illegal behavior
45404534// :133:27: note: when computing vector element at index '0'
45414535// :133:27: error: use of undefined value here causes illegal behavior
4542// :133:27: note: when computing vector element at index '1'
4536// :133:27: note: when computing vector element at index '0'
45434537// :133:27: error: use of undefined value here causes illegal behavior
45444538// :133:27: note: when computing vector element at index '0'
45454539// :133:27: error: use of undefined value here causes illegal behavior
......@@ -4547,6 +4541,7 @@ const std = @import("std");
45474541// :133:27: error: use of undefined value here causes illegal behavior
45484542// :133:27: note: when computing vector element at index '0'
45494543// :133:27: error: use of undefined value here causes illegal behavior
4544// :133:27: note: when computing vector element at index '0'
45504545// :133:27: error: use of undefined value here causes illegal behavior
45514546// :133:27: note: when computing vector element at index '0'
45524547// :133:27: error: use of undefined value here causes illegal behavior
......@@ -4554,7 +4549,7 @@ const std = @import("std");
45544549// :133:27: error: use of undefined value here causes illegal behavior
45554550// :133:27: note: when computing vector element at index '0'
45564551// :133:27: error: use of undefined value here causes illegal behavior
4557// :133:27: note: when computing vector element at index '1'
4552// :133:27: note: when computing vector element at index '0'
45584553// :133:27: error: use of undefined value here causes illegal behavior
45594554// :133:27: note: when computing vector element at index '0'
45604555// :133:27: error: use of undefined value here causes illegal behavior
......@@ -4562,6 +4557,7 @@ const std = @import("std");
45624557// :133:27: error: use of undefined value here causes illegal behavior
45634558// :133:27: note: when computing vector element at index '0'
45644559// :133:27: error: use of undefined value here causes illegal behavior
4560// :133:27: note: when computing vector element at index '0'
45654561// :133:27: error: use of undefined value here causes illegal behavior
45664562// :133:27: note: when computing vector element at index '0'
45674563// :133:27: error: use of undefined value here causes illegal behavior
......@@ -4569,7 +4565,7 @@ const std = @import("std");
45694565// :133:27: error: use of undefined value here causes illegal behavior
45704566// :133:27: note: when computing vector element at index '0'
45714567// :133:27: error: use of undefined value here causes illegal behavior
4572// :133:27: note: when computing vector element at index '1'
4568// :133:27: note: when computing vector element at index '0'
45734569// :133:27: error: use of undefined value here causes illegal behavior
45744570// :133:27: note: when computing vector element at index '0'
45754571// :133:27: error: use of undefined value here causes illegal behavior
......@@ -4577,6 +4573,7 @@ const std = @import("std");
45774573// :133:27: error: use of undefined value here causes illegal behavior
45784574// :133:27: note: when computing vector element at index '0'
45794575// :133:27: error: use of undefined value here causes illegal behavior
4576// :133:27: note: when computing vector element at index '0'
45804577// :133:27: error: use of undefined value here causes illegal behavior
45814578// :133:27: note: when computing vector element at index '0'
45824579// :133:27: error: use of undefined value here causes illegal behavior
......@@ -4584,7 +4581,7 @@ const std = @import("std");
45844581// :133:27: error: use of undefined value here causes illegal behavior
45854582// :133:27: note: when computing vector element at index '0'
45864583// :133:27: error: use of undefined value here causes illegal behavior
4587// :133:27: note: when computing vector element at index '1'
4584// :133:27: note: when computing vector element at index '0'
45884585// :133:27: error: use of undefined value here causes illegal behavior
45894586// :133:27: note: when computing vector element at index '0'
45904587// :133:27: error: use of undefined value here causes illegal behavior
......@@ -4592,6 +4589,7 @@ const std = @import("std");
45924589// :133:27: error: use of undefined value here causes illegal behavior
45934590// :133:27: note: when computing vector element at index '0'
45944591// :133:27: error: use of undefined value here causes illegal behavior
4592// :133:27: note: when computing vector element at index '0'
45954593// :133:27: error: use of undefined value here causes illegal behavior
45964594// :133:27: note: when computing vector element at index '0'
45974595// :133:27: error: use of undefined value here causes illegal behavior
......@@ -4599,7 +4597,7 @@ const std = @import("std");
45994597// :133:27: error: use of undefined value here causes illegal behavior
46004598// :133:27: note: when computing vector element at index '0'
46014599// :133:27: error: use of undefined value here causes illegal behavior
4602// :133:27: note: when computing vector element at index '1'
4600// :133:27: note: when computing vector element at index '0'
46034601// :133:27: error: use of undefined value here causes illegal behavior
46044602// :133:27: note: when computing vector element at index '0'
46054603// :133:27: error: use of undefined value here causes illegal behavior
......@@ -4607,6 +4605,7 @@ const std = @import("std");
46074605// :133:27: error: use of undefined value here causes illegal behavior
46084606// :133:27: note: when computing vector element at index '0'
46094607// :133:27: error: use of undefined value here causes illegal behavior
4608// :133:27: note: when computing vector element at index '0'
46104609// :133:27: error: use of undefined value here causes illegal behavior
46114610// :133:27: note: when computing vector element at index '0'
46124611// :133:27: error: use of undefined value here causes illegal behavior
......@@ -4614,7 +4613,7 @@ const std = @import("std");
46144613// :133:27: error: use of undefined value here causes illegal behavior
46154614// :133:27: note: when computing vector element at index '0'
46164615// :133:27: error: use of undefined value here causes illegal behavior
4617// :133:27: note: when computing vector element at index '1'
4616// :133:27: note: when computing vector element at index '0'
46184617// :133:27: error: use of undefined value here causes illegal behavior
46194618// :133:27: note: when computing vector element at index '0'
46204619// :133:27: error: use of undefined value here causes illegal behavior
......@@ -4622,6 +4621,7 @@ const std = @import("std");
46224621// :133:27: error: use of undefined value here causes illegal behavior
46234622// :133:27: note: when computing vector element at index '0'
46244623// :133:27: error: use of undefined value here causes illegal behavior
4624// :133:27: note: when computing vector element at index '0'
46254625// :133:27: error: use of undefined value here causes illegal behavior
46264626// :133:27: note: when computing vector element at index '0'
46274627// :133:27: error: use of undefined value here causes illegal behavior
......@@ -4629,7 +4629,7 @@ const std = @import("std");
46294629// :133:27: error: use of undefined value here causes illegal behavior
46304630// :133:27: note: when computing vector element at index '0'
46314631// :133:27: error: use of undefined value here causes illegal behavior
4632// :133:27: note: when computing vector element at index '1'
4632// :133:27: note: when computing vector element at index '0'
46334633// :133:27: error: use of undefined value here causes illegal behavior
46344634// :133:27: note: when computing vector element at index '0'
46354635// :133:27: error: use of undefined value here causes illegal behavior
......@@ -4637,6 +4637,7 @@ const std = @import("std");
46374637// :133:27: error: use of undefined value here causes illegal behavior
46384638// :133:27: note: when computing vector element at index '0'
46394639// :133:27: error: use of undefined value here causes illegal behavior
4640// :133:27: note: when computing vector element at index '0'
46404641// :133:27: error: use of undefined value here causes illegal behavior
46414642// :133:27: note: when computing vector element at index '0'
46424643// :133:27: error: use of undefined value here causes illegal behavior
......@@ -4646,126 +4647,120 @@ const std = @import("std");
46464647// :133:27: error: use of undefined value here causes illegal behavior
46474648// :133:27: note: when computing vector element at index '1'
46484649// :133:27: error: use of undefined value here causes illegal behavior
4649// :133:27: note: when computing vector element at index '0'
4650// :133:27: error: use of undefined value here causes illegal behavior
4651// :133:27: note: when computing vector element at index '0'
4650// :133:27: note: when computing vector element at index '1'
46524651// :133:27: error: use of undefined value here causes illegal behavior
4653// :133:27: note: when computing vector element at index '0'
4652// :133:27: note: when computing vector element at index '1'
46544653// :133:27: error: use of undefined value here causes illegal behavior
4654// :133:27: note: when computing vector element at index '1'
46554655// :133:27: error: use of undefined value here causes illegal behavior
4656// :133:27: note: when computing vector element at index '0'
4656// :133:27: note: when computing vector element at index '1'
46574657// :133:27: error: use of undefined value here causes illegal behavior
4658// :133:27: note: when computing vector element at index '0'
4658// :133:27: note: when computing vector element at index '1'
46594659// :133:27: error: use of undefined value here causes illegal behavior
4660// :133:27: note: when computing vector element at index '0'
4660// :133:27: note: when computing vector element at index '1'
46614661// :133:27: error: use of undefined value here causes illegal behavior
46624662// :133:27: note: when computing vector element at index '1'
46634663// :133:27: error: use of undefined value here causes illegal behavior
4664// :133:27: note: when computing vector element at index '0'
4664// :133:27: note: when computing vector element at index '1'
46654665// :133:27: error: use of undefined value here causes illegal behavior
4666// :133:27: note: when computing vector element at index '0'
4666// :133:27: note: when computing vector element at index '1'
46674667// :133:27: error: use of undefined value here causes illegal behavior
4668// :133:27: note: when computing vector element at index '0'
4668// :133:27: note: when computing vector element at index '1'
46694669// :133:30: error: use of undefined value here causes illegal behavior
46704670// :133:30: error: use of undefined value here causes illegal behavior
4671// :133:30: note: when computing vector element at index '0'
46724671// :133:30: error: use of undefined value here causes illegal behavior
4673// :133:30: note: when computing vector element at index '0'
46744672// :133:30: error: use of undefined value here causes illegal behavior
4675// :133:30: note: when computing vector element at index '1'
46764673// :133:30: error: use of undefined value here causes illegal behavior
4677// :133:30: note: when computing vector element at index '0'
46784674// :133:30: error: use of undefined value here causes illegal behavior
4679// :133:30: note: when computing vector element at index '0'
46804675// :133:30: error: use of undefined value here causes illegal behavior
46814676// :133:30: error: use of undefined value here causes illegal behavior
4682// :133:30: note: when computing vector element at index '0'
46834677// :133:30: error: use of undefined value here causes illegal behavior
4684// :133:30: note: when computing vector element at index '0'
46854678// :133:30: error: use of undefined value here causes illegal behavior
4686// :133:30: note: when computing vector element at index '1'
46874679// :133:30: error: use of undefined value here causes illegal behavior
4688// :133:30: note: when computing vector element at index '0'
46894680// :133:30: error: use of undefined value here causes illegal behavior
46904681// :133:30: note: when computing vector element at index '0'
46914682// :133:30: error: use of undefined value here causes illegal behavior
4692// :133:30: error: use of undefined value here causes illegal behavior
46934683// :133:30: note: when computing vector element at index '0'
46944684// :133:30: error: use of undefined value here causes illegal behavior
46954685// :133:30: note: when computing vector element at index '0'
46964686// :133:30: error: use of undefined value here causes illegal behavior
4697// :133:30: note: when computing vector element at index '1'
4698// :133:30: error: use of undefined value here causes illegal behavior
46994687// :133:30: note: when computing vector element at index '0'
47004688// :133:30: error: use of undefined value here causes illegal behavior
47014689// :133:30: note: when computing vector element at index '0'
47024690// :133:30: error: use of undefined value here causes illegal behavior
4691// :133:30: note: when computing vector element at index '0'
47034692// :133:30: error: use of undefined value here causes illegal behavior
47044693// :133:30: note: when computing vector element at index '0'
47054694// :133:30: error: use of undefined value here causes illegal behavior
47064695// :133:30: note: when computing vector element at index '0'
47074696// :133:30: error: use of undefined value here causes illegal behavior
4708// :133:30: note: when computing vector element at index '1'
4697// :133:30: note: when computing vector element at index '0'
47094698// :133:30: error: use of undefined value here causes illegal behavior
47104699// :133:30: note: when computing vector element at index '0'
47114700// :133:30: error: use of undefined value here causes illegal behavior
47124701// :133:30: note: when computing vector element at index '0'
47134702// :133:30: error: use of undefined value here causes illegal behavior
4703// :133:30: note: when computing vector element at index '0'
47144704// :133:30: error: use of undefined value here causes illegal behavior
47154705// :133:30: note: when computing vector element at index '0'
47164706// :133:30: error: use of undefined value here causes illegal behavior
47174707// :133:30: note: when computing vector element at index '0'
47184708// :133:30: error: use of undefined value here causes illegal behavior
4719// :133:30: note: when computing vector element at index '1'
4709// :133:30: note: when computing vector element at index '0'
47204710// :133:30: error: use of undefined value here causes illegal behavior
47214711// :133:30: note: when computing vector element at index '0'
47224712// :133:30: error: use of undefined value here causes illegal behavior
47234713// :133:30: note: when computing vector element at index '0'
47244714// :133:30: error: use of undefined value here causes illegal behavior
4715// :133:30: note: when computing vector element at index '0'
47254716// :133:30: error: use of undefined value here causes illegal behavior
47264717// :133:30: note: when computing vector element at index '0'
47274718// :133:30: error: use of undefined value here causes illegal behavior
47284719// :133:30: note: when computing vector element at index '0'
47294720// :133:30: error: use of undefined value here causes illegal behavior
4730// :133:30: note: when computing vector element at index '1'
4721// :133:30: note: when computing vector element at index '0'
47314722// :133:30: error: use of undefined value here causes illegal behavior
47324723// :133:30: note: when computing vector element at index '0'
47334724// :133:30: error: use of undefined value here causes illegal behavior
47344725// :133:30: note: when computing vector element at index '0'
47354726// :133:30: error: use of undefined value here causes illegal behavior
4727// :133:30: note: when computing vector element at index '0'
47364728// :133:30: error: use of undefined value here causes illegal behavior
47374729// :133:30: note: when computing vector element at index '0'
47384730// :133:30: error: use of undefined value here causes illegal behavior
47394731// :133:30: note: when computing vector element at index '0'
47404732// :133:30: error: use of undefined value here causes illegal behavior
4741// :133:30: note: when computing vector element at index '1'
4733// :133:30: note: when computing vector element at index '0'
47424734// :133:30: error: use of undefined value here causes illegal behavior
47434735// :133:30: note: when computing vector element at index '0'
47444736// :133:30: error: use of undefined value here causes illegal behavior
47454737// :133:30: note: when computing vector element at index '0'
47464738// :133:30: error: use of undefined value here causes illegal behavior
4739// :133:30: note: when computing vector element at index '0'
47474740// :133:30: error: use of undefined value here causes illegal behavior
47484741// :133:30: note: when computing vector element at index '0'
47494742// :133:30: error: use of undefined value here causes illegal behavior
47504743// :133:30: note: when computing vector element at index '0'
47514744// :133:30: error: use of undefined value here causes illegal behavior
4752// :133:30: note: when computing vector element at index '1'
4745// :133:30: note: when computing vector element at index '0'
47534746// :133:30: error: use of undefined value here causes illegal behavior
47544747// :133:30: note: when computing vector element at index '0'
47554748// :133:30: error: use of undefined value here causes illegal behavior
47564749// :133:30: note: when computing vector element at index '0'
47574750// :133:30: error: use of undefined value here causes illegal behavior
4751// :133:30: note: when computing vector element at index '0'
47584752// :133:30: error: use of undefined value here causes illegal behavior
47594753// :133:30: note: when computing vector element at index '0'
47604754// :133:30: error: use of undefined value here causes illegal behavior
47614755// :133:30: note: when computing vector element at index '0'
47624756// :133:30: error: use of undefined value here causes illegal behavior
4763// :133:30: note: when computing vector element at index '1'
4757// :133:30: note: when computing vector element at index '0'
47644758// :133:30: error: use of undefined value here causes illegal behavior
47654759// :133:30: note: when computing vector element at index '0'
47664760// :133:30: error: use of undefined value here causes illegal behavior
47674761// :133:30: note: when computing vector element at index '0'
47684762// :133:30: error: use of undefined value here causes illegal behavior
4763// :133:30: note: when computing vector element at index '0'
47694764// :133:30: error: use of undefined value here causes illegal behavior
47704765// :133:30: note: when computing vector element at index '0'
47714766// :133:30: error: use of undefined value here causes illegal behavior
......@@ -4773,44 +4768,42 @@ const std = @import("std");
47734768// :133:30: error: use of undefined value here causes illegal behavior
47744769// :133:30: note: when computing vector element at index '1'
47754770// :133:30: error: use of undefined value here causes illegal behavior
4776// :133:30: note: when computing vector element at index '0'
4771// :133:30: note: when computing vector element at index '1'
47774772// :133:30: error: use of undefined value here causes illegal behavior
4778// :133:30: note: when computing vector element at index '0'
4773// :133:30: note: when computing vector element at index '1'
47794774// :133:30: error: use of undefined value here causes illegal behavior
4775// :133:30: note: when computing vector element at index '1'
47804776// :133:30: error: use of undefined value here causes illegal behavior
4781// :133:30: note: when computing vector element at index '0'
4777// :133:30: note: when computing vector element at index '1'
47824778// :133:30: error: use of undefined value here causes illegal behavior
4783// :133:30: note: when computing vector element at index '0'
4779// :133:30: note: when computing vector element at index '1'
47844780// :133:30: error: use of undefined value here causes illegal behavior
47854781// :133:30: note: when computing vector element at index '1'
47864782// :133:30: error: use of undefined value here causes illegal behavior
4787// :133:30: note: when computing vector element at index '0'
4783// :133:30: note: when computing vector element at index '1'
47884784// :133:30: error: use of undefined value here causes illegal behavior
4789// :133:30: note: when computing vector element at index '0'
4785// :133:30: note: when computing vector element at index '1'
4786// :133:30: error: use of undefined value here causes illegal behavior
4787// :133:30: note: when computing vector element at index '1'
4788// :133:30: error: use of undefined value here causes illegal behavior
4789// :133:30: note: when computing vector element at index '1'
4790// :137:17: error: use of undefined value here causes illegal behavior
47904791// :137:17: error: use of undefined value here causes illegal behavior
47914792// :137:17: error: use of undefined value here causes illegal behavior
4792// :137:17: note: when computing vector element at index '0'
47934793// :137:17: error: use of undefined value here causes illegal behavior
4794// :137:17: note: when computing vector element at index '0'
47954794// :137:17: error: use of undefined value here causes illegal behavior
4796// :137:17: note: when computing vector element at index '0'
47974795// :137:17: error: use of undefined value here causes illegal behavior
4798// :137:17: note: when computing vector element at index '1'
47994796// :137:17: error: use of undefined value here causes illegal behavior
4800// :137:17: note: when computing vector element at index '0'
48014797// :137:17: error: use of undefined value here causes illegal behavior
4802// :137:17: note: when computing vector element at index '0'
48034798// :137:17: error: use of undefined value here causes illegal behavior
4804// :137:17: note: when computing vector element at index '0'
48054799// :137:17: error: use of undefined value here causes illegal behavior
48064800// :137:17: error: use of undefined value here causes illegal behavior
4807// :137:17: note: when computing vector element at index '0'
48084801// :137:17: error: use of undefined value here causes illegal behavior
48094802// :137:17: note: when computing vector element at index '0'
48104803// :137:17: error: use of undefined value here causes illegal behavior
48114804// :137:17: note: when computing vector element at index '0'
48124805// :137:17: error: use of undefined value here causes illegal behavior
4813// :137:17: note: when computing vector element at index '1'
4806// :137:17: note: when computing vector element at index '0'
48144807// :137:17: error: use of undefined value here causes illegal behavior
48154808// :137:17: note: when computing vector element at index '0'
48164809// :137:17: error: use of undefined value here causes illegal behavior
......@@ -4818,6 +4811,7 @@ const std = @import("std");
48184811// :137:17: error: use of undefined value here causes illegal behavior
48194812// :137:17: note: when computing vector element at index '0'
48204813// :137:17: error: use of undefined value here causes illegal behavior
4814// :137:17: note: when computing vector element at index '0'
48214815// :137:17: error: use of undefined value here causes illegal behavior
48224816// :137:17: note: when computing vector element at index '0'
48234817// :137:17: error: use of undefined value here causes illegal behavior
......@@ -4825,7 +4819,7 @@ const std = @import("std");
48254819// :137:17: error: use of undefined value here causes illegal behavior
48264820// :137:17: note: when computing vector element at index '0'
48274821// :137:17: error: use of undefined value here causes illegal behavior
4828// :137:17: note: when computing vector element at index '1'
4822// :137:17: note: when computing vector element at index '0'
48294823// :137:17: error: use of undefined value here causes illegal behavior
48304824// :137:17: note: when computing vector element at index '0'
48314825// :137:17: error: use of undefined value here causes illegal behavior
......@@ -4833,6 +4827,7 @@ const std = @import("std");
48334827// :137:17: error: use of undefined value here causes illegal behavior
48344828// :137:17: note: when computing vector element at index '0'
48354829// :137:17: error: use of undefined value here causes illegal behavior
4830// :137:17: note: when computing vector element at index '0'
48364831// :137:17: error: use of undefined value here causes illegal behavior
48374832// :137:17: note: when computing vector element at index '0'
48384833// :137:17: error: use of undefined value here causes illegal behavior
......@@ -4840,7 +4835,7 @@ const std = @import("std");
48404835// :137:17: error: use of undefined value here causes illegal behavior
48414836// :137:17: note: when computing vector element at index '0'
48424837// :137:17: error: use of undefined value here causes illegal behavior
4843// :137:17: note: when computing vector element at index '1'
4838// :137:17: note: when computing vector element at index '0'
48444839// :137:17: error: use of undefined value here causes illegal behavior
48454840// :137:17: note: when computing vector element at index '0'
48464841// :137:17: error: use of undefined value here causes illegal behavior
......@@ -4848,6 +4843,7 @@ const std = @import("std");
48484843// :137:17: error: use of undefined value here causes illegal behavior
48494844// :137:17: note: when computing vector element at index '0'
48504845// :137:17: error: use of undefined value here causes illegal behavior
4846// :137:17: note: when computing vector element at index '0'
48514847// :137:17: error: use of undefined value here causes illegal behavior
48524848// :137:17: note: when computing vector element at index '0'
48534849// :137:17: error: use of undefined value here causes illegal behavior
......@@ -4855,7 +4851,7 @@ const std = @import("std");
48554851// :137:17: error: use of undefined value here causes illegal behavior
48564852// :137:17: note: when computing vector element at index '0'
48574853// :137:17: error: use of undefined value here causes illegal behavior
4858// :137:17: note: when computing vector element at index '1'
4854// :137:17: note: when computing vector element at index '0'
48594855// :137:17: error: use of undefined value here causes illegal behavior
48604856// :137:17: note: when computing vector element at index '0'
48614857// :137:17: error: use of undefined value here causes illegal behavior
......@@ -4863,6 +4859,7 @@ const std = @import("std");
48634859// :137:17: error: use of undefined value here causes illegal behavior
48644860// :137:17: note: when computing vector element at index '0'
48654861// :137:17: error: use of undefined value here causes illegal behavior
4862// :137:17: note: when computing vector element at index '0'
48664863// :137:17: error: use of undefined value here causes illegal behavior
48674864// :137:17: note: when computing vector element at index '0'
48684865// :137:17: error: use of undefined value here causes illegal behavior
......@@ -4870,7 +4867,7 @@ const std = @import("std");
48704867// :137:17: error: use of undefined value here causes illegal behavior
48714868// :137:17: note: when computing vector element at index '0'
48724869// :137:17: error: use of undefined value here causes illegal behavior
4873// :137:17: note: when computing vector element at index '1'
4870// :137:17: note: when computing vector element at index '0'
48744871// :137:17: error: use of undefined value here causes illegal behavior
48754872// :137:17: note: when computing vector element at index '0'
48764873// :137:17: error: use of undefined value here causes illegal behavior
......@@ -4878,6 +4875,7 @@ const std = @import("std");
48784875// :137:17: error: use of undefined value here causes illegal behavior
48794876// :137:17: note: when computing vector element at index '0'
48804877// :137:17: error: use of undefined value here causes illegal behavior
4878// :137:17: note: when computing vector element at index '0'
48814879// :137:17: error: use of undefined value here causes illegal behavior
48824880// :137:17: note: when computing vector element at index '0'
48834881// :137:17: error: use of undefined value here causes illegal behavior
......@@ -4885,7 +4883,7 @@ const std = @import("std");
48854883// :137:17: error: use of undefined value here causes illegal behavior
48864884// :137:17: note: when computing vector element at index '0'
48874885// :137:17: error: use of undefined value here causes illegal behavior
4888// :137:17: note: when computing vector element at index '1'
4886// :137:17: note: when computing vector element at index '0'
48894887// :137:17: error: use of undefined value here causes illegal behavior
48904888// :137:17: note: when computing vector element at index '0'
48914889// :137:17: error: use of undefined value here causes illegal behavior
......@@ -4893,6 +4891,7 @@ const std = @import("std");
48934891// :137:17: error: use of undefined value here causes illegal behavior
48944892// :137:17: note: when computing vector element at index '0'
48954893// :137:17: error: use of undefined value here causes illegal behavior
4894// :137:17: note: when computing vector element at index '0'
48964895// :137:17: error: use of undefined value here causes illegal behavior
48974896// :137:17: note: when computing vector element at index '0'
48984897// :137:17: error: use of undefined value here causes illegal behavior
......@@ -4900,7 +4899,7 @@ const std = @import("std");
49004899// :137:17: error: use of undefined value here causes illegal behavior
49014900// :137:17: note: when computing vector element at index '0'
49024901// :137:17: error: use of undefined value here causes illegal behavior
4903// :137:17: note: when computing vector element at index '1'
4902// :137:17: note: when computing vector element at index '0'
49044903// :137:17: error: use of undefined value here causes illegal behavior
49054904// :137:17: note: when computing vector element at index '0'
49064905// :137:17: error: use of undefined value here causes illegal behavior
......@@ -4908,6 +4907,7 @@ const std = @import("std");
49084907// :137:17: error: use of undefined value here causes illegal behavior
49094908// :137:17: note: when computing vector element at index '0'
49104909// :137:17: error: use of undefined value here causes illegal behavior
4910// :137:17: note: when computing vector element at index '0'
49114911// :137:17: error: use of undefined value here causes illegal behavior
49124912// :137:17: note: when computing vector element at index '0'
49134913// :137:17: error: use of undefined value here causes illegal behavior
......@@ -4915,7 +4915,7 @@ const std = @import("std");
49154915// :137:17: error: use of undefined value here causes illegal behavior
49164916// :137:17: note: when computing vector element at index '0'
49174917// :137:17: error: use of undefined value here causes illegal behavior
4918// :137:17: note: when computing vector element at index '1'
4918// :137:17: note: when computing vector element at index '0'
49194919// :137:17: error: use of undefined value here causes illegal behavior
49204920// :137:17: note: when computing vector element at index '0'
49214921// :137:17: error: use of undefined value here causes illegal behavior
......@@ -4923,6 +4923,7 @@ const std = @import("std");
49234923// :137:17: error: use of undefined value here causes illegal behavior
49244924// :137:17: note: when computing vector element at index '0'
49254925// :137:17: error: use of undefined value here causes illegal behavior
4926// :137:17: note: when computing vector element at index '0'
49264927// :137:17: error: use of undefined value here causes illegal behavior
49274928// :137:17: note: when computing vector element at index '0'
49284929// :137:17: error: use of undefined value here causes illegal behavior
......@@ -4932,126 +4933,120 @@ const std = @import("std");
49324933// :137:17: error: use of undefined value here causes illegal behavior
49334934// :137:17: note: when computing vector element at index '1'
49344935// :137:17: error: use of undefined value here causes illegal behavior
4935// :137:17: note: when computing vector element at index '0'
4936// :137:17: error: use of undefined value here causes illegal behavior
4937// :137:17: note: when computing vector element at index '0'
4936// :137:17: note: when computing vector element at index '1'
49384937// :137:17: error: use of undefined value here causes illegal behavior
4939// :137:17: note: when computing vector element at index '0'
4938// :137:17: note: when computing vector element at index '1'
49404939// :137:17: error: use of undefined value here causes illegal behavior
4940// :137:17: note: when computing vector element at index '1'
49414941// :137:17: error: use of undefined value here causes illegal behavior
4942// :137:17: note: when computing vector element at index '0'
4942// :137:17: note: when computing vector element at index '1'
49434943// :137:17: error: use of undefined value here causes illegal behavior
4944// :137:17: note: when computing vector element at index '0'
4944// :137:17: note: when computing vector element at index '1'
49454945// :137:17: error: use of undefined value here causes illegal behavior
4946// :137:17: note: when computing vector element at index '0'
4946// :137:17: note: when computing vector element at index '1'
49474947// :137:17: error: use of undefined value here causes illegal behavior
49484948// :137:17: note: when computing vector element at index '1'
49494949// :137:17: error: use of undefined value here causes illegal behavior
4950// :137:17: note: when computing vector element at index '0'
4950// :137:17: note: when computing vector element at index '1'
49514951// :137:17: error: use of undefined value here causes illegal behavior
4952// :137:17: note: when computing vector element at index '0'
4952// :137:17: note: when computing vector element at index '1'
49534953// :137:17: error: use of undefined value here causes illegal behavior
4954// :137:17: note: when computing vector element at index '0'
4954// :137:17: note: when computing vector element at index '1'
49554955// :137:21: error: use of undefined value here causes illegal behavior
49564956// :137:21: error: use of undefined value here causes illegal behavior
4957// :137:21: note: when computing vector element at index '0'
49584957// :137:21: error: use of undefined value here causes illegal behavior
4959// :137:21: note: when computing vector element at index '0'
49604958// :137:21: error: use of undefined value here causes illegal behavior
4961// :137:21: note: when computing vector element at index '1'
49624959// :137:21: error: use of undefined value here causes illegal behavior
4963// :137:21: note: when computing vector element at index '0'
49644960// :137:21: error: use of undefined value here causes illegal behavior
4965// :137:21: note: when computing vector element at index '0'
49664961// :137:21: error: use of undefined value here causes illegal behavior
49674962// :137:21: error: use of undefined value here causes illegal behavior
4968// :137:21: note: when computing vector element at index '0'
49694963// :137:21: error: use of undefined value here causes illegal behavior
4970// :137:21: note: when computing vector element at index '0'
49714964// :137:21: error: use of undefined value here causes illegal behavior
4972// :137:21: note: when computing vector element at index '1'
49734965// :137:21: error: use of undefined value here causes illegal behavior
4974// :137:21: note: when computing vector element at index '0'
49754966// :137:21: error: use of undefined value here causes illegal behavior
49764967// :137:21: note: when computing vector element at index '0'
49774968// :137:21: error: use of undefined value here causes illegal behavior
4978// :137:21: error: use of undefined value here causes illegal behavior
49794969// :137:21: note: when computing vector element at index '0'
49804970// :137:21: error: use of undefined value here causes illegal behavior
49814971// :137:21: note: when computing vector element at index '0'
49824972// :137:21: error: use of undefined value here causes illegal behavior
4983// :137:21: note: when computing vector element at index '1'
4984// :137:21: error: use of undefined value here causes illegal behavior
49854973// :137:21: note: when computing vector element at index '0'
49864974// :137:21: error: use of undefined value here causes illegal behavior
49874975// :137:21: note: when computing vector element at index '0'
49884976// :137:21: error: use of undefined value here causes illegal behavior
4977// :137:21: note: when computing vector element at index '0'
49894978// :137:21: error: use of undefined value here causes illegal behavior
49904979// :137:21: note: when computing vector element at index '0'
49914980// :137:21: error: use of undefined value here causes illegal behavior
49924981// :137:21: note: when computing vector element at index '0'
49934982// :137:21: error: use of undefined value here causes illegal behavior
4994// :137:21: note: when computing vector element at index '1'
4983// :137:21: note: when computing vector element at index '0'
49954984// :137:21: error: use of undefined value here causes illegal behavior
49964985// :137:21: note: when computing vector element at index '0'
49974986// :137:21: error: use of undefined value here causes illegal behavior
49984987// :137:21: note: when computing vector element at index '0'
49994988// :137:21: error: use of undefined value here causes illegal behavior
4989// :137:21: note: when computing vector element at index '0'
50004990// :137:21: error: use of undefined value here causes illegal behavior
50014991// :137:21: note: when computing vector element at index '0'
50024992// :137:21: error: use of undefined value here causes illegal behavior
50034993// :137:21: note: when computing vector element at index '0'
50044994// :137:21: error: use of undefined value here causes illegal behavior
5005// :137:21: note: when computing vector element at index '1'
4995// :137:21: note: when computing vector element at index '0'
50064996// :137:21: error: use of undefined value here causes illegal behavior
50074997// :137:21: note: when computing vector element at index '0'
50084998// :137:21: error: use of undefined value here causes illegal behavior
50094999// :137:21: note: when computing vector element at index '0'
50105000// :137:21: error: use of undefined value here causes illegal behavior
5001// :137:21: note: when computing vector element at index '0'
50115002// :137:21: error: use of undefined value here causes illegal behavior
50125003// :137:21: note: when computing vector element at index '0'
50135004// :137:21: error: use of undefined value here causes illegal behavior
50145005// :137:21: note: when computing vector element at index '0'
50155006// :137:21: error: use of undefined value here causes illegal behavior
5016// :137:21: note: when computing vector element at index '1'
5007// :137:21: note: when computing vector element at index '0'
50175008// :137:21: error: use of undefined value here causes illegal behavior
50185009// :137:21: note: when computing vector element at index '0'
50195010// :137:21: error: use of undefined value here causes illegal behavior
50205011// :137:21: note: when computing vector element at index '0'
50215012// :137:21: error: use of undefined value here causes illegal behavior
5013// :137:21: note: when computing vector element at index '0'
50225014// :137:21: error: use of undefined value here causes illegal behavior
50235015// :137:21: note: when computing vector element at index '0'
50245016// :137:21: error: use of undefined value here causes illegal behavior
50255017// :137:21: note: when computing vector element at index '0'
50265018// :137:21: error: use of undefined value here causes illegal behavior
5027// :137:21: note: when computing vector element at index '1'
5019// :137:21: note: when computing vector element at index '0'
50285020// :137:21: error: use of undefined value here causes illegal behavior
50295021// :137:21: note: when computing vector element at index '0'
50305022// :137:21: error: use of undefined value here causes illegal behavior
50315023// :137:21: note: when computing vector element at index '0'
50325024// :137:21: error: use of undefined value here causes illegal behavior
5025// :137:21: note: when computing vector element at index '0'
50335026// :137:21: error: use of undefined value here causes illegal behavior
50345027// :137:21: note: when computing vector element at index '0'
50355028// :137:21: error: use of undefined value here causes illegal behavior
50365029// :137:21: note: when computing vector element at index '0'
50375030// :137:21: error: use of undefined value here causes illegal behavior
5038// :137:21: note: when computing vector element at index '1'
5031// :137:21: note: when computing vector element at index '0'
50395032// :137:21: error: use of undefined value here causes illegal behavior
50405033// :137:21: note: when computing vector element at index '0'
50415034// :137:21: error: use of undefined value here causes illegal behavior
50425035// :137:21: note: when computing vector element at index '0'
50435036// :137:21: error: use of undefined value here causes illegal behavior
5037// :137:21: note: when computing vector element at index '0'
50445038// :137:21: error: use of undefined value here causes illegal behavior
50455039// :137:21: note: when computing vector element at index '0'
50465040// :137:21: error: use of undefined value here causes illegal behavior
50475041// :137:21: note: when computing vector element at index '0'
50485042// :137:21: error: use of undefined value here causes illegal behavior
5049// :137:21: note: when computing vector element at index '1'
5043// :137:21: note: when computing vector element at index '0'
50505044// :137:21: error: use of undefined value here causes illegal behavior
50515045// :137:21: note: when computing vector element at index '0'
50525046// :137:21: error: use of undefined value here causes illegal behavior
50535047// :137:21: note: when computing vector element at index '0'
50545048// :137:21: error: use of undefined value here causes illegal behavior
5049// :137:21: note: when computing vector element at index '0'
50555050// :137:21: error: use of undefined value here causes illegal behavior
50565051// :137:21: note: when computing vector element at index '0'
50575052// :137:21: error: use of undefined value here causes illegal behavior
......@@ -5059,44 +5054,42 @@ const std = @import("std");
50595054// :137:21: error: use of undefined value here causes illegal behavior
50605055// :137:21: note: when computing vector element at index '1'
50615056// :137:21: error: use of undefined value here causes illegal behavior
5062// :137:21: note: when computing vector element at index '0'
5057// :137:21: note: when computing vector element at index '1'
50635058// :137:21: error: use of undefined value here causes illegal behavior
5064// :137:21: note: when computing vector element at index '0'
5059// :137:21: note: when computing vector element at index '1'
50655060// :137:21: error: use of undefined value here causes illegal behavior
5061// :137:21: note: when computing vector element at index '1'
50665062// :137:21: error: use of undefined value here causes illegal behavior
5067// :137:21: note: when computing vector element at index '0'
5063// :137:21: note: when computing vector element at index '1'
50685064// :137:21: error: use of undefined value here causes illegal behavior
5069// :137:21: note: when computing vector element at index '0'
5065// :137:21: note: when computing vector element at index '1'
50705066// :137:21: error: use of undefined value here causes illegal behavior
50715067// :137:21: note: when computing vector element at index '1'
50725068// :137:21: error: use of undefined value here causes illegal behavior
5073// :137:21: note: when computing vector element at index '0'
5069// :137:21: note: when computing vector element at index '1'
50745070// :137:21: error: use of undefined value here causes illegal behavior
5075// :137:21: note: when computing vector element at index '0'
5071// :137:21: note: when computing vector element at index '1'
5072// :137:21: error: use of undefined value here causes illegal behavior
5073// :137:21: note: when computing vector element at index '1'
5074// :137:21: error: use of undefined value here causes illegal behavior
5075// :137:21: note: when computing vector element at index '1'
5076// :141:22: error: use of undefined value here causes illegal behavior
50765077// :141:22: error: use of undefined value here causes illegal behavior
50775078// :141:22: error: use of undefined value here causes illegal behavior
5078// :141:22: note: when computing vector element at index '0'
50795079// :141:22: error: use of undefined value here causes illegal behavior
5080// :141:22: note: when computing vector element at index '0'
50815080// :141:22: error: use of undefined value here causes illegal behavior
5082// :141:22: note: when computing vector element at index '0'
50835081// :141:22: error: use of undefined value here causes illegal behavior
5084// :141:22: note: when computing vector element at index '1'
50855082// :141:22: error: use of undefined value here causes illegal behavior
5086// :141:22: note: when computing vector element at index '0'
50875083// :141:22: error: use of undefined value here causes illegal behavior
5088// :141:22: note: when computing vector element at index '0'
50895084// :141:22: error: use of undefined value here causes illegal behavior
5090// :141:22: note: when computing vector element at index '0'
50915085// :141:22: error: use of undefined value here causes illegal behavior
50925086// :141:22: error: use of undefined value here causes illegal behavior
5093// :141:22: note: when computing vector element at index '0'
50945087// :141:22: error: use of undefined value here causes illegal behavior
50955088// :141:22: note: when computing vector element at index '0'
50965089// :141:22: error: use of undefined value here causes illegal behavior
50975090// :141:22: note: when computing vector element at index '0'
50985091// :141:22: error: use of undefined value here causes illegal behavior
5099// :141:22: note: when computing vector element at index '1'
5092// :141:22: note: when computing vector element at index '0'
51005093// :141:22: error: use of undefined value here causes illegal behavior
51015094// :141:22: note: when computing vector element at index '0'
51025095// :141:22: error: use of undefined value here causes illegal behavior
......@@ -5104,6 +5097,7 @@ const std = @import("std");
51045097// :141:22: error: use of undefined value here causes illegal behavior
51055098// :141:22: note: when computing vector element at index '0'
51065099// :141:22: error: use of undefined value here causes illegal behavior
5100// :141:22: note: when computing vector element at index '0'
51075101// :141:22: error: use of undefined value here causes illegal behavior
51085102// :141:22: note: when computing vector element at index '0'
51095103// :141:22: error: use of undefined value here causes illegal behavior
......@@ -5111,7 +5105,7 @@ const std = @import("std");
51115105// :141:22: error: use of undefined value here causes illegal behavior
51125106// :141:22: note: when computing vector element at index '0'
51135107// :141:22: error: use of undefined value here causes illegal behavior
5114// :141:22: note: when computing vector element at index '1'
5108// :141:22: note: when computing vector element at index '0'
51155109// :141:22: error: use of undefined value here causes illegal behavior
51165110// :141:22: note: when computing vector element at index '0'
51175111// :141:22: error: use of undefined value here causes illegal behavior
......@@ -5119,6 +5113,7 @@ const std = @import("std");
51195113// :141:22: error: use of undefined value here causes illegal behavior
51205114// :141:22: note: when computing vector element at index '0'
51215115// :141:22: error: use of undefined value here causes illegal behavior
5116// :141:22: note: when computing vector element at index '0'
51225117// :141:22: error: use of undefined value here causes illegal behavior
51235118// :141:22: note: when computing vector element at index '0'
51245119// :141:22: error: use of undefined value here causes illegal behavior
......@@ -5126,7 +5121,7 @@ const std = @import("std");
51265121// :141:22: error: use of undefined value here causes illegal behavior
51275122// :141:22: note: when computing vector element at index '0'
51285123// :141:22: error: use of undefined value here causes illegal behavior
5129// :141:22: note: when computing vector element at index '1'
5124// :141:22: note: when computing vector element at index '0'
51305125// :141:22: error: use of undefined value here causes illegal behavior
51315126// :141:22: note: when computing vector element at index '0'
51325127// :141:22: error: use of undefined value here causes illegal behavior
......@@ -5134,6 +5129,7 @@ const std = @import("std");
51345129// :141:22: error: use of undefined value here causes illegal behavior
51355130// :141:22: note: when computing vector element at index '0'
51365131// :141:22: error: use of undefined value here causes illegal behavior
5132// :141:22: note: when computing vector element at index '0'
51375133// :141:22: error: use of undefined value here causes illegal behavior
51385134// :141:22: note: when computing vector element at index '0'
51395135// :141:22: error: use of undefined value here causes illegal behavior
......@@ -5141,7 +5137,7 @@ const std = @import("std");
51415137// :141:22: error: use of undefined value here causes illegal behavior
51425138// :141:22: note: when computing vector element at index '0'
51435139// :141:22: error: use of undefined value here causes illegal behavior
5144// :141:22: note: when computing vector element at index '1'
5140// :141:22: note: when computing vector element at index '0'
51455141// :141:22: error: use of undefined value here causes illegal behavior
51465142// :141:22: note: when computing vector element at index '0'
51475143// :141:22: error: use of undefined value here causes illegal behavior
......@@ -5149,6 +5145,7 @@ const std = @import("std");
51495145// :141:22: error: use of undefined value here causes illegal behavior
51505146// :141:22: note: when computing vector element at index '0'
51515147// :141:22: error: use of undefined value here causes illegal behavior
5148// :141:22: note: when computing vector element at index '0'
51525149// :141:22: error: use of undefined value here causes illegal behavior
51535150// :141:22: note: when computing vector element at index '0'
51545151// :141:22: error: use of undefined value here causes illegal behavior
......@@ -5156,7 +5153,7 @@ const std = @import("std");
51565153// :141:22: error: use of undefined value here causes illegal behavior
51575154// :141:22: note: when computing vector element at index '0'
51585155// :141:22: error: use of undefined value here causes illegal behavior
5159// :141:22: note: when computing vector element at index '1'
5156// :141:22: note: when computing vector element at index '0'
51605157// :141:22: error: use of undefined value here causes illegal behavior
51615158// :141:22: note: when computing vector element at index '0'
51625159// :141:22: error: use of undefined value here causes illegal behavior
......@@ -5164,6 +5161,7 @@ const std = @import("std");
51645161// :141:22: error: use of undefined value here causes illegal behavior
51655162// :141:22: note: when computing vector element at index '0'
51665163// :141:22: error: use of undefined value here causes illegal behavior
5164// :141:22: note: when computing vector element at index '0'
51675165// :141:22: error: use of undefined value here causes illegal behavior
51685166// :141:22: note: when computing vector element at index '0'
51695167// :141:22: error: use of undefined value here causes illegal behavior
......@@ -5171,7 +5169,7 @@ const std = @import("std");
51715169// :141:22: error: use of undefined value here causes illegal behavior
51725170// :141:22: note: when computing vector element at index '0'
51735171// :141:22: error: use of undefined value here causes illegal behavior
5174// :141:22: note: when computing vector element at index '1'
5172// :141:22: note: when computing vector element at index '0'
51755173// :141:22: error: use of undefined value here causes illegal behavior
51765174// :141:22: note: when computing vector element at index '0'
51775175// :141:22: error: use of undefined value here causes illegal behavior
......@@ -5179,6 +5177,7 @@ const std = @import("std");
51795177// :141:22: error: use of undefined value here causes illegal behavior
51805178// :141:22: note: when computing vector element at index '0'
51815179// :141:22: error: use of undefined value here causes illegal behavior
5180// :141:22: note: when computing vector element at index '0'
51825181// :141:22: error: use of undefined value here causes illegal behavior
51835182// :141:22: note: when computing vector element at index '0'
51845183// :141:22: error: use of undefined value here causes illegal behavior
......@@ -5186,7 +5185,7 @@ const std = @import("std");
51865185// :141:22: error: use of undefined value here causes illegal behavior
51875186// :141:22: note: when computing vector element at index '0'
51885187// :141:22: error: use of undefined value here causes illegal behavior
5189// :141:22: note: when computing vector element at index '1'
5188// :141:22: note: when computing vector element at index '0'
51905189// :141:22: error: use of undefined value here causes illegal behavior
51915190// :141:22: note: when computing vector element at index '0'
51925191// :141:22: error: use of undefined value here causes illegal behavior
......@@ -5194,6 +5193,7 @@ const std = @import("std");
51945193// :141:22: error: use of undefined value here causes illegal behavior
51955194// :141:22: note: when computing vector element at index '0'
51965195// :141:22: error: use of undefined value here causes illegal behavior
5196// :141:22: note: when computing vector element at index '0'
51975197// :141:22: error: use of undefined value here causes illegal behavior
51985198// :141:22: note: when computing vector element at index '0'
51995199// :141:22: error: use of undefined value here causes illegal behavior
......@@ -5201,7 +5201,7 @@ const std = @import("std");
52015201// :141:22: error: use of undefined value here causes illegal behavior
52025202// :141:22: note: when computing vector element at index '0'
52035203// :141:22: error: use of undefined value here causes illegal behavior
5204// :141:22: note: when computing vector element at index '1'
5204// :141:22: note: when computing vector element at index '0'
52055205// :141:22: error: use of undefined value here causes illegal behavior
52065206// :141:22: note: when computing vector element at index '0'
52075207// :141:22: error: use of undefined value here causes illegal behavior
......@@ -5209,6 +5209,7 @@ const std = @import("std");
52095209// :141:22: error: use of undefined value here causes illegal behavior
52105210// :141:22: note: when computing vector element at index '0'
52115211// :141:22: error: use of undefined value here causes illegal behavior
5212// :141:22: note: when computing vector element at index '0'
52125213// :141:22: error: use of undefined value here causes illegal behavior
52135214// :141:22: note: when computing vector element at index '0'
52145215// :141:22: error: use of undefined value here causes illegal behavior
......@@ -5218,126 +5219,120 @@ const std = @import("std");
52185219// :141:22: error: use of undefined value here causes illegal behavior
52195220// :141:22: note: when computing vector element at index '1'
52205221// :141:22: error: use of undefined value here causes illegal behavior
5221// :141:22: note: when computing vector element at index '0'
5222// :141:22: error: use of undefined value here causes illegal behavior
5223// :141:22: note: when computing vector element at index '0'
5222// :141:22: note: when computing vector element at index '1'
52245223// :141:22: error: use of undefined value here causes illegal behavior
5225// :141:22: note: when computing vector element at index '0'
5224// :141:22: note: when computing vector element at index '1'
52265225// :141:22: error: use of undefined value here causes illegal behavior
5226// :141:22: note: when computing vector element at index '1'
52275227// :141:22: error: use of undefined value here causes illegal behavior
5228// :141:22: note: when computing vector element at index '0'
5228// :141:22: note: when computing vector element at index '1'
52295229// :141:22: error: use of undefined value here causes illegal behavior
5230// :141:22: note: when computing vector element at index '0'
5230// :141:22: note: when computing vector element at index '1'
52315231// :141:22: error: use of undefined value here causes illegal behavior
5232// :141:22: note: when computing vector element at index '0'
5232// :141:22: note: when computing vector element at index '1'
52335233// :141:22: error: use of undefined value here causes illegal behavior
52345234// :141:22: note: when computing vector element at index '1'
52355235// :141:22: error: use of undefined value here causes illegal behavior
5236// :141:22: note: when computing vector element at index '0'
5236// :141:22: note: when computing vector element at index '1'
52375237// :141:22: error: use of undefined value here causes illegal behavior
5238// :141:22: note: when computing vector element at index '0'
5238// :141:22: note: when computing vector element at index '1'
52395239// :141:22: error: use of undefined value here causes illegal behavior
5240// :141:22: note: when computing vector element at index '0'
5240// :141:22: note: when computing vector element at index '1'
52415241// :141:25: error: use of undefined value here causes illegal behavior
52425242// :141:25: error: use of undefined value here causes illegal behavior
5243// :141:25: note: when computing vector element at index '0'
52445243// :141:25: error: use of undefined value here causes illegal behavior
5245// :141:25: note: when computing vector element at index '0'
52465244// :141:25: error: use of undefined value here causes illegal behavior
5247// :141:25: note: when computing vector element at index '1'
52485245// :141:25: error: use of undefined value here causes illegal behavior
5249// :141:25: note: when computing vector element at index '0'
52505246// :141:25: error: use of undefined value here causes illegal behavior
5251// :141:25: note: when computing vector element at index '0'
52525247// :141:25: error: use of undefined value here causes illegal behavior
52535248// :141:25: error: use of undefined value here causes illegal behavior
5254// :141:25: note: when computing vector element at index '0'
52555249// :141:25: error: use of undefined value here causes illegal behavior
5256// :141:25: note: when computing vector element at index '0'
52575250// :141:25: error: use of undefined value here causes illegal behavior
5258// :141:25: note: when computing vector element at index '1'
52595251// :141:25: error: use of undefined value here causes illegal behavior
5260// :141:25: note: when computing vector element at index '0'
52615252// :141:25: error: use of undefined value here causes illegal behavior
52625253// :141:25: note: when computing vector element at index '0'
52635254// :141:25: error: use of undefined value here causes illegal behavior
5264// :141:25: error: use of undefined value here causes illegal behavior
52655255// :141:25: note: when computing vector element at index '0'
52665256// :141:25: error: use of undefined value here causes illegal behavior
52675257// :141:25: note: when computing vector element at index '0'
52685258// :141:25: error: use of undefined value here causes illegal behavior
5269// :141:25: note: when computing vector element at index '1'
5270// :141:25: error: use of undefined value here causes illegal behavior
52715259// :141:25: note: when computing vector element at index '0'
52725260// :141:25: error: use of undefined value here causes illegal behavior
52735261// :141:25: note: when computing vector element at index '0'
52745262// :141:25: error: use of undefined value here causes illegal behavior
5263// :141:25: note: when computing vector element at index '0'
52755264// :141:25: error: use of undefined value here causes illegal behavior
52765265// :141:25: note: when computing vector element at index '0'
52775266// :141:25: error: use of undefined value here causes illegal behavior
52785267// :141:25: note: when computing vector element at index '0'
52795268// :141:25: error: use of undefined value here causes illegal behavior
5280// :141:25: note: when computing vector element at index '1'
5269// :141:25: note: when computing vector element at index '0'
52815270// :141:25: error: use of undefined value here causes illegal behavior
52825271// :141:25: note: when computing vector element at index '0'
52835272// :141:25: error: use of undefined value here causes illegal behavior
52845273// :141:25: note: when computing vector element at index '0'
52855274// :141:25: error: use of undefined value here causes illegal behavior
5275// :141:25: note: when computing vector element at index '0'
52865276// :141:25: error: use of undefined value here causes illegal behavior
52875277// :141:25: note: when computing vector element at index '0'
52885278// :141:25: error: use of undefined value here causes illegal behavior
52895279// :141:25: note: when computing vector element at index '0'
52905280// :141:25: error: use of undefined value here causes illegal behavior
5291// :141:25: note: when computing vector element at index '1'
5281// :141:25: note: when computing vector element at index '0'
52925282// :141:25: error: use of undefined value here causes illegal behavior
52935283// :141:25: note: when computing vector element at index '0'
52945284// :141:25: error: use of undefined value here causes illegal behavior
52955285// :141:25: note: when computing vector element at index '0'
52965286// :141:25: error: use of undefined value here causes illegal behavior
5287// :141:25: note: when computing vector element at index '0'
52975288// :141:25: error: use of undefined value here causes illegal behavior
52985289// :141:25: note: when computing vector element at index '0'
52995290// :141:25: error: use of undefined value here causes illegal behavior
53005291// :141:25: note: when computing vector element at index '0'
53015292// :141:25: error: use of undefined value here causes illegal behavior
5302// :141:25: note: when computing vector element at index '1'
5293// :141:25: note: when computing vector element at index '0'
53035294// :141:25: error: use of undefined value here causes illegal behavior
53045295// :141:25: note: when computing vector element at index '0'
53055296// :141:25: error: use of undefined value here causes illegal behavior
53065297// :141:25: note: when computing vector element at index '0'
53075298// :141:25: error: use of undefined value here causes illegal behavior
5299// :141:25: note: when computing vector element at index '0'
53085300// :141:25: error: use of undefined value here causes illegal behavior
53095301// :141:25: note: when computing vector element at index '0'
53105302// :141:25: error: use of undefined value here causes illegal behavior
53115303// :141:25: note: when computing vector element at index '0'
53125304// :141:25: error: use of undefined value here causes illegal behavior
5313// :141:25: note: when computing vector element at index '1'
5305// :141:25: note: when computing vector element at index '0'
53145306// :141:25: error: use of undefined value here causes illegal behavior
53155307// :141:25: note: when computing vector element at index '0'
53165308// :141:25: error: use of undefined value here causes illegal behavior
53175309// :141:25: note: when computing vector element at index '0'
53185310// :141:25: error: use of undefined value here causes illegal behavior
5311// :141:25: note: when computing vector element at index '0'
53195312// :141:25: error: use of undefined value here causes illegal behavior
53205313// :141:25: note: when computing vector element at index '0'
53215314// :141:25: error: use of undefined value here causes illegal behavior
53225315// :141:25: note: when computing vector element at index '0'
53235316// :141:25: error: use of undefined value here causes illegal behavior
5324// :141:25: note: when computing vector element at index '1'
5317// :141:25: note: when computing vector element at index '0'
53255318// :141:25: error: use of undefined value here causes illegal behavior
53265319// :141:25: note: when computing vector element at index '0'
53275320// :141:25: error: use of undefined value here causes illegal behavior
53285321// :141:25: note: when computing vector element at index '0'
53295322// :141:25: error: use of undefined value here causes illegal behavior
5323// :141:25: note: when computing vector element at index '0'
53305324// :141:25: error: use of undefined value here causes illegal behavior
53315325// :141:25: note: when computing vector element at index '0'
53325326// :141:25: error: use of undefined value here causes illegal behavior
53335327// :141:25: note: when computing vector element at index '0'
53345328// :141:25: error: use of undefined value here causes illegal behavior
5335// :141:25: note: when computing vector element at index '1'
5329// :141:25: note: when computing vector element at index '0'
53365330// :141:25: error: use of undefined value here causes illegal behavior
53375331// :141:25: note: when computing vector element at index '0'
53385332// :141:25: error: use of undefined value here causes illegal behavior
53395333// :141:25: note: when computing vector element at index '0'
53405334// :141:25: error: use of undefined value here causes illegal behavior
5335// :141:25: note: when computing vector element at index '0'
53415336// :141:25: error: use of undefined value here causes illegal behavior
53425337// :141:25: note: when computing vector element at index '0'
53435338// :141:25: error: use of undefined value here causes illegal behavior
......@@ -5345,44 +5340,42 @@ const std = @import("std");
53455340// :141:25: error: use of undefined value here causes illegal behavior
53465341// :141:25: note: when computing vector element at index '1'
53475342// :141:25: error: use of undefined value here causes illegal behavior
5348// :141:25: note: when computing vector element at index '0'
5343// :141:25: note: when computing vector element at index '1'
53495344// :141:25: error: use of undefined value here causes illegal behavior
5350// :141:25: note: when computing vector element at index '0'
5345// :141:25: note: when computing vector element at index '1'
53515346// :141:25: error: use of undefined value here causes illegal behavior
5347// :141:25: note: when computing vector element at index '1'
53525348// :141:25: error: use of undefined value here causes illegal behavior
5353// :141:25: note: when computing vector element at index '0'
5349// :141:25: note: when computing vector element at index '1'
53545350// :141:25: error: use of undefined value here causes illegal behavior
5355// :141:25: note: when computing vector element at index '0'
5351// :141:25: note: when computing vector element at index '1'
53565352// :141:25: error: use of undefined value here causes illegal behavior
53575353// :141:25: note: when computing vector element at index '1'
53585354// :141:25: error: use of undefined value here causes illegal behavior
5359// :141:25: note: when computing vector element at index '0'
5355// :141:25: note: when computing vector element at index '1'
53605356// :141:25: error: use of undefined value here causes illegal behavior
5361// :141:25: note: when computing vector element at index '0'
5357// :141:25: note: when computing vector element at index '1'
5358// :141:25: error: use of undefined value here causes illegal behavior
5359// :141:25: note: when computing vector element at index '1'
5360// :141:25: error: use of undefined value here causes illegal behavior
5361// :141:25: note: when computing vector element at index '1'
5362// :145:22: error: use of undefined value here causes illegal behavior
53625363// :145:22: error: use of undefined value here causes illegal behavior
53635364// :145:22: error: use of undefined value here causes illegal behavior
5364// :145:22: note: when computing vector element at index '0'
53655365// :145:22: error: use of undefined value here causes illegal behavior
5366// :145:22: note: when computing vector element at index '0'
53675366// :145:22: error: use of undefined value here causes illegal behavior
5368// :145:22: note: when computing vector element at index '0'
53695367// :145:22: error: use of undefined value here causes illegal behavior
5370// :145:22: note: when computing vector element at index '1'
53715368// :145:22: error: use of undefined value here causes illegal behavior
5372// :145:22: note: when computing vector element at index '0'
53735369// :145:22: error: use of undefined value here causes illegal behavior
5374// :145:22: note: when computing vector element at index '0'
53755370// :145:22: error: use of undefined value here causes illegal behavior
5376// :145:22: note: when computing vector element at index '0'
53775371// :145:22: error: use of undefined value here causes illegal behavior
53785372// :145:22: error: use of undefined value here causes illegal behavior
5379// :145:22: note: when computing vector element at index '0'
53805373// :145:22: error: use of undefined value here causes illegal behavior
53815374// :145:22: note: when computing vector element at index '0'
53825375// :145:22: error: use of undefined value here causes illegal behavior
53835376// :145:22: note: when computing vector element at index '0'
53845377// :145:22: error: use of undefined value here causes illegal behavior
5385// :145:22: note: when computing vector element at index '1'
5378// :145:22: note: when computing vector element at index '0'
53865379// :145:22: error: use of undefined value here causes illegal behavior
53875380// :145:22: note: when computing vector element at index '0'
53885381// :145:22: error: use of undefined value here causes illegal behavior
......@@ -5390,6 +5383,7 @@ const std = @import("std");
53905383// :145:22: error: use of undefined value here causes illegal behavior
53915384// :145:22: note: when computing vector element at index '0'
53925385// :145:22: error: use of undefined value here causes illegal behavior
5386// :145:22: note: when computing vector element at index '0'
53935387// :145:22: error: use of undefined value here causes illegal behavior
53945388// :145:22: note: when computing vector element at index '0'
53955389// :145:22: error: use of undefined value here causes illegal behavior
......@@ -5397,7 +5391,7 @@ const std = @import("std");
53975391// :145:22: error: use of undefined value here causes illegal behavior
53985392// :145:22: note: when computing vector element at index '0'
53995393// :145:22: error: use of undefined value here causes illegal behavior
5400// :145:22: note: when computing vector element at index '1'
5394// :145:22: note: when computing vector element at index '0'
54015395// :145:22: error: use of undefined value here causes illegal behavior
54025396// :145:22: note: when computing vector element at index '0'
54035397// :145:22: error: use of undefined value here causes illegal behavior
......@@ -5405,6 +5399,7 @@ const std = @import("std");
54055399// :145:22: error: use of undefined value here causes illegal behavior
54065400// :145:22: note: when computing vector element at index '0'
54075401// :145:22: error: use of undefined value here causes illegal behavior
5402// :145:22: note: when computing vector element at index '0'
54085403// :145:22: error: use of undefined value here causes illegal behavior
54095404// :145:22: note: when computing vector element at index '0'
54105405// :145:22: error: use of undefined value here causes illegal behavior
......@@ -5412,7 +5407,7 @@ const std = @import("std");
54125407// :145:22: error: use of undefined value here causes illegal behavior
54135408// :145:22: note: when computing vector element at index '0'
54145409// :145:22: error: use of undefined value here causes illegal behavior
5415// :145:22: note: when computing vector element at index '1'
5410// :145:22: note: when computing vector element at index '0'
54165411// :145:22: error: use of undefined value here causes illegal behavior
54175412// :145:22: note: when computing vector element at index '0'
54185413// :145:22: error: use of undefined value here causes illegal behavior
......@@ -5420,6 +5415,7 @@ const std = @import("std");
54205415// :145:22: error: use of undefined value here causes illegal behavior
54215416// :145:22: note: when computing vector element at index '0'
54225417// :145:22: error: use of undefined value here causes illegal behavior
5418// :145:22: note: when computing vector element at index '0'
54235419// :145:22: error: use of undefined value here causes illegal behavior
54245420// :145:22: note: when computing vector element at index '0'
54255421// :145:22: error: use of undefined value here causes illegal behavior
......@@ -5427,7 +5423,7 @@ const std = @import("std");
54275423// :145:22: error: use of undefined value here causes illegal behavior
54285424// :145:22: note: when computing vector element at index '0'
54295425// :145:22: error: use of undefined value here causes illegal behavior
5430// :145:22: note: when computing vector element at index '1'
5426// :145:22: note: when computing vector element at index '0'
54315427// :145:22: error: use of undefined value here causes illegal behavior
54325428// :145:22: note: when computing vector element at index '0'
54335429// :145:22: error: use of undefined value here causes illegal behavior
......@@ -5435,6 +5431,7 @@ const std = @import("std");
54355431// :145:22: error: use of undefined value here causes illegal behavior
54365432// :145:22: note: when computing vector element at index '0'
54375433// :145:22: error: use of undefined value here causes illegal behavior
5434// :145:22: note: when computing vector element at index '0'
54385435// :145:22: error: use of undefined value here causes illegal behavior
54395436// :145:22: note: when computing vector element at index '0'
54405437// :145:22: error: use of undefined value here causes illegal behavior
......@@ -5442,7 +5439,7 @@ const std = @import("std");
54425439// :145:22: error: use of undefined value here causes illegal behavior
54435440// :145:22: note: when computing vector element at index '0'
54445441// :145:22: error: use of undefined value here causes illegal behavior
5445// :145:22: note: when computing vector element at index '1'
5442// :145:22: note: when computing vector element at index '0'
54465443// :145:22: error: use of undefined value here causes illegal behavior
54475444// :145:22: note: when computing vector element at index '0'
54485445// :145:22: error: use of undefined value here causes illegal behavior
......@@ -5450,6 +5447,7 @@ const std = @import("std");
54505447// :145:22: error: use of undefined value here causes illegal behavior
54515448// :145:22: note: when computing vector element at index '0'
54525449// :145:22: error: use of undefined value here causes illegal behavior
5450// :145:22: note: when computing vector element at index '0'
54535451// :145:22: error: use of undefined value here causes illegal behavior
54545452// :145:22: note: when computing vector element at index '0'
54555453// :145:22: error: use of undefined value here causes illegal behavior
......@@ -5457,7 +5455,7 @@ const std = @import("std");
54575455// :145:22: error: use of undefined value here causes illegal behavior
54585456// :145:22: note: when computing vector element at index '0'
54595457// :145:22: error: use of undefined value here causes illegal behavior
5460// :145:22: note: when computing vector element at index '1'
5458// :145:22: note: when computing vector element at index '0'
54615459// :145:22: error: use of undefined value here causes illegal behavior
54625460// :145:22: note: when computing vector element at index '0'
54635461// :145:22: error: use of undefined value here causes illegal behavior
......@@ -5465,6 +5463,7 @@ const std = @import("std");
54655463// :145:22: error: use of undefined value here causes illegal behavior
54665464// :145:22: note: when computing vector element at index '0'
54675465// :145:22: error: use of undefined value here causes illegal behavior
5466// :145:22: note: when computing vector element at index '0'
54685467// :145:22: error: use of undefined value here causes illegal behavior
54695468// :145:22: note: when computing vector element at index '0'
54705469// :145:22: error: use of undefined value here causes illegal behavior
......@@ -5472,7 +5471,7 @@ const std = @import("std");
54725471// :145:22: error: use of undefined value here causes illegal behavior
54735472// :145:22: note: when computing vector element at index '0'
54745473// :145:22: error: use of undefined value here causes illegal behavior
5475// :145:22: note: when computing vector element at index '1'
5474// :145:22: note: when computing vector element at index '0'
54765475// :145:22: error: use of undefined value here causes illegal behavior
54775476// :145:22: note: when computing vector element at index '0'
54785477// :145:22: error: use of undefined value here causes illegal behavior
......@@ -5480,6 +5479,7 @@ const std = @import("std");
54805479// :145:22: error: use of undefined value here causes illegal behavior
54815480// :145:22: note: when computing vector element at index '0'
54825481// :145:22: error: use of undefined value here causes illegal behavior
5482// :145:22: note: when computing vector element at index '0'
54835483// :145:22: error: use of undefined value here causes illegal behavior
54845484// :145:22: note: when computing vector element at index '0'
54855485// :145:22: error: use of undefined value here causes illegal behavior
......@@ -5487,7 +5487,7 @@ const std = @import("std");
54875487// :145:22: error: use of undefined value here causes illegal behavior
54885488// :145:22: note: when computing vector element at index '0'
54895489// :145:22: error: use of undefined value here causes illegal behavior
5490// :145:22: note: when computing vector element at index '1'
5490// :145:22: note: when computing vector element at index '0'
54915491// :145:22: error: use of undefined value here causes illegal behavior
54925492// :145:22: note: when computing vector element at index '0'
54935493// :145:22: error: use of undefined value here causes illegal behavior
......@@ -5495,6 +5495,7 @@ const std = @import("std");
54955495// :145:22: error: use of undefined value here causes illegal behavior
54965496// :145:22: note: when computing vector element at index '0'
54975497// :145:22: error: use of undefined value here causes illegal behavior
5498// :145:22: note: when computing vector element at index '0'
54985499// :145:22: error: use of undefined value here causes illegal behavior
54995500// :145:22: note: when computing vector element at index '0'
55005501// :145:22: error: use of undefined value here causes illegal behavior
......@@ -5504,126 +5505,120 @@ const std = @import("std");
55045505// :145:22: error: use of undefined value here causes illegal behavior
55055506// :145:22: note: when computing vector element at index '1'
55065507// :145:22: error: use of undefined value here causes illegal behavior
5507// :145:22: note: when computing vector element at index '0'
5508// :145:22: error: use of undefined value here causes illegal behavior
5509// :145:22: note: when computing vector element at index '0'
5508// :145:22: note: when computing vector element at index '1'
55105509// :145:22: error: use of undefined value here causes illegal behavior
5511// :145:22: note: when computing vector element at index '0'
5510// :145:22: note: when computing vector element at index '1'
55125511// :145:22: error: use of undefined value here causes illegal behavior
5512// :145:22: note: when computing vector element at index '1'
55135513// :145:22: error: use of undefined value here causes illegal behavior
5514// :145:22: note: when computing vector element at index '0'
5514// :145:22: note: when computing vector element at index '1'
55155515// :145:22: error: use of undefined value here causes illegal behavior
5516// :145:22: note: when computing vector element at index '0'
5516// :145:22: note: when computing vector element at index '1'
55175517// :145:22: error: use of undefined value here causes illegal behavior
5518// :145:22: note: when computing vector element at index '0'
5518// :145:22: note: when computing vector element at index '1'
55195519// :145:22: error: use of undefined value here causes illegal behavior
55205520// :145:22: note: when computing vector element at index '1'
55215521// :145:22: error: use of undefined value here causes illegal behavior
5522// :145:22: note: when computing vector element at index '0'
5522// :145:22: note: when computing vector element at index '1'
55235523// :145:22: error: use of undefined value here causes illegal behavior
5524// :145:22: note: when computing vector element at index '0'
5524// :145:22: note: when computing vector element at index '1'
55255525// :145:22: error: use of undefined value here causes illegal behavior
5526// :145:22: note: when computing vector element at index '0'
5526// :145:22: note: when computing vector element at index '1'
55275527// :145:25: error: use of undefined value here causes illegal behavior
55285528// :145:25: error: use of undefined value here causes illegal behavior
5529// :145:25: note: when computing vector element at index '0'
55305529// :145:25: error: use of undefined value here causes illegal behavior
5531// :145:25: note: when computing vector element at index '0'
55325530// :145:25: error: use of undefined value here causes illegal behavior
5533// :145:25: note: when computing vector element at index '1'
55345531// :145:25: error: use of undefined value here causes illegal behavior
5535// :145:25: note: when computing vector element at index '0'
55365532// :145:25: error: use of undefined value here causes illegal behavior
5537// :145:25: note: when computing vector element at index '0'
55385533// :145:25: error: use of undefined value here causes illegal behavior
55395534// :145:25: error: use of undefined value here causes illegal behavior
5540// :145:25: note: when computing vector element at index '0'
55415535// :145:25: error: use of undefined value here causes illegal behavior
5542// :145:25: note: when computing vector element at index '0'
55435536// :145:25: error: use of undefined value here causes illegal behavior
5544// :145:25: note: when computing vector element at index '1'
55455537// :145:25: error: use of undefined value here causes illegal behavior
5546// :145:25: note: when computing vector element at index '0'
55475538// :145:25: error: use of undefined value here causes illegal behavior
55485539// :145:25: note: when computing vector element at index '0'
55495540// :145:25: error: use of undefined value here causes illegal behavior
5550// :145:25: error: use of undefined value here causes illegal behavior
55515541// :145:25: note: when computing vector element at index '0'
55525542// :145:25: error: use of undefined value here causes illegal behavior
55535543// :145:25: note: when computing vector element at index '0'
55545544// :145:25: error: use of undefined value here causes illegal behavior
5555// :145:25: note: when computing vector element at index '1'
5556// :145:25: error: use of undefined value here causes illegal behavior
55575545// :145:25: note: when computing vector element at index '0'
55585546// :145:25: error: use of undefined value here causes illegal behavior
55595547// :145:25: note: when computing vector element at index '0'
55605548// :145:25: error: use of undefined value here causes illegal behavior
5549// :145:25: note: when computing vector element at index '0'
55615550// :145:25: error: use of undefined value here causes illegal behavior
55625551// :145:25: note: when computing vector element at index '0'
55635552// :145:25: error: use of undefined value here causes illegal behavior
55645553// :145:25: note: when computing vector element at index '0'
55655554// :145:25: error: use of undefined value here causes illegal behavior
5566// :145:25: note: when computing vector element at index '1'
5555// :145:25: note: when computing vector element at index '0'
55675556// :145:25: error: use of undefined value here causes illegal behavior
55685557// :145:25: note: when computing vector element at index '0'
55695558// :145:25: error: use of undefined value here causes illegal behavior
55705559// :145:25: note: when computing vector element at index '0'
55715560// :145:25: error: use of undefined value here causes illegal behavior
5561// :145:25: note: when computing vector element at index '0'
55725562// :145:25: error: use of undefined value here causes illegal behavior
55735563// :145:25: note: when computing vector element at index '0'
55745564// :145:25: error: use of undefined value here causes illegal behavior
55755565// :145:25: note: when computing vector element at index '0'
55765566// :145:25: error: use of undefined value here causes illegal behavior
5577// :145:25: note: when computing vector element at index '1'
5567// :145:25: note: when computing vector element at index '0'
55785568// :145:25: error: use of undefined value here causes illegal behavior
55795569// :145:25: note: when computing vector element at index '0'
55805570// :145:25: error: use of undefined value here causes illegal behavior
55815571// :145:25: note: when computing vector element at index '0'
55825572// :145:25: error: use of undefined value here causes illegal behavior
5573// :145:25: note: when computing vector element at index '0'
55835574// :145:25: error: use of undefined value here causes illegal behavior
55845575// :145:25: note: when computing vector element at index '0'
55855576// :145:25: error: use of undefined value here causes illegal behavior
55865577// :145:25: note: when computing vector element at index '0'
55875578// :145:25: error: use of undefined value here causes illegal behavior
5588// :145:25: note: when computing vector element at index '1'
5579// :145:25: note: when computing vector element at index '0'
55895580// :145:25: error: use of undefined value here causes illegal behavior
55905581// :145:25: note: when computing vector element at index '0'
55915582// :145:25: error: use of undefined value here causes illegal behavior
55925583// :145:25: note: when computing vector element at index '0'
55935584// :145:25: error: use of undefined value here causes illegal behavior
5585// :145:25: note: when computing vector element at index '0'
55945586// :145:25: error: use of undefined value here causes illegal behavior
55955587// :145:25: note: when computing vector element at index '0'
55965588// :145:25: error: use of undefined value here causes illegal behavior
55975589// :145:25: note: when computing vector element at index '0'
55985590// :145:25: error: use of undefined value here causes illegal behavior
5599// :145:25: note: when computing vector element at index '1'
5591// :145:25: note: when computing vector element at index '0'
56005592// :145:25: error: use of undefined value here causes illegal behavior
56015593// :145:25: note: when computing vector element at index '0'
56025594// :145:25: error: use of undefined value here causes illegal behavior
56035595// :145:25: note: when computing vector element at index '0'
56045596// :145:25: error: use of undefined value here causes illegal behavior
5597// :145:25: note: when computing vector element at index '0'
56055598// :145:25: error: use of undefined value here causes illegal behavior
56065599// :145:25: note: when computing vector element at index '0'
56075600// :145:25: error: use of undefined value here causes illegal behavior
56085601// :145:25: note: when computing vector element at index '0'
56095602// :145:25: error: use of undefined value here causes illegal behavior
5610// :145:25: note: when computing vector element at index '1'
5603// :145:25: note: when computing vector element at index '0'
56115604// :145:25: error: use of undefined value here causes illegal behavior
56125605// :145:25: note: when computing vector element at index '0'
56135606// :145:25: error: use of undefined value here causes illegal behavior
56145607// :145:25: note: when computing vector element at index '0'
56155608// :145:25: error: use of undefined value here causes illegal behavior
5609// :145:25: note: when computing vector element at index '0'
56165610// :145:25: error: use of undefined value here causes illegal behavior
56175611// :145:25: note: when computing vector element at index '0'
56185612// :145:25: error: use of undefined value here causes illegal behavior
56195613// :145:25: note: when computing vector element at index '0'
56205614// :145:25: error: use of undefined value here causes illegal behavior
5621// :145:25: note: when computing vector element at index '1'
5615// :145:25: note: when computing vector element at index '0'
56225616// :145:25: error: use of undefined value here causes illegal behavior
56235617// :145:25: note: when computing vector element at index '0'
56245618// :145:25: error: use of undefined value here causes illegal behavior
56255619// :145:25: note: when computing vector element at index '0'
56265620// :145:25: error: use of undefined value here causes illegal behavior
5621// :145:25: note: when computing vector element at index '0'
56275622// :145:25: error: use of undefined value here causes illegal behavior
56285623// :145:25: note: when computing vector element at index '0'
56295624// :145:25: error: use of undefined value here causes illegal behavior
......@@ -5631,20 +5626,25 @@ const std = @import("std");
56315626// :145:25: error: use of undefined value here causes illegal behavior
56325627// :145:25: note: when computing vector element at index '1'
56335628// :145:25: error: use of undefined value here causes illegal behavior
5634// :145:25: note: when computing vector element at index '0'
5629// :145:25: note: when computing vector element at index '1'
56355630// :145:25: error: use of undefined value here causes illegal behavior
5636// :145:25: note: when computing vector element at index '0'
5631// :145:25: note: when computing vector element at index '1'
5632// :145:25: error: use of undefined value here causes illegal behavior
5633// :145:25: note: when computing vector element at index '1'
56375634// :145:25: error: use of undefined value here causes illegal behavior
5635// :145:25: note: when computing vector element at index '1'
56385636// :145:25: error: use of undefined value here causes illegal behavior
5639// :145:25: note: when computing vector element at index '0'
5637// :145:25: note: when computing vector element at index '1'
56405638// :145:25: error: use of undefined value here causes illegal behavior
5641// :145:25: note: when computing vector element at index '0'
5639// :145:25: note: when computing vector element at index '1'
56425640// :145:25: error: use of undefined value here causes illegal behavior
56435641// :145:25: note: when computing vector element at index '1'
56445642// :145:25: error: use of undefined value here causes illegal behavior
5645// :145:25: note: when computing vector element at index '0'
5643// :145:25: note: when computing vector element at index '1'
56465644// :145:25: error: use of undefined value here causes illegal behavior
5647// :145:25: note: when computing vector element at index '0'
5645// :145:25: note: when computing vector element at index '1'
5646// :145:25: error: use of undefined value here causes illegal behavior
5647// :145:25: note: when computing vector element at index '1'
56485648// :151:21: error: use of undefined value here causes illegal behavior
56495649// :151:21: error: use of undefined value here causes illegal behavior
56505650// :151:21: error: use of undefined value here causes illegal behavior
......@@ -5652,21 +5652,13 @@ const std = @import("std");
56525652// :151:21: error: use of undefined value here causes illegal behavior
56535653// :151:21: error: use of undefined value here causes illegal behavior
56545654// :151:21: error: use of undefined value here causes illegal behavior
5655// :151:21: note: when computing vector element at index '1'
56565655// :151:21: error: use of undefined value here causes illegal behavior
5657// :151:21: note: when computing vector element at index '1'
56585656// :151:21: error: use of undefined value here causes illegal behavior
5659// :151:21: note: when computing vector element at index '1'
56605657// :151:21: error: use of undefined value here causes illegal behavior
5661// :151:21: note: when computing vector element at index '1'
56625658// :151:21: error: use of undefined value here causes illegal behavior
5663// :151:21: note: when computing vector element at index '0'
56645659// :151:21: error: use of undefined value here causes illegal behavior
5665// :151:21: note: when computing vector element at index '0'
56665660// :151:21: error: use of undefined value here causes illegal behavior
5667// :151:21: note: when computing vector element at index '0'
56685661// :151:21: error: use of undefined value here causes illegal behavior
5669// :151:21: note: when computing vector element at index '0'
56705662// :151:21: error: use of undefined value here causes illegal behavior
56715663// :151:21: error: use of undefined value here causes illegal behavior
56725664// :151:21: error: use of undefined value here causes illegal behavior
......@@ -5674,21 +5666,13 @@ const std = @import("std");
56745666// :151:21: error: use of undefined value here causes illegal behavior
56755667// :151:21: error: use of undefined value here causes illegal behavior
56765668// :151:21: error: use of undefined value here causes illegal behavior
5677// :151:21: note: when computing vector element at index '1'
56785669// :151:21: error: use of undefined value here causes illegal behavior
5679// :151:21: note: when computing vector element at index '1'
56805670// :151:21: error: use of undefined value here causes illegal behavior
5681// :151:21: note: when computing vector element at index '1'
56825671// :151:21: error: use of undefined value here causes illegal behavior
5683// :151:21: note: when computing vector element at index '1'
56845672// :151:21: error: use of undefined value here causes illegal behavior
5685// :151:21: note: when computing vector element at index '0'
56865673// :151:21: error: use of undefined value here causes illegal behavior
5687// :151:21: note: when computing vector element at index '0'
56885674// :151:21: error: use of undefined value here causes illegal behavior
5689// :151:21: note: when computing vector element at index '0'
56905675// :151:21: error: use of undefined value here causes illegal behavior
5691// :151:21: note: when computing vector element at index '0'
56925676// :151:21: error: use of undefined value here causes illegal behavior
56935677// :151:21: error: use of undefined value here causes illegal behavior
56945678// :151:21: error: use of undefined value here causes illegal behavior
......@@ -5696,21 +5680,13 @@ const std = @import("std");
56965680// :151:21: error: use of undefined value here causes illegal behavior
56975681// :151:21: error: use of undefined value here causes illegal behavior
56985682// :151:21: error: use of undefined value here causes illegal behavior
5699// :151:21: note: when computing vector element at index '1'
57005683// :151:21: error: use of undefined value here causes illegal behavior
5701// :151:21: note: when computing vector element at index '1'
57025684// :151:21: error: use of undefined value here causes illegal behavior
5703// :151:21: note: when computing vector element at index '1'
57045685// :151:21: error: use of undefined value here causes illegal behavior
5705// :151:21: note: when computing vector element at index '1'
57065686// :151:21: error: use of undefined value here causes illegal behavior
5707// :151:21: note: when computing vector element at index '0'
57085687// :151:21: error: use of undefined value here causes illegal behavior
5709// :151:21: note: when computing vector element at index '0'
57105688// :151:21: error: use of undefined value here causes illegal behavior
5711// :151:21: note: when computing vector element at index '0'
57125689// :151:21: error: use of undefined value here causes illegal behavior
5713// :151:21: note: when computing vector element at index '0'
57145690// :151:21: error: use of undefined value here causes illegal behavior
57155691// :151:21: error: use of undefined value here causes illegal behavior
57165692// :151:21: error: use of undefined value here causes illegal behavior
......@@ -5718,21 +5694,13 @@ const std = @import("std");
57185694// :151:21: error: use of undefined value here causes illegal behavior
57195695// :151:21: error: use of undefined value here causes illegal behavior
57205696// :151:21: error: use of undefined value here causes illegal behavior
5721// :151:21: note: when computing vector element at index '1'
57225697// :151:21: error: use of undefined value here causes illegal behavior
5723// :151:21: note: when computing vector element at index '1'
57245698// :151:21: error: use of undefined value here causes illegal behavior
5725// :151:21: note: when computing vector element at index '1'
57265699// :151:21: error: use of undefined value here causes illegal behavior
5727// :151:21: note: when computing vector element at index '1'
57285700// :151:21: error: use of undefined value here causes illegal behavior
5729// :151:21: note: when computing vector element at index '0'
57305701// :151:21: error: use of undefined value here causes illegal behavior
5731// :151:21: note: when computing vector element at index '0'
57325702// :151:21: error: use of undefined value here causes illegal behavior
5733// :151:21: note: when computing vector element at index '0'
57345703// :151:21: error: use of undefined value here causes illegal behavior
5735// :151:21: note: when computing vector element at index '0'
57365704// :151:21: error: use of undefined value here causes illegal behavior
57375705// :151:21: error: use of undefined value here causes illegal behavior
57385706// :151:21: error: use of undefined value here causes illegal behavior
......@@ -5740,13 +5708,9 @@ const std = @import("std");
57405708// :151:21: error: use of undefined value here causes illegal behavior
57415709// :151:21: error: use of undefined value here causes illegal behavior
57425710// :151:21: error: use of undefined value here causes illegal behavior
5743// :151:21: note: when computing vector element at index '1'
57445711// :151:21: error: use of undefined value here causes illegal behavior
5745// :151:21: note: when computing vector element at index '1'
57465712// :151:21: error: use of undefined value here causes illegal behavior
5747// :151:21: note: when computing vector element at index '1'
57485713// :151:21: error: use of undefined value here causes illegal behavior
5749// :151:21: note: when computing vector element at index '1'
57505714// :151:21: error: use of undefined value here causes illegal behavior
57515715// :151:21: note: when computing vector element at index '0'
57525716// :151:21: error: use of undefined value here causes illegal behavior
......@@ -5756,19 +5720,21 @@ const std = @import("std");
57565720// :151:21: error: use of undefined value here causes illegal behavior
57575721// :151:21: note: when computing vector element at index '0'
57585722// :151:21: error: use of undefined value here causes illegal behavior
5723// :151:21: note: when computing vector element at index '0'
57595724// :151:21: error: use of undefined value here causes illegal behavior
5725// :151:21: note: when computing vector element at index '0'
57605726// :151:21: error: use of undefined value here causes illegal behavior
5727// :151:21: note: when computing vector element at index '0'
57615728// :151:21: error: use of undefined value here causes illegal behavior
5729// :151:21: note: when computing vector element at index '0'
57625730// :151:21: error: use of undefined value here causes illegal behavior
5731// :151:21: note: when computing vector element at index '0'
57635732// :151:21: error: use of undefined value here causes illegal behavior
5733// :151:21: note: when computing vector element at index '0'
57645734// :151:21: error: use of undefined value here causes illegal behavior
5765// :151:21: note: when computing vector element at index '1'
5766// :151:21: error: use of undefined value here causes illegal behavior
5767// :151:21: note: when computing vector element at index '1'
5768// :151:21: error: use of undefined value here causes illegal behavior
5769// :151:21: note: when computing vector element at index '1'
5735// :151:21: note: when computing vector element at index '0'
57705736// :151:21: error: use of undefined value here causes illegal behavior
5771// :151:21: note: when computing vector element at index '1'
5737// :151:21: note: when computing vector element at index '0'
57725738// :151:21: error: use of undefined value here causes illegal behavior
57735739// :151:21: note: when computing vector element at index '0'
57745740// :151:21: error: use of undefined value here causes illegal behavior
......@@ -5778,19 +5744,25 @@ const std = @import("std");
57785744// :151:21: error: use of undefined value here causes illegal behavior
57795745// :151:21: note: when computing vector element at index '0'
57805746// :151:21: error: use of undefined value here causes illegal behavior
5747// :151:21: note: when computing vector element at index '0'
57815748// :151:21: error: use of undefined value here causes illegal behavior
5749// :151:21: note: when computing vector element at index '0'
57825750// :151:21: error: use of undefined value here causes illegal behavior
5751// :151:21: note: when computing vector element at index '0'
57835752// :151:21: error: use of undefined value here causes illegal behavior
5753// :151:21: note: when computing vector element at index '0'
57845754// :151:21: error: use of undefined value here causes illegal behavior
5755// :151:21: note: when computing vector element at index '0'
57855756// :151:21: error: use of undefined value here causes illegal behavior
5757// :151:21: note: when computing vector element at index '0'
57865758// :151:21: error: use of undefined value here causes illegal behavior
5787// :151:21: note: when computing vector element at index '1'
5759// :151:21: note: when computing vector element at index '0'
57885760// :151:21: error: use of undefined value here causes illegal behavior
5789// :151:21: note: when computing vector element at index '1'
5761// :151:21: note: when computing vector element at index '0'
57905762// :151:21: error: use of undefined value here causes illegal behavior
5791// :151:21: note: when computing vector element at index '1'
5763// :151:21: note: when computing vector element at index '0'
57925764// :151:21: error: use of undefined value here causes illegal behavior
5793// :151:21: note: when computing vector element at index '1'
5765// :151:21: note: when computing vector element at index '0'
57945766// :151:21: error: use of undefined value here causes illegal behavior
57955767// :151:21: note: when computing vector element at index '0'
57965768// :151:21: error: use of undefined value here causes illegal behavior
......@@ -5800,19 +5772,25 @@ const std = @import("std");
58005772// :151:21: error: use of undefined value here causes illegal behavior
58015773// :151:21: note: when computing vector element at index '0'
58025774// :151:21: error: use of undefined value here causes illegal behavior
5775// :151:21: note: when computing vector element at index '0'
58035776// :151:21: error: use of undefined value here causes illegal behavior
5777// :151:21: note: when computing vector element at index '0'
58045778// :151:21: error: use of undefined value here causes illegal behavior
5779// :151:21: note: when computing vector element at index '0'
58055780// :151:21: error: use of undefined value here causes illegal behavior
5781// :151:21: note: when computing vector element at index '0'
58065782// :151:21: error: use of undefined value here causes illegal behavior
5783// :151:21: note: when computing vector element at index '0'
58075784// :151:21: error: use of undefined value here causes illegal behavior
5785// :151:21: note: when computing vector element at index '0'
58085786// :151:21: error: use of undefined value here causes illegal behavior
5809// :151:21: note: when computing vector element at index '1'
5787// :151:21: note: when computing vector element at index '0'
58105788// :151:21: error: use of undefined value here causes illegal behavior
5811// :151:21: note: when computing vector element at index '1'
5789// :151:21: note: when computing vector element at index '0'
58125790// :151:21: error: use of undefined value here causes illegal behavior
5813// :151:21: note: when computing vector element at index '1'
5791// :151:21: note: when computing vector element at index '0'
58145792// :151:21: error: use of undefined value here causes illegal behavior
5815// :151:21: note: when computing vector element at index '1'
5793// :151:21: note: when computing vector element at index '0'
58165794// :151:21: error: use of undefined value here causes illegal behavior
58175795// :151:21: note: when computing vector element at index '0'
58185796// :151:21: error: use of undefined value here causes illegal behavior
......@@ -5822,11 +5800,17 @@ const std = @import("std");
58225800// :151:21: error: use of undefined value here causes illegal behavior
58235801// :151:21: note: when computing vector element at index '0'
58245802// :151:21: error: use of undefined value here causes illegal behavior
5803// :151:21: note: when computing vector element at index '1'
58255804// :151:21: error: use of undefined value here causes illegal behavior
5805// :151:21: note: when computing vector element at index '1'
58265806// :151:21: error: use of undefined value here causes illegal behavior
5807// :151:21: note: when computing vector element at index '1'
58275808// :151:21: error: use of undefined value here causes illegal behavior
5809// :151:21: note: when computing vector element at index '1'
58285810// :151:21: error: use of undefined value here causes illegal behavior
5811// :151:21: note: when computing vector element at index '1'
58295812// :151:21: error: use of undefined value here causes illegal behavior
5813// :151:21: note: when computing vector element at index '1'
58305814// :151:21: error: use of undefined value here causes illegal behavior
58315815// :151:21: note: when computing vector element at index '1'
58325816// :151:21: error: use of undefined value here causes illegal behavior
......@@ -5836,19 +5820,25 @@ const std = @import("std");
58365820// :151:21: error: use of undefined value here causes illegal behavior
58375821// :151:21: note: when computing vector element at index '1'
58385822// :151:21: error: use of undefined value here causes illegal behavior
5839// :151:21: note: when computing vector element at index '0'
5823// :151:21: note: when computing vector element at index '1'
58405824// :151:21: error: use of undefined value here causes illegal behavior
5841// :151:21: note: when computing vector element at index '0'
5825// :151:21: note: when computing vector element at index '1'
58425826// :151:21: error: use of undefined value here causes illegal behavior
5843// :151:21: note: when computing vector element at index '0'
5827// :151:21: note: when computing vector element at index '1'
58445828// :151:21: error: use of undefined value here causes illegal behavior
5845// :151:21: note: when computing vector element at index '0'
5829// :151:21: note: when computing vector element at index '1'
58465830// :151:21: error: use of undefined value here causes illegal behavior
5831// :151:21: note: when computing vector element at index '1'
58475832// :151:21: error: use of undefined value here causes illegal behavior
5833// :151:21: note: when computing vector element at index '1'
58485834// :151:21: error: use of undefined value here causes illegal behavior
5835// :151:21: note: when computing vector element at index '1'
58495836// :151:21: error: use of undefined value here causes illegal behavior
5837// :151:21: note: when computing vector element at index '1'
58505838// :151:21: error: use of undefined value here causes illegal behavior
5839// :151:21: note: when computing vector element at index '1'
58515840// :151:21: error: use of undefined value here causes illegal behavior
5841// :151:21: note: when computing vector element at index '1'
58525842// :151:21: error: use of undefined value here causes illegal behavior
58535843// :151:21: note: when computing vector element at index '1'
58545844// :151:21: error: use of undefined value here causes illegal behavior
......@@ -5858,19 +5848,25 @@ const std = @import("std");
58585848// :151:21: error: use of undefined value here causes illegal behavior
58595849// :151:21: note: when computing vector element at index '1'
58605850// :151:21: error: use of undefined value here causes illegal behavior
5861// :151:21: note: when computing vector element at index '0'
5851// :151:21: note: when computing vector element at index '1'
58625852// :151:21: error: use of undefined value here causes illegal behavior
5863// :151:21: note: when computing vector element at index '0'
5853// :151:21: note: when computing vector element at index '1'
58645854// :151:21: error: use of undefined value here causes illegal behavior
5865// :151:21: note: when computing vector element at index '0'
5855// :151:21: note: when computing vector element at index '1'
58665856// :151:21: error: use of undefined value here causes illegal behavior
5867// :151:21: note: when computing vector element at index '0'
5857// :151:21: note: when computing vector element at index '1'
58685858// :151:21: error: use of undefined value here causes illegal behavior
5859// :151:21: note: when computing vector element at index '1'
58695860// :151:21: error: use of undefined value here causes illegal behavior
5861// :151:21: note: when computing vector element at index '1'
58705862// :151:21: error: use of undefined value here causes illegal behavior
5863// :151:21: note: when computing vector element at index '1'
58715864// :151:21: error: use of undefined value here causes illegal behavior
5865// :151:21: note: when computing vector element at index '1'
58725866// :151:21: error: use of undefined value here causes illegal behavior
5867// :151:21: note: when computing vector element at index '1'
58735868// :151:21: error: use of undefined value here causes illegal behavior
5869// :151:21: note: when computing vector element at index '1'
58745870// :151:21: error: use of undefined value here causes illegal behavior
58755871// :151:21: note: when computing vector element at index '1'
58765872// :151:21: error: use of undefined value here causes illegal behavior
......@@ -5880,13 +5876,17 @@ const std = @import("std");
58805876// :151:21: error: use of undefined value here causes illegal behavior
58815877// :151:21: note: when computing vector element at index '1'
58825878// :151:21: error: use of undefined value here causes illegal behavior
5883// :151:21: note: when computing vector element at index '0'
5879// :151:21: note: when computing vector element at index '1'
58845880// :151:21: error: use of undefined value here causes illegal behavior
5885// :151:21: note: when computing vector element at index '0'
5881// :151:21: note: when computing vector element at index '1'
58865882// :151:21: error: use of undefined value here causes illegal behavior
5887// :151:21: note: when computing vector element at index '0'
5883// :151:21: note: when computing vector element at index '1'
58885884// :151:21: error: use of undefined value here causes illegal behavior
5889// :151:21: note: when computing vector element at index '0'
5885// :151:21: note: when computing vector element at index '1'
5886// :151:21: error: use of undefined value here causes illegal behavior
5887// :151:21: note: when computing vector element at index '1'
5888// :151:21: error: use of undefined value here causes illegal behavior
5889// :151:21: note: when computing vector element at index '1'
58905890// :155:30: error: use of undefined value here causes illegal behavior
58915891// :155:30: error: use of undefined value here causes illegal behavior
58925892// :155:30: error: use of undefined value here causes illegal behavior
......@@ -5894,21 +5894,13 @@ const std = @import("std");
58945894// :155:30: error: use of undefined value here causes illegal behavior
58955895// :155:30: error: use of undefined value here causes illegal behavior
58965896// :155:30: error: use of undefined value here causes illegal behavior
5897// :155:30: note: when computing vector element at index '1'
58985897// :155:30: error: use of undefined value here causes illegal behavior
5899// :155:30: note: when computing vector element at index '1'
59005898// :155:30: error: use of undefined value here causes illegal behavior
5901// :155:30: note: when computing vector element at index '1'
59025899// :155:30: error: use of undefined value here causes illegal behavior
5903// :155:30: note: when computing vector element at index '1'
59045900// :155:30: error: use of undefined value here causes illegal behavior
5905// :155:30: note: when computing vector element at index '0'
59065901// :155:30: error: use of undefined value here causes illegal behavior
5907// :155:30: note: when computing vector element at index '0'
59085902// :155:30: error: use of undefined value here causes illegal behavior
5909// :155:30: note: when computing vector element at index '0'
59105903// :155:30: error: use of undefined value here causes illegal behavior
5911// :155:30: note: when computing vector element at index '0'
59125904// :155:30: error: use of undefined value here causes illegal behavior
59135905// :155:30: error: use of undefined value here causes illegal behavior
59145906// :155:30: error: use of undefined value here causes illegal behavior
......@@ -5916,21 +5908,13 @@ const std = @import("std");
59165908// :155:30: error: use of undefined value here causes illegal behavior
59175909// :155:30: error: use of undefined value here causes illegal behavior
59185910// :155:30: error: use of undefined value here causes illegal behavior
5919// :155:30: note: when computing vector element at index '1'
59205911// :155:30: error: use of undefined value here causes illegal behavior
5921// :155:30: note: when computing vector element at index '1'
59225912// :155:30: error: use of undefined value here causes illegal behavior
5923// :155:30: note: when computing vector element at index '1'
59245913// :155:30: error: use of undefined value here causes illegal behavior
5925// :155:30: note: when computing vector element at index '1'
59265914// :155:30: error: use of undefined value here causes illegal behavior
5927// :155:30: note: when computing vector element at index '0'
59285915// :155:30: error: use of undefined value here causes illegal behavior
5929// :155:30: note: when computing vector element at index '0'
59305916// :155:30: error: use of undefined value here causes illegal behavior
5931// :155:30: note: when computing vector element at index '0'
59325917// :155:30: error: use of undefined value here causes illegal behavior
5933// :155:30: note: when computing vector element at index '0'
59345918// :155:30: error: use of undefined value here causes illegal behavior
59355919// :155:30: error: use of undefined value here causes illegal behavior
59365920// :155:30: error: use of undefined value here causes illegal behavior
......@@ -5938,21 +5922,13 @@ const std = @import("std");
59385922// :155:30: error: use of undefined value here causes illegal behavior
59395923// :155:30: error: use of undefined value here causes illegal behavior
59405924// :155:30: error: use of undefined value here causes illegal behavior
5941// :155:30: note: when computing vector element at index '1'
59425925// :155:30: error: use of undefined value here causes illegal behavior
5943// :155:30: note: when computing vector element at index '1'
59445926// :155:30: error: use of undefined value here causes illegal behavior
5945// :155:30: note: when computing vector element at index '1'
59465927// :155:30: error: use of undefined value here causes illegal behavior
5947// :155:30: note: when computing vector element at index '1'
59485928// :155:30: error: use of undefined value here causes illegal behavior
5949// :155:30: note: when computing vector element at index '0'
59505929// :155:30: error: use of undefined value here causes illegal behavior
5951// :155:30: note: when computing vector element at index '0'
59525930// :155:30: error: use of undefined value here causes illegal behavior
5953// :155:30: note: when computing vector element at index '0'
59545931// :155:30: error: use of undefined value here causes illegal behavior
5955// :155:30: note: when computing vector element at index '0'
59565932// :155:30: error: use of undefined value here causes illegal behavior
59575933// :155:30: error: use of undefined value here causes illegal behavior
59585934// :155:30: error: use of undefined value here causes illegal behavior
......@@ -5960,21 +5936,13 @@ const std = @import("std");
59605936// :155:30: error: use of undefined value here causes illegal behavior
59615937// :155:30: error: use of undefined value here causes illegal behavior
59625938// :155:30: error: use of undefined value here causes illegal behavior
5963// :155:30: note: when computing vector element at index '1'
59645939// :155:30: error: use of undefined value here causes illegal behavior
5965// :155:30: note: when computing vector element at index '1'
59665940// :155:30: error: use of undefined value here causes illegal behavior
5967// :155:30: note: when computing vector element at index '1'
59685941// :155:30: error: use of undefined value here causes illegal behavior
5969// :155:30: note: when computing vector element at index '1'
59705942// :155:30: error: use of undefined value here causes illegal behavior
5971// :155:30: note: when computing vector element at index '0'
59725943// :155:30: error: use of undefined value here causes illegal behavior
5973// :155:30: note: when computing vector element at index '0'
59745944// :155:30: error: use of undefined value here causes illegal behavior
5975// :155:30: note: when computing vector element at index '0'
59765945// :155:30: error: use of undefined value here causes illegal behavior
5977// :155:30: note: when computing vector element at index '0'
59785946// :155:30: error: use of undefined value here causes illegal behavior
59795947// :155:30: error: use of undefined value here causes illegal behavior
59805948// :155:30: error: use of undefined value here causes illegal behavior
......@@ -5982,13 +5950,9 @@ const std = @import("std");
59825950// :155:30: error: use of undefined value here causes illegal behavior
59835951// :155:30: error: use of undefined value here causes illegal behavior
59845952// :155:30: error: use of undefined value here causes illegal behavior
5985// :155:30: note: when computing vector element at index '1'
59865953// :155:30: error: use of undefined value here causes illegal behavior
5987// :155:30: note: when computing vector element at index '1'
59885954// :155:30: error: use of undefined value here causes illegal behavior
5989// :155:30: note: when computing vector element at index '1'
59905955// :155:30: error: use of undefined value here causes illegal behavior
5991// :155:30: note: when computing vector element at index '1'
59925956// :155:30: error: use of undefined value here causes illegal behavior
59935957// :155:30: note: when computing vector element at index '0'
59945958// :155:30: error: use of undefined value here causes illegal behavior
......@@ -5998,19 +5962,21 @@ const std = @import("std");
59985962// :155:30: error: use of undefined value here causes illegal behavior
59995963// :155:30: note: when computing vector element at index '0'
60005964// :155:30: error: use of undefined value here causes illegal behavior
5965// :155:30: note: when computing vector element at index '0'
60015966// :155:30: error: use of undefined value here causes illegal behavior
5967// :155:30: note: when computing vector element at index '0'
60025968// :155:30: error: use of undefined value here causes illegal behavior
5969// :155:30: note: when computing vector element at index '0'
60035970// :155:30: error: use of undefined value here causes illegal behavior
5971// :155:30: note: when computing vector element at index '0'
60045972// :155:30: error: use of undefined value here causes illegal behavior
5973// :155:30: note: when computing vector element at index '0'
60055974// :155:30: error: use of undefined value here causes illegal behavior
5975// :155:30: note: when computing vector element at index '0'
60065976// :155:30: error: use of undefined value here causes illegal behavior
6007// :155:30: note: when computing vector element at index '1'
6008// :155:30: error: use of undefined value here causes illegal behavior
6009// :155:30: note: when computing vector element at index '1'
6010// :155:30: error: use of undefined value here causes illegal behavior
6011// :155:30: note: when computing vector element at index '1'
5977// :155:30: note: when computing vector element at index '0'
60125978// :155:30: error: use of undefined value here causes illegal behavior
6013// :155:30: note: when computing vector element at index '1'
5979// :155:30: note: when computing vector element at index '0'
60145980// :155:30: error: use of undefined value here causes illegal behavior
60155981// :155:30: note: when computing vector element at index '0'
60165982// :155:30: error: use of undefined value here causes illegal behavior
......@@ -6020,19 +5986,25 @@ const std = @import("std");
60205986// :155:30: error: use of undefined value here causes illegal behavior
60215987// :155:30: note: when computing vector element at index '0'
60225988// :155:30: error: use of undefined value here causes illegal behavior
5989// :155:30: note: when computing vector element at index '0'
60235990// :155:30: error: use of undefined value here causes illegal behavior
5991// :155:30: note: when computing vector element at index '0'
60245992// :155:30: error: use of undefined value here causes illegal behavior
5993// :155:30: note: when computing vector element at index '0'
60255994// :155:30: error: use of undefined value here causes illegal behavior
5995// :155:30: note: when computing vector element at index '0'
60265996// :155:30: error: use of undefined value here causes illegal behavior
5997// :155:30: note: when computing vector element at index '0'
60275998// :155:30: error: use of undefined value here causes illegal behavior
5999// :155:30: note: when computing vector element at index '0'
60286000// :155:30: error: use of undefined value here causes illegal behavior
6029// :155:30: note: when computing vector element at index '1'
6001// :155:30: note: when computing vector element at index '0'
60306002// :155:30: error: use of undefined value here causes illegal behavior
6031// :155:30: note: when computing vector element at index '1'
6003// :155:30: note: when computing vector element at index '0'
60326004// :155:30: error: use of undefined value here causes illegal behavior
6033// :155:30: note: when computing vector element at index '1'
6005// :155:30: note: when computing vector element at index '0'
60346006// :155:30: error: use of undefined value here causes illegal behavior
6035// :155:30: note: when computing vector element at index '1'
6007// :155:30: note: when computing vector element at index '0'
60366008// :155:30: error: use of undefined value here causes illegal behavior
60376009// :155:30: note: when computing vector element at index '0'
60386010// :155:30: error: use of undefined value here causes illegal behavior
......@@ -6042,19 +6014,25 @@ const std = @import("std");
60426014// :155:30: error: use of undefined value here causes illegal behavior
60436015// :155:30: note: when computing vector element at index '0'
60446016// :155:30: error: use of undefined value here causes illegal behavior
6017// :155:30: note: when computing vector element at index '0'
60456018// :155:30: error: use of undefined value here causes illegal behavior
6019// :155:30: note: when computing vector element at index '0'
60466020// :155:30: error: use of undefined value here causes illegal behavior
6021// :155:30: note: when computing vector element at index '0'
60476022// :155:30: error: use of undefined value here causes illegal behavior
6023// :155:30: note: when computing vector element at index '0'
60486024// :155:30: error: use of undefined value here causes illegal behavior
6025// :155:30: note: when computing vector element at index '0'
60496026// :155:30: error: use of undefined value here causes illegal behavior
6027// :155:30: note: when computing vector element at index '0'
60506028// :155:30: error: use of undefined value here causes illegal behavior
6051// :155:30: note: when computing vector element at index '1'
6029// :155:30: note: when computing vector element at index '0'
60526030// :155:30: error: use of undefined value here causes illegal behavior
6053// :155:30: note: when computing vector element at index '1'
6031// :155:30: note: when computing vector element at index '0'
60546032// :155:30: error: use of undefined value here causes illegal behavior
6055// :155:30: note: when computing vector element at index '1'
6033// :155:30: note: when computing vector element at index '0'
60566034// :155:30: error: use of undefined value here causes illegal behavior
6057// :155:30: note: when computing vector element at index '1'
6035// :155:30: note: when computing vector element at index '0'
60586036// :155:30: error: use of undefined value here causes illegal behavior
60596037// :155:30: note: when computing vector element at index '0'
60606038// :155:30: error: use of undefined value here causes illegal behavior
......@@ -6064,11 +6042,17 @@ const std = @import("std");
60646042// :155:30: error: use of undefined value here causes illegal behavior
60656043// :155:30: note: when computing vector element at index '0'
60666044// :155:30: error: use of undefined value here causes illegal behavior
6045// :155:30: note: when computing vector element at index '1'
60676046// :155:30: error: use of undefined value here causes illegal behavior
6047// :155:30: note: when computing vector element at index '1'
60686048// :155:30: error: use of undefined value here causes illegal behavior
6049// :155:30: note: when computing vector element at index '1'
60696050// :155:30: error: use of undefined value here causes illegal behavior
6051// :155:30: note: when computing vector element at index '1'
60706052// :155:30: error: use of undefined value here causes illegal behavior
6053// :155:30: note: when computing vector element at index '1'
60716054// :155:30: error: use of undefined value here causes illegal behavior
6055// :155:30: note: when computing vector element at index '1'
60726056// :155:30: error: use of undefined value here causes illegal behavior
60736057// :155:30: note: when computing vector element at index '1'
60746058// :155:30: error: use of undefined value here causes illegal behavior
......@@ -6078,19 +6062,25 @@ const std = @import("std");
60786062// :155:30: error: use of undefined value here causes illegal behavior
60796063// :155:30: note: when computing vector element at index '1'
60806064// :155:30: error: use of undefined value here causes illegal behavior
6081// :155:30: note: when computing vector element at index '0'
6065// :155:30: note: when computing vector element at index '1'
60826066// :155:30: error: use of undefined value here causes illegal behavior
6083// :155:30: note: when computing vector element at index '0'
6067// :155:30: note: when computing vector element at index '1'
60846068// :155:30: error: use of undefined value here causes illegal behavior
6085// :155:30: note: when computing vector element at index '0'
6069// :155:30: note: when computing vector element at index '1'
60866070// :155:30: error: use of undefined value here causes illegal behavior
6087// :155:30: note: when computing vector element at index '0'
6071// :155:30: note: when computing vector element at index '1'
60886072// :155:30: error: use of undefined value here causes illegal behavior
6073// :155:30: note: when computing vector element at index '1'
60896074// :155:30: error: use of undefined value here causes illegal behavior
6075// :155:30: note: when computing vector element at index '1'
60906076// :155:30: error: use of undefined value here causes illegal behavior
6077// :155:30: note: when computing vector element at index '1'
60916078// :155:30: error: use of undefined value here causes illegal behavior
6079// :155:30: note: when computing vector element at index '1'
60926080// :155:30: error: use of undefined value here causes illegal behavior
6081// :155:30: note: when computing vector element at index '1'
60936082// :155:30: error: use of undefined value here causes illegal behavior
6083// :155:30: note: when computing vector element at index '1'
60946084// :155:30: error: use of undefined value here causes illegal behavior
60956085// :155:30: note: when computing vector element at index '1'
60966086// :155:30: error: use of undefined value here causes illegal behavior
......@@ -6100,19 +6090,25 @@ const std = @import("std");
61006090// :155:30: error: use of undefined value here causes illegal behavior
61016091// :155:30: note: when computing vector element at index '1'
61026092// :155:30: error: use of undefined value here causes illegal behavior
6103// :155:30: note: when computing vector element at index '0'
6093// :155:30: note: when computing vector element at index '1'
61046094// :155:30: error: use of undefined value here causes illegal behavior
6105// :155:30: note: when computing vector element at index '0'
6095// :155:30: note: when computing vector element at index '1'
61066096// :155:30: error: use of undefined value here causes illegal behavior
6107// :155:30: note: when computing vector element at index '0'
6097// :155:30: note: when computing vector element at index '1'
61086098// :155:30: error: use of undefined value here causes illegal behavior
6109// :155:30: note: when computing vector element at index '0'
6099// :155:30: note: when computing vector element at index '1'
61106100// :155:30: error: use of undefined value here causes illegal behavior
6101// :155:30: note: when computing vector element at index '1'
61116102// :155:30: error: use of undefined value here causes illegal behavior
6103// :155:30: note: when computing vector element at index '1'
61126104// :155:30: error: use of undefined value here causes illegal behavior
6105// :155:30: note: when computing vector element at index '1'
61136106// :155:30: error: use of undefined value here causes illegal behavior
6107// :155:30: note: when computing vector element at index '1'
61146108// :155:30: error: use of undefined value here causes illegal behavior
6109// :155:30: note: when computing vector element at index '1'
61156110// :155:30: error: use of undefined value here causes illegal behavior
6111// :155:30: note: when computing vector element at index '1'
61166112// :155:30: error: use of undefined value here causes illegal behavior
61176113// :155:30: note: when computing vector element at index '1'
61186114// :155:30: error: use of undefined value here causes illegal behavior
......@@ -6122,13 +6118,17 @@ const std = @import("std");
61226118// :155:30: error: use of undefined value here causes illegal behavior
61236119// :155:30: note: when computing vector element at index '1'
61246120// :155:30: error: use of undefined value here causes illegal behavior
6125// :155:30: note: when computing vector element at index '0'
6121// :155:30: note: when computing vector element at index '1'
61266122// :155:30: error: use of undefined value here causes illegal behavior
6127// :155:30: note: when computing vector element at index '0'
6123// :155:30: note: when computing vector element at index '1'
61286124// :155:30: error: use of undefined value here causes illegal behavior
6129// :155:30: note: when computing vector element at index '0'
6125// :155:30: note: when computing vector element at index '1'
61306126// :155:30: error: use of undefined value here causes illegal behavior
6131// :155:30: note: when computing vector element at index '0'
6127// :155:30: note: when computing vector element at index '1'
6128// :155:30: error: use of undefined value here causes illegal behavior
6129// :155:30: note: when computing vector element at index '1'
6130// :155:30: error: use of undefined value here causes illegal behavior
6131// :155:30: note: when computing vector element at index '1'
61326132// :159:30: error: use of undefined value here causes illegal behavior
61336133// :159:30: error: use of undefined value here causes illegal behavior
61346134// :159:30: error: use of undefined value here causes illegal behavior
......@@ -6136,21 +6136,13 @@ const std = @import("std");
61366136// :159:30: error: use of undefined value here causes illegal behavior
61376137// :159:30: error: use of undefined value here causes illegal behavior
61386138// :159:30: error: use of undefined value here causes illegal behavior
6139// :159:30: note: when computing vector element at index '1'
61406139// :159:30: error: use of undefined value here causes illegal behavior
6141// :159:30: note: when computing vector element at index '1'
61426140// :159:30: error: use of undefined value here causes illegal behavior
6143// :159:30: note: when computing vector element at index '1'
61446141// :159:30: error: use of undefined value here causes illegal behavior
6145// :159:30: note: when computing vector element at index '1'
61466142// :159:30: error: use of undefined value here causes illegal behavior
6147// :159:30: note: when computing vector element at index '0'
61486143// :159:30: error: use of undefined value here causes illegal behavior
6149// :159:30: note: when computing vector element at index '0'
61506144// :159:30: error: use of undefined value here causes illegal behavior
6151// :159:30: note: when computing vector element at index '0'
61526145// :159:30: error: use of undefined value here causes illegal behavior
6153// :159:30: note: when computing vector element at index '0'
61546146// :159:30: error: use of undefined value here causes illegal behavior
61556147// :159:30: error: use of undefined value here causes illegal behavior
61566148// :159:30: error: use of undefined value here causes illegal behavior
......@@ -6158,21 +6150,13 @@ const std = @import("std");
61586150// :159:30: error: use of undefined value here causes illegal behavior
61596151// :159:30: error: use of undefined value here causes illegal behavior
61606152// :159:30: error: use of undefined value here causes illegal behavior
6161// :159:30: note: when computing vector element at index '1'
61626153// :159:30: error: use of undefined value here causes illegal behavior
6163// :159:30: note: when computing vector element at index '1'
61646154// :159:30: error: use of undefined value here causes illegal behavior
6165// :159:30: note: when computing vector element at index '1'
61666155// :159:30: error: use of undefined value here causes illegal behavior
6167// :159:30: note: when computing vector element at index '1'
61686156// :159:30: error: use of undefined value here causes illegal behavior
6169// :159:30: note: when computing vector element at index '0'
61706157// :159:30: error: use of undefined value here causes illegal behavior
6171// :159:30: note: when computing vector element at index '0'
61726158// :159:30: error: use of undefined value here causes illegal behavior
6173// :159:30: note: when computing vector element at index '0'
61746159// :159:30: error: use of undefined value here causes illegal behavior
6175// :159:30: note: when computing vector element at index '0'
61766160// :159:30: error: use of undefined value here causes illegal behavior
61776161// :159:30: error: use of undefined value here causes illegal behavior
61786162// :159:30: error: use of undefined value here causes illegal behavior
......@@ -6180,21 +6164,13 @@ const std = @import("std");
61806164// :159:30: error: use of undefined value here causes illegal behavior
61816165// :159:30: error: use of undefined value here causes illegal behavior
61826166// :159:30: error: use of undefined value here causes illegal behavior
6183// :159:30: note: when computing vector element at index '1'
61846167// :159:30: error: use of undefined value here causes illegal behavior
6185// :159:30: note: when computing vector element at index '1'
61866168// :159:30: error: use of undefined value here causes illegal behavior
6187// :159:30: note: when computing vector element at index '1'
61886169// :159:30: error: use of undefined value here causes illegal behavior
6189// :159:30: note: when computing vector element at index '1'
61906170// :159:30: error: use of undefined value here causes illegal behavior
6191// :159:30: note: when computing vector element at index '0'
61926171// :159:30: error: use of undefined value here causes illegal behavior
6193// :159:30: note: when computing vector element at index '0'
61946172// :159:30: error: use of undefined value here causes illegal behavior
6195// :159:30: note: when computing vector element at index '0'
61966173// :159:30: error: use of undefined value here causes illegal behavior
6197// :159:30: note: when computing vector element at index '0'
61986174// :159:30: error: use of undefined value here causes illegal behavior
61996175// :159:30: error: use of undefined value here causes illegal behavior
62006176// :159:30: error: use of undefined value here causes illegal behavior
......@@ -6202,21 +6178,13 @@ const std = @import("std");
62026178// :159:30: error: use of undefined value here causes illegal behavior
62036179// :159:30: error: use of undefined value here causes illegal behavior
62046180// :159:30: error: use of undefined value here causes illegal behavior
6205// :159:30: note: when computing vector element at index '1'
62066181// :159:30: error: use of undefined value here causes illegal behavior
6207// :159:30: note: when computing vector element at index '1'
62086182// :159:30: error: use of undefined value here causes illegal behavior
6209// :159:30: note: when computing vector element at index '1'
62106183// :159:30: error: use of undefined value here causes illegal behavior
6211// :159:30: note: when computing vector element at index '1'
62126184// :159:30: error: use of undefined value here causes illegal behavior
6213// :159:30: note: when computing vector element at index '0'
62146185// :159:30: error: use of undefined value here causes illegal behavior
6215// :159:30: note: when computing vector element at index '0'
62166186// :159:30: error: use of undefined value here causes illegal behavior
6217// :159:30: note: when computing vector element at index '0'
62186187// :159:30: error: use of undefined value here causes illegal behavior
6219// :159:30: note: when computing vector element at index '0'
62206188// :159:30: error: use of undefined value here causes illegal behavior
62216189// :159:30: error: use of undefined value here causes illegal behavior
62226190// :159:30: error: use of undefined value here causes illegal behavior
......@@ -6224,13 +6192,9 @@ const std = @import("std");
62246192// :159:30: error: use of undefined value here causes illegal behavior
62256193// :159:30: error: use of undefined value here causes illegal behavior
62266194// :159:30: error: use of undefined value here causes illegal behavior
6227// :159:30: note: when computing vector element at index '1'
62286195// :159:30: error: use of undefined value here causes illegal behavior
6229// :159:30: note: when computing vector element at index '1'
62306196// :159:30: error: use of undefined value here causes illegal behavior
6231// :159:30: note: when computing vector element at index '1'
62326197// :159:30: error: use of undefined value here causes illegal behavior
6233// :159:30: note: when computing vector element at index '1'
62346198// :159:30: error: use of undefined value here causes illegal behavior
62356199// :159:30: note: when computing vector element at index '0'
62366200// :159:30: error: use of undefined value here causes illegal behavior
......@@ -6240,19 +6204,21 @@ const std = @import("std");
62406204// :159:30: error: use of undefined value here causes illegal behavior
62416205// :159:30: note: when computing vector element at index '0'
62426206// :159:30: error: use of undefined value here causes illegal behavior
6207// :159:30: note: when computing vector element at index '0'
62436208// :159:30: error: use of undefined value here causes illegal behavior
6209// :159:30: note: when computing vector element at index '0'
62446210// :159:30: error: use of undefined value here causes illegal behavior
6211// :159:30: note: when computing vector element at index '0'
62456212// :159:30: error: use of undefined value here causes illegal behavior
6213// :159:30: note: when computing vector element at index '0'
62466214// :159:30: error: use of undefined value here causes illegal behavior
6215// :159:30: note: when computing vector element at index '0'
62476216// :159:30: error: use of undefined value here causes illegal behavior
6217// :159:30: note: when computing vector element at index '0'
62486218// :159:30: error: use of undefined value here causes illegal behavior
6249// :159:30: note: when computing vector element at index '1'
6250// :159:30: error: use of undefined value here causes illegal behavior
6251// :159:30: note: when computing vector element at index '1'
6252// :159:30: error: use of undefined value here causes illegal behavior
6253// :159:30: note: when computing vector element at index '1'
6219// :159:30: note: when computing vector element at index '0'
62546220// :159:30: error: use of undefined value here causes illegal behavior
6255// :159:30: note: when computing vector element at index '1'
6221// :159:30: note: when computing vector element at index '0'
62566222// :159:30: error: use of undefined value here causes illegal behavior
62576223// :159:30: note: when computing vector element at index '0'
62586224// :159:30: error: use of undefined value here causes illegal behavior
......@@ -6262,19 +6228,25 @@ const std = @import("std");
62626228// :159:30: error: use of undefined value here causes illegal behavior
62636229// :159:30: note: when computing vector element at index '0'
62646230// :159:30: error: use of undefined value here causes illegal behavior
6231// :159:30: note: when computing vector element at index '0'
62656232// :159:30: error: use of undefined value here causes illegal behavior
6233// :159:30: note: when computing vector element at index '0'
62666234// :159:30: error: use of undefined value here causes illegal behavior
6235// :159:30: note: when computing vector element at index '0'
62676236// :159:30: error: use of undefined value here causes illegal behavior
6237// :159:30: note: when computing vector element at index '0'
62686238// :159:30: error: use of undefined value here causes illegal behavior
6239// :159:30: note: when computing vector element at index '0'
62696240// :159:30: error: use of undefined value here causes illegal behavior
6241// :159:30: note: when computing vector element at index '0'
62706242// :159:30: error: use of undefined value here causes illegal behavior
6271// :159:30: note: when computing vector element at index '1'
6243// :159:30: note: when computing vector element at index '0'
62726244// :159:30: error: use of undefined value here causes illegal behavior
6273// :159:30: note: when computing vector element at index '1'
6245// :159:30: note: when computing vector element at index '0'
62746246// :159:30: error: use of undefined value here causes illegal behavior
6275// :159:30: note: when computing vector element at index '1'
6247// :159:30: note: when computing vector element at index '0'
62766248// :159:30: error: use of undefined value here causes illegal behavior
6277// :159:30: note: when computing vector element at index '1'
6249// :159:30: note: when computing vector element at index '0'
62786250// :159:30: error: use of undefined value here causes illegal behavior
62796251// :159:30: note: when computing vector element at index '0'
62806252// :159:30: error: use of undefined value here causes illegal behavior
......@@ -6284,19 +6256,25 @@ const std = @import("std");
62846256// :159:30: error: use of undefined value here causes illegal behavior
62856257// :159:30: note: when computing vector element at index '0'
62866258// :159:30: error: use of undefined value here causes illegal behavior
6259// :159:30: note: when computing vector element at index '0'
62876260// :159:30: error: use of undefined value here causes illegal behavior
6261// :159:30: note: when computing vector element at index '0'
62886262// :159:30: error: use of undefined value here causes illegal behavior
6263// :159:30: note: when computing vector element at index '0'
62896264// :159:30: error: use of undefined value here causes illegal behavior
6265// :159:30: note: when computing vector element at index '0'
62906266// :159:30: error: use of undefined value here causes illegal behavior
6267// :159:30: note: when computing vector element at index '0'
62916268// :159:30: error: use of undefined value here causes illegal behavior
6269// :159:30: note: when computing vector element at index '0'
62926270// :159:30: error: use of undefined value here causes illegal behavior
6293// :159:30: note: when computing vector element at index '1'
6271// :159:30: note: when computing vector element at index '0'
62946272// :159:30: error: use of undefined value here causes illegal behavior
6295// :159:30: note: when computing vector element at index '1'
6273// :159:30: note: when computing vector element at index '0'
62966274// :159:30: error: use of undefined value here causes illegal behavior
6297// :159:30: note: when computing vector element at index '1'
6275// :159:30: note: when computing vector element at index '0'
62986276// :159:30: error: use of undefined value here causes illegal behavior
6299// :159:30: note: when computing vector element at index '1'
6277// :159:30: note: when computing vector element at index '0'
63006278// :159:30: error: use of undefined value here causes illegal behavior
63016279// :159:30: note: when computing vector element at index '0'
63026280// :159:30: error: use of undefined value here causes illegal behavior
......@@ -6306,11 +6284,17 @@ const std = @import("std");
63066284// :159:30: error: use of undefined value here causes illegal behavior
63076285// :159:30: note: when computing vector element at index '0'
63086286// :159:30: error: use of undefined value here causes illegal behavior
6287// :159:30: note: when computing vector element at index '1'
63096288// :159:30: error: use of undefined value here causes illegal behavior
6289// :159:30: note: when computing vector element at index '1'
63106290// :159:30: error: use of undefined value here causes illegal behavior
6291// :159:30: note: when computing vector element at index '1'
63116292// :159:30: error: use of undefined value here causes illegal behavior
6293// :159:30: note: when computing vector element at index '1'
63126294// :159:30: error: use of undefined value here causes illegal behavior
6295// :159:30: note: when computing vector element at index '1'
63136296// :159:30: error: use of undefined value here causes illegal behavior
6297// :159:30: note: when computing vector element at index '1'
63146298// :159:30: error: use of undefined value here causes illegal behavior
63156299// :159:30: note: when computing vector element at index '1'
63166300// :159:30: error: use of undefined value here causes illegal behavior
......@@ -6320,19 +6304,25 @@ const std = @import("std");
63206304// :159:30: error: use of undefined value here causes illegal behavior
63216305// :159:30: note: when computing vector element at index '1'
63226306// :159:30: error: use of undefined value here causes illegal behavior
6323// :159:30: note: when computing vector element at index '0'
6307// :159:30: note: when computing vector element at index '1'
63246308// :159:30: error: use of undefined value here causes illegal behavior
6325// :159:30: note: when computing vector element at index '0'
6309// :159:30: note: when computing vector element at index '1'
63266310// :159:30: error: use of undefined value here causes illegal behavior
6327// :159:30: note: when computing vector element at index '0'
6311// :159:30: note: when computing vector element at index '1'
63286312// :159:30: error: use of undefined value here causes illegal behavior
6329// :159:30: note: when computing vector element at index '0'
6313// :159:30: note: when computing vector element at index '1'
63306314// :159:30: error: use of undefined value here causes illegal behavior
6315// :159:30: note: when computing vector element at index '1'
63316316// :159:30: error: use of undefined value here causes illegal behavior
6317// :159:30: note: when computing vector element at index '1'
63326318// :159:30: error: use of undefined value here causes illegal behavior
6319// :159:30: note: when computing vector element at index '1'
63336320// :159:30: error: use of undefined value here causes illegal behavior
6321// :159:30: note: when computing vector element at index '1'
63346322// :159:30: error: use of undefined value here causes illegal behavior
6323// :159:30: note: when computing vector element at index '1'
63356324// :159:30: error: use of undefined value here causes illegal behavior
6325// :159:30: note: when computing vector element at index '1'
63366326// :159:30: error: use of undefined value here causes illegal behavior
63376327// :159:30: note: when computing vector element at index '1'
63386328// :159:30: error: use of undefined value here causes illegal behavior
......@@ -6342,19 +6332,27 @@ const std = @import("std");
63426332// :159:30: error: use of undefined value here causes illegal behavior
63436333// :159:30: note: when computing vector element at index '1'
63446334// :159:30: error: use of undefined value here causes illegal behavior
6345// :159:30: note: when computing vector element at index '0'
6335// :159:30: note: when computing vector element at index '1'
63466336// :159:30: error: use of undefined value here causes illegal behavior
6347// :159:30: note: when computing vector element at index '0'
6337// :159:30: note: when computing vector element at index '1'
63486338// :159:30: error: use of undefined value here causes illegal behavior
6349// :159:30: note: when computing vector element at index '0'
6339// :159:30: note: when computing vector element at index '1'
63506340// :159:30: error: use of undefined value here causes illegal behavior
6351// :159:30: note: when computing vector element at index '0'
6341// :159:30: note: when computing vector element at index '1'
6342// :159:30: error: use of undefined value here causes illegal behavior
6343// :159:30: note: when computing vector element at index '1'
63526344// :159:30: error: use of undefined value here causes illegal behavior
6345// :159:30: note: when computing vector element at index '1'
63536346// :159:30: error: use of undefined value here causes illegal behavior
6347// :159:30: note: when computing vector element at index '1'
63546348// :159:30: error: use of undefined value here causes illegal behavior
6349// :159:30: note: when computing vector element at index '1'
63556350// :159:30: error: use of undefined value here causes illegal behavior
6351// :159:30: note: when computing vector element at index '1'
63566352// :159:30: error: use of undefined value here causes illegal behavior
6353// :159:30: note: when computing vector element at index '1'
63576354// :159:30: error: use of undefined value here causes illegal behavior
6355// :159:30: note: when computing vector element at index '1'
63586356// :159:30: error: use of undefined value here causes illegal behavior
63596357// :159:30: note: when computing vector element at index '1'
63606358// :159:30: error: use of undefined value here causes illegal behavior
......@@ -6364,13 +6362,15 @@ const std = @import("std");
63646362// :159:30: error: use of undefined value here causes illegal behavior
63656363// :159:30: note: when computing vector element at index '1'
63666364// :159:30: error: use of undefined value here causes illegal behavior
6367// :159:30: note: when computing vector element at index '0'
6365// :159:30: note: when computing vector element at index '1'
63686366// :159:30: error: use of undefined value here causes illegal behavior
6369// :159:30: note: when computing vector element at index '0'
6367// :159:30: note: when computing vector element at index '1'
63706368// :159:30: error: use of undefined value here causes illegal behavior
6371// :159:30: note: when computing vector element at index '0'
6369// :159:30: note: when computing vector element at index '1'
63726370// :159:30: error: use of undefined value here causes illegal behavior
6373// :159:30: note: when computing vector element at index '0'
6371// :159:30: note: when computing vector element at index '1'
6372// :159:30: error: use of undefined value here causes illegal behavior
6373// :159:30: note: when computing vector element at index '1'
63746374// :163:30: error: use of undefined value here causes illegal behavior
63756375// :163:30: error: use of undefined value here causes illegal behavior
63766376// :163:30: error: use of undefined value here causes illegal behavior
......@@ -6378,21 +6378,13 @@ const std = @import("std");
63786378// :163:30: error: use of undefined value here causes illegal behavior
63796379// :163:30: error: use of undefined value here causes illegal behavior
63806380// :163:30: error: use of undefined value here causes illegal behavior
6381// :163:30: note: when computing vector element at index '1'
63826381// :163:30: error: use of undefined value here causes illegal behavior
6383// :163:30: note: when computing vector element at index '1'
63846382// :163:30: error: use of undefined value here causes illegal behavior
6385// :163:30: note: when computing vector element at index '1'
63866383// :163:30: error: use of undefined value here causes illegal behavior
6387// :163:30: note: when computing vector element at index '1'
63886384// :163:30: error: use of undefined value here causes illegal behavior
6389// :163:30: note: when computing vector element at index '0'
63906385// :163:30: error: use of undefined value here causes illegal behavior
6391// :163:30: note: when computing vector element at index '0'
63926386// :163:30: error: use of undefined value here causes illegal behavior
6393// :163:30: note: when computing vector element at index '0'
63946387// :163:30: error: use of undefined value here causes illegal behavior
6395// :163:30: note: when computing vector element at index '0'
63966388// :163:30: error: use of undefined value here causes illegal behavior
63976389// :163:30: error: use of undefined value here causes illegal behavior
63986390// :163:30: error: use of undefined value here causes illegal behavior
......@@ -6400,21 +6392,13 @@ const std = @import("std");
64006392// :163:30: error: use of undefined value here causes illegal behavior
64016393// :163:30: error: use of undefined value here causes illegal behavior
64026394// :163:30: error: use of undefined value here causes illegal behavior
6403// :163:30: note: when computing vector element at index '1'
64046395// :163:30: error: use of undefined value here causes illegal behavior
6405// :163:30: note: when computing vector element at index '1'
64066396// :163:30: error: use of undefined value here causes illegal behavior
6407// :163:30: note: when computing vector element at index '1'
64086397// :163:30: error: use of undefined value here causes illegal behavior
6409// :163:30: note: when computing vector element at index '1'
64106398// :163:30: error: use of undefined value here causes illegal behavior
6411// :163:30: note: when computing vector element at index '0'
64126399// :163:30: error: use of undefined value here causes illegal behavior
6413// :163:30: note: when computing vector element at index '0'
64146400// :163:30: error: use of undefined value here causes illegal behavior
6415// :163:30: note: when computing vector element at index '0'
64166401// :163:30: error: use of undefined value here causes illegal behavior
6417// :163:30: note: when computing vector element at index '0'
64186402// :163:30: error: use of undefined value here causes illegal behavior
64196403// :163:30: error: use of undefined value here causes illegal behavior
64206404// :163:30: error: use of undefined value here causes illegal behavior
......@@ -6422,21 +6406,13 @@ const std = @import("std");
64226406// :163:30: error: use of undefined value here causes illegal behavior
64236407// :163:30: error: use of undefined value here causes illegal behavior
64246408// :163:30: error: use of undefined value here causes illegal behavior
6425// :163:30: note: when computing vector element at index '1'
64266409// :163:30: error: use of undefined value here causes illegal behavior
6427// :163:30: note: when computing vector element at index '1'
64286410// :163:30: error: use of undefined value here causes illegal behavior
6429// :163:30: note: when computing vector element at index '1'
64306411// :163:30: error: use of undefined value here causes illegal behavior
6431// :163:30: note: when computing vector element at index '1'
64326412// :163:30: error: use of undefined value here causes illegal behavior
6433// :163:30: note: when computing vector element at index '0'
64346413// :163:30: error: use of undefined value here causes illegal behavior
6435// :163:30: note: when computing vector element at index '0'
64366414// :163:30: error: use of undefined value here causes illegal behavior
6437// :163:30: note: when computing vector element at index '0'
64386415// :163:30: error: use of undefined value here causes illegal behavior
6439// :163:30: note: when computing vector element at index '0'
64406416// :163:30: error: use of undefined value here causes illegal behavior
64416417// :163:30: error: use of undefined value here causes illegal behavior
64426418// :163:30: error: use of undefined value here causes illegal behavior
......@@ -6444,21 +6420,13 @@ const std = @import("std");
64446420// :163:30: error: use of undefined value here causes illegal behavior
64456421// :163:30: error: use of undefined value here causes illegal behavior
64466422// :163:30: error: use of undefined value here causes illegal behavior
6447// :163:30: note: when computing vector element at index '1'
64486423// :163:30: error: use of undefined value here causes illegal behavior
6449// :163:30: note: when computing vector element at index '1'
64506424// :163:30: error: use of undefined value here causes illegal behavior
6451// :163:30: note: when computing vector element at index '1'
64526425// :163:30: error: use of undefined value here causes illegal behavior
6453// :163:30: note: when computing vector element at index '1'
64546426// :163:30: error: use of undefined value here causes illegal behavior
6455// :163:30: note: when computing vector element at index '0'
64566427// :163:30: error: use of undefined value here causes illegal behavior
6457// :163:30: note: when computing vector element at index '0'
64586428// :163:30: error: use of undefined value here causes illegal behavior
6459// :163:30: note: when computing vector element at index '0'
64606429// :163:30: error: use of undefined value here causes illegal behavior
6461// :163:30: note: when computing vector element at index '0'
64626430// :163:30: error: use of undefined value here causes illegal behavior
64636431// :163:30: error: use of undefined value here causes illegal behavior
64646432// :163:30: error: use of undefined value here causes illegal behavior
......@@ -6466,13 +6434,9 @@ const std = @import("std");
64666434// :163:30: error: use of undefined value here causes illegal behavior
64676435// :163:30: error: use of undefined value here causes illegal behavior
64686436// :163:30: error: use of undefined value here causes illegal behavior
6469// :163:30: note: when computing vector element at index '1'
64706437// :163:30: error: use of undefined value here causes illegal behavior
6471// :163:30: note: when computing vector element at index '1'
64726438// :163:30: error: use of undefined value here causes illegal behavior
6473// :163:30: note: when computing vector element at index '1'
64746439// :163:30: error: use of undefined value here causes illegal behavior
6475// :163:30: note: when computing vector element at index '1'
64766440// :163:30: error: use of undefined value here causes illegal behavior
64776441// :163:30: note: when computing vector element at index '0'
64786442// :163:30: error: use of undefined value here causes illegal behavior
......@@ -6482,19 +6446,21 @@ const std = @import("std");
64826446// :163:30: error: use of undefined value here causes illegal behavior
64836447// :163:30: note: when computing vector element at index '0'
64846448// :163:30: error: use of undefined value here causes illegal behavior
6449// :163:30: note: when computing vector element at index '0'
64856450// :163:30: error: use of undefined value here causes illegal behavior
6451// :163:30: note: when computing vector element at index '0'
64866452// :163:30: error: use of undefined value here causes illegal behavior
6453// :163:30: note: when computing vector element at index '0'
64876454// :163:30: error: use of undefined value here causes illegal behavior
6455// :163:30: note: when computing vector element at index '0'
64886456// :163:30: error: use of undefined value here causes illegal behavior
6457// :163:30: note: when computing vector element at index '0'
64896458// :163:30: error: use of undefined value here causes illegal behavior
6459// :163:30: note: when computing vector element at index '0'
64906460// :163:30: error: use of undefined value here causes illegal behavior
6491// :163:30: note: when computing vector element at index '1'
6492// :163:30: error: use of undefined value here causes illegal behavior
6493// :163:30: note: when computing vector element at index '1'
6494// :163:30: error: use of undefined value here causes illegal behavior
6495// :163:30: note: when computing vector element at index '1'
6461// :163:30: note: when computing vector element at index '0'
64966462// :163:30: error: use of undefined value here causes illegal behavior
6497// :163:30: note: when computing vector element at index '1'
6463// :163:30: note: when computing vector element at index '0'
64986464// :163:30: error: use of undefined value here causes illegal behavior
64996465// :163:30: note: when computing vector element at index '0'
65006466// :163:30: error: use of undefined value here causes illegal behavior
......@@ -6504,19 +6470,25 @@ const std = @import("std");
65046470// :163:30: error: use of undefined value here causes illegal behavior
65056471// :163:30: note: when computing vector element at index '0'
65066472// :163:30: error: use of undefined value here causes illegal behavior
6473// :163:30: note: when computing vector element at index '0'
65076474// :163:30: error: use of undefined value here causes illegal behavior
6475// :163:30: note: when computing vector element at index '0'
65086476// :163:30: error: use of undefined value here causes illegal behavior
6477// :163:30: note: when computing vector element at index '0'
65096478// :163:30: error: use of undefined value here causes illegal behavior
6479// :163:30: note: when computing vector element at index '0'
65106480// :163:30: error: use of undefined value here causes illegal behavior
6481// :163:30: note: when computing vector element at index '0'
65116482// :163:30: error: use of undefined value here causes illegal behavior
6483// :163:30: note: when computing vector element at index '0'
65126484// :163:30: error: use of undefined value here causes illegal behavior
6513// :163:30: note: when computing vector element at index '1'
6485// :163:30: note: when computing vector element at index '0'
65146486// :163:30: error: use of undefined value here causes illegal behavior
6515// :163:30: note: when computing vector element at index '1'
6487// :163:30: note: when computing vector element at index '0'
65166488// :163:30: error: use of undefined value here causes illegal behavior
6517// :163:30: note: when computing vector element at index '1'
6489// :163:30: note: when computing vector element at index '0'
65186490// :163:30: error: use of undefined value here causes illegal behavior
6519// :163:30: note: when computing vector element at index '1'
6491// :163:30: note: when computing vector element at index '0'
65206492// :163:30: error: use of undefined value here causes illegal behavior
65216493// :163:30: note: when computing vector element at index '0'
65226494// :163:30: error: use of undefined value here causes illegal behavior
......@@ -6526,19 +6498,25 @@ const std = @import("std");
65266498// :163:30: error: use of undefined value here causes illegal behavior
65276499// :163:30: note: when computing vector element at index '0'
65286500// :163:30: error: use of undefined value here causes illegal behavior
6501// :163:30: note: when computing vector element at index '0'
65296502// :163:30: error: use of undefined value here causes illegal behavior
6503// :163:30: note: when computing vector element at index '0'
65306504// :163:30: error: use of undefined value here causes illegal behavior
6505// :163:30: note: when computing vector element at index '0'
65316506// :163:30: error: use of undefined value here causes illegal behavior
6507// :163:30: note: when computing vector element at index '0'
65326508// :163:30: error: use of undefined value here causes illegal behavior
6509// :163:30: note: when computing vector element at index '0'
65336510// :163:30: error: use of undefined value here causes illegal behavior
6511// :163:30: note: when computing vector element at index '0'
65346512// :163:30: error: use of undefined value here causes illegal behavior
6535// :163:30: note: when computing vector element at index '1'
6513// :163:30: note: when computing vector element at index '0'
65366514// :163:30: error: use of undefined value here causes illegal behavior
6537// :163:30: note: when computing vector element at index '1'
6515// :163:30: note: when computing vector element at index '0'
65386516// :163:30: error: use of undefined value here causes illegal behavior
6539// :163:30: note: when computing vector element at index '1'
6517// :163:30: note: when computing vector element at index '0'
65406518// :163:30: error: use of undefined value here causes illegal behavior
6541// :163:30: note: when computing vector element at index '1'
6519// :163:30: note: when computing vector element at index '0'
65426520// :163:30: error: use of undefined value here causes illegal behavior
65436521// :163:30: note: when computing vector element at index '0'
65446522// :163:30: error: use of undefined value here causes illegal behavior
......@@ -6548,11 +6526,19 @@ const std = @import("std");
65486526// :163:30: error: use of undefined value here causes illegal behavior
65496527// :163:30: note: when computing vector element at index '0'
65506528// :163:30: error: use of undefined value here causes illegal behavior
6529// :163:30: note: when computing vector element at index '1'
6530// :163:30: error: use of undefined value here causes illegal behavior
6531// :163:30: note: when computing vector element at index '1'
65516532// :163:30: error: use of undefined value here causes illegal behavior
6533// :163:30: note: when computing vector element at index '1'
65526534// :163:30: error: use of undefined value here causes illegal behavior
6535// :163:30: note: when computing vector element at index '1'
65536536// :163:30: error: use of undefined value here causes illegal behavior
6537// :163:30: note: when computing vector element at index '1'
65546538// :163:30: error: use of undefined value here causes illegal behavior
6539// :163:30: note: when computing vector element at index '1'
65556540// :163:30: error: use of undefined value here causes illegal behavior
6541// :163:30: note: when computing vector element at index '1'
65566542// :163:30: error: use of undefined value here causes illegal behavior
65576543// :163:30: note: when computing vector element at index '1'
65586544// :163:30: error: use of undefined value here causes illegal behavior
......@@ -6562,19 +6548,27 @@ const std = @import("std");
65626548// :163:30: error: use of undefined value here causes illegal behavior
65636549// :163:30: note: when computing vector element at index '1'
65646550// :163:30: error: use of undefined value here causes illegal behavior
6565// :163:30: note: when computing vector element at index '0'
6551// :163:30: note: when computing vector element at index '1'
65666552// :163:30: error: use of undefined value here causes illegal behavior
6567// :163:30: note: when computing vector element at index '0'
6553// :163:30: note: when computing vector element at index '1'
65686554// :163:30: error: use of undefined value here causes illegal behavior
6569// :163:30: note: when computing vector element at index '0'
6555// :163:30: note: when computing vector element at index '1'
65706556// :163:30: error: use of undefined value here causes illegal behavior
6571// :163:30: note: when computing vector element at index '0'
6557// :163:30: note: when computing vector element at index '1'
6558// :163:30: error: use of undefined value here causes illegal behavior
6559// :163:30: note: when computing vector element at index '1'
65726560// :163:30: error: use of undefined value here causes illegal behavior
6561// :163:30: note: when computing vector element at index '1'
65736562// :163:30: error: use of undefined value here causes illegal behavior
6563// :163:30: note: when computing vector element at index '1'
65746564// :163:30: error: use of undefined value here causes illegal behavior
6565// :163:30: note: when computing vector element at index '1'
65756566// :163:30: error: use of undefined value here causes illegal behavior
6567// :163:30: note: when computing vector element at index '1'
65766568// :163:30: error: use of undefined value here causes illegal behavior
6569// :163:30: note: when computing vector element at index '1'
65776570// :163:30: error: use of undefined value here causes illegal behavior
6571// :163:30: note: when computing vector element at index '1'
65786572// :163:30: error: use of undefined value here causes illegal behavior
65796573// :163:30: note: when computing vector element at index '1'
65806574// :163:30: error: use of undefined value here causes illegal behavior
......@@ -6584,19 +6578,25 @@ const std = @import("std");
65846578// :163:30: error: use of undefined value here causes illegal behavior
65856579// :163:30: note: when computing vector element at index '1'
65866580// :163:30: error: use of undefined value here causes illegal behavior
6587// :163:30: note: when computing vector element at index '0'
6581// :163:30: note: when computing vector element at index '1'
65886582// :163:30: error: use of undefined value here causes illegal behavior
6589// :163:30: note: when computing vector element at index '0'
6583// :163:30: note: when computing vector element at index '1'
65906584// :163:30: error: use of undefined value here causes illegal behavior
6591// :163:30: note: when computing vector element at index '0'
6585// :163:30: note: when computing vector element at index '1'
65926586// :163:30: error: use of undefined value here causes illegal behavior
6593// :163:30: note: when computing vector element at index '0'
6587// :163:30: note: when computing vector element at index '1'
65946588// :163:30: error: use of undefined value here causes illegal behavior
6589// :163:30: note: when computing vector element at index '1'
65956590// :163:30: error: use of undefined value here causes illegal behavior
6591// :163:30: note: when computing vector element at index '1'
65966592// :163:30: error: use of undefined value here causes illegal behavior
6593// :163:30: note: when computing vector element at index '1'
65976594// :163:30: error: use of undefined value here causes illegal behavior
6595// :163:30: note: when computing vector element at index '1'
65986596// :163:30: error: use of undefined value here causes illegal behavior
6597// :163:30: note: when computing vector element at index '1'
65996598// :163:30: error: use of undefined value here causes illegal behavior
6599// :163:30: note: when computing vector element at index '1'
66006600// :163:30: error: use of undefined value here causes illegal behavior
66016601// :163:30: note: when computing vector element at index '1'
66026602// :163:30: error: use of undefined value here causes illegal behavior
......@@ -6606,13 +6606,13 @@ const std = @import("std");
66066606// :163:30: error: use of undefined value here causes illegal behavior
66076607// :163:30: note: when computing vector element at index '1'
66086608// :163:30: error: use of undefined value here causes illegal behavior
6609// :163:30: note: when computing vector element at index '0'
6609// :163:30: note: when computing vector element at index '1'
66106610// :163:30: error: use of undefined value here causes illegal behavior
6611// :163:30: note: when computing vector element at index '0'
6611// :163:30: note: when computing vector element at index '1'
66126612// :163:30: error: use of undefined value here causes illegal behavior
6613// :163:30: note: when computing vector element at index '0'
6613// :163:30: note: when computing vector element at index '1'
66146614// :163:30: error: use of undefined value here causes illegal behavior
6615// :163:30: note: when computing vector element at index '0'
6615// :163:30: note: when computing vector element at index '1'
66166616// :167:25: error: use of undefined value here causes illegal behavior
66176617// :167:25: error: use of undefined value here causes illegal behavior
66186618// :167:25: error: use of undefined value here causes illegal behavior
......@@ -6620,21 +6620,13 @@ const std = @import("std");
66206620// :167:25: error: use of undefined value here causes illegal behavior
66216621// :167:25: error: use of undefined value here causes illegal behavior
66226622// :167:25: error: use of undefined value here causes illegal behavior
6623// :167:25: note: when computing vector element at index '1'
66246623// :167:25: error: use of undefined value here causes illegal behavior
6625// :167:25: note: when computing vector element at index '1'
66266624// :167:25: error: use of undefined value here causes illegal behavior
6627// :167:25: note: when computing vector element at index '1'
66286625// :167:25: error: use of undefined value here causes illegal behavior
6629// :167:25: note: when computing vector element at index '1'
66306626// :167:25: error: use of undefined value here causes illegal behavior
6631// :167:25: note: when computing vector element at index '0'
66326627// :167:25: error: use of undefined value here causes illegal behavior
6633// :167:25: note: when computing vector element at index '0'
66346628// :167:25: error: use of undefined value here causes illegal behavior
6635// :167:25: note: when computing vector element at index '0'
66366629// :167:25: error: use of undefined value here causes illegal behavior
6637// :167:25: note: when computing vector element at index '0'
66386630// :167:25: error: use of undefined value here causes illegal behavior
66396631// :167:25: error: use of undefined value here causes illegal behavior
66406632// :167:25: error: use of undefined value here causes illegal behavior
......@@ -6642,21 +6634,13 @@ const std = @import("std");
66426634// :167:25: error: use of undefined value here causes illegal behavior
66436635// :167:25: error: use of undefined value here causes illegal behavior
66446636// :167:25: error: use of undefined value here causes illegal behavior
6645// :167:25: note: when computing vector element at index '1'
66466637// :167:25: error: use of undefined value here causes illegal behavior
6647// :167:25: note: when computing vector element at index '1'
66486638// :167:25: error: use of undefined value here causes illegal behavior
6649// :167:25: note: when computing vector element at index '1'
66506639// :167:25: error: use of undefined value here causes illegal behavior
6651// :167:25: note: when computing vector element at index '1'
66526640// :167:25: error: use of undefined value here causes illegal behavior
6653// :167:25: note: when computing vector element at index '0'
66546641// :167:25: error: use of undefined value here causes illegal behavior
6655// :167:25: note: when computing vector element at index '0'
66566642// :167:25: error: use of undefined value here causes illegal behavior
6657// :167:25: note: when computing vector element at index '0'
66586643// :167:25: error: use of undefined value here causes illegal behavior
6659// :167:25: note: when computing vector element at index '0'
66606644// :167:25: error: use of undefined value here causes illegal behavior
66616645// :167:25: error: use of undefined value here causes illegal behavior
66626646// :167:25: error: use of undefined value here causes illegal behavior
......@@ -6664,21 +6648,13 @@ const std = @import("std");
66646648// :167:25: error: use of undefined value here causes illegal behavior
66656649// :167:25: error: use of undefined value here causes illegal behavior
66666650// :167:25: error: use of undefined value here causes illegal behavior
6667// :167:25: note: when computing vector element at index '1'
66686651// :167:25: error: use of undefined value here causes illegal behavior
6669// :167:25: note: when computing vector element at index '1'
66706652// :167:25: error: use of undefined value here causes illegal behavior
6671// :167:25: note: when computing vector element at index '1'
66726653// :167:25: error: use of undefined value here causes illegal behavior
6673// :167:25: note: when computing vector element at index '1'
66746654// :167:25: error: use of undefined value here causes illegal behavior
6675// :167:25: note: when computing vector element at index '0'
66766655// :167:25: error: use of undefined value here causes illegal behavior
6677// :167:25: note: when computing vector element at index '0'
66786656// :167:25: error: use of undefined value here causes illegal behavior
6679// :167:25: note: when computing vector element at index '0'
66806657// :167:25: error: use of undefined value here causes illegal behavior
6681// :167:25: note: when computing vector element at index '0'
66826658// :167:25: error: use of undefined value here causes illegal behavior
66836659// :167:25: error: use of undefined value here causes illegal behavior
66846660// :167:25: error: use of undefined value here causes illegal behavior
......@@ -6686,21 +6662,13 @@ const std = @import("std");
66866662// :167:25: error: use of undefined value here causes illegal behavior
66876663// :167:25: error: use of undefined value here causes illegal behavior
66886664// :167:25: error: use of undefined value here causes illegal behavior
6689// :167:25: note: when computing vector element at index '1'
66906665// :167:25: error: use of undefined value here causes illegal behavior
6691// :167:25: note: when computing vector element at index '1'
66926666// :167:25: error: use of undefined value here causes illegal behavior
6693// :167:25: note: when computing vector element at index '1'
66946667// :167:25: error: use of undefined value here causes illegal behavior
6695// :167:25: note: when computing vector element at index '1'
66966668// :167:25: error: use of undefined value here causes illegal behavior
6697// :167:25: note: when computing vector element at index '0'
66986669// :167:25: error: use of undefined value here causes illegal behavior
6699// :167:25: note: when computing vector element at index '0'
67006670// :167:25: error: use of undefined value here causes illegal behavior
6701// :167:25: note: when computing vector element at index '0'
67026671// :167:25: error: use of undefined value here causes illegal behavior
6703// :167:25: note: when computing vector element at index '0'
67046672// :167:25: error: use of undefined value here causes illegal behavior
67056673// :167:25: error: use of undefined value here causes illegal behavior
67066674// :167:25: error: use of undefined value here causes illegal behavior
......@@ -6708,13 +6676,9 @@ const std = @import("std");
67086676// :167:25: error: use of undefined value here causes illegal behavior
67096677// :167:25: error: use of undefined value here causes illegal behavior
67106678// :167:25: error: use of undefined value here causes illegal behavior
6711// :167:25: note: when computing vector element at index '1'
67126679// :167:25: error: use of undefined value here causes illegal behavior
6713// :167:25: note: when computing vector element at index '1'
67146680// :167:25: error: use of undefined value here causes illegal behavior
6715// :167:25: note: when computing vector element at index '1'
67166681// :167:25: error: use of undefined value here causes illegal behavior
6717// :167:25: note: when computing vector element at index '1'
67186682// :167:25: error: use of undefined value here causes illegal behavior
67196683// :167:25: note: when computing vector element at index '0'
67206684// :167:25: error: use of undefined value here causes illegal behavior
......@@ -6724,19 +6688,21 @@ const std = @import("std");
67246688// :167:25: error: use of undefined value here causes illegal behavior
67256689// :167:25: note: when computing vector element at index '0'
67266690// :167:25: error: use of undefined value here causes illegal behavior
6691// :167:25: note: when computing vector element at index '0'
67276692// :167:25: error: use of undefined value here causes illegal behavior
6693// :167:25: note: when computing vector element at index '0'
67286694// :167:25: error: use of undefined value here causes illegal behavior
6695// :167:25: note: when computing vector element at index '0'
67296696// :167:25: error: use of undefined value here causes illegal behavior
6697// :167:25: note: when computing vector element at index '0'
67306698// :167:25: error: use of undefined value here causes illegal behavior
6699// :167:25: note: when computing vector element at index '0'
67316700// :167:25: error: use of undefined value here causes illegal behavior
6701// :167:25: note: when computing vector element at index '0'
67326702// :167:25: error: use of undefined value here causes illegal behavior
6733// :167:25: note: when computing vector element at index '1'
6734// :167:25: error: use of undefined value here causes illegal behavior
6735// :167:25: note: when computing vector element at index '1'
6736// :167:25: error: use of undefined value here causes illegal behavior
6737// :167:25: note: when computing vector element at index '1'
6703// :167:25: note: when computing vector element at index '0'
67386704// :167:25: error: use of undefined value here causes illegal behavior
6739// :167:25: note: when computing vector element at index '1'
6705// :167:25: note: when computing vector element at index '0'
67406706// :167:25: error: use of undefined value here causes illegal behavior
67416707// :167:25: note: when computing vector element at index '0'
67426708// :167:25: error: use of undefined value here causes illegal behavior
......@@ -6746,19 +6712,25 @@ const std = @import("std");
67466712// :167:25: error: use of undefined value here causes illegal behavior
67476713// :167:25: note: when computing vector element at index '0'
67486714// :167:25: error: use of undefined value here causes illegal behavior
6715// :167:25: note: when computing vector element at index '0'
67496716// :167:25: error: use of undefined value here causes illegal behavior
6717// :167:25: note: when computing vector element at index '0'
67506718// :167:25: error: use of undefined value here causes illegal behavior
6719// :167:25: note: when computing vector element at index '0'
67516720// :167:25: error: use of undefined value here causes illegal behavior
6721// :167:25: note: when computing vector element at index '0'
67526722// :167:25: error: use of undefined value here causes illegal behavior
6723// :167:25: note: when computing vector element at index '0'
67536724// :167:25: error: use of undefined value here causes illegal behavior
6725// :167:25: note: when computing vector element at index '0'
67546726// :167:25: error: use of undefined value here causes illegal behavior
6755// :167:25: note: when computing vector element at index '1'
6727// :167:25: note: when computing vector element at index '0'
67566728// :167:25: error: use of undefined value here causes illegal behavior
6757// :167:25: note: when computing vector element at index '1'
6729// :167:25: note: when computing vector element at index '0'
67586730// :167:25: error: use of undefined value here causes illegal behavior
6759// :167:25: note: when computing vector element at index '1'
6731// :167:25: note: when computing vector element at index '0'
67606732// :167:25: error: use of undefined value here causes illegal behavior
6761// :167:25: note: when computing vector element at index '1'
6733// :167:25: note: when computing vector element at index '0'
67626734// :167:25: error: use of undefined value here causes illegal behavior
67636735// :167:25: note: when computing vector element at index '0'
67646736// :167:25: error: use of undefined value here causes illegal behavior
......@@ -6768,19 +6740,25 @@ const std = @import("std");
67686740// :167:25: error: use of undefined value here causes illegal behavior
67696741// :167:25: note: when computing vector element at index '0'
67706742// :167:25: error: use of undefined value here causes illegal behavior
6743// :167:25: note: when computing vector element at index '0'
67716744// :167:25: error: use of undefined value here causes illegal behavior
6745// :167:25: note: when computing vector element at index '0'
67726746// :167:25: error: use of undefined value here causes illegal behavior
6747// :167:25: note: when computing vector element at index '0'
67736748// :167:25: error: use of undefined value here causes illegal behavior
6749// :167:25: note: when computing vector element at index '0'
67746750// :167:25: error: use of undefined value here causes illegal behavior
6751// :167:25: note: when computing vector element at index '0'
67756752// :167:25: error: use of undefined value here causes illegal behavior
6753// :167:25: note: when computing vector element at index '0'
67766754// :167:25: error: use of undefined value here causes illegal behavior
6777// :167:25: note: when computing vector element at index '1'
6755// :167:25: note: when computing vector element at index '0'
67786756// :167:25: error: use of undefined value here causes illegal behavior
6779// :167:25: note: when computing vector element at index '1'
6757// :167:25: note: when computing vector element at index '0'
67806758// :167:25: error: use of undefined value here causes illegal behavior
6781// :167:25: note: when computing vector element at index '1'
6759// :167:25: note: when computing vector element at index '0'
67826760// :167:25: error: use of undefined value here causes illegal behavior
6783// :167:25: note: when computing vector element at index '1'
6761// :167:25: note: when computing vector element at index '0'
67846762// :167:25: error: use of undefined value here causes illegal behavior
67856763// :167:25: note: when computing vector element at index '0'
67866764// :167:25: error: use of undefined value here causes illegal behavior
......@@ -6790,11 +6768,21 @@ const std = @import("std");
67906768// :167:25: error: use of undefined value here causes illegal behavior
67916769// :167:25: note: when computing vector element at index '0'
67926770// :167:25: error: use of undefined value here causes illegal behavior
6771// :167:25: note: when computing vector element at index '1'
6772// :167:25: error: use of undefined value here causes illegal behavior
6773// :167:25: note: when computing vector element at index '1'
6774// :167:25: error: use of undefined value here causes illegal behavior
6775// :167:25: note: when computing vector element at index '1'
67936776// :167:25: error: use of undefined value here causes illegal behavior
6777// :167:25: note: when computing vector element at index '1'
67946778// :167:25: error: use of undefined value here causes illegal behavior
6779// :167:25: note: when computing vector element at index '1'
67956780// :167:25: error: use of undefined value here causes illegal behavior
6781// :167:25: note: when computing vector element at index '1'
67966782// :167:25: error: use of undefined value here causes illegal behavior
6783// :167:25: note: when computing vector element at index '1'
67976784// :167:25: error: use of undefined value here causes illegal behavior
6785// :167:25: note: when computing vector element at index '1'
67986786// :167:25: error: use of undefined value here causes illegal behavior
67996787// :167:25: note: when computing vector element at index '1'
68006788// :167:25: error: use of undefined value here causes illegal behavior
......@@ -6804,19 +6792,25 @@ const std = @import("std");
68046792// :167:25: error: use of undefined value here causes illegal behavior
68056793// :167:25: note: when computing vector element at index '1'
68066794// :167:25: error: use of undefined value here causes illegal behavior
6807// :167:25: note: when computing vector element at index '0'
6795// :167:25: note: when computing vector element at index '1'
68086796// :167:25: error: use of undefined value here causes illegal behavior
6809// :167:25: note: when computing vector element at index '0'
6797// :167:25: note: when computing vector element at index '1'
68106798// :167:25: error: use of undefined value here causes illegal behavior
6811// :167:25: note: when computing vector element at index '0'
6799// :167:25: note: when computing vector element at index '1'
68126800// :167:25: error: use of undefined value here causes illegal behavior
6813// :167:25: note: when computing vector element at index '0'
6801// :167:25: note: when computing vector element at index '1'
68146802// :167:25: error: use of undefined value here causes illegal behavior
6803// :167:25: note: when computing vector element at index '1'
68156804// :167:25: error: use of undefined value here causes illegal behavior
6805// :167:25: note: when computing vector element at index '1'
68166806// :167:25: error: use of undefined value here causes illegal behavior
6807// :167:25: note: when computing vector element at index '1'
68176808// :167:25: error: use of undefined value here causes illegal behavior
6809// :167:25: note: when computing vector element at index '1'
68186810// :167:25: error: use of undefined value here causes illegal behavior
6811// :167:25: note: when computing vector element at index '1'
68196812// :167:25: error: use of undefined value here causes illegal behavior
6813// :167:25: note: when computing vector element at index '1'
68206814// :167:25: error: use of undefined value here causes illegal behavior
68216815// :167:25: note: when computing vector element at index '1'
68226816// :167:25: error: use of undefined value here causes illegal behavior
......@@ -6826,19 +6820,25 @@ const std = @import("std");
68266820// :167:25: error: use of undefined value here causes illegal behavior
68276821// :167:25: note: when computing vector element at index '1'
68286822// :167:25: error: use of undefined value here causes illegal behavior
6829// :167:25: note: when computing vector element at index '0'
6823// :167:25: note: when computing vector element at index '1'
68306824// :167:25: error: use of undefined value here causes illegal behavior
6831// :167:25: note: when computing vector element at index '0'
6825// :167:25: note: when computing vector element at index '1'
68326826// :167:25: error: use of undefined value here causes illegal behavior
6833// :167:25: note: when computing vector element at index '0'
6827// :167:25: note: when computing vector element at index '1'
68346828// :167:25: error: use of undefined value here causes illegal behavior
6835// :167:25: note: when computing vector element at index '0'
6829// :167:25: note: when computing vector element at index '1'
68366830// :167:25: error: use of undefined value here causes illegal behavior
6831// :167:25: note: when computing vector element at index '1'
68376832// :167:25: error: use of undefined value here causes illegal behavior
6833// :167:25: note: when computing vector element at index '1'
68386834// :167:25: error: use of undefined value here causes illegal behavior
6835// :167:25: note: when computing vector element at index '1'
68396836// :167:25: error: use of undefined value here causes illegal behavior
6837// :167:25: note: when computing vector element at index '1'
68406838// :167:25: error: use of undefined value here causes illegal behavior
6839// :167:25: note: when computing vector element at index '1'
68416840// :167:25: error: use of undefined value here causes illegal behavior
6841// :167:25: note: when computing vector element at index '1'
68426842// :167:25: error: use of undefined value here causes illegal behavior
68436843// :167:25: note: when computing vector element at index '1'
68446844// :167:25: error: use of undefined value here causes illegal behavior
......@@ -6848,13 +6848,13 @@ const std = @import("std");
68486848// :167:25: error: use of undefined value here causes illegal behavior
68496849// :167:25: note: when computing vector element at index '1'
68506850// :167:25: error: use of undefined value here causes illegal behavior
6851// :167:25: note: when computing vector element at index '0'
6851// :167:25: note: when computing vector element at index '1'
68526852// :167:25: error: use of undefined value here causes illegal behavior
6853// :167:25: note: when computing vector element at index '0'
6853// :167:25: note: when computing vector element at index '1'
68546854// :167:25: error: use of undefined value here causes illegal behavior
6855// :167:25: note: when computing vector element at index '0'
6855// :167:25: note: when computing vector element at index '1'
68566856// :167:25: error: use of undefined value here causes illegal behavior
6857// :167:25: note: when computing vector element at index '0'
6857// :167:25: note: when computing vector element at index '1'
68586858// :171:25: error: use of undefined value here causes illegal behavior
68596859// :171:25: error: use of undefined value here causes illegal behavior
68606860// :171:25: error: use of undefined value here causes illegal behavior
......@@ -6862,21 +6862,13 @@ const std = @import("std");
68626862// :171:25: error: use of undefined value here causes illegal behavior
68636863// :171:25: error: use of undefined value here causes illegal behavior
68646864// :171:25: error: use of undefined value here causes illegal behavior
6865// :171:25: note: when computing vector element at index '1'
68666865// :171:25: error: use of undefined value here causes illegal behavior
6867// :171:25: note: when computing vector element at index '1'
68686866// :171:25: error: use of undefined value here causes illegal behavior
6869// :171:25: note: when computing vector element at index '1'
68706867// :171:25: error: use of undefined value here causes illegal behavior
6871// :171:25: note: when computing vector element at index '1'
68726868// :171:25: error: use of undefined value here causes illegal behavior
6873// :171:25: note: when computing vector element at index '0'
68746869// :171:25: error: use of undefined value here causes illegal behavior
6875// :171:25: note: when computing vector element at index '0'
68766870// :171:25: error: use of undefined value here causes illegal behavior
6877// :171:25: note: when computing vector element at index '0'
68786871// :171:25: error: use of undefined value here causes illegal behavior
6879// :171:25: note: when computing vector element at index '0'
68806872// :171:25: error: use of undefined value here causes illegal behavior
68816873// :171:25: error: use of undefined value here causes illegal behavior
68826874// :171:25: error: use of undefined value here causes illegal behavior
......@@ -6884,21 +6876,13 @@ const std = @import("std");
68846876// :171:25: error: use of undefined value here causes illegal behavior
68856877// :171:25: error: use of undefined value here causes illegal behavior
68866878// :171:25: error: use of undefined value here causes illegal behavior
6887// :171:25: note: when computing vector element at index '1'
68886879// :171:25: error: use of undefined value here causes illegal behavior
6889// :171:25: note: when computing vector element at index '1'
68906880// :171:25: error: use of undefined value here causes illegal behavior
6891// :171:25: note: when computing vector element at index '1'
68926881// :171:25: error: use of undefined value here causes illegal behavior
6893// :171:25: note: when computing vector element at index '1'
68946882// :171:25: error: use of undefined value here causes illegal behavior
6895// :171:25: note: when computing vector element at index '0'
68966883// :171:25: error: use of undefined value here causes illegal behavior
6897// :171:25: note: when computing vector element at index '0'
68986884// :171:25: error: use of undefined value here causes illegal behavior
6899// :171:25: note: when computing vector element at index '0'
69006885// :171:25: error: use of undefined value here causes illegal behavior
6901// :171:25: note: when computing vector element at index '0'
69026886// :171:25: error: use of undefined value here causes illegal behavior
69036887// :171:25: error: use of undefined value here causes illegal behavior
69046888// :171:25: error: use of undefined value here causes illegal behavior
......@@ -6906,21 +6890,13 @@ const std = @import("std");
69066890// :171:25: error: use of undefined value here causes illegal behavior
69076891// :171:25: error: use of undefined value here causes illegal behavior
69086892// :171:25: error: use of undefined value here causes illegal behavior
6909// :171:25: note: when computing vector element at index '1'
69106893// :171:25: error: use of undefined value here causes illegal behavior
6911// :171:25: note: when computing vector element at index '1'
69126894// :171:25: error: use of undefined value here causes illegal behavior
6913// :171:25: note: when computing vector element at index '1'
69146895// :171:25: error: use of undefined value here causes illegal behavior
6915// :171:25: note: when computing vector element at index '1'
69166896// :171:25: error: use of undefined value here causes illegal behavior
6917// :171:25: note: when computing vector element at index '0'
69186897// :171:25: error: use of undefined value here causes illegal behavior
6919// :171:25: note: when computing vector element at index '0'
69206898// :171:25: error: use of undefined value here causes illegal behavior
6921// :171:25: note: when computing vector element at index '0'
69226899// :171:25: error: use of undefined value here causes illegal behavior
6923// :171:25: note: when computing vector element at index '0'
69246900// :171:25: error: use of undefined value here causes illegal behavior
69256901// :171:25: error: use of undefined value here causes illegal behavior
69266902// :171:25: error: use of undefined value here causes illegal behavior
......@@ -6928,21 +6904,13 @@ const std = @import("std");
69286904// :171:25: error: use of undefined value here causes illegal behavior
69296905// :171:25: error: use of undefined value here causes illegal behavior
69306906// :171:25: error: use of undefined value here causes illegal behavior
6931// :171:25: note: when computing vector element at index '1'
69326907// :171:25: error: use of undefined value here causes illegal behavior
6933// :171:25: note: when computing vector element at index '1'
69346908// :171:25: error: use of undefined value here causes illegal behavior
6935// :171:25: note: when computing vector element at index '1'
69366909// :171:25: error: use of undefined value here causes illegal behavior
6937// :171:25: note: when computing vector element at index '1'
69386910// :171:25: error: use of undefined value here causes illegal behavior
6939// :171:25: note: when computing vector element at index '0'
69406911// :171:25: error: use of undefined value here causes illegal behavior
6941// :171:25: note: when computing vector element at index '0'
69426912// :171:25: error: use of undefined value here causes illegal behavior
6943// :171:25: note: when computing vector element at index '0'
69446913// :171:25: error: use of undefined value here causes illegal behavior
6945// :171:25: note: when computing vector element at index '0'
69466914// :171:25: error: use of undefined value here causes illegal behavior
69476915// :171:25: error: use of undefined value here causes illegal behavior
69486916// :171:25: error: use of undefined value here causes illegal behavior
......@@ -6950,13 +6918,9 @@ const std = @import("std");
69506918// :171:25: error: use of undefined value here causes illegal behavior
69516919// :171:25: error: use of undefined value here causes illegal behavior
69526920// :171:25: error: use of undefined value here causes illegal behavior
6953// :171:25: note: when computing vector element at index '1'
69546921// :171:25: error: use of undefined value here causes illegal behavior
6955// :171:25: note: when computing vector element at index '1'
69566922// :171:25: error: use of undefined value here causes illegal behavior
6957// :171:25: note: when computing vector element at index '1'
69586923// :171:25: error: use of undefined value here causes illegal behavior
6959// :171:25: note: when computing vector element at index '1'
69606924// :171:25: error: use of undefined value here causes illegal behavior
69616925// :171:25: note: when computing vector element at index '0'
69626926// :171:25: error: use of undefined value here causes illegal behavior
......@@ -6966,19 +6930,21 @@ const std = @import("std");
69666930// :171:25: error: use of undefined value here causes illegal behavior
69676931// :171:25: note: when computing vector element at index '0'
69686932// :171:25: error: use of undefined value here causes illegal behavior
6933// :171:25: note: when computing vector element at index '0'
69696934// :171:25: error: use of undefined value here causes illegal behavior
6935// :171:25: note: when computing vector element at index '0'
69706936// :171:25: error: use of undefined value here causes illegal behavior
6937// :171:25: note: when computing vector element at index '0'
69716938// :171:25: error: use of undefined value here causes illegal behavior
6939// :171:25: note: when computing vector element at index '0'
69726940// :171:25: error: use of undefined value here causes illegal behavior
6941// :171:25: note: when computing vector element at index '0'
69736942// :171:25: error: use of undefined value here causes illegal behavior
6943// :171:25: note: when computing vector element at index '0'
69746944// :171:25: error: use of undefined value here causes illegal behavior
6975// :171:25: note: when computing vector element at index '1'
6976// :171:25: error: use of undefined value here causes illegal behavior
6977// :171:25: note: when computing vector element at index '1'
6978// :171:25: error: use of undefined value here causes illegal behavior
6979// :171:25: note: when computing vector element at index '1'
6945// :171:25: note: when computing vector element at index '0'
69806946// :171:25: error: use of undefined value here causes illegal behavior
6981// :171:25: note: when computing vector element at index '1'
6947// :171:25: note: when computing vector element at index '0'
69826948// :171:25: error: use of undefined value here causes illegal behavior
69836949// :171:25: note: when computing vector element at index '0'
69846950// :171:25: error: use of undefined value here causes illegal behavior
......@@ -6988,19 +6954,25 @@ const std = @import("std");
69886954// :171:25: error: use of undefined value here causes illegal behavior
69896955// :171:25: note: when computing vector element at index '0'
69906956// :171:25: error: use of undefined value here causes illegal behavior
6957// :171:25: note: when computing vector element at index '0'
69916958// :171:25: error: use of undefined value here causes illegal behavior
6959// :171:25: note: when computing vector element at index '0'
69926960// :171:25: error: use of undefined value here causes illegal behavior
6961// :171:25: note: when computing vector element at index '0'
69936962// :171:25: error: use of undefined value here causes illegal behavior
6963// :171:25: note: when computing vector element at index '0'
69946964// :171:25: error: use of undefined value here causes illegal behavior
6965// :171:25: note: when computing vector element at index '0'
69956966// :171:25: error: use of undefined value here causes illegal behavior
6967// :171:25: note: when computing vector element at index '0'
69966968// :171:25: error: use of undefined value here causes illegal behavior
6997// :171:25: note: when computing vector element at index '1'
6969// :171:25: note: when computing vector element at index '0'
69986970// :171:25: error: use of undefined value here causes illegal behavior
6999// :171:25: note: when computing vector element at index '1'
6971// :171:25: note: when computing vector element at index '0'
70006972// :171:25: error: use of undefined value here causes illegal behavior
7001// :171:25: note: when computing vector element at index '1'
6973// :171:25: note: when computing vector element at index '0'
70026974// :171:25: error: use of undefined value here causes illegal behavior
7003// :171:25: note: when computing vector element at index '1'
6975// :171:25: note: when computing vector element at index '0'
70046976// :171:25: error: use of undefined value here causes illegal behavior
70056977// :171:25: note: when computing vector element at index '0'
70066978// :171:25: error: use of undefined value here causes illegal behavior
......@@ -7010,19 +6982,25 @@ const std = @import("std");
70106982// :171:25: error: use of undefined value here causes illegal behavior
70116983// :171:25: note: when computing vector element at index '0'
70126984// :171:25: error: use of undefined value here causes illegal behavior
6985// :171:25: note: when computing vector element at index '0'
70136986// :171:25: error: use of undefined value here causes illegal behavior
6987// :171:25: note: when computing vector element at index '0'
70146988// :171:25: error: use of undefined value here causes illegal behavior
6989// :171:25: note: when computing vector element at index '0'
70156990// :171:25: error: use of undefined value here causes illegal behavior
6991// :171:25: note: when computing vector element at index '0'
70166992// :171:25: error: use of undefined value here causes illegal behavior
6993// :171:25: note: when computing vector element at index '0'
70176994// :171:25: error: use of undefined value here causes illegal behavior
6995// :171:25: note: when computing vector element at index '0'
70186996// :171:25: error: use of undefined value here causes illegal behavior
7019// :171:25: note: when computing vector element at index '1'
6997// :171:25: note: when computing vector element at index '0'
70206998// :171:25: error: use of undefined value here causes illegal behavior
7021// :171:25: note: when computing vector element at index '1'
6999// :171:25: note: when computing vector element at index '0'
70227000// :171:25: error: use of undefined value here causes illegal behavior
7023// :171:25: note: when computing vector element at index '1'
7001// :171:25: note: when computing vector element at index '0'
70247002// :171:25: error: use of undefined value here causes illegal behavior
7025// :171:25: note: when computing vector element at index '1'
7003// :171:25: note: when computing vector element at index '0'
70267004// :171:25: error: use of undefined value here causes illegal behavior
70277005// :171:25: note: when computing vector element at index '0'
70287006// :171:25: error: use of undefined value here causes illegal behavior
......@@ -7032,11 +7010,17 @@ const std = @import("std");
70327010// :171:25: error: use of undefined value here causes illegal behavior
70337011// :171:25: note: when computing vector element at index '0'
70347012// :171:25: error: use of undefined value here causes illegal behavior
7013// :171:25: note: when computing vector element at index '1'
70357014// :171:25: error: use of undefined value here causes illegal behavior
7015// :171:25: note: when computing vector element at index '1'
70367016// :171:25: error: use of undefined value here causes illegal behavior
7017// :171:25: note: when computing vector element at index '1'
70377018// :171:25: error: use of undefined value here causes illegal behavior
7019// :171:25: note: when computing vector element at index '1'
70387020// :171:25: error: use of undefined value here causes illegal behavior
7021// :171:25: note: when computing vector element at index '1'
70397022// :171:25: error: use of undefined value here causes illegal behavior
7023// :171:25: note: when computing vector element at index '1'
70407024// :171:25: error: use of undefined value here causes illegal behavior
70417025// :171:25: note: when computing vector element at index '1'
70427026// :171:25: error: use of undefined value here causes illegal behavior
......@@ -7046,19 +7030,25 @@ const std = @import("std");
70467030// :171:25: error: use of undefined value here causes illegal behavior
70477031// :171:25: note: when computing vector element at index '1'
70487032// :171:25: error: use of undefined value here causes illegal behavior
7049// :171:25: note: when computing vector element at index '0'
7033// :171:25: note: when computing vector element at index '1'
70507034// :171:25: error: use of undefined value here causes illegal behavior
7051// :171:25: note: when computing vector element at index '0'
7035// :171:25: note: when computing vector element at index '1'
70527036// :171:25: error: use of undefined value here causes illegal behavior
7053// :171:25: note: when computing vector element at index '0'
7037// :171:25: note: when computing vector element at index '1'
70547038// :171:25: error: use of undefined value here causes illegal behavior
7055// :171:25: note: when computing vector element at index '0'
7039// :171:25: note: when computing vector element at index '1'
70567040// :171:25: error: use of undefined value here causes illegal behavior
7041// :171:25: note: when computing vector element at index '1'
70577042// :171:25: error: use of undefined value here causes illegal behavior
7043// :171:25: note: when computing vector element at index '1'
70587044// :171:25: error: use of undefined value here causes illegal behavior
7045// :171:25: note: when computing vector element at index '1'
70597046// :171:25: error: use of undefined value here causes illegal behavior
7047// :171:25: note: when computing vector element at index '1'
70607048// :171:25: error: use of undefined value here causes illegal behavior
7049// :171:25: note: when computing vector element at index '1'
70617050// :171:25: error: use of undefined value here causes illegal behavior
7051// :171:25: note: when computing vector element at index '1'
70627052// :171:25: error: use of undefined value here causes illegal behavior
70637053// :171:25: note: when computing vector element at index '1'
70647054// :171:25: error: use of undefined value here causes illegal behavior
......@@ -7068,19 +7058,25 @@ const std = @import("std");
70687058// :171:25: error: use of undefined value here causes illegal behavior
70697059// :171:25: note: when computing vector element at index '1'
70707060// :171:25: error: use of undefined value here causes illegal behavior
7071// :171:25: note: when computing vector element at index '0'
7061// :171:25: note: when computing vector element at index '1'
70727062// :171:25: error: use of undefined value here causes illegal behavior
7073// :171:25: note: when computing vector element at index '0'
7063// :171:25: note: when computing vector element at index '1'
70747064// :171:25: error: use of undefined value here causes illegal behavior
7075// :171:25: note: when computing vector element at index '0'
7065// :171:25: note: when computing vector element at index '1'
70767066// :171:25: error: use of undefined value here causes illegal behavior
7077// :171:25: note: when computing vector element at index '0'
7067// :171:25: note: when computing vector element at index '1'
70787068// :171:25: error: use of undefined value here causes illegal behavior
7069// :171:25: note: when computing vector element at index '1'
70797070// :171:25: error: use of undefined value here causes illegal behavior
7071// :171:25: note: when computing vector element at index '1'
70807072// :171:25: error: use of undefined value here causes illegal behavior
7073// :171:25: note: when computing vector element at index '1'
70817074// :171:25: error: use of undefined value here causes illegal behavior
7075// :171:25: note: when computing vector element at index '1'
70827076// :171:25: error: use of undefined value here causes illegal behavior
7077// :171:25: note: when computing vector element at index '1'
70837078// :171:25: error: use of undefined value here causes illegal behavior
7079// :171:25: note: when computing vector element at index '1'
70847080// :171:25: error: use of undefined value here causes illegal behavior
70857081// :171:25: note: when computing vector element at index '1'
70867082// :171:25: error: use of undefined value here causes illegal behavior
......@@ -7090,37 +7086,33 @@ const std = @import("std");
70907086// :171:25: error: use of undefined value here causes illegal behavior
70917087// :171:25: note: when computing vector element at index '1'
70927088// :171:25: error: use of undefined value here causes illegal behavior
7093// :171:25: note: when computing vector element at index '0'
7089// :171:25: note: when computing vector element at index '1'
70947090// :171:25: error: use of undefined value here causes illegal behavior
7095// :171:25: note: when computing vector element at index '0'
7091// :171:25: note: when computing vector element at index '1'
70967092// :171:25: error: use of undefined value here causes illegal behavior
7097// :171:25: note: when computing vector element at index '0'
7093// :171:25: note: when computing vector element at index '1'
70987094// :171:25: error: use of undefined value here causes illegal behavior
7099// :171:25: note: when computing vector element at index '0'
7095// :171:25: note: when computing vector element at index '1'
7096// :171:25: error: use of undefined value here causes illegal behavior
7097// :171:25: note: when computing vector element at index '1'
7098// :171:25: error: use of undefined value here causes illegal behavior
7099// :171:25: note: when computing vector element at index '1'
71007100// :177:17: error: use of undefined value here causes illegal behavior
71017101// :177:17: error: use of undefined value here causes illegal behavior
71027102// :177:17: error: use of undefined value here causes illegal behavior
7103// :177:17: note: when computing vector element at index '0'
71047103// :177:17: error: use of undefined value here causes illegal behavior
7105// :177:17: note: when computing vector element at index '0'
71067104// :177:17: error: use of undefined value here causes illegal behavior
7107// :177:17: note: when computing vector element at index '0'
71087105// :177:17: error: use of undefined value here causes illegal behavior
7109// :177:17: note: when computing vector element at index '0'
71107106// :177:17: error: use of undefined value here causes illegal behavior
7111// :177:17: note: when computing vector element at index '1'
71127107// :177:17: error: use of undefined value here causes illegal behavior
7113// :177:17: note: when computing vector element at index '1'
71147108// :177:17: error: use of undefined value here causes illegal behavior
7115// :177:17: note: when computing vector element at index '0'
71167109// :177:17: error: use of undefined value here causes illegal behavior
7117// :177:17: note: when computing vector element at index '0'
71187110// :177:17: error: use of undefined value here causes illegal behavior
7119// :177:17: note: when computing vector element at index '0'
71207111// :177:17: error: use of undefined value here causes illegal behavior
7121// :177:17: note: when computing vector element at index '0'
71227112// :177:17: error: use of undefined value here causes illegal behavior
7113// :177:17: note: when computing vector element at index '0'
71237114// :177:17: error: use of undefined value here causes illegal behavior
7115// :177:17: note: when computing vector element at index '0'
71247116// :177:17: error: use of undefined value here causes illegal behavior
71257117// :177:17: note: when computing vector element at index '0'
71267118// :177:17: error: use of undefined value here causes illegal behavior
......@@ -7130,9 +7122,9 @@ const std = @import("std");
71307122// :177:17: error: use of undefined value here causes illegal behavior
71317123// :177:17: note: when computing vector element at index '0'
71327124// :177:17: error: use of undefined value here causes illegal behavior
7133// :177:17: note: when computing vector element at index '1'
7125// :177:17: note: when computing vector element at index '0'
71347126// :177:17: error: use of undefined value here causes illegal behavior
7135// :177:17: note: when computing vector element at index '1'
7127// :177:17: note: when computing vector element at index '0'
71367128// :177:17: error: use of undefined value here causes illegal behavior
71377129// :177:17: note: when computing vector element at index '0'
71387130// :177:17: error: use of undefined value here causes illegal behavior
......@@ -7142,7 +7134,9 @@ const std = @import("std");
71427134// :177:17: error: use of undefined value here causes illegal behavior
71437135// :177:17: note: when computing vector element at index '0'
71447136// :177:17: error: use of undefined value here causes illegal behavior
7137// :177:17: note: when computing vector element at index '0'
71457138// :177:17: error: use of undefined value here causes illegal behavior
7139// :177:17: note: when computing vector element at index '0'
71467140// :177:17: error: use of undefined value here causes illegal behavior
71477141// :177:17: note: when computing vector element at index '0'
71487142// :177:17: error: use of undefined value here causes illegal behavior
......@@ -7152,9 +7146,9 @@ const std = @import("std");
71527146// :177:17: error: use of undefined value here causes illegal behavior
71537147// :177:17: note: when computing vector element at index '0'
71547148// :177:17: error: use of undefined value here causes illegal behavior
7155// :177:17: note: when computing vector element at index '1'
7149// :177:17: note: when computing vector element at index '0'
71567150// :177:17: error: use of undefined value here causes illegal behavior
7157// :177:17: note: when computing vector element at index '1'
7151// :177:17: note: when computing vector element at index '0'
71587152// :177:17: error: use of undefined value here causes illegal behavior
71597153// :177:17: note: when computing vector element at index '0'
71607154// :177:17: error: use of undefined value here causes illegal behavior
......@@ -7164,7 +7158,9 @@ const std = @import("std");
71647158// :177:17: error: use of undefined value here causes illegal behavior
71657159// :177:17: note: when computing vector element at index '0'
71667160// :177:17: error: use of undefined value here causes illegal behavior
7161// :177:17: note: when computing vector element at index '0'
71677162// :177:17: error: use of undefined value here causes illegal behavior
7163// :177:17: note: when computing vector element at index '0'
71687164// :177:17: error: use of undefined value here causes illegal behavior
71697165// :177:17: note: when computing vector element at index '0'
71707166// :177:17: error: use of undefined value here causes illegal behavior
......@@ -7174,9 +7170,9 @@ const std = @import("std");
71747170// :177:17: error: use of undefined value here causes illegal behavior
71757171// :177:17: note: when computing vector element at index '0'
71767172// :177:17: error: use of undefined value here causes illegal behavior
7177// :177:17: note: when computing vector element at index '1'
7173// :177:17: note: when computing vector element at index '0'
71787174// :177:17: error: use of undefined value here causes illegal behavior
7179// :177:17: note: when computing vector element at index '1'
7175// :177:17: note: when computing vector element at index '0'
71807176// :177:17: error: use of undefined value here causes illegal behavior
71817177// :177:17: note: when computing vector element at index '0'
71827178// :177:17: error: use of undefined value here causes illegal behavior
......@@ -7186,7 +7182,9 @@ const std = @import("std");
71867182// :177:17: error: use of undefined value here causes illegal behavior
71877183// :177:17: note: when computing vector element at index '0'
71887184// :177:17: error: use of undefined value here causes illegal behavior
7185// :177:17: note: when computing vector element at index '0'
71897186// :177:17: error: use of undefined value here causes illegal behavior
7187// :177:17: note: when computing vector element at index '0'
71907188// :177:17: error: use of undefined value here causes illegal behavior
71917189// :177:17: note: when computing vector element at index '0'
71927190// :177:17: error: use of undefined value here causes illegal behavior
......@@ -7196,9 +7194,9 @@ const std = @import("std");
71967194// :177:17: error: use of undefined value here causes illegal behavior
71977195// :177:17: note: when computing vector element at index '0'
71987196// :177:17: error: use of undefined value here causes illegal behavior
7199// :177:17: note: when computing vector element at index '1'
7197// :177:17: note: when computing vector element at index '0'
72007198// :177:17: error: use of undefined value here causes illegal behavior
7201// :177:17: note: when computing vector element at index '1'
7199// :177:17: note: when computing vector element at index '0'
72027200// :177:17: error: use of undefined value here causes illegal behavior
72037201// :177:17: note: when computing vector element at index '0'
72047202// :177:17: error: use of undefined value here causes illegal behavior
......@@ -7208,27 +7206,29 @@ const std = @import("std");
72087206// :177:17: error: use of undefined value here causes illegal behavior
72097207// :177:17: note: when computing vector element at index '0'
72107208// :177:17: error: use of undefined value here causes illegal behavior
7209// :177:17: note: when computing vector element at index '1'
72117210// :177:17: error: use of undefined value here causes illegal behavior
7211// :177:17: note: when computing vector element at index '1'
72127212// :177:17: error: use of undefined value here causes illegal behavior
7213// :177:17: note: when computing vector element at index '0'
7213// :177:17: note: when computing vector element at index '1'
72147214// :177:17: error: use of undefined value here causes illegal behavior
7215// :177:17: note: when computing vector element at index '0'
7215// :177:17: note: when computing vector element at index '1'
72167216// :177:17: error: use of undefined value here causes illegal behavior
7217// :177:17: note: when computing vector element at index '0'
7217// :177:17: note: when computing vector element at index '1'
72187218// :177:17: error: use of undefined value here causes illegal behavior
7219// :177:17: note: when computing vector element at index '0'
7219// :177:17: note: when computing vector element at index '1'
72207220// :177:17: error: use of undefined value here causes illegal behavior
72217221// :177:17: note: when computing vector element at index '1'
72227222// :177:17: error: use of undefined value here causes illegal behavior
72237223// :177:17: note: when computing vector element at index '1'
72247224// :177:17: error: use of undefined value here causes illegal behavior
7225// :177:17: note: when computing vector element at index '0'
7225// :177:17: note: when computing vector element at index '1'
72267226// :177:17: error: use of undefined value here causes illegal behavior
7227// :177:17: note: when computing vector element at index '0'
7227// :177:17: note: when computing vector element at index '1'
72287228// :177:17: error: use of undefined value here causes illegal behavior
7229// :177:17: note: when computing vector element at index '0'
7229// :177:17: note: when computing vector element at index '1'
72307230// :177:17: error: use of undefined value here causes illegal behavior
7231// :177:17: note: when computing vector element at index '0'
7231// :177:17: note: when computing vector element at index '1'
72327232// :177:21: error: use of undefined value here causes illegal behavior
72337233// :177:21: note: when computing vector element at index '0'
72347234// :177:21: error: use of undefined value here causes illegal behavior
......@@ -7256,27 +7256,19 @@ const std = @import("std");
72567256// :180:17: error: use of undefined value here causes illegal behavior
72577257// :180:17: error: use of undefined value here causes illegal behavior
72587258// :180:17: error: use of undefined value here causes illegal behavior
7259// :180:17: note: when computing vector element at index '0'
72607259// :180:17: error: use of undefined value here causes illegal behavior
7261// :180:17: note: when computing vector element at index '0'
72627260// :180:17: error: use of undefined value here causes illegal behavior
7263// :180:17: note: when computing vector element at index '0'
72647261// :180:17: error: use of undefined value here causes illegal behavior
7265// :180:17: note: when computing vector element at index '0'
72667262// :180:17: error: use of undefined value here causes illegal behavior
7267// :180:17: note: when computing vector element at index '1'
72687263// :180:17: error: use of undefined value here causes illegal behavior
7269// :180:17: note: when computing vector element at index '1'
72707264// :180:17: error: use of undefined value here causes illegal behavior
7271// :180:17: note: when computing vector element at index '0'
72727265// :180:17: error: use of undefined value here causes illegal behavior
7273// :180:17: note: when computing vector element at index '0'
72747266// :180:17: error: use of undefined value here causes illegal behavior
7275// :180:17: note: when computing vector element at index '0'
72767267// :180:17: error: use of undefined value here causes illegal behavior
7277// :180:17: note: when computing vector element at index '0'
72787268// :180:17: error: use of undefined value here causes illegal behavior
7269// :180:17: note: when computing vector element at index '0'
72797270// :180:17: error: use of undefined value here causes illegal behavior
7271// :180:17: note: when computing vector element at index '0'
72807272// :180:17: error: use of undefined value here causes illegal behavior
72817273// :180:17: note: when computing vector element at index '0'
72827274// :180:17: error: use of undefined value here causes illegal behavior
......@@ -7286,9 +7278,9 @@ const std = @import("std");
72867278// :180:17: error: use of undefined value here causes illegal behavior
72877279// :180:17: note: when computing vector element at index '0'
72887280// :180:17: error: use of undefined value here causes illegal behavior
7289// :180:17: note: when computing vector element at index '1'
7281// :180:17: note: when computing vector element at index '0'
72907282// :180:17: error: use of undefined value here causes illegal behavior
7291// :180:17: note: when computing vector element at index '1'
7283// :180:17: note: when computing vector element at index '0'
72927284// :180:17: error: use of undefined value here causes illegal behavior
72937285// :180:17: note: when computing vector element at index '0'
72947286// :180:17: error: use of undefined value here causes illegal behavior
......@@ -7298,7 +7290,9 @@ const std = @import("std");
72987290// :180:17: error: use of undefined value here causes illegal behavior
72997291// :180:17: note: when computing vector element at index '0'
73007292// :180:17: error: use of undefined value here causes illegal behavior
7293// :180:17: note: when computing vector element at index '0'
73017294// :180:17: error: use of undefined value here causes illegal behavior
7295// :180:17: note: when computing vector element at index '0'
73027296// :180:17: error: use of undefined value here causes illegal behavior
73037297// :180:17: note: when computing vector element at index '0'
73047298// :180:17: error: use of undefined value here causes illegal behavior
......@@ -7308,9 +7302,9 @@ const std = @import("std");
73087302// :180:17: error: use of undefined value here causes illegal behavior
73097303// :180:17: note: when computing vector element at index '0'
73107304// :180:17: error: use of undefined value here causes illegal behavior
7311// :180:17: note: when computing vector element at index '1'
7305// :180:17: note: when computing vector element at index '0'
73127306// :180:17: error: use of undefined value here causes illegal behavior
7313// :180:17: note: when computing vector element at index '1'
7307// :180:17: note: when computing vector element at index '0'
73147308// :180:17: error: use of undefined value here causes illegal behavior
73157309// :180:17: note: when computing vector element at index '0'
73167310// :180:17: error: use of undefined value here causes illegal behavior
......@@ -7320,7 +7314,9 @@ const std = @import("std");
73207314// :180:17: error: use of undefined value here causes illegal behavior
73217315// :180:17: note: when computing vector element at index '0'
73227316// :180:17: error: use of undefined value here causes illegal behavior
7317// :180:17: note: when computing vector element at index '0'
73237318// :180:17: error: use of undefined value here causes illegal behavior
7319// :180:17: note: when computing vector element at index '0'
73247320// :180:17: error: use of undefined value here causes illegal behavior
73257321// :180:17: note: when computing vector element at index '0'
73267322// :180:17: error: use of undefined value here causes illegal behavior
......@@ -7330,9 +7326,9 @@ const std = @import("std");
73307326// :180:17: error: use of undefined value here causes illegal behavior
73317327// :180:17: note: when computing vector element at index '0'
73327328// :180:17: error: use of undefined value here causes illegal behavior
7333// :180:17: note: when computing vector element at index '1'
7329// :180:17: note: when computing vector element at index '0'
73347330// :180:17: error: use of undefined value here causes illegal behavior
7335// :180:17: note: when computing vector element at index '1'
7331// :180:17: note: when computing vector element at index '0'
73367332// :180:17: error: use of undefined value here causes illegal behavior
73377333// :180:17: note: when computing vector element at index '0'
73387334// :180:17: error: use of undefined value here causes illegal behavior
......@@ -7342,7 +7338,9 @@ const std = @import("std");
73427338// :180:17: error: use of undefined value here causes illegal behavior
73437339// :180:17: note: when computing vector element at index '0'
73447340// :180:17: error: use of undefined value here causes illegal behavior
7341// :180:17: note: when computing vector element at index '0'
73457342// :180:17: error: use of undefined value here causes illegal behavior
7343// :180:17: note: when computing vector element at index '0'
73467344// :180:17: error: use of undefined value here causes illegal behavior
73477345// :180:17: note: when computing vector element at index '0'
73487346// :180:17: error: use of undefined value here causes illegal behavior
......@@ -7352,9 +7350,9 @@ const std = @import("std");
73527350// :180:17: error: use of undefined value here causes illegal behavior
73537351// :180:17: note: when computing vector element at index '0'
73547352// :180:17: error: use of undefined value here causes illegal behavior
7355// :180:17: note: when computing vector element at index '1'
7353// :180:17: note: when computing vector element at index '0'
73567354// :180:17: error: use of undefined value here causes illegal behavior
7357// :180:17: note: when computing vector element at index '1'
7355// :180:17: note: when computing vector element at index '0'
73587356// :180:17: error: use of undefined value here causes illegal behavior
73597357// :180:17: note: when computing vector element at index '0'
73607358// :180:17: error: use of undefined value here causes illegal behavior
......@@ -7364,27 +7362,29 @@ const std = @import("std");
73647362// :180:17: error: use of undefined value here causes illegal behavior
73657363// :180:17: note: when computing vector element at index '0'
73667364// :180:17: error: use of undefined value here causes illegal behavior
7365// :180:17: note: when computing vector element at index '1'
73677366// :180:17: error: use of undefined value here causes illegal behavior
7367// :180:17: note: when computing vector element at index '1'
73687368// :180:17: error: use of undefined value here causes illegal behavior
7369// :180:17: note: when computing vector element at index '0'
7369// :180:17: note: when computing vector element at index '1'
73707370// :180:17: error: use of undefined value here causes illegal behavior
7371// :180:17: note: when computing vector element at index '0'
7371// :180:17: note: when computing vector element at index '1'
73727372// :180:17: error: use of undefined value here causes illegal behavior
7373// :180:17: note: when computing vector element at index '0'
7373// :180:17: note: when computing vector element at index '1'
73747374// :180:17: error: use of undefined value here causes illegal behavior
7375// :180:17: note: when computing vector element at index '0'
7375// :180:17: note: when computing vector element at index '1'
73767376// :180:17: error: use of undefined value here causes illegal behavior
73777377// :180:17: note: when computing vector element at index '1'
73787378// :180:17: error: use of undefined value here causes illegal behavior
73797379// :180:17: note: when computing vector element at index '1'
73807380// :180:17: error: use of undefined value here causes illegal behavior
7381// :180:17: note: when computing vector element at index '0'
7381// :180:17: note: when computing vector element at index '1'
73827382// :180:17: error: use of undefined value here causes illegal behavior
7383// :180:17: note: when computing vector element at index '0'
7383// :180:17: note: when computing vector element at index '1'
73847384// :180:17: error: use of undefined value here causes illegal behavior
7385// :180:17: note: when computing vector element at index '0'
7385// :180:17: note: when computing vector element at index '1'
73867386// :180:17: error: use of undefined value here causes illegal behavior
7387// :180:17: note: when computing vector element at index '0'
7387// :180:17: note: when computing vector element at index '1'
73887388// :180:21: error: use of undefined value here causes illegal behavior
73897389// :180:21: note: when computing vector element at index '0'
73907390// :180:21: error: use of undefined value here causes illegal behavior
......@@ -7412,27 +7412,19 @@ const std = @import("std");
74127412// :183:17: error: use of undefined value here causes illegal behavior
74137413// :183:17: error: use of undefined value here causes illegal behavior
74147414// :183:17: error: use of undefined value here causes illegal behavior
7415// :183:17: note: when computing vector element at index '0'
74167415// :183:17: error: use of undefined value here causes illegal behavior
7417// :183:17: note: when computing vector element at index '0'
74187416// :183:17: error: use of undefined value here causes illegal behavior
7419// :183:17: note: when computing vector element at index '0'
74207417// :183:17: error: use of undefined value here causes illegal behavior
7421// :183:17: note: when computing vector element at index '0'
74227418// :183:17: error: use of undefined value here causes illegal behavior
7423// :183:17: note: when computing vector element at index '1'
74247419// :183:17: error: use of undefined value here causes illegal behavior
7425// :183:17: note: when computing vector element at index '1'
74267420// :183:17: error: use of undefined value here causes illegal behavior
7427// :183:17: note: when computing vector element at index '0'
74287421// :183:17: error: use of undefined value here causes illegal behavior
7429// :183:17: note: when computing vector element at index '0'
74307422// :183:17: error: use of undefined value here causes illegal behavior
7431// :183:17: note: when computing vector element at index '0'
74327423// :183:17: error: use of undefined value here causes illegal behavior
7433// :183:17: note: when computing vector element at index '0'
74347424// :183:17: error: use of undefined value here causes illegal behavior
7425// :183:17: note: when computing vector element at index '0'
74357426// :183:17: error: use of undefined value here causes illegal behavior
7427// :183:17: note: when computing vector element at index '0'
74367428// :183:17: error: use of undefined value here causes illegal behavior
74377429// :183:17: note: when computing vector element at index '0'
74387430// :183:17: error: use of undefined value here causes illegal behavior
......@@ -7442,9 +7434,9 @@ const std = @import("std");
74427434// :183:17: error: use of undefined value here causes illegal behavior
74437435// :183:17: note: when computing vector element at index '0'
74447436// :183:17: error: use of undefined value here causes illegal behavior
7445// :183:17: note: when computing vector element at index '1'
7437// :183:17: note: when computing vector element at index '0'
74467438// :183:17: error: use of undefined value here causes illegal behavior
7447// :183:17: note: when computing vector element at index '1'
7439// :183:17: note: when computing vector element at index '0'
74487440// :183:17: error: use of undefined value here causes illegal behavior
74497441// :183:17: note: when computing vector element at index '0'
74507442// :183:17: error: use of undefined value here causes illegal behavior
......@@ -7454,7 +7446,9 @@ const std = @import("std");
74547446// :183:17: error: use of undefined value here causes illegal behavior
74557447// :183:17: note: when computing vector element at index '0'
74567448// :183:17: error: use of undefined value here causes illegal behavior
7449// :183:17: note: when computing vector element at index '0'
74577450// :183:17: error: use of undefined value here causes illegal behavior
7451// :183:17: note: when computing vector element at index '0'
74587452// :183:17: error: use of undefined value here causes illegal behavior
74597453// :183:17: note: when computing vector element at index '0'
74607454// :183:17: error: use of undefined value here causes illegal behavior
......@@ -7464,9 +7458,9 @@ const std = @import("std");
74647458// :183:17: error: use of undefined value here causes illegal behavior
74657459// :183:17: note: when computing vector element at index '0'
74667460// :183:17: error: use of undefined value here causes illegal behavior
7467// :183:17: note: when computing vector element at index '1'
7461// :183:17: note: when computing vector element at index '0'
74687462// :183:17: error: use of undefined value here causes illegal behavior
7469// :183:17: note: when computing vector element at index '1'
7463// :183:17: note: when computing vector element at index '0'
74707464// :183:17: error: use of undefined value here causes illegal behavior
74717465// :183:17: note: when computing vector element at index '0'
74727466// :183:17: error: use of undefined value here causes illegal behavior
......@@ -7476,7 +7470,9 @@ const std = @import("std");
74767470// :183:17: error: use of undefined value here causes illegal behavior
74777471// :183:17: note: when computing vector element at index '0'
74787472// :183:17: error: use of undefined value here causes illegal behavior
7473// :183:17: note: when computing vector element at index '0'
74797474// :183:17: error: use of undefined value here causes illegal behavior
7475// :183:17: note: when computing vector element at index '0'
74807476// :183:17: error: use of undefined value here causes illegal behavior
74817477// :183:17: note: when computing vector element at index '0'
74827478// :183:17: error: use of undefined value here causes illegal behavior
......@@ -7486,9 +7482,9 @@ const std = @import("std");
74867482// :183:17: error: use of undefined value here causes illegal behavior
74877483// :183:17: note: when computing vector element at index '0'
74887484// :183:17: error: use of undefined value here causes illegal behavior
7489// :183:17: note: when computing vector element at index '1'
7485// :183:17: note: when computing vector element at index '0'
74907486// :183:17: error: use of undefined value here causes illegal behavior
7491// :183:17: note: when computing vector element at index '1'
7487// :183:17: note: when computing vector element at index '0'
74927488// :183:17: error: use of undefined value here causes illegal behavior
74937489// :183:17: note: when computing vector element at index '0'
74947490// :183:17: error: use of undefined value here causes illegal behavior
......@@ -7498,7 +7494,9 @@ const std = @import("std");
74987494// :183:17: error: use of undefined value here causes illegal behavior
74997495// :183:17: note: when computing vector element at index '0'
75007496// :183:17: error: use of undefined value here causes illegal behavior
7497// :183:17: note: when computing vector element at index '0'
75017498// :183:17: error: use of undefined value here causes illegal behavior
7499// :183:17: note: when computing vector element at index '0'
75027500// :183:17: error: use of undefined value here causes illegal behavior
75037501// :183:17: note: when computing vector element at index '0'
75047502// :183:17: error: use of undefined value here causes illegal behavior
......@@ -7508,9 +7506,9 @@ const std = @import("std");
75087506// :183:17: error: use of undefined value here causes illegal behavior
75097507// :183:17: note: when computing vector element at index '0'
75107508// :183:17: error: use of undefined value here causes illegal behavior
7511// :183:17: note: when computing vector element at index '1'
7509// :183:17: note: when computing vector element at index '0'
75127510// :183:17: error: use of undefined value here causes illegal behavior
7513// :183:17: note: when computing vector element at index '1'
7511// :183:17: note: when computing vector element at index '0'
75147512// :183:17: error: use of undefined value here causes illegal behavior
75157513// :183:17: note: when computing vector element at index '0'
75167514// :183:17: error: use of undefined value here causes illegal behavior
......@@ -7520,27 +7518,29 @@ const std = @import("std");
75207518// :183:17: error: use of undefined value here causes illegal behavior
75217519// :183:17: note: when computing vector element at index '0'
75227520// :183:17: error: use of undefined value here causes illegal behavior
7521// :183:17: note: when computing vector element at index '1'
75237522// :183:17: error: use of undefined value here causes illegal behavior
7523// :183:17: note: when computing vector element at index '1'
75247524// :183:17: error: use of undefined value here causes illegal behavior
7525// :183:17: note: when computing vector element at index '0'
7525// :183:17: note: when computing vector element at index '1'
75267526// :183:17: error: use of undefined value here causes illegal behavior
7527// :183:17: note: when computing vector element at index '0'
7527// :183:17: note: when computing vector element at index '1'
75287528// :183:17: error: use of undefined value here causes illegal behavior
7529// :183:17: note: when computing vector element at index '0'
7529// :183:17: note: when computing vector element at index '1'
75307530// :183:17: error: use of undefined value here causes illegal behavior
7531// :183:17: note: when computing vector element at index '0'
7531// :183:17: note: when computing vector element at index '1'
75327532// :183:17: error: use of undefined value here causes illegal behavior
75337533// :183:17: note: when computing vector element at index '1'
75347534// :183:17: error: use of undefined value here causes illegal behavior
75357535// :183:17: note: when computing vector element at index '1'
75367536// :183:17: error: use of undefined value here causes illegal behavior
7537// :183:17: note: when computing vector element at index '0'
7537// :183:17: note: when computing vector element at index '1'
75387538// :183:17: error: use of undefined value here causes illegal behavior
7539// :183:17: note: when computing vector element at index '0'
7539// :183:17: note: when computing vector element at index '1'
75407540// :183:17: error: use of undefined value here causes illegal behavior
7541// :183:17: note: when computing vector element at index '0'
7541// :183:17: note: when computing vector element at index '1'
75427542// :183:17: error: use of undefined value here causes illegal behavior
7543// :183:17: note: when computing vector element at index '0'
7543// :183:17: note: when computing vector element at index '1'
75447544// :183:21: error: use of undefined value here causes illegal behavior
75457545// :183:21: note: when computing vector element at index '0'
75467546// :183:21: error: use of undefined value here causes illegal behavior
test/cases/compile_errors/undef_arith_returns_undef.zig+1794-1794
......@@ -681,1800 +681,1360 @@ inline fn testFloatWithValue(comptime Float: type, x: Float) void {
681681// @as(@Vector(2, u8), undefined)
682682// @as(@Vector(2, u8), [runtime value])
683683// @as(@Vector(2, u8), [runtime value])
684// @as(i8, undefined)
685// @as(i8, undefined)
686// @as(@Vector(2, i8), .{ 6, undefined })
687// @as(@Vector(2, i8), .{ undefined, 6 })
688// @as(@Vector(2, i8), undefined)
689// @as(@Vector(2, i8), .{ 6, undefined })
690// @as(@Vector(2, i8), .{ 6, undefined })
691// @as(@Vector(2, i8), undefined)
692// @as(@Vector(2, i8), undefined)
693// @as(@Vector(2, i8), .{ undefined, 6 })
694// @as(@Vector(2, i8), undefined)
695// @as(@Vector(2, i8), .{ undefined, 6 })
696// @as(@Vector(2, i8), undefined)
697// @as(@Vector(2, i8), undefined)
698// @as(@Vector(2, i8), undefined)
699// @as(@Vector(2, i8), undefined)
700// @as(@Vector(2, i8), undefined)
701// @as(i8, undefined)
702// @as(i8, undefined)
703// @as(@Vector(2, i8), .{ 6, undefined })
704// @as(@Vector(2, i8), .{ undefined, 6 })
705// @as(@Vector(2, i8), undefined)
706// @as(@Vector(2, i8), .{ 6, undefined })
707// @as(@Vector(2, i8), .{ 6, undefined })
708// @as(@Vector(2, i8), undefined)
709// @as(@Vector(2, i8), undefined)
710// @as(@Vector(2, i8), .{ undefined, 6 })
711// @as(@Vector(2, i8), undefined)
712// @as(@Vector(2, i8), .{ undefined, 6 })
713// @as(@Vector(2, i8), undefined)
714// @as(@Vector(2, i8), undefined)
715// @as(@Vector(2, i8), undefined)
716// @as(@Vector(2, i8), undefined)
717// @as(@Vector(2, i8), undefined)
718// @as(i8, undefined)
719// @as(i8, undefined)
720// @as(@Vector(2, i8), .{ 0, undefined })
721// @as(@Vector(2, i8), .{ undefined, 0 })
722// @as(@Vector(2, i8), undefined)
723// @as(@Vector(2, i8), .{ 0, undefined })
724// @as(@Vector(2, i8), .{ 0, undefined })
725// @as(@Vector(2, i8), undefined)
726// @as(@Vector(2, i8), undefined)
727// @as(@Vector(2, i8), .{ undefined, 0 })
728// @as(@Vector(2, i8), undefined)
729// @as(@Vector(2, i8), .{ undefined, 0 })
730// @as(@Vector(2, i8), undefined)
731// @as(@Vector(2, i8), undefined)
732// @as(@Vector(2, i8), undefined)
733// @as(@Vector(2, i8), undefined)
734// @as(@Vector(2, i8), undefined)
735// @as(i8, undefined)
736// @as(i8, undefined)
737// @as(@Vector(2, i8), .{ 0, undefined })
738// @as(@Vector(2, i8), .{ undefined, 0 })
739// @as(@Vector(2, i8), undefined)
740// @as(@Vector(2, i8), .{ 0, undefined })
741// @as(@Vector(2, i8), .{ 0, undefined })
742// @as(@Vector(2, i8), undefined)
743// @as(@Vector(2, i8), undefined)
744// @as(@Vector(2, i8), .{ undefined, 0 })
745// @as(@Vector(2, i8), undefined)
746// @as(@Vector(2, i8), .{ undefined, 0 })
747// @as(@Vector(2, i8), undefined)
748// @as(@Vector(2, i8), undefined)
749// @as(@Vector(2, i8), undefined)
750// @as(@Vector(2, i8), undefined)
751// @as(@Vector(2, i8), undefined)
752// @as(i8, undefined)
753// @as(i8, undefined)
754// @as(@Vector(2, i8), .{ 9, undefined })
755// @as(@Vector(2, i8), .{ undefined, 9 })
756// @as(@Vector(2, i8), undefined)
757// @as(@Vector(2, i8), .{ 9, undefined })
758// @as(@Vector(2, i8), .{ 9, undefined })
759// @as(@Vector(2, i8), undefined)
760// @as(@Vector(2, i8), undefined)
761// @as(@Vector(2, i8), .{ undefined, 9 })
762// @as(@Vector(2, i8), undefined)
763// @as(@Vector(2, i8), .{ undefined, 9 })
764// @as(@Vector(2, i8), undefined)
765// @as(@Vector(2, i8), undefined)
766// @as(@Vector(2, i8), undefined)
767// @as(@Vector(2, i8), undefined)
768// @as(@Vector(2, i8), undefined)
769// @as(i8, undefined)
770// @as(i8, undefined)
771// @as(@Vector(2, i8), .{ 9, undefined })
772// @as(@Vector(2, i8), .{ undefined, 9 })
773// @as(@Vector(2, i8), undefined)
774// @as(@Vector(2, i8), .{ 9, undefined })
775// @as(@Vector(2, i8), .{ 9, undefined })
776// @as(@Vector(2, i8), undefined)
777// @as(@Vector(2, i8), undefined)
778// @as(@Vector(2, i8), .{ undefined, 9 })
779// @as(@Vector(2, i8), undefined)
780// @as(@Vector(2, i8), .{ undefined, 9 })
781// @as(@Vector(2, i8), undefined)
782// @as(@Vector(2, i8), undefined)
783// @as(@Vector(2, i8), undefined)
784// @as(@Vector(2, i8), undefined)
785// @as(@Vector(2, i8), undefined)
786// @as(i8, undefined)
787// @as(i8, undefined)
788// @as(@Vector(2, i8), .{ 0, undefined })
789// @as(@Vector(2, i8), .{ undefined, 0 })
790// @as(@Vector(2, i8), undefined)
791// @as(@Vector(2, i8), .{ 0, undefined })
792// @as(@Vector(2, i8), .{ 0, undefined })
793// @as(@Vector(2, i8), undefined)
794// @as(@Vector(2, i8), undefined)
795// @as(@Vector(2, i8), .{ undefined, 0 })
796// @as(@Vector(2, i8), undefined)
797// @as(@Vector(2, i8), .{ undefined, 0 })
798// @as(@Vector(2, i8), undefined)
799// @as(@Vector(2, i8), undefined)
800// @as(@Vector(2, i8), undefined)
801// @as(@Vector(2, i8), undefined)
802// @as(@Vector(2, i8), undefined)
803// @as(i8, undefined)
804// @as(@Vector(2, i8), undefined)
805// @as(i8, undefined)
806// @as(i8, undefined)
807// @as(@Vector(2, i8), undefined)
808// @as(@Vector(2, i8), undefined)
809// @as(i8, undefined)
810// @as(@Vector(2, i8), undefined)
811// @as(i8, undefined)
812// @as(i8, undefined)
813// @as(@Vector(2, i8), [runtime value])
814// @as(@Vector(2, i8), [runtime value])
815// @as(@Vector(2, i8), undefined)
816// @as(@Vector(2, i8), [runtime value])
817// @as(@Vector(2, i8), [runtime value])
818// @as(@Vector(2, i8), [runtime value])
819// @as(@Vector(2, i8), undefined)
820// @as(@Vector(2, i8), [runtime value])
821// @as(@Vector(2, i8), [runtime value])
822// @as(@Vector(2, i8), [runtime value])
823// @as(@Vector(2, i8), undefined)
824// @as(@Vector(2, i8), undefined)
825// @as(@Vector(2, i8), undefined)
826// @as(@Vector(2, i8), undefined)
827// @as(@Vector(2, i8), undefined)
828// @as(i8, undefined)
829// @as(i8, undefined)
830// @as(@Vector(2, i8), [runtime value])
831// @as(@Vector(2, i8), [runtime value])
832// @as(@Vector(2, i8), undefined)
833// @as(@Vector(2, i8), [runtime value])
834// @as(@Vector(2, i8), [runtime value])
835// @as(@Vector(2, i8), [runtime value])
836// @as(@Vector(2, i8), undefined)
837// @as(@Vector(2, i8), [runtime value])
838// @as(@Vector(2, i8), [runtime value])
839// @as(@Vector(2, i8), [runtime value])
840// @as(@Vector(2, i8), undefined)
841// @as(@Vector(2, i8), undefined)
842// @as(@Vector(2, i8), undefined)
843// @as(@Vector(2, i8), undefined)
844// @as(@Vector(2, i8), undefined)
845// @as(i8, undefined)
846// @as(i8, undefined)
847// @as(@Vector(2, i8), [runtime value])
848// @as(@Vector(2, i8), [runtime value])
849// @as(@Vector(2, i8), undefined)
850// @as(@Vector(2, i8), [runtime value])
851// @as(@Vector(2, i8), [runtime value])
852// @as(@Vector(2, i8), [runtime value])
853// @as(@Vector(2, i8), undefined)
854// @as(@Vector(2, i8), [runtime value])
855// @as(@Vector(2, i8), [runtime value])
856// @as(@Vector(2, i8), [runtime value])
857// @as(@Vector(2, i8), undefined)
858// @as(@Vector(2, i8), undefined)
859// @as(@Vector(2, i8), undefined)
860// @as(@Vector(2, i8), undefined)
861// @as(@Vector(2, i8), undefined)
862// @as(i8, undefined)
863// @as(i8, undefined)
864// @as(@Vector(2, i8), [runtime value])
865// @as(@Vector(2, i8), [runtime value])
866// @as(@Vector(2, i8), undefined)
867// @as(@Vector(2, i8), [runtime value])
868// @as(@Vector(2, i8), [runtime value])
869// @as(@Vector(2, i8), [runtime value])
870// @as(@Vector(2, i8), undefined)
871// @as(@Vector(2, i8), [runtime value])
872// @as(@Vector(2, i8), [runtime value])
873// @as(@Vector(2, i8), [runtime value])
874// @as(@Vector(2, i8), undefined)
875// @as(@Vector(2, i8), undefined)
876// @as(@Vector(2, i8), undefined)
877// @as(@Vector(2, i8), undefined)
878// @as(@Vector(2, i8), undefined)
879// @as(i8, undefined)
880// @as(i8, undefined)
881// @as(@Vector(2, i8), [runtime value])
882// @as(@Vector(2, i8), [runtime value])
883// @as(@Vector(2, i8), undefined)
884// @as(@Vector(2, i8), [runtime value])
885// @as(@Vector(2, i8), [runtime value])
886// @as(@Vector(2, i8), [runtime value])
887// @as(@Vector(2, i8), undefined)
888// @as(@Vector(2, i8), [runtime value])
889// @as(@Vector(2, i8), [runtime value])
890// @as(@Vector(2, i8), [runtime value])
891// @as(@Vector(2, i8), undefined)
892// @as(@Vector(2, i8), undefined)
893// @as(@Vector(2, i8), undefined)
894// @as(@Vector(2, i8), undefined)
895// @as(@Vector(2, i8), undefined)
896// @as(i8, undefined)
897// @as(i8, undefined)
898// @as(@Vector(2, i8), [runtime value])
899// @as(@Vector(2, i8), [runtime value])
900// @as(@Vector(2, i8), undefined)
901// @as(@Vector(2, i8), [runtime value])
902// @as(@Vector(2, i8), [runtime value])
903// @as(@Vector(2, i8), [runtime value])
904// @as(@Vector(2, i8), undefined)
905// @as(@Vector(2, i8), [runtime value])
906// @as(@Vector(2, i8), [runtime value])
907// @as(@Vector(2, i8), [runtime value])
908// @as(@Vector(2, i8), undefined)
909// @as(@Vector(2, i8), undefined)
910// @as(@Vector(2, i8), undefined)
911// @as(@Vector(2, i8), undefined)
912// @as(@Vector(2, i8), undefined)
913// @as(i8, [runtime value])
914// @as(i8, [runtime value])
915// @as(@Vector(2, i8), [runtime value])
916// @as(@Vector(2, i8), [runtime value])
917// @as(@Vector(2, i8), [runtime value])
918// @as(@Vector(2, i8), [runtime value])
919// @as(@Vector(2, i8), [runtime value])
920// @as(@Vector(2, i8), [runtime value])
921// @as(@Vector(2, i8), [runtime value])
922// @as(@Vector(2, i8), [runtime value])
923// @as(@Vector(2, i8), [runtime value])
924// @as(@Vector(2, i8), [runtime value])
925// @as(@Vector(2, i8), [runtime value])
926// @as(@Vector(2, i8), [runtime value])
927// @as(@Vector(2, i8), [runtime value])
928// @as(@Vector(2, i8), [runtime value])
929// @as(@Vector(2, i8), undefined)
930// @as(i8, undefined)
931// @as(@Vector(2, i8), undefined)
932// @as(i8, undefined)
933// @as(i8, undefined)
934// @as(@Vector(2, i8), undefined)
935// @as(@Vector(2, i8), undefined)
936// @as(i8, undefined)
937// @as(@Vector(2, i8), undefined)
938// @as(u32, undefined)
939// @as(u32, undefined)
940// @as(@Vector(2, u32), .{ 6, undefined })
941// @as(@Vector(2, u32), .{ undefined, 6 })
942// @as(@Vector(2, u32), undefined)
943// @as(@Vector(2, u32), .{ 6, undefined })
944// @as(@Vector(2, u32), .{ 6, undefined })
945// @as(@Vector(2, u32), undefined)
946// @as(@Vector(2, u32), undefined)
947// @as(@Vector(2, u32), .{ undefined, 6 })
948// @as(@Vector(2, u32), undefined)
949// @as(@Vector(2, u32), .{ undefined, 6 })
950// @as(@Vector(2, u32), undefined)
951// @as(@Vector(2, u32), undefined)
952// @as(@Vector(2, u32), undefined)
953// @as(@Vector(2, u32), undefined)
954// @as(@Vector(2, u32), undefined)
955// @as(u32, undefined)
956// @as(u32, undefined)
957// @as(@Vector(2, u32), .{ 6, undefined })
958// @as(@Vector(2, u32), .{ undefined, 6 })
959// @as(@Vector(2, u32), undefined)
960// @as(@Vector(2, u32), .{ 6, undefined })
961// @as(@Vector(2, u32), .{ 6, undefined })
962// @as(@Vector(2, u32), undefined)
963// @as(@Vector(2, u32), undefined)
964// @as(@Vector(2, u32), .{ undefined, 6 })
965// @as(@Vector(2, u32), undefined)
966// @as(@Vector(2, u32), .{ undefined, 6 })
967// @as(@Vector(2, u32), undefined)
968// @as(@Vector(2, u32), undefined)
969// @as(@Vector(2, u32), undefined)
970// @as(@Vector(2, u32), undefined)
971// @as(@Vector(2, u32), undefined)
972// @as(u32, undefined)
973// @as(u32, undefined)
974// @as(@Vector(2, u32), .{ 0, undefined })
975// @as(@Vector(2, u32), .{ undefined, 0 })
976// @as(@Vector(2, u32), undefined)
977// @as(@Vector(2, u32), .{ 0, undefined })
978// @as(@Vector(2, u32), .{ 0, undefined })
979// @as(@Vector(2, u32), undefined)
980// @as(@Vector(2, u32), undefined)
981// @as(@Vector(2, u32), .{ undefined, 0 })
982// @as(@Vector(2, u32), undefined)
983// @as(@Vector(2, u32), .{ undefined, 0 })
984// @as(@Vector(2, u32), undefined)
985// @as(@Vector(2, u32), undefined)
986// @as(@Vector(2, u32), undefined)
987// @as(@Vector(2, u32), undefined)
988// @as(@Vector(2, u32), undefined)
989// @as(u32, undefined)
990// @as(u32, undefined)
991// @as(@Vector(2, u32), .{ 0, undefined })
992// @as(@Vector(2, u32), .{ undefined, 0 })
993// @as(@Vector(2, u32), undefined)
994// @as(@Vector(2, u32), .{ 0, undefined })
995// @as(@Vector(2, u32), .{ 0, undefined })
996// @as(@Vector(2, u32), undefined)
997// @as(@Vector(2, u32), undefined)
998// @as(@Vector(2, u32), .{ undefined, 0 })
999// @as(@Vector(2, u32), undefined)
1000// @as(@Vector(2, u32), .{ undefined, 0 })
1001// @as(@Vector(2, u32), undefined)
1002// @as(@Vector(2, u32), undefined)
1003// @as(@Vector(2, u32), undefined)
1004// @as(@Vector(2, u32), undefined)
1005// @as(@Vector(2, u32), undefined)
1006// @as(u32, undefined)
1007// @as(u32, undefined)
1008// @as(@Vector(2, u32), .{ 9, undefined })
1009// @as(@Vector(2, u32), .{ undefined, 9 })
1010// @as(@Vector(2, u32), undefined)
1011// @as(@Vector(2, u32), .{ 9, undefined })
1012// @as(@Vector(2, u32), .{ 9, undefined })
1013// @as(@Vector(2, u32), undefined)
1014// @as(@Vector(2, u32), undefined)
1015// @as(@Vector(2, u32), .{ undefined, 9 })
1016// @as(@Vector(2, u32), undefined)
1017// @as(@Vector(2, u32), .{ undefined, 9 })
1018// @as(@Vector(2, u32), undefined)
1019// @as(@Vector(2, u32), undefined)
1020// @as(@Vector(2, u32), undefined)
1021// @as(@Vector(2, u32), undefined)
1022// @as(@Vector(2, u32), undefined)
1023// @as(u32, undefined)
1024// @as(u32, undefined)
1025// @as(@Vector(2, u32), .{ 9, undefined })
1026// @as(@Vector(2, u32), .{ undefined, 9 })
1027// @as(@Vector(2, u32), undefined)
1028// @as(@Vector(2, u32), .{ 9, undefined })
1029// @as(@Vector(2, u32), .{ 9, undefined })
1030// @as(@Vector(2, u32), undefined)
1031// @as(@Vector(2, u32), undefined)
1032// @as(@Vector(2, u32), .{ undefined, 9 })
1033// @as(@Vector(2, u32), undefined)
1034// @as(@Vector(2, u32), .{ undefined, 9 })
1035// @as(@Vector(2, u32), undefined)
1036// @as(@Vector(2, u32), undefined)
1037// @as(@Vector(2, u32), undefined)
1038// @as(@Vector(2, u32), undefined)
1039// @as(@Vector(2, u32), undefined)
1040// @as(u32, undefined)
1041// @as(u32, undefined)
1042// @as(@Vector(2, u32), .{ 24, undefined })
1043// @as(@Vector(2, u32), .{ undefined, 24 })
1044// @as(@Vector(2, u32), undefined)
1045// @as(@Vector(2, u32), .{ 24, undefined })
1046// @as(@Vector(2, u32), .{ 24, undefined })
1047// @as(@Vector(2, u32), undefined)
1048// @as(@Vector(2, u32), undefined)
1049// @as(@Vector(2, u32), .{ undefined, 24 })
1050// @as(@Vector(2, u32), undefined)
1051// @as(@Vector(2, u32), .{ undefined, 24 })
1052// @as(@Vector(2, u32), undefined)
1053// @as(@Vector(2, u32), undefined)
1054// @as(@Vector(2, u32), undefined)
1055// @as(@Vector(2, u32), undefined)
1056// @as(@Vector(2, u32), undefined)
1057// @as(u32, undefined)
1058// @as(u32, undefined)
1059// @as(@Vector(2, u32), .{ 0, undefined })
1060// @as(@Vector(2, u32), .{ undefined, 0 })
1061// @as(@Vector(2, u32), undefined)
1062// @as(@Vector(2, u32), .{ 0, undefined })
1063// @as(@Vector(2, u32), .{ 0, undefined })
1064// @as(@Vector(2, u32), undefined)
1065// @as(@Vector(2, u32), undefined)
1066// @as(@Vector(2, u32), .{ undefined, 0 })
1067// @as(@Vector(2, u32), undefined)
1068// @as(@Vector(2, u32), .{ undefined, 0 })
1069// @as(@Vector(2, u32), undefined)
1070// @as(@Vector(2, u32), undefined)
1071// @as(@Vector(2, u32), undefined)
1072// @as(@Vector(2, u32), undefined)
1073// @as(@Vector(2, u32), undefined)
1074// @as(u32, undefined)
1075// @as(@Vector(2, u32), undefined)
1076// @as(u32, undefined)
1077// @as(u32, undefined)
1078// @as(@Vector(2, u32), undefined)
1079// @as(@Vector(2, u32), undefined)
1080// @as(u1, undefined)
1081// @as(@Vector(2, u1), .{ 1, undefined })
1082// @as(@Vector(2, u1), .{ undefined, 1 })
1083// @as(@Vector(2, u1), undefined)
1084// @as(u32, undefined)
1085// @as(@Vector(2, u32), undefined)
1086// @as(u32, undefined)
1087// @as(u32, undefined)
1088// @as(@Vector(2, u32), [runtime value])
1089// @as(@Vector(2, u32), [runtime value])
1090// @as(@Vector(2, u32), undefined)
1091// @as(@Vector(2, u32), [runtime value])
1092// @as(@Vector(2, u32), [runtime value])
1093// @as(@Vector(2, u32), [runtime value])
1094// @as(@Vector(2, u32), undefined)
1095// @as(@Vector(2, u32), [runtime value])
1096// @as(@Vector(2, u32), [runtime value])
1097// @as(@Vector(2, u32), [runtime value])
1098// @as(@Vector(2, u32), undefined)
1099// @as(@Vector(2, u32), undefined)
1100// @as(@Vector(2, u32), undefined)
1101// @as(@Vector(2, u32), undefined)
1102// @as(@Vector(2, u32), undefined)
1103// @as(u32, undefined)
1104// @as(u32, undefined)
1105// @as(@Vector(2, u32), [runtime value])
1106// @as(@Vector(2, u32), [runtime value])
1107// @as(@Vector(2, u32), undefined)
1108// @as(@Vector(2, u32), [runtime value])
1109// @as(@Vector(2, u32), [runtime value])
1110// @as(@Vector(2, u32), [runtime value])
1111// @as(@Vector(2, u32), undefined)
1112// @as(@Vector(2, u32), [runtime value])
1113// @as(@Vector(2, u32), [runtime value])
1114// @as(@Vector(2, u32), [runtime value])
1115// @as(@Vector(2, u32), undefined)
1116// @as(@Vector(2, u32), undefined)
1117// @as(@Vector(2, u32), undefined)
1118// @as(@Vector(2, u32), undefined)
1119// @as(@Vector(2, u32), undefined)
1120// @as(u32, undefined)
1121// @as(u32, undefined)
1122// @as(@Vector(2, u32), [runtime value])
1123// @as(@Vector(2, u32), [runtime value])
1124// @as(@Vector(2, u32), undefined)
1125// @as(@Vector(2, u32), [runtime value])
1126// @as(@Vector(2, u32), [runtime value])
1127// @as(@Vector(2, u32), [runtime value])
1128// @as(@Vector(2, u32), undefined)
1129// @as(@Vector(2, u32), [runtime value])
1130// @as(@Vector(2, u32), [runtime value])
1131// @as(@Vector(2, u32), [runtime value])
1132// @as(@Vector(2, u32), undefined)
1133// @as(@Vector(2, u32), undefined)
1134// @as(@Vector(2, u32), undefined)
1135// @as(@Vector(2, u32), undefined)
1136// @as(@Vector(2, u32), undefined)
1137// @as(u32, undefined)
1138// @as(u32, undefined)
1139// @as(@Vector(2, u32), [runtime value])
1140// @as(@Vector(2, u32), [runtime value])
1141// @as(@Vector(2, u32), undefined)
1142// @as(@Vector(2, u32), [runtime value])
1143// @as(@Vector(2, u32), [runtime value])
1144// @as(@Vector(2, u32), [runtime value])
1145// @as(@Vector(2, u32), undefined)
1146// @as(@Vector(2, u32), [runtime value])
1147// @as(@Vector(2, u32), [runtime value])
1148// @as(@Vector(2, u32), [runtime value])
1149// @as(@Vector(2, u32), undefined)
1150// @as(@Vector(2, u32), undefined)
1151// @as(@Vector(2, u32), undefined)
1152// @as(@Vector(2, u32), undefined)
1153// @as(@Vector(2, u32), undefined)
1154// @as(u32, undefined)
1155// @as(u32, undefined)
1156// @as(@Vector(2, u32), [runtime value])
1157// @as(@Vector(2, u32), [runtime value])
1158// @as(@Vector(2, u32), undefined)
1159// @as(@Vector(2, u32), [runtime value])
1160// @as(@Vector(2, u32), [runtime value])
1161// @as(@Vector(2, u32), [runtime value])
1162// @as(@Vector(2, u32), undefined)
1163// @as(@Vector(2, u32), [runtime value])
1164// @as(@Vector(2, u32), [runtime value])
1165// @as(@Vector(2, u32), [runtime value])
1166// @as(@Vector(2, u32), undefined)
1167// @as(@Vector(2, u32), undefined)
1168// @as(@Vector(2, u32), undefined)
1169// @as(@Vector(2, u32), undefined)
1170// @as(@Vector(2, u32), undefined)
1171// @as(u32, undefined)
1172// @as(u32, undefined)
1173// @as(@Vector(2, u32), [runtime value])
1174// @as(@Vector(2, u32), [runtime value])
1175// @as(@Vector(2, u32), undefined)
1176// @as(@Vector(2, u32), [runtime value])
1177// @as(@Vector(2, u32), [runtime value])
1178// @as(@Vector(2, u32), [runtime value])
1179// @as(@Vector(2, u32), undefined)
1180// @as(@Vector(2, u32), [runtime value])
1181// @as(@Vector(2, u32), [runtime value])
1182// @as(@Vector(2, u32), [runtime value])
1183// @as(@Vector(2, u32), undefined)
1184// @as(@Vector(2, u32), undefined)
1185// @as(@Vector(2, u32), undefined)
1186// @as(@Vector(2, u32), undefined)
1187// @as(@Vector(2, u32), undefined)
1188// @as(u32, undefined)
1189// @as(u32, undefined)
1190// @as(@Vector(2, u32), [runtime value])
1191// @as(@Vector(2, u32), [runtime value])
1192// @as(@Vector(2, u32), undefined)
1193// @as(@Vector(2, u32), [runtime value])
1194// @as(@Vector(2, u32), [runtime value])
1195// @as(@Vector(2, u32), [runtime value])
1196// @as(@Vector(2, u32), undefined)
1197// @as(@Vector(2, u32), [runtime value])
1198// @as(@Vector(2, u32), [runtime value])
1199// @as(@Vector(2, u32), [runtime value])
1200// @as(@Vector(2, u32), undefined)
1201// @as(@Vector(2, u32), undefined)
1202// @as(@Vector(2, u32), undefined)
1203// @as(@Vector(2, u32), undefined)
1204// @as(@Vector(2, u32), undefined)
1205// @as(u32, [runtime value])
1206// @as(u32, [runtime value])
1207// @as(@Vector(2, u32), [runtime value])
1208// @as(@Vector(2, u32), [runtime value])
1209// @as(@Vector(2, u32), [runtime value])
1210// @as(@Vector(2, u32), [runtime value])
1211// @as(@Vector(2, u32), [runtime value])
1212// @as(@Vector(2, u32), [runtime value])
1213// @as(@Vector(2, u32), [runtime value])
1214// @as(@Vector(2, u32), [runtime value])
1215// @as(@Vector(2, u32), [runtime value])
1216// @as(@Vector(2, u32), [runtime value])
1217// @as(@Vector(2, u32), [runtime value])
1218// @as(@Vector(2, u32), [runtime value])
1219// @as(@Vector(2, u32), [runtime value])
1220// @as(@Vector(2, u32), [runtime value])
1221// @as(@Vector(2, u32), undefined)
1222// @as(u32, undefined)
1223// @as(@Vector(2, u32), undefined)
1224// @as(u32, undefined)
1225// @as(u32, undefined)
1226// @as(@Vector(2, u32), undefined)
1227// @as(@Vector(2, u32), undefined)
1228// @as(u1, undefined)
1229// @as(@Vector(2, u1), [runtime value])
1230// @as(@Vector(2, u1), [runtime value])
1231// @as(@Vector(2, u1), undefined)
1232// @as(u32, undefined)
1233// @as(@Vector(2, u32), undefined)
1234// @as(i32, undefined)
1235// @as(i32, undefined)
1236// @as(@Vector(2, i32), .{ 6, undefined })
1237// @as(@Vector(2, i32), .{ undefined, 6 })
1238// @as(@Vector(2, i32), undefined)
1239// @as(@Vector(2, i32), .{ 6, undefined })
1240// @as(@Vector(2, i32), .{ 6, undefined })
1241// @as(@Vector(2, i32), undefined)
1242// @as(@Vector(2, i32), undefined)
1243// @as(@Vector(2, i32), .{ undefined, 6 })
1244// @as(@Vector(2, i32), undefined)
1245// @as(@Vector(2, i32), .{ undefined, 6 })
1246// @as(@Vector(2, i32), undefined)
1247// @as(@Vector(2, i32), undefined)
1248// @as(@Vector(2, i32), undefined)
1249// @as(@Vector(2, i32), undefined)
1250// @as(@Vector(2, i32), undefined)
1251// @as(i32, undefined)
1252// @as(i32, undefined)
1253// @as(@Vector(2, i32), .{ 6, undefined })
1254// @as(@Vector(2, i32), .{ undefined, 6 })
1255// @as(@Vector(2, i32), undefined)
1256// @as(@Vector(2, i32), .{ 6, undefined })
1257// @as(@Vector(2, i32), .{ 6, undefined })
1258// @as(@Vector(2, i32), undefined)
1259// @as(@Vector(2, i32), undefined)
1260// @as(@Vector(2, i32), .{ undefined, 6 })
1261// @as(@Vector(2, i32), undefined)
1262// @as(@Vector(2, i32), .{ undefined, 6 })
1263// @as(@Vector(2, i32), undefined)
1264// @as(@Vector(2, i32), undefined)
1265// @as(@Vector(2, i32), undefined)
1266// @as(@Vector(2, i32), undefined)
1267// @as(@Vector(2, i32), undefined)
1268// @as(i32, undefined)
1269// @as(i32, undefined)
1270// @as(@Vector(2, i32), .{ 0, undefined })
1271// @as(@Vector(2, i32), .{ undefined, 0 })
1272// @as(@Vector(2, i32), undefined)
1273// @as(@Vector(2, i32), .{ 0, undefined })
1274// @as(@Vector(2, i32), .{ 0, undefined })
1275// @as(@Vector(2, i32), undefined)
1276// @as(@Vector(2, i32), undefined)
1277// @as(@Vector(2, i32), .{ undefined, 0 })
1278// @as(@Vector(2, i32), undefined)
1279// @as(@Vector(2, i32), .{ undefined, 0 })
1280// @as(@Vector(2, i32), undefined)
1281// @as(@Vector(2, i32), undefined)
1282// @as(@Vector(2, i32), undefined)
1283// @as(@Vector(2, i32), undefined)
1284// @as(@Vector(2, i32), undefined)
1285// @as(i32, undefined)
1286// @as(i32, undefined)
1287// @as(@Vector(2, i32), .{ 0, undefined })
1288// @as(@Vector(2, i32), .{ undefined, 0 })
1289// @as(@Vector(2, i32), undefined)
1290// @as(@Vector(2, i32), .{ 0, undefined })
1291// @as(@Vector(2, i32), .{ 0, undefined })
1292// @as(@Vector(2, i32), undefined)
1293// @as(@Vector(2, i32), undefined)
1294// @as(@Vector(2, i32), .{ undefined, 0 })
1295// @as(@Vector(2, i32), undefined)
1296// @as(@Vector(2, i32), .{ undefined, 0 })
1297// @as(@Vector(2, i32), undefined)
1298// @as(@Vector(2, i32), undefined)
1299// @as(@Vector(2, i32), undefined)
1300// @as(@Vector(2, i32), undefined)
1301// @as(@Vector(2, i32), undefined)
1302// @as(i32, undefined)
1303// @as(i32, undefined)
1304// @as(@Vector(2, i32), .{ 9, undefined })
1305// @as(@Vector(2, i32), .{ undefined, 9 })
1306// @as(@Vector(2, i32), undefined)
1307// @as(@Vector(2, i32), .{ 9, undefined })
1308// @as(@Vector(2, i32), .{ 9, undefined })
1309// @as(@Vector(2, i32), undefined)
1310// @as(@Vector(2, i32), undefined)
1311// @as(@Vector(2, i32), .{ undefined, 9 })
1312// @as(@Vector(2, i32), undefined)
1313// @as(@Vector(2, i32), .{ undefined, 9 })
1314// @as(@Vector(2, i32), undefined)
1315// @as(@Vector(2, i32), undefined)
1316// @as(@Vector(2, i32), undefined)
1317// @as(@Vector(2, i32), undefined)
1318// @as(@Vector(2, i32), undefined)
1319// @as(i32, undefined)
1320// @as(i32, undefined)
1321// @as(@Vector(2, i32), .{ 9, undefined })
1322// @as(@Vector(2, i32), .{ undefined, 9 })
1323// @as(@Vector(2, i32), undefined)
1324// @as(@Vector(2, i32), .{ 9, undefined })
1325// @as(@Vector(2, i32), .{ 9, undefined })
1326// @as(@Vector(2, i32), undefined)
1327// @as(@Vector(2, i32), undefined)
1328// @as(@Vector(2, i32), .{ undefined, 9 })
1329// @as(@Vector(2, i32), undefined)
1330// @as(@Vector(2, i32), .{ undefined, 9 })
1331// @as(@Vector(2, i32), undefined)
1332// @as(@Vector(2, i32), undefined)
1333// @as(@Vector(2, i32), undefined)
1334// @as(@Vector(2, i32), undefined)
1335// @as(@Vector(2, i32), undefined)
1336// @as(i32, undefined)
1337// @as(i32, undefined)
1338// @as(@Vector(2, i32), .{ 0, undefined })
1339// @as(@Vector(2, i32), .{ undefined, 0 })
1340// @as(@Vector(2, i32), undefined)
1341// @as(@Vector(2, i32), .{ 0, undefined })
1342// @as(@Vector(2, i32), .{ 0, undefined })
1343// @as(@Vector(2, i32), undefined)
1344// @as(@Vector(2, i32), undefined)
1345// @as(@Vector(2, i32), .{ undefined, 0 })
1346// @as(@Vector(2, i32), undefined)
1347// @as(@Vector(2, i32), .{ undefined, 0 })
1348// @as(@Vector(2, i32), undefined)
1349// @as(@Vector(2, i32), undefined)
1350// @as(@Vector(2, i32), undefined)
1351// @as(@Vector(2, i32), undefined)
1352// @as(@Vector(2, i32), undefined)
1353// @as(i32, undefined)
1354// @as(@Vector(2, i32), undefined)
1355// @as(i32, undefined)
1356// @as(i32, undefined)
1357// @as(@Vector(2, i32), undefined)
1358// @as(@Vector(2, i32), undefined)
1359// @as(i32, undefined)
1360// @as(@Vector(2, i32), undefined)
1361// @as(i32, undefined)
1362// @as(i32, undefined)
1363// @as(@Vector(2, i32), [runtime value])
1364// @as(@Vector(2, i32), [runtime value])
1365// @as(@Vector(2, i32), undefined)
1366// @as(@Vector(2, i32), [runtime value])
1367// @as(@Vector(2, i32), [runtime value])
1368// @as(@Vector(2, i32), [runtime value])
1369// @as(@Vector(2, i32), undefined)
1370// @as(@Vector(2, i32), [runtime value])
1371// @as(@Vector(2, i32), [runtime value])
1372// @as(@Vector(2, i32), [runtime value])
1373// @as(@Vector(2, i32), undefined)
1374// @as(@Vector(2, i32), undefined)
1375// @as(@Vector(2, i32), undefined)
1376// @as(@Vector(2, i32), undefined)
1377// @as(@Vector(2, i32), undefined)
1378// @as(i32, undefined)
1379// @as(i32, undefined)
1380// @as(@Vector(2, i32), [runtime value])
1381// @as(@Vector(2, i32), [runtime value])
1382// @as(@Vector(2, i32), undefined)
1383// @as(@Vector(2, i32), [runtime value])
1384// @as(@Vector(2, i32), [runtime value])
1385// @as(@Vector(2, i32), [runtime value])
1386// @as(@Vector(2, i32), undefined)
1387// @as(@Vector(2, i32), [runtime value])
1388// @as(@Vector(2, i32), [runtime value])
1389// @as(@Vector(2, i32), [runtime value])
1390// @as(@Vector(2, i32), undefined)
1391// @as(@Vector(2, i32), undefined)
1392// @as(@Vector(2, i32), undefined)
1393// @as(@Vector(2, i32), undefined)
1394// @as(@Vector(2, i32), undefined)
1395// @as(i32, undefined)
1396// @as(i32, undefined)
1397// @as(@Vector(2, i32), [runtime value])
1398// @as(@Vector(2, i32), [runtime value])
1399// @as(@Vector(2, i32), undefined)
1400// @as(@Vector(2, i32), [runtime value])
1401// @as(@Vector(2, i32), [runtime value])
1402// @as(@Vector(2, i32), [runtime value])
1403// @as(@Vector(2, i32), undefined)
1404// @as(@Vector(2, i32), [runtime value])
1405// @as(@Vector(2, i32), [runtime value])
1406// @as(@Vector(2, i32), [runtime value])
1407// @as(@Vector(2, i32), undefined)
1408// @as(@Vector(2, i32), undefined)
1409// @as(@Vector(2, i32), undefined)
1410// @as(@Vector(2, i32), undefined)
1411// @as(@Vector(2, i32), undefined)
1412// @as(i32, undefined)
1413// @as(i32, undefined)
1414// @as(@Vector(2, i32), [runtime value])
1415// @as(@Vector(2, i32), [runtime value])
1416// @as(@Vector(2, i32), undefined)
1417// @as(@Vector(2, i32), [runtime value])
1418// @as(@Vector(2, i32), [runtime value])
1419// @as(@Vector(2, i32), [runtime value])
1420// @as(@Vector(2, i32), undefined)
1421// @as(@Vector(2, i32), [runtime value])
1422// @as(@Vector(2, i32), [runtime value])
1423// @as(@Vector(2, i32), [runtime value])
1424// @as(@Vector(2, i32), undefined)
1425// @as(@Vector(2, i32), undefined)
1426// @as(@Vector(2, i32), undefined)
1427// @as(@Vector(2, i32), undefined)
1428// @as(@Vector(2, i32), undefined)
1429// @as(i32, undefined)
1430// @as(i32, undefined)
1431// @as(@Vector(2, i32), [runtime value])
1432// @as(@Vector(2, i32), [runtime value])
1433// @as(@Vector(2, i32), undefined)
1434// @as(@Vector(2, i32), [runtime value])
1435// @as(@Vector(2, i32), [runtime value])
1436// @as(@Vector(2, i32), [runtime value])
1437// @as(@Vector(2, i32), undefined)
1438// @as(@Vector(2, i32), [runtime value])
1439// @as(@Vector(2, i32), [runtime value])
1440// @as(@Vector(2, i32), [runtime value])
1441// @as(@Vector(2, i32), undefined)
1442// @as(@Vector(2, i32), undefined)
1443// @as(@Vector(2, i32), undefined)
1444// @as(@Vector(2, i32), undefined)
1445// @as(@Vector(2, i32), undefined)
1446// @as(i32, undefined)
1447// @as(i32, undefined)
1448// @as(@Vector(2, i32), [runtime value])
1449// @as(@Vector(2, i32), [runtime value])
1450// @as(@Vector(2, i32), undefined)
1451// @as(@Vector(2, i32), [runtime value])
1452// @as(@Vector(2, i32), [runtime value])
1453// @as(@Vector(2, i32), [runtime value])
1454// @as(@Vector(2, i32), undefined)
1455// @as(@Vector(2, i32), [runtime value])
1456// @as(@Vector(2, i32), [runtime value])
1457// @as(@Vector(2, i32), [runtime value])
1458// @as(@Vector(2, i32), undefined)
1459// @as(@Vector(2, i32), undefined)
1460// @as(@Vector(2, i32), undefined)
1461// @as(@Vector(2, i32), undefined)
1462// @as(@Vector(2, i32), undefined)
1463// @as(i32, [runtime value])
1464// @as(i32, [runtime value])
1465// @as(@Vector(2, i32), [runtime value])
1466// @as(@Vector(2, i32), [runtime value])
1467// @as(@Vector(2, i32), [runtime value])
1468// @as(@Vector(2, i32), [runtime value])
1469// @as(@Vector(2, i32), [runtime value])
1470// @as(@Vector(2, i32), [runtime value])
1471// @as(@Vector(2, i32), [runtime value])
1472// @as(@Vector(2, i32), [runtime value])
1473// @as(@Vector(2, i32), [runtime value])
1474// @as(@Vector(2, i32), [runtime value])
1475// @as(@Vector(2, i32), [runtime value])
1476// @as(@Vector(2, i32), [runtime value])
1477// @as(@Vector(2, i32), [runtime value])
1478// @as(@Vector(2, i32), [runtime value])
1479// @as(@Vector(2, i32), undefined)
1480// @as(i32, undefined)
1481// @as(@Vector(2, i32), undefined)
1482// @as(i32, undefined)
1483// @as(i32, undefined)
1484// @as(@Vector(2, i32), undefined)
1485// @as(@Vector(2, i32), undefined)
1486// @as(i32, undefined)
1487// @as(@Vector(2, i32), undefined)
1488// @as(u500, undefined)
1489// @as(u500, undefined)
1490// @as(@Vector(2, u500), .{ 6, undefined })
1491// @as(@Vector(2, u500), .{ undefined, 6 })
1492// @as(@Vector(2, u500), undefined)
1493// @as(@Vector(2, u500), .{ 6, undefined })
1494// @as(@Vector(2, u500), .{ 6, undefined })
1495// @as(@Vector(2, u500), undefined)
1496// @as(@Vector(2, u500), undefined)
1497// @as(@Vector(2, u500), .{ undefined, 6 })
1498// @as(@Vector(2, u500), undefined)
1499// @as(@Vector(2, u500), .{ undefined, 6 })
1500// @as(@Vector(2, u500), undefined)
1501// @as(@Vector(2, u500), undefined)
1502// @as(@Vector(2, u500), undefined)
1503// @as(@Vector(2, u500), undefined)
1504// @as(@Vector(2, u500), undefined)
1505// @as(u500, undefined)
1506// @as(u500, undefined)
1507// @as(@Vector(2, u500), .{ 6, undefined })
1508// @as(@Vector(2, u500), .{ undefined, 6 })
1509// @as(@Vector(2, u500), undefined)
1510// @as(@Vector(2, u500), .{ 6, undefined })
1511// @as(@Vector(2, u500), .{ 6, undefined })
1512// @as(@Vector(2, u500), undefined)
1513// @as(@Vector(2, u500), undefined)
1514// @as(@Vector(2, u500), .{ undefined, 6 })
1515// @as(@Vector(2, u500), undefined)
1516// @as(@Vector(2, u500), .{ undefined, 6 })
1517// @as(@Vector(2, u500), undefined)
1518// @as(@Vector(2, u500), undefined)
1519// @as(@Vector(2, u500), undefined)
1520// @as(@Vector(2, u500), undefined)
1521// @as(@Vector(2, u500), undefined)
1522// @as(u500, undefined)
1523// @as(u500, undefined)
1524// @as(@Vector(2, u500), .{ 0, undefined })
1525// @as(@Vector(2, u500), .{ undefined, 0 })
1526// @as(@Vector(2, u500), undefined)
1527// @as(@Vector(2, u500), .{ 0, undefined })
1528// @as(@Vector(2, u500), .{ 0, undefined })
1529// @as(@Vector(2, u500), undefined)
1530// @as(@Vector(2, u500), undefined)
1531// @as(@Vector(2, u500), .{ undefined, 0 })
1532// @as(@Vector(2, u500), undefined)
1533// @as(@Vector(2, u500), .{ undefined, 0 })
1534// @as(@Vector(2, u500), undefined)
1535// @as(@Vector(2, u500), undefined)
1536// @as(@Vector(2, u500), undefined)
1537// @as(@Vector(2, u500), undefined)
1538// @as(@Vector(2, u500), undefined)
1539// @as(u500, undefined)
1540// @as(u500, undefined)
1541// @as(@Vector(2, u500), .{ 0, undefined })
1542// @as(@Vector(2, u500), .{ undefined, 0 })
1543// @as(@Vector(2, u500), undefined)
1544// @as(@Vector(2, u500), .{ 0, undefined })
1545// @as(@Vector(2, u500), .{ 0, undefined })
1546// @as(@Vector(2, u500), undefined)
1547// @as(@Vector(2, u500), undefined)
1548// @as(@Vector(2, u500), .{ undefined, 0 })
1549// @as(@Vector(2, u500), undefined)
1550// @as(@Vector(2, u500), .{ undefined, 0 })
1551// @as(@Vector(2, u500), undefined)
1552// @as(@Vector(2, u500), undefined)
1553// @as(@Vector(2, u500), undefined)
1554// @as(@Vector(2, u500), undefined)
1555// @as(@Vector(2, u500), undefined)
1556// @as(u500, undefined)
1557// @as(u500, undefined)
1558// @as(@Vector(2, u500), .{ 9, undefined })
1559// @as(@Vector(2, u500), .{ undefined, 9 })
1560// @as(@Vector(2, u500), undefined)
1561// @as(@Vector(2, u500), .{ 9, undefined })
1562// @as(@Vector(2, u500), .{ 9, undefined })
1563// @as(@Vector(2, u500), undefined)
1564// @as(@Vector(2, u500), undefined)
1565// @as(@Vector(2, u500), .{ undefined, 9 })
1566// @as(@Vector(2, u500), undefined)
1567// @as(@Vector(2, u500), .{ undefined, 9 })
1568// @as(@Vector(2, u500), undefined)
1569// @as(@Vector(2, u500), undefined)
1570// @as(@Vector(2, u500), undefined)
1571// @as(@Vector(2, u500), undefined)
1572// @as(@Vector(2, u500), undefined)
1573// @as(u500, undefined)
1574// @as(u500, undefined)
1575// @as(@Vector(2, u500), .{ 9, undefined })
1576// @as(@Vector(2, u500), .{ undefined, 9 })
1577// @as(@Vector(2, u500), undefined)
1578// @as(@Vector(2, u500), .{ 9, undefined })
1579// @as(@Vector(2, u500), .{ 9, undefined })
1580// @as(@Vector(2, u500), undefined)
1581// @as(@Vector(2, u500), undefined)
1582// @as(@Vector(2, u500), .{ undefined, 9 })
1583// @as(@Vector(2, u500), undefined)
1584// @as(@Vector(2, u500), .{ undefined, 9 })
1585// @as(@Vector(2, u500), undefined)
1586// @as(@Vector(2, u500), undefined)
1587// @as(@Vector(2, u500), undefined)
1588// @as(@Vector(2, u500), undefined)
1589// @as(@Vector(2, u500), undefined)
1590// @as(u500, undefined)
1591// @as(u500, undefined)
1592// @as(@Vector(2, u500), .{ 24, undefined })
1593// @as(@Vector(2, u500), .{ undefined, 24 })
1594// @as(@Vector(2, u500), undefined)
1595// @as(@Vector(2, u500), .{ 24, undefined })
1596// @as(@Vector(2, u500), .{ 24, undefined })
1597// @as(@Vector(2, u500), undefined)
1598// @as(@Vector(2, u500), undefined)
1599// @as(@Vector(2, u500), .{ undefined, 24 })
1600// @as(@Vector(2, u500), undefined)
1601// @as(@Vector(2, u500), .{ undefined, 24 })
1602// @as(@Vector(2, u500), undefined)
1603// @as(@Vector(2, u500), undefined)
1604// @as(@Vector(2, u500), undefined)
1605// @as(@Vector(2, u500), undefined)
1606// @as(@Vector(2, u500), undefined)
1607// @as(u500, undefined)
1608// @as(u500, undefined)
1609// @as(@Vector(2, u500), .{ 0, undefined })
1610// @as(@Vector(2, u500), .{ undefined, 0 })
1611// @as(@Vector(2, u500), undefined)
1612// @as(@Vector(2, u500), .{ 0, undefined })
1613// @as(@Vector(2, u500), .{ 0, undefined })
1614// @as(@Vector(2, u500), undefined)
1615// @as(@Vector(2, u500), undefined)
1616// @as(@Vector(2, u500), .{ undefined, 0 })
1617// @as(@Vector(2, u500), undefined)
1618// @as(@Vector(2, u500), .{ undefined, 0 })
1619// @as(@Vector(2, u500), undefined)
1620// @as(@Vector(2, u500), undefined)
1621// @as(@Vector(2, u500), undefined)
1622// @as(@Vector(2, u500), undefined)
1623// @as(@Vector(2, u500), undefined)
1624// @as(u500, undefined)
1625// @as(@Vector(2, u500), undefined)
1626// @as(u500, undefined)
1627// @as(u500, undefined)
1628// @as(@Vector(2, u500), undefined)
1629// @as(@Vector(2, u500), undefined)
1630// @as(u1, undefined)
1631// @as(@Vector(2, u1), .{ 1, undefined })
1632// @as(@Vector(2, u1), .{ undefined, 1 })
1633// @as(@Vector(2, u1), undefined)
1634// @as(u500, undefined)
1635// @as(@Vector(2, u500), undefined)
1636// @as(u500, undefined)
1637// @as(u500, undefined)
1638// @as(@Vector(2, u500), [runtime value])
1639// @as(@Vector(2, u500), [runtime value])
1640// @as(@Vector(2, u500), undefined)
1641// @as(@Vector(2, u500), [runtime value])
1642// @as(@Vector(2, u500), [runtime value])
1643// @as(@Vector(2, u500), [runtime value])
1644// @as(@Vector(2, u500), undefined)
1645// @as(@Vector(2, u500), [runtime value])
1646// @as(@Vector(2, u500), [runtime value])
1647// @as(@Vector(2, u500), [runtime value])
1648// @as(@Vector(2, u500), undefined)
1649// @as(@Vector(2, u500), undefined)
1650// @as(@Vector(2, u500), undefined)
1651// @as(@Vector(2, u500), undefined)
1652// @as(@Vector(2, u500), undefined)
1653// @as(u500, undefined)
1654// @as(u500, undefined)
1655// @as(@Vector(2, u500), [runtime value])
1656// @as(@Vector(2, u500), [runtime value])
1657// @as(@Vector(2, u500), undefined)
1658// @as(@Vector(2, u500), [runtime value])
1659// @as(@Vector(2, u500), [runtime value])
1660// @as(@Vector(2, u500), [runtime value])
1661// @as(@Vector(2, u500), undefined)
1662// @as(@Vector(2, u500), [runtime value])
1663// @as(@Vector(2, u500), [runtime value])
1664// @as(@Vector(2, u500), [runtime value])
1665// @as(@Vector(2, u500), undefined)
1666// @as(@Vector(2, u500), undefined)
1667// @as(@Vector(2, u500), undefined)
1668// @as(@Vector(2, u500), undefined)
1669// @as(@Vector(2, u500), undefined)
1670// @as(u500, undefined)
1671// @as(u500, undefined)
1672// @as(@Vector(2, u500), [runtime value])
1673// @as(@Vector(2, u500), [runtime value])
1674// @as(@Vector(2, u500), undefined)
1675// @as(@Vector(2, u500), [runtime value])
1676// @as(@Vector(2, u500), [runtime value])
1677// @as(@Vector(2, u500), [runtime value])
1678// @as(@Vector(2, u500), undefined)
1679// @as(@Vector(2, u500), [runtime value])
1680// @as(@Vector(2, u500), [runtime value])
1681// @as(@Vector(2, u500), [runtime value])
1682// @as(@Vector(2, u500), undefined)
1683// @as(@Vector(2, u500), undefined)
1684// @as(@Vector(2, u500), undefined)
1685// @as(@Vector(2, u500), undefined)
1686// @as(@Vector(2, u500), undefined)
1687// @as(u500, undefined)
1688// @as(u500, undefined)
1689// @as(@Vector(2, u500), [runtime value])
1690// @as(@Vector(2, u500), [runtime value])
1691// @as(@Vector(2, u500), undefined)
1692// @as(@Vector(2, u500), [runtime value])
1693// @as(@Vector(2, u500), [runtime value])
1694// @as(@Vector(2, u500), [runtime value])
1695// @as(@Vector(2, u500), undefined)
1696// @as(@Vector(2, u500), [runtime value])
1697// @as(@Vector(2, u500), [runtime value])
1698// @as(@Vector(2, u500), [runtime value])
1699// @as(@Vector(2, u500), undefined)
1700// @as(@Vector(2, u500), undefined)
1701// @as(@Vector(2, u500), undefined)
1702// @as(@Vector(2, u500), undefined)
1703// @as(@Vector(2, u500), undefined)
1704// @as(u500, undefined)
1705// @as(u500, undefined)
1706// @as(@Vector(2, u500), [runtime value])
1707// @as(@Vector(2, u500), [runtime value])
1708// @as(@Vector(2, u500), undefined)
1709// @as(@Vector(2, u500), [runtime value])
1710// @as(@Vector(2, u500), [runtime value])
1711// @as(@Vector(2, u500), [runtime value])
1712// @as(@Vector(2, u500), undefined)
1713// @as(@Vector(2, u500), [runtime value])
1714// @as(@Vector(2, u500), [runtime value])
1715// @as(@Vector(2, u500), [runtime value])
1716// @as(@Vector(2, u500), undefined)
1717// @as(@Vector(2, u500), undefined)
1718// @as(@Vector(2, u500), undefined)
1719// @as(@Vector(2, u500), undefined)
1720// @as(@Vector(2, u500), undefined)
1721// @as(u500, undefined)
1722// @as(u500, undefined)
1723// @as(@Vector(2, u500), [runtime value])
1724// @as(@Vector(2, u500), [runtime value])
1725// @as(@Vector(2, u500), undefined)
1726// @as(@Vector(2, u500), [runtime value])
1727// @as(@Vector(2, u500), [runtime value])
1728// @as(@Vector(2, u500), [runtime value])
1729// @as(@Vector(2, u500), undefined)
1730// @as(@Vector(2, u500), [runtime value])
1731// @as(@Vector(2, u500), [runtime value])
1732// @as(@Vector(2, u500), [runtime value])
1733// @as(@Vector(2, u500), undefined)
1734// @as(@Vector(2, u500), undefined)
1735// @as(@Vector(2, u500), undefined)
1736// @as(@Vector(2, u500), undefined)
1737// @as(@Vector(2, u500), undefined)
1738// @as(u500, undefined)
1739// @as(u500, undefined)
1740// @as(@Vector(2, u500), [runtime value])
1741// @as(@Vector(2, u500), [runtime value])
1742// @as(@Vector(2, u500), undefined)
1743// @as(@Vector(2, u500), [runtime value])
1744// @as(@Vector(2, u500), [runtime value])
1745// @as(@Vector(2, u500), [runtime value])
1746// @as(@Vector(2, u500), undefined)
1747// @as(@Vector(2, u500), [runtime value])
1748// @as(@Vector(2, u500), [runtime value])
1749// @as(@Vector(2, u500), [runtime value])
1750// @as(@Vector(2, u500), undefined)
1751// @as(@Vector(2, u500), undefined)
1752// @as(@Vector(2, u500), undefined)
1753// @as(@Vector(2, u500), undefined)
1754// @as(@Vector(2, u500), undefined)
1755// @as(u500, [runtime value])
1756// @as(u500, [runtime value])
1757// @as(@Vector(2, u500), [runtime value])
1758// @as(@Vector(2, u500), [runtime value])
1759// @as(@Vector(2, u500), [runtime value])
1760// @as(@Vector(2, u500), [runtime value])
1761// @as(@Vector(2, u500), [runtime value])
1762// @as(@Vector(2, u500), [runtime value])
1763// @as(@Vector(2, u500), [runtime value])
1764// @as(@Vector(2, u500), [runtime value])
1765// @as(@Vector(2, u500), [runtime value])
1766// @as(@Vector(2, u500), [runtime value])
1767// @as(@Vector(2, u500), [runtime value])
1768// @as(@Vector(2, u500), [runtime value])
1769// @as(@Vector(2, u500), [runtime value])
1770// @as(@Vector(2, u500), [runtime value])
1771// @as(@Vector(2, u500), undefined)
1772// @as(u500, undefined)
1773// @as(@Vector(2, u500), undefined)
1774// @as(u500, undefined)
1775// @as(u500, undefined)
1776// @as(@Vector(2, u500), undefined)
1777// @as(@Vector(2, u500), undefined)
1778// @as(u1, undefined)
1779// @as(@Vector(2, u1), [runtime value])
1780// @as(@Vector(2, u1), [runtime value])
1781// @as(@Vector(2, u1), undefined)
1782// @as(u500, undefined)
1783// @as(@Vector(2, u500), undefined)
1784// @as(i500, undefined)
1785// @as(i500, undefined)
1786// @as(@Vector(2, i500), .{ 6, undefined })
1787// @as(@Vector(2, i500), .{ undefined, 6 })
1788// @as(@Vector(2, i500), undefined)
1789// @as(@Vector(2, i500), .{ 6, undefined })
1790// @as(@Vector(2, i500), .{ 6, undefined })
1791// @as(@Vector(2, i500), undefined)
1792// @as(@Vector(2, i500), undefined)
1793// @as(@Vector(2, i500), .{ undefined, 6 })
1794// @as(@Vector(2, i500), undefined)
1795// @as(@Vector(2, i500), .{ undefined, 6 })
1796// @as(@Vector(2, i500), undefined)
1797// @as(@Vector(2, i500), undefined)
1798// @as(@Vector(2, i500), undefined)
1799// @as(@Vector(2, i500), undefined)
1800// @as(@Vector(2, i500), undefined)
1801// @as(i500, undefined)
1802// @as(i500, undefined)
1803// @as(@Vector(2, i500), .{ 6, undefined })
1804// @as(@Vector(2, i500), .{ undefined, 6 })
1805// @as(@Vector(2, i500), undefined)
1806// @as(@Vector(2, i500), .{ 6, undefined })
1807// @as(@Vector(2, i500), .{ 6, undefined })
1808// @as(@Vector(2, i500), undefined)
1809// @as(@Vector(2, i500), undefined)
1810// @as(@Vector(2, i500), .{ undefined, 6 })
1811// @as(@Vector(2, i500), undefined)
1812// @as(@Vector(2, i500), .{ undefined, 6 })
1813// @as(@Vector(2, i500), undefined)
1814// @as(@Vector(2, i500), undefined)
1815// @as(@Vector(2, i500), undefined)
1816// @as(@Vector(2, i500), undefined)
1817// @as(@Vector(2, i500), undefined)
1818// @as(i500, undefined)
1819// @as(i500, undefined)
1820// @as(@Vector(2, i500), .{ 0, undefined })
1821// @as(@Vector(2, i500), .{ undefined, 0 })
1822// @as(@Vector(2, i500), undefined)
1823// @as(@Vector(2, i500), .{ 0, undefined })
1824// @as(@Vector(2, i500), .{ 0, undefined })
1825// @as(@Vector(2, i500), undefined)
1826// @as(@Vector(2, i500), undefined)
1827// @as(@Vector(2, i500), .{ undefined, 0 })
1828// @as(@Vector(2, i500), undefined)
1829// @as(@Vector(2, i500), .{ undefined, 0 })
1830// @as(@Vector(2, i500), undefined)
1831// @as(@Vector(2, i500), undefined)
1832// @as(@Vector(2, i500), undefined)
1833// @as(@Vector(2, i500), undefined)
1834// @as(@Vector(2, i500), undefined)
1835// @as(i500, undefined)
1836// @as(i500, undefined)
1837// @as(@Vector(2, i500), .{ 0, undefined })
1838// @as(@Vector(2, i500), .{ undefined, 0 })
1839// @as(@Vector(2, i500), undefined)
1840// @as(@Vector(2, i500), .{ 0, undefined })
1841// @as(@Vector(2, i500), .{ 0, undefined })
1842// @as(@Vector(2, i500), undefined)
1843// @as(@Vector(2, i500), undefined)
1844// @as(@Vector(2, i500), .{ undefined, 0 })
1845// @as(@Vector(2, i500), undefined)
1846// @as(@Vector(2, i500), .{ undefined, 0 })
1847// @as(@Vector(2, i500), undefined)
1848// @as(@Vector(2, i500), undefined)
1849// @as(@Vector(2, i500), undefined)
1850// @as(@Vector(2, i500), undefined)
1851// @as(@Vector(2, i500), undefined)
1852// @as(i500, undefined)
1853// @as(i500, undefined)
1854// @as(@Vector(2, i500), .{ 9, undefined })
1855// @as(@Vector(2, i500), .{ undefined, 9 })
1856// @as(@Vector(2, i500), undefined)
1857// @as(@Vector(2, i500), .{ 9, undefined })
1858// @as(@Vector(2, i500), .{ 9, undefined })
1859// @as(@Vector(2, i500), undefined)
1860// @as(@Vector(2, i500), undefined)
1861// @as(@Vector(2, i500), .{ undefined, 9 })
1862// @as(@Vector(2, i500), undefined)
1863// @as(@Vector(2, i500), .{ undefined, 9 })
1864// @as(@Vector(2, i500), undefined)
1865// @as(@Vector(2, i500), undefined)
1866// @as(@Vector(2, i500), undefined)
1867// @as(@Vector(2, i500), undefined)
1868// @as(@Vector(2, i500), undefined)
1869// @as(i500, undefined)
1870// @as(i500, undefined)
1871// @as(@Vector(2, i500), .{ 9, undefined })
1872// @as(@Vector(2, i500), .{ undefined, 9 })
1873// @as(@Vector(2, i500), undefined)
1874// @as(@Vector(2, i500), .{ 9, undefined })
1875// @as(@Vector(2, i500), .{ 9, undefined })
1876// @as(@Vector(2, i500), undefined)
1877// @as(@Vector(2, i500), undefined)
1878// @as(@Vector(2, i500), .{ undefined, 9 })
1879// @as(@Vector(2, i500), undefined)
1880// @as(@Vector(2, i500), .{ undefined, 9 })
1881// @as(@Vector(2, i500), undefined)
1882// @as(@Vector(2, i500), undefined)
1883// @as(@Vector(2, i500), undefined)
1884// @as(@Vector(2, i500), undefined)
1885// @as(@Vector(2, i500), undefined)
1886// @as(i500, undefined)
1887// @as(i500, undefined)
1888// @as(@Vector(2, i500), .{ 0, undefined })
1889// @as(@Vector(2, i500), .{ undefined, 0 })
1890// @as(@Vector(2, i500), undefined)
1891// @as(@Vector(2, i500), .{ 0, undefined })
1892// @as(@Vector(2, i500), .{ 0, undefined })
1893// @as(@Vector(2, i500), undefined)
1894// @as(@Vector(2, i500), undefined)
1895// @as(@Vector(2, i500), .{ undefined, 0 })
1896// @as(@Vector(2, i500), undefined)
1897// @as(@Vector(2, i500), .{ undefined, 0 })
1898// @as(@Vector(2, i500), undefined)
1899// @as(@Vector(2, i500), undefined)
1900// @as(@Vector(2, i500), undefined)
1901// @as(@Vector(2, i500), undefined)
1902// @as(@Vector(2, i500), undefined)
1903// @as(i500, undefined)
1904// @as(@Vector(2, i500), undefined)
1905// @as(i500, undefined)
1906// @as(i500, undefined)
1907// @as(@Vector(2, i500), undefined)
1908// @as(@Vector(2, i500), undefined)
1909// @as(i500, undefined)
1910// @as(@Vector(2, i500), undefined)
1911// @as(i500, undefined)
1912// @as(i500, undefined)
1913// @as(@Vector(2, i500), [runtime value])
1914// @as(@Vector(2, i500), [runtime value])
1915// @as(@Vector(2, i500), undefined)
1916// @as(@Vector(2, i500), [runtime value])
1917// @as(@Vector(2, i500), [runtime value])
1918// @as(@Vector(2, i500), [runtime value])
1919// @as(@Vector(2, i500), undefined)
1920// @as(@Vector(2, i500), [runtime value])
1921// @as(@Vector(2, i500), [runtime value])
1922// @as(@Vector(2, i500), [runtime value])
1923// @as(@Vector(2, i500), undefined)
1924// @as(@Vector(2, i500), undefined)
1925// @as(@Vector(2, i500), undefined)
1926// @as(@Vector(2, i500), undefined)
1927// @as(@Vector(2, i500), undefined)
1928// @as(i500, undefined)
1929// @as(i500, undefined)
1930// @as(@Vector(2, i500), [runtime value])
1931// @as(@Vector(2, i500), [runtime value])
1932// @as(@Vector(2, i500), undefined)
1933// @as(@Vector(2, i500), [runtime value])
1934// @as(@Vector(2, i500), [runtime value])
1935// @as(@Vector(2, i500), [runtime value])
1936// @as(@Vector(2, i500), undefined)
1937// @as(@Vector(2, i500), [runtime value])
1938// @as(@Vector(2, i500), [runtime value])
1939// @as(@Vector(2, i500), [runtime value])
1940// @as(@Vector(2, i500), undefined)
1941// @as(@Vector(2, i500), undefined)
1942// @as(@Vector(2, i500), undefined)
1943// @as(@Vector(2, i500), undefined)
1944// @as(@Vector(2, i500), undefined)
1945// @as(i500, undefined)
1946// @as(i500, undefined)
1947// @as(@Vector(2, i500), [runtime value])
1948// @as(@Vector(2, i500), [runtime value])
1949// @as(@Vector(2, i500), undefined)
1950// @as(@Vector(2, i500), [runtime value])
1951// @as(@Vector(2, i500), [runtime value])
1952// @as(@Vector(2, i500), [runtime value])
1953// @as(@Vector(2, i500), undefined)
1954// @as(@Vector(2, i500), [runtime value])
1955// @as(@Vector(2, i500), [runtime value])
1956// @as(@Vector(2, i500), [runtime value])
1957// @as(@Vector(2, i500), undefined)
1958// @as(@Vector(2, i500), undefined)
1959// @as(@Vector(2, i500), undefined)
1960// @as(@Vector(2, i500), undefined)
1961// @as(@Vector(2, i500), undefined)
1962// @as(i500, undefined)
1963// @as(i500, undefined)
1964// @as(@Vector(2, i500), [runtime value])
1965// @as(@Vector(2, i500), [runtime value])
1966// @as(@Vector(2, i500), undefined)
1967// @as(@Vector(2, i500), [runtime value])
1968// @as(@Vector(2, i500), [runtime value])
1969// @as(@Vector(2, i500), [runtime value])
1970// @as(@Vector(2, i500), undefined)
1971// @as(@Vector(2, i500), [runtime value])
1972// @as(@Vector(2, i500), [runtime value])
1973// @as(@Vector(2, i500), [runtime value])
1974// @as(@Vector(2, i500), undefined)
1975// @as(@Vector(2, i500), undefined)
1976// @as(@Vector(2, i500), undefined)
1977// @as(@Vector(2, i500), undefined)
1978// @as(@Vector(2, i500), undefined)
1979// @as(i500, undefined)
1980// @as(i500, undefined)
1981// @as(@Vector(2, i500), [runtime value])
1982// @as(@Vector(2, i500), [runtime value])
1983// @as(@Vector(2, i500), undefined)
1984// @as(@Vector(2, i500), [runtime value])
1985// @as(@Vector(2, i500), [runtime value])
1986// @as(@Vector(2, i500), [runtime value])
1987// @as(@Vector(2, i500), undefined)
1988// @as(@Vector(2, i500), [runtime value])
1989// @as(@Vector(2, i500), [runtime value])
1990// @as(@Vector(2, i500), [runtime value])
1991// @as(@Vector(2, i500), undefined)
1992// @as(@Vector(2, i500), undefined)
1993// @as(@Vector(2, i500), undefined)
1994// @as(@Vector(2, i500), undefined)
1995// @as(@Vector(2, i500), undefined)
1996// @as(i500, undefined)
1997// @as(i500, undefined)
1998// @as(@Vector(2, i500), [runtime value])
1999// @as(@Vector(2, i500), [runtime value])
2000// @as(@Vector(2, i500), undefined)
2001// @as(@Vector(2, i500), [runtime value])
2002// @as(@Vector(2, i500), [runtime value])
2003// @as(@Vector(2, i500), [runtime value])
2004// @as(@Vector(2, i500), undefined)
2005// @as(@Vector(2, i500), [runtime value])
2006// @as(@Vector(2, i500), [runtime value])
2007// @as(@Vector(2, i500), [runtime value])
2008// @as(@Vector(2, i500), undefined)
2009// @as(@Vector(2, i500), undefined)
2010// @as(@Vector(2, i500), undefined)
2011// @as(@Vector(2, i500), undefined)
2012// @as(@Vector(2, i500), undefined)
2013// @as(i500, [runtime value])
2014// @as(i500, [runtime value])
2015// @as(@Vector(2, i500), [runtime value])
2016// @as(@Vector(2, i500), [runtime value])
2017// @as(@Vector(2, i500), [runtime value])
2018// @as(@Vector(2, i500), [runtime value])
2019// @as(@Vector(2, i500), [runtime value])
2020// @as(@Vector(2, i500), [runtime value])
2021// @as(@Vector(2, i500), [runtime value])
2022// @as(@Vector(2, i500), [runtime value])
2023// @as(@Vector(2, i500), [runtime value])
2024// @as(@Vector(2, i500), [runtime value])
2025// @as(@Vector(2, i500), [runtime value])
2026// @as(@Vector(2, i500), [runtime value])
2027// @as(@Vector(2, i500), [runtime value])
2028// @as(@Vector(2, i500), [runtime value])
2029// @as(@Vector(2, i500), undefined)
2030// @as(i500, undefined)
2031// @as(@Vector(2, i500), undefined)
2032// @as(i500, undefined)
2033// @as(i500, undefined)
2034// @as(@Vector(2, i500), undefined)
2035// @as(@Vector(2, i500), undefined)
2036// @as(i500, undefined)
2037// @as(@Vector(2, i500), undefined)
2038// @as(f16, undefined)
2039// @as(f16, undefined)
2040// @as(@Vector(2, f16), .{ 6, undefined })
2041// @as(@Vector(2, f16), .{ undefined, 6 })
2042// @as(@Vector(2, f16), undefined)
2043// @as(@Vector(2, f16), .{ 6, undefined })
2044// @as(@Vector(2, f16), .{ 6, undefined })
2045// @as(@Vector(2, f16), undefined)
2046// @as(@Vector(2, f16), undefined)
2047// @as(@Vector(2, f16), .{ undefined, 6 })
2048// @as(@Vector(2, f16), undefined)
2049// @as(@Vector(2, f16), .{ undefined, 6 })
2050// @as(@Vector(2, f16), undefined)
2051// @as(@Vector(2, f16), undefined)
2052// @as(@Vector(2, f16), undefined)
2053// @as(@Vector(2, f16), undefined)
2054// @as(@Vector(2, f16), undefined)
2055// @as(f16, undefined)
2056// @as(f16, undefined)
2057// @as(@Vector(2, f16), .{ 0, undefined })
2058// @as(@Vector(2, f16), .{ undefined, 0 })
2059// @as(@Vector(2, f16), undefined)
2060// @as(@Vector(2, f16), .{ 0, undefined })
2061// @as(@Vector(2, f16), .{ 0, undefined })
2062// @as(@Vector(2, f16), undefined)
2063// @as(@Vector(2, f16), undefined)
2064// @as(@Vector(2, f16), .{ undefined, 0 })
2065// @as(@Vector(2, f16), undefined)
2066// @as(@Vector(2, f16), .{ undefined, 0 })
2067// @as(@Vector(2, f16), undefined)
2068// @as(@Vector(2, f16), undefined)
2069// @as(@Vector(2, f16), undefined)
2070// @as(@Vector(2, f16), undefined)
2071// @as(@Vector(2, f16), undefined)
2072// @as(f16, undefined)
2073// @as(f16, undefined)
2074// @as(@Vector(2, f16), .{ 9, undefined })
2075// @as(@Vector(2, f16), .{ undefined, 9 })
2076// @as(@Vector(2, f16), undefined)
2077// @as(@Vector(2, f16), .{ 9, undefined })
2078// @as(@Vector(2, f16), .{ 9, undefined })
2079// @as(@Vector(2, f16), undefined)
2080// @as(@Vector(2, f16), undefined)
2081// @as(@Vector(2, f16), .{ undefined, 9 })
2082// @as(@Vector(2, f16), undefined)
2083// @as(@Vector(2, f16), .{ undefined, 9 })
2084// @as(@Vector(2, f16), undefined)
2085// @as(@Vector(2, f16), undefined)
2086// @as(@Vector(2, f16), undefined)
2087// @as(@Vector(2, f16), undefined)
2088// @as(@Vector(2, f16), undefined)
2089// @as(f16, undefined)
2090// @as(@Vector(2, f16), .{ -3, undefined })
2091// @as(@Vector(2, f16), .{ undefined, -3 })
2092// @as(@Vector(2, f16), undefined)
2093// @as(f16, undefined)
2094// @as(f16, undefined)
2095// @as(@Vector(2, f16), [runtime value])
2096// @as(@Vector(2, f16), [runtime value])
2097// @as(@Vector(2, f16), undefined)
2098// @as(@Vector(2, f16), [runtime value])
2099// @as(@Vector(2, f16), [runtime value])
2100// @as(@Vector(2, f16), [runtime value])
2101// @as(@Vector(2, f16), undefined)
2102// @as(@Vector(2, f16), [runtime value])
2103// @as(@Vector(2, f16), [runtime value])
2104// @as(@Vector(2, f16), [runtime value])
2105// @as(@Vector(2, f16), undefined)
2106// @as(@Vector(2, f16), undefined)
2107// @as(@Vector(2, f16), undefined)
2108// @as(@Vector(2, f16), undefined)
2109// @as(@Vector(2, f16), undefined)
2110// @as(f16, undefined)
2111// @as(f16, undefined)
2112// @as(@Vector(2, f16), [runtime value])
2113// @as(@Vector(2, f16), [runtime value])
2114// @as(@Vector(2, f16), undefined)
2115// @as(@Vector(2, f16), [runtime value])
2116// @as(@Vector(2, f16), [runtime value])
2117// @as(@Vector(2, f16), [runtime value])
2118// @as(@Vector(2, f16), undefined)
2119// @as(@Vector(2, f16), [runtime value])
2120// @as(@Vector(2, f16), [runtime value])
2121// @as(@Vector(2, f16), [runtime value])
2122// @as(@Vector(2, f16), undefined)
2123// @as(@Vector(2, f16), undefined)
2124// @as(@Vector(2, f16), undefined)
2125// @as(@Vector(2, f16), undefined)
2126// @as(@Vector(2, f16), undefined)
2127// @as(f16, undefined)
2128// @as(f16, undefined)
2129// @as(@Vector(2, f16), [runtime value])
2130// @as(@Vector(2, f16), [runtime value])
2131// @as(@Vector(2, f16), undefined)
2132// @as(@Vector(2, f16), [runtime value])
2133// @as(@Vector(2, f16), [runtime value])
2134// @as(@Vector(2, f16), [runtime value])
2135// @as(@Vector(2, f16), undefined)
2136// @as(@Vector(2, f16), [runtime value])
2137// @as(@Vector(2, f16), [runtime value])
2138// @as(@Vector(2, f16), [runtime value])
2139// @as(@Vector(2, f16), undefined)
2140// @as(@Vector(2, f16), undefined)
2141// @as(@Vector(2, f16), undefined)
2142// @as(@Vector(2, f16), undefined)
2143// @as(@Vector(2, f16), undefined)
2144// @as(f16, undefined)
2145// @as(@Vector(2, f16), [runtime value])
2146// @as(@Vector(2, f16), [runtime value])
2147// @as(@Vector(2, f16), undefined)
2148// @as(f32, undefined)
2149// @as(f32, undefined)
2150// @as(@Vector(2, f32), .{ 6, undefined })
2151// @as(@Vector(2, f32), .{ undefined, 6 })
2152// @as(@Vector(2, f32), undefined)
2153// @as(@Vector(2, f32), .{ 6, undefined })
2154// @as(@Vector(2, f32), .{ 6, undefined })
2155// @as(@Vector(2, f32), undefined)
2156// @as(@Vector(2, f32), undefined)
2157// @as(@Vector(2, f32), .{ undefined, 6 })
2158// @as(@Vector(2, f32), undefined)
2159// @as(@Vector(2, f32), .{ undefined, 6 })
2160// @as(@Vector(2, f32), undefined)
2161// @as(@Vector(2, f32), undefined)
2162// @as(@Vector(2, f32), undefined)
2163// @as(@Vector(2, f32), undefined)
2164// @as(@Vector(2, f32), undefined)
2165// @as(f32, undefined)
2166// @as(f32, undefined)
2167// @as(@Vector(2, f32), .{ 0, undefined })
2168// @as(@Vector(2, f32), .{ undefined, 0 })
2169// @as(@Vector(2, f32), undefined)
2170// @as(@Vector(2, f32), .{ 0, undefined })
2171// @as(@Vector(2, f32), .{ 0, undefined })
2172// @as(@Vector(2, f32), undefined)
2173// @as(@Vector(2, f32), undefined)
2174// @as(@Vector(2, f32), .{ undefined, 0 })
2175// @as(@Vector(2, f32), undefined)
2176// @as(@Vector(2, f32), .{ undefined, 0 })
2177// @as(@Vector(2, f32), undefined)
2178// @as(@Vector(2, f32), undefined)
2179// @as(@Vector(2, f32), undefined)
2180// @as(@Vector(2, f32), undefined)
2181// @as(@Vector(2, f32), undefined)
2182// @as(f32, undefined)
2183// @as(f32, undefined)
2184// @as(@Vector(2, f32), .{ 9, undefined })
2185// @as(@Vector(2, f32), .{ undefined, 9 })
2186// @as(@Vector(2, f32), undefined)
2187// @as(@Vector(2, f32), .{ 9, undefined })
2188// @as(@Vector(2, f32), .{ 9, undefined })
2189// @as(@Vector(2, f32), undefined)
2190// @as(@Vector(2, f32), undefined)
2191// @as(@Vector(2, f32), .{ undefined, 9 })
2192// @as(@Vector(2, f32), undefined)
2193// @as(@Vector(2, f32), .{ undefined, 9 })
2194// @as(@Vector(2, f32), undefined)
2195// @as(@Vector(2, f32), undefined)
2196// @as(@Vector(2, f32), undefined)
2197// @as(@Vector(2, f32), undefined)
2198// @as(@Vector(2, f32), undefined)
2199// @as(f32, undefined)
2200// @as(@Vector(2, f32), .{ -3, undefined })
2201// @as(@Vector(2, f32), .{ undefined, -3 })
2202// @as(@Vector(2, f32), undefined)
2203// @as(f32, undefined)
2204// @as(f32, undefined)
2205// @as(@Vector(2, f32), [runtime value])
2206// @as(@Vector(2, f32), [runtime value])
2207// @as(@Vector(2, f32), undefined)
2208// @as(@Vector(2, f32), [runtime value])
2209// @as(@Vector(2, f32), [runtime value])
2210// @as(@Vector(2, f32), [runtime value])
2211// @as(@Vector(2, f32), undefined)
2212// @as(@Vector(2, f32), [runtime value])
2213// @as(@Vector(2, f32), [runtime value])
2214// @as(@Vector(2, f32), [runtime value])
2215// @as(@Vector(2, f32), undefined)
2216// @as(@Vector(2, f32), undefined)
2217// @as(@Vector(2, f32), undefined)
2218// @as(@Vector(2, f32), undefined)
2219// @as(@Vector(2, f32), undefined)
2220// @as(f32, undefined)
2221// @as(f32, undefined)
2222// @as(@Vector(2, f32), [runtime value])
2223// @as(@Vector(2, f32), [runtime value])
2224// @as(@Vector(2, f32), undefined)
2225// @as(@Vector(2, f32), [runtime value])
2226// @as(@Vector(2, f32), [runtime value])
2227// @as(@Vector(2, f32), [runtime value])
2228// @as(@Vector(2, f32), undefined)
2229// @as(@Vector(2, f32), [runtime value])
2230// @as(@Vector(2, f32), [runtime value])
2231// @as(@Vector(2, f32), [runtime value])
2232// @as(@Vector(2, f32), undefined)
2233// @as(@Vector(2, f32), undefined)
2234// @as(@Vector(2, f32), undefined)
2235// @as(@Vector(2, f32), undefined)
2236// @as(@Vector(2, f32), undefined)
2237// @as(f32, undefined)
2238// @as(f32, undefined)
2239// @as(@Vector(2, f32), [runtime value])
2240// @as(@Vector(2, f32), [runtime value])
2241// @as(@Vector(2, f32), undefined)
2242// @as(@Vector(2, f32), [runtime value])
2243// @as(@Vector(2, f32), [runtime value])
2244// @as(@Vector(2, f32), [runtime value])
2245// @as(@Vector(2, f32), undefined)
2246// @as(@Vector(2, f32), [runtime value])
2247// @as(@Vector(2, f32), [runtime value])
2248// @as(@Vector(2, f32), [runtime value])
2249// @as(@Vector(2, f32), undefined)
2250// @as(@Vector(2, f32), undefined)
2251// @as(@Vector(2, f32), undefined)
2252// @as(@Vector(2, f32), undefined)
2253// @as(@Vector(2, f32), undefined)
2254// @as(f32, undefined)
2255// @as(@Vector(2, f32), [runtime value])
2256// @as(@Vector(2, f32), [runtime value])
2257// @as(@Vector(2, f32), undefined)
2258// @as(f64, undefined)
2259// @as(f64, undefined)
2260// @as(@Vector(2, f64), .{ 6, undefined })
2261// @as(@Vector(2, f64), .{ undefined, 6 })
2262// @as(@Vector(2, f64), undefined)
2263// @as(@Vector(2, f64), .{ 6, undefined })
2264// @as(@Vector(2, f64), .{ 6, undefined })
2265// @as(@Vector(2, f64), undefined)
2266// @as(@Vector(2, f64), undefined)
2267// @as(@Vector(2, f64), .{ undefined, 6 })
2268// @as(@Vector(2, f64), undefined)
2269// @as(@Vector(2, f64), .{ undefined, 6 })
2270// @as(@Vector(2, f64), undefined)
2271// @as(@Vector(2, f64), undefined)
2272// @as(@Vector(2, f64), undefined)
2273// @as(@Vector(2, f64), undefined)
2274// @as(@Vector(2, f64), undefined)
2275// @as(f64, undefined)
2276// @as(f64, undefined)
2277// @as(@Vector(2, f64), .{ 0, undefined })
2278// @as(@Vector(2, f64), .{ undefined, 0 })
2279// @as(@Vector(2, f64), undefined)
2280// @as(@Vector(2, f64), .{ 0, undefined })
2281// @as(@Vector(2, f64), .{ 0, undefined })
2282// @as(@Vector(2, f64), undefined)
2283// @as(@Vector(2, f64), undefined)
2284// @as(@Vector(2, f64), .{ undefined, 0 })
2285// @as(@Vector(2, f64), undefined)
2286// @as(@Vector(2, f64), .{ undefined, 0 })
2287// @as(@Vector(2, f64), undefined)
2288// @as(@Vector(2, f64), undefined)
2289// @as(@Vector(2, f64), undefined)
2290// @as(@Vector(2, f64), undefined)
2291// @as(@Vector(2, f64), undefined)
2292// @as(f64, undefined)
2293// @as(f64, undefined)
2294// @as(@Vector(2, f64), .{ 9, undefined })
2295// @as(@Vector(2, f64), .{ undefined, 9 })
2296// @as(@Vector(2, f64), undefined)
2297// @as(@Vector(2, f64), .{ 9, undefined })
2298// @as(@Vector(2, f64), .{ 9, undefined })
2299// @as(@Vector(2, f64), undefined)
2300// @as(@Vector(2, f64), undefined)
2301// @as(@Vector(2, f64), .{ undefined, 9 })
2302// @as(@Vector(2, f64), undefined)
2303// @as(@Vector(2, f64), .{ undefined, 9 })
2304// @as(@Vector(2, f64), undefined)
2305// @as(@Vector(2, f64), undefined)
2306// @as(@Vector(2, f64), undefined)
2307// @as(@Vector(2, f64), undefined)
2308// @as(@Vector(2, f64), undefined)
2309// @as(f64, undefined)
2310// @as(@Vector(2, f64), .{ -3, undefined })
2311// @as(@Vector(2, f64), .{ undefined, -3 })
2312// @as(@Vector(2, f64), undefined)
2313// @as(f64, undefined)
2314// @as(f64, undefined)
2315// @as(@Vector(2, f64), [runtime value])
2316// @as(@Vector(2, f64), [runtime value])
2317// @as(@Vector(2, f64), undefined)
2318// @as(@Vector(2, f64), [runtime value])
2319// @as(@Vector(2, f64), [runtime value])
2320// @as(@Vector(2, f64), [runtime value])
2321// @as(@Vector(2, f64), undefined)
2322// @as(@Vector(2, f64), [runtime value])
2323// @as(@Vector(2, f64), [runtime value])
2324// @as(@Vector(2, f64), [runtime value])
2325// @as(@Vector(2, f64), undefined)
2326// @as(@Vector(2, f64), undefined)
2327// @as(@Vector(2, f64), undefined)
2328// @as(@Vector(2, f64), undefined)
2329// @as(@Vector(2, f64), undefined)
2330// @as(f64, undefined)
2331// @as(f64, undefined)
2332// @as(@Vector(2, f64), [runtime value])
2333// @as(@Vector(2, f64), [runtime value])
2334// @as(@Vector(2, f64), undefined)
2335// @as(@Vector(2, f64), [runtime value])
2336// @as(@Vector(2, f64), [runtime value])
2337// @as(@Vector(2, f64), [runtime value])
2338// @as(@Vector(2, f64), undefined)
2339// @as(@Vector(2, f64), [runtime value])
2340// @as(@Vector(2, f64), [runtime value])
2341// @as(@Vector(2, f64), [runtime value])
2342// @as(@Vector(2, f64), undefined)
2343// @as(@Vector(2, f64), undefined)
2344// @as(@Vector(2, f64), undefined)
2345// @as(@Vector(2, f64), undefined)
2346// @as(@Vector(2, f64), undefined)
2347// @as(f64, undefined)
2348// @as(f64, undefined)
2349// @as(@Vector(2, f64), [runtime value])
2350// @as(@Vector(2, f64), [runtime value])
2351// @as(@Vector(2, f64), undefined)
2352// @as(@Vector(2, f64), [runtime value])
2353// @as(@Vector(2, f64), [runtime value])
2354// @as(@Vector(2, f64), [runtime value])
2355// @as(@Vector(2, f64), undefined)
2356// @as(@Vector(2, f64), [runtime value])
2357// @as(@Vector(2, f64), [runtime value])
2358// @as(@Vector(2, f64), [runtime value])
2359// @as(@Vector(2, f64), undefined)
2360// @as(@Vector(2, f64), undefined)
2361// @as(@Vector(2, f64), undefined)
2362// @as(@Vector(2, f64), undefined)
2363// @as(@Vector(2, f64), undefined)
2364// @as(f64, undefined)
2365// @as(@Vector(2, f64), [runtime value])
2366// @as(@Vector(2, f64), [runtime value])
2367// @as(@Vector(2, f64), undefined)
2368// @as(f80, undefined)
2369// @as(f80, undefined)
2370// @as(@Vector(2, f80), .{ 6, undefined })
2371// @as(@Vector(2, f80), .{ undefined, 6 })
2372// @as(@Vector(2, f80), undefined)
2373// @as(@Vector(2, f80), .{ 6, undefined })
2374// @as(@Vector(2, f80), .{ 6, undefined })
2375// @as(@Vector(2, f80), undefined)
2376// @as(@Vector(2, f80), undefined)
2377// @as(@Vector(2, f80), .{ undefined, 6 })
2378// @as(@Vector(2, f80), undefined)
2379// @as(@Vector(2, f80), .{ undefined, 6 })
2380// @as(@Vector(2, f80), undefined)
2381// @as(@Vector(2, f80), undefined)
2382// @as(@Vector(2, f80), undefined)
2383// @as(@Vector(2, f80), undefined)
2384// @as(@Vector(2, f80), undefined)
2385// @as(f80, undefined)
2386// @as(f80, undefined)
2387// @as(@Vector(2, f80), .{ 0, undefined })
2388// @as(@Vector(2, f80), .{ undefined, 0 })
2389// @as(@Vector(2, f80), undefined)
2390// @as(@Vector(2, f80), .{ 0, undefined })
2391// @as(@Vector(2, f80), .{ 0, undefined })
2392// @as(@Vector(2, f80), undefined)
2393// @as(@Vector(2, f80), undefined)
2394// @as(@Vector(2, f80), .{ undefined, 0 })
2395// @as(@Vector(2, f80), undefined)
2396// @as(@Vector(2, f80), .{ undefined, 0 })
2397// @as(@Vector(2, f80), undefined)
2398// @as(@Vector(2, f80), undefined)
2399// @as(@Vector(2, f80), undefined)
2400// @as(@Vector(2, f80), undefined)
2401// @as(@Vector(2, f80), undefined)
2402// @as(f80, undefined)
2403// @as(f80, undefined)
2404// @as(@Vector(2, f80), .{ 9, undefined })
2405// @as(@Vector(2, f80), .{ undefined, 9 })
2406// @as(@Vector(2, f80), undefined)
2407// @as(@Vector(2, f80), .{ 9, undefined })
2408// @as(@Vector(2, f80), .{ 9, undefined })
2409// @as(@Vector(2, f80), undefined)
2410// @as(@Vector(2, f80), undefined)
2411// @as(@Vector(2, f80), .{ undefined, 9 })
2412// @as(@Vector(2, f80), undefined)
2413// @as(@Vector(2, f80), .{ undefined, 9 })
2414// @as(@Vector(2, f80), undefined)
2415// @as(@Vector(2, f80), undefined)
2416// @as(@Vector(2, f80), undefined)
2417// @as(@Vector(2, f80), undefined)
2418// @as(@Vector(2, f80), undefined)
2419// @as(f80, undefined)
2420// @as(@Vector(2, f80), .{ -3, undefined })
2421// @as(@Vector(2, f80), .{ undefined, -3 })
2422// @as(@Vector(2, f80), undefined)
2423// @as(f80, undefined)
2424// @as(f80, undefined)
2425// @as(@Vector(2, f80), [runtime value])
2426// @as(@Vector(2, f80), [runtime value])
2427// @as(@Vector(2, f80), undefined)
2428// @as(@Vector(2, f80), [runtime value])
2429// @as(@Vector(2, f80), [runtime value])
2430// @as(@Vector(2, f80), [runtime value])
2431// @as(@Vector(2, f80), undefined)
2432// @as(@Vector(2, f80), [runtime value])
2433// @as(@Vector(2, f80), [runtime value])
2434// @as(@Vector(2, f80), [runtime value])
2435// @as(@Vector(2, f80), undefined)
2436// @as(@Vector(2, f80), undefined)
2437// @as(@Vector(2, f80), undefined)
2438// @as(@Vector(2, f80), undefined)
2439// @as(@Vector(2, f80), undefined)
2440// @as(f80, undefined)
2441// @as(f80, undefined)
2442// @as(@Vector(2, f80), [runtime value])
2443// @as(@Vector(2, f80), [runtime value])
2444// @as(@Vector(2, f80), undefined)
2445// @as(@Vector(2, f80), [runtime value])
2446// @as(@Vector(2, f80), [runtime value])
2447// @as(@Vector(2, f80), [runtime value])
2448// @as(@Vector(2, f80), undefined)
2449// @as(@Vector(2, f80), [runtime value])
2450// @as(@Vector(2, f80), [runtime value])
2451// @as(@Vector(2, f80), [runtime value])
2452// @as(@Vector(2, f80), undefined)
2453// @as(@Vector(2, f80), undefined)
2454// @as(@Vector(2, f80), undefined)
2455// @as(@Vector(2, f80), undefined)
2456// @as(@Vector(2, f80), undefined)
2457// @as(f80, undefined)
2458// @as(f80, undefined)
2459// @as(@Vector(2, f80), [runtime value])
2460// @as(@Vector(2, f80), [runtime value])
2461// @as(@Vector(2, f80), undefined)
2462// @as(@Vector(2, f80), [runtime value])
2463// @as(@Vector(2, f80), [runtime value])
2464// @as(@Vector(2, f80), [runtime value])
2465// @as(@Vector(2, f80), undefined)
2466// @as(@Vector(2, f80), [runtime value])
2467// @as(@Vector(2, f80), [runtime value])
2468// @as(@Vector(2, f80), [runtime value])
2469// @as(@Vector(2, f80), undefined)
2470// @as(@Vector(2, f80), undefined)
2471// @as(@Vector(2, f80), undefined)
2472// @as(@Vector(2, f80), undefined)
2473// @as(@Vector(2, f80), undefined)
2474// @as(f80, undefined)
2475// @as(@Vector(2, f80), [runtime value])
2476// @as(@Vector(2, f80), [runtime value])
2477// @as(@Vector(2, f80), undefined)
684// @as(i500, undefined)
685// @as(i500, undefined)
686// @as(@Vector(2, i500), .{ 6, undefined })
687// @as(@Vector(2, i500), .{ undefined, 6 })
688// @as(@Vector(2, i500), undefined)
689// @as(@Vector(2, i500), .{ 6, undefined })
690// @as(@Vector(2, i500), .{ 6, undefined })
691// @as(@Vector(2, i500), undefined)
692// @as(@Vector(2, i500), undefined)
693// @as(@Vector(2, i500), .{ undefined, 6 })
694// @as(@Vector(2, i500), undefined)
695// @as(@Vector(2, i500), .{ undefined, 6 })
696// @as(@Vector(2, i500), undefined)
697// @as(@Vector(2, i500), undefined)
698// @as(@Vector(2, i500), undefined)
699// @as(@Vector(2, i500), undefined)
700// @as(@Vector(2, i500), undefined)
701// @as(i500, undefined)
702// @as(i500, undefined)
703// @as(@Vector(2, i500), .{ 6, undefined })
704// @as(@Vector(2, i500), .{ undefined, 6 })
705// @as(@Vector(2, i500), undefined)
706// @as(@Vector(2, i500), .{ 6, undefined })
707// @as(@Vector(2, i500), .{ 6, undefined })
708// @as(@Vector(2, i500), undefined)
709// @as(@Vector(2, i500), undefined)
710// @as(@Vector(2, i500), .{ undefined, 6 })
711// @as(@Vector(2, i500), undefined)
712// @as(@Vector(2, i500), .{ undefined, 6 })
713// @as(@Vector(2, i500), undefined)
714// @as(@Vector(2, i500), undefined)
715// @as(@Vector(2, i500), undefined)
716// @as(@Vector(2, i500), undefined)
717// @as(@Vector(2, i500), undefined)
718// @as(i500, undefined)
719// @as(i500, undefined)
720// @as(@Vector(2, i500), .{ 0, undefined })
721// @as(@Vector(2, i500), .{ undefined, 0 })
722// @as(@Vector(2, i500), undefined)
723// @as(@Vector(2, i500), .{ 0, undefined })
724// @as(@Vector(2, i500), .{ 0, undefined })
725// @as(@Vector(2, i500), undefined)
726// @as(@Vector(2, i500), undefined)
727// @as(@Vector(2, i500), .{ undefined, 0 })
728// @as(@Vector(2, i500), undefined)
729// @as(@Vector(2, i500), .{ undefined, 0 })
730// @as(@Vector(2, i500), undefined)
731// @as(@Vector(2, i500), undefined)
732// @as(@Vector(2, i500), undefined)
733// @as(@Vector(2, i500), undefined)
734// @as(@Vector(2, i500), undefined)
735// @as(i500, undefined)
736// @as(i500, undefined)
737// @as(@Vector(2, i500), .{ 0, undefined })
738// @as(@Vector(2, i500), .{ undefined, 0 })
739// @as(@Vector(2, i500), undefined)
740// @as(@Vector(2, i500), .{ 0, undefined })
741// @as(@Vector(2, i500), .{ 0, undefined })
742// @as(@Vector(2, i500), undefined)
743// @as(@Vector(2, i500), undefined)
744// @as(@Vector(2, i500), .{ undefined, 0 })
745// @as(@Vector(2, i500), undefined)
746// @as(@Vector(2, i500), .{ undefined, 0 })
747// @as(@Vector(2, i500), undefined)
748// @as(@Vector(2, i500), undefined)
749// @as(@Vector(2, i500), undefined)
750// @as(@Vector(2, i500), undefined)
751// @as(@Vector(2, i500), undefined)
752// @as(i500, undefined)
753// @as(i500, undefined)
754// @as(@Vector(2, i500), .{ 9, undefined })
755// @as(@Vector(2, i500), .{ undefined, 9 })
756// @as(@Vector(2, i500), undefined)
757// @as(@Vector(2, i500), .{ 9, undefined })
758// @as(@Vector(2, i500), .{ 9, undefined })
759// @as(@Vector(2, i500), undefined)
760// @as(@Vector(2, i500), undefined)
761// @as(@Vector(2, i500), .{ undefined, 9 })
762// @as(@Vector(2, i500), undefined)
763// @as(@Vector(2, i500), .{ undefined, 9 })
764// @as(@Vector(2, i500), undefined)
765// @as(@Vector(2, i500), undefined)
766// @as(@Vector(2, i500), undefined)
767// @as(@Vector(2, i500), undefined)
768// @as(@Vector(2, i500), undefined)
769// @as(i500, undefined)
770// @as(i500, undefined)
771// @as(@Vector(2, i500), .{ 9, undefined })
772// @as(@Vector(2, i500), .{ undefined, 9 })
773// @as(@Vector(2, i500), undefined)
774// @as(@Vector(2, i500), .{ 9, undefined })
775// @as(@Vector(2, i500), .{ 9, undefined })
776// @as(@Vector(2, i500), undefined)
777// @as(@Vector(2, i500), undefined)
778// @as(@Vector(2, i500), .{ undefined, 9 })
779// @as(@Vector(2, i500), undefined)
780// @as(@Vector(2, i500), .{ undefined, 9 })
781// @as(@Vector(2, i500), undefined)
782// @as(@Vector(2, i500), undefined)
783// @as(@Vector(2, i500), undefined)
784// @as(@Vector(2, i500), undefined)
785// @as(@Vector(2, i500), undefined)
786// @as(i500, undefined)
787// @as(i500, undefined)
788// @as(@Vector(2, i500), .{ 0, undefined })
789// @as(@Vector(2, i500), .{ undefined, 0 })
790// @as(@Vector(2, i500), undefined)
791// @as(@Vector(2, i500), .{ 0, undefined })
792// @as(@Vector(2, i500), .{ 0, undefined })
793// @as(@Vector(2, i500), undefined)
794// @as(@Vector(2, i500), undefined)
795// @as(@Vector(2, i500), .{ undefined, 0 })
796// @as(@Vector(2, i500), undefined)
797// @as(@Vector(2, i500), .{ undefined, 0 })
798// @as(@Vector(2, i500), undefined)
799// @as(@Vector(2, i500), undefined)
800// @as(@Vector(2, i500), undefined)
801// @as(@Vector(2, i500), undefined)
802// @as(@Vector(2, i500), undefined)
803// @as(i500, undefined)
804// @as(@Vector(2, i500), undefined)
805// @as(i500, undefined)
806// @as(i500, undefined)
807// @as(@Vector(2, i500), undefined)
808// @as(@Vector(2, i500), undefined)
809// @as(i500, undefined)
810// @as(@Vector(2, i500), undefined)
811// @as(i500, undefined)
812// @as(i500, undefined)
813// @as(@Vector(2, i500), [runtime value])
814// @as(@Vector(2, i500), [runtime value])
815// @as(@Vector(2, i500), undefined)
816// @as(@Vector(2, i500), [runtime value])
817// @as(@Vector(2, i500), [runtime value])
818// @as(@Vector(2, i500), [runtime value])
819// @as(@Vector(2, i500), undefined)
820// @as(@Vector(2, i500), [runtime value])
821// @as(@Vector(2, i500), [runtime value])
822// @as(@Vector(2, i500), [runtime value])
823// @as(@Vector(2, i500), undefined)
824// @as(@Vector(2, i500), undefined)
825// @as(@Vector(2, i500), undefined)
826// @as(@Vector(2, i500), undefined)
827// @as(@Vector(2, i500), undefined)
828// @as(i500, undefined)
829// @as(i500, undefined)
830// @as(@Vector(2, i500), [runtime value])
831// @as(@Vector(2, i500), [runtime value])
832// @as(@Vector(2, i500), undefined)
833// @as(@Vector(2, i500), [runtime value])
834// @as(@Vector(2, i500), [runtime value])
835// @as(@Vector(2, i500), [runtime value])
836// @as(@Vector(2, i500), undefined)
837// @as(@Vector(2, i500), [runtime value])
838// @as(@Vector(2, i500), [runtime value])
839// @as(@Vector(2, i500), [runtime value])
840// @as(@Vector(2, i500), undefined)
841// @as(@Vector(2, i500), undefined)
842// @as(@Vector(2, i500), undefined)
843// @as(@Vector(2, i500), undefined)
844// @as(@Vector(2, i500), undefined)
845// @as(i500, undefined)
846// @as(i500, undefined)
847// @as(@Vector(2, i500), [runtime value])
848// @as(@Vector(2, i500), [runtime value])
849// @as(@Vector(2, i500), undefined)
850// @as(@Vector(2, i500), [runtime value])
851// @as(@Vector(2, i500), [runtime value])
852// @as(@Vector(2, i500), [runtime value])
853// @as(@Vector(2, i500), undefined)
854// @as(@Vector(2, i500), [runtime value])
855// @as(@Vector(2, i500), [runtime value])
856// @as(@Vector(2, i500), [runtime value])
857// @as(@Vector(2, i500), undefined)
858// @as(@Vector(2, i500), undefined)
859// @as(@Vector(2, i500), undefined)
860// @as(@Vector(2, i500), undefined)
861// @as(@Vector(2, i500), undefined)
862// @as(i500, undefined)
863// @as(i500, undefined)
864// @as(@Vector(2, i500), [runtime value])
865// @as(@Vector(2, i500), [runtime value])
866// @as(@Vector(2, i500), undefined)
867// @as(@Vector(2, i500), [runtime value])
868// @as(@Vector(2, i500), [runtime value])
869// @as(@Vector(2, i500), [runtime value])
870// @as(@Vector(2, i500), undefined)
871// @as(@Vector(2, i500), [runtime value])
872// @as(@Vector(2, i500), [runtime value])
873// @as(@Vector(2, i500), [runtime value])
874// @as(@Vector(2, i500), undefined)
875// @as(@Vector(2, i500), undefined)
876// @as(@Vector(2, i500), undefined)
877// @as(@Vector(2, i500), undefined)
878// @as(@Vector(2, i500), undefined)
879// @as(i500, undefined)
880// @as(i500, undefined)
881// @as(@Vector(2, i500), [runtime value])
882// @as(@Vector(2, i500), [runtime value])
883// @as(@Vector(2, i500), undefined)
884// @as(@Vector(2, i500), [runtime value])
885// @as(@Vector(2, i500), [runtime value])
886// @as(@Vector(2, i500), [runtime value])
887// @as(@Vector(2, i500), undefined)
888// @as(@Vector(2, i500), [runtime value])
889// @as(@Vector(2, i500), [runtime value])
890// @as(@Vector(2, i500), [runtime value])
891// @as(@Vector(2, i500), undefined)
892// @as(@Vector(2, i500), undefined)
893// @as(@Vector(2, i500), undefined)
894// @as(@Vector(2, i500), undefined)
895// @as(@Vector(2, i500), undefined)
896// @as(i500, undefined)
897// @as(i500, undefined)
898// @as(@Vector(2, i500), [runtime value])
899// @as(@Vector(2, i500), [runtime value])
900// @as(@Vector(2, i500), undefined)
901// @as(@Vector(2, i500), [runtime value])
902// @as(@Vector(2, i500), [runtime value])
903// @as(@Vector(2, i500), [runtime value])
904// @as(@Vector(2, i500), undefined)
905// @as(@Vector(2, i500), [runtime value])
906// @as(@Vector(2, i500), [runtime value])
907// @as(@Vector(2, i500), [runtime value])
908// @as(@Vector(2, i500), undefined)
909// @as(@Vector(2, i500), undefined)
910// @as(@Vector(2, i500), undefined)
911// @as(@Vector(2, i500), undefined)
912// @as(@Vector(2, i500), undefined)
913// @as(i500, [runtime value])
914// @as(i500, [runtime value])
915// @as(@Vector(2, i500), [runtime value])
916// @as(@Vector(2, i500), [runtime value])
917// @as(@Vector(2, i500), [runtime value])
918// @as(@Vector(2, i500), [runtime value])
919// @as(@Vector(2, i500), [runtime value])
920// @as(@Vector(2, i500), [runtime value])
921// @as(@Vector(2, i500), [runtime value])
922// @as(@Vector(2, i500), [runtime value])
923// @as(@Vector(2, i500), [runtime value])
924// @as(@Vector(2, i500), [runtime value])
925// @as(@Vector(2, i500), [runtime value])
926// @as(@Vector(2, i500), [runtime value])
927// @as(@Vector(2, i500), [runtime value])
928// @as(@Vector(2, i500), [runtime value])
929// @as(@Vector(2, i500), undefined)
930// @as(i500, undefined)
931// @as(@Vector(2, i500), undefined)
932// @as(i500, undefined)
933// @as(i500, undefined)
934// @as(@Vector(2, i500), undefined)
935// @as(@Vector(2, i500), undefined)
936// @as(i500, undefined)
937// @as(@Vector(2, i500), undefined)
938// @as(u500, undefined)
939// @as(u500, undefined)
940// @as(@Vector(2, u500), .{ 6, undefined })
941// @as(@Vector(2, u500), .{ undefined, 6 })
942// @as(@Vector(2, u500), undefined)
943// @as(@Vector(2, u500), .{ 6, undefined })
944// @as(@Vector(2, u500), .{ 6, undefined })
945// @as(@Vector(2, u500), undefined)
946// @as(@Vector(2, u500), undefined)
947// @as(@Vector(2, u500), .{ undefined, 6 })
948// @as(@Vector(2, u500), undefined)
949// @as(@Vector(2, u500), .{ undefined, 6 })
950// @as(@Vector(2, u500), undefined)
951// @as(@Vector(2, u500), undefined)
952// @as(@Vector(2, u500), undefined)
953// @as(@Vector(2, u500), undefined)
954// @as(@Vector(2, u500), undefined)
955// @as(u500, undefined)
956// @as(u500, undefined)
957// @as(@Vector(2, u500), .{ 6, undefined })
958// @as(@Vector(2, u500), .{ undefined, 6 })
959// @as(@Vector(2, u500), undefined)
960// @as(@Vector(2, u500), .{ 6, undefined })
961// @as(@Vector(2, u500), .{ 6, undefined })
962// @as(@Vector(2, u500), undefined)
963// @as(@Vector(2, u500), undefined)
964// @as(@Vector(2, u500), .{ undefined, 6 })
965// @as(@Vector(2, u500), undefined)
966// @as(@Vector(2, u500), .{ undefined, 6 })
967// @as(@Vector(2, u500), undefined)
968// @as(@Vector(2, u500), undefined)
969// @as(@Vector(2, u500), undefined)
970// @as(@Vector(2, u500), undefined)
971// @as(@Vector(2, u500), undefined)
972// @as(u500, undefined)
973// @as(u500, undefined)
974// @as(@Vector(2, u500), .{ 0, undefined })
975// @as(@Vector(2, u500), .{ undefined, 0 })
976// @as(@Vector(2, u500), undefined)
977// @as(@Vector(2, u500), .{ 0, undefined })
978// @as(@Vector(2, u500), .{ 0, undefined })
979// @as(@Vector(2, u500), undefined)
980// @as(@Vector(2, u500), undefined)
981// @as(@Vector(2, u500), .{ undefined, 0 })
982// @as(@Vector(2, u500), undefined)
983// @as(@Vector(2, u500), .{ undefined, 0 })
984// @as(@Vector(2, u500), undefined)
985// @as(@Vector(2, u500), undefined)
986// @as(@Vector(2, u500), undefined)
987// @as(@Vector(2, u500), undefined)
988// @as(@Vector(2, u500), undefined)
989// @as(u500, undefined)
990// @as(u500, undefined)
991// @as(@Vector(2, u500), .{ 0, undefined })
992// @as(@Vector(2, u500), .{ undefined, 0 })
993// @as(@Vector(2, u500), undefined)
994// @as(@Vector(2, u500), .{ 0, undefined })
995// @as(@Vector(2, u500), .{ 0, undefined })
996// @as(@Vector(2, u500), undefined)
997// @as(@Vector(2, u500), undefined)
998// @as(@Vector(2, u500), .{ undefined, 0 })
999// @as(@Vector(2, u500), undefined)
1000// @as(@Vector(2, u500), .{ undefined, 0 })
1001// @as(@Vector(2, u500), undefined)
1002// @as(@Vector(2, u500), undefined)
1003// @as(@Vector(2, u500), undefined)
1004// @as(@Vector(2, u500), undefined)
1005// @as(@Vector(2, u500), undefined)
1006// @as(u500, undefined)
1007// @as(u500, undefined)
1008// @as(@Vector(2, u500), .{ 9, undefined })
1009// @as(@Vector(2, u500), .{ undefined, 9 })
1010// @as(@Vector(2, u500), undefined)
1011// @as(@Vector(2, u500), .{ 9, undefined })
1012// @as(@Vector(2, u500), .{ 9, undefined })
1013// @as(@Vector(2, u500), undefined)
1014// @as(@Vector(2, u500), undefined)
1015// @as(@Vector(2, u500), .{ undefined, 9 })
1016// @as(@Vector(2, u500), undefined)
1017// @as(@Vector(2, u500), .{ undefined, 9 })
1018// @as(@Vector(2, u500), undefined)
1019// @as(@Vector(2, u500), undefined)
1020// @as(@Vector(2, u500), undefined)
1021// @as(@Vector(2, u500), undefined)
1022// @as(@Vector(2, u500), undefined)
1023// @as(u500, undefined)
1024// @as(u500, undefined)
1025// @as(@Vector(2, u500), .{ 9, undefined })
1026// @as(@Vector(2, u500), .{ undefined, 9 })
1027// @as(@Vector(2, u500), undefined)
1028// @as(@Vector(2, u500), .{ 9, undefined })
1029// @as(@Vector(2, u500), .{ 9, undefined })
1030// @as(@Vector(2, u500), undefined)
1031// @as(@Vector(2, u500), undefined)
1032// @as(@Vector(2, u500), .{ undefined, 9 })
1033// @as(@Vector(2, u500), undefined)
1034// @as(@Vector(2, u500), .{ undefined, 9 })
1035// @as(@Vector(2, u500), undefined)
1036// @as(@Vector(2, u500), undefined)
1037// @as(@Vector(2, u500), undefined)
1038// @as(@Vector(2, u500), undefined)
1039// @as(@Vector(2, u500), undefined)
1040// @as(u500, undefined)
1041// @as(u500, undefined)
1042// @as(@Vector(2, u500), .{ 24, undefined })
1043// @as(@Vector(2, u500), .{ undefined, 24 })
1044// @as(@Vector(2, u500), undefined)
1045// @as(@Vector(2, u500), .{ 24, undefined })
1046// @as(@Vector(2, u500), .{ 24, undefined })
1047// @as(@Vector(2, u500), undefined)
1048// @as(@Vector(2, u500), undefined)
1049// @as(@Vector(2, u500), .{ undefined, 24 })
1050// @as(@Vector(2, u500), undefined)
1051// @as(@Vector(2, u500), .{ undefined, 24 })
1052// @as(@Vector(2, u500), undefined)
1053// @as(@Vector(2, u500), undefined)
1054// @as(@Vector(2, u500), undefined)
1055// @as(@Vector(2, u500), undefined)
1056// @as(@Vector(2, u500), undefined)
1057// @as(u500, undefined)
1058// @as(u500, undefined)
1059// @as(@Vector(2, u500), .{ 0, undefined })
1060// @as(@Vector(2, u500), .{ undefined, 0 })
1061// @as(@Vector(2, u500), undefined)
1062// @as(@Vector(2, u500), .{ 0, undefined })
1063// @as(@Vector(2, u500), .{ 0, undefined })
1064// @as(@Vector(2, u500), undefined)
1065// @as(@Vector(2, u500), undefined)
1066// @as(@Vector(2, u500), .{ undefined, 0 })
1067// @as(@Vector(2, u500), undefined)
1068// @as(@Vector(2, u500), .{ undefined, 0 })
1069// @as(@Vector(2, u500), undefined)
1070// @as(@Vector(2, u500), undefined)
1071// @as(@Vector(2, u500), undefined)
1072// @as(@Vector(2, u500), undefined)
1073// @as(@Vector(2, u500), undefined)
1074// @as(u500, undefined)
1075// @as(@Vector(2, u500), undefined)
1076// @as(u500, undefined)
1077// @as(u500, undefined)
1078// @as(@Vector(2, u500), undefined)
1079// @as(@Vector(2, u500), undefined)
1080// @as(u1, undefined)
1081// @as(@Vector(2, u1), .{ 1, undefined })
1082// @as(@Vector(2, u1), .{ undefined, 1 })
1083// @as(@Vector(2, u1), undefined)
1084// @as(u500, undefined)
1085// @as(@Vector(2, u500), undefined)
1086// @as(u500, undefined)
1087// @as(u500, undefined)
1088// @as(@Vector(2, u500), [runtime value])
1089// @as(@Vector(2, u500), [runtime value])
1090// @as(@Vector(2, u500), undefined)
1091// @as(@Vector(2, u500), [runtime value])
1092// @as(@Vector(2, u500), [runtime value])
1093// @as(@Vector(2, u500), [runtime value])
1094// @as(@Vector(2, u500), undefined)
1095// @as(@Vector(2, u500), [runtime value])
1096// @as(@Vector(2, u500), [runtime value])
1097// @as(@Vector(2, u500), [runtime value])
1098// @as(@Vector(2, u500), undefined)
1099// @as(@Vector(2, u500), undefined)
1100// @as(@Vector(2, u500), undefined)
1101// @as(@Vector(2, u500), undefined)
1102// @as(@Vector(2, u500), undefined)
1103// @as(u500, undefined)
1104// @as(u500, undefined)
1105// @as(@Vector(2, u500), [runtime value])
1106// @as(@Vector(2, u500), [runtime value])
1107// @as(@Vector(2, u500), undefined)
1108// @as(@Vector(2, u500), [runtime value])
1109// @as(@Vector(2, u500), [runtime value])
1110// @as(@Vector(2, u500), [runtime value])
1111// @as(@Vector(2, u500), undefined)
1112// @as(@Vector(2, u500), [runtime value])
1113// @as(@Vector(2, u500), [runtime value])
1114// @as(@Vector(2, u500), [runtime value])
1115// @as(@Vector(2, u500), undefined)
1116// @as(@Vector(2, u500), undefined)
1117// @as(@Vector(2, u500), undefined)
1118// @as(@Vector(2, u500), undefined)
1119// @as(@Vector(2, u500), undefined)
1120// @as(u500, undefined)
1121// @as(u500, undefined)
1122// @as(@Vector(2, u500), [runtime value])
1123// @as(@Vector(2, u500), [runtime value])
1124// @as(@Vector(2, u500), undefined)
1125// @as(@Vector(2, u500), [runtime value])
1126// @as(@Vector(2, u500), [runtime value])
1127// @as(@Vector(2, u500), [runtime value])
1128// @as(@Vector(2, u500), undefined)
1129// @as(@Vector(2, u500), [runtime value])
1130// @as(@Vector(2, u500), [runtime value])
1131// @as(@Vector(2, u500), [runtime value])
1132// @as(@Vector(2, u500), undefined)
1133// @as(@Vector(2, u500), undefined)
1134// @as(@Vector(2, u500), undefined)
1135// @as(@Vector(2, u500), undefined)
1136// @as(@Vector(2, u500), undefined)
1137// @as(u500, undefined)
1138// @as(u500, undefined)
1139// @as(@Vector(2, u500), [runtime value])
1140// @as(@Vector(2, u500), [runtime value])
1141// @as(@Vector(2, u500), undefined)
1142// @as(@Vector(2, u500), [runtime value])
1143// @as(@Vector(2, u500), [runtime value])
1144// @as(@Vector(2, u500), [runtime value])
1145// @as(@Vector(2, u500), undefined)
1146// @as(@Vector(2, u500), [runtime value])
1147// @as(@Vector(2, u500), [runtime value])
1148// @as(@Vector(2, u500), [runtime value])
1149// @as(@Vector(2, u500), undefined)
1150// @as(@Vector(2, u500), undefined)
1151// @as(@Vector(2, u500), undefined)
1152// @as(@Vector(2, u500), undefined)
1153// @as(@Vector(2, u500), undefined)
1154// @as(u500, undefined)
1155// @as(u500, undefined)
1156// @as(@Vector(2, u500), [runtime value])
1157// @as(@Vector(2, u500), [runtime value])
1158// @as(@Vector(2, u500), undefined)
1159// @as(@Vector(2, u500), [runtime value])
1160// @as(@Vector(2, u500), [runtime value])
1161// @as(@Vector(2, u500), [runtime value])
1162// @as(@Vector(2, u500), undefined)
1163// @as(@Vector(2, u500), [runtime value])
1164// @as(@Vector(2, u500), [runtime value])
1165// @as(@Vector(2, u500), [runtime value])
1166// @as(@Vector(2, u500), undefined)
1167// @as(@Vector(2, u500), undefined)
1168// @as(@Vector(2, u500), undefined)
1169// @as(@Vector(2, u500), undefined)
1170// @as(@Vector(2, u500), undefined)
1171// @as(u500, undefined)
1172// @as(u500, undefined)
1173// @as(@Vector(2, u500), [runtime value])
1174// @as(@Vector(2, u500), [runtime value])
1175// @as(@Vector(2, u500), undefined)
1176// @as(@Vector(2, u500), [runtime value])
1177// @as(@Vector(2, u500), [runtime value])
1178// @as(@Vector(2, u500), [runtime value])
1179// @as(@Vector(2, u500), undefined)
1180// @as(@Vector(2, u500), [runtime value])
1181// @as(@Vector(2, u500), [runtime value])
1182// @as(@Vector(2, u500), [runtime value])
1183// @as(@Vector(2, u500), undefined)
1184// @as(@Vector(2, u500), undefined)
1185// @as(@Vector(2, u500), undefined)
1186// @as(@Vector(2, u500), undefined)
1187// @as(@Vector(2, u500), undefined)
1188// @as(u500, undefined)
1189// @as(u500, undefined)
1190// @as(@Vector(2, u500), [runtime value])
1191// @as(@Vector(2, u500), [runtime value])
1192// @as(@Vector(2, u500), undefined)
1193// @as(@Vector(2, u500), [runtime value])
1194// @as(@Vector(2, u500), [runtime value])
1195// @as(@Vector(2, u500), [runtime value])
1196// @as(@Vector(2, u500), undefined)
1197// @as(@Vector(2, u500), [runtime value])
1198// @as(@Vector(2, u500), [runtime value])
1199// @as(@Vector(2, u500), [runtime value])
1200// @as(@Vector(2, u500), undefined)
1201// @as(@Vector(2, u500), undefined)
1202// @as(@Vector(2, u500), undefined)
1203// @as(@Vector(2, u500), undefined)
1204// @as(@Vector(2, u500), undefined)
1205// @as(u500, [runtime value])
1206// @as(u500, [runtime value])
1207// @as(@Vector(2, u500), [runtime value])
1208// @as(@Vector(2, u500), [runtime value])
1209// @as(@Vector(2, u500), [runtime value])
1210// @as(@Vector(2, u500), [runtime value])
1211// @as(@Vector(2, u500), [runtime value])
1212// @as(@Vector(2, u500), [runtime value])
1213// @as(@Vector(2, u500), [runtime value])
1214// @as(@Vector(2, u500), [runtime value])
1215// @as(@Vector(2, u500), [runtime value])
1216// @as(@Vector(2, u500), [runtime value])
1217// @as(@Vector(2, u500), [runtime value])
1218// @as(@Vector(2, u500), [runtime value])
1219// @as(@Vector(2, u500), [runtime value])
1220// @as(@Vector(2, u500), [runtime value])
1221// @as(@Vector(2, u500), undefined)
1222// @as(u500, undefined)
1223// @as(@Vector(2, u500), undefined)
1224// @as(u500, undefined)
1225// @as(u500, undefined)
1226// @as(@Vector(2, u500), undefined)
1227// @as(@Vector(2, u500), undefined)
1228// @as(u1, undefined)
1229// @as(@Vector(2, u1), [runtime value])
1230// @as(@Vector(2, u1), [runtime value])
1231// @as(@Vector(2, u1), undefined)
1232// @as(u500, undefined)
1233// @as(@Vector(2, u500), undefined)
1234// @as(i32, undefined)
1235// @as(i32, undefined)
1236// @as(@Vector(2, i32), .{ 6, undefined })
1237// @as(@Vector(2, i32), .{ undefined, 6 })
1238// @as(@Vector(2, i32), undefined)
1239// @as(@Vector(2, i32), .{ 6, undefined })
1240// @as(@Vector(2, i32), .{ 6, undefined })
1241// @as(@Vector(2, i32), undefined)
1242// @as(@Vector(2, i32), undefined)
1243// @as(@Vector(2, i32), .{ undefined, 6 })
1244// @as(@Vector(2, i32), undefined)
1245// @as(@Vector(2, i32), .{ undefined, 6 })
1246// @as(@Vector(2, i32), undefined)
1247// @as(@Vector(2, i32), undefined)
1248// @as(@Vector(2, i32), undefined)
1249// @as(@Vector(2, i32), undefined)
1250// @as(@Vector(2, i32), undefined)
1251// @as(i32, undefined)
1252// @as(i32, undefined)
1253// @as(@Vector(2, i32), .{ 6, undefined })
1254// @as(@Vector(2, i32), .{ undefined, 6 })
1255// @as(@Vector(2, i32), undefined)
1256// @as(@Vector(2, i32), .{ 6, undefined })
1257// @as(@Vector(2, i32), .{ 6, undefined })
1258// @as(@Vector(2, i32), undefined)
1259// @as(@Vector(2, i32), undefined)
1260// @as(@Vector(2, i32), .{ undefined, 6 })
1261// @as(@Vector(2, i32), undefined)
1262// @as(@Vector(2, i32), .{ undefined, 6 })
1263// @as(@Vector(2, i32), undefined)
1264// @as(@Vector(2, i32), undefined)
1265// @as(@Vector(2, i32), undefined)
1266// @as(@Vector(2, i32), undefined)
1267// @as(@Vector(2, i32), undefined)
1268// @as(i32, undefined)
1269// @as(i32, undefined)
1270// @as(@Vector(2, i32), .{ 0, undefined })
1271// @as(@Vector(2, i32), .{ undefined, 0 })
1272// @as(@Vector(2, i32), undefined)
1273// @as(@Vector(2, i32), .{ 0, undefined })
1274// @as(@Vector(2, i32), .{ 0, undefined })
1275// @as(@Vector(2, i32), undefined)
1276// @as(@Vector(2, i32), undefined)
1277// @as(@Vector(2, i32), .{ undefined, 0 })
1278// @as(@Vector(2, i32), undefined)
1279// @as(@Vector(2, i32), .{ undefined, 0 })
1280// @as(@Vector(2, i32), undefined)
1281// @as(@Vector(2, i32), undefined)
1282// @as(@Vector(2, i32), undefined)
1283// @as(@Vector(2, i32), undefined)
1284// @as(@Vector(2, i32), undefined)
1285// @as(i32, undefined)
1286// @as(i32, undefined)
1287// @as(@Vector(2, i32), .{ 0, undefined })
1288// @as(@Vector(2, i32), .{ undefined, 0 })
1289// @as(@Vector(2, i32), undefined)
1290// @as(@Vector(2, i32), .{ 0, undefined })
1291// @as(@Vector(2, i32), .{ 0, undefined })
1292// @as(@Vector(2, i32), undefined)
1293// @as(@Vector(2, i32), undefined)
1294// @as(@Vector(2, i32), .{ undefined, 0 })
1295// @as(@Vector(2, i32), undefined)
1296// @as(@Vector(2, i32), .{ undefined, 0 })
1297// @as(@Vector(2, i32), undefined)
1298// @as(@Vector(2, i32), undefined)
1299// @as(@Vector(2, i32), undefined)
1300// @as(@Vector(2, i32), undefined)
1301// @as(@Vector(2, i32), undefined)
1302// @as(i32, undefined)
1303// @as(i32, undefined)
1304// @as(@Vector(2, i32), .{ 9, undefined })
1305// @as(@Vector(2, i32), .{ undefined, 9 })
1306// @as(@Vector(2, i32), undefined)
1307// @as(@Vector(2, i32), .{ 9, undefined })
1308// @as(@Vector(2, i32), .{ 9, undefined })
1309// @as(@Vector(2, i32), undefined)
1310// @as(@Vector(2, i32), undefined)
1311// @as(@Vector(2, i32), .{ undefined, 9 })
1312// @as(@Vector(2, i32), undefined)
1313// @as(@Vector(2, i32), .{ undefined, 9 })
1314// @as(@Vector(2, i32), undefined)
1315// @as(@Vector(2, i32), undefined)
1316// @as(@Vector(2, i32), undefined)
1317// @as(@Vector(2, i32), undefined)
1318// @as(@Vector(2, i32), undefined)
1319// @as(i32, undefined)
1320// @as(i32, undefined)
1321// @as(@Vector(2, i32), .{ 9, undefined })
1322// @as(@Vector(2, i32), .{ undefined, 9 })
1323// @as(@Vector(2, i32), undefined)
1324// @as(@Vector(2, i32), .{ 9, undefined })
1325// @as(@Vector(2, i32), .{ 9, undefined })
1326// @as(@Vector(2, i32), undefined)
1327// @as(@Vector(2, i32), undefined)
1328// @as(@Vector(2, i32), .{ undefined, 9 })
1329// @as(@Vector(2, i32), undefined)
1330// @as(@Vector(2, i32), .{ undefined, 9 })
1331// @as(@Vector(2, i32), undefined)
1332// @as(@Vector(2, i32), undefined)
1333// @as(@Vector(2, i32), undefined)
1334// @as(@Vector(2, i32), undefined)
1335// @as(@Vector(2, i32), undefined)
1336// @as(i32, undefined)
1337// @as(i32, undefined)
1338// @as(@Vector(2, i32), .{ 0, undefined })
1339// @as(@Vector(2, i32), .{ undefined, 0 })
1340// @as(@Vector(2, i32), undefined)
1341// @as(@Vector(2, i32), .{ 0, undefined })
1342// @as(@Vector(2, i32), .{ 0, undefined })
1343// @as(@Vector(2, i32), undefined)
1344// @as(@Vector(2, i32), undefined)
1345// @as(@Vector(2, i32), .{ undefined, 0 })
1346// @as(@Vector(2, i32), undefined)
1347// @as(@Vector(2, i32), .{ undefined, 0 })
1348// @as(@Vector(2, i32), undefined)
1349// @as(@Vector(2, i32), undefined)
1350// @as(@Vector(2, i32), undefined)
1351// @as(@Vector(2, i32), undefined)
1352// @as(@Vector(2, i32), undefined)
1353// @as(i32, undefined)
1354// @as(@Vector(2, i32), undefined)
1355// @as(i32, undefined)
1356// @as(i32, undefined)
1357// @as(@Vector(2, i32), undefined)
1358// @as(@Vector(2, i32), undefined)
1359// @as(i32, undefined)
1360// @as(@Vector(2, i32), undefined)
1361// @as(i32, undefined)
1362// @as(i32, undefined)
1363// @as(@Vector(2, i32), [runtime value])
1364// @as(@Vector(2, i32), [runtime value])
1365// @as(@Vector(2, i32), undefined)
1366// @as(@Vector(2, i32), [runtime value])
1367// @as(@Vector(2, i32), [runtime value])
1368// @as(@Vector(2, i32), [runtime value])
1369// @as(@Vector(2, i32), undefined)
1370// @as(@Vector(2, i32), [runtime value])
1371// @as(@Vector(2, i32), [runtime value])
1372// @as(@Vector(2, i32), [runtime value])
1373// @as(@Vector(2, i32), undefined)
1374// @as(@Vector(2, i32), undefined)
1375// @as(@Vector(2, i32), undefined)
1376// @as(@Vector(2, i32), undefined)
1377// @as(@Vector(2, i32), undefined)
1378// @as(i32, undefined)
1379// @as(i32, undefined)
1380// @as(@Vector(2, i32), [runtime value])
1381// @as(@Vector(2, i32), [runtime value])
1382// @as(@Vector(2, i32), undefined)
1383// @as(@Vector(2, i32), [runtime value])
1384// @as(@Vector(2, i32), [runtime value])
1385// @as(@Vector(2, i32), [runtime value])
1386// @as(@Vector(2, i32), undefined)
1387// @as(@Vector(2, i32), [runtime value])
1388// @as(@Vector(2, i32), [runtime value])
1389// @as(@Vector(2, i32), [runtime value])
1390// @as(@Vector(2, i32), undefined)
1391// @as(@Vector(2, i32), undefined)
1392// @as(@Vector(2, i32), undefined)
1393// @as(@Vector(2, i32), undefined)
1394// @as(@Vector(2, i32), undefined)
1395// @as(i32, undefined)
1396// @as(i32, undefined)
1397// @as(@Vector(2, i32), [runtime value])
1398// @as(@Vector(2, i32), [runtime value])
1399// @as(@Vector(2, i32), undefined)
1400// @as(@Vector(2, i32), [runtime value])
1401// @as(@Vector(2, i32), [runtime value])
1402// @as(@Vector(2, i32), [runtime value])
1403// @as(@Vector(2, i32), undefined)
1404// @as(@Vector(2, i32), [runtime value])
1405// @as(@Vector(2, i32), [runtime value])
1406// @as(@Vector(2, i32), [runtime value])
1407// @as(@Vector(2, i32), undefined)
1408// @as(@Vector(2, i32), undefined)
1409// @as(@Vector(2, i32), undefined)
1410// @as(@Vector(2, i32), undefined)
1411// @as(@Vector(2, i32), undefined)
1412// @as(i32, undefined)
1413// @as(i32, undefined)
1414// @as(@Vector(2, i32), [runtime value])
1415// @as(@Vector(2, i32), [runtime value])
1416// @as(@Vector(2, i32), undefined)
1417// @as(@Vector(2, i32), [runtime value])
1418// @as(@Vector(2, i32), [runtime value])
1419// @as(@Vector(2, i32), [runtime value])
1420// @as(@Vector(2, i32), undefined)
1421// @as(@Vector(2, i32), [runtime value])
1422// @as(@Vector(2, i32), [runtime value])
1423// @as(@Vector(2, i32), [runtime value])
1424// @as(@Vector(2, i32), undefined)
1425// @as(@Vector(2, i32), undefined)
1426// @as(@Vector(2, i32), undefined)
1427// @as(@Vector(2, i32), undefined)
1428// @as(@Vector(2, i32), undefined)
1429// @as(i32, undefined)
1430// @as(i32, undefined)
1431// @as(@Vector(2, i32), [runtime value])
1432// @as(@Vector(2, i32), [runtime value])
1433// @as(@Vector(2, i32), undefined)
1434// @as(@Vector(2, i32), [runtime value])
1435// @as(@Vector(2, i32), [runtime value])
1436// @as(@Vector(2, i32), [runtime value])
1437// @as(@Vector(2, i32), undefined)
1438// @as(@Vector(2, i32), [runtime value])
1439// @as(@Vector(2, i32), [runtime value])
1440// @as(@Vector(2, i32), [runtime value])
1441// @as(@Vector(2, i32), undefined)
1442// @as(@Vector(2, i32), undefined)
1443// @as(@Vector(2, i32), undefined)
1444// @as(@Vector(2, i32), undefined)
1445// @as(@Vector(2, i32), undefined)
1446// @as(i32, undefined)
1447// @as(i32, undefined)
1448// @as(@Vector(2, i32), [runtime value])
1449// @as(@Vector(2, i32), [runtime value])
1450// @as(@Vector(2, i32), undefined)
1451// @as(@Vector(2, i32), [runtime value])
1452// @as(@Vector(2, i32), [runtime value])
1453// @as(@Vector(2, i32), [runtime value])
1454// @as(@Vector(2, i32), undefined)
1455// @as(@Vector(2, i32), [runtime value])
1456// @as(@Vector(2, i32), [runtime value])
1457// @as(@Vector(2, i32), [runtime value])
1458// @as(@Vector(2, i32), undefined)
1459// @as(@Vector(2, i32), undefined)
1460// @as(@Vector(2, i32), undefined)
1461// @as(@Vector(2, i32), undefined)
1462// @as(@Vector(2, i32), undefined)
1463// @as(i32, [runtime value])
1464// @as(i32, [runtime value])
1465// @as(@Vector(2, i32), [runtime value])
1466// @as(@Vector(2, i32), [runtime value])
1467// @as(@Vector(2, i32), [runtime value])
1468// @as(@Vector(2, i32), [runtime value])
1469// @as(@Vector(2, i32), [runtime value])
1470// @as(@Vector(2, i32), [runtime value])
1471// @as(@Vector(2, i32), [runtime value])
1472// @as(@Vector(2, i32), [runtime value])
1473// @as(@Vector(2, i32), [runtime value])
1474// @as(@Vector(2, i32), [runtime value])
1475// @as(@Vector(2, i32), [runtime value])
1476// @as(@Vector(2, i32), [runtime value])
1477// @as(@Vector(2, i32), [runtime value])
1478// @as(@Vector(2, i32), [runtime value])
1479// @as(@Vector(2, i32), undefined)
1480// @as(i32, undefined)
1481// @as(@Vector(2, i32), undefined)
1482// @as(i32, undefined)
1483// @as(i32, undefined)
1484// @as(@Vector(2, i32), undefined)
1485// @as(@Vector(2, i32), undefined)
1486// @as(i32, undefined)
1487// @as(@Vector(2, i32), undefined)
1488// @as(u32, undefined)
1489// @as(u32, undefined)
1490// @as(@Vector(2, u32), .{ 6, undefined })
1491// @as(@Vector(2, u32), .{ undefined, 6 })
1492// @as(@Vector(2, u32), undefined)
1493// @as(@Vector(2, u32), .{ 6, undefined })
1494// @as(@Vector(2, u32), .{ 6, undefined })
1495// @as(@Vector(2, u32), undefined)
1496// @as(@Vector(2, u32), undefined)
1497// @as(@Vector(2, u32), .{ undefined, 6 })
1498// @as(@Vector(2, u32), undefined)
1499// @as(@Vector(2, u32), .{ undefined, 6 })
1500// @as(@Vector(2, u32), undefined)
1501// @as(@Vector(2, u32), undefined)
1502// @as(@Vector(2, u32), undefined)
1503// @as(@Vector(2, u32), undefined)
1504// @as(@Vector(2, u32), undefined)
1505// @as(u32, undefined)
1506// @as(u32, undefined)
1507// @as(@Vector(2, u32), .{ 6, undefined })
1508// @as(@Vector(2, u32), .{ undefined, 6 })
1509// @as(@Vector(2, u32), undefined)
1510// @as(@Vector(2, u32), .{ 6, undefined })
1511// @as(@Vector(2, u32), .{ 6, undefined })
1512// @as(@Vector(2, u32), undefined)
1513// @as(@Vector(2, u32), undefined)
1514// @as(@Vector(2, u32), .{ undefined, 6 })
1515// @as(@Vector(2, u32), undefined)
1516// @as(@Vector(2, u32), .{ undefined, 6 })
1517// @as(@Vector(2, u32), undefined)
1518// @as(@Vector(2, u32), undefined)
1519// @as(@Vector(2, u32), undefined)
1520// @as(@Vector(2, u32), undefined)
1521// @as(@Vector(2, u32), undefined)
1522// @as(u32, undefined)
1523// @as(u32, undefined)
1524// @as(@Vector(2, u32), .{ 0, undefined })
1525// @as(@Vector(2, u32), .{ undefined, 0 })
1526// @as(@Vector(2, u32), undefined)
1527// @as(@Vector(2, u32), .{ 0, undefined })
1528// @as(@Vector(2, u32), .{ 0, undefined })
1529// @as(@Vector(2, u32), undefined)
1530// @as(@Vector(2, u32), undefined)
1531// @as(@Vector(2, u32), .{ undefined, 0 })
1532// @as(@Vector(2, u32), undefined)
1533// @as(@Vector(2, u32), .{ undefined, 0 })
1534// @as(@Vector(2, u32), undefined)
1535// @as(@Vector(2, u32), undefined)
1536// @as(@Vector(2, u32), undefined)
1537// @as(@Vector(2, u32), undefined)
1538// @as(@Vector(2, u32), undefined)
1539// @as(u32, undefined)
1540// @as(u32, undefined)
1541// @as(@Vector(2, u32), .{ 0, undefined })
1542// @as(@Vector(2, u32), .{ undefined, 0 })
1543// @as(@Vector(2, u32), undefined)
1544// @as(@Vector(2, u32), .{ 0, undefined })
1545// @as(@Vector(2, u32), .{ 0, undefined })
1546// @as(@Vector(2, u32), undefined)
1547// @as(@Vector(2, u32), undefined)
1548// @as(@Vector(2, u32), .{ undefined, 0 })
1549// @as(@Vector(2, u32), undefined)
1550// @as(@Vector(2, u32), .{ undefined, 0 })
1551// @as(@Vector(2, u32), undefined)
1552// @as(@Vector(2, u32), undefined)
1553// @as(@Vector(2, u32), undefined)
1554// @as(@Vector(2, u32), undefined)
1555// @as(@Vector(2, u32), undefined)
1556// @as(u32, undefined)
1557// @as(u32, undefined)
1558// @as(@Vector(2, u32), .{ 9, undefined })
1559// @as(@Vector(2, u32), .{ undefined, 9 })
1560// @as(@Vector(2, u32), undefined)
1561// @as(@Vector(2, u32), .{ 9, undefined })
1562// @as(@Vector(2, u32), .{ 9, undefined })
1563// @as(@Vector(2, u32), undefined)
1564// @as(@Vector(2, u32), undefined)
1565// @as(@Vector(2, u32), .{ undefined, 9 })
1566// @as(@Vector(2, u32), undefined)
1567// @as(@Vector(2, u32), .{ undefined, 9 })
1568// @as(@Vector(2, u32), undefined)
1569// @as(@Vector(2, u32), undefined)
1570// @as(@Vector(2, u32), undefined)
1571// @as(@Vector(2, u32), undefined)
1572// @as(@Vector(2, u32), undefined)
1573// @as(u32, undefined)
1574// @as(u32, undefined)
1575// @as(@Vector(2, u32), .{ 9, undefined })
1576// @as(@Vector(2, u32), .{ undefined, 9 })
1577// @as(@Vector(2, u32), undefined)
1578// @as(@Vector(2, u32), .{ 9, undefined })
1579// @as(@Vector(2, u32), .{ 9, undefined })
1580// @as(@Vector(2, u32), undefined)
1581// @as(@Vector(2, u32), undefined)
1582// @as(@Vector(2, u32), .{ undefined, 9 })
1583// @as(@Vector(2, u32), undefined)
1584// @as(@Vector(2, u32), .{ undefined, 9 })
1585// @as(@Vector(2, u32), undefined)
1586// @as(@Vector(2, u32), undefined)
1587// @as(@Vector(2, u32), undefined)
1588// @as(@Vector(2, u32), undefined)
1589// @as(@Vector(2, u32), undefined)
1590// @as(u32, undefined)
1591// @as(u32, undefined)
1592// @as(@Vector(2, u32), .{ 24, undefined })
1593// @as(@Vector(2, u32), .{ undefined, 24 })
1594// @as(@Vector(2, u32), undefined)
1595// @as(@Vector(2, u32), .{ 24, undefined })
1596// @as(@Vector(2, u32), .{ 24, undefined })
1597// @as(@Vector(2, u32), undefined)
1598// @as(@Vector(2, u32), undefined)
1599// @as(@Vector(2, u32), .{ undefined, 24 })
1600// @as(@Vector(2, u32), undefined)
1601// @as(@Vector(2, u32), .{ undefined, 24 })
1602// @as(@Vector(2, u32), undefined)
1603// @as(@Vector(2, u32), undefined)
1604// @as(@Vector(2, u32), undefined)
1605// @as(@Vector(2, u32), undefined)
1606// @as(@Vector(2, u32), undefined)
1607// @as(u32, undefined)
1608// @as(u32, undefined)
1609// @as(@Vector(2, u32), .{ 0, undefined })
1610// @as(@Vector(2, u32), .{ undefined, 0 })
1611// @as(@Vector(2, u32), undefined)
1612// @as(@Vector(2, u32), .{ 0, undefined })
1613// @as(@Vector(2, u32), .{ 0, undefined })
1614// @as(@Vector(2, u32), undefined)
1615// @as(@Vector(2, u32), undefined)
1616// @as(@Vector(2, u32), .{ undefined, 0 })
1617// @as(@Vector(2, u32), undefined)
1618// @as(@Vector(2, u32), .{ undefined, 0 })
1619// @as(@Vector(2, u32), undefined)
1620// @as(@Vector(2, u32), undefined)
1621// @as(@Vector(2, u32), undefined)
1622// @as(@Vector(2, u32), undefined)
1623// @as(@Vector(2, u32), undefined)
1624// @as(u32, undefined)
1625// @as(@Vector(2, u32), undefined)
1626// @as(u32, undefined)
1627// @as(u32, undefined)
1628// @as(@Vector(2, u32), undefined)
1629// @as(@Vector(2, u32), undefined)
1630// @as(u1, undefined)
1631// @as(@Vector(2, u1), .{ 1, undefined })
1632// @as(@Vector(2, u1), .{ undefined, 1 })
1633// @as(@Vector(2, u1), undefined)
1634// @as(u32, undefined)
1635// @as(@Vector(2, u32), undefined)
1636// @as(u32, undefined)
1637// @as(u32, undefined)
1638// @as(@Vector(2, u32), [runtime value])
1639// @as(@Vector(2, u32), [runtime value])
1640// @as(@Vector(2, u32), undefined)
1641// @as(@Vector(2, u32), [runtime value])
1642// @as(@Vector(2, u32), [runtime value])
1643// @as(@Vector(2, u32), [runtime value])
1644// @as(@Vector(2, u32), undefined)
1645// @as(@Vector(2, u32), [runtime value])
1646// @as(@Vector(2, u32), [runtime value])
1647// @as(@Vector(2, u32), [runtime value])
1648// @as(@Vector(2, u32), undefined)
1649// @as(@Vector(2, u32), undefined)
1650// @as(@Vector(2, u32), undefined)
1651// @as(@Vector(2, u32), undefined)
1652// @as(@Vector(2, u32), undefined)
1653// @as(u32, undefined)
1654// @as(u32, undefined)
1655// @as(@Vector(2, u32), [runtime value])
1656// @as(@Vector(2, u32), [runtime value])
1657// @as(@Vector(2, u32), undefined)
1658// @as(@Vector(2, u32), [runtime value])
1659// @as(@Vector(2, u32), [runtime value])
1660// @as(@Vector(2, u32), [runtime value])
1661// @as(@Vector(2, u32), undefined)
1662// @as(@Vector(2, u32), [runtime value])
1663// @as(@Vector(2, u32), [runtime value])
1664// @as(@Vector(2, u32), [runtime value])
1665// @as(@Vector(2, u32), undefined)
1666// @as(@Vector(2, u32), undefined)
1667// @as(@Vector(2, u32), undefined)
1668// @as(@Vector(2, u32), undefined)
1669// @as(@Vector(2, u32), undefined)
1670// @as(u32, undefined)
1671// @as(u32, undefined)
1672// @as(@Vector(2, u32), [runtime value])
1673// @as(@Vector(2, u32), [runtime value])
1674// @as(@Vector(2, u32), undefined)
1675// @as(@Vector(2, u32), [runtime value])
1676// @as(@Vector(2, u32), [runtime value])
1677// @as(@Vector(2, u32), [runtime value])
1678// @as(@Vector(2, u32), undefined)
1679// @as(@Vector(2, u32), [runtime value])
1680// @as(@Vector(2, u32), [runtime value])
1681// @as(@Vector(2, u32), [runtime value])
1682// @as(@Vector(2, u32), undefined)
1683// @as(@Vector(2, u32), undefined)
1684// @as(@Vector(2, u32), undefined)
1685// @as(@Vector(2, u32), undefined)
1686// @as(@Vector(2, u32), undefined)
1687// @as(u32, undefined)
1688// @as(u32, undefined)
1689// @as(@Vector(2, u32), [runtime value])
1690// @as(@Vector(2, u32), [runtime value])
1691// @as(@Vector(2, u32), undefined)
1692// @as(@Vector(2, u32), [runtime value])
1693// @as(@Vector(2, u32), [runtime value])
1694// @as(@Vector(2, u32), [runtime value])
1695// @as(@Vector(2, u32), undefined)
1696// @as(@Vector(2, u32), [runtime value])
1697// @as(@Vector(2, u32), [runtime value])
1698// @as(@Vector(2, u32), [runtime value])
1699// @as(@Vector(2, u32), undefined)
1700// @as(@Vector(2, u32), undefined)
1701// @as(@Vector(2, u32), undefined)
1702// @as(@Vector(2, u32), undefined)
1703// @as(@Vector(2, u32), undefined)
1704// @as(u32, undefined)
1705// @as(u32, undefined)
1706// @as(@Vector(2, u32), [runtime value])
1707// @as(@Vector(2, u32), [runtime value])
1708// @as(@Vector(2, u32), undefined)
1709// @as(@Vector(2, u32), [runtime value])
1710// @as(@Vector(2, u32), [runtime value])
1711// @as(@Vector(2, u32), [runtime value])
1712// @as(@Vector(2, u32), undefined)
1713// @as(@Vector(2, u32), [runtime value])
1714// @as(@Vector(2, u32), [runtime value])
1715// @as(@Vector(2, u32), [runtime value])
1716// @as(@Vector(2, u32), undefined)
1717// @as(@Vector(2, u32), undefined)
1718// @as(@Vector(2, u32), undefined)
1719// @as(@Vector(2, u32), undefined)
1720// @as(@Vector(2, u32), undefined)
1721// @as(u32, undefined)
1722// @as(u32, undefined)
1723// @as(@Vector(2, u32), [runtime value])
1724// @as(@Vector(2, u32), [runtime value])
1725// @as(@Vector(2, u32), undefined)
1726// @as(@Vector(2, u32), [runtime value])
1727// @as(@Vector(2, u32), [runtime value])
1728// @as(@Vector(2, u32), [runtime value])
1729// @as(@Vector(2, u32), undefined)
1730// @as(@Vector(2, u32), [runtime value])
1731// @as(@Vector(2, u32), [runtime value])
1732// @as(@Vector(2, u32), [runtime value])
1733// @as(@Vector(2, u32), undefined)
1734// @as(@Vector(2, u32), undefined)
1735// @as(@Vector(2, u32), undefined)
1736// @as(@Vector(2, u32), undefined)
1737// @as(@Vector(2, u32), undefined)
1738// @as(u32, undefined)
1739// @as(u32, undefined)
1740// @as(@Vector(2, u32), [runtime value])
1741// @as(@Vector(2, u32), [runtime value])
1742// @as(@Vector(2, u32), undefined)
1743// @as(@Vector(2, u32), [runtime value])
1744// @as(@Vector(2, u32), [runtime value])
1745// @as(@Vector(2, u32), [runtime value])
1746// @as(@Vector(2, u32), undefined)
1747// @as(@Vector(2, u32), [runtime value])
1748// @as(@Vector(2, u32), [runtime value])
1749// @as(@Vector(2, u32), [runtime value])
1750// @as(@Vector(2, u32), undefined)
1751// @as(@Vector(2, u32), undefined)
1752// @as(@Vector(2, u32), undefined)
1753// @as(@Vector(2, u32), undefined)
1754// @as(@Vector(2, u32), undefined)
1755// @as(u32, [runtime value])
1756// @as(u32, [runtime value])
1757// @as(@Vector(2, u32), [runtime value])
1758// @as(@Vector(2, u32), [runtime value])
1759// @as(@Vector(2, u32), [runtime value])
1760// @as(@Vector(2, u32), [runtime value])
1761// @as(@Vector(2, u32), [runtime value])
1762// @as(@Vector(2, u32), [runtime value])
1763// @as(@Vector(2, u32), [runtime value])
1764// @as(@Vector(2, u32), [runtime value])
1765// @as(@Vector(2, u32), [runtime value])
1766// @as(@Vector(2, u32), [runtime value])
1767// @as(@Vector(2, u32), [runtime value])
1768// @as(@Vector(2, u32), [runtime value])
1769// @as(@Vector(2, u32), [runtime value])
1770// @as(@Vector(2, u32), [runtime value])
1771// @as(@Vector(2, u32), undefined)
1772// @as(u32, undefined)
1773// @as(@Vector(2, u32), undefined)
1774// @as(u32, undefined)
1775// @as(u32, undefined)
1776// @as(@Vector(2, u32), undefined)
1777// @as(@Vector(2, u32), undefined)
1778// @as(u1, undefined)
1779// @as(@Vector(2, u1), [runtime value])
1780// @as(@Vector(2, u1), [runtime value])
1781// @as(@Vector(2, u1), undefined)
1782// @as(u32, undefined)
1783// @as(@Vector(2, u32), undefined)
1784// @as(i8, undefined)
1785// @as(i8, undefined)
1786// @as(@Vector(2, i8), .{ 6, undefined })
1787// @as(@Vector(2, i8), .{ undefined, 6 })
1788// @as(@Vector(2, i8), undefined)
1789// @as(@Vector(2, i8), .{ 6, undefined })
1790// @as(@Vector(2, i8), .{ 6, undefined })
1791// @as(@Vector(2, i8), undefined)
1792// @as(@Vector(2, i8), undefined)
1793// @as(@Vector(2, i8), .{ undefined, 6 })
1794// @as(@Vector(2, i8), undefined)
1795// @as(@Vector(2, i8), .{ undefined, 6 })
1796// @as(@Vector(2, i8), undefined)
1797// @as(@Vector(2, i8), undefined)
1798// @as(@Vector(2, i8), undefined)
1799// @as(@Vector(2, i8), undefined)
1800// @as(@Vector(2, i8), undefined)
1801// @as(i8, undefined)
1802// @as(i8, undefined)
1803// @as(@Vector(2, i8), .{ 6, undefined })
1804// @as(@Vector(2, i8), .{ undefined, 6 })
1805// @as(@Vector(2, i8), undefined)
1806// @as(@Vector(2, i8), .{ 6, undefined })
1807// @as(@Vector(2, i8), .{ 6, undefined })
1808// @as(@Vector(2, i8), undefined)
1809// @as(@Vector(2, i8), undefined)
1810// @as(@Vector(2, i8), .{ undefined, 6 })
1811// @as(@Vector(2, i8), undefined)
1812// @as(@Vector(2, i8), .{ undefined, 6 })
1813// @as(@Vector(2, i8), undefined)
1814// @as(@Vector(2, i8), undefined)
1815// @as(@Vector(2, i8), undefined)
1816// @as(@Vector(2, i8), undefined)
1817// @as(@Vector(2, i8), undefined)
1818// @as(i8, undefined)
1819// @as(i8, undefined)
1820// @as(@Vector(2, i8), .{ 0, undefined })
1821// @as(@Vector(2, i8), .{ undefined, 0 })
1822// @as(@Vector(2, i8), undefined)
1823// @as(@Vector(2, i8), .{ 0, undefined })
1824// @as(@Vector(2, i8), .{ 0, undefined })
1825// @as(@Vector(2, i8), undefined)
1826// @as(@Vector(2, i8), undefined)
1827// @as(@Vector(2, i8), .{ undefined, 0 })
1828// @as(@Vector(2, i8), undefined)
1829// @as(@Vector(2, i8), .{ undefined, 0 })
1830// @as(@Vector(2, i8), undefined)
1831// @as(@Vector(2, i8), undefined)
1832// @as(@Vector(2, i8), undefined)
1833// @as(@Vector(2, i8), undefined)
1834// @as(@Vector(2, i8), undefined)
1835// @as(i8, undefined)
1836// @as(i8, undefined)
1837// @as(@Vector(2, i8), .{ 0, undefined })
1838// @as(@Vector(2, i8), .{ undefined, 0 })
1839// @as(@Vector(2, i8), undefined)
1840// @as(@Vector(2, i8), .{ 0, undefined })
1841// @as(@Vector(2, i8), .{ 0, undefined })
1842// @as(@Vector(2, i8), undefined)
1843// @as(@Vector(2, i8), undefined)
1844// @as(@Vector(2, i8), .{ undefined, 0 })
1845// @as(@Vector(2, i8), undefined)
1846// @as(@Vector(2, i8), .{ undefined, 0 })
1847// @as(@Vector(2, i8), undefined)
1848// @as(@Vector(2, i8), undefined)
1849// @as(@Vector(2, i8), undefined)
1850// @as(@Vector(2, i8), undefined)
1851// @as(@Vector(2, i8), undefined)
1852// @as(i8, undefined)
1853// @as(i8, undefined)
1854// @as(@Vector(2, i8), .{ 9, undefined })
1855// @as(@Vector(2, i8), .{ undefined, 9 })
1856// @as(@Vector(2, i8), undefined)
1857// @as(@Vector(2, i8), .{ 9, undefined })
1858// @as(@Vector(2, i8), .{ 9, undefined })
1859// @as(@Vector(2, i8), undefined)
1860// @as(@Vector(2, i8), undefined)
1861// @as(@Vector(2, i8), .{ undefined, 9 })
1862// @as(@Vector(2, i8), undefined)
1863// @as(@Vector(2, i8), .{ undefined, 9 })
1864// @as(@Vector(2, i8), undefined)
1865// @as(@Vector(2, i8), undefined)
1866// @as(@Vector(2, i8), undefined)
1867// @as(@Vector(2, i8), undefined)
1868// @as(@Vector(2, i8), undefined)
1869// @as(i8, undefined)
1870// @as(i8, undefined)
1871// @as(@Vector(2, i8), .{ 9, undefined })
1872// @as(@Vector(2, i8), .{ undefined, 9 })
1873// @as(@Vector(2, i8), undefined)
1874// @as(@Vector(2, i8), .{ 9, undefined })
1875// @as(@Vector(2, i8), .{ 9, undefined })
1876// @as(@Vector(2, i8), undefined)
1877// @as(@Vector(2, i8), undefined)
1878// @as(@Vector(2, i8), .{ undefined, 9 })
1879// @as(@Vector(2, i8), undefined)
1880// @as(@Vector(2, i8), .{ undefined, 9 })
1881// @as(@Vector(2, i8), undefined)
1882// @as(@Vector(2, i8), undefined)
1883// @as(@Vector(2, i8), undefined)
1884// @as(@Vector(2, i8), undefined)
1885// @as(@Vector(2, i8), undefined)
1886// @as(i8, undefined)
1887// @as(i8, undefined)
1888// @as(@Vector(2, i8), .{ 0, undefined })
1889// @as(@Vector(2, i8), .{ undefined, 0 })
1890// @as(@Vector(2, i8), undefined)
1891// @as(@Vector(2, i8), .{ 0, undefined })
1892// @as(@Vector(2, i8), .{ 0, undefined })
1893// @as(@Vector(2, i8), undefined)
1894// @as(@Vector(2, i8), undefined)
1895// @as(@Vector(2, i8), .{ undefined, 0 })
1896// @as(@Vector(2, i8), undefined)
1897// @as(@Vector(2, i8), .{ undefined, 0 })
1898// @as(@Vector(2, i8), undefined)
1899// @as(@Vector(2, i8), undefined)
1900// @as(@Vector(2, i8), undefined)
1901// @as(@Vector(2, i8), undefined)
1902// @as(@Vector(2, i8), undefined)
1903// @as(i8, undefined)
1904// @as(@Vector(2, i8), undefined)
1905// @as(i8, undefined)
1906// @as(i8, undefined)
1907// @as(@Vector(2, i8), undefined)
1908// @as(@Vector(2, i8), undefined)
1909// @as(i8, undefined)
1910// @as(@Vector(2, i8), undefined)
1911// @as(i8, undefined)
1912// @as(i8, undefined)
1913// @as(@Vector(2, i8), [runtime value])
1914// @as(@Vector(2, i8), [runtime value])
1915// @as(@Vector(2, i8), undefined)
1916// @as(@Vector(2, i8), [runtime value])
1917// @as(@Vector(2, i8), [runtime value])
1918// @as(@Vector(2, i8), [runtime value])
1919// @as(@Vector(2, i8), undefined)
1920// @as(@Vector(2, i8), [runtime value])
1921// @as(@Vector(2, i8), [runtime value])
1922// @as(@Vector(2, i8), [runtime value])
1923// @as(@Vector(2, i8), undefined)
1924// @as(@Vector(2, i8), undefined)
1925// @as(@Vector(2, i8), undefined)
1926// @as(@Vector(2, i8), undefined)
1927// @as(@Vector(2, i8), undefined)
1928// @as(i8, undefined)
1929// @as(i8, undefined)
1930// @as(@Vector(2, i8), [runtime value])
1931// @as(@Vector(2, i8), [runtime value])
1932// @as(@Vector(2, i8), undefined)
1933// @as(@Vector(2, i8), [runtime value])
1934// @as(@Vector(2, i8), [runtime value])
1935// @as(@Vector(2, i8), [runtime value])
1936// @as(@Vector(2, i8), undefined)
1937// @as(@Vector(2, i8), [runtime value])
1938// @as(@Vector(2, i8), [runtime value])
1939// @as(@Vector(2, i8), [runtime value])
1940// @as(@Vector(2, i8), undefined)
1941// @as(@Vector(2, i8), undefined)
1942// @as(@Vector(2, i8), undefined)
1943// @as(@Vector(2, i8), undefined)
1944// @as(@Vector(2, i8), undefined)
1945// @as(i8, undefined)
1946// @as(i8, undefined)
1947// @as(@Vector(2, i8), [runtime value])
1948// @as(@Vector(2, i8), [runtime value])
1949// @as(@Vector(2, i8), undefined)
1950// @as(@Vector(2, i8), [runtime value])
1951// @as(@Vector(2, i8), [runtime value])
1952// @as(@Vector(2, i8), [runtime value])
1953// @as(@Vector(2, i8), undefined)
1954// @as(@Vector(2, i8), [runtime value])
1955// @as(@Vector(2, i8), [runtime value])
1956// @as(@Vector(2, i8), [runtime value])
1957// @as(@Vector(2, i8), undefined)
1958// @as(@Vector(2, i8), undefined)
1959// @as(@Vector(2, i8), undefined)
1960// @as(@Vector(2, i8), undefined)
1961// @as(@Vector(2, i8), undefined)
1962// @as(i8, undefined)
1963// @as(i8, undefined)
1964// @as(@Vector(2, i8), [runtime value])
1965// @as(@Vector(2, i8), [runtime value])
1966// @as(@Vector(2, i8), undefined)
1967// @as(@Vector(2, i8), [runtime value])
1968// @as(@Vector(2, i8), [runtime value])
1969// @as(@Vector(2, i8), [runtime value])
1970// @as(@Vector(2, i8), undefined)
1971// @as(@Vector(2, i8), [runtime value])
1972// @as(@Vector(2, i8), [runtime value])
1973// @as(@Vector(2, i8), [runtime value])
1974// @as(@Vector(2, i8), undefined)
1975// @as(@Vector(2, i8), undefined)
1976// @as(@Vector(2, i8), undefined)
1977// @as(@Vector(2, i8), undefined)
1978// @as(@Vector(2, i8), undefined)
1979// @as(i8, undefined)
1980// @as(i8, undefined)
1981// @as(@Vector(2, i8), [runtime value])
1982// @as(@Vector(2, i8), [runtime value])
1983// @as(@Vector(2, i8), undefined)
1984// @as(@Vector(2, i8), [runtime value])
1985// @as(@Vector(2, i8), [runtime value])
1986// @as(@Vector(2, i8), [runtime value])
1987// @as(@Vector(2, i8), undefined)
1988// @as(@Vector(2, i8), [runtime value])
1989// @as(@Vector(2, i8), [runtime value])
1990// @as(@Vector(2, i8), [runtime value])
1991// @as(@Vector(2, i8), undefined)
1992// @as(@Vector(2, i8), undefined)
1993// @as(@Vector(2, i8), undefined)
1994// @as(@Vector(2, i8), undefined)
1995// @as(@Vector(2, i8), undefined)
1996// @as(i8, undefined)
1997// @as(i8, undefined)
1998// @as(@Vector(2, i8), [runtime value])
1999// @as(@Vector(2, i8), [runtime value])
2000// @as(@Vector(2, i8), undefined)
2001// @as(@Vector(2, i8), [runtime value])
2002// @as(@Vector(2, i8), [runtime value])
2003// @as(@Vector(2, i8), [runtime value])
2004// @as(@Vector(2, i8), undefined)
2005// @as(@Vector(2, i8), [runtime value])
2006// @as(@Vector(2, i8), [runtime value])
2007// @as(@Vector(2, i8), [runtime value])
2008// @as(@Vector(2, i8), undefined)
2009// @as(@Vector(2, i8), undefined)
2010// @as(@Vector(2, i8), undefined)
2011// @as(@Vector(2, i8), undefined)
2012// @as(@Vector(2, i8), undefined)
2013// @as(i8, [runtime value])
2014// @as(i8, [runtime value])
2015// @as(@Vector(2, i8), [runtime value])
2016// @as(@Vector(2, i8), [runtime value])
2017// @as(@Vector(2, i8), [runtime value])
2018// @as(@Vector(2, i8), [runtime value])
2019// @as(@Vector(2, i8), [runtime value])
2020// @as(@Vector(2, i8), [runtime value])
2021// @as(@Vector(2, i8), [runtime value])
2022// @as(@Vector(2, i8), [runtime value])
2023// @as(@Vector(2, i8), [runtime value])
2024// @as(@Vector(2, i8), [runtime value])
2025// @as(@Vector(2, i8), [runtime value])
2026// @as(@Vector(2, i8), [runtime value])
2027// @as(@Vector(2, i8), [runtime value])
2028// @as(@Vector(2, i8), [runtime value])
2029// @as(@Vector(2, i8), undefined)
2030// @as(i8, undefined)
2031// @as(@Vector(2, i8), undefined)
2032// @as(i8, undefined)
2033// @as(i8, undefined)
2034// @as(@Vector(2, i8), undefined)
2035// @as(@Vector(2, i8), undefined)
2036// @as(i8, undefined)
2037// @as(@Vector(2, i8), undefined)
24782038// @as(f128, undefined)
24792039// @as(f128, undefined)
24802040// @as(@Vector(2, f128), .{ 6, undefined })
......@@ -2585,3 +2145,443 @@ inline fn testFloatWithValue(comptime Float: type, x: Float) void {
25852145// @as(@Vector(2, f128), [runtime value])
25862146// @as(@Vector(2, f128), [runtime value])
25872147// @as(@Vector(2, f128), undefined)
2148// @as(f80, undefined)
2149// @as(f80, undefined)
2150// @as(@Vector(2, f80), .{ 6, undefined })
2151// @as(@Vector(2, f80), .{ undefined, 6 })
2152// @as(@Vector(2, f80), undefined)
2153// @as(@Vector(2, f80), .{ 6, undefined })
2154// @as(@Vector(2, f80), .{ 6, undefined })
2155// @as(@Vector(2, f80), undefined)
2156// @as(@Vector(2, f80), undefined)
2157// @as(@Vector(2, f80), .{ undefined, 6 })
2158// @as(@Vector(2, f80), undefined)
2159// @as(@Vector(2, f80), .{ undefined, 6 })
2160// @as(@Vector(2, f80), undefined)
2161// @as(@Vector(2, f80), undefined)
2162// @as(@Vector(2, f80), undefined)
2163// @as(@Vector(2, f80), undefined)
2164// @as(@Vector(2, f80), undefined)
2165// @as(f80, undefined)
2166// @as(f80, undefined)
2167// @as(@Vector(2, f80), .{ 0, undefined })
2168// @as(@Vector(2, f80), .{ undefined, 0 })
2169// @as(@Vector(2, f80), undefined)
2170// @as(@Vector(2, f80), .{ 0, undefined })
2171// @as(@Vector(2, f80), .{ 0, undefined })
2172// @as(@Vector(2, f80), undefined)
2173// @as(@Vector(2, f80), undefined)
2174// @as(@Vector(2, f80), .{ undefined, 0 })
2175// @as(@Vector(2, f80), undefined)
2176// @as(@Vector(2, f80), .{ undefined, 0 })
2177// @as(@Vector(2, f80), undefined)
2178// @as(@Vector(2, f80), undefined)
2179// @as(@Vector(2, f80), undefined)
2180// @as(@Vector(2, f80), undefined)
2181// @as(@Vector(2, f80), undefined)
2182// @as(f80, undefined)
2183// @as(f80, undefined)
2184// @as(@Vector(2, f80), .{ 9, undefined })
2185// @as(@Vector(2, f80), .{ undefined, 9 })
2186// @as(@Vector(2, f80), undefined)
2187// @as(@Vector(2, f80), .{ 9, undefined })
2188// @as(@Vector(2, f80), .{ 9, undefined })
2189// @as(@Vector(2, f80), undefined)
2190// @as(@Vector(2, f80), undefined)
2191// @as(@Vector(2, f80), .{ undefined, 9 })
2192// @as(@Vector(2, f80), undefined)
2193// @as(@Vector(2, f80), .{ undefined, 9 })
2194// @as(@Vector(2, f80), undefined)
2195// @as(@Vector(2, f80), undefined)
2196// @as(@Vector(2, f80), undefined)
2197// @as(@Vector(2, f80), undefined)
2198// @as(@Vector(2, f80), undefined)
2199// @as(f80, undefined)
2200// @as(@Vector(2, f80), .{ -3, undefined })
2201// @as(@Vector(2, f80), .{ undefined, -3 })
2202// @as(@Vector(2, f80), undefined)
2203// @as(f80, undefined)
2204// @as(f80, undefined)
2205// @as(@Vector(2, f80), [runtime value])
2206// @as(@Vector(2, f80), [runtime value])
2207// @as(@Vector(2, f80), undefined)
2208// @as(@Vector(2, f80), [runtime value])
2209// @as(@Vector(2, f80), [runtime value])
2210// @as(@Vector(2, f80), [runtime value])
2211// @as(@Vector(2, f80), undefined)
2212// @as(@Vector(2, f80), [runtime value])
2213// @as(@Vector(2, f80), [runtime value])
2214// @as(@Vector(2, f80), [runtime value])
2215// @as(@Vector(2, f80), undefined)
2216// @as(@Vector(2, f80), undefined)
2217// @as(@Vector(2, f80), undefined)
2218// @as(@Vector(2, f80), undefined)
2219// @as(@Vector(2, f80), undefined)
2220// @as(f80, undefined)
2221// @as(f80, undefined)
2222// @as(@Vector(2, f80), [runtime value])
2223// @as(@Vector(2, f80), [runtime value])
2224// @as(@Vector(2, f80), undefined)
2225// @as(@Vector(2, f80), [runtime value])
2226// @as(@Vector(2, f80), [runtime value])
2227// @as(@Vector(2, f80), [runtime value])
2228// @as(@Vector(2, f80), undefined)
2229// @as(@Vector(2, f80), [runtime value])
2230// @as(@Vector(2, f80), [runtime value])
2231// @as(@Vector(2, f80), [runtime value])
2232// @as(@Vector(2, f80), undefined)
2233// @as(@Vector(2, f80), undefined)
2234// @as(@Vector(2, f80), undefined)
2235// @as(@Vector(2, f80), undefined)
2236// @as(@Vector(2, f80), undefined)
2237// @as(f80, undefined)
2238// @as(f80, undefined)
2239// @as(@Vector(2, f80), [runtime value])
2240// @as(@Vector(2, f80), [runtime value])
2241// @as(@Vector(2, f80), undefined)
2242// @as(@Vector(2, f80), [runtime value])
2243// @as(@Vector(2, f80), [runtime value])
2244// @as(@Vector(2, f80), [runtime value])
2245// @as(@Vector(2, f80), undefined)
2246// @as(@Vector(2, f80), [runtime value])
2247// @as(@Vector(2, f80), [runtime value])
2248// @as(@Vector(2, f80), [runtime value])
2249// @as(@Vector(2, f80), undefined)
2250// @as(@Vector(2, f80), undefined)
2251// @as(@Vector(2, f80), undefined)
2252// @as(@Vector(2, f80), undefined)
2253// @as(@Vector(2, f80), undefined)
2254// @as(f80, undefined)
2255// @as(@Vector(2, f80), [runtime value])
2256// @as(@Vector(2, f80), [runtime value])
2257// @as(@Vector(2, f80), undefined)
2258// @as(f64, undefined)
2259// @as(f64, undefined)
2260// @as(@Vector(2, f64), .{ 6, undefined })
2261// @as(@Vector(2, f64), .{ undefined, 6 })
2262// @as(@Vector(2, f64), undefined)
2263// @as(@Vector(2, f64), .{ 6, undefined })
2264// @as(@Vector(2, f64), .{ 6, undefined })
2265// @as(@Vector(2, f64), undefined)
2266// @as(@Vector(2, f64), undefined)
2267// @as(@Vector(2, f64), .{ undefined, 6 })
2268// @as(@Vector(2, f64), undefined)
2269// @as(@Vector(2, f64), .{ undefined, 6 })
2270// @as(@Vector(2, f64), undefined)
2271// @as(@Vector(2, f64), undefined)
2272// @as(@Vector(2, f64), undefined)
2273// @as(@Vector(2, f64), undefined)
2274// @as(@Vector(2, f64), undefined)
2275// @as(f64, undefined)
2276// @as(f64, undefined)
2277// @as(@Vector(2, f64), .{ 0, undefined })
2278// @as(@Vector(2, f64), .{ undefined, 0 })
2279// @as(@Vector(2, f64), undefined)
2280// @as(@Vector(2, f64), .{ 0, undefined })
2281// @as(@Vector(2, f64), .{ 0, undefined })
2282// @as(@Vector(2, f64), undefined)
2283// @as(@Vector(2, f64), undefined)
2284// @as(@Vector(2, f64), .{ undefined, 0 })
2285// @as(@Vector(2, f64), undefined)
2286// @as(@Vector(2, f64), .{ undefined, 0 })
2287// @as(@Vector(2, f64), undefined)
2288// @as(@Vector(2, f64), undefined)
2289// @as(@Vector(2, f64), undefined)
2290// @as(@Vector(2, f64), undefined)
2291// @as(@Vector(2, f64), undefined)
2292// @as(f64, undefined)
2293// @as(f64, undefined)
2294// @as(@Vector(2, f64), .{ 9, undefined })
2295// @as(@Vector(2, f64), .{ undefined, 9 })
2296// @as(@Vector(2, f64), undefined)
2297// @as(@Vector(2, f64), .{ 9, undefined })
2298// @as(@Vector(2, f64), .{ 9, undefined })
2299// @as(@Vector(2, f64), undefined)
2300// @as(@Vector(2, f64), undefined)
2301// @as(@Vector(2, f64), .{ undefined, 9 })
2302// @as(@Vector(2, f64), undefined)
2303// @as(@Vector(2, f64), .{ undefined, 9 })
2304// @as(@Vector(2, f64), undefined)
2305// @as(@Vector(2, f64), undefined)
2306// @as(@Vector(2, f64), undefined)
2307// @as(@Vector(2, f64), undefined)
2308// @as(@Vector(2, f64), undefined)
2309// @as(f64, undefined)
2310// @as(@Vector(2, f64), .{ -3, undefined })
2311// @as(@Vector(2, f64), .{ undefined, -3 })
2312// @as(@Vector(2, f64), undefined)
2313// @as(f64, undefined)
2314// @as(f64, undefined)
2315// @as(@Vector(2, f64), [runtime value])
2316// @as(@Vector(2, f64), [runtime value])
2317// @as(@Vector(2, f64), undefined)
2318// @as(@Vector(2, f64), [runtime value])
2319// @as(@Vector(2, f64), [runtime value])
2320// @as(@Vector(2, f64), [runtime value])
2321// @as(@Vector(2, f64), undefined)
2322// @as(@Vector(2, f64), [runtime value])
2323// @as(@Vector(2, f64), [runtime value])
2324// @as(@Vector(2, f64), [runtime value])
2325// @as(@Vector(2, f64), undefined)
2326// @as(@Vector(2, f64), undefined)
2327// @as(@Vector(2, f64), undefined)
2328// @as(@Vector(2, f64), undefined)
2329// @as(@Vector(2, f64), undefined)
2330// @as(f64, undefined)
2331// @as(f64, undefined)
2332// @as(@Vector(2, f64), [runtime value])
2333// @as(@Vector(2, f64), [runtime value])
2334// @as(@Vector(2, f64), undefined)
2335// @as(@Vector(2, f64), [runtime value])
2336// @as(@Vector(2, f64), [runtime value])
2337// @as(@Vector(2, f64), [runtime value])
2338// @as(@Vector(2, f64), undefined)
2339// @as(@Vector(2, f64), [runtime value])
2340// @as(@Vector(2, f64), [runtime value])
2341// @as(@Vector(2, f64), [runtime value])
2342// @as(@Vector(2, f64), undefined)
2343// @as(@Vector(2, f64), undefined)
2344// @as(@Vector(2, f64), undefined)
2345// @as(@Vector(2, f64), undefined)
2346// @as(@Vector(2, f64), undefined)
2347// @as(f64, undefined)
2348// @as(f64, undefined)
2349// @as(@Vector(2, f64), [runtime value])
2350// @as(@Vector(2, f64), [runtime value])
2351// @as(@Vector(2, f64), undefined)
2352// @as(@Vector(2, f64), [runtime value])
2353// @as(@Vector(2, f64), [runtime value])
2354// @as(@Vector(2, f64), [runtime value])
2355// @as(@Vector(2, f64), undefined)
2356// @as(@Vector(2, f64), [runtime value])
2357// @as(@Vector(2, f64), [runtime value])
2358// @as(@Vector(2, f64), [runtime value])
2359// @as(@Vector(2, f64), undefined)
2360// @as(@Vector(2, f64), undefined)
2361// @as(@Vector(2, f64), undefined)
2362// @as(@Vector(2, f64), undefined)
2363// @as(@Vector(2, f64), undefined)
2364// @as(f64, undefined)
2365// @as(@Vector(2, f64), [runtime value])
2366// @as(@Vector(2, f64), [runtime value])
2367// @as(@Vector(2, f64), undefined)
2368// @as(f32, undefined)
2369// @as(f32, undefined)
2370// @as(@Vector(2, f32), .{ 6, undefined })
2371// @as(@Vector(2, f32), .{ undefined, 6 })
2372// @as(@Vector(2, f32), undefined)
2373// @as(@Vector(2, f32), .{ 6, undefined })
2374// @as(@Vector(2, f32), .{ 6, undefined })
2375// @as(@Vector(2, f32), undefined)
2376// @as(@Vector(2, f32), undefined)
2377// @as(@Vector(2, f32), .{ undefined, 6 })
2378// @as(@Vector(2, f32), undefined)
2379// @as(@Vector(2, f32), .{ undefined, 6 })
2380// @as(@Vector(2, f32), undefined)
2381// @as(@Vector(2, f32), undefined)
2382// @as(@Vector(2, f32), undefined)
2383// @as(@Vector(2, f32), undefined)
2384// @as(@Vector(2, f32), undefined)
2385// @as(f32, undefined)
2386// @as(f32, undefined)
2387// @as(@Vector(2, f32), .{ 0, undefined })
2388// @as(@Vector(2, f32), .{ undefined, 0 })
2389// @as(@Vector(2, f32), undefined)
2390// @as(@Vector(2, f32), .{ 0, undefined })
2391// @as(@Vector(2, f32), .{ 0, undefined })
2392// @as(@Vector(2, f32), undefined)
2393// @as(@Vector(2, f32), undefined)
2394// @as(@Vector(2, f32), .{ undefined, 0 })
2395// @as(@Vector(2, f32), undefined)
2396// @as(@Vector(2, f32), .{ undefined, 0 })
2397// @as(@Vector(2, f32), undefined)
2398// @as(@Vector(2, f32), undefined)
2399// @as(@Vector(2, f32), undefined)
2400// @as(@Vector(2, f32), undefined)
2401// @as(@Vector(2, f32), undefined)
2402// @as(f32, undefined)
2403// @as(f32, undefined)
2404// @as(@Vector(2, f32), .{ 9, undefined })
2405// @as(@Vector(2, f32), .{ undefined, 9 })
2406// @as(@Vector(2, f32), undefined)
2407// @as(@Vector(2, f32), .{ 9, undefined })
2408// @as(@Vector(2, f32), .{ 9, undefined })
2409// @as(@Vector(2, f32), undefined)
2410// @as(@Vector(2, f32), undefined)
2411// @as(@Vector(2, f32), .{ undefined, 9 })
2412// @as(@Vector(2, f32), undefined)
2413// @as(@Vector(2, f32), .{ undefined, 9 })
2414// @as(@Vector(2, f32), undefined)
2415// @as(@Vector(2, f32), undefined)
2416// @as(@Vector(2, f32), undefined)
2417// @as(@Vector(2, f32), undefined)
2418// @as(@Vector(2, f32), undefined)
2419// @as(f32, undefined)
2420// @as(@Vector(2, f32), .{ -3, undefined })
2421// @as(@Vector(2, f32), .{ undefined, -3 })
2422// @as(@Vector(2, f32), undefined)
2423// @as(f32, undefined)
2424// @as(f32, undefined)
2425// @as(@Vector(2, f32), [runtime value])
2426// @as(@Vector(2, f32), [runtime value])
2427// @as(@Vector(2, f32), undefined)
2428// @as(@Vector(2, f32), [runtime value])
2429// @as(@Vector(2, f32), [runtime value])
2430// @as(@Vector(2, f32), [runtime value])
2431// @as(@Vector(2, f32), undefined)
2432// @as(@Vector(2, f32), [runtime value])
2433// @as(@Vector(2, f32), [runtime value])
2434// @as(@Vector(2, f32), [runtime value])
2435// @as(@Vector(2, f32), undefined)
2436// @as(@Vector(2, f32), undefined)
2437// @as(@Vector(2, f32), undefined)
2438// @as(@Vector(2, f32), undefined)
2439// @as(@Vector(2, f32), undefined)
2440// @as(f32, undefined)
2441// @as(f32, undefined)
2442// @as(@Vector(2, f32), [runtime value])
2443// @as(@Vector(2, f32), [runtime value])
2444// @as(@Vector(2, f32), undefined)
2445// @as(@Vector(2, f32), [runtime value])
2446// @as(@Vector(2, f32), [runtime value])
2447// @as(@Vector(2, f32), [runtime value])
2448// @as(@Vector(2, f32), undefined)
2449// @as(@Vector(2, f32), [runtime value])
2450// @as(@Vector(2, f32), [runtime value])
2451// @as(@Vector(2, f32), [runtime value])
2452// @as(@Vector(2, f32), undefined)
2453// @as(@Vector(2, f32), undefined)
2454// @as(@Vector(2, f32), undefined)
2455// @as(@Vector(2, f32), undefined)
2456// @as(@Vector(2, f32), undefined)
2457// @as(f32, undefined)
2458// @as(f32, undefined)
2459// @as(@Vector(2, f32), [runtime value])
2460// @as(@Vector(2, f32), [runtime value])
2461// @as(@Vector(2, f32), undefined)
2462// @as(@Vector(2, f32), [runtime value])
2463// @as(@Vector(2, f32), [runtime value])
2464// @as(@Vector(2, f32), [runtime value])
2465// @as(@Vector(2, f32), undefined)
2466// @as(@Vector(2, f32), [runtime value])
2467// @as(@Vector(2, f32), [runtime value])
2468// @as(@Vector(2, f32), [runtime value])
2469// @as(@Vector(2, f32), undefined)
2470// @as(@Vector(2, f32), undefined)
2471// @as(@Vector(2, f32), undefined)
2472// @as(@Vector(2, f32), undefined)
2473// @as(@Vector(2, f32), undefined)
2474// @as(f32, undefined)
2475// @as(@Vector(2, f32), [runtime value])
2476// @as(@Vector(2, f32), [runtime value])
2477// @as(@Vector(2, f32), undefined)
2478// @as(f16, undefined)
2479// @as(f16, undefined)
2480// @as(@Vector(2, f16), .{ 6, undefined })
2481// @as(@Vector(2, f16), .{ undefined, 6 })
2482// @as(@Vector(2, f16), undefined)
2483// @as(@Vector(2, f16), .{ 6, undefined })
2484// @as(@Vector(2, f16), .{ 6, undefined })
2485// @as(@Vector(2, f16), undefined)
2486// @as(@Vector(2, f16), undefined)
2487// @as(@Vector(2, f16), .{ undefined, 6 })
2488// @as(@Vector(2, f16), undefined)
2489// @as(@Vector(2, f16), .{ undefined, 6 })
2490// @as(@Vector(2, f16), undefined)
2491// @as(@Vector(2, f16), undefined)
2492// @as(@Vector(2, f16), undefined)
2493// @as(@Vector(2, f16), undefined)
2494// @as(@Vector(2, f16), undefined)
2495// @as(f16, undefined)
2496// @as(f16, undefined)
2497// @as(@Vector(2, f16), .{ 0, undefined })
2498// @as(@Vector(2, f16), .{ undefined, 0 })
2499// @as(@Vector(2, f16), undefined)
2500// @as(@Vector(2, f16), .{ 0, undefined })
2501// @as(@Vector(2, f16), .{ 0, undefined })
2502// @as(@Vector(2, f16), undefined)
2503// @as(@Vector(2, f16), undefined)
2504// @as(@Vector(2, f16), .{ undefined, 0 })
2505// @as(@Vector(2, f16), undefined)
2506// @as(@Vector(2, f16), .{ undefined, 0 })
2507// @as(@Vector(2, f16), undefined)
2508// @as(@Vector(2, f16), undefined)
2509// @as(@Vector(2, f16), undefined)
2510// @as(@Vector(2, f16), undefined)
2511// @as(@Vector(2, f16), undefined)
2512// @as(f16, undefined)
2513// @as(f16, undefined)
2514// @as(@Vector(2, f16), .{ 9, undefined })
2515// @as(@Vector(2, f16), .{ undefined, 9 })
2516// @as(@Vector(2, f16), undefined)
2517// @as(@Vector(2, f16), .{ 9, undefined })
2518// @as(@Vector(2, f16), .{ 9, undefined })
2519// @as(@Vector(2, f16), undefined)
2520// @as(@Vector(2, f16), undefined)
2521// @as(@Vector(2, f16), .{ undefined, 9 })
2522// @as(@Vector(2, f16), undefined)
2523// @as(@Vector(2, f16), .{ undefined, 9 })
2524// @as(@Vector(2, f16), undefined)
2525// @as(@Vector(2, f16), undefined)
2526// @as(@Vector(2, f16), undefined)
2527// @as(@Vector(2, f16), undefined)
2528// @as(@Vector(2, f16), undefined)
2529// @as(f16, undefined)
2530// @as(@Vector(2, f16), .{ -3, undefined })
2531// @as(@Vector(2, f16), .{ undefined, -3 })
2532// @as(@Vector(2, f16), undefined)
2533// @as(f16, undefined)
2534// @as(f16, undefined)
2535// @as(@Vector(2, f16), [runtime value])
2536// @as(@Vector(2, f16), [runtime value])
2537// @as(@Vector(2, f16), undefined)
2538// @as(@Vector(2, f16), [runtime value])
2539// @as(@Vector(2, f16), [runtime value])
2540// @as(@Vector(2, f16), [runtime value])
2541// @as(@Vector(2, f16), undefined)
2542// @as(@Vector(2, f16), [runtime value])
2543// @as(@Vector(2, f16), [runtime value])
2544// @as(@Vector(2, f16), [runtime value])
2545// @as(@Vector(2, f16), undefined)
2546// @as(@Vector(2, f16), undefined)
2547// @as(@Vector(2, f16), undefined)
2548// @as(@Vector(2, f16), undefined)
2549// @as(@Vector(2, f16), undefined)
2550// @as(f16, undefined)
2551// @as(f16, undefined)
2552// @as(@Vector(2, f16), [runtime value])
2553// @as(@Vector(2, f16), [runtime value])
2554// @as(@Vector(2, f16), undefined)
2555// @as(@Vector(2, f16), [runtime value])
2556// @as(@Vector(2, f16), [runtime value])
2557// @as(@Vector(2, f16), [runtime value])
2558// @as(@Vector(2, f16), undefined)
2559// @as(@Vector(2, f16), [runtime value])
2560// @as(@Vector(2, f16), [runtime value])
2561// @as(@Vector(2, f16), [runtime value])
2562// @as(@Vector(2, f16), undefined)
2563// @as(@Vector(2, f16), undefined)
2564// @as(@Vector(2, f16), undefined)
2565// @as(@Vector(2, f16), undefined)
2566// @as(@Vector(2, f16), undefined)
2567// @as(f16, undefined)
2568// @as(f16, undefined)
2569// @as(@Vector(2, f16), [runtime value])
2570// @as(@Vector(2, f16), [runtime value])
2571// @as(@Vector(2, f16), undefined)
2572// @as(@Vector(2, f16), [runtime value])
2573// @as(@Vector(2, f16), [runtime value])
2574// @as(@Vector(2, f16), [runtime value])
2575// @as(@Vector(2, f16), undefined)
2576// @as(@Vector(2, f16), [runtime value])
2577// @as(@Vector(2, f16), [runtime value])
2578// @as(@Vector(2, f16), [runtime value])
2579// @as(@Vector(2, f16), undefined)
2580// @as(@Vector(2, f16), undefined)
2581// @as(@Vector(2, f16), undefined)
2582// @as(@Vector(2, f16), undefined)
2583// @as(@Vector(2, f16), undefined)
2584// @as(f16, undefined)
2585// @as(@Vector(2, f16), [runtime value])
2586// @as(@Vector(2, f16), [runtime value])
2587// @as(@Vector(2, f16), undefined)
test/cases/compile_errors/undef_shifts_are_illegal.zig+587-587
......@@ -125,27 +125,19 @@ const std = @import("std");
125125// :53:17: error: use of undefined value here causes illegal behavior
126126// :53:17: error: use of undefined value here causes illegal behavior
127127// :53:17: error: use of undefined value here causes illegal behavior
128// :53:17: note: when computing vector element at index '0'
129128// :53:17: error: use of undefined value here causes illegal behavior
130// :53:17: note: when computing vector element at index '0'
131129// :53:17: error: use of undefined value here causes illegal behavior
132// :53:17: note: when computing vector element at index '0'
133130// :53:17: error: use of undefined value here causes illegal behavior
134// :53:17: note: when computing vector element at index '0'
135131// :53:17: error: use of undefined value here causes illegal behavior
136// :53:17: note: when computing vector element at index '1'
137132// :53:17: error: use of undefined value here causes illegal behavior
138// :53:17: note: when computing vector element at index '1'
139133// :53:17: error: use of undefined value here causes illegal behavior
140// :53:17: note: when computing vector element at index '0'
141134// :53:17: error: use of undefined value here causes illegal behavior
142// :53:17: note: when computing vector element at index '0'
143135// :53:17: error: use of undefined value here causes illegal behavior
144// :53:17: note: when computing vector element at index '0'
145136// :53:17: error: use of undefined value here causes illegal behavior
146// :53:17: note: when computing vector element at index '0'
147137// :53:17: error: use of undefined value here causes illegal behavior
138// :53:17: note: when computing vector element at index '0'
148139// :53:17: error: use of undefined value here causes illegal behavior
140// :53:17: note: when computing vector element at index '0'
149141// :53:17: error: use of undefined value here causes illegal behavior
150142// :53:17: note: when computing vector element at index '0'
151143// :53:17: error: use of undefined value here causes illegal behavior
......@@ -155,9 +147,9 @@ const std = @import("std");
155147// :53:17: error: use of undefined value here causes illegal behavior
156148// :53:17: note: when computing vector element at index '0'
157149// :53:17: error: use of undefined value here causes illegal behavior
158// :53:17: note: when computing vector element at index '1'
150// :53:17: note: when computing vector element at index '0'
159151// :53:17: error: use of undefined value here causes illegal behavior
160// :53:17: note: when computing vector element at index '1'
152// :53:17: note: when computing vector element at index '0'
161153// :53:17: error: use of undefined value here causes illegal behavior
162154// :53:17: note: when computing vector element at index '0'
163155// :53:17: error: use of undefined value here causes illegal behavior
......@@ -167,7 +159,9 @@ const std = @import("std");
167159// :53:17: error: use of undefined value here causes illegal behavior
168160// :53:17: note: when computing vector element at index '0'
169161// :53:17: error: use of undefined value here causes illegal behavior
162// :53:17: note: when computing vector element at index '0'
170163// :53:17: error: use of undefined value here causes illegal behavior
164// :53:17: note: when computing vector element at index '0'
171165// :53:17: error: use of undefined value here causes illegal behavior
172166// :53:17: note: when computing vector element at index '0'
173167// :53:17: error: use of undefined value here causes illegal behavior
......@@ -177,9 +171,9 @@ const std = @import("std");
177171// :53:17: error: use of undefined value here causes illegal behavior
178172// :53:17: note: when computing vector element at index '0'
179173// :53:17: error: use of undefined value here causes illegal behavior
180// :53:17: note: when computing vector element at index '1'
174// :53:17: note: when computing vector element at index '0'
181175// :53:17: error: use of undefined value here causes illegal behavior
182// :53:17: note: when computing vector element at index '1'
176// :53:17: note: when computing vector element at index '0'
183177// :53:17: error: use of undefined value here causes illegal behavior
184178// :53:17: note: when computing vector element at index '0'
185179// :53:17: error: use of undefined value here causes illegal behavior
......@@ -189,7 +183,9 @@ const std = @import("std");
189183// :53:17: error: use of undefined value here causes illegal behavior
190184// :53:17: note: when computing vector element at index '0'
191185// :53:17: error: use of undefined value here causes illegal behavior
186// :53:17: note: when computing vector element at index '0'
192187// :53:17: error: use of undefined value here causes illegal behavior
188// :53:17: note: when computing vector element at index '0'
193189// :53:17: error: use of undefined value here causes illegal behavior
194190// :53:17: note: when computing vector element at index '0'
195191// :53:17: error: use of undefined value here causes illegal behavior
......@@ -199,9 +195,9 @@ const std = @import("std");
199195// :53:17: error: use of undefined value here causes illegal behavior
200196// :53:17: note: when computing vector element at index '0'
201197// :53:17: error: use of undefined value here causes illegal behavior
202// :53:17: note: when computing vector element at index '1'
198// :53:17: note: when computing vector element at index '0'
203199// :53:17: error: use of undefined value here causes illegal behavior
204// :53:17: note: when computing vector element at index '1'
200// :53:17: note: when computing vector element at index '0'
205201// :53:17: error: use of undefined value here causes illegal behavior
206202// :53:17: note: when computing vector element at index '0'
207203// :53:17: error: use of undefined value here causes illegal behavior
......@@ -211,7 +207,9 @@ const std = @import("std");
211207// :53:17: error: use of undefined value here causes illegal behavior
212208// :53:17: note: when computing vector element at index '0'
213209// :53:17: error: use of undefined value here causes illegal behavior
210// :53:17: note: when computing vector element at index '0'
214211// :53:17: error: use of undefined value here causes illegal behavior
212// :53:17: note: when computing vector element at index '0'
215213// :53:17: error: use of undefined value here causes illegal behavior
216214// :53:17: note: when computing vector element at index '0'
217215// :53:17: error: use of undefined value here causes illegal behavior
......@@ -221,9 +219,9 @@ const std = @import("std");
221219// :53:17: error: use of undefined value here causes illegal behavior
222220// :53:17: note: when computing vector element at index '0'
223221// :53:17: error: use of undefined value here causes illegal behavior
224// :53:17: note: when computing vector element at index '1'
222// :53:17: note: when computing vector element at index '0'
225223// :53:17: error: use of undefined value here causes illegal behavior
226// :53:17: note: when computing vector element at index '1'
224// :53:17: note: when computing vector element at index '0'
227225// :53:17: error: use of undefined value here causes illegal behavior
228226// :53:17: note: when computing vector element at index '0'
229227// :53:17: error: use of undefined value here causes illegal behavior
......@@ -233,27 +231,29 @@ const std = @import("std");
233231// :53:17: error: use of undefined value here causes illegal behavior
234232// :53:17: note: when computing vector element at index '0'
235233// :53:17: error: use of undefined value here causes illegal behavior
234// :53:17: note: when computing vector element at index '1'
236235// :53:17: error: use of undefined value here causes illegal behavior
236// :53:17: note: when computing vector element at index '1'
237237// :53:17: error: use of undefined value here causes illegal behavior
238// :53:17: note: when computing vector element at index '0'
238// :53:17: note: when computing vector element at index '1'
239239// :53:17: error: use of undefined value here causes illegal behavior
240// :53:17: note: when computing vector element at index '0'
240// :53:17: note: when computing vector element at index '1'
241241// :53:17: error: use of undefined value here causes illegal behavior
242// :53:17: note: when computing vector element at index '0'
242// :53:17: note: when computing vector element at index '1'
243243// :53:17: error: use of undefined value here causes illegal behavior
244// :53:17: note: when computing vector element at index '0'
244// :53:17: note: when computing vector element at index '1'
245245// :53:17: error: use of undefined value here causes illegal behavior
246246// :53:17: note: when computing vector element at index '1'
247247// :53:17: error: use of undefined value here causes illegal behavior
248248// :53:17: note: when computing vector element at index '1'
249249// :53:17: error: use of undefined value here causes illegal behavior
250// :53:17: note: when computing vector element at index '0'
250// :53:17: note: when computing vector element at index '1'
251251// :53:17: error: use of undefined value here causes illegal behavior
252// :53:17: note: when computing vector element at index '0'
252// :53:17: note: when computing vector element at index '1'
253253// :53:17: error: use of undefined value here causes illegal behavior
254// :53:17: note: when computing vector element at index '0'
254// :53:17: note: when computing vector element at index '1'
255255// :53:17: error: use of undefined value here causes illegal behavior
256// :53:17: note: when computing vector element at index '0'
256// :53:17: note: when computing vector element at index '1'
257257// :53:22: error: use of undefined value here causes illegal behavior
258258// :53:22: note: when computing vector element at index '0'
259259// :53:22: error: use of undefined value here causes illegal behavior
......@@ -281,27 +281,19 @@ const std = @import("std");
281281// :56:27: error: use of undefined value here causes illegal behavior
282282// :56:27: error: use of undefined value here causes illegal behavior
283283// :56:27: error: use of undefined value here causes illegal behavior
284// :56:27: note: when computing vector element at index '0'
285284// :56:27: error: use of undefined value here causes illegal behavior
286// :56:27: note: when computing vector element at index '0'
287285// :56:27: error: use of undefined value here causes illegal behavior
288// :56:27: note: when computing vector element at index '0'
289286// :56:27: error: use of undefined value here causes illegal behavior
290// :56:27: note: when computing vector element at index '0'
291287// :56:27: error: use of undefined value here causes illegal behavior
292// :56:27: note: when computing vector element at index '1'
293288// :56:27: error: use of undefined value here causes illegal behavior
294// :56:27: note: when computing vector element at index '1'
295289// :56:27: error: use of undefined value here causes illegal behavior
296// :56:27: note: when computing vector element at index '0'
297290// :56:27: error: use of undefined value here causes illegal behavior
298// :56:27: note: when computing vector element at index '0'
299291// :56:27: error: use of undefined value here causes illegal behavior
300// :56:27: note: when computing vector element at index '0'
301292// :56:27: error: use of undefined value here causes illegal behavior
302// :56:27: note: when computing vector element at index '0'
303293// :56:27: error: use of undefined value here causes illegal behavior
294// :56:27: note: when computing vector element at index '0'
304295// :56:27: error: use of undefined value here causes illegal behavior
296// :56:27: note: when computing vector element at index '0'
305297// :56:27: error: use of undefined value here causes illegal behavior
306298// :56:27: note: when computing vector element at index '0'
307299// :56:27: error: use of undefined value here causes illegal behavior
......@@ -311,9 +303,9 @@ const std = @import("std");
311303// :56:27: error: use of undefined value here causes illegal behavior
312304// :56:27: note: when computing vector element at index '0'
313305// :56:27: error: use of undefined value here causes illegal behavior
314// :56:27: note: when computing vector element at index '1'
306// :56:27: note: when computing vector element at index '0'
315307// :56:27: error: use of undefined value here causes illegal behavior
316// :56:27: note: when computing vector element at index '1'
308// :56:27: note: when computing vector element at index '0'
317309// :56:27: error: use of undefined value here causes illegal behavior
318310// :56:27: note: when computing vector element at index '0'
319311// :56:27: error: use of undefined value here causes illegal behavior
......@@ -323,7 +315,9 @@ const std = @import("std");
323315// :56:27: error: use of undefined value here causes illegal behavior
324316// :56:27: note: when computing vector element at index '0'
325317// :56:27: error: use of undefined value here causes illegal behavior
318// :56:27: note: when computing vector element at index '0'
326319// :56:27: error: use of undefined value here causes illegal behavior
320// :56:27: note: when computing vector element at index '0'
327321// :56:27: error: use of undefined value here causes illegal behavior
328322// :56:27: note: when computing vector element at index '0'
329323// :56:27: error: use of undefined value here causes illegal behavior
......@@ -333,9 +327,9 @@ const std = @import("std");
333327// :56:27: error: use of undefined value here causes illegal behavior
334328// :56:27: note: when computing vector element at index '0'
335329// :56:27: error: use of undefined value here causes illegal behavior
336// :56:27: note: when computing vector element at index '1'
330// :56:27: note: when computing vector element at index '0'
337331// :56:27: error: use of undefined value here causes illegal behavior
338// :56:27: note: when computing vector element at index '1'
332// :56:27: note: when computing vector element at index '0'
339333// :56:27: error: use of undefined value here causes illegal behavior
340334// :56:27: note: when computing vector element at index '0'
341335// :56:27: error: use of undefined value here causes illegal behavior
......@@ -345,7 +339,9 @@ const std = @import("std");
345339// :56:27: error: use of undefined value here causes illegal behavior
346340// :56:27: note: when computing vector element at index '0'
347341// :56:27: error: use of undefined value here causes illegal behavior
342// :56:27: note: when computing vector element at index '0'
348343// :56:27: error: use of undefined value here causes illegal behavior
344// :56:27: note: when computing vector element at index '0'
349345// :56:27: error: use of undefined value here causes illegal behavior
350346// :56:27: note: when computing vector element at index '0'
351347// :56:27: error: use of undefined value here causes illegal behavior
......@@ -355,9 +351,9 @@ const std = @import("std");
355351// :56:27: error: use of undefined value here causes illegal behavior
356352// :56:27: note: when computing vector element at index '0'
357353// :56:27: error: use of undefined value here causes illegal behavior
358// :56:27: note: when computing vector element at index '1'
354// :56:27: note: when computing vector element at index '0'
359355// :56:27: error: use of undefined value here causes illegal behavior
360// :56:27: note: when computing vector element at index '1'
356// :56:27: note: when computing vector element at index '0'
361357// :56:27: error: use of undefined value here causes illegal behavior
362358// :56:27: note: when computing vector element at index '0'
363359// :56:27: error: use of undefined value here causes illegal behavior
......@@ -367,7 +363,9 @@ const std = @import("std");
367363// :56:27: error: use of undefined value here causes illegal behavior
368364// :56:27: note: when computing vector element at index '0'
369365// :56:27: error: use of undefined value here causes illegal behavior
366// :56:27: note: when computing vector element at index '0'
370367// :56:27: error: use of undefined value here causes illegal behavior
368// :56:27: note: when computing vector element at index '0'
371369// :56:27: error: use of undefined value here causes illegal behavior
372370// :56:27: note: when computing vector element at index '0'
373371// :56:27: error: use of undefined value here causes illegal behavior
......@@ -377,9 +375,9 @@ const std = @import("std");
377375// :56:27: error: use of undefined value here causes illegal behavior
378376// :56:27: note: when computing vector element at index '0'
379377// :56:27: error: use of undefined value here causes illegal behavior
380// :56:27: note: when computing vector element at index '1'
378// :56:27: note: when computing vector element at index '0'
381379// :56:27: error: use of undefined value here causes illegal behavior
382// :56:27: note: when computing vector element at index '1'
380// :56:27: note: when computing vector element at index '0'
383381// :56:27: error: use of undefined value here causes illegal behavior
384382// :56:27: note: when computing vector element at index '0'
385383// :56:27: error: use of undefined value here causes illegal behavior
......@@ -389,27 +387,29 @@ const std = @import("std");
389387// :56:27: error: use of undefined value here causes illegal behavior
390388// :56:27: note: when computing vector element at index '0'
391389// :56:27: error: use of undefined value here causes illegal behavior
390// :56:27: note: when computing vector element at index '1'
392391// :56:27: error: use of undefined value here causes illegal behavior
392// :56:27: note: when computing vector element at index '1'
393393// :56:27: error: use of undefined value here causes illegal behavior
394// :56:27: note: when computing vector element at index '0'
394// :56:27: note: when computing vector element at index '1'
395395// :56:27: error: use of undefined value here causes illegal behavior
396// :56:27: note: when computing vector element at index '0'
396// :56:27: note: when computing vector element at index '1'
397397// :56:27: error: use of undefined value here causes illegal behavior
398// :56:27: note: when computing vector element at index '0'
398// :56:27: note: when computing vector element at index '1'
399399// :56:27: error: use of undefined value here causes illegal behavior
400// :56:27: note: when computing vector element at index '0'
400// :56:27: note: when computing vector element at index '1'
401401// :56:27: error: use of undefined value here causes illegal behavior
402402// :56:27: note: when computing vector element at index '1'
403403// :56:27: error: use of undefined value here causes illegal behavior
404404// :56:27: note: when computing vector element at index '1'
405405// :56:27: error: use of undefined value here causes illegal behavior
406// :56:27: note: when computing vector element at index '0'
406// :56:27: note: when computing vector element at index '1'
407407// :56:27: error: use of undefined value here causes illegal behavior
408// :56:27: note: when computing vector element at index '0'
408// :56:27: note: when computing vector element at index '1'
409409// :56:27: error: use of undefined value here causes illegal behavior
410// :56:27: note: when computing vector element at index '0'
410// :56:27: note: when computing vector element at index '1'
411411// :56:27: error: use of undefined value here causes illegal behavior
412// :56:27: note: when computing vector element at index '0'
412// :56:27: note: when computing vector element at index '1'
413413// :56:30: error: use of undefined value here causes illegal behavior
414414// :56:30: note: when computing vector element at index '0'
415415// :56:30: error: use of undefined value here causes illegal behavior
......@@ -437,27 +437,19 @@ const std = @import("std");
437437// :59:34: error: use of undefined value here causes illegal behavior
438438// :59:34: error: use of undefined value here causes illegal behavior
439439// :59:34: error: use of undefined value here causes illegal behavior
440// :59:34: note: when computing vector element at index '0'
441440// :59:34: error: use of undefined value here causes illegal behavior
442// :59:34: note: when computing vector element at index '0'
443441// :59:34: error: use of undefined value here causes illegal behavior
444// :59:34: note: when computing vector element at index '0'
445442// :59:34: error: use of undefined value here causes illegal behavior
446// :59:34: note: when computing vector element at index '0'
447443// :59:34: error: use of undefined value here causes illegal behavior
448// :59:34: note: when computing vector element at index '1'
449444// :59:34: error: use of undefined value here causes illegal behavior
450// :59:34: note: when computing vector element at index '1'
451445// :59:34: error: use of undefined value here causes illegal behavior
452// :59:34: note: when computing vector element at index '0'
453446// :59:34: error: use of undefined value here causes illegal behavior
454// :59:34: note: when computing vector element at index '0'
455447// :59:34: error: use of undefined value here causes illegal behavior
456// :59:34: note: when computing vector element at index '0'
457448// :59:34: error: use of undefined value here causes illegal behavior
458// :59:34: note: when computing vector element at index '0'
459449// :59:34: error: use of undefined value here causes illegal behavior
450// :59:34: note: when computing vector element at index '0'
460451// :59:34: error: use of undefined value here causes illegal behavior
452// :59:34: note: when computing vector element at index '0'
461453// :59:34: error: use of undefined value here causes illegal behavior
462454// :59:34: note: when computing vector element at index '0'
463455// :59:34: error: use of undefined value here causes illegal behavior
......@@ -467,9 +459,9 @@ const std = @import("std");
467459// :59:34: error: use of undefined value here causes illegal behavior
468460// :59:34: note: when computing vector element at index '0'
469461// :59:34: error: use of undefined value here causes illegal behavior
470// :59:34: note: when computing vector element at index '1'
462// :59:34: note: when computing vector element at index '0'
471463// :59:34: error: use of undefined value here causes illegal behavior
472// :59:34: note: when computing vector element at index '1'
464// :59:34: note: when computing vector element at index '0'
473465// :59:34: error: use of undefined value here causes illegal behavior
474466// :59:34: note: when computing vector element at index '0'
475467// :59:34: error: use of undefined value here causes illegal behavior
......@@ -479,7 +471,9 @@ const std = @import("std");
479471// :59:34: error: use of undefined value here causes illegal behavior
480472// :59:34: note: when computing vector element at index '0'
481473// :59:34: error: use of undefined value here causes illegal behavior
474// :59:34: note: when computing vector element at index '0'
482475// :59:34: error: use of undefined value here causes illegal behavior
476// :59:34: note: when computing vector element at index '0'
483477// :59:34: error: use of undefined value here causes illegal behavior
484478// :59:34: note: when computing vector element at index '0'
485479// :59:34: error: use of undefined value here causes illegal behavior
......@@ -489,9 +483,9 @@ const std = @import("std");
489483// :59:34: error: use of undefined value here causes illegal behavior
490484// :59:34: note: when computing vector element at index '0'
491485// :59:34: error: use of undefined value here causes illegal behavior
492// :59:34: note: when computing vector element at index '1'
486// :59:34: note: when computing vector element at index '0'
493487// :59:34: error: use of undefined value here causes illegal behavior
494// :59:34: note: when computing vector element at index '1'
488// :59:34: note: when computing vector element at index '0'
495489// :59:34: error: use of undefined value here causes illegal behavior
496490// :59:34: note: when computing vector element at index '0'
497491// :59:34: error: use of undefined value here causes illegal behavior
......@@ -501,7 +495,9 @@ const std = @import("std");
501495// :59:34: error: use of undefined value here causes illegal behavior
502496// :59:34: note: when computing vector element at index '0'
503497// :59:34: error: use of undefined value here causes illegal behavior
498// :59:34: note: when computing vector element at index '0'
504499// :59:34: error: use of undefined value here causes illegal behavior
500// :59:34: note: when computing vector element at index '0'
505501// :59:34: error: use of undefined value here causes illegal behavior
506502// :59:34: note: when computing vector element at index '0'
507503// :59:34: error: use of undefined value here causes illegal behavior
......@@ -511,9 +507,9 @@ const std = @import("std");
511507// :59:34: error: use of undefined value here causes illegal behavior
512508// :59:34: note: when computing vector element at index '0'
513509// :59:34: error: use of undefined value here causes illegal behavior
514// :59:34: note: when computing vector element at index '1'
510// :59:34: note: when computing vector element at index '0'
515511// :59:34: error: use of undefined value here causes illegal behavior
516// :59:34: note: when computing vector element at index '1'
512// :59:34: note: when computing vector element at index '0'
517513// :59:34: error: use of undefined value here causes illegal behavior
518514// :59:34: note: when computing vector element at index '0'
519515// :59:34: error: use of undefined value here causes illegal behavior
......@@ -523,7 +519,9 @@ const std = @import("std");
523519// :59:34: error: use of undefined value here causes illegal behavior
524520// :59:34: note: when computing vector element at index '0'
525521// :59:34: error: use of undefined value here causes illegal behavior
522// :59:34: note: when computing vector element at index '0'
526523// :59:34: error: use of undefined value here causes illegal behavior
524// :59:34: note: when computing vector element at index '0'
527525// :59:34: error: use of undefined value here causes illegal behavior
528526// :59:34: note: when computing vector element at index '0'
529527// :59:34: error: use of undefined value here causes illegal behavior
......@@ -533,9 +531,9 @@ const std = @import("std");
533531// :59:34: error: use of undefined value here causes illegal behavior
534532// :59:34: note: when computing vector element at index '0'
535533// :59:34: error: use of undefined value here causes illegal behavior
536// :59:34: note: when computing vector element at index '1'
534// :59:34: note: when computing vector element at index '0'
537535// :59:34: error: use of undefined value here causes illegal behavior
538// :59:34: note: when computing vector element at index '1'
536// :59:34: note: when computing vector element at index '0'
539537// :59:34: error: use of undefined value here causes illegal behavior
540538// :59:34: note: when computing vector element at index '0'
541539// :59:34: error: use of undefined value here causes illegal behavior
......@@ -545,27 +543,29 @@ const std = @import("std");
545543// :59:34: error: use of undefined value here causes illegal behavior
546544// :59:34: note: when computing vector element at index '0'
547545// :59:34: error: use of undefined value here causes illegal behavior
546// :59:34: note: when computing vector element at index '1'
548547// :59:34: error: use of undefined value here causes illegal behavior
548// :59:34: note: when computing vector element at index '1'
549549// :59:34: error: use of undefined value here causes illegal behavior
550// :59:34: note: when computing vector element at index '0'
550// :59:34: note: when computing vector element at index '1'
551551// :59:34: error: use of undefined value here causes illegal behavior
552// :59:34: note: when computing vector element at index '0'
552// :59:34: note: when computing vector element at index '1'
553553// :59:34: error: use of undefined value here causes illegal behavior
554// :59:34: note: when computing vector element at index '0'
554// :59:34: note: when computing vector element at index '1'
555555// :59:34: error: use of undefined value here causes illegal behavior
556// :59:34: note: when computing vector element at index '0'
556// :59:34: note: when computing vector element at index '1'
557557// :59:34: error: use of undefined value here causes illegal behavior
558558// :59:34: note: when computing vector element at index '1'
559559// :59:34: error: use of undefined value here causes illegal behavior
560560// :59:34: note: when computing vector element at index '1'
561561// :59:34: error: use of undefined value here causes illegal behavior
562// :59:34: note: when computing vector element at index '0'
562// :59:34: note: when computing vector element at index '1'
563563// :59:34: error: use of undefined value here causes illegal behavior
564// :59:34: note: when computing vector element at index '0'
564// :59:34: note: when computing vector element at index '1'
565565// :59:34: error: use of undefined value here causes illegal behavior
566// :59:34: note: when computing vector element at index '0'
566// :59:34: note: when computing vector element at index '1'
567567// :59:34: error: use of undefined value here causes illegal behavior
568// :59:34: note: when computing vector element at index '0'
568// :59:34: note: when computing vector element at index '1'
569569// :59:37: error: use of undefined value here causes illegal behavior
570570// :59:37: note: when computing vector element at index '0'
571571// :59:37: error: use of undefined value here causes illegal behavior
......@@ -593,27 +593,19 @@ const std = @import("std");
593593// :62:17: error: use of undefined value here causes illegal behavior
594594// :62:17: error: use of undefined value here causes illegal behavior
595595// :62:17: error: use of undefined value here causes illegal behavior
596// :62:17: note: when computing vector element at index '0'
597596// :62:17: error: use of undefined value here causes illegal behavior
598// :62:17: note: when computing vector element at index '0'
599597// :62:17: error: use of undefined value here causes illegal behavior
600// :62:17: note: when computing vector element at index '0'
601598// :62:17: error: use of undefined value here causes illegal behavior
602// :62:17: note: when computing vector element at index '0'
603599// :62:17: error: use of undefined value here causes illegal behavior
604// :62:17: note: when computing vector element at index '1'
605600// :62:17: error: use of undefined value here causes illegal behavior
606// :62:17: note: when computing vector element at index '1'
607601// :62:17: error: use of undefined value here causes illegal behavior
608// :62:17: note: when computing vector element at index '0'
609602// :62:17: error: use of undefined value here causes illegal behavior
610// :62:17: note: when computing vector element at index '0'
611603// :62:17: error: use of undefined value here causes illegal behavior
612// :62:17: note: when computing vector element at index '0'
613604// :62:17: error: use of undefined value here causes illegal behavior
614// :62:17: note: when computing vector element at index '0'
615605// :62:17: error: use of undefined value here causes illegal behavior
606// :62:17: note: when computing vector element at index '0'
616607// :62:17: error: use of undefined value here causes illegal behavior
608// :62:17: note: when computing vector element at index '0'
617609// :62:17: error: use of undefined value here causes illegal behavior
618610// :62:17: note: when computing vector element at index '0'
619611// :62:17: error: use of undefined value here causes illegal behavior
......@@ -623,9 +615,9 @@ const std = @import("std");
623615// :62:17: error: use of undefined value here causes illegal behavior
624616// :62:17: note: when computing vector element at index '0'
625617// :62:17: error: use of undefined value here causes illegal behavior
626// :62:17: note: when computing vector element at index '1'
618// :62:17: note: when computing vector element at index '0'
627619// :62:17: error: use of undefined value here causes illegal behavior
628// :62:17: note: when computing vector element at index '1'
620// :62:17: note: when computing vector element at index '0'
629621// :62:17: error: use of undefined value here causes illegal behavior
630622// :62:17: note: when computing vector element at index '0'
631623// :62:17: error: use of undefined value here causes illegal behavior
......@@ -635,7 +627,9 @@ const std = @import("std");
635627// :62:17: error: use of undefined value here causes illegal behavior
636628// :62:17: note: when computing vector element at index '0'
637629// :62:17: error: use of undefined value here causes illegal behavior
630// :62:17: note: when computing vector element at index '0'
638631// :62:17: error: use of undefined value here causes illegal behavior
632// :62:17: note: when computing vector element at index '0'
639633// :62:17: error: use of undefined value here causes illegal behavior
640634// :62:17: note: when computing vector element at index '0'
641635// :62:17: error: use of undefined value here causes illegal behavior
......@@ -645,9 +639,9 @@ const std = @import("std");
645639// :62:17: error: use of undefined value here causes illegal behavior
646640// :62:17: note: when computing vector element at index '0'
647641// :62:17: error: use of undefined value here causes illegal behavior
648// :62:17: note: when computing vector element at index '1'
642// :62:17: note: when computing vector element at index '0'
649643// :62:17: error: use of undefined value here causes illegal behavior
650// :62:17: note: when computing vector element at index '1'
644// :62:17: note: when computing vector element at index '0'
651645// :62:17: error: use of undefined value here causes illegal behavior
652646// :62:17: note: when computing vector element at index '0'
653647// :62:17: error: use of undefined value here causes illegal behavior
......@@ -657,7 +651,9 @@ const std = @import("std");
657651// :62:17: error: use of undefined value here causes illegal behavior
658652// :62:17: note: when computing vector element at index '0'
659653// :62:17: error: use of undefined value here causes illegal behavior
654// :62:17: note: when computing vector element at index '0'
660655// :62:17: error: use of undefined value here causes illegal behavior
656// :62:17: note: when computing vector element at index '0'
661657// :62:17: error: use of undefined value here causes illegal behavior
662658// :62:17: note: when computing vector element at index '0'
663659// :62:17: error: use of undefined value here causes illegal behavior
......@@ -667,9 +663,9 @@ const std = @import("std");
667663// :62:17: error: use of undefined value here causes illegal behavior
668664// :62:17: note: when computing vector element at index '0'
669665// :62:17: error: use of undefined value here causes illegal behavior
670// :62:17: note: when computing vector element at index '1'
666// :62:17: note: when computing vector element at index '0'
671667// :62:17: error: use of undefined value here causes illegal behavior
672// :62:17: note: when computing vector element at index '1'
668// :62:17: note: when computing vector element at index '0'
673669// :62:17: error: use of undefined value here causes illegal behavior
674670// :62:17: note: when computing vector element at index '0'
675671// :62:17: error: use of undefined value here causes illegal behavior
......@@ -679,7 +675,9 @@ const std = @import("std");
679675// :62:17: error: use of undefined value here causes illegal behavior
680676// :62:17: note: when computing vector element at index '0'
681677// :62:17: error: use of undefined value here causes illegal behavior
678// :62:17: note: when computing vector element at index '0'
682679// :62:17: error: use of undefined value here causes illegal behavior
680// :62:17: note: when computing vector element at index '0'
683681// :62:17: error: use of undefined value here causes illegal behavior
684682// :62:17: note: when computing vector element at index '0'
685683// :62:17: error: use of undefined value here causes illegal behavior
......@@ -689,9 +687,9 @@ const std = @import("std");
689687// :62:17: error: use of undefined value here causes illegal behavior
690688// :62:17: note: when computing vector element at index '0'
691689// :62:17: error: use of undefined value here causes illegal behavior
692// :62:17: note: when computing vector element at index '1'
690// :62:17: note: when computing vector element at index '0'
693691// :62:17: error: use of undefined value here causes illegal behavior
694// :62:17: note: when computing vector element at index '1'
692// :62:17: note: when computing vector element at index '0'
695693// :62:17: error: use of undefined value here causes illegal behavior
696694// :62:17: note: when computing vector element at index '0'
697695// :62:17: error: use of undefined value here causes illegal behavior
......@@ -701,27 +699,29 @@ const std = @import("std");
701699// :62:17: error: use of undefined value here causes illegal behavior
702700// :62:17: note: when computing vector element at index '0'
703701// :62:17: error: use of undefined value here causes illegal behavior
702// :62:17: note: when computing vector element at index '1'
704703// :62:17: error: use of undefined value here causes illegal behavior
704// :62:17: note: when computing vector element at index '1'
705705// :62:17: error: use of undefined value here causes illegal behavior
706// :62:17: note: when computing vector element at index '0'
706// :62:17: note: when computing vector element at index '1'
707707// :62:17: error: use of undefined value here causes illegal behavior
708// :62:17: note: when computing vector element at index '0'
708// :62:17: note: when computing vector element at index '1'
709709// :62:17: error: use of undefined value here causes illegal behavior
710// :62:17: note: when computing vector element at index '0'
710// :62:17: note: when computing vector element at index '1'
711711// :62:17: error: use of undefined value here causes illegal behavior
712// :62:17: note: when computing vector element at index '0'
712// :62:17: note: when computing vector element at index '1'
713713// :62:17: error: use of undefined value here causes illegal behavior
714714// :62:17: note: when computing vector element at index '1'
715715// :62:17: error: use of undefined value here causes illegal behavior
716716// :62:17: note: when computing vector element at index '1'
717717// :62:17: error: use of undefined value here causes illegal behavior
718// :62:17: note: when computing vector element at index '0'
718// :62:17: note: when computing vector element at index '1'
719719// :62:17: error: use of undefined value here causes illegal behavior
720// :62:17: note: when computing vector element at index '0'
720// :62:17: note: when computing vector element at index '1'
721721// :62:17: error: use of undefined value here causes illegal behavior
722// :62:17: note: when computing vector element at index '0'
722// :62:17: note: when computing vector element at index '1'
723723// :62:17: error: use of undefined value here causes illegal behavior
724// :62:17: note: when computing vector element at index '0'
724// :62:17: note: when computing vector element at index '1'
725725// :62:22: error: use of undefined value here causes illegal behavior
726726// :62:22: note: when computing vector element at index '0'
727727// :62:22: error: use of undefined value here causes illegal behavior
......@@ -749,27 +749,19 @@ const std = @import("std");
749749// :65:27: error: use of undefined value here causes illegal behavior
750750// :65:27: error: use of undefined value here causes illegal behavior
751751// :65:27: error: use of undefined value here causes illegal behavior
752// :65:27: note: when computing vector element at index '0'
753752// :65:27: error: use of undefined value here causes illegal behavior
754// :65:27: note: when computing vector element at index '0'
755753// :65:27: error: use of undefined value here causes illegal behavior
756// :65:27: note: when computing vector element at index '0'
757754// :65:27: error: use of undefined value here causes illegal behavior
758// :65:27: note: when computing vector element at index '0'
759755// :65:27: error: use of undefined value here causes illegal behavior
760// :65:27: note: when computing vector element at index '1'
761756// :65:27: error: use of undefined value here causes illegal behavior
762// :65:27: note: when computing vector element at index '1'
763757// :65:27: error: use of undefined value here causes illegal behavior
764// :65:27: note: when computing vector element at index '0'
765758// :65:27: error: use of undefined value here causes illegal behavior
766// :65:27: note: when computing vector element at index '0'
767759// :65:27: error: use of undefined value here causes illegal behavior
768// :65:27: note: when computing vector element at index '0'
769760// :65:27: error: use of undefined value here causes illegal behavior
770// :65:27: note: when computing vector element at index '0'
771761// :65:27: error: use of undefined value here causes illegal behavior
762// :65:27: note: when computing vector element at index '0'
772763// :65:27: error: use of undefined value here causes illegal behavior
764// :65:27: note: when computing vector element at index '0'
773765// :65:27: error: use of undefined value here causes illegal behavior
774766// :65:27: note: when computing vector element at index '0'
775767// :65:27: error: use of undefined value here causes illegal behavior
......@@ -779,9 +771,9 @@ const std = @import("std");
779771// :65:27: error: use of undefined value here causes illegal behavior
780772// :65:27: note: when computing vector element at index '0'
781773// :65:27: error: use of undefined value here causes illegal behavior
782// :65:27: note: when computing vector element at index '1'
774// :65:27: note: when computing vector element at index '0'
783775// :65:27: error: use of undefined value here causes illegal behavior
784// :65:27: note: when computing vector element at index '1'
776// :65:27: note: when computing vector element at index '0'
785777// :65:27: error: use of undefined value here causes illegal behavior
786778// :65:27: note: when computing vector element at index '0'
787779// :65:27: error: use of undefined value here causes illegal behavior
......@@ -791,7 +783,9 @@ const std = @import("std");
791783// :65:27: error: use of undefined value here causes illegal behavior
792784// :65:27: note: when computing vector element at index '0'
793785// :65:27: error: use of undefined value here causes illegal behavior
786// :65:27: note: when computing vector element at index '0'
794787// :65:27: error: use of undefined value here causes illegal behavior
788// :65:27: note: when computing vector element at index '0'
795789// :65:27: error: use of undefined value here causes illegal behavior
796790// :65:27: note: when computing vector element at index '0'
797791// :65:27: error: use of undefined value here causes illegal behavior
......@@ -801,9 +795,9 @@ const std = @import("std");
801795// :65:27: error: use of undefined value here causes illegal behavior
802796// :65:27: note: when computing vector element at index '0'
803797// :65:27: error: use of undefined value here causes illegal behavior
804// :65:27: note: when computing vector element at index '1'
798// :65:27: note: when computing vector element at index '0'
805799// :65:27: error: use of undefined value here causes illegal behavior
806// :65:27: note: when computing vector element at index '1'
800// :65:27: note: when computing vector element at index '0'
807801// :65:27: error: use of undefined value here causes illegal behavior
808802// :65:27: note: when computing vector element at index '0'
809803// :65:27: error: use of undefined value here causes illegal behavior
......@@ -813,7 +807,9 @@ const std = @import("std");
813807// :65:27: error: use of undefined value here causes illegal behavior
814808// :65:27: note: when computing vector element at index '0'
815809// :65:27: error: use of undefined value here causes illegal behavior
810// :65:27: note: when computing vector element at index '0'
816811// :65:27: error: use of undefined value here causes illegal behavior
812// :65:27: note: when computing vector element at index '0'
817813// :65:27: error: use of undefined value here causes illegal behavior
818814// :65:27: note: when computing vector element at index '0'
819815// :65:27: error: use of undefined value here causes illegal behavior
......@@ -823,9 +819,9 @@ const std = @import("std");
823819// :65:27: error: use of undefined value here causes illegal behavior
824820// :65:27: note: when computing vector element at index '0'
825821// :65:27: error: use of undefined value here causes illegal behavior
826// :65:27: note: when computing vector element at index '1'
822// :65:27: note: when computing vector element at index '0'
827823// :65:27: error: use of undefined value here causes illegal behavior
828// :65:27: note: when computing vector element at index '1'
824// :65:27: note: when computing vector element at index '0'
829825// :65:27: error: use of undefined value here causes illegal behavior
830826// :65:27: note: when computing vector element at index '0'
831827// :65:27: error: use of undefined value here causes illegal behavior
......@@ -835,7 +831,9 @@ const std = @import("std");
835831// :65:27: error: use of undefined value here causes illegal behavior
836832// :65:27: note: when computing vector element at index '0'
837833// :65:27: error: use of undefined value here causes illegal behavior
834// :65:27: note: when computing vector element at index '0'
838835// :65:27: error: use of undefined value here causes illegal behavior
836// :65:27: note: when computing vector element at index '0'
839837// :65:27: error: use of undefined value here causes illegal behavior
840838// :65:27: note: when computing vector element at index '0'
841839// :65:27: error: use of undefined value here causes illegal behavior
......@@ -845,9 +843,9 @@ const std = @import("std");
845843// :65:27: error: use of undefined value here causes illegal behavior
846844// :65:27: note: when computing vector element at index '0'
847845// :65:27: error: use of undefined value here causes illegal behavior
848// :65:27: note: when computing vector element at index '1'
846// :65:27: note: when computing vector element at index '0'
849847// :65:27: error: use of undefined value here causes illegal behavior
850// :65:27: note: when computing vector element at index '1'
848// :65:27: note: when computing vector element at index '0'
851849// :65:27: error: use of undefined value here causes illegal behavior
852850// :65:27: note: when computing vector element at index '0'
853851// :65:27: error: use of undefined value here causes illegal behavior
......@@ -857,27 +855,29 @@ const std = @import("std");
857855// :65:27: error: use of undefined value here causes illegal behavior
858856// :65:27: note: when computing vector element at index '0'
859857// :65:27: error: use of undefined value here causes illegal behavior
858// :65:27: note: when computing vector element at index '1'
860859// :65:27: error: use of undefined value here causes illegal behavior
860// :65:27: note: when computing vector element at index '1'
861861// :65:27: error: use of undefined value here causes illegal behavior
862// :65:27: note: when computing vector element at index '0'
862// :65:27: note: when computing vector element at index '1'
863863// :65:27: error: use of undefined value here causes illegal behavior
864// :65:27: note: when computing vector element at index '0'
864// :65:27: note: when computing vector element at index '1'
865865// :65:27: error: use of undefined value here causes illegal behavior
866// :65:27: note: when computing vector element at index '0'
866// :65:27: note: when computing vector element at index '1'
867867// :65:27: error: use of undefined value here causes illegal behavior
868// :65:27: note: when computing vector element at index '0'
868// :65:27: note: when computing vector element at index '1'
869869// :65:27: error: use of undefined value here causes illegal behavior
870870// :65:27: note: when computing vector element at index '1'
871871// :65:27: error: use of undefined value here causes illegal behavior
872872// :65:27: note: when computing vector element at index '1'
873873// :65:27: error: use of undefined value here causes illegal behavior
874// :65:27: note: when computing vector element at index '0'
874// :65:27: note: when computing vector element at index '1'
875875// :65:27: error: use of undefined value here causes illegal behavior
876// :65:27: note: when computing vector element at index '0'
876// :65:27: note: when computing vector element at index '1'
877877// :65:27: error: use of undefined value here causes illegal behavior
878// :65:27: note: when computing vector element at index '0'
878// :65:27: note: when computing vector element at index '1'
879879// :65:27: error: use of undefined value here causes illegal behavior
880// :65:27: note: when computing vector element at index '0'
880// :65:27: note: when computing vector element at index '1'
881881// :65:30: error: use of undefined value here causes illegal behavior
882882// :65:30: note: when computing vector element at index '0'
883883// :65:30: error: use of undefined value here causes illegal behavior
......@@ -909,21 +909,13 @@ const std = @import("std");
909909// :70:17: error: use of undefined value here causes illegal behavior
910910// :70:17: error: use of undefined value here causes illegal behavior
911911// :70:17: error: use of undefined value here causes illegal behavior
912// :70:17: note: when computing vector element at index '1'
913912// :70:17: error: use of undefined value here causes illegal behavior
914// :70:17: note: when computing vector element at index '1'
915913// :70:17: error: use of undefined value here causes illegal behavior
916// :70:17: note: when computing vector element at index '1'
917914// :70:17: error: use of undefined value here causes illegal behavior
918// :70:17: note: when computing vector element at index '1'
919915// :70:17: error: use of undefined value here causes illegal behavior
920// :70:17: note: when computing vector element at index '0'
921916// :70:17: error: use of undefined value here causes illegal behavior
922// :70:17: note: when computing vector element at index '0'
923917// :70:17: error: use of undefined value here causes illegal behavior
924// :70:17: note: when computing vector element at index '0'
925918// :70:17: error: use of undefined value here causes illegal behavior
926// :70:17: note: when computing vector element at index '0'
927919// :70:17: error: use of undefined value here causes illegal behavior
928920// :70:17: error: use of undefined value here causes illegal behavior
929921// :70:17: error: use of undefined value here causes illegal behavior
......@@ -931,21 +923,13 @@ const std = @import("std");
931923// :70:17: error: use of undefined value here causes illegal behavior
932924// :70:17: error: use of undefined value here causes illegal behavior
933925// :70:17: error: use of undefined value here causes illegal behavior
934// :70:17: note: when computing vector element at index '1'
935926// :70:17: error: use of undefined value here causes illegal behavior
936// :70:17: note: when computing vector element at index '1'
937927// :70:17: error: use of undefined value here causes illegal behavior
938// :70:17: note: when computing vector element at index '1'
939928// :70:17: error: use of undefined value here causes illegal behavior
940// :70:17: note: when computing vector element at index '1'
941929// :70:17: error: use of undefined value here causes illegal behavior
942// :70:17: note: when computing vector element at index '0'
943930// :70:17: error: use of undefined value here causes illegal behavior
944// :70:17: note: when computing vector element at index '0'
945931// :70:17: error: use of undefined value here causes illegal behavior
946// :70:17: note: when computing vector element at index '0'
947932// :70:17: error: use of undefined value here causes illegal behavior
948// :70:17: note: when computing vector element at index '0'
949933// :70:17: error: use of undefined value here causes illegal behavior
950934// :70:17: error: use of undefined value here causes illegal behavior
951935// :70:17: error: use of undefined value here causes illegal behavior
......@@ -953,13 +937,11 @@ const std = @import("std");
953937// :70:17: error: use of undefined value here causes illegal behavior
954938// :70:17: error: use of undefined value here causes illegal behavior
955939// :70:17: error: use of undefined value here causes illegal behavior
956// :70:17: note: when computing vector element at index '1'
957940// :70:17: error: use of undefined value here causes illegal behavior
958// :70:17: note: when computing vector element at index '1'
959941// :70:17: error: use of undefined value here causes illegal behavior
960// :70:17: note: when computing vector element at index '1'
942// :70:17: note: when computing vector element at index '0'
961943// :70:17: error: use of undefined value here causes illegal behavior
962// :70:17: note: when computing vector element at index '1'
944// :70:17: note: when computing vector element at index '0'
963945// :70:17: error: use of undefined value here causes illegal behavior
964946// :70:17: note: when computing vector element at index '0'
965947// :70:17: error: use of undefined value here causes illegal behavior
......@@ -969,19 +951,25 @@ const std = @import("std");
969951// :70:17: error: use of undefined value here causes illegal behavior
970952// :70:17: note: when computing vector element at index '0'
971953// :70:17: error: use of undefined value here causes illegal behavior
954// :70:17: note: when computing vector element at index '0'
972955// :70:17: error: use of undefined value here causes illegal behavior
956// :70:17: note: when computing vector element at index '0'
973957// :70:17: error: use of undefined value here causes illegal behavior
958// :70:17: note: when computing vector element at index '0'
974959// :70:17: error: use of undefined value here causes illegal behavior
960// :70:17: note: when computing vector element at index '0'
975961// :70:17: error: use of undefined value here causes illegal behavior
962// :70:17: note: when computing vector element at index '0'
976963// :70:17: error: use of undefined value here causes illegal behavior
964// :70:17: note: when computing vector element at index '0'
977965// :70:17: error: use of undefined value here causes illegal behavior
978// :70:17: note: when computing vector element at index '1'
966// :70:17: note: when computing vector element at index '0'
979967// :70:17: error: use of undefined value here causes illegal behavior
980// :70:17: note: when computing vector element at index '1'
968// :70:17: note: when computing vector element at index '0'
981969// :70:17: error: use of undefined value here causes illegal behavior
982// :70:17: note: when computing vector element at index '1'
970// :70:17: note: when computing vector element at index '0'
983971// :70:17: error: use of undefined value here causes illegal behavior
984// :70:17: note: when computing vector element at index '1'
972// :70:17: note: when computing vector element at index '0'
985973// :70:17: error: use of undefined value here causes illegal behavior
986974// :70:17: note: when computing vector element at index '0'
987975// :70:17: error: use of undefined value here causes illegal behavior
......@@ -991,11 +979,17 @@ const std = @import("std");
991979// :70:17: error: use of undefined value here causes illegal behavior
992980// :70:17: note: when computing vector element at index '0'
993981// :70:17: error: use of undefined value here causes illegal behavior
982// :70:17: note: when computing vector element at index '0'
994983// :70:17: error: use of undefined value here causes illegal behavior
984// :70:17: note: when computing vector element at index '0'
995985// :70:17: error: use of undefined value here causes illegal behavior
986// :70:17: note: when computing vector element at index '0'
996987// :70:17: error: use of undefined value here causes illegal behavior
988// :70:17: note: when computing vector element at index '0'
997989// :70:17: error: use of undefined value here causes illegal behavior
990// :70:17: note: when computing vector element at index '1'
998991// :70:17: error: use of undefined value here causes illegal behavior
992// :70:17: note: when computing vector element at index '1'
999993// :70:17: error: use of undefined value here causes illegal behavior
1000994// :70:17: note: when computing vector element at index '1'
1001995// :70:17: error: use of undefined value here causes illegal behavior
......@@ -1005,19 +999,25 @@ const std = @import("std");
1005999// :70:17: error: use of undefined value here causes illegal behavior
10061000// :70:17: note: when computing vector element at index '1'
10071001// :70:17: error: use of undefined value here causes illegal behavior
1008// :70:17: note: when computing vector element at index '0'
1002// :70:17: note: when computing vector element at index '1'
10091003// :70:17: error: use of undefined value here causes illegal behavior
1010// :70:17: note: when computing vector element at index '0'
1004// :70:17: note: when computing vector element at index '1'
10111005// :70:17: error: use of undefined value here causes illegal behavior
1012// :70:17: note: when computing vector element at index '0'
1006// :70:17: note: when computing vector element at index '1'
10131007// :70:17: error: use of undefined value here causes illegal behavior
1014// :70:17: note: when computing vector element at index '0'
1008// :70:17: note: when computing vector element at index '1'
10151009// :70:17: error: use of undefined value here causes illegal behavior
1010// :70:17: note: when computing vector element at index '1'
10161011// :70:17: error: use of undefined value here causes illegal behavior
1012// :70:17: note: when computing vector element at index '1'
10171013// :70:17: error: use of undefined value here causes illegal behavior
1014// :70:17: note: when computing vector element at index '1'
10181015// :70:17: error: use of undefined value here causes illegal behavior
1016// :70:17: note: when computing vector element at index '1'
10191017// :70:17: error: use of undefined value here causes illegal behavior
1018// :70:17: note: when computing vector element at index '1'
10201019// :70:17: error: use of undefined value here causes illegal behavior
1020// :70:17: note: when computing vector element at index '1'
10211021// :70:17: error: use of undefined value here causes illegal behavior
10221022// :70:17: note: when computing vector element at index '1'
10231023// :70:17: error: use of undefined value here causes illegal behavior
......@@ -1027,13 +1027,13 @@ const std = @import("std");
10271027// :70:17: error: use of undefined value here causes illegal behavior
10281028// :70:17: note: when computing vector element at index '1'
10291029// :70:17: error: use of undefined value here causes illegal behavior
1030// :70:17: note: when computing vector element at index '0'
1030// :70:17: note: when computing vector element at index '1'
10311031// :70:17: error: use of undefined value here causes illegal behavior
1032// :70:17: note: when computing vector element at index '0'
1032// :70:17: note: when computing vector element at index '1'
10331033// :70:17: error: use of undefined value here causes illegal behavior
1034// :70:17: note: when computing vector element at index '0'
1034// :70:17: note: when computing vector element at index '1'
10351035// :70:17: error: use of undefined value here causes illegal behavior
1036// :70:17: note: when computing vector element at index '0'
1036// :70:17: note: when computing vector element at index '1'
10371037// :73:27: error: use of undefined value here causes illegal behavior
10381038// :73:27: error: use of undefined value here causes illegal behavior
10391039// :73:27: error: use of undefined value here causes illegal behavior
......@@ -1041,21 +1041,13 @@ const std = @import("std");
10411041// :73:27: error: use of undefined value here causes illegal behavior
10421042// :73:27: error: use of undefined value here causes illegal behavior
10431043// :73:27: error: use of undefined value here causes illegal behavior
1044// :73:27: note: when computing vector element at index '1'
10451044// :73:27: error: use of undefined value here causes illegal behavior
1046// :73:27: note: when computing vector element at index '1'
10471045// :73:27: error: use of undefined value here causes illegal behavior
1048// :73:27: note: when computing vector element at index '1'
10491046// :73:27: error: use of undefined value here causes illegal behavior
1050// :73:27: note: when computing vector element at index '1'
10511047// :73:27: error: use of undefined value here causes illegal behavior
1052// :73:27: note: when computing vector element at index '0'
10531048// :73:27: error: use of undefined value here causes illegal behavior
1054// :73:27: note: when computing vector element at index '0'
10551049// :73:27: error: use of undefined value here causes illegal behavior
1056// :73:27: note: when computing vector element at index '0'
10571050// :73:27: error: use of undefined value here causes illegal behavior
1058// :73:27: note: when computing vector element at index '0'
10591051// :73:27: error: use of undefined value here causes illegal behavior
10601052// :73:27: error: use of undefined value here causes illegal behavior
10611053// :73:27: error: use of undefined value here causes illegal behavior
......@@ -1063,21 +1055,13 @@ const std = @import("std");
10631055// :73:27: error: use of undefined value here causes illegal behavior
10641056// :73:27: error: use of undefined value here causes illegal behavior
10651057// :73:27: error: use of undefined value here causes illegal behavior
1066// :73:27: note: when computing vector element at index '1'
10671058// :73:27: error: use of undefined value here causes illegal behavior
1068// :73:27: note: when computing vector element at index '1'
10691059// :73:27: error: use of undefined value here causes illegal behavior
1070// :73:27: note: when computing vector element at index '1'
10711060// :73:27: error: use of undefined value here causes illegal behavior
1072// :73:27: note: when computing vector element at index '1'
10731061// :73:27: error: use of undefined value here causes illegal behavior
1074// :73:27: note: when computing vector element at index '0'
10751062// :73:27: error: use of undefined value here causes illegal behavior
1076// :73:27: note: when computing vector element at index '0'
10771063// :73:27: error: use of undefined value here causes illegal behavior
1078// :73:27: note: when computing vector element at index '0'
10791064// :73:27: error: use of undefined value here causes illegal behavior
1080// :73:27: note: when computing vector element at index '0'
10811065// :73:27: error: use of undefined value here causes illegal behavior
10821066// :73:27: error: use of undefined value here causes illegal behavior
10831067// :73:27: error: use of undefined value here causes illegal behavior
......@@ -1085,13 +1069,11 @@ const std = @import("std");
10851069// :73:27: error: use of undefined value here causes illegal behavior
10861070// :73:27: error: use of undefined value here causes illegal behavior
10871071// :73:27: error: use of undefined value here causes illegal behavior
1088// :73:27: note: when computing vector element at index '1'
10891072// :73:27: error: use of undefined value here causes illegal behavior
1090// :73:27: note: when computing vector element at index '1'
10911073// :73:27: error: use of undefined value here causes illegal behavior
1092// :73:27: note: when computing vector element at index '1'
1074// :73:27: note: when computing vector element at index '0'
10931075// :73:27: error: use of undefined value here causes illegal behavior
1094// :73:27: note: when computing vector element at index '1'
1076// :73:27: note: when computing vector element at index '0'
10951077// :73:27: error: use of undefined value here causes illegal behavior
10961078// :73:27: note: when computing vector element at index '0'
10971079// :73:27: error: use of undefined value here causes illegal behavior
......@@ -1101,19 +1083,25 @@ const std = @import("std");
11011083// :73:27: error: use of undefined value here causes illegal behavior
11021084// :73:27: note: when computing vector element at index '0'
11031085// :73:27: error: use of undefined value here causes illegal behavior
1086// :73:27: note: when computing vector element at index '0'
11041087// :73:27: error: use of undefined value here causes illegal behavior
1088// :73:27: note: when computing vector element at index '0'
11051089// :73:27: error: use of undefined value here causes illegal behavior
1090// :73:27: note: when computing vector element at index '0'
11061091// :73:27: error: use of undefined value here causes illegal behavior
1092// :73:27: note: when computing vector element at index '0'
11071093// :73:27: error: use of undefined value here causes illegal behavior
1094// :73:27: note: when computing vector element at index '0'
11081095// :73:27: error: use of undefined value here causes illegal behavior
1096// :73:27: note: when computing vector element at index '0'
11091097// :73:27: error: use of undefined value here causes illegal behavior
1110// :73:27: note: when computing vector element at index '1'
1098// :73:27: note: when computing vector element at index '0'
11111099// :73:27: error: use of undefined value here causes illegal behavior
1112// :73:27: note: when computing vector element at index '1'
1100// :73:27: note: when computing vector element at index '0'
11131101// :73:27: error: use of undefined value here causes illegal behavior
1114// :73:27: note: when computing vector element at index '1'
1102// :73:27: note: when computing vector element at index '0'
11151103// :73:27: error: use of undefined value here causes illegal behavior
1116// :73:27: note: when computing vector element at index '1'
1104// :73:27: note: when computing vector element at index '0'
11171105// :73:27: error: use of undefined value here causes illegal behavior
11181106// :73:27: note: when computing vector element at index '0'
11191107// :73:27: error: use of undefined value here causes illegal behavior
......@@ -1123,11 +1111,17 @@ const std = @import("std");
11231111// :73:27: error: use of undefined value here causes illegal behavior
11241112// :73:27: note: when computing vector element at index '0'
11251113// :73:27: error: use of undefined value here causes illegal behavior
1114// :73:27: note: when computing vector element at index '0'
11261115// :73:27: error: use of undefined value here causes illegal behavior
1116// :73:27: note: when computing vector element at index '0'
11271117// :73:27: error: use of undefined value here causes illegal behavior
1118// :73:27: note: when computing vector element at index '0'
11281119// :73:27: error: use of undefined value here causes illegal behavior
1120// :73:27: note: when computing vector element at index '0'
11291121// :73:27: error: use of undefined value here causes illegal behavior
1122// :73:27: note: when computing vector element at index '1'
11301123// :73:27: error: use of undefined value here causes illegal behavior
1124// :73:27: note: when computing vector element at index '1'
11311125// :73:27: error: use of undefined value here causes illegal behavior
11321126// :73:27: note: when computing vector element at index '1'
11331127// :73:27: error: use of undefined value here causes illegal behavior
......@@ -1137,19 +1131,25 @@ const std = @import("std");
11371131// :73:27: error: use of undefined value here causes illegal behavior
11381132// :73:27: note: when computing vector element at index '1'
11391133// :73:27: error: use of undefined value here causes illegal behavior
1140// :73:27: note: when computing vector element at index '0'
1134// :73:27: note: when computing vector element at index '1'
11411135// :73:27: error: use of undefined value here causes illegal behavior
1142// :73:27: note: when computing vector element at index '0'
1136// :73:27: note: when computing vector element at index '1'
11431137// :73:27: error: use of undefined value here causes illegal behavior
1144// :73:27: note: when computing vector element at index '0'
1138// :73:27: note: when computing vector element at index '1'
11451139// :73:27: error: use of undefined value here causes illegal behavior
1146// :73:27: note: when computing vector element at index '0'
1140// :73:27: note: when computing vector element at index '1'
11471141// :73:27: error: use of undefined value here causes illegal behavior
1142// :73:27: note: when computing vector element at index '1'
11481143// :73:27: error: use of undefined value here causes illegal behavior
1144// :73:27: note: when computing vector element at index '1'
11491145// :73:27: error: use of undefined value here causes illegal behavior
1146// :73:27: note: when computing vector element at index '1'
11501147// :73:27: error: use of undefined value here causes illegal behavior
1148// :73:27: note: when computing vector element at index '1'
11511149// :73:27: error: use of undefined value here causes illegal behavior
1150// :73:27: note: when computing vector element at index '1'
11521151// :73:27: error: use of undefined value here causes illegal behavior
1152// :73:27: note: when computing vector element at index '1'
11531153// :73:27: error: use of undefined value here causes illegal behavior
11541154// :73:27: note: when computing vector element at index '1'
11551155// :73:27: error: use of undefined value here causes illegal behavior
......@@ -1159,13 +1159,13 @@ const std = @import("std");
11591159// :73:27: error: use of undefined value here causes illegal behavior
11601160// :73:27: note: when computing vector element at index '1'
11611161// :73:27: error: use of undefined value here causes illegal behavior
1162// :73:27: note: when computing vector element at index '0'
1162// :73:27: note: when computing vector element at index '1'
11631163// :73:27: error: use of undefined value here causes illegal behavior
1164// :73:27: note: when computing vector element at index '0'
1164// :73:27: note: when computing vector element at index '1'
11651165// :73:27: error: use of undefined value here causes illegal behavior
1166// :73:27: note: when computing vector element at index '0'
1166// :73:27: note: when computing vector element at index '1'
11671167// :73:27: error: use of undefined value here causes illegal behavior
1168// :73:27: note: when computing vector element at index '0'
1168// :73:27: note: when computing vector element at index '1'
11691169// :76:34: error: use of undefined value here causes illegal behavior
11701170// :76:34: error: use of undefined value here causes illegal behavior
11711171// :76:34: error: use of undefined value here causes illegal behavior
......@@ -1173,21 +1173,13 @@ const std = @import("std");
11731173// :76:34: error: use of undefined value here causes illegal behavior
11741174// :76:34: error: use of undefined value here causes illegal behavior
11751175// :76:34: error: use of undefined value here causes illegal behavior
1176// :76:34: note: when computing vector element at index '1'
11771176// :76:34: error: use of undefined value here causes illegal behavior
1178// :76:34: note: when computing vector element at index '1'
11791177// :76:34: error: use of undefined value here causes illegal behavior
1180// :76:34: note: when computing vector element at index '1'
11811178// :76:34: error: use of undefined value here causes illegal behavior
1182// :76:34: note: when computing vector element at index '1'
11831179// :76:34: error: use of undefined value here causes illegal behavior
1184// :76:34: note: when computing vector element at index '0'
11851180// :76:34: error: use of undefined value here causes illegal behavior
1186// :76:34: note: when computing vector element at index '0'
11871181// :76:34: error: use of undefined value here causes illegal behavior
1188// :76:34: note: when computing vector element at index '0'
11891182// :76:34: error: use of undefined value here causes illegal behavior
1190// :76:34: note: when computing vector element at index '0'
11911183// :76:34: error: use of undefined value here causes illegal behavior
11921184// :76:34: error: use of undefined value here causes illegal behavior
11931185// :76:34: error: use of undefined value here causes illegal behavior
......@@ -1195,21 +1187,13 @@ const std = @import("std");
11951187// :76:34: error: use of undefined value here causes illegal behavior
11961188// :76:34: error: use of undefined value here causes illegal behavior
11971189// :76:34: error: use of undefined value here causes illegal behavior
1198// :76:34: note: when computing vector element at index '1'
11991190// :76:34: error: use of undefined value here causes illegal behavior
1200// :76:34: note: when computing vector element at index '1'
12011191// :76:34: error: use of undefined value here causes illegal behavior
1202// :76:34: note: when computing vector element at index '1'
12031192// :76:34: error: use of undefined value here causes illegal behavior
1204// :76:34: note: when computing vector element at index '1'
12051193// :76:34: error: use of undefined value here causes illegal behavior
1206// :76:34: note: when computing vector element at index '0'
12071194// :76:34: error: use of undefined value here causes illegal behavior
1208// :76:34: note: when computing vector element at index '0'
12091195// :76:34: error: use of undefined value here causes illegal behavior
1210// :76:34: note: when computing vector element at index '0'
12111196// :76:34: error: use of undefined value here causes illegal behavior
1212// :76:34: note: when computing vector element at index '0'
12131197// :76:34: error: use of undefined value here causes illegal behavior
12141198// :76:34: error: use of undefined value here causes illegal behavior
12151199// :76:34: error: use of undefined value here causes illegal behavior
......@@ -1217,13 +1201,11 @@ const std = @import("std");
12171201// :76:34: error: use of undefined value here causes illegal behavior
12181202// :76:34: error: use of undefined value here causes illegal behavior
12191203// :76:34: error: use of undefined value here causes illegal behavior
1220// :76:34: note: when computing vector element at index '1'
12211204// :76:34: error: use of undefined value here causes illegal behavior
1222// :76:34: note: when computing vector element at index '1'
12231205// :76:34: error: use of undefined value here causes illegal behavior
1224// :76:34: note: when computing vector element at index '1'
1206// :76:34: note: when computing vector element at index '0'
12251207// :76:34: error: use of undefined value here causes illegal behavior
1226// :76:34: note: when computing vector element at index '1'
1208// :76:34: note: when computing vector element at index '0'
12271209// :76:34: error: use of undefined value here causes illegal behavior
12281210// :76:34: note: when computing vector element at index '0'
12291211// :76:34: error: use of undefined value here causes illegal behavior
......@@ -1233,19 +1215,25 @@ const std = @import("std");
12331215// :76:34: error: use of undefined value here causes illegal behavior
12341216// :76:34: note: when computing vector element at index '0'
12351217// :76:34: error: use of undefined value here causes illegal behavior
1218// :76:34: note: when computing vector element at index '0'
12361219// :76:34: error: use of undefined value here causes illegal behavior
1220// :76:34: note: when computing vector element at index '0'
12371221// :76:34: error: use of undefined value here causes illegal behavior
1222// :76:34: note: when computing vector element at index '0'
12381223// :76:34: error: use of undefined value here causes illegal behavior
1224// :76:34: note: when computing vector element at index '0'
12391225// :76:34: error: use of undefined value here causes illegal behavior
1226// :76:34: note: when computing vector element at index '0'
12401227// :76:34: error: use of undefined value here causes illegal behavior
1228// :76:34: note: when computing vector element at index '0'
12411229// :76:34: error: use of undefined value here causes illegal behavior
1242// :76:34: note: when computing vector element at index '1'
1230// :76:34: note: when computing vector element at index '0'
12431231// :76:34: error: use of undefined value here causes illegal behavior
1244// :76:34: note: when computing vector element at index '1'
1232// :76:34: note: when computing vector element at index '0'
12451233// :76:34: error: use of undefined value here causes illegal behavior
1246// :76:34: note: when computing vector element at index '1'
1234// :76:34: note: when computing vector element at index '0'
12471235// :76:34: error: use of undefined value here causes illegal behavior
1248// :76:34: note: when computing vector element at index '1'
1236// :76:34: note: when computing vector element at index '0'
12491237// :76:34: error: use of undefined value here causes illegal behavior
12501238// :76:34: note: when computing vector element at index '0'
12511239// :76:34: error: use of undefined value here causes illegal behavior
......@@ -1255,11 +1243,17 @@ const std = @import("std");
12551243// :76:34: error: use of undefined value here causes illegal behavior
12561244// :76:34: note: when computing vector element at index '0'
12571245// :76:34: error: use of undefined value here causes illegal behavior
1246// :76:34: note: when computing vector element at index '0'
12581247// :76:34: error: use of undefined value here causes illegal behavior
1248// :76:34: note: when computing vector element at index '0'
12591249// :76:34: error: use of undefined value here causes illegal behavior
1250// :76:34: note: when computing vector element at index '0'
12601251// :76:34: error: use of undefined value here causes illegal behavior
1252// :76:34: note: when computing vector element at index '0'
12611253// :76:34: error: use of undefined value here causes illegal behavior
1254// :76:34: note: when computing vector element at index '1'
12621255// :76:34: error: use of undefined value here causes illegal behavior
1256// :76:34: note: when computing vector element at index '1'
12631257// :76:34: error: use of undefined value here causes illegal behavior
12641258// :76:34: note: when computing vector element at index '1'
12651259// :76:34: error: use of undefined value here causes illegal behavior
......@@ -1269,19 +1263,25 @@ const std = @import("std");
12691263// :76:34: error: use of undefined value here causes illegal behavior
12701264// :76:34: note: when computing vector element at index '1'
12711265// :76:34: error: use of undefined value here causes illegal behavior
1272// :76:34: note: when computing vector element at index '0'
1266// :76:34: note: when computing vector element at index '1'
12731267// :76:34: error: use of undefined value here causes illegal behavior
1274// :76:34: note: when computing vector element at index '0'
1268// :76:34: note: when computing vector element at index '1'
12751269// :76:34: error: use of undefined value here causes illegal behavior
1276// :76:34: note: when computing vector element at index '0'
1270// :76:34: note: when computing vector element at index '1'
12771271// :76:34: error: use of undefined value here causes illegal behavior
1278// :76:34: note: when computing vector element at index '0'
1272// :76:34: note: when computing vector element at index '1'
12791273// :76:34: error: use of undefined value here causes illegal behavior
1274// :76:34: note: when computing vector element at index '1'
12801275// :76:34: error: use of undefined value here causes illegal behavior
1276// :76:34: note: when computing vector element at index '1'
12811277// :76:34: error: use of undefined value here causes illegal behavior
1278// :76:34: note: when computing vector element at index '1'
12821279// :76:34: error: use of undefined value here causes illegal behavior
1280// :76:34: note: when computing vector element at index '1'
12831281// :76:34: error: use of undefined value here causes illegal behavior
1282// :76:34: note: when computing vector element at index '1'
12841283// :76:34: error: use of undefined value here causes illegal behavior
1284// :76:34: note: when computing vector element at index '1'
12851285// :76:34: error: use of undefined value here causes illegal behavior
12861286// :76:34: note: when computing vector element at index '1'
12871287// :76:34: error: use of undefined value here causes illegal behavior
......@@ -1291,13 +1291,13 @@ const std = @import("std");
12911291// :76:34: error: use of undefined value here causes illegal behavior
12921292// :76:34: note: when computing vector element at index '1'
12931293// :76:34: error: use of undefined value here causes illegal behavior
1294// :76:34: note: when computing vector element at index '0'
1294// :76:34: note: when computing vector element at index '1'
12951295// :76:34: error: use of undefined value here causes illegal behavior
1296// :76:34: note: when computing vector element at index '0'
1296// :76:34: note: when computing vector element at index '1'
12971297// :76:34: error: use of undefined value here causes illegal behavior
1298// :76:34: note: when computing vector element at index '0'
1298// :76:34: note: when computing vector element at index '1'
12991299// :76:34: error: use of undefined value here causes illegal behavior
1300// :76:34: note: when computing vector element at index '0'
1300// :76:34: note: when computing vector element at index '1'
13011301// :79:17: error: use of undefined value here causes illegal behavior
13021302// :79:17: error: use of undefined value here causes illegal behavior
13031303// :79:17: error: use of undefined value here causes illegal behavior
......@@ -1305,21 +1305,13 @@ const std = @import("std");
13051305// :79:17: error: use of undefined value here causes illegal behavior
13061306// :79:17: error: use of undefined value here causes illegal behavior
13071307// :79:17: error: use of undefined value here causes illegal behavior
1308// :79:17: note: when computing vector element at index '1'
13091308// :79:17: error: use of undefined value here causes illegal behavior
1310// :79:17: note: when computing vector element at index '1'
13111309// :79:17: error: use of undefined value here causes illegal behavior
1312// :79:17: note: when computing vector element at index '1'
13131310// :79:17: error: use of undefined value here causes illegal behavior
1314// :79:17: note: when computing vector element at index '1'
13151311// :79:17: error: use of undefined value here causes illegal behavior
1316// :79:17: note: when computing vector element at index '0'
13171312// :79:17: error: use of undefined value here causes illegal behavior
1318// :79:17: note: when computing vector element at index '0'
13191313// :79:17: error: use of undefined value here causes illegal behavior
1320// :79:17: note: when computing vector element at index '0'
13211314// :79:17: error: use of undefined value here causes illegal behavior
1322// :79:17: note: when computing vector element at index '0'
13231315// :79:17: error: use of undefined value here causes illegal behavior
13241316// :79:17: error: use of undefined value here causes illegal behavior
13251317// :79:17: error: use of undefined value here causes illegal behavior
......@@ -1327,21 +1319,13 @@ const std = @import("std");
13271319// :79:17: error: use of undefined value here causes illegal behavior
13281320// :79:17: error: use of undefined value here causes illegal behavior
13291321// :79:17: error: use of undefined value here causes illegal behavior
1330// :79:17: note: when computing vector element at index '1'
13311322// :79:17: error: use of undefined value here causes illegal behavior
1332// :79:17: note: when computing vector element at index '1'
13331323// :79:17: error: use of undefined value here causes illegal behavior
1334// :79:17: note: when computing vector element at index '1'
13351324// :79:17: error: use of undefined value here causes illegal behavior
1336// :79:17: note: when computing vector element at index '1'
13371325// :79:17: error: use of undefined value here causes illegal behavior
1338// :79:17: note: when computing vector element at index '0'
13391326// :79:17: error: use of undefined value here causes illegal behavior
1340// :79:17: note: when computing vector element at index '0'
13411327// :79:17: error: use of undefined value here causes illegal behavior
1342// :79:17: note: when computing vector element at index '0'
13431328// :79:17: error: use of undefined value here causes illegal behavior
1344// :79:17: note: when computing vector element at index '0'
13451329// :79:17: error: use of undefined value here causes illegal behavior
13461330// :79:17: error: use of undefined value here causes illegal behavior
13471331// :79:17: error: use of undefined value here causes illegal behavior
......@@ -1349,13 +1333,11 @@ const std = @import("std");
13491333// :79:17: error: use of undefined value here causes illegal behavior
13501334// :79:17: error: use of undefined value here causes illegal behavior
13511335// :79:17: error: use of undefined value here causes illegal behavior
1352// :79:17: note: when computing vector element at index '1'
13531336// :79:17: error: use of undefined value here causes illegal behavior
1354// :79:17: note: when computing vector element at index '1'
13551337// :79:17: error: use of undefined value here causes illegal behavior
1356// :79:17: note: when computing vector element at index '1'
1338// :79:17: note: when computing vector element at index '0'
13571339// :79:17: error: use of undefined value here causes illegal behavior
1358// :79:17: note: when computing vector element at index '1'
1340// :79:17: note: when computing vector element at index '0'
13591341// :79:17: error: use of undefined value here causes illegal behavior
13601342// :79:17: note: when computing vector element at index '0'
13611343// :79:17: error: use of undefined value here causes illegal behavior
......@@ -1365,19 +1347,25 @@ const std = @import("std");
13651347// :79:17: error: use of undefined value here causes illegal behavior
13661348// :79:17: note: when computing vector element at index '0'
13671349// :79:17: error: use of undefined value here causes illegal behavior
1350// :79:17: note: when computing vector element at index '0'
13681351// :79:17: error: use of undefined value here causes illegal behavior
1352// :79:17: note: when computing vector element at index '0'
13691353// :79:17: error: use of undefined value here causes illegal behavior
1354// :79:17: note: when computing vector element at index '0'
13701355// :79:17: error: use of undefined value here causes illegal behavior
1356// :79:17: note: when computing vector element at index '0'
13711357// :79:17: error: use of undefined value here causes illegal behavior
1358// :79:17: note: when computing vector element at index '0'
13721359// :79:17: error: use of undefined value here causes illegal behavior
1360// :79:17: note: when computing vector element at index '0'
13731361// :79:17: error: use of undefined value here causes illegal behavior
1374// :79:17: note: when computing vector element at index '1'
1362// :79:17: note: when computing vector element at index '0'
13751363// :79:17: error: use of undefined value here causes illegal behavior
1376// :79:17: note: when computing vector element at index '1'
1364// :79:17: note: when computing vector element at index '0'
13771365// :79:17: error: use of undefined value here causes illegal behavior
1378// :79:17: note: when computing vector element at index '1'
1366// :79:17: note: when computing vector element at index '0'
13791367// :79:17: error: use of undefined value here causes illegal behavior
1380// :79:17: note: when computing vector element at index '1'
1368// :79:17: note: when computing vector element at index '0'
13811369// :79:17: error: use of undefined value here causes illegal behavior
13821370// :79:17: note: when computing vector element at index '0'
13831371// :79:17: error: use of undefined value here causes illegal behavior
......@@ -1387,11 +1375,17 @@ const std = @import("std");
13871375// :79:17: error: use of undefined value here causes illegal behavior
13881376// :79:17: note: when computing vector element at index '0'
13891377// :79:17: error: use of undefined value here causes illegal behavior
1378// :79:17: note: when computing vector element at index '0'
13901379// :79:17: error: use of undefined value here causes illegal behavior
1380// :79:17: note: when computing vector element at index '0'
13911381// :79:17: error: use of undefined value here causes illegal behavior
1382// :79:17: note: when computing vector element at index '0'
13921383// :79:17: error: use of undefined value here causes illegal behavior
1384// :79:17: note: when computing vector element at index '0'
13931385// :79:17: error: use of undefined value here causes illegal behavior
1386// :79:17: note: when computing vector element at index '1'
13941387// :79:17: error: use of undefined value here causes illegal behavior
1388// :79:17: note: when computing vector element at index '1'
13951389// :79:17: error: use of undefined value here causes illegal behavior
13961390// :79:17: note: when computing vector element at index '1'
13971391// :79:17: error: use of undefined value here causes illegal behavior
......@@ -1401,19 +1395,25 @@ const std = @import("std");
14011395// :79:17: error: use of undefined value here causes illegal behavior
14021396// :79:17: note: when computing vector element at index '1'
14031397// :79:17: error: use of undefined value here causes illegal behavior
1404// :79:17: note: when computing vector element at index '0'
1398// :79:17: note: when computing vector element at index '1'
14051399// :79:17: error: use of undefined value here causes illegal behavior
1406// :79:17: note: when computing vector element at index '0'
1400// :79:17: note: when computing vector element at index '1'
14071401// :79:17: error: use of undefined value here causes illegal behavior
1408// :79:17: note: when computing vector element at index '0'
1402// :79:17: note: when computing vector element at index '1'
14091403// :79:17: error: use of undefined value here causes illegal behavior
1410// :79:17: note: when computing vector element at index '0'
1404// :79:17: note: when computing vector element at index '1'
14111405// :79:17: error: use of undefined value here causes illegal behavior
1406// :79:17: note: when computing vector element at index '1'
14121407// :79:17: error: use of undefined value here causes illegal behavior
1408// :79:17: note: when computing vector element at index '1'
14131409// :79:17: error: use of undefined value here causes illegal behavior
1410// :79:17: note: when computing vector element at index '1'
14141411// :79:17: error: use of undefined value here causes illegal behavior
1412// :79:17: note: when computing vector element at index '1'
14151413// :79:17: error: use of undefined value here causes illegal behavior
1414// :79:17: note: when computing vector element at index '1'
14161415// :79:17: error: use of undefined value here causes illegal behavior
1416// :79:17: note: when computing vector element at index '1'
14171417// :79:17: error: use of undefined value here causes illegal behavior
14181418// :79:17: note: when computing vector element at index '1'
14191419// :79:17: error: use of undefined value here causes illegal behavior
......@@ -1423,13 +1423,13 @@ const std = @import("std");
14231423// :79:17: error: use of undefined value here causes illegal behavior
14241424// :79:17: note: when computing vector element at index '1'
14251425// :79:17: error: use of undefined value here causes illegal behavior
1426// :79:17: note: when computing vector element at index '0'
1426// :79:17: note: when computing vector element at index '1'
14271427// :79:17: error: use of undefined value here causes illegal behavior
1428// :79:17: note: when computing vector element at index '0'
1428// :79:17: note: when computing vector element at index '1'
14291429// :79:17: error: use of undefined value here causes illegal behavior
1430// :79:17: note: when computing vector element at index '0'
1430// :79:17: note: when computing vector element at index '1'
14311431// :79:17: error: use of undefined value here causes illegal behavior
1432// :79:17: note: when computing vector element at index '0'
1432// :79:17: note: when computing vector element at index '1'
14331433// :82:27: error: use of undefined value here causes illegal behavior
14341434// :82:27: error: use of undefined value here causes illegal behavior
14351435// :82:27: error: use of undefined value here causes illegal behavior
......@@ -1437,21 +1437,13 @@ const std = @import("std");
14371437// :82:27: error: use of undefined value here causes illegal behavior
14381438// :82:27: error: use of undefined value here causes illegal behavior
14391439// :82:27: error: use of undefined value here causes illegal behavior
1440// :82:27: note: when computing vector element at index '1'
14411440// :82:27: error: use of undefined value here causes illegal behavior
1442// :82:27: note: when computing vector element at index '1'
14431441// :82:27: error: use of undefined value here causes illegal behavior
1444// :82:27: note: when computing vector element at index '1'
14451442// :82:27: error: use of undefined value here causes illegal behavior
1446// :82:27: note: when computing vector element at index '1'
14471443// :82:27: error: use of undefined value here causes illegal behavior
1448// :82:27: note: when computing vector element at index '0'
14491444// :82:27: error: use of undefined value here causes illegal behavior
1450// :82:27: note: when computing vector element at index '0'
14511445// :82:27: error: use of undefined value here causes illegal behavior
1452// :82:27: note: when computing vector element at index '0'
14531446// :82:27: error: use of undefined value here causes illegal behavior
1454// :82:27: note: when computing vector element at index '0'
14551447// :82:27: error: use of undefined value here causes illegal behavior
14561448// :82:27: error: use of undefined value here causes illegal behavior
14571449// :82:27: error: use of undefined value here causes illegal behavior
......@@ -1459,21 +1451,13 @@ const std = @import("std");
14591451// :82:27: error: use of undefined value here causes illegal behavior
14601452// :82:27: error: use of undefined value here causes illegal behavior
14611453// :82:27: error: use of undefined value here causes illegal behavior
1462// :82:27: note: when computing vector element at index '1'
14631454// :82:27: error: use of undefined value here causes illegal behavior
1464// :82:27: note: when computing vector element at index '1'
14651455// :82:27: error: use of undefined value here causes illegal behavior
1466// :82:27: note: when computing vector element at index '1'
14671456// :82:27: error: use of undefined value here causes illegal behavior
1468// :82:27: note: when computing vector element at index '1'
14691457// :82:27: error: use of undefined value here causes illegal behavior
1470// :82:27: note: when computing vector element at index '0'
14711458// :82:27: error: use of undefined value here causes illegal behavior
1472// :82:27: note: when computing vector element at index '0'
14731459// :82:27: error: use of undefined value here causes illegal behavior
1474// :82:27: note: when computing vector element at index '0'
14751460// :82:27: error: use of undefined value here causes illegal behavior
1476// :82:27: note: when computing vector element at index '0'
14771461// :82:27: error: use of undefined value here causes illegal behavior
14781462// :82:27: error: use of undefined value here causes illegal behavior
14791463// :82:27: error: use of undefined value here causes illegal behavior
......@@ -1481,13 +1465,11 @@ const std = @import("std");
14811465// :82:27: error: use of undefined value here causes illegal behavior
14821466// :82:27: error: use of undefined value here causes illegal behavior
14831467// :82:27: error: use of undefined value here causes illegal behavior
1484// :82:27: note: when computing vector element at index '1'
14851468// :82:27: error: use of undefined value here causes illegal behavior
1486// :82:27: note: when computing vector element at index '1'
14871469// :82:27: error: use of undefined value here causes illegal behavior
1488// :82:27: note: when computing vector element at index '1'
1470// :82:27: note: when computing vector element at index '0'
14891471// :82:27: error: use of undefined value here causes illegal behavior
1490// :82:27: note: when computing vector element at index '1'
1472// :82:27: note: when computing vector element at index '0'
14911473// :82:27: error: use of undefined value here causes illegal behavior
14921474// :82:27: note: when computing vector element at index '0'
14931475// :82:27: error: use of undefined value here causes illegal behavior
......@@ -1497,19 +1479,25 @@ const std = @import("std");
14971479// :82:27: error: use of undefined value here causes illegal behavior
14981480// :82:27: note: when computing vector element at index '0'
14991481// :82:27: error: use of undefined value here causes illegal behavior
1482// :82:27: note: when computing vector element at index '0'
15001483// :82:27: error: use of undefined value here causes illegal behavior
1484// :82:27: note: when computing vector element at index '0'
15011485// :82:27: error: use of undefined value here causes illegal behavior
1486// :82:27: note: when computing vector element at index '0'
15021487// :82:27: error: use of undefined value here causes illegal behavior
1488// :82:27: note: when computing vector element at index '0'
15031489// :82:27: error: use of undefined value here causes illegal behavior
1490// :82:27: note: when computing vector element at index '0'
15041491// :82:27: error: use of undefined value here causes illegal behavior
1492// :82:27: note: when computing vector element at index '0'
15051493// :82:27: error: use of undefined value here causes illegal behavior
1506// :82:27: note: when computing vector element at index '1'
1494// :82:27: note: when computing vector element at index '0'
15071495// :82:27: error: use of undefined value here causes illegal behavior
1508// :82:27: note: when computing vector element at index '1'
1496// :82:27: note: when computing vector element at index '0'
15091497// :82:27: error: use of undefined value here causes illegal behavior
1510// :82:27: note: when computing vector element at index '1'
1498// :82:27: note: when computing vector element at index '0'
15111499// :82:27: error: use of undefined value here causes illegal behavior
1512// :82:27: note: when computing vector element at index '1'
1500// :82:27: note: when computing vector element at index '0'
15131501// :82:27: error: use of undefined value here causes illegal behavior
15141502// :82:27: note: when computing vector element at index '0'
15151503// :82:27: error: use of undefined value here causes illegal behavior
......@@ -1519,11 +1507,17 @@ const std = @import("std");
15191507// :82:27: error: use of undefined value here causes illegal behavior
15201508// :82:27: note: when computing vector element at index '0'
15211509// :82:27: error: use of undefined value here causes illegal behavior
1510// :82:27: note: when computing vector element at index '0'
15221511// :82:27: error: use of undefined value here causes illegal behavior
1512// :82:27: note: when computing vector element at index '0'
15231513// :82:27: error: use of undefined value here causes illegal behavior
1514// :82:27: note: when computing vector element at index '0'
15241515// :82:27: error: use of undefined value here causes illegal behavior
1516// :82:27: note: when computing vector element at index '0'
15251517// :82:27: error: use of undefined value here causes illegal behavior
1518// :82:27: note: when computing vector element at index '1'
15261519// :82:27: error: use of undefined value here causes illegal behavior
1520// :82:27: note: when computing vector element at index '1'
15271521// :82:27: error: use of undefined value here causes illegal behavior
15281522// :82:27: note: when computing vector element at index '1'
15291523// :82:27: error: use of undefined value here causes illegal behavior
......@@ -1533,19 +1527,25 @@ const std = @import("std");
15331527// :82:27: error: use of undefined value here causes illegal behavior
15341528// :82:27: note: when computing vector element at index '1'
15351529// :82:27: error: use of undefined value here causes illegal behavior
1536// :82:27: note: when computing vector element at index '0'
1530// :82:27: note: when computing vector element at index '1'
15371531// :82:27: error: use of undefined value here causes illegal behavior
1538// :82:27: note: when computing vector element at index '0'
1532// :82:27: note: when computing vector element at index '1'
15391533// :82:27: error: use of undefined value here causes illegal behavior
1540// :82:27: note: when computing vector element at index '0'
1534// :82:27: note: when computing vector element at index '1'
15411535// :82:27: error: use of undefined value here causes illegal behavior
1542// :82:27: note: when computing vector element at index '0'
1536// :82:27: note: when computing vector element at index '1'
15431537// :82:27: error: use of undefined value here causes illegal behavior
1538// :82:27: note: when computing vector element at index '1'
15441539// :82:27: error: use of undefined value here causes illegal behavior
1540// :82:27: note: when computing vector element at index '1'
15451541// :82:27: error: use of undefined value here causes illegal behavior
1542// :82:27: note: when computing vector element at index '1'
15461543// :82:27: error: use of undefined value here causes illegal behavior
1544// :82:27: note: when computing vector element at index '1'
15471545// :82:27: error: use of undefined value here causes illegal behavior
1546// :82:27: note: when computing vector element at index '1'
15481547// :82:27: error: use of undefined value here causes illegal behavior
1548// :82:27: note: when computing vector element at index '1'
15491549// :82:27: error: use of undefined value here causes illegal behavior
15501550// :82:27: note: when computing vector element at index '1'
15511551// :82:27: error: use of undefined value here causes illegal behavior
......@@ -1555,44 +1555,37 @@ const std = @import("std");
15551555// :82:27: error: use of undefined value here causes illegal behavior
15561556// :82:27: note: when computing vector element at index '1'
15571557// :82:27: error: use of undefined value here causes illegal behavior
1558// :82:27: note: when computing vector element at index '0'
1558// :82:27: note: when computing vector element at index '1'
15591559// :82:27: error: use of undefined value here causes illegal behavior
1560// :82:27: note: when computing vector element at index '0'
1560// :82:27: note: when computing vector element at index '1'
15611561// :82:27: error: use of undefined value here causes illegal behavior
1562// :82:27: note: when computing vector element at index '0'
1562// :82:27: note: when computing vector element at index '1'
15631563// :82:27: error: use of undefined value here causes illegal behavior
1564// :82:27: note: when computing vector element at index '0'
1564// :82:27: note: when computing vector element at index '1'
15651565// :87:17: error: use of undefined value here causes illegal behavior
15661566// :87:17: error: use of undefined value here causes illegal behavior
1567// :87:17: note: when computing vector element at index '0'
15681567// :87:17: error: use of undefined value here causes illegal behavior
1569// :87:17: note: when computing vector element at index '0'
15701568// :87:17: error: use of undefined value here causes illegal behavior
1571// :87:17: note: when computing vector element at index '0'
15721569// :87:17: error: use of undefined value here causes illegal behavior
1573// :87:17: note: when computing vector element at index '1'
15741570// :87:17: error: use of undefined value here causes illegal behavior
1575// :87:17: note: when computing vector element at index '0'
15761571// :87:17: error: use of undefined value here causes illegal behavior
15771572// :87:17: note: when computing vector element at index '0'
15781573// :87:17: error: use of undefined value here causes illegal behavior
15791574// :87:17: note: when computing vector element at index '0'
15801575// :87:17: error: use of undefined value here causes illegal behavior
1581// :87:17: error: use of undefined value here causes illegal behavior
15821576// :87:17: note: when computing vector element at index '0'
15831577// :87:17: error: use of undefined value here causes illegal behavior
15841578// :87:17: note: when computing vector element at index '0'
15851579// :87:17: error: use of undefined value here causes illegal behavior
15861580// :87:17: note: when computing vector element at index '0'
15871581// :87:17: error: use of undefined value here causes illegal behavior
1588// :87:17: note: when computing vector element at index '1'
1589// :87:17: error: use of undefined value here causes illegal behavior
15901582// :87:17: note: when computing vector element at index '0'
15911583// :87:17: error: use of undefined value here causes illegal behavior
15921584// :87:17: note: when computing vector element at index '0'
15931585// :87:17: error: use of undefined value here causes illegal behavior
15941586// :87:17: note: when computing vector element at index '0'
15951587// :87:17: error: use of undefined value here causes illegal behavior
1588// :87:17: note: when computing vector element at index '0'
15961589// :87:17: error: use of undefined value here causes illegal behavior
15971590// :87:17: note: when computing vector element at index '0'
15981591// :87:17: error: use of undefined value here causes illegal behavior
......@@ -1600,7 +1593,7 @@ const std = @import("std");
16001593// :87:17: error: use of undefined value here causes illegal behavior
16011594// :87:17: note: when computing vector element at index '0'
16021595// :87:17: error: use of undefined value here causes illegal behavior
1603// :87:17: note: when computing vector element at index '1'
1596// :87:17: note: when computing vector element at index '0'
16041597// :87:17: error: use of undefined value here causes illegal behavior
16051598// :87:17: note: when computing vector element at index '0'
16061599// :87:17: error: use of undefined value here causes illegal behavior
......@@ -1608,6 +1601,7 @@ const std = @import("std");
16081601// :87:17: error: use of undefined value here causes illegal behavior
16091602// :87:17: note: when computing vector element at index '0'
16101603// :87:17: error: use of undefined value here causes illegal behavior
1604// :87:17: note: when computing vector element at index '0'
16111605// :87:17: error: use of undefined value here causes illegal behavior
16121606// :87:17: note: when computing vector element at index '0'
16131607// :87:17: error: use of undefined value here causes illegal behavior
......@@ -1615,7 +1609,7 @@ const std = @import("std");
16151609// :87:17: error: use of undefined value here causes illegal behavior
16161610// :87:17: note: when computing vector element at index '0'
16171611// :87:17: error: use of undefined value here causes illegal behavior
1618// :87:17: note: when computing vector element at index '1'
1612// :87:17: note: when computing vector element at index '0'
16191613// :87:17: error: use of undefined value here causes illegal behavior
16201614// :87:17: note: when computing vector element at index '0'
16211615// :87:17: error: use of undefined value here causes illegal behavior
......@@ -1623,6 +1617,7 @@ const std = @import("std");
16231617// :87:17: error: use of undefined value here causes illegal behavior
16241618// :87:17: note: when computing vector element at index '0'
16251619// :87:17: error: use of undefined value here causes illegal behavior
1620// :87:17: note: when computing vector element at index '0'
16261621// :87:17: error: use of undefined value here causes illegal behavior
16271622// :87:17: note: when computing vector element at index '0'
16281623// :87:17: error: use of undefined value here causes illegal behavior
......@@ -1630,7 +1625,7 @@ const std = @import("std");
16301625// :87:17: error: use of undefined value here causes illegal behavior
16311626// :87:17: note: when computing vector element at index '0'
16321627// :87:17: error: use of undefined value here causes illegal behavior
1633// :87:17: note: when computing vector element at index '1'
1628// :87:17: note: when computing vector element at index '0'
16341629// :87:17: error: use of undefined value here causes illegal behavior
16351630// :87:17: note: when computing vector element at index '0'
16361631// :87:17: error: use of undefined value here causes illegal behavior
......@@ -1638,6 +1633,7 @@ const std = @import("std");
16381633// :87:17: error: use of undefined value here causes illegal behavior
16391634// :87:17: note: when computing vector element at index '0'
16401635// :87:17: error: use of undefined value here causes illegal behavior
1636// :87:17: note: when computing vector element at index '0'
16411637// :87:17: error: use of undefined value here causes illegal behavior
16421638// :87:17: note: when computing vector element at index '0'
16431639// :87:17: error: use of undefined value here causes illegal behavior
......@@ -1647,108 +1643,105 @@ const std = @import("std");
16471643// :87:17: error: use of undefined value here causes illegal behavior
16481644// :87:17: note: when computing vector element at index '1'
16491645// :87:17: error: use of undefined value here causes illegal behavior
1650// :87:17: note: when computing vector element at index '0'
1646// :87:17: note: when computing vector element at index '1'
16511647// :87:17: error: use of undefined value here causes illegal behavior
1652// :87:17: note: when computing vector element at index '0'
1648// :87:17: note: when computing vector element at index '1'
16531649// :87:17: error: use of undefined value here causes illegal behavior
1654// :87:17: note: when computing vector element at index '0'
1650// :87:17: note: when computing vector element at index '1'
1651// :87:17: error: use of undefined value here causes illegal behavior
1652// :87:17: note: when computing vector element at index '1'
1653// :87:17: error: use of undefined value here causes illegal behavior
1654// :87:17: note: when computing vector element at index '1'
16551655// :87:22: error: use of undefined value here causes illegal behavior
16561656// :87:22: error: use of undefined value here causes illegal behavior
1657// :87:22: note: when computing vector element at index '0'
16581657// :87:22: error: use of undefined value here causes illegal behavior
1659// :87:22: note: when computing vector element at index '0'
16601658// :87:22: error: use of undefined value here causes illegal behavior
1661// :87:22: note: when computing vector element at index '1'
16621659// :87:22: error: use of undefined value here causes illegal behavior
1663// :87:22: note: when computing vector element at index '0'
16641660// :87:22: error: use of undefined value here causes illegal behavior
1665// :87:22: note: when computing vector element at index '0'
16661661// :87:22: error: use of undefined value here causes illegal behavior
1662// :87:22: note: when computing vector element at index '0'
16671663// :87:22: error: use of undefined value here causes illegal behavior
16681664// :87:22: note: when computing vector element at index '0'
16691665// :87:22: error: use of undefined value here causes illegal behavior
16701666// :87:22: note: when computing vector element at index '0'
16711667// :87:22: error: use of undefined value here causes illegal behavior
1672// :87:22: note: when computing vector element at index '1'
1668// :87:22: note: when computing vector element at index '0'
16731669// :87:22: error: use of undefined value here causes illegal behavior
16741670// :87:22: note: when computing vector element at index '0'
16751671// :87:22: error: use of undefined value here causes illegal behavior
16761672// :87:22: note: when computing vector element at index '0'
16771673// :87:22: error: use of undefined value here causes illegal behavior
1674// :87:22: note: when computing vector element at index '0'
16781675// :87:22: error: use of undefined value here causes illegal behavior
16791676// :87:22: note: when computing vector element at index '0'
16801677// :87:22: error: use of undefined value here causes illegal behavior
16811678// :87:22: note: when computing vector element at index '0'
16821679// :87:22: error: use of undefined value here causes illegal behavior
1683// :87:22: note: when computing vector element at index '1'
1680// :87:22: note: when computing vector element at index '0'
16841681// :87:22: error: use of undefined value here causes illegal behavior
16851682// :87:22: note: when computing vector element at index '0'
16861683// :87:22: error: use of undefined value here causes illegal behavior
16871684// :87:22: note: when computing vector element at index '0'
16881685// :87:22: error: use of undefined value here causes illegal behavior
1686// :87:22: note: when computing vector element at index '0'
16891687// :87:22: error: use of undefined value here causes illegal behavior
16901688// :87:22: note: when computing vector element at index '0'
16911689// :87:22: error: use of undefined value here causes illegal behavior
16921690// :87:22: note: when computing vector element at index '0'
16931691// :87:22: error: use of undefined value here causes illegal behavior
1694// :87:22: note: when computing vector element at index '1'
1692// :87:22: note: when computing vector element at index '0'
16951693// :87:22: error: use of undefined value here causes illegal behavior
16961694// :87:22: note: when computing vector element at index '0'
16971695// :87:22: error: use of undefined value here causes illegal behavior
16981696// :87:22: note: when computing vector element at index '0'
16991697// :87:22: error: use of undefined value here causes illegal behavior
1698// :87:22: note: when computing vector element at index '0'
17001699// :87:22: error: use of undefined value here causes illegal behavior
17011700// :87:22: note: when computing vector element at index '0'
17021701// :87:22: error: use of undefined value here causes illegal behavior
17031702// :87:22: note: when computing vector element at index '0'
17041703// :87:22: error: use of undefined value here causes illegal behavior
1705// :87:22: note: when computing vector element at index '1'
1704// :87:22: note: when computing vector element at index '0'
17061705// :87:22: error: use of undefined value here causes illegal behavior
17071706// :87:22: note: when computing vector element at index '0'
17081707// :87:22: error: use of undefined value here causes illegal behavior
17091708// :87:22: note: when computing vector element at index '0'
17101709// :87:22: error: use of undefined value here causes illegal behavior
1710// :87:22: note: when computing vector element at index '1'
17111711// :87:22: error: use of undefined value here causes illegal behavior
1712// :87:22: note: when computing vector element at index '0'
1712// :87:22: note: when computing vector element at index '1'
17131713// :87:22: error: use of undefined value here causes illegal behavior
1714// :87:22: note: when computing vector element at index '0'
1714// :87:22: note: when computing vector element at index '1'
17151715// :87:22: error: use of undefined value here causes illegal behavior
17161716// :87:22: note: when computing vector element at index '1'
17171717// :87:22: error: use of undefined value here causes illegal behavior
1718// :87:22: note: when computing vector element at index '0'
1718// :87:22: note: when computing vector element at index '1'
17191719// :87:22: error: use of undefined value here causes illegal behavior
1720// :87:22: note: when computing vector element at index '0'
1720// :87:22: note: when computing vector element at index '1'
17211721// :90:27: error: use of undefined value here causes illegal behavior
17221722// :90:27: error: use of undefined value here causes illegal behavior
1723// :90:27: note: when computing vector element at index '0'
17241723// :90:27: error: use of undefined value here causes illegal behavior
1725// :90:27: note: when computing vector element at index '0'
17261724// :90:27: error: use of undefined value here causes illegal behavior
1727// :90:27: note: when computing vector element at index '0'
17281725// :90:27: error: use of undefined value here causes illegal behavior
1729// :90:27: note: when computing vector element at index '1'
17301726// :90:27: error: use of undefined value here causes illegal behavior
1731// :90:27: note: when computing vector element at index '0'
17321727// :90:27: error: use of undefined value here causes illegal behavior
17331728// :90:27: note: when computing vector element at index '0'
17341729// :90:27: error: use of undefined value here causes illegal behavior
17351730// :90:27: note: when computing vector element at index '0'
17361731// :90:27: error: use of undefined value here causes illegal behavior
1737// :90:27: error: use of undefined value here causes illegal behavior
17381732// :90:27: note: when computing vector element at index '0'
17391733// :90:27: error: use of undefined value here causes illegal behavior
17401734// :90:27: note: when computing vector element at index '0'
17411735// :90:27: error: use of undefined value here causes illegal behavior
17421736// :90:27: note: when computing vector element at index '0'
17431737// :90:27: error: use of undefined value here causes illegal behavior
1744// :90:27: note: when computing vector element at index '1'
1745// :90:27: error: use of undefined value here causes illegal behavior
17461738// :90:27: note: when computing vector element at index '0'
17471739// :90:27: error: use of undefined value here causes illegal behavior
17481740// :90:27: note: when computing vector element at index '0'
17491741// :90:27: error: use of undefined value here causes illegal behavior
17501742// :90:27: note: when computing vector element at index '0'
17511743// :90:27: error: use of undefined value here causes illegal behavior
1744// :90:27: note: when computing vector element at index '0'
17521745// :90:27: error: use of undefined value here causes illegal behavior
17531746// :90:27: note: when computing vector element at index '0'
17541747// :90:27: error: use of undefined value here causes illegal behavior
......@@ -1756,7 +1749,7 @@ const std = @import("std");
17561749// :90:27: error: use of undefined value here causes illegal behavior
17571750// :90:27: note: when computing vector element at index '0'
17581751// :90:27: error: use of undefined value here causes illegal behavior
1759// :90:27: note: when computing vector element at index '1'
1752// :90:27: note: when computing vector element at index '0'
17601753// :90:27: error: use of undefined value here causes illegal behavior
17611754// :90:27: note: when computing vector element at index '0'
17621755// :90:27: error: use of undefined value here causes illegal behavior
......@@ -1764,6 +1757,7 @@ const std = @import("std");
17641757// :90:27: error: use of undefined value here causes illegal behavior
17651758// :90:27: note: when computing vector element at index '0'
17661759// :90:27: error: use of undefined value here causes illegal behavior
1760// :90:27: note: when computing vector element at index '0'
17671761// :90:27: error: use of undefined value here causes illegal behavior
17681762// :90:27: note: when computing vector element at index '0'
17691763// :90:27: error: use of undefined value here causes illegal behavior
......@@ -1771,7 +1765,7 @@ const std = @import("std");
17711765// :90:27: error: use of undefined value here causes illegal behavior
17721766// :90:27: note: when computing vector element at index '0'
17731767// :90:27: error: use of undefined value here causes illegal behavior
1774// :90:27: note: when computing vector element at index '1'
1768// :90:27: note: when computing vector element at index '0'
17751769// :90:27: error: use of undefined value here causes illegal behavior
17761770// :90:27: note: when computing vector element at index '0'
17771771// :90:27: error: use of undefined value here causes illegal behavior
......@@ -1779,6 +1773,7 @@ const std = @import("std");
17791773// :90:27: error: use of undefined value here causes illegal behavior
17801774// :90:27: note: when computing vector element at index '0'
17811775// :90:27: error: use of undefined value here causes illegal behavior
1776// :90:27: note: when computing vector element at index '0'
17821777// :90:27: error: use of undefined value here causes illegal behavior
17831778// :90:27: note: when computing vector element at index '0'
17841779// :90:27: error: use of undefined value here causes illegal behavior
......@@ -1786,7 +1781,7 @@ const std = @import("std");
17861781// :90:27: error: use of undefined value here causes illegal behavior
17871782// :90:27: note: when computing vector element at index '0'
17881783// :90:27: error: use of undefined value here causes illegal behavior
1789// :90:27: note: when computing vector element at index '1'
1784// :90:27: note: when computing vector element at index '0'
17901785// :90:27: error: use of undefined value here causes illegal behavior
17911786// :90:27: note: when computing vector element at index '0'
17921787// :90:27: error: use of undefined value here causes illegal behavior
......@@ -1794,6 +1789,7 @@ const std = @import("std");
17941789// :90:27: error: use of undefined value here causes illegal behavior
17951790// :90:27: note: when computing vector element at index '0'
17961791// :90:27: error: use of undefined value here causes illegal behavior
1792// :90:27: note: when computing vector element at index '0'
17971793// :90:27: error: use of undefined value here causes illegal behavior
17981794// :90:27: note: when computing vector element at index '0'
17991795// :90:27: error: use of undefined value here causes illegal behavior
......@@ -1803,108 +1799,105 @@ const std = @import("std");
18031799// :90:27: error: use of undefined value here causes illegal behavior
18041800// :90:27: note: when computing vector element at index '1'
18051801// :90:27: error: use of undefined value here causes illegal behavior
1806// :90:27: note: when computing vector element at index '0'
1802// :90:27: note: when computing vector element at index '1'
18071803// :90:27: error: use of undefined value here causes illegal behavior
1808// :90:27: note: when computing vector element at index '0'
1804// :90:27: note: when computing vector element at index '1'
18091805// :90:27: error: use of undefined value here causes illegal behavior
1810// :90:27: note: when computing vector element at index '0'
1806// :90:27: note: when computing vector element at index '1'
1807// :90:27: error: use of undefined value here causes illegal behavior
1808// :90:27: note: when computing vector element at index '1'
1809// :90:27: error: use of undefined value here causes illegal behavior
1810// :90:27: note: when computing vector element at index '1'
18111811// :90:30: error: use of undefined value here causes illegal behavior
18121812// :90:30: error: use of undefined value here causes illegal behavior
1813// :90:30: note: when computing vector element at index '0'
18141813// :90:30: error: use of undefined value here causes illegal behavior
1815// :90:30: note: when computing vector element at index '0'
18161814// :90:30: error: use of undefined value here causes illegal behavior
1817// :90:30: note: when computing vector element at index '1'
18181815// :90:30: error: use of undefined value here causes illegal behavior
1819// :90:30: note: when computing vector element at index '0'
18201816// :90:30: error: use of undefined value here causes illegal behavior
1821// :90:30: note: when computing vector element at index '0'
18221817// :90:30: error: use of undefined value here causes illegal behavior
1818// :90:30: note: when computing vector element at index '0'
18231819// :90:30: error: use of undefined value here causes illegal behavior
18241820// :90:30: note: when computing vector element at index '0'
18251821// :90:30: error: use of undefined value here causes illegal behavior
18261822// :90:30: note: when computing vector element at index '0'
18271823// :90:30: error: use of undefined value here causes illegal behavior
1828// :90:30: note: when computing vector element at index '1'
1824// :90:30: note: when computing vector element at index '0'
18291825// :90:30: error: use of undefined value here causes illegal behavior
18301826// :90:30: note: when computing vector element at index '0'
18311827// :90:30: error: use of undefined value here causes illegal behavior
18321828// :90:30: note: when computing vector element at index '0'
18331829// :90:30: error: use of undefined value here causes illegal behavior
1830// :90:30: note: when computing vector element at index '0'
18341831// :90:30: error: use of undefined value here causes illegal behavior
18351832// :90:30: note: when computing vector element at index '0'
18361833// :90:30: error: use of undefined value here causes illegal behavior
18371834// :90:30: note: when computing vector element at index '0'
18381835// :90:30: error: use of undefined value here causes illegal behavior
1839// :90:30: note: when computing vector element at index '1'
1836// :90:30: note: when computing vector element at index '0'
18401837// :90:30: error: use of undefined value here causes illegal behavior
18411838// :90:30: note: when computing vector element at index '0'
18421839// :90:30: error: use of undefined value here causes illegal behavior
18431840// :90:30: note: when computing vector element at index '0'
18441841// :90:30: error: use of undefined value here causes illegal behavior
1842// :90:30: note: when computing vector element at index '0'
18451843// :90:30: error: use of undefined value here causes illegal behavior
18461844// :90:30: note: when computing vector element at index '0'
18471845// :90:30: error: use of undefined value here causes illegal behavior
18481846// :90:30: note: when computing vector element at index '0'
18491847// :90:30: error: use of undefined value here causes illegal behavior
1850// :90:30: note: when computing vector element at index '1'
1848// :90:30: note: when computing vector element at index '0'
18511849// :90:30: error: use of undefined value here causes illegal behavior
18521850// :90:30: note: when computing vector element at index '0'
18531851// :90:30: error: use of undefined value here causes illegal behavior
18541852// :90:30: note: when computing vector element at index '0'
18551853// :90:30: error: use of undefined value here causes illegal behavior
1854// :90:30: note: when computing vector element at index '0'
18561855// :90:30: error: use of undefined value here causes illegal behavior
18571856// :90:30: note: when computing vector element at index '0'
18581857// :90:30: error: use of undefined value here causes illegal behavior
18591858// :90:30: note: when computing vector element at index '0'
18601859// :90:30: error: use of undefined value here causes illegal behavior
1861// :90:30: note: when computing vector element at index '1'
1860// :90:30: note: when computing vector element at index '0'
18621861// :90:30: error: use of undefined value here causes illegal behavior
18631862// :90:30: note: when computing vector element at index '0'
18641863// :90:30: error: use of undefined value here causes illegal behavior
18651864// :90:30: note: when computing vector element at index '0'
18661865// :90:30: error: use of undefined value here causes illegal behavior
1866// :90:30: note: when computing vector element at index '1'
18671867// :90:30: error: use of undefined value here causes illegal behavior
1868// :90:30: note: when computing vector element at index '0'
1868// :90:30: note: when computing vector element at index '1'
18691869// :90:30: error: use of undefined value here causes illegal behavior
1870// :90:30: note: when computing vector element at index '0'
1870// :90:30: note: when computing vector element at index '1'
18711871// :90:30: error: use of undefined value here causes illegal behavior
18721872// :90:30: note: when computing vector element at index '1'
18731873// :90:30: error: use of undefined value here causes illegal behavior
1874// :90:30: note: when computing vector element at index '0'
1874// :90:30: note: when computing vector element at index '1'
18751875// :90:30: error: use of undefined value here causes illegal behavior
1876// :90:30: note: when computing vector element at index '0'
1876// :90:30: note: when computing vector element at index '1'
18771877// :93:34: error: use of undefined value here causes illegal behavior
18781878// :93:34: error: use of undefined value here causes illegal behavior
1879// :93:34: note: when computing vector element at index '0'
18801879// :93:34: error: use of undefined value here causes illegal behavior
1881// :93:34: note: when computing vector element at index '0'
18821880// :93:34: error: use of undefined value here causes illegal behavior
1883// :93:34: note: when computing vector element at index '0'
18841881// :93:34: error: use of undefined value here causes illegal behavior
1885// :93:34: note: when computing vector element at index '1'
18861882// :93:34: error: use of undefined value here causes illegal behavior
1887// :93:34: note: when computing vector element at index '0'
18881883// :93:34: error: use of undefined value here causes illegal behavior
18891884// :93:34: note: when computing vector element at index '0'
18901885// :93:34: error: use of undefined value here causes illegal behavior
18911886// :93:34: note: when computing vector element at index '0'
18921887// :93:34: error: use of undefined value here causes illegal behavior
1893// :93:34: error: use of undefined value here causes illegal behavior
18941888// :93:34: note: when computing vector element at index '0'
18951889// :93:34: error: use of undefined value here causes illegal behavior
18961890// :93:34: note: when computing vector element at index '0'
18971891// :93:34: error: use of undefined value here causes illegal behavior
18981892// :93:34: note: when computing vector element at index '0'
18991893// :93:34: error: use of undefined value here causes illegal behavior
1900// :93:34: note: when computing vector element at index '1'
1901// :93:34: error: use of undefined value here causes illegal behavior
19021894// :93:34: note: when computing vector element at index '0'
19031895// :93:34: error: use of undefined value here causes illegal behavior
19041896// :93:34: note: when computing vector element at index '0'
19051897// :93:34: error: use of undefined value here causes illegal behavior
19061898// :93:34: note: when computing vector element at index '0'
19071899// :93:34: error: use of undefined value here causes illegal behavior
1900// :93:34: note: when computing vector element at index '0'
19081901// :93:34: error: use of undefined value here causes illegal behavior
19091902// :93:34: note: when computing vector element at index '0'
19101903// :93:34: error: use of undefined value here causes illegal behavior
......@@ -1912,7 +1905,7 @@ const std = @import("std");
19121905// :93:34: error: use of undefined value here causes illegal behavior
19131906// :93:34: note: when computing vector element at index '0'
19141907// :93:34: error: use of undefined value here causes illegal behavior
1915// :93:34: note: when computing vector element at index '1'
1908// :93:34: note: when computing vector element at index '0'
19161909// :93:34: error: use of undefined value here causes illegal behavior
19171910// :93:34: note: when computing vector element at index '0'
19181911// :93:34: error: use of undefined value here causes illegal behavior
......@@ -1920,6 +1913,7 @@ const std = @import("std");
19201913// :93:34: error: use of undefined value here causes illegal behavior
19211914// :93:34: note: when computing vector element at index '0'
19221915// :93:34: error: use of undefined value here causes illegal behavior
1916// :93:34: note: when computing vector element at index '0'
19231917// :93:34: error: use of undefined value here causes illegal behavior
19241918// :93:34: note: when computing vector element at index '0'
19251919// :93:34: error: use of undefined value here causes illegal behavior
......@@ -1927,7 +1921,7 @@ const std = @import("std");
19271921// :93:34: error: use of undefined value here causes illegal behavior
19281922// :93:34: note: when computing vector element at index '0'
19291923// :93:34: error: use of undefined value here causes illegal behavior
1930// :93:34: note: when computing vector element at index '1'
1924// :93:34: note: when computing vector element at index '0'
19311925// :93:34: error: use of undefined value here causes illegal behavior
19321926// :93:34: note: when computing vector element at index '0'
19331927// :93:34: error: use of undefined value here causes illegal behavior
......@@ -1935,6 +1929,7 @@ const std = @import("std");
19351929// :93:34: error: use of undefined value here causes illegal behavior
19361930// :93:34: note: when computing vector element at index '0'
19371931// :93:34: error: use of undefined value here causes illegal behavior
1932// :93:34: note: when computing vector element at index '0'
19381933// :93:34: error: use of undefined value here causes illegal behavior
19391934// :93:34: note: when computing vector element at index '0'
19401935// :93:34: error: use of undefined value here causes illegal behavior
......@@ -1942,7 +1937,7 @@ const std = @import("std");
19421937// :93:34: error: use of undefined value here causes illegal behavior
19431938// :93:34: note: when computing vector element at index '0'
19441939// :93:34: error: use of undefined value here causes illegal behavior
1945// :93:34: note: when computing vector element at index '1'
1940// :93:34: note: when computing vector element at index '0'
19461941// :93:34: error: use of undefined value here causes illegal behavior
19471942// :93:34: note: when computing vector element at index '0'
19481943// :93:34: error: use of undefined value here causes illegal behavior
......@@ -1950,6 +1945,7 @@ const std = @import("std");
19501945// :93:34: error: use of undefined value here causes illegal behavior
19511946// :93:34: note: when computing vector element at index '0'
19521947// :93:34: error: use of undefined value here causes illegal behavior
1948// :93:34: note: when computing vector element at index '0'
19531949// :93:34: error: use of undefined value here causes illegal behavior
19541950// :93:34: note: when computing vector element at index '0'
19551951// :93:34: error: use of undefined value here causes illegal behavior
......@@ -1959,108 +1955,105 @@ const std = @import("std");
19591955// :93:34: error: use of undefined value here causes illegal behavior
19601956// :93:34: note: when computing vector element at index '1'
19611957// :93:34: error: use of undefined value here causes illegal behavior
1962// :93:34: note: when computing vector element at index '0'
1958// :93:34: note: when computing vector element at index '1'
19631959// :93:34: error: use of undefined value here causes illegal behavior
1964// :93:34: note: when computing vector element at index '0'
1960// :93:34: note: when computing vector element at index '1'
19651961// :93:34: error: use of undefined value here causes illegal behavior
1966// :93:34: note: when computing vector element at index '0'
1962// :93:34: note: when computing vector element at index '1'
1963// :93:34: error: use of undefined value here causes illegal behavior
1964// :93:34: note: when computing vector element at index '1'
1965// :93:34: error: use of undefined value here causes illegal behavior
1966// :93:34: note: when computing vector element at index '1'
19671967// :93:37: error: use of undefined value here causes illegal behavior
19681968// :93:37: error: use of undefined value here causes illegal behavior
1969// :93:37: note: when computing vector element at index '0'
19701969// :93:37: error: use of undefined value here causes illegal behavior
1971// :93:37: note: when computing vector element at index '0'
19721970// :93:37: error: use of undefined value here causes illegal behavior
1973// :93:37: note: when computing vector element at index '1'
19741971// :93:37: error: use of undefined value here causes illegal behavior
1975// :93:37: note: when computing vector element at index '0'
19761972// :93:37: error: use of undefined value here causes illegal behavior
1977// :93:37: note: when computing vector element at index '0'
19781973// :93:37: error: use of undefined value here causes illegal behavior
1974// :93:37: note: when computing vector element at index '0'
19791975// :93:37: error: use of undefined value here causes illegal behavior
19801976// :93:37: note: when computing vector element at index '0'
19811977// :93:37: error: use of undefined value here causes illegal behavior
19821978// :93:37: note: when computing vector element at index '0'
19831979// :93:37: error: use of undefined value here causes illegal behavior
1984// :93:37: note: when computing vector element at index '1'
1980// :93:37: note: when computing vector element at index '0'
19851981// :93:37: error: use of undefined value here causes illegal behavior
19861982// :93:37: note: when computing vector element at index '0'
19871983// :93:37: error: use of undefined value here causes illegal behavior
19881984// :93:37: note: when computing vector element at index '0'
19891985// :93:37: error: use of undefined value here causes illegal behavior
1986// :93:37: note: when computing vector element at index '0'
19901987// :93:37: error: use of undefined value here causes illegal behavior
19911988// :93:37: note: when computing vector element at index '0'
19921989// :93:37: error: use of undefined value here causes illegal behavior
19931990// :93:37: note: when computing vector element at index '0'
19941991// :93:37: error: use of undefined value here causes illegal behavior
1995// :93:37: note: when computing vector element at index '1'
1992// :93:37: note: when computing vector element at index '0'
19961993// :93:37: error: use of undefined value here causes illegal behavior
19971994// :93:37: note: when computing vector element at index '0'
19981995// :93:37: error: use of undefined value here causes illegal behavior
19991996// :93:37: note: when computing vector element at index '0'
20001997// :93:37: error: use of undefined value here causes illegal behavior
1998// :93:37: note: when computing vector element at index '0'
20011999// :93:37: error: use of undefined value here causes illegal behavior
20022000// :93:37: note: when computing vector element at index '0'
20032001// :93:37: error: use of undefined value here causes illegal behavior
20042002// :93:37: note: when computing vector element at index '0'
20052003// :93:37: error: use of undefined value here causes illegal behavior
2006// :93:37: note: when computing vector element at index '1'
2004// :93:37: note: when computing vector element at index '0'
20072005// :93:37: error: use of undefined value here causes illegal behavior
20082006// :93:37: note: when computing vector element at index '0'
20092007// :93:37: error: use of undefined value here causes illegal behavior
20102008// :93:37: note: when computing vector element at index '0'
20112009// :93:37: error: use of undefined value here causes illegal behavior
2010// :93:37: note: when computing vector element at index '0'
20122011// :93:37: error: use of undefined value here causes illegal behavior
20132012// :93:37: note: when computing vector element at index '0'
20142013// :93:37: error: use of undefined value here causes illegal behavior
20152014// :93:37: note: when computing vector element at index '0'
20162015// :93:37: error: use of undefined value here causes illegal behavior
2017// :93:37: note: when computing vector element at index '1'
2016// :93:37: note: when computing vector element at index '0'
20182017// :93:37: error: use of undefined value here causes illegal behavior
20192018// :93:37: note: when computing vector element at index '0'
20202019// :93:37: error: use of undefined value here causes illegal behavior
20212020// :93:37: note: when computing vector element at index '0'
20222021// :93:37: error: use of undefined value here causes illegal behavior
2022// :93:37: note: when computing vector element at index '1'
20232023// :93:37: error: use of undefined value here causes illegal behavior
2024// :93:37: note: when computing vector element at index '0'
2024// :93:37: note: when computing vector element at index '1'
20252025// :93:37: error: use of undefined value here causes illegal behavior
2026// :93:37: note: when computing vector element at index '0'
2026// :93:37: note: when computing vector element at index '1'
20272027// :93:37: error: use of undefined value here causes illegal behavior
20282028// :93:37: note: when computing vector element at index '1'
20292029// :93:37: error: use of undefined value here causes illegal behavior
2030// :93:37: note: when computing vector element at index '0'
2030// :93:37: note: when computing vector element at index '1'
20312031// :93:37: error: use of undefined value here causes illegal behavior
2032// :93:37: note: when computing vector element at index '0'
2032// :93:37: note: when computing vector element at index '1'
20332033// :96:17: error: use of undefined value here causes illegal behavior
20342034// :96:17: error: use of undefined value here causes illegal behavior
2035// :96:17: note: when computing vector element at index '0'
20362035// :96:17: error: use of undefined value here causes illegal behavior
2037// :96:17: note: when computing vector element at index '0'
20382036// :96:17: error: use of undefined value here causes illegal behavior
2039// :96:17: note: when computing vector element at index '0'
20402037// :96:17: error: use of undefined value here causes illegal behavior
2041// :96:17: note: when computing vector element at index '1'
20422038// :96:17: error: use of undefined value here causes illegal behavior
2043// :96:17: note: when computing vector element at index '0'
20442039// :96:17: error: use of undefined value here causes illegal behavior
20452040// :96:17: note: when computing vector element at index '0'
20462041// :96:17: error: use of undefined value here causes illegal behavior
20472042// :96:17: note: when computing vector element at index '0'
20482043// :96:17: error: use of undefined value here causes illegal behavior
2049// :96:17: error: use of undefined value here causes illegal behavior
20502044// :96:17: note: when computing vector element at index '0'
20512045// :96:17: error: use of undefined value here causes illegal behavior
20522046// :96:17: note: when computing vector element at index '0'
20532047// :96:17: error: use of undefined value here causes illegal behavior
20542048// :96:17: note: when computing vector element at index '0'
20552049// :96:17: error: use of undefined value here causes illegal behavior
2056// :96:17: note: when computing vector element at index '1'
2057// :96:17: error: use of undefined value here causes illegal behavior
20582050// :96:17: note: when computing vector element at index '0'
20592051// :96:17: error: use of undefined value here causes illegal behavior
20602052// :96:17: note: when computing vector element at index '0'
20612053// :96:17: error: use of undefined value here causes illegal behavior
20622054// :96:17: note: when computing vector element at index '0'
20632055// :96:17: error: use of undefined value here causes illegal behavior
2056// :96:17: note: when computing vector element at index '0'
20642057// :96:17: error: use of undefined value here causes illegal behavior
20652058// :96:17: note: when computing vector element at index '0'
20662059// :96:17: error: use of undefined value here causes illegal behavior
......@@ -2068,7 +2061,7 @@ const std = @import("std");
20682061// :96:17: error: use of undefined value here causes illegal behavior
20692062// :96:17: note: when computing vector element at index '0'
20702063// :96:17: error: use of undefined value here causes illegal behavior
2071// :96:17: note: when computing vector element at index '1'
2064// :96:17: note: when computing vector element at index '0'
20722065// :96:17: error: use of undefined value here causes illegal behavior
20732066// :96:17: note: when computing vector element at index '0'
20742067// :96:17: error: use of undefined value here causes illegal behavior
......@@ -2076,6 +2069,7 @@ const std = @import("std");
20762069// :96:17: error: use of undefined value here causes illegal behavior
20772070// :96:17: note: when computing vector element at index '0'
20782071// :96:17: error: use of undefined value here causes illegal behavior
2072// :96:17: note: when computing vector element at index '0'
20792073// :96:17: error: use of undefined value here causes illegal behavior
20802074// :96:17: note: when computing vector element at index '0'
20812075// :96:17: error: use of undefined value here causes illegal behavior
......@@ -2083,7 +2077,7 @@ const std = @import("std");
20832077// :96:17: error: use of undefined value here causes illegal behavior
20842078// :96:17: note: when computing vector element at index '0'
20852079// :96:17: error: use of undefined value here causes illegal behavior
2086// :96:17: note: when computing vector element at index '1'
2080// :96:17: note: when computing vector element at index '0'
20872081// :96:17: error: use of undefined value here causes illegal behavior
20882082// :96:17: note: when computing vector element at index '0'
20892083// :96:17: error: use of undefined value here causes illegal behavior
......@@ -2091,6 +2085,7 @@ const std = @import("std");
20912085// :96:17: error: use of undefined value here causes illegal behavior
20922086// :96:17: note: when computing vector element at index '0'
20932087// :96:17: error: use of undefined value here causes illegal behavior
2088// :96:17: note: when computing vector element at index '0'
20942089// :96:17: error: use of undefined value here causes illegal behavior
20952090// :96:17: note: when computing vector element at index '0'
20962091// :96:17: error: use of undefined value here causes illegal behavior
......@@ -2098,7 +2093,7 @@ const std = @import("std");
20982093// :96:17: error: use of undefined value here causes illegal behavior
20992094// :96:17: note: when computing vector element at index '0'
21002095// :96:17: error: use of undefined value here causes illegal behavior
2101// :96:17: note: when computing vector element at index '1'
2096// :96:17: note: when computing vector element at index '0'
21022097// :96:17: error: use of undefined value here causes illegal behavior
21032098// :96:17: note: when computing vector element at index '0'
21042099// :96:17: error: use of undefined value here causes illegal behavior
......@@ -2106,6 +2101,7 @@ const std = @import("std");
21062101// :96:17: error: use of undefined value here causes illegal behavior
21072102// :96:17: note: when computing vector element at index '0'
21082103// :96:17: error: use of undefined value here causes illegal behavior
2104// :96:17: note: when computing vector element at index '0'
21092105// :96:17: error: use of undefined value here causes illegal behavior
21102106// :96:17: note: when computing vector element at index '0'
21112107// :96:17: error: use of undefined value here causes illegal behavior
......@@ -2115,67 +2111,65 @@ const std = @import("std");
21152111// :96:17: error: use of undefined value here causes illegal behavior
21162112// :96:17: note: when computing vector element at index '1'
21172113// :96:17: error: use of undefined value here causes illegal behavior
2118// :96:17: note: when computing vector element at index '0'
2114// :96:17: note: when computing vector element at index '1'
21192115// :96:17: error: use of undefined value here causes illegal behavior
2120// :96:17: note: when computing vector element at index '0'
2116// :96:17: note: when computing vector element at index '1'
21212117// :96:17: error: use of undefined value here causes illegal behavior
2122// :96:17: note: when computing vector element at index '0'
2123// :96:22: error: use of undefined value here causes illegal behavior
2124// :96:22: error: use of undefined value here causes illegal behavior
2125// :96:22: note: when computing vector element at index '0'
2118// :96:17: note: when computing vector element at index '1'
2119// :96:17: error: use of undefined value here causes illegal behavior
2120// :96:17: note: when computing vector element at index '1'
2121// :96:17: error: use of undefined value here causes illegal behavior
2122// :96:17: note: when computing vector element at index '1'
21262123// :96:22: error: use of undefined value here causes illegal behavior
2127// :96:22: note: when computing vector element at index '0'
21282124// :96:22: error: use of undefined value here causes illegal behavior
2129// :96:22: note: when computing vector element at index '1'
21302125// :96:22: error: use of undefined value here causes illegal behavior
2131// :96:22: note: when computing vector element at index '0'
21322126// :96:22: error: use of undefined value here causes illegal behavior
2133// :96:22: note: when computing vector element at index '0'
21342127// :96:22: error: use of undefined value here causes illegal behavior
21352128// :96:22: error: use of undefined value here causes illegal behavior
2136// :96:22: note: when computing vector element at index '0'
21372129// :96:22: error: use of undefined value here causes illegal behavior
21382130// :96:22: note: when computing vector element at index '0'
21392131// :96:22: error: use of undefined value here causes illegal behavior
2140// :96:22: note: when computing vector element at index '1'
2141// :96:22: error: use of undefined value here causes illegal behavior
21422132// :96:22: note: when computing vector element at index '0'
21432133// :96:22: error: use of undefined value here causes illegal behavior
21442134// :96:22: note: when computing vector element at index '0'
21452135// :96:22: error: use of undefined value here causes illegal behavior
2136// :96:22: note: when computing vector element at index '0'
21462137// :96:22: error: use of undefined value here causes illegal behavior
21472138// :96:22: note: when computing vector element at index '0'
21482139// :96:22: error: use of undefined value here causes illegal behavior
21492140// :96:22: note: when computing vector element at index '0'
21502141// :96:22: error: use of undefined value here causes illegal behavior
2151// :96:22: note: when computing vector element at index '1'
2142// :96:22: note: when computing vector element at index '0'
21522143// :96:22: error: use of undefined value here causes illegal behavior
21532144// :96:22: note: when computing vector element at index '0'
21542145// :96:22: error: use of undefined value here causes illegal behavior
21552146// :96:22: note: when computing vector element at index '0'
21562147// :96:22: error: use of undefined value here causes illegal behavior
2148// :96:22: note: when computing vector element at index '0'
21572149// :96:22: error: use of undefined value here causes illegal behavior
21582150// :96:22: note: when computing vector element at index '0'
21592151// :96:22: error: use of undefined value here causes illegal behavior
21602152// :96:22: note: when computing vector element at index '0'
21612153// :96:22: error: use of undefined value here causes illegal behavior
2162// :96:22: note: when computing vector element at index '1'
2154// :96:22: note: when computing vector element at index '0'
21632155// :96:22: error: use of undefined value here causes illegal behavior
21642156// :96:22: note: when computing vector element at index '0'
21652157// :96:22: error: use of undefined value here causes illegal behavior
21662158// :96:22: note: when computing vector element at index '0'
21672159// :96:22: error: use of undefined value here causes illegal behavior
2160// :96:22: note: when computing vector element at index '0'
21682161// :96:22: error: use of undefined value here causes illegal behavior
21692162// :96:22: note: when computing vector element at index '0'
21702163// :96:22: error: use of undefined value here causes illegal behavior
21712164// :96:22: note: when computing vector element at index '0'
21722165// :96:22: error: use of undefined value here causes illegal behavior
2173// :96:22: note: when computing vector element at index '1'
2166// :96:22: note: when computing vector element at index '0'
21742167// :96:22: error: use of undefined value here causes illegal behavior
21752168// :96:22: note: when computing vector element at index '0'
21762169// :96:22: error: use of undefined value here causes illegal behavior
21772170// :96:22: note: when computing vector element at index '0'
21782171// :96:22: error: use of undefined value here causes illegal behavior
2172// :96:22: note: when computing vector element at index '0'
21792173// :96:22: error: use of undefined value here causes illegal behavior
21802174// :96:22: note: when computing vector element at index '0'
21812175// :96:22: error: use of undefined value here causes illegal behavior
......@@ -2183,40 +2177,39 @@ const std = @import("std");
21832177// :96:22: error: use of undefined value here causes illegal behavior
21842178// :96:22: note: when computing vector element at index '1'
21852179// :96:22: error: use of undefined value here causes illegal behavior
2186// :96:22: note: when computing vector element at index '0'
2180// :96:22: note: when computing vector element at index '1'
21872181// :96:22: error: use of undefined value here causes illegal behavior
2188// :96:22: note: when computing vector element at index '0'
2182// :96:22: note: when computing vector element at index '1'
2183// :96:22: error: use of undefined value here causes illegal behavior
2184// :96:22: note: when computing vector element at index '1'
2185// :96:22: error: use of undefined value here causes illegal behavior
2186// :96:22: note: when computing vector element at index '1'
2187// :96:22: error: use of undefined value here causes illegal behavior
2188// :96:22: note: when computing vector element at index '1'
21892189// :99:27: error: use of undefined value here causes illegal behavior
21902190// :99:27: error: use of undefined value here causes illegal behavior
2191// :99:27: note: when computing vector element at index '0'
21922191// :99:27: error: use of undefined value here causes illegal behavior
2193// :99:27: note: when computing vector element at index '0'
21942192// :99:27: error: use of undefined value here causes illegal behavior
2195// :99:27: note: when computing vector element at index '0'
21962193// :99:27: error: use of undefined value here causes illegal behavior
2197// :99:27: note: when computing vector element at index '1'
21982194// :99:27: error: use of undefined value here causes illegal behavior
2199// :99:27: note: when computing vector element at index '0'
22002195// :99:27: error: use of undefined value here causes illegal behavior
22012196// :99:27: note: when computing vector element at index '0'
22022197// :99:27: error: use of undefined value here causes illegal behavior
22032198// :99:27: note: when computing vector element at index '0'
22042199// :99:27: error: use of undefined value here causes illegal behavior
2205// :99:27: error: use of undefined value here causes illegal behavior
22062200// :99:27: note: when computing vector element at index '0'
22072201// :99:27: error: use of undefined value here causes illegal behavior
22082202// :99:27: note: when computing vector element at index '0'
22092203// :99:27: error: use of undefined value here causes illegal behavior
22102204// :99:27: note: when computing vector element at index '0'
22112205// :99:27: error: use of undefined value here causes illegal behavior
2212// :99:27: note: when computing vector element at index '1'
2213// :99:27: error: use of undefined value here causes illegal behavior
22142206// :99:27: note: when computing vector element at index '0'
22152207// :99:27: error: use of undefined value here causes illegal behavior
22162208// :99:27: note: when computing vector element at index '0'
22172209// :99:27: error: use of undefined value here causes illegal behavior
22182210// :99:27: note: when computing vector element at index '0'
22192211// :99:27: error: use of undefined value here causes illegal behavior
2212// :99:27: note: when computing vector element at index '0'
22202213// :99:27: error: use of undefined value here causes illegal behavior
22212214// :99:27: note: when computing vector element at index '0'
22222215// :99:27: error: use of undefined value here causes illegal behavior
......@@ -2224,7 +2217,7 @@ const std = @import("std");
22242217// :99:27: error: use of undefined value here causes illegal behavior
22252218// :99:27: note: when computing vector element at index '0'
22262219// :99:27: error: use of undefined value here causes illegal behavior
2227// :99:27: note: when computing vector element at index '1'
2220// :99:27: note: when computing vector element at index '0'
22282221// :99:27: error: use of undefined value here causes illegal behavior
22292222// :99:27: note: when computing vector element at index '0'
22302223// :99:27: error: use of undefined value here causes illegal behavior
......@@ -2232,6 +2225,7 @@ const std = @import("std");
22322225// :99:27: error: use of undefined value here causes illegal behavior
22332226// :99:27: note: when computing vector element at index '0'
22342227// :99:27: error: use of undefined value here causes illegal behavior
2228// :99:27: note: when computing vector element at index '0'
22352229// :99:27: error: use of undefined value here causes illegal behavior
22362230// :99:27: note: when computing vector element at index '0'
22372231// :99:27: error: use of undefined value here causes illegal behavior
......@@ -2239,7 +2233,7 @@ const std = @import("std");
22392233// :99:27: error: use of undefined value here causes illegal behavior
22402234// :99:27: note: when computing vector element at index '0'
22412235// :99:27: error: use of undefined value here causes illegal behavior
2242// :99:27: note: when computing vector element at index '1'
2236// :99:27: note: when computing vector element at index '0'
22432237// :99:27: error: use of undefined value here causes illegal behavior
22442238// :99:27: note: when computing vector element at index '0'
22452239// :99:27: error: use of undefined value here causes illegal behavior
......@@ -2247,6 +2241,7 @@ const std = @import("std");
22472241// :99:27: error: use of undefined value here causes illegal behavior
22482242// :99:27: note: when computing vector element at index '0'
22492243// :99:27: error: use of undefined value here causes illegal behavior
2244// :99:27: note: when computing vector element at index '0'
22502245// :99:27: error: use of undefined value here causes illegal behavior
22512246// :99:27: note: when computing vector element at index '0'
22522247// :99:27: error: use of undefined value here causes illegal behavior
......@@ -2254,7 +2249,7 @@ const std = @import("std");
22542249// :99:27: error: use of undefined value here causes illegal behavior
22552250// :99:27: note: when computing vector element at index '0'
22562251// :99:27: error: use of undefined value here causes illegal behavior
2257// :99:27: note: when computing vector element at index '1'
2252// :99:27: note: when computing vector element at index '0'
22582253// :99:27: error: use of undefined value here causes illegal behavior
22592254// :99:27: note: when computing vector element at index '0'
22602255// :99:27: error: use of undefined value here causes illegal behavior
......@@ -2262,6 +2257,7 @@ const std = @import("std");
22622257// :99:27: error: use of undefined value here causes illegal behavior
22632258// :99:27: note: when computing vector element at index '0'
22642259// :99:27: error: use of undefined value here causes illegal behavior
2260// :99:27: note: when computing vector element at index '0'
22652261// :99:27: error: use of undefined value here causes illegal behavior
22662262// :99:27: note: when computing vector element at index '0'
22672263// :99:27: error: use of undefined value here causes illegal behavior
......@@ -2271,77 +2267,81 @@ const std = @import("std");
22712267// :99:27: error: use of undefined value here causes illegal behavior
22722268// :99:27: note: when computing vector element at index '1'
22732269// :99:27: error: use of undefined value here causes illegal behavior
2274// :99:27: note: when computing vector element at index '0'
2270// :99:27: note: when computing vector element at index '1'
22752271// :99:27: error: use of undefined value here causes illegal behavior
2276// :99:27: note: when computing vector element at index '0'
2272// :99:27: note: when computing vector element at index '1'
22772273// :99:27: error: use of undefined value here causes illegal behavior
2278// :99:27: note: when computing vector element at index '0'
2274// :99:27: note: when computing vector element at index '1'
2275// :99:27: error: use of undefined value here causes illegal behavior
2276// :99:27: note: when computing vector element at index '1'
2277// :99:27: error: use of undefined value here causes illegal behavior
2278// :99:27: note: when computing vector element at index '1'
22792279// :99:30: error: use of undefined value here causes illegal behavior
22802280// :99:30: error: use of undefined value here causes illegal behavior
2281// :99:30: note: when computing vector element at index '0'
22822281// :99:30: error: use of undefined value here causes illegal behavior
2283// :99:30: note: when computing vector element at index '0'
22842282// :99:30: error: use of undefined value here causes illegal behavior
2285// :99:30: note: when computing vector element at index '1'
22862283// :99:30: error: use of undefined value here causes illegal behavior
2287// :99:30: note: when computing vector element at index '0'
22882284// :99:30: error: use of undefined value here causes illegal behavior
2289// :99:30: note: when computing vector element at index '0'
22902285// :99:30: error: use of undefined value here causes illegal behavior
2286// :99:30: note: when computing vector element at index '0'
22912287// :99:30: error: use of undefined value here causes illegal behavior
22922288// :99:30: note: when computing vector element at index '0'
22932289// :99:30: error: use of undefined value here causes illegal behavior
22942290// :99:30: note: when computing vector element at index '0'
22952291// :99:30: error: use of undefined value here causes illegal behavior
2296// :99:30: note: when computing vector element at index '1'
2292// :99:30: note: when computing vector element at index '0'
22972293// :99:30: error: use of undefined value here causes illegal behavior
22982294// :99:30: note: when computing vector element at index '0'
22992295// :99:30: error: use of undefined value here causes illegal behavior
23002296// :99:30: note: when computing vector element at index '0'
23012297// :99:30: error: use of undefined value here causes illegal behavior
2298// :99:30: note: when computing vector element at index '0'
23022299// :99:30: error: use of undefined value here causes illegal behavior
23032300// :99:30: note: when computing vector element at index '0'
23042301// :99:30: error: use of undefined value here causes illegal behavior
23052302// :99:30: note: when computing vector element at index '0'
23062303// :99:30: error: use of undefined value here causes illegal behavior
2307// :99:30: note: when computing vector element at index '1'
2304// :99:30: note: when computing vector element at index '0'
23082305// :99:30: error: use of undefined value here causes illegal behavior
23092306// :99:30: note: when computing vector element at index '0'
23102307// :99:30: error: use of undefined value here causes illegal behavior
23112308// :99:30: note: when computing vector element at index '0'
23122309// :99:30: error: use of undefined value here causes illegal behavior
2310// :99:30: note: when computing vector element at index '0'
23132311// :99:30: error: use of undefined value here causes illegal behavior
23142312// :99:30: note: when computing vector element at index '0'
23152313// :99:30: error: use of undefined value here causes illegal behavior
23162314// :99:30: note: when computing vector element at index '0'
23172315// :99:30: error: use of undefined value here causes illegal behavior
2318// :99:30: note: when computing vector element at index '1'
2316// :99:30: note: when computing vector element at index '0'
23192317// :99:30: error: use of undefined value here causes illegal behavior
23202318// :99:30: note: when computing vector element at index '0'
23212319// :99:30: error: use of undefined value here causes illegal behavior
23222320// :99:30: note: when computing vector element at index '0'
23232321// :99:30: error: use of undefined value here causes illegal behavior
2322// :99:30: note: when computing vector element at index '0'
23242323// :99:30: error: use of undefined value here causes illegal behavior
23252324// :99:30: note: when computing vector element at index '0'
23262325// :99:30: error: use of undefined value here causes illegal behavior
23272326// :99:30: note: when computing vector element at index '0'
23282327// :99:30: error: use of undefined value here causes illegal behavior
2329// :99:30: note: when computing vector element at index '1'
2328// :99:30: note: when computing vector element at index '0'
23302329// :99:30: error: use of undefined value here causes illegal behavior
23312330// :99:30: note: when computing vector element at index '0'
23322331// :99:30: error: use of undefined value here causes illegal behavior
23332332// :99:30: note: when computing vector element at index '0'
23342333// :99:30: error: use of undefined value here causes illegal behavior
2334// :99:30: note: when computing vector element at index '1'
23352335// :99:30: error: use of undefined value here causes illegal behavior
2336// :99:30: note: when computing vector element at index '0'
2336// :99:30: note: when computing vector element at index '1'
23372337// :99:30: error: use of undefined value here causes illegal behavior
2338// :99:30: note: when computing vector element at index '0'
2338// :99:30: note: when computing vector element at index '1'
23392339// :99:30: error: use of undefined value here causes illegal behavior
23402340// :99:30: note: when computing vector element at index '1'
23412341// :99:30: error: use of undefined value here causes illegal behavior
2342// :99:30: note: when computing vector element at index '0'
2342// :99:30: note: when computing vector element at index '1'
23432343// :99:30: error: use of undefined value here causes illegal behavior
2344// :99:30: note: when computing vector element at index '0'
2344// :99:30: note: when computing vector element at index '1'
23452345// :104:22: error: use of undefined value here causes illegal behavior
23462346// :104:22: error: use of undefined value here causes illegal behavior
23472347// :104:22: error: use of undefined value here causes illegal behavior
......@@ -2349,21 +2349,13 @@ const std = @import("std");
23492349// :104:22: error: use of undefined value here causes illegal behavior
23502350// :104:22: error: use of undefined value here causes illegal behavior
23512351// :104:22: error: use of undefined value here causes illegal behavior
2352// :104:22: note: when computing vector element at index '1'
23532352// :104:22: error: use of undefined value here causes illegal behavior
2354// :104:22: note: when computing vector element at index '1'
23552353// :104:22: error: use of undefined value here causes illegal behavior
2356// :104:22: note: when computing vector element at index '1'
23572354// :104:22: error: use of undefined value here causes illegal behavior
2358// :104:22: note: when computing vector element at index '1'
23592355// :104:22: error: use of undefined value here causes illegal behavior
2360// :104:22: note: when computing vector element at index '0'
23612356// :104:22: error: use of undefined value here causes illegal behavior
2362// :104:22: note: when computing vector element at index '0'
23632357// :104:22: error: use of undefined value here causes illegal behavior
2364// :104:22: note: when computing vector element at index '0'
23652358// :104:22: error: use of undefined value here causes illegal behavior
2366// :104:22: note: when computing vector element at index '0'
23672359// :104:22: error: use of undefined value here causes illegal behavior
23682360// :104:22: error: use of undefined value here causes illegal behavior
23692361// :104:22: error: use of undefined value here causes illegal behavior
......@@ -2371,21 +2363,13 @@ const std = @import("std");
23712363// :104:22: error: use of undefined value here causes illegal behavior
23722364// :104:22: error: use of undefined value here causes illegal behavior
23732365// :104:22: error: use of undefined value here causes illegal behavior
2374// :104:22: note: when computing vector element at index '1'
23752366// :104:22: error: use of undefined value here causes illegal behavior
2376// :104:22: note: when computing vector element at index '1'
23772367// :104:22: error: use of undefined value here causes illegal behavior
2378// :104:22: note: when computing vector element at index '1'
23792368// :104:22: error: use of undefined value here causes illegal behavior
2380// :104:22: note: when computing vector element at index '1'
23812369// :104:22: error: use of undefined value here causes illegal behavior
2382// :104:22: note: when computing vector element at index '0'
23832370// :104:22: error: use of undefined value here causes illegal behavior
2384// :104:22: note: when computing vector element at index '0'
23852371// :104:22: error: use of undefined value here causes illegal behavior
2386// :104:22: note: when computing vector element at index '0'
23872372// :104:22: error: use of undefined value here causes illegal behavior
2388// :104:22: note: when computing vector element at index '0'
23892373// :104:22: error: use of undefined value here causes illegal behavior
23902374// :104:22: error: use of undefined value here causes illegal behavior
23912375// :104:22: error: use of undefined value here causes illegal behavior
......@@ -2393,13 +2377,11 @@ const std = @import("std");
23932377// :104:22: error: use of undefined value here causes illegal behavior
23942378// :104:22: error: use of undefined value here causes illegal behavior
23952379// :104:22: error: use of undefined value here causes illegal behavior
2396// :104:22: note: when computing vector element at index '1'
23972380// :104:22: error: use of undefined value here causes illegal behavior
2398// :104:22: note: when computing vector element at index '1'
23992381// :104:22: error: use of undefined value here causes illegal behavior
2400// :104:22: note: when computing vector element at index '1'
2382// :104:22: note: when computing vector element at index '0'
24012383// :104:22: error: use of undefined value here causes illegal behavior
2402// :104:22: note: when computing vector element at index '1'
2384// :104:22: note: when computing vector element at index '0'
24032385// :104:22: error: use of undefined value here causes illegal behavior
24042386// :104:22: note: when computing vector element at index '0'
24052387// :104:22: error: use of undefined value here causes illegal behavior
......@@ -2409,19 +2391,25 @@ const std = @import("std");
24092391// :104:22: error: use of undefined value here causes illegal behavior
24102392// :104:22: note: when computing vector element at index '0'
24112393// :104:22: error: use of undefined value here causes illegal behavior
2394// :104:22: note: when computing vector element at index '0'
24122395// :104:22: error: use of undefined value here causes illegal behavior
2396// :104:22: note: when computing vector element at index '0'
24132397// :104:22: error: use of undefined value here causes illegal behavior
2398// :104:22: note: when computing vector element at index '0'
24142399// :104:22: error: use of undefined value here causes illegal behavior
2400// :104:22: note: when computing vector element at index '0'
24152401// :104:22: error: use of undefined value here causes illegal behavior
2402// :104:22: note: when computing vector element at index '0'
24162403// :104:22: error: use of undefined value here causes illegal behavior
2404// :104:22: note: when computing vector element at index '0'
24172405// :104:22: error: use of undefined value here causes illegal behavior
2418// :104:22: note: when computing vector element at index '1'
2406// :104:22: note: when computing vector element at index '0'
24192407// :104:22: error: use of undefined value here causes illegal behavior
2420// :104:22: note: when computing vector element at index '1'
2408// :104:22: note: when computing vector element at index '0'
24212409// :104:22: error: use of undefined value here causes illegal behavior
2422// :104:22: note: when computing vector element at index '1'
2410// :104:22: note: when computing vector element at index '0'
24232411// :104:22: error: use of undefined value here causes illegal behavior
2424// :104:22: note: when computing vector element at index '1'
2412// :104:22: note: when computing vector element at index '0'
24252413// :104:22: error: use of undefined value here causes illegal behavior
24262414// :104:22: note: when computing vector element at index '0'
24272415// :104:22: error: use of undefined value here causes illegal behavior
......@@ -2431,11 +2419,17 @@ const std = @import("std");
24312419// :104:22: error: use of undefined value here causes illegal behavior
24322420// :104:22: note: when computing vector element at index '0'
24332421// :104:22: error: use of undefined value here causes illegal behavior
2422// :104:22: note: when computing vector element at index '0'
24342423// :104:22: error: use of undefined value here causes illegal behavior
2424// :104:22: note: when computing vector element at index '0'
24352425// :104:22: error: use of undefined value here causes illegal behavior
2426// :104:22: note: when computing vector element at index '0'
24362427// :104:22: error: use of undefined value here causes illegal behavior
2428// :104:22: note: when computing vector element at index '0'
24372429// :104:22: error: use of undefined value here causes illegal behavior
2430// :104:22: note: when computing vector element at index '1'
24382431// :104:22: error: use of undefined value here causes illegal behavior
2432// :104:22: note: when computing vector element at index '1'
24392433// :104:22: error: use of undefined value here causes illegal behavior
24402434// :104:22: note: when computing vector element at index '1'
24412435// :104:22: error: use of undefined value here causes illegal behavior
......@@ -2445,19 +2439,25 @@ const std = @import("std");
24452439// :104:22: error: use of undefined value here causes illegal behavior
24462440// :104:22: note: when computing vector element at index '1'
24472441// :104:22: error: use of undefined value here causes illegal behavior
2448// :104:22: note: when computing vector element at index '0'
2442// :104:22: note: when computing vector element at index '1'
24492443// :104:22: error: use of undefined value here causes illegal behavior
2450// :104:22: note: when computing vector element at index '0'
2444// :104:22: note: when computing vector element at index '1'
24512445// :104:22: error: use of undefined value here causes illegal behavior
2452// :104:22: note: when computing vector element at index '0'
2446// :104:22: note: when computing vector element at index '1'
24532447// :104:22: error: use of undefined value here causes illegal behavior
2454// :104:22: note: when computing vector element at index '0'
2448// :104:22: note: when computing vector element at index '1'
24552449// :104:22: error: use of undefined value here causes illegal behavior
2450// :104:22: note: when computing vector element at index '1'
24562451// :104:22: error: use of undefined value here causes illegal behavior
2452// :104:22: note: when computing vector element at index '1'
24572453// :104:22: error: use of undefined value here causes illegal behavior
2454// :104:22: note: when computing vector element at index '1'
24582455// :104:22: error: use of undefined value here causes illegal behavior
2456// :104:22: note: when computing vector element at index '1'
24592457// :104:22: error: use of undefined value here causes illegal behavior
2458// :104:22: note: when computing vector element at index '1'
24602459// :104:22: error: use of undefined value here causes illegal behavior
2460// :104:22: note: when computing vector element at index '1'
24612461// :104:22: error: use of undefined value here causes illegal behavior
24622462// :104:22: note: when computing vector element at index '1'
24632463// :104:22: error: use of undefined value here causes illegal behavior
......@@ -2467,13 +2467,13 @@ const std = @import("std");
24672467// :104:22: error: use of undefined value here causes illegal behavior
24682468// :104:22: note: when computing vector element at index '1'
24692469// :104:22: error: use of undefined value here causes illegal behavior
2470// :104:22: note: when computing vector element at index '0'
2470// :104:22: note: when computing vector element at index '1'
24712471// :104:22: error: use of undefined value here causes illegal behavior
2472// :104:22: note: when computing vector element at index '0'
2472// :104:22: note: when computing vector element at index '1'
24732473// :104:22: error: use of undefined value here causes illegal behavior
2474// :104:22: note: when computing vector element at index '0'
2474// :104:22: note: when computing vector element at index '1'
24752475// :104:22: error: use of undefined value here causes illegal behavior
2476// :104:22: note: when computing vector element at index '0'
2476// :104:22: note: when computing vector element at index '1'
24772477// :107:30: error: use of undefined value here causes illegal behavior
24782478// :107:30: error: use of undefined value here causes illegal behavior
24792479// :107:30: error: use of undefined value here causes illegal behavior
......@@ -2481,21 +2481,13 @@ const std = @import("std");
24812481// :107:30: error: use of undefined value here causes illegal behavior
24822482// :107:30: error: use of undefined value here causes illegal behavior
24832483// :107:30: error: use of undefined value here causes illegal behavior
2484// :107:30: note: when computing vector element at index '1'
24852484// :107:30: error: use of undefined value here causes illegal behavior
2486// :107:30: note: when computing vector element at index '1'
24872485// :107:30: error: use of undefined value here causes illegal behavior
2488// :107:30: note: when computing vector element at index '1'
24892486// :107:30: error: use of undefined value here causes illegal behavior
2490// :107:30: note: when computing vector element at index '1'
24912487// :107:30: error: use of undefined value here causes illegal behavior
2492// :107:30: note: when computing vector element at index '0'
24932488// :107:30: error: use of undefined value here causes illegal behavior
2494// :107:30: note: when computing vector element at index '0'
24952489// :107:30: error: use of undefined value here causes illegal behavior
2496// :107:30: note: when computing vector element at index '0'
24972490// :107:30: error: use of undefined value here causes illegal behavior
2498// :107:30: note: when computing vector element at index '0'
24992491// :107:30: error: use of undefined value here causes illegal behavior
25002492// :107:30: error: use of undefined value here causes illegal behavior
25012493// :107:30: error: use of undefined value here causes illegal behavior
......@@ -2503,21 +2495,13 @@ const std = @import("std");
25032495// :107:30: error: use of undefined value here causes illegal behavior
25042496// :107:30: error: use of undefined value here causes illegal behavior
25052497// :107:30: error: use of undefined value here causes illegal behavior
2506// :107:30: note: when computing vector element at index '1'
25072498// :107:30: error: use of undefined value here causes illegal behavior
2508// :107:30: note: when computing vector element at index '1'
25092499// :107:30: error: use of undefined value here causes illegal behavior
2510// :107:30: note: when computing vector element at index '1'
25112500// :107:30: error: use of undefined value here causes illegal behavior
2512// :107:30: note: when computing vector element at index '1'
25132501// :107:30: error: use of undefined value here causes illegal behavior
2514// :107:30: note: when computing vector element at index '0'
25152502// :107:30: error: use of undefined value here causes illegal behavior
2516// :107:30: note: when computing vector element at index '0'
25172503// :107:30: error: use of undefined value here causes illegal behavior
2518// :107:30: note: when computing vector element at index '0'
25192504// :107:30: error: use of undefined value here causes illegal behavior
2520// :107:30: note: when computing vector element at index '0'
25212505// :107:30: error: use of undefined value here causes illegal behavior
25222506// :107:30: error: use of undefined value here causes illegal behavior
25232507// :107:30: error: use of undefined value here causes illegal behavior
......@@ -2525,13 +2509,11 @@ const std = @import("std");
25252509// :107:30: error: use of undefined value here causes illegal behavior
25262510// :107:30: error: use of undefined value here causes illegal behavior
25272511// :107:30: error: use of undefined value here causes illegal behavior
2528// :107:30: note: when computing vector element at index '1'
25292512// :107:30: error: use of undefined value here causes illegal behavior
2530// :107:30: note: when computing vector element at index '1'
25312513// :107:30: error: use of undefined value here causes illegal behavior
2532// :107:30: note: when computing vector element at index '1'
2514// :107:30: note: when computing vector element at index '0'
25332515// :107:30: error: use of undefined value here causes illegal behavior
2534// :107:30: note: when computing vector element at index '1'
2516// :107:30: note: when computing vector element at index '0'
25352517// :107:30: error: use of undefined value here causes illegal behavior
25362518// :107:30: note: when computing vector element at index '0'
25372519// :107:30: error: use of undefined value here causes illegal behavior
......@@ -2541,19 +2523,25 @@ const std = @import("std");
25412523// :107:30: error: use of undefined value here causes illegal behavior
25422524// :107:30: note: when computing vector element at index '0'
25432525// :107:30: error: use of undefined value here causes illegal behavior
2526// :107:30: note: when computing vector element at index '0'
25442527// :107:30: error: use of undefined value here causes illegal behavior
2528// :107:30: note: when computing vector element at index '0'
25452529// :107:30: error: use of undefined value here causes illegal behavior
2530// :107:30: note: when computing vector element at index '0'
25462531// :107:30: error: use of undefined value here causes illegal behavior
2532// :107:30: note: when computing vector element at index '0'
25472533// :107:30: error: use of undefined value here causes illegal behavior
2534// :107:30: note: when computing vector element at index '0'
25482535// :107:30: error: use of undefined value here causes illegal behavior
2536// :107:30: note: when computing vector element at index '0'
25492537// :107:30: error: use of undefined value here causes illegal behavior
2550// :107:30: note: when computing vector element at index '1'
2538// :107:30: note: when computing vector element at index '0'
25512539// :107:30: error: use of undefined value here causes illegal behavior
2552// :107:30: note: when computing vector element at index '1'
2540// :107:30: note: when computing vector element at index '0'
25532541// :107:30: error: use of undefined value here causes illegal behavior
2554// :107:30: note: when computing vector element at index '1'
2542// :107:30: note: when computing vector element at index '0'
25552543// :107:30: error: use of undefined value here causes illegal behavior
2556// :107:30: note: when computing vector element at index '1'
2544// :107:30: note: when computing vector element at index '0'
25572545// :107:30: error: use of undefined value here causes illegal behavior
25582546// :107:30: note: when computing vector element at index '0'
25592547// :107:30: error: use of undefined value here causes illegal behavior
......@@ -2563,11 +2551,17 @@ const std = @import("std");
25632551// :107:30: error: use of undefined value here causes illegal behavior
25642552// :107:30: note: when computing vector element at index '0'
25652553// :107:30: error: use of undefined value here causes illegal behavior
2554// :107:30: note: when computing vector element at index '0'
25662555// :107:30: error: use of undefined value here causes illegal behavior
2556// :107:30: note: when computing vector element at index '0'
25672557// :107:30: error: use of undefined value here causes illegal behavior
2558// :107:30: note: when computing vector element at index '0'
25682559// :107:30: error: use of undefined value here causes illegal behavior
2560// :107:30: note: when computing vector element at index '0'
25692561// :107:30: error: use of undefined value here causes illegal behavior
2562// :107:30: note: when computing vector element at index '1'
25702563// :107:30: error: use of undefined value here causes illegal behavior
2564// :107:30: note: when computing vector element at index '1'
25712565// :107:30: error: use of undefined value here causes illegal behavior
25722566// :107:30: note: when computing vector element at index '1'
25732567// :107:30: error: use of undefined value here causes illegal behavior
......@@ -2577,19 +2571,25 @@ const std = @import("std");
25772571// :107:30: error: use of undefined value here causes illegal behavior
25782572// :107:30: note: when computing vector element at index '1'
25792573// :107:30: error: use of undefined value here causes illegal behavior
2580// :107:30: note: when computing vector element at index '0'
2574// :107:30: note: when computing vector element at index '1'
25812575// :107:30: error: use of undefined value here causes illegal behavior
2582// :107:30: note: when computing vector element at index '0'
2576// :107:30: note: when computing vector element at index '1'
25832577// :107:30: error: use of undefined value here causes illegal behavior
2584// :107:30: note: when computing vector element at index '0'
2578// :107:30: note: when computing vector element at index '1'
25852579// :107:30: error: use of undefined value here causes illegal behavior
2586// :107:30: note: when computing vector element at index '0'
2580// :107:30: note: when computing vector element at index '1'
25872581// :107:30: error: use of undefined value here causes illegal behavior
2582// :107:30: note: when computing vector element at index '1'
25882583// :107:30: error: use of undefined value here causes illegal behavior
2584// :107:30: note: when computing vector element at index '1'
25892585// :107:30: error: use of undefined value here causes illegal behavior
2586// :107:30: note: when computing vector element at index '1'
25902587// :107:30: error: use of undefined value here causes illegal behavior
2588// :107:30: note: when computing vector element at index '1'
25912589// :107:30: error: use of undefined value here causes illegal behavior
2590// :107:30: note: when computing vector element at index '1'
25922591// :107:30: error: use of undefined value here causes illegal behavior
2592// :107:30: note: when computing vector element at index '1'
25932593// :107:30: error: use of undefined value here causes illegal behavior
25942594// :107:30: note: when computing vector element at index '1'
25952595// :107:30: error: use of undefined value here causes illegal behavior
......@@ -2599,13 +2599,13 @@ const std = @import("std");
25992599// :107:30: error: use of undefined value here causes illegal behavior
26002600// :107:30: note: when computing vector element at index '1'
26012601// :107:30: error: use of undefined value here causes illegal behavior
2602// :107:30: note: when computing vector element at index '0'
2602// :107:30: note: when computing vector element at index '1'
26032603// :107:30: error: use of undefined value here causes illegal behavior
2604// :107:30: note: when computing vector element at index '0'
2604// :107:30: note: when computing vector element at index '1'
26052605// :107:30: error: use of undefined value here causes illegal behavior
2606// :107:30: note: when computing vector element at index '0'
2606// :107:30: note: when computing vector element at index '1'
26072607// :107:30: error: use of undefined value here causes illegal behavior
2608// :107:30: note: when computing vector element at index '0'
2608// :107:30: note: when computing vector element at index '1'
26092609// :110:37: error: use of undefined value here causes illegal behavior
26102610// :110:37: error: use of undefined value here causes illegal behavior
26112611// :110:37: error: use of undefined value here causes illegal behavior
......@@ -2613,21 +2613,13 @@ const std = @import("std");
26132613// :110:37: error: use of undefined value here causes illegal behavior
26142614// :110:37: error: use of undefined value here causes illegal behavior
26152615// :110:37: error: use of undefined value here causes illegal behavior
2616// :110:37: note: when computing vector element at index '1'
26172616// :110:37: error: use of undefined value here causes illegal behavior
2618// :110:37: note: when computing vector element at index '1'
26192617// :110:37: error: use of undefined value here causes illegal behavior
2620// :110:37: note: when computing vector element at index '1'
26212618// :110:37: error: use of undefined value here causes illegal behavior
2622// :110:37: note: when computing vector element at index '1'
26232619// :110:37: error: use of undefined value here causes illegal behavior
2624// :110:37: note: when computing vector element at index '0'
26252620// :110:37: error: use of undefined value here causes illegal behavior
2626// :110:37: note: when computing vector element at index '0'
26272621// :110:37: error: use of undefined value here causes illegal behavior
2628// :110:37: note: when computing vector element at index '0'
26292622// :110:37: error: use of undefined value here causes illegal behavior
2630// :110:37: note: when computing vector element at index '0'
26312623// :110:37: error: use of undefined value here causes illegal behavior
26322624// :110:37: error: use of undefined value here causes illegal behavior
26332625// :110:37: error: use of undefined value here causes illegal behavior
......@@ -2635,21 +2627,13 @@ const std = @import("std");
26352627// :110:37: error: use of undefined value here causes illegal behavior
26362628// :110:37: error: use of undefined value here causes illegal behavior
26372629// :110:37: error: use of undefined value here causes illegal behavior
2638// :110:37: note: when computing vector element at index '1'
26392630// :110:37: error: use of undefined value here causes illegal behavior
2640// :110:37: note: when computing vector element at index '1'
26412631// :110:37: error: use of undefined value here causes illegal behavior
2642// :110:37: note: when computing vector element at index '1'
26432632// :110:37: error: use of undefined value here causes illegal behavior
2644// :110:37: note: when computing vector element at index '1'
26452633// :110:37: error: use of undefined value here causes illegal behavior
2646// :110:37: note: when computing vector element at index '0'
26472634// :110:37: error: use of undefined value here causes illegal behavior
2648// :110:37: note: when computing vector element at index '0'
26492635// :110:37: error: use of undefined value here causes illegal behavior
2650// :110:37: note: when computing vector element at index '0'
26512636// :110:37: error: use of undefined value here causes illegal behavior
2652// :110:37: note: when computing vector element at index '0'
26532637// :110:37: error: use of undefined value here causes illegal behavior
26542638// :110:37: error: use of undefined value here causes illegal behavior
26552639// :110:37: error: use of undefined value here causes illegal behavior
......@@ -2657,13 +2641,11 @@ const std = @import("std");
26572641// :110:37: error: use of undefined value here causes illegal behavior
26582642// :110:37: error: use of undefined value here causes illegal behavior
26592643// :110:37: error: use of undefined value here causes illegal behavior
2660// :110:37: note: when computing vector element at index '1'
26612644// :110:37: error: use of undefined value here causes illegal behavior
2662// :110:37: note: when computing vector element at index '1'
26632645// :110:37: error: use of undefined value here causes illegal behavior
2664// :110:37: note: when computing vector element at index '1'
2646// :110:37: note: when computing vector element at index '0'
26652647// :110:37: error: use of undefined value here causes illegal behavior
2666// :110:37: note: when computing vector element at index '1'
2648// :110:37: note: when computing vector element at index '0'
26672649// :110:37: error: use of undefined value here causes illegal behavior
26682650// :110:37: note: when computing vector element at index '0'
26692651// :110:37: error: use of undefined value here causes illegal behavior
......@@ -2673,19 +2655,25 @@ const std = @import("std");
26732655// :110:37: error: use of undefined value here causes illegal behavior
26742656// :110:37: note: when computing vector element at index '0'
26752657// :110:37: error: use of undefined value here causes illegal behavior
2658// :110:37: note: when computing vector element at index '0'
26762659// :110:37: error: use of undefined value here causes illegal behavior
2660// :110:37: note: when computing vector element at index '0'
26772661// :110:37: error: use of undefined value here causes illegal behavior
2662// :110:37: note: when computing vector element at index '0'
26782663// :110:37: error: use of undefined value here causes illegal behavior
2664// :110:37: note: when computing vector element at index '0'
26792665// :110:37: error: use of undefined value here causes illegal behavior
2666// :110:37: note: when computing vector element at index '0'
26802667// :110:37: error: use of undefined value here causes illegal behavior
2668// :110:37: note: when computing vector element at index '0'
26812669// :110:37: error: use of undefined value here causes illegal behavior
2682// :110:37: note: when computing vector element at index '1'
2670// :110:37: note: when computing vector element at index '0'
26832671// :110:37: error: use of undefined value here causes illegal behavior
2684// :110:37: note: when computing vector element at index '1'
2672// :110:37: note: when computing vector element at index '0'
26852673// :110:37: error: use of undefined value here causes illegal behavior
2686// :110:37: note: when computing vector element at index '1'
2674// :110:37: note: when computing vector element at index '0'
26872675// :110:37: error: use of undefined value here causes illegal behavior
2688// :110:37: note: when computing vector element at index '1'
2676// :110:37: note: when computing vector element at index '0'
26892677// :110:37: error: use of undefined value here causes illegal behavior
26902678// :110:37: note: when computing vector element at index '0'
26912679// :110:37: error: use of undefined value here causes illegal behavior
......@@ -2695,11 +2683,17 @@ const std = @import("std");
26952683// :110:37: error: use of undefined value here causes illegal behavior
26962684// :110:37: note: when computing vector element at index '0'
26972685// :110:37: error: use of undefined value here causes illegal behavior
2686// :110:37: note: when computing vector element at index '0'
26982687// :110:37: error: use of undefined value here causes illegal behavior
2688// :110:37: note: when computing vector element at index '0'
26992689// :110:37: error: use of undefined value here causes illegal behavior
2690// :110:37: note: when computing vector element at index '0'
27002691// :110:37: error: use of undefined value here causes illegal behavior
2692// :110:37: note: when computing vector element at index '0'
27012693// :110:37: error: use of undefined value here causes illegal behavior
2694// :110:37: note: when computing vector element at index '1'
27022695// :110:37: error: use of undefined value here causes illegal behavior
2696// :110:37: note: when computing vector element at index '1'
27032697// :110:37: error: use of undefined value here causes illegal behavior
27042698// :110:37: note: when computing vector element at index '1'
27052699// :110:37: error: use of undefined value here causes illegal behavior
......@@ -2709,19 +2703,25 @@ const std = @import("std");
27092703// :110:37: error: use of undefined value here causes illegal behavior
27102704// :110:37: note: when computing vector element at index '1'
27112705// :110:37: error: use of undefined value here causes illegal behavior
2712// :110:37: note: when computing vector element at index '0'
2706// :110:37: note: when computing vector element at index '1'
27132707// :110:37: error: use of undefined value here causes illegal behavior
2714// :110:37: note: when computing vector element at index '0'
2708// :110:37: note: when computing vector element at index '1'
27152709// :110:37: error: use of undefined value here causes illegal behavior
2716// :110:37: note: when computing vector element at index '0'
2710// :110:37: note: when computing vector element at index '1'
27172711// :110:37: error: use of undefined value here causes illegal behavior
2718// :110:37: note: when computing vector element at index '0'
2712// :110:37: note: when computing vector element at index '1'
27192713// :110:37: error: use of undefined value here causes illegal behavior
2714// :110:37: note: when computing vector element at index '1'
27202715// :110:37: error: use of undefined value here causes illegal behavior
2716// :110:37: note: when computing vector element at index '1'
27212717// :110:37: error: use of undefined value here causes illegal behavior
2718// :110:37: note: when computing vector element at index '1'
27222719// :110:37: error: use of undefined value here causes illegal behavior
2720// :110:37: note: when computing vector element at index '1'
27232721// :110:37: error: use of undefined value here causes illegal behavior
2722// :110:37: note: when computing vector element at index '1'
27242723// :110:37: error: use of undefined value here causes illegal behavior
2724// :110:37: note: when computing vector element at index '1'
27252725// :110:37: error: use of undefined value here causes illegal behavior
27262726// :110:37: note: when computing vector element at index '1'
27272727// :110:37: error: use of undefined value here causes illegal behavior
......@@ -2731,13 +2731,13 @@ const std = @import("std");
27312731// :110:37: error: use of undefined value here causes illegal behavior
27322732// :110:37: note: when computing vector element at index '1'
27332733// :110:37: error: use of undefined value here causes illegal behavior
2734// :110:37: note: when computing vector element at index '0'
2734// :110:37: note: when computing vector element at index '1'
27352735// :110:37: error: use of undefined value here causes illegal behavior
2736// :110:37: note: when computing vector element at index '0'
2736// :110:37: note: when computing vector element at index '1'
27372737// :110:37: error: use of undefined value here causes illegal behavior
2738// :110:37: note: when computing vector element at index '0'
2738// :110:37: note: when computing vector element at index '1'
27392739// :110:37: error: use of undefined value here causes illegal behavior
2740// :110:37: note: when computing vector element at index '0'
2740// :110:37: note: when computing vector element at index '1'
27412741// :113:22: error: use of undefined value here causes illegal behavior
27422742// :113:22: error: use of undefined value here causes illegal behavior
27432743// :113:22: error: use of undefined value here causes illegal behavior
......@@ -2745,21 +2745,13 @@ const std = @import("std");
27452745// :113:22: error: use of undefined value here causes illegal behavior
27462746// :113:22: error: use of undefined value here causes illegal behavior
27472747// :113:22: error: use of undefined value here causes illegal behavior
2748// :113:22: note: when computing vector element at index '1'
27492748// :113:22: error: use of undefined value here causes illegal behavior
2750// :113:22: note: when computing vector element at index '1'
27512749// :113:22: error: use of undefined value here causes illegal behavior
2752// :113:22: note: when computing vector element at index '1'
27532750// :113:22: error: use of undefined value here causes illegal behavior
2754// :113:22: note: when computing vector element at index '1'
27552751// :113:22: error: use of undefined value here causes illegal behavior
2756// :113:22: note: when computing vector element at index '0'
27572752// :113:22: error: use of undefined value here causes illegal behavior
2758// :113:22: note: when computing vector element at index '0'
27592753// :113:22: error: use of undefined value here causes illegal behavior
2760// :113:22: note: when computing vector element at index '0'
27612754// :113:22: error: use of undefined value here causes illegal behavior
2762// :113:22: note: when computing vector element at index '0'
27632755// :113:22: error: use of undefined value here causes illegal behavior
27642756// :113:22: error: use of undefined value here causes illegal behavior
27652757// :113:22: error: use of undefined value here causes illegal behavior
......@@ -2767,21 +2759,13 @@ const std = @import("std");
27672759// :113:22: error: use of undefined value here causes illegal behavior
27682760// :113:22: error: use of undefined value here causes illegal behavior
27692761// :113:22: error: use of undefined value here causes illegal behavior
2770// :113:22: note: when computing vector element at index '1'
27712762// :113:22: error: use of undefined value here causes illegal behavior
2772// :113:22: note: when computing vector element at index '1'
27732763// :113:22: error: use of undefined value here causes illegal behavior
2774// :113:22: note: when computing vector element at index '1'
27752764// :113:22: error: use of undefined value here causes illegal behavior
2776// :113:22: note: when computing vector element at index '1'
27772765// :113:22: error: use of undefined value here causes illegal behavior
2778// :113:22: note: when computing vector element at index '0'
27792766// :113:22: error: use of undefined value here causes illegal behavior
2780// :113:22: note: when computing vector element at index '0'
27812767// :113:22: error: use of undefined value here causes illegal behavior
2782// :113:22: note: when computing vector element at index '0'
27832768// :113:22: error: use of undefined value here causes illegal behavior
2784// :113:22: note: when computing vector element at index '0'
27852769// :113:22: error: use of undefined value here causes illegal behavior
27862770// :113:22: error: use of undefined value here causes illegal behavior
27872771// :113:22: error: use of undefined value here causes illegal behavior
......@@ -2789,13 +2773,11 @@ const std = @import("std");
27892773// :113:22: error: use of undefined value here causes illegal behavior
27902774// :113:22: error: use of undefined value here causes illegal behavior
27912775// :113:22: error: use of undefined value here causes illegal behavior
2792// :113:22: note: when computing vector element at index '1'
27932776// :113:22: error: use of undefined value here causes illegal behavior
2794// :113:22: note: when computing vector element at index '1'
27952777// :113:22: error: use of undefined value here causes illegal behavior
2796// :113:22: note: when computing vector element at index '1'
2778// :113:22: note: when computing vector element at index '0'
27972779// :113:22: error: use of undefined value here causes illegal behavior
2798// :113:22: note: when computing vector element at index '1'
2780// :113:22: note: when computing vector element at index '0'
27992781// :113:22: error: use of undefined value here causes illegal behavior
28002782// :113:22: note: when computing vector element at index '0'
28012783// :113:22: error: use of undefined value here causes illegal behavior
......@@ -2805,19 +2787,25 @@ const std = @import("std");
28052787// :113:22: error: use of undefined value here causes illegal behavior
28062788// :113:22: note: when computing vector element at index '0'
28072789// :113:22: error: use of undefined value here causes illegal behavior
2790// :113:22: note: when computing vector element at index '0'
28082791// :113:22: error: use of undefined value here causes illegal behavior
2792// :113:22: note: when computing vector element at index '0'
28092793// :113:22: error: use of undefined value here causes illegal behavior
2794// :113:22: note: when computing vector element at index '0'
28102795// :113:22: error: use of undefined value here causes illegal behavior
2796// :113:22: note: when computing vector element at index '0'
28112797// :113:22: error: use of undefined value here causes illegal behavior
2798// :113:22: note: when computing vector element at index '0'
28122799// :113:22: error: use of undefined value here causes illegal behavior
2800// :113:22: note: when computing vector element at index '0'
28132801// :113:22: error: use of undefined value here causes illegal behavior
2814// :113:22: note: when computing vector element at index '1'
2802// :113:22: note: when computing vector element at index '0'
28152803// :113:22: error: use of undefined value here causes illegal behavior
2816// :113:22: note: when computing vector element at index '1'
2804// :113:22: note: when computing vector element at index '0'
28172805// :113:22: error: use of undefined value here causes illegal behavior
2818// :113:22: note: when computing vector element at index '1'
2806// :113:22: note: when computing vector element at index '0'
28192807// :113:22: error: use of undefined value here causes illegal behavior
2820// :113:22: note: when computing vector element at index '1'
2808// :113:22: note: when computing vector element at index '0'
28212809// :113:22: error: use of undefined value here causes illegal behavior
28222810// :113:22: note: when computing vector element at index '0'
28232811// :113:22: error: use of undefined value here causes illegal behavior
......@@ -2827,11 +2815,17 @@ const std = @import("std");
28272815// :113:22: error: use of undefined value here causes illegal behavior
28282816// :113:22: note: when computing vector element at index '0'
28292817// :113:22: error: use of undefined value here causes illegal behavior
2818// :113:22: note: when computing vector element at index '0'
28302819// :113:22: error: use of undefined value here causes illegal behavior
2820// :113:22: note: when computing vector element at index '0'
28312821// :113:22: error: use of undefined value here causes illegal behavior
2822// :113:22: note: when computing vector element at index '0'
28322823// :113:22: error: use of undefined value here causes illegal behavior
2824// :113:22: note: when computing vector element at index '0'
28332825// :113:22: error: use of undefined value here causes illegal behavior
2826// :113:22: note: when computing vector element at index '1'
28342827// :113:22: error: use of undefined value here causes illegal behavior
2828// :113:22: note: when computing vector element at index '1'
28352829// :113:22: error: use of undefined value here causes illegal behavior
28362830// :113:22: note: when computing vector element at index '1'
28372831// :113:22: error: use of undefined value here causes illegal behavior
......@@ -2841,19 +2835,25 @@ const std = @import("std");
28412835// :113:22: error: use of undefined value here causes illegal behavior
28422836// :113:22: note: when computing vector element at index '1'
28432837// :113:22: error: use of undefined value here causes illegal behavior
2844// :113:22: note: when computing vector element at index '0'
2838// :113:22: note: when computing vector element at index '1'
28452839// :113:22: error: use of undefined value here causes illegal behavior
2846// :113:22: note: when computing vector element at index '0'
2840// :113:22: note: when computing vector element at index '1'
28472841// :113:22: error: use of undefined value here causes illegal behavior
2848// :113:22: note: when computing vector element at index '0'
2842// :113:22: note: when computing vector element at index '1'
28492843// :113:22: error: use of undefined value here causes illegal behavior
2850// :113:22: note: when computing vector element at index '0'
2844// :113:22: note: when computing vector element at index '1'
28512845// :113:22: error: use of undefined value here causes illegal behavior
2846// :113:22: note: when computing vector element at index '1'
28522847// :113:22: error: use of undefined value here causes illegal behavior
2848// :113:22: note: when computing vector element at index '1'
28532849// :113:22: error: use of undefined value here causes illegal behavior
2850// :113:22: note: when computing vector element at index '1'
28542851// :113:22: error: use of undefined value here causes illegal behavior
2852// :113:22: note: when computing vector element at index '1'
28552853// :113:22: error: use of undefined value here causes illegal behavior
2854// :113:22: note: when computing vector element at index '1'
28562855// :113:22: error: use of undefined value here causes illegal behavior
2856// :113:22: note: when computing vector element at index '1'
28572857// :113:22: error: use of undefined value here causes illegal behavior
28582858// :113:22: note: when computing vector element at index '1'
28592859// :113:22: error: use of undefined value here causes illegal behavior
......@@ -2863,13 +2863,13 @@ const std = @import("std");
28632863// :113:22: error: use of undefined value here causes illegal behavior
28642864// :113:22: note: when computing vector element at index '1'
28652865// :113:22: error: use of undefined value here causes illegal behavior
2866// :113:22: note: when computing vector element at index '0'
2866// :113:22: note: when computing vector element at index '1'
28672867// :113:22: error: use of undefined value here causes illegal behavior
2868// :113:22: note: when computing vector element at index '0'
2868// :113:22: note: when computing vector element at index '1'
28692869// :113:22: error: use of undefined value here causes illegal behavior
2870// :113:22: note: when computing vector element at index '0'
2870// :113:22: note: when computing vector element at index '1'
28712871// :113:22: error: use of undefined value here causes illegal behavior
2872// :113:22: note: when computing vector element at index '0'
2872// :113:22: note: when computing vector element at index '1'
28732873// :116:30: error: use of undefined value here causes illegal behavior
28742874// :116:30: error: use of undefined value here causes illegal behavior
28752875// :116:30: error: use of undefined value here causes illegal behavior
......@@ -2877,21 +2877,13 @@ const std = @import("std");
28772877// :116:30: error: use of undefined value here causes illegal behavior
28782878// :116:30: error: use of undefined value here causes illegal behavior
28792879// :116:30: error: use of undefined value here causes illegal behavior
2880// :116:30: note: when computing vector element at index '1'
28812880// :116:30: error: use of undefined value here causes illegal behavior
2882// :116:30: note: when computing vector element at index '1'
28832881// :116:30: error: use of undefined value here causes illegal behavior
2884// :116:30: note: when computing vector element at index '1'
28852882// :116:30: error: use of undefined value here causes illegal behavior
2886// :116:30: note: when computing vector element at index '1'
28872883// :116:30: error: use of undefined value here causes illegal behavior
2888// :116:30: note: when computing vector element at index '0'
28892884// :116:30: error: use of undefined value here causes illegal behavior
2890// :116:30: note: when computing vector element at index '0'
28912885// :116:30: error: use of undefined value here causes illegal behavior
2892// :116:30: note: when computing vector element at index '0'
28932886// :116:30: error: use of undefined value here causes illegal behavior
2894// :116:30: note: when computing vector element at index '0'
28952887// :116:30: error: use of undefined value here causes illegal behavior
28962888// :116:30: error: use of undefined value here causes illegal behavior
28972889// :116:30: error: use of undefined value here causes illegal behavior
......@@ -2899,21 +2891,13 @@ const std = @import("std");
28992891// :116:30: error: use of undefined value here causes illegal behavior
29002892// :116:30: error: use of undefined value here causes illegal behavior
29012893// :116:30: error: use of undefined value here causes illegal behavior
2902// :116:30: note: when computing vector element at index '1'
29032894// :116:30: error: use of undefined value here causes illegal behavior
2904// :116:30: note: when computing vector element at index '1'
29052895// :116:30: error: use of undefined value here causes illegal behavior
2906// :116:30: note: when computing vector element at index '1'
29072896// :116:30: error: use of undefined value here causes illegal behavior
2908// :116:30: note: when computing vector element at index '1'
29092897// :116:30: error: use of undefined value here causes illegal behavior
2910// :116:30: note: when computing vector element at index '0'
29112898// :116:30: error: use of undefined value here causes illegal behavior
2912// :116:30: note: when computing vector element at index '0'
29132899// :116:30: error: use of undefined value here causes illegal behavior
2914// :116:30: note: when computing vector element at index '0'
29152900// :116:30: error: use of undefined value here causes illegal behavior
2916// :116:30: note: when computing vector element at index '0'
29172901// :116:30: error: use of undefined value here causes illegal behavior
29182902// :116:30: error: use of undefined value here causes illegal behavior
29192903// :116:30: error: use of undefined value here causes illegal behavior
......@@ -2921,13 +2905,11 @@ const std = @import("std");
29212905// :116:30: error: use of undefined value here causes illegal behavior
29222906// :116:30: error: use of undefined value here causes illegal behavior
29232907// :116:30: error: use of undefined value here causes illegal behavior
2924// :116:30: note: when computing vector element at index '1'
29252908// :116:30: error: use of undefined value here causes illegal behavior
2926// :116:30: note: when computing vector element at index '1'
29272909// :116:30: error: use of undefined value here causes illegal behavior
2928// :116:30: note: when computing vector element at index '1'
2910// :116:30: note: when computing vector element at index '0'
29292911// :116:30: error: use of undefined value here causes illegal behavior
2930// :116:30: note: when computing vector element at index '1'
2912// :116:30: note: when computing vector element at index '0'
29312913// :116:30: error: use of undefined value here causes illegal behavior
29322914// :116:30: note: when computing vector element at index '0'
29332915// :116:30: error: use of undefined value here causes illegal behavior
......@@ -2937,19 +2919,25 @@ const std = @import("std");
29372919// :116:30: error: use of undefined value here causes illegal behavior
29382920// :116:30: note: when computing vector element at index '0'
29392921// :116:30: error: use of undefined value here causes illegal behavior
2922// :116:30: note: when computing vector element at index '0'
29402923// :116:30: error: use of undefined value here causes illegal behavior
2924// :116:30: note: when computing vector element at index '0'
29412925// :116:30: error: use of undefined value here causes illegal behavior
2926// :116:30: note: when computing vector element at index '0'
29422927// :116:30: error: use of undefined value here causes illegal behavior
2928// :116:30: note: when computing vector element at index '0'
29432929// :116:30: error: use of undefined value here causes illegal behavior
2930// :116:30: note: when computing vector element at index '0'
29442931// :116:30: error: use of undefined value here causes illegal behavior
2932// :116:30: note: when computing vector element at index '0'
29452933// :116:30: error: use of undefined value here causes illegal behavior
2946// :116:30: note: when computing vector element at index '1'
2934// :116:30: note: when computing vector element at index '0'
29472935// :116:30: error: use of undefined value here causes illegal behavior
2948// :116:30: note: when computing vector element at index '1'
2936// :116:30: note: when computing vector element at index '0'
29492937// :116:30: error: use of undefined value here causes illegal behavior
2950// :116:30: note: when computing vector element at index '1'
2938// :116:30: note: when computing vector element at index '0'
29512939// :116:30: error: use of undefined value here causes illegal behavior
2952// :116:30: note: when computing vector element at index '1'
2940// :116:30: note: when computing vector element at index '0'
29532941// :116:30: error: use of undefined value here causes illegal behavior
29542942// :116:30: note: when computing vector element at index '0'
29552943// :116:30: error: use of undefined value here causes illegal behavior
......@@ -2959,11 +2947,17 @@ const std = @import("std");
29592947// :116:30: error: use of undefined value here causes illegal behavior
29602948// :116:30: note: when computing vector element at index '0'
29612949// :116:30: error: use of undefined value here causes illegal behavior
2950// :116:30: note: when computing vector element at index '0'
29622951// :116:30: error: use of undefined value here causes illegal behavior
2952// :116:30: note: when computing vector element at index '0'
29632953// :116:30: error: use of undefined value here causes illegal behavior
2954// :116:30: note: when computing vector element at index '0'
29642955// :116:30: error: use of undefined value here causes illegal behavior
2956// :116:30: note: when computing vector element at index '0'
29652957// :116:30: error: use of undefined value here causes illegal behavior
2958// :116:30: note: when computing vector element at index '1'
29662959// :116:30: error: use of undefined value here causes illegal behavior
2960// :116:30: note: when computing vector element at index '1'
29672961// :116:30: error: use of undefined value here causes illegal behavior
29682962// :116:30: note: when computing vector element at index '1'
29692963// :116:30: error: use of undefined value here causes illegal behavior
......@@ -2973,19 +2967,25 @@ const std = @import("std");
29732967// :116:30: error: use of undefined value here causes illegal behavior
29742968// :116:30: note: when computing vector element at index '1'
29752969// :116:30: error: use of undefined value here causes illegal behavior
2976// :116:30: note: when computing vector element at index '0'
2970// :116:30: note: when computing vector element at index '1'
29772971// :116:30: error: use of undefined value here causes illegal behavior
2978// :116:30: note: when computing vector element at index '0'
2972// :116:30: note: when computing vector element at index '1'
29792973// :116:30: error: use of undefined value here causes illegal behavior
2980// :116:30: note: when computing vector element at index '0'
2974// :116:30: note: when computing vector element at index '1'
29812975// :116:30: error: use of undefined value here causes illegal behavior
2982// :116:30: note: when computing vector element at index '0'
2976// :116:30: note: when computing vector element at index '1'
29832977// :116:30: error: use of undefined value here causes illegal behavior
2978// :116:30: note: when computing vector element at index '1'
29842979// :116:30: error: use of undefined value here causes illegal behavior
2980// :116:30: note: when computing vector element at index '1'
29852981// :116:30: error: use of undefined value here causes illegal behavior
2982// :116:30: note: when computing vector element at index '1'
29862983// :116:30: error: use of undefined value here causes illegal behavior
2984// :116:30: note: when computing vector element at index '1'
29872985// :116:30: error: use of undefined value here causes illegal behavior
2986// :116:30: note: when computing vector element at index '1'
29882987// :116:30: error: use of undefined value here causes illegal behavior
2988// :116:30: note: when computing vector element at index '1'
29892989// :116:30: error: use of undefined value here causes illegal behavior
29902990// :116:30: note: when computing vector element at index '1'
29912991// :116:30: error: use of undefined value here causes illegal behavior
......@@ -2995,10 +2995,10 @@ const std = @import("std");
29952995// :116:30: error: use of undefined value here causes illegal behavior
29962996// :116:30: note: when computing vector element at index '1'
29972997// :116:30: error: use of undefined value here causes illegal behavior
2998// :116:30: note: when computing vector element at index '0'
2998// :116:30: note: when computing vector element at index '1'
29992999// :116:30: error: use of undefined value here causes illegal behavior
3000// :116:30: note: when computing vector element at index '0'
3000// :116:30: note: when computing vector element at index '1'
30013001// :116:30: error: use of undefined value here causes illegal behavior
3002// :116:30: note: when computing vector element at index '0'
3002// :116:30: note: when computing vector element at index '1'
30033003// :116:30: error: use of undefined value here causes illegal behavior
3004// :116:30: note: when computing vector element at index '0'
3004// :116:30: note: when computing vector element at index '1'
test/cases/compile_errors/union_auto-enum_value_already_taken.zig+2-2
......@@ -12,5 +12,5 @@ export fn entry() void {
1212
1313// error
1414//
15// :6:9: error: enum tag value 60 already taken
16// :4:9: note: other occurrence here
15// :6:9: error: enum tag value '60' for field 'E' already taken
16// :4:9: note: previous occurrence in field 'C'
test/cases/compile_errors/union_depends_on_pointer_alignment.zig deleted-11
......@@ -1,11 +0,0 @@
1const U = union {
2 next: ?*align(1) U align(128),
3};
4
5export fn entry() usize {
6 return @alignOf(U);
7}
8
9// error
10//
11// :1:11: error: union layout depends on being pointer aligned
test/cases/compile_errors/union_enum_field_missing.zig+2-3
......@@ -15,6 +15,5 @@ export fn entry() usize {
1515
1616// error
1717//
18// :7:11: error: enum field(s) missing in union
19// :4:5: note: field 'c' missing, declared here
20// :1:11: note: enum declared here
18// :7:11: error: enum field 'c' missing from union
19// :4:5: note: enum field here
test/cases/compile_errors/union_field_ordered_differently_than_enum.zig+3-4
......@@ -21,7 +21,6 @@ export fn entry() usize {
2121
2222// error
2323//
24// :4:5: error: union field 'b' ordered differently than corresponding enum field
25// :1:23: note: enum field here
26// :14:5: error: union field 'b' ordered differently than corresponding enum field
27// :10:5: note: enum field here
24// :3:15: error: union field order does not match tag enum field order
25// :5:5: note: union field 'a' is index 1
26// :1:20: note: enum field 'a' is index 0
test/cases/compile_errors/union_noreturn_field_initialized.zig+6-6
......@@ -15,8 +15,8 @@ pub export fn entry2() void {
1515 const U = union(enum) {
1616 a: noreturn,
1717 };
18 var u: U = undefined;
19 u = .a;
18 const u: U = .a;
19 _ = u;
2020}
2121pub export fn entry3() void {
2222 const U = union(enum) {
......@@ -30,12 +30,12 @@ pub export fn entry3() void {
3030
3131// error
3232//
33// :11:14: error: cannot initialize 'noreturn' field of union
33// :11:14: error: cannot initialize union field with uninstantiable type 'noreturn'
3434// :4:9: note: field 'b' declared here
3535// :2:15: note: union declared here
36// :19:10: error: cannot initialize 'noreturn' field of union
36// :18:19: error: cannot initialize union field with uninstantiable type 'noreturn'
3737// :16:9: note: field 'a' declared here
3838// :15:15: note: union declared here
39// :28:13: error: runtime coercion from enum '@typeInfo(tmp.entry3.U).@"union".tag_type.?' to union 'tmp.entry3.U' which has a 'noreturn' field
40// :23:9: note: 'noreturn' field here
39// :28:13: error: runtime coercion from enum '@typeInfo(tmp.entry3.U).@"union".tag_type.?' to union 'tmp.entry3.U' which has non-void fields
40// :23:9: note: field 'a' has uninstantiable type 'noreturn'
4141// :22:15: note: union declared here
test/cases/compile_errors/union_with_specified_enum_omits_field.zig+2-3
......@@ -13,6 +13,5 @@ export fn entry() usize {
1313
1414// error
1515//
16// :6:17: error: enum field(s) missing in union
17// :4:5: note: field 'C' missing, declared here
18// :1:16: note: enum declared here
16// :6:17: error: enum field 'C' missing from union
17// :4:5: note: enum field here
test/cases/compile_errors/union_with_too_small_explicit_signed_tag_type.zig+1-2
......@@ -10,5 +10,4 @@ export fn entry() void {
1010
1111// error
1212//
13// :1:22: error: specified integer tag type cannot represent every field
14// :1:22: note: type 'i2' cannot fit values in range 0...3
13// :4:5: error: enum tag value '2' too large for type 'i2'
test/cases/compile_errors/union_with_too_small_explicit_unsigned_tag_type.zig+1-2
......@@ -11,5 +11,4 @@ export fn entry() void {
1111
1212// error
1313//
14// :1:22: error: specified integer tag type cannot represent every field
15// :1:22: note: type 'u2' cannot fit values in range 0...4
14// :6:5: error: enum tag value '4' too large for type 'u2'
test/cases/compile_errors/untagged_union_integer_conversion.zig+1-1
......@@ -1,4 +1,4 @@
1const UntaggedUnion = union {};
1const UntaggedUnion = union { a: void };
22comptime {
33 @intFromEnum(@as(UntaggedUnion, undefined));
44}
test/cases/compile_errors/variadic_arg_validation.zig+1-1
......@@ -25,4 +25,4 @@ pub export fn entry3() void {
2525// :14:24: error: cannot pass 'u48' to variadic function
2626// :14:24: note: only integers with 0 or power of two bits are extern compatible
2727// :18:24: error: cannot pass 'void' to variadic function
28// :18:24: note: 'void' is a zero bit type; for C 'void' use 'anyopaque'
28// :18:24: note: 'void' is a zero bit type
test/cases/compile_errors/zero_width_nonexhaustive_enum.zig+9-6
......@@ -1,17 +1,20 @@
11comptime {
2 _ = enum(i0) { a, _ };
2 const E = enum(i0) { a, _ };
3 _ = @as(E, undefined);
34}
45
56comptime {
6 _ = enum(u0) { a, _ };
7 const E = enum(u0) { a, _ };
8 _ = @as(E, undefined);
79}
810
911comptime {
10 _ = enum(u0) { a, b, _ };
12 const E = enum(u0) { a, b, _ };
13 _ = @as(E, undefined);
1114}
1215
1316// error
1417//
15// :2:9: error: non-exhaustive enum specifies every value
16// :6:9: error: non-exhaustive enum specifies every value
17// :10:23: error: enumeration value '1' too large for type 'u0'
18// :2:15: error: non-exhaustive enum specifies every value
19// :7:15: error: non-exhaustive enum specifies every value
20// :12:29: error: enum tag value '1' too large for type 'u0'
test/incremental/change_enum_tag_type+1-1
......@@ -44,7 +44,7 @@ comptime {
4444}
4545const std = @import("std");
4646const io = std.Io.Threaded.global_single_threaded.io();
47#expect_error=main.zig:7:5: error: enumeration value '4' too large for type 'u2'
47#expect_error=main.zig:7:5: error: enum tag value '4' too large for type 'u2'
4848#update=increase tag size
4949#file=main.zig
5050const Tag = u3;