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
signature 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 {...@@ -718,7 +718,7 @@ export fn zig_med_struct_ints(s: MedStructInts) void {
718 expect(s.z == 3) catch @panic("test failure");718 expect(s.z == 3) catch @panic("test failure");
719}719}
720720
721const SmallPackedStruct = packed struct {721const SmallPackedStruct = packed struct(u8) {
722 a: u2,722 a: u2,
723 b: u2,723 b: u2,
724 c: u2,724 c: u2,
...@@ -744,7 +744,7 @@ test "C ABI small packed struct" {...@@ -744,7 +744,7 @@ test "C ABI small packed struct" {
744 try expect(s2.d == 3);744 try expect(s2.d == 3);
745}745}
746746
747const BigPackedStruct = packed struct {747const BigPackedStruct = packed struct(u128) {
748 a: u64,748 a: u64,
749 b: u64,749 b: u64,
750};750};
test/cases/compile_errors/@import_zon_bad_type.zig+4-4
...@@ -116,13 +116,13 @@ export fn testMutablePointer() void {...@@ -116,13 +116,13 @@ export fn testMutablePointer() void {
116// tmp.zig:85:26: note: ZON does not allow nested optionals116// tmp.zig:85:26: note: ZON does not allow nested optionals
117// tmp.zig:90:29: error: type '*i32' is not available in ZON117// tmp.zig:90:29: error: type '*i32' is not available in ZON
118// tmp.zig:90:29: note: ZON does not allow mutable pointers118// 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
121// neg_inf.zon:1:1: error: expected type '?u8'119// neg_inf.zon:1:1: error: expected type '?u8'
122// tmp.zig:57:28: note: imported here120// 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
123// neg_inf.zon:1:1: error: expected type 'tmp.E'123// neg_inf.zon:1:1: error: expected type 'tmp.E'
124// tmp.zig:63:26: note: imported here124// 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
127// neg_inf.zon:1:1: error: expected type 'tmp.EU'125// neg_inf.zon:1:1: error: expected type 'tmp.EU'
128// tmp.zig:75:27: note: imported here126// 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 {...@@ -58,25 +58,25 @@ export fn testVector() void {
58// error58// error
59// imports=zon/vec2.zon59// imports=zon/vec2.zon
60//60//
61// vec2.zon:1:2: error: expected type '?f32'
62// tmp.zig:2:29: note: imported here
63// vec2.zon:1:2: error: expected type '*const ?f32'61// vec2.zon:1:2: error: expected type '*const ?f32'
64// tmp.zig:7:36: note: imported here62// tmp.zig:7:36: note: imported here
65// vec2.zon:1:2: error: expected type '?*const f32'63// vec2.zon:1:2: error: expected type '?*const f32'
66// tmp.zig:12:36: note: imported here64// 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
67// vec2.zon:1:2: error: expected type '?bool'73// vec2.zon:1:2: error: expected type '?bool'
68// tmp.zig:17:30: note: imported here74// tmp.zig:17:30: note: imported here
75// vec2.zon:1:2: error: expected type '?f32'
76// tmp.zig:2:29: note: imported here
69// vec2.zon:1:2: error: expected type '?i32'77// vec2.zon:1:2: error: expected type '?i32'
70// tmp.zig:22:29: note: imported here78// tmp.zig:22:29: note: imported here
71// vec2.zon:1:2: error: expected type '?tmp.Enum'79// vec2.zon:1:2: error: expected type '?tmp.Enum'
72// tmp.zig:28:30: note: imported here80// 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
77// vec2.zon:1:2: error: expected type '?tmp.Union'81// vec2.zon:1:2: error: expected type '?tmp.Union'
78// tmp.zig:44:31: note: imported here82// 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 {...@@ -13,7 +13,7 @@ export fn testTuple() void {
13// error13// error
14// imports=zon/nan.zon14// imports=zon/nan.zon
15//15//
16//nan.zon:1:1: error: expected type '?tmp.Struct'16// nan.zon:1:1: error: expected type '?struct { bool }'
17//tmp.zig:3:32: note: imported here17// tmp.zig:9:31: note: imported here
18//nan.zon:1:1: error: expected type '?struct { bool }'18// nan.zon:1:1: error: expected type '?tmp.Struct'
19//tmp.zig:9:31: note: imported here19// 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 {...@@ -12,16 +12,14 @@ const U = union {
12 b: [1 << 32]u8,12 b: [1 << 32]u8,
13};13};
1414
15const V = union {
16 a: u32,
17 b: T,
18};
19
20comptime {15comptime {
21 _ = S;16 _ = @as(S, undefined);
22 _ = T;17}
23 _ = U;18comptime {
24 _ = V;19 _ = @as(T, undefined);
20}
21comptime {
22 _ = @as(U, undefined);
25}23}
2624
27// error25// error
test/cases/compile_errors/alignOf_bad_type.zig+1-1
...@@ -9,5 +9,5 @@ export fn entry1() usize {...@@ -9,5 +9,5 @@ export fn entry1() usize {
9// error9// error
10//10//
11// :2:21: error: no align available for uninstantiable type 'noreturn'11// :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'
13// :4:11: note: struct declared here13// :4:11: note: struct declared here
test/cases/compile_errors/align_zero.zig+4-4
...@@ -30,11 +30,11 @@ export fn g() void {...@@ -30,11 +30,11 @@ export fn g() void {
30}30}
3131
32export fn h() void {32export fn h() void {
33 _ = struct { field: i32 align(0) };33 _ = @as(struct { field: i32 align(0) }, undefined);
34}34}
3535
36export fn i() void {36export fn i() void {
37 _ = union { field: i32 align(0) };37 _ = @as(union { field: i32 align(0) }, undefined);
38}38}
3939
40export fn j() void {40export fn j() void {
...@@ -54,7 +54,7 @@ export fn k() void {...@@ -54,7 +54,7 @@ export fn k() void {
54// :20:30: error: alignment must be >= 154// :20:30: error: alignment must be >= 1
55// :25:16: error: alignment must be >= 155// :25:16: error: alignment must be >= 1
56// :29:17: error: alignment must be >= 156// :29:17: error: alignment must be >= 1
57// :33:35: error: alignment must be >= 157// :33:39: error: alignment must be >= 1
58// :37:34: error: alignment must be >= 158// :37:38: error: alignment must be >= 1
59// :41:51: error: alignment must be >= 159// :41:51: error: alignment must be >= 1
60// :45:25: error: alignment must be >= 160// :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 {...@@ -16,7 +16,11 @@ export fn entry3() void {
16// error16// error
17//17//
18// :3:23: error: bit-pointer cannot refer to value of type 'tmp.entry1.S'18// :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 types19// :3:23: note: non-packed structs do not have a bit-packed representation
20// :2:22: note: struct declared here
20// :8:36: error: bit-pointer cannot refer to value of type 'tmp.entry2.S'21// :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 types22// :8:36: note: non-packed structs do not have a bit-packed representation
23// :7:15: note: struct declared here
22// :13:23: error: bit-pointer cannot refer to value of type 'tmp.entry3.E'24// :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 {...@@ -8,4 +8,6 @@ pub export fn entry() void {
88
9// error9// error
10//10//
11// :1:27: error: backing integer type 'u32' has bit size 32 but the struct fields have a total bit size of 111// :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 {...@@ -40,13 +40,13 @@ export fn entry() void {
4040
41// error41// error
42//42//
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'
44// :6:20: error: expected type 'f16', found 'i13'45// :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'
46// :6:20: error: expected type 'f32', found 'i26'47// :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'
48// :6:20: error: expected type 'f64', found 'i55'49// :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'
50// :6:20: error: expected type 'f80', found 'i66'51// :6:20: error: expected type 'f80', found 'i66'
51// :6:20: error: expected type 'f128', found 'u114'52// :6:20: error: expected type 'f80', found 'u65'
52// :6:20: error: expected type 'f128', found 'i115'
test/cases/compile_errors/comptime_var_referenced_by_type.zig+1-1
...@@ -21,6 +21,6 @@ comptime {...@@ -21,6 +21,6 @@ comptime {
21// error21// error
22//22//
23// :7:16: error: captured value contains reference to comptime var23// :7:16: error: captured value contains reference to comptime var
24// :7:16: note: 'wrapper' points to '@as(*const tmp.Wrapper, @ptrCast(&v0)).*', where24// :7:16: note: 'wrapper' points to 'v0', where
25// :16:5: note: 'v0.ptr' points to comptime var declared here25// :16:5: note: 'v0.ptr' points to comptime var declared here
26// :17:29: note: called at comptime here26// :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 {...@@ -7,4 +7,4 @@ export fn entry() usize {
77
8// error8// error
9//9//
10// :1:11: error: struct 'tmp.A' depends on itself10// :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 {...@@ -26,9 +26,11 @@ export fn d() void {
2626
27// error27// error
28//28//
29// :3:8: error: opaque types have unknown size and therefore cannot be directly embedded in structs29// :3:8: error: cannot directly embed opaque type 'tmp.O' in struct
30// :3:8: note: opaque types have unknown size
30// :1:11: note: opaque declared here31// :1:11: note: opaque declared here
31// :7:10: error: opaque types have unknown size and therefore cannot be directly embedded in unions32// :7:10: error: cannot directly embed opaque type 'tmp.O' in union
33// :7:10: note: opaque types have unknown size
32// :1:11: note: opaque declared here34// :1:11: note: opaque declared here
33// :18:24: error: cannot cast to opaque type 'tmp.O'35// :18:24: error: cannot cast to opaque type 'tmp.O'
34// :1:11: note: opaque declared here36// :1:11: note: opaque declared here
test/cases/compile_errors/enum_field_value_references_enum.zig+4-8
...@@ -1,15 +1,11 @@...@@ -1,15 +1,11 @@
1pub const Foo = enum(c_int) {1pub const Foo = enum(c_int) {
2 A = Foo.B,2 a = 10,
3 C = D,3 b = @intFromEnum(Foo.a) - 1,
4
5 pub const B = 0;
6};4};
7export fn entry() void {5export fn entry() void {
8 const s: Foo = Foo.E;6 _ = @as(Foo, .a);
9 _ = s;
10}7}
11const D = 1;
128
13// error9// error
14//10//
15// :1:5: error: dependency loop detected11// :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;...@@ -10,4 +10,4 @@ const D = 1;
1010
11// error11// error
12//12//
13// :1:5: error: dependency loop detected13// :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 {...@@ -12,5 +12,5 @@ export fn entry() void {
1212
13// error13// error
14//14//
15// :6:9: error: enum tag value 60 already taken15// :6:9: error: enum tag value '60' for field 'E' already taken
16// :4:9: note: other occurrence here16// :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 {...@@ -26,5 +26,6 @@ pub fn main() Error!void {
26// error26// error
27// target=x86_64-linux27// target=x86_64-linux
28//28//
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'
30// :23:29: note: 'error.InvalidDirection' not a member of destination error set30// :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 {...@@ -11,5 +11,5 @@ comptime {
11// error11// error
12// target=x86_64-linux12// target=x86_64-linux
13//13//
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'
15// :8:41: note: pointer alignment '1' cannot cast into pointer alignment '2'15// :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 {...@@ -11,5 +11,5 @@ export fn entry(foo: Foo) void {
11// target=x86_64-linux11// target=x86_64-linux
12//12//
13// :6:17: error: parameter of type 'tmp.Foo' not allowed in function with calling convention 'x86_64_sysv'13// :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 compatible14// :6:17: note: struct with automatic layout has no guaranteed in-memory representation
15// :1:13: note: struct declared here15// :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 {...@@ -11,5 +11,5 @@ export fn entry(foo: Foo) void {
11// target=x86_64-linux11// target=x86_64-linux
12//12//
13// :6:17: error: parameter of type 'tmp.Foo' not allowed in function with calling convention 'x86_64_sysv'13// :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 compatible14// :6:17: note: union with automatic layout has no guaranteed in-memory representation
15// :1:13: note: union declared here15// :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 {...@@ -11,6 +11,6 @@ export fn bar() void {
1111
12// error12// error
13//13//
14// :1:30: error: opaque return type 'anyopaque' not allowed
14// :1:30: error: opaque return type 'tmp.MyOpaque' not allowed15// :1:30: error: opaque return type 'tmp.MyOpaque' not allowed
15// :4:18: note: opaque declared here16// :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 {...@@ -6,4 +6,4 @@ export fn foo() void {
66
7// error7// error
8//8//
9// :3:27: error: indexing into empty array is not allowed9// :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 {...@@ -8,4 +8,4 @@ export fn foo() void {
88
9// error9// error
10//10//
11// :5:27: error: indexing into empty array is not allowed11// :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 {...@@ -13,4 +13,8 @@ export fn entry() usize {
1313
14// error14// error
15//15//
16// :1:11: error: struct 'tmp.A' depends on itself16// 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 {...@@ -49,33 +49,33 @@ export fn deref5(ptr: *const U5) void {
4949
50// error50// error
51//51//
52// :13:17: error: expected type 'initialize_empty_union.U0', found '@TypeOf(undefined)'52// :13:17: error: expected type 'tmp.U0', found '@TypeOf(undefined)'
53// :13:17: note: cannot coerce to uninstantiable type 'initialize_empty_union.U0'53// :13:17: note: cannot coerce to uninstantiable type 'tmp.U0'
54// :5:12: note: union declared here54// :5:12: note: union declared here
55// :16:17: error: expected type 'initialize_empty_union.U1', found '@TypeOf(undefined)'55// :16:17: error: expected type 'tmp.U1', found '@TypeOf(undefined)'
56// :16:17: note: cannot coerce to uninstantiable type 'initialize_empty_union.U1'56// :16:17: note: cannot coerce to uninstantiable type 'tmp.U1'
57// :6:12: note: union declared here57// :6:12: note: union declared here
58// :19:17: error: expected type 'initialize_empty_union.U2', found '@TypeOf(undefined)'58// :19:17: error: expected type 'tmp.U2', found '@TypeOf(undefined)'
59// :19:17: note: cannot coerce to uninstantiable type 'initialize_empty_union.U2'59// :19:17: note: cannot coerce to uninstantiable type 'tmp.U2'
60// :7:12: note: union declared here60// :7:12: note: union declared here
61// :22:17: error: expected type 'initialize_empty_union.U3', found '@TypeOf(undefined)'61// :22:17: error: expected type 'tmp.U3', found '@TypeOf(undefined)'
62// :22:17: note: cannot coerce to uninstantiable type 'initialize_empty_union.U3'62// :22:17: note: cannot coerce to uninstantiable type 'tmp.U3'
63// :8:12: note: union declared here63// :8:12: note: union declared here
64// :25:17: error: expected type 'initialize_empty_union.U4', found '@TypeOf(undefined)'64// :25:17: error: expected type 'tmp.U4', found '@TypeOf(undefined)'
65// :25:17: note: cannot coerce to uninstantiable type 'initialize_empty_union.U4'65// :25:17: note: cannot coerce to uninstantiable type 'tmp.U4'
66// :9:12: note: union declared here66// :9:12: note: union declared here
67// :28:17: error: expected type 'initialize_empty_union.U5', found '@TypeOf(undefined)'67// :28:17: error: expected type 'tmp.U5', found '@TypeOf(undefined)'
68// :28:17: note: cannot coerce to uninstantiable type 'initialize_empty_union.U5'68// :28:17: note: cannot coerce to uninstantiable type 'tmp.U5'
69// :10:12: note: union declared here69// :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'
71// :5:12: note: union declared here71// :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'
73// :6:12: note: union declared here73// :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'
75// :7:12: note: union declared here75// :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'
77// :8:12: note: union declared here77// :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'
79// :9:12: note: union declared here79// :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'
81// :10:12: note: union declared here81// :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 {...@@ -10,4 +10,4 @@ export fn entry() usize {
1010
11// error11// error
12//12//
13// :1:13: error: struct 'tmp.Foo' depends on itself13// :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 {...@@ -10,4 +10,4 @@ export fn entry() usize {
1010
11// error11// error
12//12//
13// :1:13: error: union 'tmp.Foo' depends on itself13// :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 @@...@@ -1,16 +1,18 @@
1comptime {1const S = struct {
2 const S = struct {2 const Foo = struct {
3 const Foo = struct {3 y: Bar,
4 y: Bar,
5 };
6 const Bar = struct {
7 y: if (@sizeOf(Foo) == 0) u64 else void,
8 };
9 };4 };
105 const Bar = struct {
6 y: if (@sizeOf(Foo) == 0) u64 else void,
7 };
8};
9comptime {
11 _ = @sizeOf(S.Foo) + 1;10 _ = @sizeOf(S.Foo) + 1;
12}11}
1312
14// error13// error
15//14//
16// :6:21: error: struct layout depends on it having runtime bits15// 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 {...@@ -2,10 +2,10 @@ const stroo = extern struct {
2 moo: ?[*c]u8,2 moo: ?[*c]u8,
3};3};
4export fn testf(fluff: *stroo) void {4export fn testf(fluff: *stroo) void {
5 _ = fluff;5 _ = fluff.*;
6}6}
77
8// error8// error
9//9//
10// :2:10: error: extern structs cannot contain fields of type '?[*c]u8'10// :2:10: error: extern structs cannot contain fields of type '?[*c]u8'
11// :2:10: note: only pointer like optionals are extern compatible11// :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 {...@@ -26,11 +26,6 @@ comptime {
26 _ = x - y;26 _ = x - y;
27}27}
2828
29comptime {
30 const x: [*]u0 = @ptrFromInt(1);
31 _ = x + 1;
32}
33
34comptime {29comptime {
35 const x: *u0 = @ptrFromInt(1);30 const x: *u0 = @ptrFromInt(1);
36 const y: *u0 = @ptrFromInt(2);31 const y: *u0 = @ptrFromInt(2);
...@@ -46,5 +41,4 @@ comptime {...@@ -46,5 +41,4 @@ comptime {
46// :12:11: error: invalid operands to binary expression: 'pointer' and 'pointer'41// :12:11: error: invalid operands to binary expression: 'pointer' and 'pointer'
47// :20:11: error: incompatible pointer arithmetic operands '[*]u8' and '[*]u16'42// :20:11: error: incompatible pointer arithmetic operands '[*]u8' and '[*]u16'
48// :26:11: error: incompatible pointer arithmetic operands '*u8' and '*u16'43// :26:11: error: incompatible pointer arithmetic operands '*u8' and '*u16'
49// :31:11: error: pointer arithmetic requires element type 'u0' to have runtime bits44// :32:11: error: pointer subtraction requires element type 'u0' to have runtime bits
50// :37:11: error: pointer arithmetic requires element type 'u0' to have runtime bits
test/cases/compile_errors/invalid_type_in_builtin_extern.zig+10-4
...@@ -1,16 +1,22 @@...@@ -1,16 +1,22 @@
1const x = @extern(*comptime_int, .{ .name = "foo" });1const x = @extern(*comptime_int, .{ .name = "foo" });
2const y = @extern(*fn (u8) u8, .{ .name = "bar" });2const y = @extern(*fn (u8) u8, .{ .name = "bar" });
3pub export fn entry() void {3const z = @extern(*fn (u8) callconv(.c) u8, .{ .name = "bar" });
4comptime {
4 _ = x;5 _ = x;
5}6}
6pub export fn entry2() void {7comptime {
7 _ = y;8 _ = y;
8}9}
10comptime {
11 _ = z;
12}
913
10// error14// error
11//15//
12// :1:19: error: extern symbol cannot have type '*comptime_int'16// :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
14// :2:19: error: extern symbol cannot have type '*fn (u8) u8'18// :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
16// :2:19: note: extern function must specify calling convention20// :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 @@...@@ -1,49 +1,44 @@
1export fn entry1() void {1export fn entry0() void {
2 var m2 = &2;
3 _ = &m2;
4}
5export fn entry2() void {
6 var a = undefined;2 var a = undefined;
7 _ = &a;3 _ = &a;
8}4}
9export fn entry3() void {5export fn entry1() void {
10 var b = 1;6 var b = 1;
11 _ = &b;7 _ = &b;
12}8}
13export fn entry4() void {9export fn entry2() void {
14 var c = 1.0;10 var c = 1.0;
15 _ = &c;11 _ = &c;
16}12}
17export fn entry5() void {13export fn entry3() void {
18 var d = null;14 var d = null;
19 _ = &d;15 _ = &d;
20}16}
21export fn entry6(opaque_: *Opaque) void {17export fn entry4(opaque_: *Opaque) void {
22 var e = opaque_.*;18 var e = opaque_.*;
23 _ = &e;19 _ = &e;
24}20}
25export fn entry7() void {21export fn entry5() void {
26 var f = i32;22 var f = i32;
27 _ = &f;23 _ = &f;
28}24}
29const Opaque = opaque {};25const Opaque = opaque {};
30export fn entry8() void {26export fn entry6() void {
31 var e: Opaque = undefined;27 var e: Opaque = undefined;
32 _ = &e;28 _ = &e;
33}29}
3430
35// error31// error
36//32//
37// :2:9: error: variable of type '*const comptime_int' must be const or comptime33// :2:9: error: variable of type '@TypeOf(undefined)' must be const or comptime
38// :6:9: error: variable of type '@TypeOf(undefined)' must be const or comptime34// :6:9: error: variable of type 'comptime_int' must be const or comptime
39// :10:9: error: variable of type 'comptime_int' must be const or comptime35// :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
40// :10:9: note: to modify this variable at runtime, it must be given an explicit fixed-size number type37// :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 comptime38// :14:9: error: variable of type '@TypeOf(null)' must be const or comptime
42// :14:9: note: to modify this variable at runtime, it must be given an explicit fixed-size number type39// :18:20: error: cannot load opaque type 'tmp.Opaque'
43// :18:9: error: variable of type '@TypeOf(null)' must be const or comptime40// :25:16: note: opaque declared here
44// :22:20: error: cannot load opaque type 'tmp.Opaque'41// :22:9: error: variable of type 'type' must be const or comptime
45// :29:16: note: opaque declared here42// :22:9: note: types are not available at runtime
46// :26:9: error: variable of type 'type' must be const or comptime43// :27:12: error: non-extern variable with opaque type 'tmp.Opaque'
47// :26:9: note: types are not available at runtime44// :25:16: note: opaque declared here
48// :31:12: error: non-extern variable with opaque type 'tmp.Opaque'
49// :29: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 {...@@ -3,18 +3,7 @@ const A = enum {
3 b,3 b,
4 _ = 1,4 _ = 1,
5};5};
6const B = enum {
7 a,
8 b,
9 _,
10};
11comptime {
12 _ = A;
13 _ = B;
14}
156
16// error7// error
17//8//
18// :4:9: error: '_' is used to mark an enum as non-exhaustive and cannot be assigned a value9// :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) {...@@ -4,7 +4,7 @@ const C = enum(u1) {
4 _,4 _,
5};5};
6pub export fn entry() void {6pub export fn entry() void {
7 _ = C;7 _ = C.a;
8}8}
99
10// error10// 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 {...@@ -11,6 +11,6 @@ export fn entry() void {
1111
12// error12// error
13//13//
14// :7:10: error: values of type '[2]tmp.Foo' must be comptime-known, but index value is runtime-known14// :7:10: error: values of type 'tmp.Foo' must be comptime-known, but index value is runtime-known
15// :3:8: note: struct requires comptime because of this field15// :3:8: note: struct requires comptime because of this field
16// :3:8: note: types are not available at runtime16// :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 {...@@ -14,4 +14,4 @@ export fn entry() usize {
14//14//
15// :6:12: error: unable to resolve comptime value15// :6:12: error: unable to resolve comptime value
16// :2:12: note: called at comptime from here16// :2:12: note: called at comptime from here
17// :1:13: note: types must be comptime-known17// :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 {...@@ -4,15 +4,9 @@ const S = extern struct {
4comptime {4comptime {
5 _ = @sizeOf(S) == 1;5 _ = @sizeOf(S) == 1;
6}6}
7comptime {
8 _ = [*c][4]fn () callconv(.c) void;
9}
107
11// error8// error
12//9//
13// :2:8: error: extern structs cannot contain fields of type 'fn () callconv(.c) void'10// :2:8: error: extern structs cannot contain fields of type 'fn () callconv(.c) void'
14// :2:8: note: type has no guaranteed in-memory representation11// :2:8: note: type has no guaranteed in-memory representation
15// :2:8: note: use '*const ' to make a function pointer type12// :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 {...@@ -9,4 +9,4 @@ pub export fn entry() void {
99
10// error10// error
11//11//
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 {...@@ -44,8 +44,12 @@ export fn entry7() void {
4444
45// error45// error
46//46//
47// :2:31: error: backing integer type 'u32' has bit size 32 but the struct fields have a total bit size of 2947// :2:24: error: backing integer bit width does not match total bit width of fields
48// :9:31: error: backing integer type 'i31' has bit size 31 but the struct fields have a total bit size of 3248// :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'
49// :17:31: error: expected backing integer type, found 'void'53// :17:31: error: expected backing integer type, found 'void'
50// :23:31: error: expected backing integer type, found 'void'54// :23:31: error: expected backing integer type, found 'void'
51// :27:31: error: expected backing integer type, found 'noreturn'55// :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 {...@@ -85,29 +85,32 @@ export fn entry15() void {
85// error85// error
86//86//
87// :3:12: error: packed structs cannot contain fields of type 'anyerror'87// :3:12: error: packed structs cannot contain fields of type 'anyerror'
88// :3:12: note: type has no guaranteed in-memory representation88// :3:12: note: type does not have a bit-packed representation
89// :8:12: error: packed structs cannot contain fields of type '[2]u24'89// :8:12: error: packed structs cannot contain fields of type '[2]u24'
90// :8:12: note: type has no guaranteed in-memory representation90// :8:12: note: type does not have a bit-packed representation
91// :13:20: error: packed structs cannot contain fields of type 'anyerror!u32'91// :13:20: error: packed structs cannot contain fields of type 'anyerror!u32'
92// :13:20: note: type has no guaranteed in-memory representation92// :13:20: note: type does not have a bit-packed representation
93// :18:12: error: packed structs cannot contain fields of type 'tmp.S'93// :18:12: error: packed structs cannot contain fields of type 'tmp.S'
94// :18:12: note: only packed structs layout are allowed in packed types94// :18:12: note: non-packed structs do not have a bit-packed representation
95// :56:11: note: struct declared here95// :56:11: note: struct declared here
96// :23:12: error: packed structs cannot contain fields of type 'tmp.U'96// :23:12: error: packed structs cannot contain fields of type 'tmp.U'
97// :23:12: note: only packed unions layout are allowed in packed types97// :23:12: note: non-packed unions do not have a bit-packed representation
98// :59:18: note: union declared here98// :59:18: note: union declared here
99// :28:12: error: packed structs cannot contain fields of type '?anyerror'99// :28:12: error: packed structs cannot contain fields of type '?anyerror'
100// :28:12: note: type has no guaranteed in-memory representation100// :28:12: note: type does not have a bit-packed representation
101// :38:12: error: packed structs cannot contain fields of type 'fn () void'101// :38:12: error: packed structs cannot contain fields of type 'fn () void'
102// :38:12: note: type has no guaranteed in-memory representation102// :38:12: note: type does not have a bit-packed representation
103// :38:12: note: use '*const ' to make a function pointer type103// :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'
104// :65:31: error: packed structs cannot contain fields of type '[]u8'106// :65:31: error: packed structs cannot contain fields of type '[]u8'
105// :65:31: note: slices have no guaranteed in-memory representation107// :65:31: note: slices do not have a bit-packed representation
106// :70:12: error: packed structs cannot contain fields of type '*type'108// :70:12: error: packed structs cannot contain fields of type '*type'
107// :70:12: note: comptime-only pointer has no guaranteed in-memory representation109// :70:12: note: pointers cannot be directly bitpacked
108// :70:12: note: types are not available at runtime110// :70:12: note: consider using 'usize' and '@intFromPtr'
109// :76:12: error: packed structs cannot contain fields of type 'tmp.entry14.E'111// :76:12: error: packed structs cannot contain fields of type 'tmp.entry14.E'
110// :74:15: note: enum declared here112// :74:15: note: integer tag type of enum is inferred
113// :74:15: note: consider explicitly specifying the integer tag type
111// :81:12: error: packed structs cannot contain fields of type '*const u32'114// :81:12: error: packed structs cannot contain fields of type '*const u32'
112// :81:12: note: pointers cannot be directly bitpacked115// :81:12: note: pointers cannot be directly bitpacked
113// :81:12: note: consider using 'usize' and '@intFromPtr'116// :81:12: note: consider using 'usize' and '@intFromPtr'
test/cases/compile_errors/packed_union_fields_mismatch.zig+6-4
...@@ -1,12 +1,14 @@...@@ -1,12 +1,14 @@
1export fn entry1() void {1export fn entry1() void {
2 _ = packed union {2 const U = packed union {
3 a: u1,3 a: u1,
4 b: u2,4 b: u2,
5 };5 };
6 _ = @as(U, undefined);
6}7}
78
8// error9// error
9//10//
10// :2:16: error: packed union has fields with mismatching bit sizes11// :4:12: error: field bit width does not match earlier field
11// :3:12: note: 1 bits here12// :4:12: note: field type 'u2' has bit width '2'
12// :4:12: note: 2 bits here13// :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 @@...@@ -1,6 +1,7 @@
1const S = struct { a: u32 };
1export fn entry0() void {2export fn entry0() void {
2 _ = @sizeOf(packed union {3 _ = @sizeOf(packed union {
3 foo: struct { a: u32 },4 foo: S,
4 bar: bool,5 bar: bool,
5 });6 });
6}7}
...@@ -12,9 +13,9 @@ export fn entry1() void {...@@ -12,9 +13,9 @@ export fn entry1() void {
1213
13// error14// error
14//15//
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// :4:14: error: packed unions cannot contain fields of type 'tmp.S'
16// :3:14: note: non-packed structs do not have a bit-packed representation17// :4:14: note: non-packed structs do not have a bit-packed representation
17// :3:14: note: struct declared here18// :1:11: note: struct declared here
18// :9:12: error: packed unions cannot contain fields of type '*const u32'19// :10:12: error: packed unions cannot contain fields of type '*const u32'
19// :9:12: note: pointers cannot be directly bitpacked20// :10:12: note: pointers cannot be directly bitpacked
20// :9:12: note: consider using 'usize' and '@intFromPtr'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 @@...@@ -1,8 +1,9 @@
1export fn entry() void {1export 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);
3}4}
45
5// error6// error
6//7//
7// :2:36: error: duplicate enum field 'A'8// :2:42: error: duplicate enum field 'A' at index '1'
8// :2:36: note: other field here9// :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 @@...@@ -1,8 +1,9 @@
1export fn entry() void {1export fn entry() void {
2 _ = @Enum(u32, .nonexhaustive, &.{ "A", "B" }, &.{ 10, 10 });2 const E = @Enum(u32, .nonexhaustive, &.{ "a", "b" }, &.{ 10, 10 });
3 _ = E.a;
3}4}
45
5// error6// error
6//7//
7// :2:52: error: enum tag value 10 already taken8// :2:58: error: enum tag value '10' for field 'b' already taken
8// :2:52: note: other enum tag value here9// :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 {...@@ -5,4 +5,4 @@ export fn entry() void {
55
6// error6// error
7//7//
8// :1:19: error: tag type must be an integer type8// :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 {...@@ -7,6 +7,5 @@ export fn entry() void {
77
8// error8// error
9//9//
10// :2:35: error: 1 enum fields missing in union10// :2:16: error: enum field 'arst' missing from union
11// :1:13: note: field 'arst' missing, declared here11// :1:36: note: enum field here
12// :1:13: note: enum declared 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 {...@@ -7,7 +7,5 @@ export fn entry() void {
77
8// error8// error
9//9//
10// :2:35: error: 2 enum fields missing in union10// :2:16: error: enum field 'signed' missing from union
11// :1:13: note: field 'signed' missing, declared here11// :1:36: note: enum field here
12// :1:13: note: field 'unsigned' missing, declared here
13// :1:13: note: enum declared here
test/cases/compile_errors/reify_type_for_union_with_opaque_field.zig+5-3
...@@ -1,9 +1,11 @@...@@ -1,9 +1,11 @@
1const Untagged = @Union(.auto, null, &.{"foo"}, &.{opaque {}}, &.{.{}});1const Opaque = opaque {};
2const Untagged = @Union(.auto, null, &.{"foo"}, &.{Opaque}, &.{.{}});
2export fn entry() usize {3export fn entry() usize {
3 return @sizeOf(Untagged);4 return @sizeOf(Untagged);
4}5}
56
6// error7// error
7//8//
8// :1:49: error: opaque types have unknown size and therefore cannot be directly embedded in unions9// :2:49: error: cannot directly embed opaque type 'tmp.Opaque' in union
9// :1:52: note: opaque declared here10// :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 {...@@ -2,7 +2,11 @@ comptime {
2 _ = @Union(.auto, null, &.{"foo"}, &.{usize}, &.{.{ .@"align" = 3 }});2 _ = @Union(.auto, null, &.{"foo"}, &.{usize}, &.{.{ .@"align" = 3 }});
3}3}
4comptime {4comptime {
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 }});
6}10}
7comptime {11comptime {
8 _ = @Pointer(.many, .{ .@"align" = 7 }, u8, null);12 _ = @Pointer(.many, .{ .@"align" = 7 }, u8, null);
...@@ -12,4 +16,4 @@ comptime {...@@ -12,4 +16,4 @@ comptime {
12//16//
13// :2:51: error: alignment value '3' is not a power of two17// :2:51: error: alignment value '3' is not a power of two
14// :5:48: error: alignment value '5' is not a power of two18// :5:48: error: alignment value '5' is not a power of two
15// :8:26: error: alignment value '7' is not a power of two19// :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 {...@@ -12,5 +12,4 @@ export fn entry() void {
1212
13// error13// error
14//14//
15// :10:15: error: unable to resolve inferred error set of generic function15// :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'
16// :1:1: note: generic function declared here
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 {...@@ -10,6 +10,5 @@ pub export fn callbackFin(id: c_int, arg: ?*anyopaque) void {
1010
11// error11// error
12//12//
13// :5:54: error: pointer to comptime-only type '?*tmp.GuSettings' must be comptime-known, but operand is runtime-known13// :6:19: error: cannot load comptime-only type '?fn (c_int) callconv(.c) void'
14// :2:10: note: struct requires comptime because of this field14// :6:20: note: pointer of type '*?fn (c_int) callconv(.c) void' is runtime-known
15// :2:10: note: use '*const fn (c_int) callconv(.c) void' for a function pointer type
test/cases/compile_errors/runtime_index_into_comptime_only_many_ptr.zig+3-3
...@@ -1,10 +1,10 @@...@@ -1,10 +1,10 @@
1var rt: usize = 0;1var rt: usize = 0;
2export fn foo() void {2export fn foo() void {
3 const x: [*]const type = &.{ u8, u16 };3 const x: [*]const type = &.{ u8, u16 };
4 _ = &x[rt];4 _ = x[rt];
5}5}
66
7// error7// error
8//8//
9// :4:12: error: values of type '[*]const type' must be comptime-known, but index value is runtime-known9// :4:11: error: values of type 'type' must be comptime-known, but index value is runtime-known
10// :4:11: note: types are not available at runtime10// :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 {...@@ -12,7 +12,6 @@ export fn entry() void {
1212
13// error13// error
14//14//
15// :9:54: error: values of type '[]const builtin.Type.StructField' must be comptime-known, but index value is runtime-known15// :9:54: error: values of type 'builtin.Type.StructField' must be comptime-known, but index value is runtime-known
16// : note: struct requires comptime because of this field16// : note: struct requires comptime because of this field
17// : note: types are not available at runtime17// : 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 {...@@ -24,9 +24,9 @@ pub export fn entry3() void {
24}24}
25// error25// error
26//26//
27// :7:10: error: values of type '[2]fn () void' must be comptime-known, but index value is runtime-known27// :7:10: error: values of type 'fn () void' must be comptime-known, but index value is runtime-known
28// :7:10: note: use '*const fn () void' for a function pointer type28// :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-known29// :15:18: error: values of type 'fn () void' must be comptime-known, but index value is runtime-known
30// :15:17: note: use '*const fn () void' for a function pointer type30// :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-known31// :22:19: error: values of type 'fn () void' must be comptime-known, but index value is runtime-known
32// :22:18: note: use '*const fn () void' for a function pointer type32// :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;...@@ -25,13 +25,13 @@ var rt: u32 = undefined;
25//25//
26// :19:8: error: unable to evaluate comptime expression26// :19:8: error: unable to evaluate comptime expression
27// :19:5: note: operation is runtime due to this operand27// :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
28// :14:8: note: called at comptime from here32// :14:8: note: called at comptime from here
29// :10:12: note: called at comptime from here33// :10:12: note: called at comptime from here
30// :10:12: note: call to function with comptime-only return type 'type' is evaluated at comptime34// :10:12: note: call to function with comptime-only return type 'type' is evaluated at comptime
31// :13:10: note: return type declared here35// :13:10: note: return type declared here
32// :10:12: note: types are not available at runtime36// :10:12: note: types are not available at runtime
33// :2:8: note: called inline here37// :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 {...@@ -12,4 +12,3 @@ pub export fn entry() void {
12// :6:12: error: variable of type 'tmp.S' must be const or comptime12// :6:12: error: variable of type 'tmp.S' must be const or comptime
13// :2:8: note: struct requires comptime because of this field13// :2:8: note: struct requires comptime because of this field
14// :2:8: note: use '*const fn () void' for a function pointer type14// :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 {...@@ -12,4 +12,3 @@ pub export fn entry() void {
12// :6:12: error: variable of type 'tmp.U' must be const or comptime12// :6:12: error: variable of type 'tmp.U' must be const or comptime
13// :2:8: note: union requires comptime because of this field13// :2:8: note: union requires comptime because of this field
14// :2:8: note: use '*const fn () void' for a function pointer type14// :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 {...@@ -22,4 +22,6 @@ export fn entry4() usize {
22// :5:20: error: no size available for comptime-only type 'comptime_int'22// :5:20: error: no size available for comptime-only type 'comptime_int'
23// :8:20: error: no size available for uninstantiable type 'noreturn'23// :8:20: error: no size available for uninstantiable type 'noreturn'
24// :12:20: error: no size available for comptime-only type 'tmp.S3'24// :12:20: error: no size available for comptime-only type 'tmp.S3'
25// :10:12: note: struct declared here
25// :16:20: error: no size available for uninstantiable type 'tmp.S4'26// :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 {...@@ -49,27 +49,27 @@ export fn align5() void {
4949
50// error50// error
51//51//
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'
53// :5:12: note: union declared here53// :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'
55// :6:12: note: union declared here55// :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'
57// :7:12: note: union declared here57// :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'
59// :8:12: note: union declared here59// :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'
61// :9:12: note: union declared here61// :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'
63// :10:12: note: union declared here63// :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'
65// :5:12: note: union declared here65// :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'
67// :6:12: note: union declared here67// :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'
69// :7:12: note: union declared here69// :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'
71// :8:12: note: union declared here71// :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'
73// :9:12: note: union declared here73// :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'
75// :10:12: note: union declared here75// :10:12: note: union declared here
test/cases/compile_errors/slice_used_as_extern_fn_param.zig+1-1
...@@ -1,6 +1,6 @@...@@ -1,6 +1,6 @@
1extern fn Text(str: []const u8, num: i32) callconv(.c) void;1extern fn Text(str: []const u8, num: i32) callconv(.c) void;
2export fn entry() void {2export fn entry() void {
3 _ = Text;3 Text(undefined, undefined);
4}4}
55
6// error6// error
test/cases/compile_errors/specify_enum_tag_type_that_is_too_small.zig+9-9
...@@ -1,9 +1,9 @@...@@ -1,9 +1,9 @@
1const Small = enum(u2) {1const Small = enum(u2) {
2 One,2 one,
3 Two,3 two,
4 Three,4 three,
5 Four,5 four,
6 Five,6 five,
7};7};
88
9const SmallUnion = union(enum(u2)) {9const SmallUnion = union(enum(u2)) {
...@@ -14,13 +14,13 @@ const SmallUnion = union(enum(u2)) {...@@ -14,13 +14,13 @@ const SmallUnion = union(enum(u2)) {
14};14};
1515
16comptime {16comptime {
17 _ = Small;17 _ = Small.one;
18}18}
19comptime {19comptime {
20 _ = SmallUnion;20 _ = SmallUnion.one;
21}21}
2222
23// error23// error
24//24//
25// :6: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: enumeration 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 {...@@ -21,22 +21,15 @@ export fn e() void {
21 p.* = undefined;21 p.* = undefined;
22}22}
2323
24export fn f() void {
25 const p: **comptime_int = @ptrFromInt(16); // double pointer ('*comptime_int' is comptime-only)
26 p.* = undefined;
27}
28
29// error24// error
30//25//
31// :3:9: error: cannot store comptime-only type 'fn () void' at runtime26// :3:9: error: cannot store comptime-only type 'fn () void' at runtime
32// :3:6: note: operation is runtime due to this pointer27// :3:6: note: operation is runtime due to this pointer
33// :7:11: error: expected type 'anyopaque', found '@TypeOf(undefined)'28// :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'
35// :11:12: error: cannot load opaque type 'anyopaque'30// :11:12: error: cannot load opaque type 'anyopaque'
36// :16:11: error: expected type 'tmp.Opaque', found '@TypeOf(undefined)'31// :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'
38// :14:16: note: opaque declared here33// :14:16: note: opaque declared here
39// :21:9: error: cannot store comptime-only type 'comptime_int' at runtime34// :21:9: error: cannot store comptime-only type 'comptime_int' at runtime
40// :21:6: note: operation is runtime due to this pointer35// :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 {...@@ -4,9 +4,9 @@ const A = struct {
4};4};
55
6comptime {6comptime {
7 _ = A;7 _ = @as(A, undefined);
8}8}
99
10// error10// error
11//11//
12// :1:11: error: struct 'tmp.A' depends on itself12// :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 {...@@ -12,4 +12,7 @@ export fn entry() void {
1212
13// error13// error
14//14//
15// :1:17: error: struct 'tmp.LhsExpr' depends on itself15// 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 {...@@ -8,4 +8,4 @@ pub export fn entry() void {
88
9// error9// error
10//10//
11// :2:22: error: size of packed struct '131070' exceeds maximum bit width of 6553511// :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 {...@@ -7,4 +7,9 @@ export fn entry() void {
77
8// error8// error
9//9//
10// :1:1: error: dependency loop detected10// 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 {...@@ -16,22 +16,6 @@ pub export fn entry2() void {
16 _ = b;16 _ = b;
17}17}
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
35// error19// error
36//20//
37// :7:13: error: unable to evaluate comptime expression21// :7:13: error: unable to evaluate comptime expression
...@@ -40,6 +24,3 @@ pub export fn entry3() void {...@@ -40,6 +24,3 @@ pub export fn entry3() void {
40// :13:13: error: unable to evaluate comptime expression24// :13:13: error: unable to evaluate comptime expression
41// :13:16: note: operation is runtime due to this operand25// :13:16: note: operation is runtime due to this operand
42// :13:13: note: initializer of container-level variable must be comptime-known26// :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");...@@ -192,50 +192,30 @@ const std = @import("std");
192// :65:17: error: use of undefined value here causes illegal behavior192// :65:17: error: use of undefined value here causes illegal behavior
193// :65:17: error: use of undefined value here causes illegal behavior193// :65:17: error: use of undefined value here causes illegal behavior
194// :65:17: error: use of undefined value here causes illegal behavior194// :65:17: error: use of undefined value here causes illegal behavior
195// :65:17: note: when computing vector element at index '0'
196// :65:17: error: use of undefined value here causes illegal behavior195// :65:17: error: use of undefined value here causes illegal behavior
197// :65:17: note: when computing vector element at index '0'
198// :65:17: error: use of undefined value here causes illegal behavior196// :65:17: error: use of undefined value here causes illegal behavior
199// :65:17: note: when computing vector element at index '0'
200// :65:17: error: use of undefined value here causes illegal behavior197// :65:17: error: use of undefined value here causes illegal behavior
201// :65:17: note: when computing vector element at index '0'
202// :65:17: error: use of undefined value here causes illegal behavior198// :65:17: error: use of undefined value here causes illegal behavior
203// :65:17: note: when computing vector element at index '1'
204// :65:17: error: use of undefined value here causes illegal behavior199// :65:17: error: use of undefined value here causes illegal behavior
205// :65:17: note: when computing vector element at index '1'
206// :65:17: error: use of undefined value here causes illegal behavior200// :65:17: error: use of undefined value here causes illegal behavior
207// :65:17: note: when computing vector element at index '0'
208// :65:17: error: use of undefined value here causes illegal behavior201// :65:17: error: use of undefined value here causes illegal behavior
209// :65:17: note: when computing vector element at index '0'
210// :65:17: error: use of undefined value here causes illegal behavior202// :65:17: error: use of undefined value here causes illegal behavior
211// :65:17: note: when computing vector element at index '0'
212// :65:17: error: use of undefined value here causes illegal behavior203// :65:17: error: use of undefined value here causes illegal behavior
213// :65:17: note: when computing vector element at index '0'
214// :65:17: error: use of undefined value here causes illegal behavior204// :65:17: error: use of undefined value here causes illegal behavior
215// :65:17: error: use of undefined value here causes illegal behavior205// :65:17: error: use of undefined value here causes illegal behavior
216// :65:17: error: use of undefined value here causes illegal behavior206// :65:17: error: use of undefined value here causes illegal behavior
217// :65:17: note: when computing vector element at index '0'
218// :65:17: error: use of undefined value here causes illegal behavior207// :65:17: error: use of undefined value here causes illegal behavior
219// :65:17: note: when computing vector element at index '0'
220// :65:17: error: use of undefined value here causes illegal behavior208// :65:17: error: use of undefined value here causes illegal behavior
221// :65:17: note: when computing vector element at index '0'
222// :65:17: error: use of undefined value here causes illegal behavior209// :65:17: error: use of undefined value here causes illegal behavior
223// :65:17: note: when computing vector element at index '0'
224// :65:17: error: use of undefined value here causes illegal behavior210// :65:17: error: use of undefined value here causes illegal behavior
225// :65:17: note: when computing vector element at index '1'
226// :65:17: error: use of undefined value here causes illegal behavior211// :65:17: error: use of undefined value here causes illegal behavior
227// :65:17: note: when computing vector element at index '1'
228// :65:17: error: use of undefined value here causes illegal behavior212// :65:17: error: use of undefined value here causes illegal behavior
229// :65:17: note: when computing vector element at index '0'
230// :65:17: error: use of undefined value here causes illegal behavior213// :65:17: error: use of undefined value here causes illegal behavior
231// :65:17: note: when computing vector element at index '0'
232// :65:17: error: use of undefined value here causes illegal behavior214// :65:17: error: use of undefined value here causes illegal behavior
233// :65:17: note: when computing vector element at index '0'215// :65:17: note: when computing vector element at index '0'
234// :65:17: error: use of undefined value here causes illegal behavior216// :65:17: error: use of undefined value here causes illegal behavior
235// :65:17: note: when computing vector element at index '0'217// :65:17: note: when computing vector element at index '0'
236// :65:17: error: use of undefined value here causes illegal behavior218// :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
239// :65:17: note: when computing vector element at index '0'219// :65:17: note: when computing vector element at index '0'
240// :65:17: error: use of undefined value here causes illegal behavior220// :65:17: error: use of undefined value here causes illegal behavior
241// :65:17: note: when computing vector element at index '0'221// :65:17: note: when computing vector element at index '0'
...@@ -244,10 +224,6 @@ const std = @import("std");...@@ -244,10 +224,6 @@ const std = @import("std");
244// :65:17: error: use of undefined value here causes illegal behavior224// :65:17: error: use of undefined value here causes illegal behavior
245// :65:17: note: when computing vector element at index '0'225// :65:17: note: when computing vector element at index '0'
246// :65:17: error: use of undefined value here causes illegal behavior226// :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
251// :65:17: note: when computing vector element at index '0'227// :65:17: note: when computing vector element at index '0'
252// :65:17: error: use of undefined value here causes illegal behavior228// :65:17: error: use of undefined value here causes illegal behavior
253// :65:17: note: when computing vector element at index '0'229// :65:17: note: when computing vector element at index '0'
...@@ -256,7 +232,9 @@ const std = @import("std");...@@ -256,7 +232,9 @@ const std = @import("std");
256// :65:17: error: use of undefined value here causes illegal behavior232// :65:17: error: use of undefined value here causes illegal behavior
257// :65:17: note: when computing vector element at index '0'233// :65:17: note: when computing vector element at index '0'
258// :65:17: error: use of undefined value here causes illegal behavior234// :65:17: error: use of undefined value here causes illegal behavior
235// :65:17: note: when computing vector element at index '0'
259// :65:17: error: use of undefined value here causes illegal behavior236// :65:17: error: use of undefined value here causes illegal behavior
237// :65:17: note: when computing vector element at index '0'
260// :65:17: error: use of undefined value here causes illegal behavior238// :65:17: error: use of undefined value here causes illegal behavior
261// :65:17: note: when computing vector element at index '0'239// :65:17: note: when computing vector element at index '0'
262// :65:17: error: use of undefined value here causes illegal behavior240// :65:17: error: use of undefined value here causes illegal behavior
...@@ -266,9 +244,9 @@ const std = @import("std");...@@ -266,9 +244,9 @@ const std = @import("std");
266// :65:17: error: use of undefined value here causes illegal behavior244// :65:17: error: use of undefined value here causes illegal behavior
267// :65:17: note: when computing vector element at index '0'245// :65:17: note: when computing vector element at index '0'
268// :65:17: error: use of undefined value here causes illegal behavior246// :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'
270// :65:17: error: use of undefined value here causes illegal behavior248// :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'
272// :65:17: error: use of undefined value here causes illegal behavior250// :65:17: error: use of undefined value here causes illegal behavior
273// :65:17: note: when computing vector element at index '0'251// :65:17: note: when computing vector element at index '0'
274// :65:17: error: use of undefined value here causes illegal behavior252// :65:17: error: use of undefined value here causes illegal behavior
...@@ -278,7 +256,9 @@ const std = @import("std");...@@ -278,7 +256,9 @@ const std = @import("std");
278// :65:17: error: use of undefined value here causes illegal behavior256// :65:17: error: use of undefined value here causes illegal behavior
279// :65:17: note: when computing vector element at index '0'257// :65:17: note: when computing vector element at index '0'
280// :65:17: error: use of undefined value here causes illegal behavior258// :65:17: error: use of undefined value here causes illegal behavior
259// :65:17: note: when computing vector element at index '0'
281// :65:17: error: use of undefined value here causes illegal behavior260// :65:17: error: use of undefined value here causes illegal behavior
261// :65:17: note: when computing vector element at index '0'
282// :65:17: error: use of undefined value here causes illegal behavior262// :65:17: error: use of undefined value here causes illegal behavior
283// :65:17: note: when computing vector element at index '0'263// :65:17: note: when computing vector element at index '0'
284// :65:17: error: use of undefined value here causes illegal behavior264// :65:17: error: use of undefined value here causes illegal behavior
...@@ -288,9 +268,9 @@ const std = @import("std");...@@ -288,9 +268,9 @@ const std = @import("std");
288// :65:17: error: use of undefined value here causes illegal behavior268// :65:17: error: use of undefined value here causes illegal behavior
289// :65:17: note: when computing vector element at index '0'269// :65:17: note: when computing vector element at index '0'
290// :65:17: error: use of undefined value here causes illegal behavior270// :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'
292// :65:17: error: use of undefined value here causes illegal behavior272// :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'
294// :65:17: error: use of undefined value here causes illegal behavior274// :65:17: error: use of undefined value here causes illegal behavior
295// :65:17: note: when computing vector element at index '0'275// :65:17: note: when computing vector element at index '0'
296// :65:17: error: use of undefined value here causes illegal behavior276// :65:17: error: use of undefined value here causes illegal behavior
...@@ -300,7 +280,9 @@ const std = @import("std");...@@ -300,7 +280,9 @@ const std = @import("std");
300// :65:17: error: use of undefined value here causes illegal behavior280// :65:17: error: use of undefined value here causes illegal behavior
301// :65:17: note: when computing vector element at index '0'281// :65:17: note: when computing vector element at index '0'
302// :65:17: error: use of undefined value here causes illegal behavior282// :65:17: error: use of undefined value here causes illegal behavior
283// :65:17: note: when computing vector element at index '0'
303// :65:17: error: use of undefined value here causes illegal behavior284// :65:17: error: use of undefined value here causes illegal behavior
285// :65:17: note: when computing vector element at index '0'
304// :65:17: error: use of undefined value here causes illegal behavior286// :65:17: error: use of undefined value here causes illegal behavior
305// :65:17: note: when computing vector element at index '0'287// :65:17: note: when computing vector element at index '0'
306// :65:17: error: use of undefined value here causes illegal behavior288// :65:17: error: use of undefined value here causes illegal behavior
...@@ -310,9 +292,9 @@ const std = @import("std");...@@ -310,9 +292,9 @@ const std = @import("std");
310// :65:17: error: use of undefined value here causes illegal behavior292// :65:17: error: use of undefined value here causes illegal behavior
311// :65:17: note: when computing vector element at index '0'293// :65:17: note: when computing vector element at index '0'
312// :65:17: error: use of undefined value here causes illegal behavior294// :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'
314// :65:17: error: use of undefined value here causes illegal behavior296// :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'
316// :65:17: error: use of undefined value here causes illegal behavior298// :65:17: error: use of undefined value here causes illegal behavior
317// :65:17: note: when computing vector element at index '0'299// :65:17: note: when computing vector element at index '0'
318// :65:17: error: use of undefined value here causes illegal behavior300// :65:17: error: use of undefined value here causes illegal behavior
...@@ -322,7 +304,9 @@ const std = @import("std");...@@ -322,7 +304,9 @@ const std = @import("std");
322// :65:17: error: use of undefined value here causes illegal behavior304// :65:17: error: use of undefined value here causes illegal behavior
323// :65:17: note: when computing vector element at index '0'305// :65:17: note: when computing vector element at index '0'
324// :65:17: error: use of undefined value here causes illegal behavior306// :65:17: error: use of undefined value here causes illegal behavior
307// :65:17: note: when computing vector element at index '0'
325// :65:17: error: use of undefined value here causes illegal behavior308// :65:17: error: use of undefined value here causes illegal behavior
309// :65:17: note: when computing vector element at index '0'
326// :65:17: error: use of undefined value here causes illegal behavior310// :65:17: error: use of undefined value here causes illegal behavior
327// :65:17: note: when computing vector element at index '0'311// :65:17: note: when computing vector element at index '0'
328// :65:17: error: use of undefined value here causes illegal behavior312// :65:17: error: use of undefined value here causes illegal behavior
...@@ -332,9 +316,9 @@ const std = @import("std");...@@ -332,9 +316,9 @@ const std = @import("std");
332// :65:17: error: use of undefined value here causes illegal behavior316// :65:17: error: use of undefined value here causes illegal behavior
333// :65:17: note: when computing vector element at index '0'317// :65:17: note: when computing vector element at index '0'
334// :65:17: error: use of undefined value here causes illegal behavior318// :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'
336// :65:17: error: use of undefined value here causes illegal behavior320// :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'
338// :65:17: error: use of undefined value here causes illegal behavior322// :65:17: error: use of undefined value here causes illegal behavior
339// :65:17: note: when computing vector element at index '0'323// :65:17: note: when computing vector element at index '0'
340// :65:17: error: use of undefined value here causes illegal behavior324// :65:17: error: use of undefined value here causes illegal behavior
...@@ -344,7 +328,9 @@ const std = @import("std");...@@ -344,7 +328,9 @@ const std = @import("std");
344// :65:17: error: use of undefined value here causes illegal behavior328// :65:17: error: use of undefined value here causes illegal behavior
345// :65:17: note: when computing vector element at index '0'329// :65:17: note: when computing vector element at index '0'
346// :65:17: error: use of undefined value here causes illegal behavior330// :65:17: error: use of undefined value here causes illegal behavior
331// :65:17: note: when computing vector element at index '0'
347// :65:17: error: use of undefined value here causes illegal behavior332// :65:17: error: use of undefined value here causes illegal behavior
333// :65:17: note: when computing vector element at index '0'
348// :65:17: error: use of undefined value here causes illegal behavior334// :65:17: error: use of undefined value here causes illegal behavior
349// :65:17: note: when computing vector element at index '0'335// :65:17: note: when computing vector element at index '0'
350// :65:17: error: use of undefined value here causes illegal behavior336// :65:17: error: use of undefined value here causes illegal behavior
...@@ -354,9 +340,9 @@ const std = @import("std");...@@ -354,9 +340,9 @@ const std = @import("std");
354// :65:17: error: use of undefined value here causes illegal behavior340// :65:17: error: use of undefined value here causes illegal behavior
355// :65:17: note: when computing vector element at index '0'341// :65:17: note: when computing vector element at index '0'
356// :65:17: error: use of undefined value here causes illegal behavior342// :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'
358// :65:17: error: use of undefined value here causes illegal behavior344// :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'
360// :65:17: error: use of undefined value here causes illegal behavior346// :65:17: error: use of undefined value here causes illegal behavior
361// :65:17: note: when computing vector element at index '0'347// :65:17: note: when computing vector element at index '0'
362// :65:17: error: use of undefined value here causes illegal behavior348// :65:17: error: use of undefined value here causes illegal behavior
...@@ -366,7 +352,9 @@ const std = @import("std");...@@ -366,7 +352,9 @@ const std = @import("std");
366// :65:17: error: use of undefined value here causes illegal behavior352// :65:17: error: use of undefined value here causes illegal behavior
367// :65:17: note: when computing vector element at index '0'353// :65:17: note: when computing vector element at index '0'
368// :65:17: error: use of undefined value here causes illegal behavior354// :65:17: error: use of undefined value here causes illegal behavior
355// :65:17: note: when computing vector element at index '0'
369// :65:17: error: use of undefined value here causes illegal behavior356// :65:17: error: use of undefined value here causes illegal behavior
357// :65:17: note: when computing vector element at index '0'
370// :65:17: error: use of undefined value here causes illegal behavior358// :65:17: error: use of undefined value here causes illegal behavior
371// :65:17: note: when computing vector element at index '0'359// :65:17: note: when computing vector element at index '0'
372// :65:17: error: use of undefined value here causes illegal behavior360// :65:17: error: use of undefined value here causes illegal behavior
...@@ -376,9 +364,9 @@ const std = @import("std");...@@ -376,9 +364,9 @@ const std = @import("std");
376// :65:17: error: use of undefined value here causes illegal behavior364// :65:17: error: use of undefined value here causes illegal behavior
377// :65:17: note: when computing vector element at index '0'365// :65:17: note: when computing vector element at index '0'
378// :65:17: error: use of undefined value here causes illegal behavior366// :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'
380// :65:17: error: use of undefined value here causes illegal behavior368// :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'
382// :65:17: error: use of undefined value here causes illegal behavior370// :65:17: error: use of undefined value here causes illegal behavior
383// :65:17: note: when computing vector element at index '0'371// :65:17: note: when computing vector element at index '0'
384// :65:17: error: use of undefined value here causes illegal behavior372// :65:17: error: use of undefined value here causes illegal behavior
...@@ -388,7 +376,9 @@ const std = @import("std");...@@ -388,7 +376,9 @@ const std = @import("std");
388// :65:17: error: use of undefined value here causes illegal behavior376// :65:17: error: use of undefined value here causes illegal behavior
389// :65:17: note: when computing vector element at index '0'377// :65:17: note: when computing vector element at index '0'
390// :65:17: error: use of undefined value here causes illegal behavior378// :65:17: error: use of undefined value here causes illegal behavior
379// :65:17: note: when computing vector element at index '0'
391// :65:17: error: use of undefined value here causes illegal behavior380// :65:17: error: use of undefined value here causes illegal behavior
381// :65:17: note: when computing vector element at index '0'
392// :65:17: error: use of undefined value here causes illegal behavior382// :65:17: error: use of undefined value here causes illegal behavior
393// :65:17: note: when computing vector element at index '0'383// :65:17: note: when computing vector element at index '0'
394// :65:17: error: use of undefined value here causes illegal behavior384// :65:17: error: use of undefined value here causes illegal behavior
...@@ -402,35 +392,45 @@ const std = @import("std");...@@ -402,35 +392,45 @@ const std = @import("std");
402// :65:17: error: use of undefined value here causes illegal behavior392// :65:17: error: use of undefined value here causes illegal behavior
403// :65:17: note: when computing vector element at index '1'393// :65:17: note: when computing vector element at index '1'
404// :65:17: error: use of undefined value here causes illegal behavior394// :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'
406// :65:17: error: use of undefined value here causes illegal behavior396// :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'
408// :65:17: error: use of undefined value here causes illegal behavior398// :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'
410// :65:17: error: use of undefined value here causes illegal behavior400// :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'
412// :65:17: error: use of undefined value here causes illegal behavior402// :65:17: error: use of undefined value here causes illegal behavior
403// :65:17: note: when computing vector element at index '1'
413// :65:17: error: use of undefined value here causes illegal behavior404// :65:17: error: use of undefined value here causes illegal behavior
405// :65:17: note: when computing vector element at index '1'
414// :65:17: error: use of undefined value here causes illegal behavior406// :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'
416// :65:17: error: use of undefined value here causes illegal behavior408// :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'
418// :65:17: error: use of undefined value here causes illegal behavior410// :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'
420// :65:17: error: use of undefined value here causes illegal behavior412// :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'
422// :65:17: error: use of undefined value here causes illegal behavior414// :65:17: error: use of undefined value here causes illegal behavior
423// :65:17: note: when computing vector element at index '1'415// :65:17: note: when computing vector element at index '1'
424// :65:17: error: use of undefined value here causes illegal behavior416// :65:17: error: use of undefined value here causes illegal behavior
425// :65:17: note: when computing vector element at index '1'417// :65:17: note: when computing vector element at index '1'
426// :65:17: error: use of undefined value here causes illegal behavior418// :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'
428// :65:17: error: use of undefined value here causes illegal behavior420// :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'
430// :65:17: error: use of undefined value here causes illegal behavior422// :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'
432// :65:17: error: use of undefined value here causes illegal behavior424// :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'
434// :65:21: error: use of undefined value here causes illegal behavior434// :65:21: error: use of undefined value here causes illegal behavior
435// :65:21: note: when computing vector element at index '0'435// :65:21: note: when computing vector element at index '0'
436// :65:21: error: use of undefined value here causes illegal behavior436// :65:21: error: use of undefined value here causes illegal behavior
...@@ -478,50 +478,30 @@ const std = @import("std");...@@ -478,50 +478,30 @@ const std = @import("std");
478// :69:27: error: use of undefined value here causes illegal behavior478// :69:27: error: use of undefined value here causes illegal behavior
479// :69:27: error: use of undefined value here causes illegal behavior479// :69:27: error: use of undefined value here causes illegal behavior
480// :69:27: error: use of undefined value here causes illegal behavior480// :69:27: error: use of undefined value here causes illegal behavior
481// :69:27: note: when computing vector element at index '0'
482// :69:27: error: use of undefined value here causes illegal behavior481// :69:27: error: use of undefined value here causes illegal behavior
483// :69:27: note: when computing vector element at index '0'
484// :69:27: error: use of undefined value here causes illegal behavior482// :69:27: error: use of undefined value here causes illegal behavior
485// :69:27: note: when computing vector element at index '0'
486// :69:27: error: use of undefined value here causes illegal behavior483// :69:27: error: use of undefined value here causes illegal behavior
487// :69:27: note: when computing vector element at index '0'
488// :69:27: error: use of undefined value here causes illegal behavior484// :69:27: error: use of undefined value here causes illegal behavior
489// :69:27: note: when computing vector element at index '1'
490// :69:27: error: use of undefined value here causes illegal behavior485// :69:27: error: use of undefined value here causes illegal behavior
491// :69:27: note: when computing vector element at index '1'
492// :69:27: error: use of undefined value here causes illegal behavior486// :69:27: error: use of undefined value here causes illegal behavior
493// :69:27: note: when computing vector element at index '0'
494// :69:27: error: use of undefined value here causes illegal behavior487// :69:27: error: use of undefined value here causes illegal behavior
495// :69:27: note: when computing vector element at index '0'
496// :69:27: error: use of undefined value here causes illegal behavior488// :69:27: error: use of undefined value here causes illegal behavior
497// :69:27: note: when computing vector element at index '0'
498// :69:27: error: use of undefined value here causes illegal behavior489// :69:27: error: use of undefined value here causes illegal behavior
499// :69:27: note: when computing vector element at index '0'
500// :69:27: error: use of undefined value here causes illegal behavior490// :69:27: error: use of undefined value here causes illegal behavior
501// :69:27: error: use of undefined value here causes illegal behavior491// :69:27: error: use of undefined value here causes illegal behavior
502// :69:27: error: use of undefined value here causes illegal behavior492// :69:27: error: use of undefined value here causes illegal behavior
503// :69:27: note: when computing vector element at index '0'
504// :69:27: error: use of undefined value here causes illegal behavior493// :69:27: error: use of undefined value here causes illegal behavior
505// :69:27: note: when computing vector element at index '0'
506// :69:27: error: use of undefined value here causes illegal behavior494// :69:27: error: use of undefined value here causes illegal behavior
507// :69:27: note: when computing vector element at index '0'
508// :69:27: error: use of undefined value here causes illegal behavior495// :69:27: error: use of undefined value here causes illegal behavior
509// :69:27: note: when computing vector element at index '0'
510// :69:27: error: use of undefined value here causes illegal behavior496// :69:27: error: use of undefined value here causes illegal behavior
511// :69:27: note: when computing vector element at index '1'
512// :69:27: error: use of undefined value here causes illegal behavior497// :69:27: error: use of undefined value here causes illegal behavior
513// :69:27: note: when computing vector element at index '1'
514// :69:27: error: use of undefined value here causes illegal behavior498// :69:27: error: use of undefined value here causes illegal behavior
515// :69:27: note: when computing vector element at index '0'
516// :69:27: error: use of undefined value here causes illegal behavior499// :69:27: error: use of undefined value here causes illegal behavior
517// :69:27: note: when computing vector element at index '0'
518// :69:27: error: use of undefined value here causes illegal behavior500// :69:27: error: use of undefined value here causes illegal behavior
519// :69:27: note: when computing vector element at index '0'501// :69:27: note: when computing vector element at index '0'
520// :69:27: error: use of undefined value here causes illegal behavior502// :69:27: error: use of undefined value here causes illegal behavior
521// :69:27: note: when computing vector element at index '0'503// :69:27: note: when computing vector element at index '0'
522// :69:27: error: use of undefined value here causes illegal behavior504// :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
525// :69:27: note: when computing vector element at index '0'505// :69:27: note: when computing vector element at index '0'
526// :69:27: error: use of undefined value here causes illegal behavior506// :69:27: error: use of undefined value here causes illegal behavior
527// :69:27: note: when computing vector element at index '0'507// :69:27: note: when computing vector element at index '0'
...@@ -530,10 +510,6 @@ const std = @import("std");...@@ -530,10 +510,6 @@ const std = @import("std");
530// :69:27: error: use of undefined value here causes illegal behavior510// :69:27: error: use of undefined value here causes illegal behavior
531// :69:27: note: when computing vector element at index '0'511// :69:27: note: when computing vector element at index '0'
532// :69:27: error: use of undefined value here causes illegal behavior512// :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
537// :69:27: note: when computing vector element at index '0'513// :69:27: note: when computing vector element at index '0'
538// :69:27: error: use of undefined value here causes illegal behavior514// :69:27: error: use of undefined value here causes illegal behavior
539// :69:27: note: when computing vector element at index '0'515// :69:27: note: when computing vector element at index '0'
...@@ -542,7 +518,9 @@ const std = @import("std");...@@ -542,7 +518,9 @@ const std = @import("std");
542// :69:27: error: use of undefined value here causes illegal behavior518// :69:27: error: use of undefined value here causes illegal behavior
543// :69:27: note: when computing vector element at index '0'519// :69:27: note: when computing vector element at index '0'
544// :69:27: error: use of undefined value here causes illegal behavior520// :69:27: error: use of undefined value here causes illegal behavior
521// :69:27: note: when computing vector element at index '0'
545// :69:27: error: use of undefined value here causes illegal behavior522// :69:27: error: use of undefined value here causes illegal behavior
523// :69:27: note: when computing vector element at index '0'
546// :69:27: error: use of undefined value here causes illegal behavior524// :69:27: error: use of undefined value here causes illegal behavior
547// :69:27: note: when computing vector element at index '0'525// :69:27: note: when computing vector element at index '0'
548// :69:27: error: use of undefined value here causes illegal behavior526// :69:27: error: use of undefined value here causes illegal behavior
...@@ -552,9 +530,9 @@ const std = @import("std");...@@ -552,9 +530,9 @@ const std = @import("std");
552// :69:27: error: use of undefined value here causes illegal behavior530// :69:27: error: use of undefined value here causes illegal behavior
553// :69:27: note: when computing vector element at index '0'531// :69:27: note: when computing vector element at index '0'
554// :69:27: error: use of undefined value here causes illegal behavior532// :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'
556// :69:27: error: use of undefined value here causes illegal behavior534// :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'
558// :69:27: error: use of undefined value here causes illegal behavior536// :69:27: error: use of undefined value here causes illegal behavior
559// :69:27: note: when computing vector element at index '0'537// :69:27: note: when computing vector element at index '0'
560// :69:27: error: use of undefined value here causes illegal behavior538// :69:27: error: use of undefined value here causes illegal behavior
...@@ -564,7 +542,9 @@ const std = @import("std");...@@ -564,7 +542,9 @@ const std = @import("std");
564// :69:27: error: use of undefined value here causes illegal behavior542// :69:27: error: use of undefined value here causes illegal behavior
565// :69:27: note: when computing vector element at index '0'543// :69:27: note: when computing vector element at index '0'
566// :69:27: error: use of undefined value here causes illegal behavior544// :69:27: error: use of undefined value here causes illegal behavior
545// :69:27: note: when computing vector element at index '0'
567// :69:27: error: use of undefined value here causes illegal behavior546// :69:27: error: use of undefined value here causes illegal behavior
547// :69:27: note: when computing vector element at index '0'
568// :69:27: error: use of undefined value here causes illegal behavior548// :69:27: error: use of undefined value here causes illegal behavior
569// :69:27: note: when computing vector element at index '0'549// :69:27: note: when computing vector element at index '0'
570// :69:27: error: use of undefined value here causes illegal behavior550// :69:27: error: use of undefined value here causes illegal behavior
...@@ -574,9 +554,9 @@ const std = @import("std");...@@ -574,9 +554,9 @@ const std = @import("std");
574// :69:27: error: use of undefined value here causes illegal behavior554// :69:27: error: use of undefined value here causes illegal behavior
575// :69:27: note: when computing vector element at index '0'555// :69:27: note: when computing vector element at index '0'
576// :69:27: error: use of undefined value here causes illegal behavior556// :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'
578// :69:27: error: use of undefined value here causes illegal behavior558// :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'
580// :69:27: error: use of undefined value here causes illegal behavior560// :69:27: error: use of undefined value here causes illegal behavior
581// :69:27: note: when computing vector element at index '0'561// :69:27: note: when computing vector element at index '0'
582// :69:27: error: use of undefined value here causes illegal behavior562// :69:27: error: use of undefined value here causes illegal behavior
...@@ -586,7 +566,9 @@ const std = @import("std");...@@ -586,7 +566,9 @@ const std = @import("std");
586// :69:27: error: use of undefined value here causes illegal behavior566// :69:27: error: use of undefined value here causes illegal behavior
587// :69:27: note: when computing vector element at index '0'567// :69:27: note: when computing vector element at index '0'
588// :69:27: error: use of undefined value here causes illegal behavior568// :69:27: error: use of undefined value here causes illegal behavior
569// :69:27: note: when computing vector element at index '0'
589// :69:27: error: use of undefined value here causes illegal behavior570// :69:27: error: use of undefined value here causes illegal behavior
571// :69:27: note: when computing vector element at index '0'
590// :69:27: error: use of undefined value here causes illegal behavior572// :69:27: error: use of undefined value here causes illegal behavior
591// :69:27: note: when computing vector element at index '0'573// :69:27: note: when computing vector element at index '0'
592// :69:27: error: use of undefined value here causes illegal behavior574// :69:27: error: use of undefined value here causes illegal behavior
...@@ -596,9 +578,9 @@ const std = @import("std");...@@ -596,9 +578,9 @@ const std = @import("std");
596// :69:27: error: use of undefined value here causes illegal behavior578// :69:27: error: use of undefined value here causes illegal behavior
597// :69:27: note: when computing vector element at index '0'579// :69:27: note: when computing vector element at index '0'
598// :69:27: error: use of undefined value here causes illegal behavior580// :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'
600// :69:27: error: use of undefined value here causes illegal behavior582// :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'
602// :69:27: error: use of undefined value here causes illegal behavior584// :69:27: error: use of undefined value here causes illegal behavior
603// :69:27: note: when computing vector element at index '0'585// :69:27: note: when computing vector element at index '0'
604// :69:27: error: use of undefined value here causes illegal behavior586// :69:27: error: use of undefined value here causes illegal behavior
...@@ -608,7 +590,9 @@ const std = @import("std");...@@ -608,7 +590,9 @@ const std = @import("std");
608// :69:27: error: use of undefined value here causes illegal behavior590// :69:27: error: use of undefined value here causes illegal behavior
609// :69:27: note: when computing vector element at index '0'591// :69:27: note: when computing vector element at index '0'
610// :69:27: error: use of undefined value here causes illegal behavior592// :69:27: error: use of undefined value here causes illegal behavior
593// :69:27: note: when computing vector element at index '0'
611// :69:27: error: use of undefined value here causes illegal behavior594// :69:27: error: use of undefined value here causes illegal behavior
595// :69:27: note: when computing vector element at index '0'
612// :69:27: error: use of undefined value here causes illegal behavior596// :69:27: error: use of undefined value here causes illegal behavior
613// :69:27: note: when computing vector element at index '0'597// :69:27: note: when computing vector element at index '0'
614// :69:27: error: use of undefined value here causes illegal behavior598// :69:27: error: use of undefined value here causes illegal behavior
...@@ -618,9 +602,9 @@ const std = @import("std");...@@ -618,9 +602,9 @@ const std = @import("std");
618// :69:27: error: use of undefined value here causes illegal behavior602// :69:27: error: use of undefined value here causes illegal behavior
619// :69:27: note: when computing vector element at index '0'603// :69:27: note: when computing vector element at index '0'
620// :69:27: error: use of undefined value here causes illegal behavior604// :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'
622// :69:27: error: use of undefined value here causes illegal behavior606// :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'
624// :69:27: error: use of undefined value here causes illegal behavior608// :69:27: error: use of undefined value here causes illegal behavior
625// :69:27: note: when computing vector element at index '0'609// :69:27: note: when computing vector element at index '0'
626// :69:27: error: use of undefined value here causes illegal behavior610// :69:27: error: use of undefined value here causes illegal behavior
...@@ -630,7 +614,9 @@ const std = @import("std");...@@ -630,7 +614,9 @@ const std = @import("std");
630// :69:27: error: use of undefined value here causes illegal behavior614// :69:27: error: use of undefined value here causes illegal behavior
631// :69:27: note: when computing vector element at index '0'615// :69:27: note: when computing vector element at index '0'
632// :69:27: error: use of undefined value here causes illegal behavior616// :69:27: error: use of undefined value here causes illegal behavior
617// :69:27: note: when computing vector element at index '0'
633// :69:27: error: use of undefined value here causes illegal behavior618// :69:27: error: use of undefined value here causes illegal behavior
619// :69:27: note: when computing vector element at index '0'
634// :69:27: error: use of undefined value here causes illegal behavior620// :69:27: error: use of undefined value here causes illegal behavior
635// :69:27: note: when computing vector element at index '0'621// :69:27: note: when computing vector element at index '0'
636// :69:27: error: use of undefined value here causes illegal behavior622// :69:27: error: use of undefined value here causes illegal behavior
...@@ -640,9 +626,9 @@ const std = @import("std");...@@ -640,9 +626,9 @@ const std = @import("std");
640// :69:27: error: use of undefined value here causes illegal behavior626// :69:27: error: use of undefined value here causes illegal behavior
641// :69:27: note: when computing vector element at index '0'627// :69:27: note: when computing vector element at index '0'
642// :69:27: error: use of undefined value here causes illegal behavior628// :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'
644// :69:27: error: use of undefined value here causes illegal behavior630// :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'
646// :69:27: error: use of undefined value here causes illegal behavior632// :69:27: error: use of undefined value here causes illegal behavior
647// :69:27: note: when computing vector element at index '0'633// :69:27: note: when computing vector element at index '0'
648// :69:27: error: use of undefined value here causes illegal behavior634// :69:27: error: use of undefined value here causes illegal behavior
...@@ -652,7 +638,9 @@ const std = @import("std");...@@ -652,7 +638,9 @@ const std = @import("std");
652// :69:27: error: use of undefined value here causes illegal behavior638// :69:27: error: use of undefined value here causes illegal behavior
653// :69:27: note: when computing vector element at index '0'639// :69:27: note: when computing vector element at index '0'
654// :69:27: error: use of undefined value here causes illegal behavior640// :69:27: error: use of undefined value here causes illegal behavior
641// :69:27: note: when computing vector element at index '0'
655// :69:27: error: use of undefined value here causes illegal behavior642// :69:27: error: use of undefined value here causes illegal behavior
643// :69:27: note: when computing vector element at index '0'
656// :69:27: error: use of undefined value here causes illegal behavior644// :69:27: error: use of undefined value here causes illegal behavior
657// :69:27: note: when computing vector element at index '0'645// :69:27: note: when computing vector element at index '0'
658// :69:27: error: use of undefined value here causes illegal behavior646// :69:27: error: use of undefined value here causes illegal behavior
...@@ -662,9 +650,9 @@ const std = @import("std");...@@ -662,9 +650,9 @@ const std = @import("std");
662// :69:27: error: use of undefined value here causes illegal behavior650// :69:27: error: use of undefined value here causes illegal behavior
663// :69:27: note: when computing vector element at index '0'651// :69:27: note: when computing vector element at index '0'
664// :69:27: error: use of undefined value here causes illegal behavior652// :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'
666// :69:27: error: use of undefined value here causes illegal behavior654// :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'
668// :69:27: error: use of undefined value here causes illegal behavior656// :69:27: error: use of undefined value here causes illegal behavior
669// :69:27: note: when computing vector element at index '0'657// :69:27: note: when computing vector element at index '0'
670// :69:27: error: use of undefined value here causes illegal behavior658// :69:27: error: use of undefined value here causes illegal behavior
...@@ -674,7 +662,9 @@ const std = @import("std");...@@ -674,7 +662,9 @@ const std = @import("std");
674// :69:27: error: use of undefined value here causes illegal behavior662// :69:27: error: use of undefined value here causes illegal behavior
675// :69:27: note: when computing vector element at index '0'663// :69:27: note: when computing vector element at index '0'
676// :69:27: error: use of undefined value here causes illegal behavior664// :69:27: error: use of undefined value here causes illegal behavior
665// :69:27: note: when computing vector element at index '0'
677// :69:27: error: use of undefined value here causes illegal behavior666// :69:27: error: use of undefined value here causes illegal behavior
667// :69:27: note: when computing vector element at index '0'
678// :69:27: error: use of undefined value here causes illegal behavior668// :69:27: error: use of undefined value here causes illegal behavior
679// :69:27: note: when computing vector element at index '0'669// :69:27: note: when computing vector element at index '0'
680// :69:27: error: use of undefined value here causes illegal behavior670// :69:27: error: use of undefined value here causes illegal behavior
...@@ -688,35 +678,45 @@ const std = @import("std");...@@ -688,35 +678,45 @@ const std = @import("std");
688// :69:27: error: use of undefined value here causes illegal behavior678// :69:27: error: use of undefined value here causes illegal behavior
689// :69:27: note: when computing vector element at index '1'679// :69:27: note: when computing vector element at index '1'
690// :69:27: error: use of undefined value here causes illegal behavior680// :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'
692// :69:27: error: use of undefined value here causes illegal behavior682// :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'
694// :69:27: error: use of undefined value here causes illegal behavior684// :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'
696// :69:27: error: use of undefined value here causes illegal behavior686// :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'
698// :69:27: error: use of undefined value here causes illegal behavior688// :69:27: error: use of undefined value here causes illegal behavior
689// :69:27: note: when computing vector element at index '1'
699// :69:27: error: use of undefined value here causes illegal behavior690// :69:27: error: use of undefined value here causes illegal behavior
691// :69:27: note: when computing vector element at index '1'
700// :69:27: error: use of undefined value here causes illegal behavior692// :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'
702// :69:27: error: use of undefined value here causes illegal behavior694// :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'
704// :69:27: error: use of undefined value here causes illegal behavior696// :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'
706// :69:27: error: use of undefined value here causes illegal behavior698// :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'
708// :69:27: error: use of undefined value here causes illegal behavior700// :69:27: error: use of undefined value here causes illegal behavior
709// :69:27: note: when computing vector element at index '1'701// :69:27: note: when computing vector element at index '1'
710// :69:27: error: use of undefined value here causes illegal behavior702// :69:27: error: use of undefined value here causes illegal behavior
711// :69:27: note: when computing vector element at index '1'703// :69:27: note: when computing vector element at index '1'
712// :69:27: error: use of undefined value here causes illegal behavior704// :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'
714// :69:27: error: use of undefined value here causes illegal behavior706// :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'
716// :69:27: error: use of undefined value here causes illegal behavior708// :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'
718// :69:27: error: use of undefined value here causes illegal behavior710// :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'
720// :69:30: error: use of undefined value here causes illegal behavior720// :69:30: error: use of undefined value here causes illegal behavior
721// :69:30: note: when computing vector element at index '0'721// :69:30: note: when computing vector element at index '0'
722// :69:30: error: use of undefined value here causes illegal behavior722// :69:30: error: use of undefined value here causes illegal behavior
...@@ -764,50 +764,30 @@ const std = @import("std");...@@ -764,50 +764,30 @@ const std = @import("std");
764// :73:27: error: use of undefined value here causes illegal behavior764// :73:27: error: use of undefined value here causes illegal behavior
765// :73:27: error: use of undefined value here causes illegal behavior765// :73:27: error: use of undefined value here causes illegal behavior
766// :73:27: error: use of undefined value here causes illegal behavior766// :73:27: error: use of undefined value here causes illegal behavior
767// :73:27: note: when computing vector element at index '0'
768// :73:27: error: use of undefined value here causes illegal behavior767// :73:27: error: use of undefined value here causes illegal behavior
769// :73:27: note: when computing vector element at index '0'
770// :73:27: error: use of undefined value here causes illegal behavior768// :73:27: error: use of undefined value here causes illegal behavior
771// :73:27: note: when computing vector element at index '0'
772// :73:27: error: use of undefined value here causes illegal behavior769// :73:27: error: use of undefined value here causes illegal behavior
773// :73:27: note: when computing vector element at index '0'
774// :73:27: error: use of undefined value here causes illegal behavior770// :73:27: error: use of undefined value here causes illegal behavior
775// :73:27: note: when computing vector element at index '1'
776// :73:27: error: use of undefined value here causes illegal behavior771// :73:27: error: use of undefined value here causes illegal behavior
777// :73:27: note: when computing vector element at index '1'
778// :73:27: error: use of undefined value here causes illegal behavior772// :73:27: error: use of undefined value here causes illegal behavior
779// :73:27: note: when computing vector element at index '0'
780// :73:27: error: use of undefined value here causes illegal behavior773// :73:27: error: use of undefined value here causes illegal behavior
781// :73:27: note: when computing vector element at index '0'
782// :73:27: error: use of undefined value here causes illegal behavior774// :73:27: error: use of undefined value here causes illegal behavior
783// :73:27: note: when computing vector element at index '0'
784// :73:27: error: use of undefined value here causes illegal behavior775// :73:27: error: use of undefined value here causes illegal behavior
785// :73:27: note: when computing vector element at index '0'
786// :73:27: error: use of undefined value here causes illegal behavior776// :73:27: error: use of undefined value here causes illegal behavior
787// :73:27: error: use of undefined value here causes illegal behavior777// :73:27: error: use of undefined value here causes illegal behavior
788// :73:27: error: use of undefined value here causes illegal behavior778// :73:27: error: use of undefined value here causes illegal behavior
789// :73:27: note: when computing vector element at index '0'
790// :73:27: error: use of undefined value here causes illegal behavior779// :73:27: error: use of undefined value here causes illegal behavior
791// :73:27: note: when computing vector element at index '0'
792// :73:27: error: use of undefined value here causes illegal behavior780// :73:27: error: use of undefined value here causes illegal behavior
793// :73:27: note: when computing vector element at index '0'
794// :73:27: error: use of undefined value here causes illegal behavior781// :73:27: error: use of undefined value here causes illegal behavior
795// :73:27: note: when computing vector element at index '0'
796// :73:27: error: use of undefined value here causes illegal behavior782// :73:27: error: use of undefined value here causes illegal behavior
797// :73:27: note: when computing vector element at index '1'
798// :73:27: error: use of undefined value here causes illegal behavior783// :73:27: error: use of undefined value here causes illegal behavior
799// :73:27: note: when computing vector element at index '1'
800// :73:27: error: use of undefined value here causes illegal behavior784// :73:27: error: use of undefined value here causes illegal behavior
801// :73:27: note: when computing vector element at index '0'
802// :73:27: error: use of undefined value here causes illegal behavior785// :73:27: error: use of undefined value here causes illegal behavior
803// :73:27: note: when computing vector element at index '0'
804// :73:27: error: use of undefined value here causes illegal behavior786// :73:27: error: use of undefined value here causes illegal behavior
805// :73:27: note: when computing vector element at index '0'787// :73:27: note: when computing vector element at index '0'
806// :73:27: error: use of undefined value here causes illegal behavior788// :73:27: error: use of undefined value here causes illegal behavior
807// :73:27: note: when computing vector element at index '0'789// :73:27: note: when computing vector element at index '0'
808// :73:27: error: use of undefined value here causes illegal behavior790// :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
811// :73:27: note: when computing vector element at index '0'791// :73:27: note: when computing vector element at index '0'
812// :73:27: error: use of undefined value here causes illegal behavior792// :73:27: error: use of undefined value here causes illegal behavior
813// :73:27: note: when computing vector element at index '0'793// :73:27: note: when computing vector element at index '0'
...@@ -816,10 +796,6 @@ const std = @import("std");...@@ -816,10 +796,6 @@ const std = @import("std");
816// :73:27: error: use of undefined value here causes illegal behavior796// :73:27: error: use of undefined value here causes illegal behavior
817// :73:27: note: when computing vector element at index '0'797// :73:27: note: when computing vector element at index '0'
818// :73:27: error: use of undefined value here causes illegal behavior798// :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
823// :73:27: note: when computing vector element at index '0'799// :73:27: note: when computing vector element at index '0'
824// :73:27: error: use of undefined value here causes illegal behavior800// :73:27: error: use of undefined value here causes illegal behavior
825// :73:27: note: when computing vector element at index '0'801// :73:27: note: when computing vector element at index '0'
...@@ -828,7 +804,9 @@ const std = @import("std");...@@ -828,7 +804,9 @@ const std = @import("std");
828// :73:27: error: use of undefined value here causes illegal behavior804// :73:27: error: use of undefined value here causes illegal behavior
829// :73:27: note: when computing vector element at index '0'805// :73:27: note: when computing vector element at index '0'
830// :73:27: error: use of undefined value here causes illegal behavior806// :73:27: error: use of undefined value here causes illegal behavior
807// :73:27: note: when computing vector element at index '0'
831// :73:27: error: use of undefined value here causes illegal behavior808// :73:27: error: use of undefined value here causes illegal behavior
809// :73:27: note: when computing vector element at index '0'
832// :73:27: error: use of undefined value here causes illegal behavior810// :73:27: error: use of undefined value here causes illegal behavior
833// :73:27: note: when computing vector element at index '0'811// :73:27: note: when computing vector element at index '0'
834// :73:27: error: use of undefined value here causes illegal behavior812// :73:27: error: use of undefined value here causes illegal behavior
...@@ -838,9 +816,9 @@ const std = @import("std");...@@ -838,9 +816,9 @@ const std = @import("std");
838// :73:27: error: use of undefined value here causes illegal behavior816// :73:27: error: use of undefined value here causes illegal behavior
839// :73:27: note: when computing vector element at index '0'817// :73:27: note: when computing vector element at index '0'
840// :73:27: error: use of undefined value here causes illegal behavior818// :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'
842// :73:27: error: use of undefined value here causes illegal behavior820// :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'
844// :73:27: error: use of undefined value here causes illegal behavior822// :73:27: error: use of undefined value here causes illegal behavior
845// :73:27: note: when computing vector element at index '0'823// :73:27: note: when computing vector element at index '0'
846// :73:27: error: use of undefined value here causes illegal behavior824// :73:27: error: use of undefined value here causes illegal behavior
...@@ -850,7 +828,9 @@ const std = @import("std");...@@ -850,7 +828,9 @@ const std = @import("std");
850// :73:27: error: use of undefined value here causes illegal behavior828// :73:27: error: use of undefined value here causes illegal behavior
851// :73:27: note: when computing vector element at index '0'829// :73:27: note: when computing vector element at index '0'
852// :73:27: error: use of undefined value here causes illegal behavior830// :73:27: error: use of undefined value here causes illegal behavior
831// :73:27: note: when computing vector element at index '0'
853// :73:27: error: use of undefined value here causes illegal behavior832// :73:27: error: use of undefined value here causes illegal behavior
833// :73:27: note: when computing vector element at index '0'
854// :73:27: error: use of undefined value here causes illegal behavior834// :73:27: error: use of undefined value here causes illegal behavior
855// :73:27: note: when computing vector element at index '0'835// :73:27: note: when computing vector element at index '0'
856// :73:27: error: use of undefined value here causes illegal behavior836// :73:27: error: use of undefined value here causes illegal behavior
...@@ -860,9 +840,9 @@ const std = @import("std");...@@ -860,9 +840,9 @@ const std = @import("std");
860// :73:27: error: use of undefined value here causes illegal behavior840// :73:27: error: use of undefined value here causes illegal behavior
861// :73:27: note: when computing vector element at index '0'841// :73:27: note: when computing vector element at index '0'
862// :73:27: error: use of undefined value here causes illegal behavior842// :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'
864// :73:27: error: use of undefined value here causes illegal behavior844// :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'
866// :73:27: error: use of undefined value here causes illegal behavior846// :73:27: error: use of undefined value here causes illegal behavior
867// :73:27: note: when computing vector element at index '0'847// :73:27: note: when computing vector element at index '0'
868// :73:27: error: use of undefined value here causes illegal behavior848// :73:27: error: use of undefined value here causes illegal behavior
...@@ -872,7 +852,9 @@ const std = @import("std");...@@ -872,7 +852,9 @@ const std = @import("std");
872// :73:27: error: use of undefined value here causes illegal behavior852// :73:27: error: use of undefined value here causes illegal behavior
873// :73:27: note: when computing vector element at index '0'853// :73:27: note: when computing vector element at index '0'
874// :73:27: error: use of undefined value here causes illegal behavior854// :73:27: error: use of undefined value here causes illegal behavior
855// :73:27: note: when computing vector element at index '0'
875// :73:27: error: use of undefined value here causes illegal behavior856// :73:27: error: use of undefined value here causes illegal behavior
857// :73:27: note: when computing vector element at index '0'
876// :73:27: error: use of undefined value here causes illegal behavior858// :73:27: error: use of undefined value here causes illegal behavior
877// :73:27: note: when computing vector element at index '0'859// :73:27: note: when computing vector element at index '0'
878// :73:27: error: use of undefined value here causes illegal behavior860// :73:27: error: use of undefined value here causes illegal behavior
...@@ -882,9 +864,9 @@ const std = @import("std");...@@ -882,9 +864,9 @@ const std = @import("std");
882// :73:27: error: use of undefined value here causes illegal behavior864// :73:27: error: use of undefined value here causes illegal behavior
883// :73:27: note: when computing vector element at index '0'865// :73:27: note: when computing vector element at index '0'
884// :73:27: error: use of undefined value here causes illegal behavior866// :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'
886// :73:27: error: use of undefined value here causes illegal behavior868// :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'
888// :73:27: error: use of undefined value here causes illegal behavior870// :73:27: error: use of undefined value here causes illegal behavior
889// :73:27: note: when computing vector element at index '0'871// :73:27: note: when computing vector element at index '0'
890// :73:27: error: use of undefined value here causes illegal behavior872// :73:27: error: use of undefined value here causes illegal behavior
...@@ -894,7 +876,9 @@ const std = @import("std");...@@ -894,7 +876,9 @@ const std = @import("std");
894// :73:27: error: use of undefined value here causes illegal behavior876// :73:27: error: use of undefined value here causes illegal behavior
895// :73:27: note: when computing vector element at index '0'877// :73:27: note: when computing vector element at index '0'
896// :73:27: error: use of undefined value here causes illegal behavior878// :73:27: error: use of undefined value here causes illegal behavior
879// :73:27: note: when computing vector element at index '0'
897// :73:27: error: use of undefined value here causes illegal behavior880// :73:27: error: use of undefined value here causes illegal behavior
881// :73:27: note: when computing vector element at index '0'
898// :73:27: error: use of undefined value here causes illegal behavior882// :73:27: error: use of undefined value here causes illegal behavior
899// :73:27: note: when computing vector element at index '0'883// :73:27: note: when computing vector element at index '0'
900// :73:27: error: use of undefined value here causes illegal behavior884// :73:27: error: use of undefined value here causes illegal behavior
...@@ -904,9 +888,9 @@ const std = @import("std");...@@ -904,9 +888,9 @@ const std = @import("std");
904// :73:27: error: use of undefined value here causes illegal behavior888// :73:27: error: use of undefined value here causes illegal behavior
905// :73:27: note: when computing vector element at index '0'889// :73:27: note: when computing vector element at index '0'
906// :73:27: error: use of undefined value here causes illegal behavior890// :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'
908// :73:27: error: use of undefined value here causes illegal behavior892// :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'
910// :73:27: error: use of undefined value here causes illegal behavior894// :73:27: error: use of undefined value here causes illegal behavior
911// :73:27: note: when computing vector element at index '0'895// :73:27: note: when computing vector element at index '0'
912// :73:27: error: use of undefined value here causes illegal behavior896// :73:27: error: use of undefined value here causes illegal behavior
...@@ -916,7 +900,9 @@ const std = @import("std");...@@ -916,7 +900,9 @@ const std = @import("std");
916// :73:27: error: use of undefined value here causes illegal behavior900// :73:27: error: use of undefined value here causes illegal behavior
917// :73:27: note: when computing vector element at index '0'901// :73:27: note: when computing vector element at index '0'
918// :73:27: error: use of undefined value here causes illegal behavior902// :73:27: error: use of undefined value here causes illegal behavior
903// :73:27: note: when computing vector element at index '0'
919// :73:27: error: use of undefined value here causes illegal behavior904// :73:27: error: use of undefined value here causes illegal behavior
905// :73:27: note: when computing vector element at index '0'
920// :73:27: error: use of undefined value here causes illegal behavior906// :73:27: error: use of undefined value here causes illegal behavior
921// :73:27: note: when computing vector element at index '0'907// :73:27: note: when computing vector element at index '0'
922// :73:27: error: use of undefined value here causes illegal behavior908// :73:27: error: use of undefined value here causes illegal behavior
...@@ -926,9 +912,9 @@ const std = @import("std");...@@ -926,9 +912,9 @@ const std = @import("std");
926// :73:27: error: use of undefined value here causes illegal behavior912// :73:27: error: use of undefined value here causes illegal behavior
927// :73:27: note: when computing vector element at index '0'913// :73:27: note: when computing vector element at index '0'
928// :73:27: error: use of undefined value here causes illegal behavior914// :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'
930// :73:27: error: use of undefined value here causes illegal behavior916// :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'
932// :73:27: error: use of undefined value here causes illegal behavior918// :73:27: error: use of undefined value here causes illegal behavior
933// :73:27: note: when computing vector element at index '0'919// :73:27: note: when computing vector element at index '0'
934// :73:27: error: use of undefined value here causes illegal behavior920// :73:27: error: use of undefined value here causes illegal behavior
...@@ -938,7 +924,9 @@ const std = @import("std");...@@ -938,7 +924,9 @@ const std = @import("std");
938// :73:27: error: use of undefined value here causes illegal behavior924// :73:27: error: use of undefined value here causes illegal behavior
939// :73:27: note: when computing vector element at index '0'925// :73:27: note: when computing vector element at index '0'
940// :73:27: error: use of undefined value here causes illegal behavior926// :73:27: error: use of undefined value here causes illegal behavior
927// :73:27: note: when computing vector element at index '0'
941// :73:27: error: use of undefined value here causes illegal behavior928// :73:27: error: use of undefined value here causes illegal behavior
929// :73:27: note: when computing vector element at index '0'
942// :73:27: error: use of undefined value here causes illegal behavior930// :73:27: error: use of undefined value here causes illegal behavior
943// :73:27: note: when computing vector element at index '0'931// :73:27: note: when computing vector element at index '0'
944// :73:27: error: use of undefined value here causes illegal behavior932// :73:27: error: use of undefined value here causes illegal behavior
...@@ -948,9 +936,9 @@ const std = @import("std");...@@ -948,9 +936,9 @@ const std = @import("std");
948// :73:27: error: use of undefined value here causes illegal behavior936// :73:27: error: use of undefined value here causes illegal behavior
949// :73:27: note: when computing vector element at index '0'937// :73:27: note: when computing vector element at index '0'
950// :73:27: error: use of undefined value here causes illegal behavior938// :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'
952// :73:27: error: use of undefined value here causes illegal behavior940// :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'
954// :73:27: error: use of undefined value here causes illegal behavior942// :73:27: error: use of undefined value here causes illegal behavior
955// :73:27: note: when computing vector element at index '0'943// :73:27: note: when computing vector element at index '0'
956// :73:27: error: use of undefined value here causes illegal behavior944// :73:27: error: use of undefined value here causes illegal behavior
...@@ -960,7 +948,9 @@ const std = @import("std");...@@ -960,7 +948,9 @@ const std = @import("std");
960// :73:27: error: use of undefined value here causes illegal behavior948// :73:27: error: use of undefined value here causes illegal behavior
961// :73:27: note: when computing vector element at index '0'949// :73:27: note: when computing vector element at index '0'
962// :73:27: error: use of undefined value here causes illegal behavior950// :73:27: error: use of undefined value here causes illegal behavior
951// :73:27: note: when computing vector element at index '0'
963// :73:27: error: use of undefined value here causes illegal behavior952// :73:27: error: use of undefined value here causes illegal behavior
953// :73:27: note: when computing vector element at index '0'
964// :73:27: error: use of undefined value here causes illegal behavior954// :73:27: error: use of undefined value here causes illegal behavior
965// :73:27: note: when computing vector element at index '0'955// :73:27: note: when computing vector element at index '0'
966// :73:27: error: use of undefined value here causes illegal behavior956// :73:27: error: use of undefined value here causes illegal behavior
...@@ -974,35 +964,45 @@ const std = @import("std");...@@ -974,35 +964,45 @@ const std = @import("std");
974// :73:27: error: use of undefined value here causes illegal behavior964// :73:27: error: use of undefined value here causes illegal behavior
975// :73:27: note: when computing vector element at index '1'965// :73:27: note: when computing vector element at index '1'
976// :73:27: error: use of undefined value here causes illegal behavior966// :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'
978// :73:27: error: use of undefined value here causes illegal behavior968// :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'
980// :73:27: error: use of undefined value here causes illegal behavior970// :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'
982// :73:27: error: use of undefined value here causes illegal behavior972// :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'
984// :73:27: error: use of undefined value here causes illegal behavior974// :73:27: error: use of undefined value here causes illegal behavior
975// :73:27: note: when computing vector element at index '1'
985// :73:27: error: use of undefined value here causes illegal behavior976// :73:27: error: use of undefined value here causes illegal behavior
977// :73:27: note: when computing vector element at index '1'
986// :73:27: error: use of undefined value here causes illegal behavior978// :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'
988// :73:27: error: use of undefined value here causes illegal behavior980// :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'
990// :73:27: error: use of undefined value here causes illegal behavior982// :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'
992// :73:27: error: use of undefined value here causes illegal behavior984// :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'
994// :73:27: error: use of undefined value here causes illegal behavior986// :73:27: error: use of undefined value here causes illegal behavior
995// :73:27: note: when computing vector element at index '1'987// :73:27: note: when computing vector element at index '1'
996// :73:27: error: use of undefined value here causes illegal behavior988// :73:27: error: use of undefined value here causes illegal behavior
997// :73:27: note: when computing vector element at index '1'989// :73:27: note: when computing vector element at index '1'
998// :73:27: error: use of undefined value here causes illegal behavior990// :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'
1000// :73:27: error: use of undefined value here causes illegal behavior992// :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'
1002// :73:27: error: use of undefined value here causes illegal behavior994// :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'
1004// :73:27: error: use of undefined value here causes illegal behavior996// :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'
1006// :73:30: error: use of undefined value here causes illegal behavior1006// :73:30: error: use of undefined value here causes illegal behavior
1007// :73:30: note: when computing vector element at index '0'1007// :73:30: note: when computing vector element at index '0'
1008// :73:30: error: use of undefined value here causes illegal behavior1008// :73:30: error: use of undefined value here causes illegal behavior
...@@ -1050,50 +1050,30 @@ const std = @import("std");...@@ -1050,50 +1050,30 @@ const std = @import("std");
1050// :77:27: error: use of undefined value here causes illegal behavior1050// :77:27: error: use of undefined value here causes illegal behavior
1051// :77:27: error: use of undefined value here causes illegal behavior1051// :77:27: error: use of undefined value here causes illegal behavior
1052// :77:27: error: use of undefined value here causes illegal behavior1052// :77:27: error: use of undefined value here causes illegal behavior
1053// :77:27: note: when computing vector element at index '0'
1054// :77:27: error: use of undefined value here causes illegal behavior1053// :77:27: error: use of undefined value here causes illegal behavior
1055// :77:27: note: when computing vector element at index '0'
1056// :77:27: error: use of undefined value here causes illegal behavior1054// :77:27: error: use of undefined value here causes illegal behavior
1057// :77:27: note: when computing vector element at index '0'
1058// :77:27: error: use of undefined value here causes illegal behavior1055// :77:27: error: use of undefined value here causes illegal behavior
1059// :77:27: note: when computing vector element at index '0'
1060// :77:27: error: use of undefined value here causes illegal behavior1056// :77:27: error: use of undefined value here causes illegal behavior
1061// :77:27: note: when computing vector element at index '1'
1062// :77:27: error: use of undefined value here causes illegal behavior1057// :77:27: error: use of undefined value here causes illegal behavior
1063// :77:27: note: when computing vector element at index '1'
1064// :77:27: error: use of undefined value here causes illegal behavior1058// :77:27: error: use of undefined value here causes illegal behavior
1065// :77:27: note: when computing vector element at index '0'
1066// :77:27: error: use of undefined value here causes illegal behavior1059// :77:27: error: use of undefined value here causes illegal behavior
1067// :77:27: note: when computing vector element at index '0'
1068// :77:27: error: use of undefined value here causes illegal behavior1060// :77:27: error: use of undefined value here causes illegal behavior
1069// :77:27: note: when computing vector element at index '0'
1070// :77:27: error: use of undefined value here causes illegal behavior1061// :77:27: error: use of undefined value here causes illegal behavior
1071// :77:27: note: when computing vector element at index '0'
1072// :77:27: error: use of undefined value here causes illegal behavior1062// :77:27: error: use of undefined value here causes illegal behavior
1073// :77:27: error: use of undefined value here causes illegal behavior1063// :77:27: error: use of undefined value here causes illegal behavior
1074// :77:27: error: use of undefined value here causes illegal behavior1064// :77:27: error: use of undefined value here causes illegal behavior
1075// :77:27: note: when computing vector element at index '0'
1076// :77:27: error: use of undefined value here causes illegal behavior1065// :77:27: error: use of undefined value here causes illegal behavior
1077// :77:27: note: when computing vector element at index '0'
1078// :77:27: error: use of undefined value here causes illegal behavior1066// :77:27: error: use of undefined value here causes illegal behavior
1079// :77:27: note: when computing vector element at index '0'
1080// :77:27: error: use of undefined value here causes illegal behavior1067// :77:27: error: use of undefined value here causes illegal behavior
1081// :77:27: note: when computing vector element at index '0'
1082// :77:27: error: use of undefined value here causes illegal behavior1068// :77:27: error: use of undefined value here causes illegal behavior
1083// :77:27: note: when computing vector element at index '1'
1084// :77:27: error: use of undefined value here causes illegal behavior1069// :77:27: error: use of undefined value here causes illegal behavior
1085// :77:27: note: when computing vector element at index '1'
1086// :77:27: error: use of undefined value here causes illegal behavior1070// :77:27: error: use of undefined value here causes illegal behavior
1087// :77:27: note: when computing vector element at index '0'
1088// :77:27: error: use of undefined value here causes illegal behavior1071// :77:27: error: use of undefined value here causes illegal behavior
1089// :77:27: note: when computing vector element at index '0'
1090// :77:27: error: use of undefined value here causes illegal behavior1072// :77:27: error: use of undefined value here causes illegal behavior
1091// :77:27: note: when computing vector element at index '0'1073// :77:27: note: when computing vector element at index '0'
1092// :77:27: error: use of undefined value here causes illegal behavior1074// :77:27: error: use of undefined value here causes illegal behavior
1093// :77:27: note: when computing vector element at index '0'1075// :77:27: note: when computing vector element at index '0'
1094// :77:27: error: use of undefined value here causes illegal behavior1076// :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
1097// :77:27: note: when computing vector element at index '0'1077// :77:27: note: when computing vector element at index '0'
1098// :77:27: error: use of undefined value here causes illegal behavior1078// :77:27: error: use of undefined value here causes illegal behavior
1099// :77:27: note: when computing vector element at index '0'1079// :77:27: note: when computing vector element at index '0'
...@@ -1102,10 +1082,6 @@ const std = @import("std");...@@ -1102,10 +1082,6 @@ const std = @import("std");
1102// :77:27: error: use of undefined value here causes illegal behavior1082// :77:27: error: use of undefined value here causes illegal behavior
1103// :77:27: note: when computing vector element at index '0'1083// :77:27: note: when computing vector element at index '0'
1104// :77:27: error: use of undefined value here causes illegal behavior1084// :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
1109// :77:27: note: when computing vector element at index '0'1085// :77:27: note: when computing vector element at index '0'
1110// :77:27: error: use of undefined value here causes illegal behavior1086// :77:27: error: use of undefined value here causes illegal behavior
1111// :77:27: note: when computing vector element at index '0'1087// :77:27: note: when computing vector element at index '0'
...@@ -1114,7 +1090,9 @@ const std = @import("std");...@@ -1114,7 +1090,9 @@ const std = @import("std");
1114// :77:27: error: use of undefined value here causes illegal behavior1090// :77:27: error: use of undefined value here causes illegal behavior
1115// :77:27: note: when computing vector element at index '0'1091// :77:27: note: when computing vector element at index '0'
1116// :77:27: error: use of undefined value here causes illegal behavior1092// :77:27: error: use of undefined value here causes illegal behavior
1093// :77:27: note: when computing vector element at index '0'
1117// :77:27: error: use of undefined value here causes illegal behavior1094// :77:27: error: use of undefined value here causes illegal behavior
1095// :77:27: note: when computing vector element at index '0'
1118// :77:27: error: use of undefined value here causes illegal behavior1096// :77:27: error: use of undefined value here causes illegal behavior
1119// :77:27: note: when computing vector element at index '0'1097// :77:27: note: when computing vector element at index '0'
1120// :77:27: error: use of undefined value here causes illegal behavior1098// :77:27: error: use of undefined value here causes illegal behavior
...@@ -1124,9 +1102,9 @@ const std = @import("std");...@@ -1124,9 +1102,9 @@ const std = @import("std");
1124// :77:27: error: use of undefined value here causes illegal behavior1102// :77:27: error: use of undefined value here causes illegal behavior
1125// :77:27: note: when computing vector element at index '0'1103// :77:27: note: when computing vector element at index '0'
1126// :77:27: error: use of undefined value here causes illegal behavior1104// :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'
1128// :77:27: error: use of undefined value here causes illegal behavior1106// :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'
1130// :77:27: error: use of undefined value here causes illegal behavior1108// :77:27: error: use of undefined value here causes illegal behavior
1131// :77:27: note: when computing vector element at index '0'1109// :77:27: note: when computing vector element at index '0'
1132// :77:27: error: use of undefined value here causes illegal behavior1110// :77:27: error: use of undefined value here causes illegal behavior
...@@ -1136,7 +1114,9 @@ const std = @import("std");...@@ -1136,7 +1114,9 @@ const std = @import("std");
1136// :77:27: error: use of undefined value here causes illegal behavior1114// :77:27: error: use of undefined value here causes illegal behavior
1137// :77:27: note: when computing vector element at index '0'1115// :77:27: note: when computing vector element at index '0'
1138// :77:27: error: use of undefined value here causes illegal behavior1116// :77:27: error: use of undefined value here causes illegal behavior
1117// :77:27: note: when computing vector element at index '0'
1139// :77:27: error: use of undefined value here causes illegal behavior1118// :77:27: error: use of undefined value here causes illegal behavior
1119// :77:27: note: when computing vector element at index '0'
1140// :77:27: error: use of undefined value here causes illegal behavior1120// :77:27: error: use of undefined value here causes illegal behavior
1141// :77:27: note: when computing vector element at index '0'1121// :77:27: note: when computing vector element at index '0'
1142// :77:27: error: use of undefined value here causes illegal behavior1122// :77:27: error: use of undefined value here causes illegal behavior
...@@ -1146,9 +1126,9 @@ const std = @import("std");...@@ -1146,9 +1126,9 @@ const std = @import("std");
1146// :77:27: error: use of undefined value here causes illegal behavior1126// :77:27: error: use of undefined value here causes illegal behavior
1147// :77:27: note: when computing vector element at index '0'1127// :77:27: note: when computing vector element at index '0'
1148// :77:27: error: use of undefined value here causes illegal behavior1128// :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'
1150// :77:27: error: use of undefined value here causes illegal behavior1130// :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'
1152// :77:27: error: use of undefined value here causes illegal behavior1132// :77:27: error: use of undefined value here causes illegal behavior
1153// :77:27: note: when computing vector element at index '0'1133// :77:27: note: when computing vector element at index '0'
1154// :77:27: error: use of undefined value here causes illegal behavior1134// :77:27: error: use of undefined value here causes illegal behavior
...@@ -1158,7 +1138,9 @@ const std = @import("std");...@@ -1158,7 +1138,9 @@ const std = @import("std");
1158// :77:27: error: use of undefined value here causes illegal behavior1138// :77:27: error: use of undefined value here causes illegal behavior
1159// :77:27: note: when computing vector element at index '0'1139// :77:27: note: when computing vector element at index '0'
1160// :77:27: error: use of undefined value here causes illegal behavior1140// :77:27: error: use of undefined value here causes illegal behavior
1141// :77:27: note: when computing vector element at index '0'
1161// :77:27: error: use of undefined value here causes illegal behavior1142// :77:27: error: use of undefined value here causes illegal behavior
1143// :77:27: note: when computing vector element at index '0'
1162// :77:27: error: use of undefined value here causes illegal behavior1144// :77:27: error: use of undefined value here causes illegal behavior
1163// :77:27: note: when computing vector element at index '0'1145// :77:27: note: when computing vector element at index '0'
1164// :77:27: error: use of undefined value here causes illegal behavior1146// :77:27: error: use of undefined value here causes illegal behavior
...@@ -1168,9 +1150,9 @@ const std = @import("std");...@@ -1168,9 +1150,9 @@ const std = @import("std");
1168// :77:27: error: use of undefined value here causes illegal behavior1150// :77:27: error: use of undefined value here causes illegal behavior
1169// :77:27: note: when computing vector element at index '0'1151// :77:27: note: when computing vector element at index '0'
1170// :77:27: error: use of undefined value here causes illegal behavior1152// :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'
1172// :77:27: error: use of undefined value here causes illegal behavior1154// :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'
1174// :77:27: error: use of undefined value here causes illegal behavior1156// :77:27: error: use of undefined value here causes illegal behavior
1175// :77:27: note: when computing vector element at index '0'1157// :77:27: note: when computing vector element at index '0'
1176// :77:27: error: use of undefined value here causes illegal behavior1158// :77:27: error: use of undefined value here causes illegal behavior
...@@ -1180,7 +1162,9 @@ const std = @import("std");...@@ -1180,7 +1162,9 @@ const std = @import("std");
1180// :77:27: error: use of undefined value here causes illegal behavior1162// :77:27: error: use of undefined value here causes illegal behavior
1181// :77:27: note: when computing vector element at index '0'1163// :77:27: note: when computing vector element at index '0'
1182// :77:27: error: use of undefined value here causes illegal behavior1164// :77:27: error: use of undefined value here causes illegal behavior
1165// :77:27: note: when computing vector element at index '0'
1183// :77:27: error: use of undefined value here causes illegal behavior1166// :77:27: error: use of undefined value here causes illegal behavior
1167// :77:27: note: when computing vector element at index '0'
1184// :77:27: error: use of undefined value here causes illegal behavior1168// :77:27: error: use of undefined value here causes illegal behavior
1185// :77:27: note: when computing vector element at index '0'1169// :77:27: note: when computing vector element at index '0'
1186// :77:27: error: use of undefined value here causes illegal behavior1170// :77:27: error: use of undefined value here causes illegal behavior
...@@ -1190,9 +1174,9 @@ const std = @import("std");...@@ -1190,9 +1174,9 @@ const std = @import("std");
1190// :77:27: error: use of undefined value here causes illegal behavior1174// :77:27: error: use of undefined value here causes illegal behavior
1191// :77:27: note: when computing vector element at index '0'1175// :77:27: note: when computing vector element at index '0'
1192// :77:27: error: use of undefined value here causes illegal behavior1176// :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'
1194// :77:27: error: use of undefined value here causes illegal behavior1178// :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'
1196// :77:27: error: use of undefined value here causes illegal behavior1180// :77:27: error: use of undefined value here causes illegal behavior
1197// :77:27: note: when computing vector element at index '0'1181// :77:27: note: when computing vector element at index '0'
1198// :77:27: error: use of undefined value here causes illegal behavior1182// :77:27: error: use of undefined value here causes illegal behavior
...@@ -1202,7 +1186,9 @@ const std = @import("std");...@@ -1202,7 +1186,9 @@ const std = @import("std");
1202// :77:27: error: use of undefined value here causes illegal behavior1186// :77:27: error: use of undefined value here causes illegal behavior
1203// :77:27: note: when computing vector element at index '0'1187// :77:27: note: when computing vector element at index '0'
1204// :77:27: error: use of undefined value here causes illegal behavior1188// :77:27: error: use of undefined value here causes illegal behavior
1189// :77:27: note: when computing vector element at index '0'
1205// :77:27: error: use of undefined value here causes illegal behavior1190// :77:27: error: use of undefined value here causes illegal behavior
1191// :77:27: note: when computing vector element at index '0'
1206// :77:27: error: use of undefined value here causes illegal behavior1192// :77:27: error: use of undefined value here causes illegal behavior
1207// :77:27: note: when computing vector element at index '0'1193// :77:27: note: when computing vector element at index '0'
1208// :77:27: error: use of undefined value here causes illegal behavior1194// :77:27: error: use of undefined value here causes illegal behavior
...@@ -1212,9 +1198,9 @@ const std = @import("std");...@@ -1212,9 +1198,9 @@ const std = @import("std");
1212// :77:27: error: use of undefined value here causes illegal behavior1198// :77:27: error: use of undefined value here causes illegal behavior
1213// :77:27: note: when computing vector element at index '0'1199// :77:27: note: when computing vector element at index '0'
1214// :77:27: error: use of undefined value here causes illegal behavior1200// :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'
1216// :77:27: error: use of undefined value here causes illegal behavior1202// :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'
1218// :77:27: error: use of undefined value here causes illegal behavior1204// :77:27: error: use of undefined value here causes illegal behavior
1219// :77:27: note: when computing vector element at index '0'1205// :77:27: note: when computing vector element at index '0'
1220// :77:27: error: use of undefined value here causes illegal behavior1206// :77:27: error: use of undefined value here causes illegal behavior
...@@ -1224,7 +1210,9 @@ const std = @import("std");...@@ -1224,7 +1210,9 @@ const std = @import("std");
1224// :77:27: error: use of undefined value here causes illegal behavior1210// :77:27: error: use of undefined value here causes illegal behavior
1225// :77:27: note: when computing vector element at index '0'1211// :77:27: note: when computing vector element at index '0'
1226// :77:27: error: use of undefined value here causes illegal behavior1212// :77:27: error: use of undefined value here causes illegal behavior
1213// :77:27: note: when computing vector element at index '0'
1227// :77:27: error: use of undefined value here causes illegal behavior1214// :77:27: error: use of undefined value here causes illegal behavior
1215// :77:27: note: when computing vector element at index '0'
1228// :77:27: error: use of undefined value here causes illegal behavior1216// :77:27: error: use of undefined value here causes illegal behavior
1229// :77:27: note: when computing vector element at index '0'1217// :77:27: note: when computing vector element at index '0'
1230// :77:27: error: use of undefined value here causes illegal behavior1218// :77:27: error: use of undefined value here causes illegal behavior
...@@ -1234,9 +1222,9 @@ const std = @import("std");...@@ -1234,9 +1222,9 @@ const std = @import("std");
1234// :77:27: error: use of undefined value here causes illegal behavior1222// :77:27: error: use of undefined value here causes illegal behavior
1235// :77:27: note: when computing vector element at index '0'1223// :77:27: note: when computing vector element at index '0'
1236// :77:27: error: use of undefined value here causes illegal behavior1224// :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'
1238// :77:27: error: use of undefined value here causes illegal behavior1226// :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'
1240// :77:27: error: use of undefined value here causes illegal behavior1228// :77:27: error: use of undefined value here causes illegal behavior
1241// :77:27: note: when computing vector element at index '0'1229// :77:27: note: when computing vector element at index '0'
1242// :77:27: error: use of undefined value here causes illegal behavior1230// :77:27: error: use of undefined value here causes illegal behavior
...@@ -1246,7 +1234,9 @@ const std = @import("std");...@@ -1246,7 +1234,9 @@ const std = @import("std");
1246// :77:27: error: use of undefined value here causes illegal behavior1234// :77:27: error: use of undefined value here causes illegal behavior
1247// :77:27: note: when computing vector element at index '0'1235// :77:27: note: when computing vector element at index '0'
1248// :77:27: error: use of undefined value here causes illegal behavior1236// :77:27: error: use of undefined value here causes illegal behavior
1237// :77:27: note: when computing vector element at index '0'
1249// :77:27: error: use of undefined value here causes illegal behavior1238// :77:27: error: use of undefined value here causes illegal behavior
1239// :77:27: note: when computing vector element at index '0'
1250// :77:27: error: use of undefined value here causes illegal behavior1240// :77:27: error: use of undefined value here causes illegal behavior
1251// :77:27: note: when computing vector element at index '0'1241// :77:27: note: when computing vector element at index '0'
1252// :77:27: error: use of undefined value here causes illegal behavior1242// :77:27: error: use of undefined value here causes illegal behavior
...@@ -1260,35 +1250,45 @@ const std = @import("std");...@@ -1260,35 +1250,45 @@ const std = @import("std");
1260// :77:27: error: use of undefined value here causes illegal behavior1250// :77:27: error: use of undefined value here causes illegal behavior
1261// :77:27: note: when computing vector element at index '1'1251// :77:27: note: when computing vector element at index '1'
1262// :77:27: error: use of undefined value here causes illegal behavior1252// :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'
1264// :77:27: error: use of undefined value here causes illegal behavior1254// :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'
1266// :77:27: error: use of undefined value here causes illegal behavior1256// :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'
1268// :77:27: error: use of undefined value here causes illegal behavior1258// :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'
1270// :77:27: error: use of undefined value here causes illegal behavior1260// :77:27: error: use of undefined value here causes illegal behavior
1261// :77:27: note: when computing vector element at index '1'
1271// :77:27: error: use of undefined value here causes illegal behavior1262// :77:27: error: use of undefined value here causes illegal behavior
1263// :77:27: note: when computing vector element at index '1'
1272// :77:27: error: use of undefined value here causes illegal behavior1264// :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'
1274// :77:27: error: use of undefined value here causes illegal behavior1266// :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'
1276// :77:27: error: use of undefined value here causes illegal behavior1268// :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'
1278// :77:27: error: use of undefined value here causes illegal behavior1270// :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'
1280// :77:27: error: use of undefined value here causes illegal behavior1272// :77:27: error: use of undefined value here causes illegal behavior
1281// :77:27: note: when computing vector element at index '1'1273// :77:27: note: when computing vector element at index '1'
1282// :77:27: error: use of undefined value here causes illegal behavior1274// :77:27: error: use of undefined value here causes illegal behavior
1283// :77:27: note: when computing vector element at index '1'1275// :77:27: note: when computing vector element at index '1'
1284// :77:27: error: use of undefined value here causes illegal behavior1276// :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'
1286// :77:27: error: use of undefined value here causes illegal behavior1278// :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'
1288// :77:27: error: use of undefined value here causes illegal behavior1280// :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'
1290// :77:27: error: use of undefined value here causes illegal behavior1282// :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'
1292// :77:30: error: use of undefined value here causes illegal behavior1292// :77:30: error: use of undefined value here causes illegal behavior
1293// :77:30: note: when computing vector element at index '0'1293// :77:30: note: when computing vector element at index '0'
1294// :77:30: error: use of undefined value here causes illegal behavior1294// :77:30: error: use of undefined value here causes illegal behavior
...@@ -1336,50 +1336,30 @@ const std = @import("std");...@@ -1336,50 +1336,30 @@ const std = @import("std");
1336// :81:17: error: use of undefined value here causes illegal behavior1336// :81:17: error: use of undefined value here causes illegal behavior
1337// :81:17: error: use of undefined value here causes illegal behavior1337// :81:17: error: use of undefined value here causes illegal behavior
1338// :81:17: error: use of undefined value here causes illegal behavior1338// :81:17: error: use of undefined value here causes illegal behavior
1339// :81:17: note: when computing vector element at index '0'
1340// :81:17: error: use of undefined value here causes illegal behavior1339// :81:17: error: use of undefined value here causes illegal behavior
1341// :81:17: note: when computing vector element at index '0'
1342// :81:17: error: use of undefined value here causes illegal behavior1340// :81:17: error: use of undefined value here causes illegal behavior
1343// :81:17: note: when computing vector element at index '0'
1344// :81:17: error: use of undefined value here causes illegal behavior1341// :81:17: error: use of undefined value here causes illegal behavior
1345// :81:17: note: when computing vector element at index '0'
1346// :81:17: error: use of undefined value here causes illegal behavior1342// :81:17: error: use of undefined value here causes illegal behavior
1347// :81:17: note: when computing vector element at index '1'
1348// :81:17: error: use of undefined value here causes illegal behavior1343// :81:17: error: use of undefined value here causes illegal behavior
1349// :81:17: note: when computing vector element at index '1'
1350// :81:17: error: use of undefined value here causes illegal behavior1344// :81:17: error: use of undefined value here causes illegal behavior
1351// :81:17: note: when computing vector element at index '0'
1352// :81:17: error: use of undefined value here causes illegal behavior1345// :81:17: error: use of undefined value here causes illegal behavior
1353// :81:17: note: when computing vector element at index '0'
1354// :81:17: error: use of undefined value here causes illegal behavior1346// :81:17: error: use of undefined value here causes illegal behavior
1355// :81:17: note: when computing vector element at index '0'
1356// :81:17: error: use of undefined value here causes illegal behavior1347// :81:17: error: use of undefined value here causes illegal behavior
1357// :81:17: note: when computing vector element at index '0'
1358// :81:17: error: use of undefined value here causes illegal behavior1348// :81:17: error: use of undefined value here causes illegal behavior
1359// :81:17: error: use of undefined value here causes illegal behavior1349// :81:17: error: use of undefined value here causes illegal behavior
1360// :81:17: error: use of undefined value here causes illegal behavior1350// :81:17: error: use of undefined value here causes illegal behavior
1361// :81:17: note: when computing vector element at index '0'
1362// :81:17: error: use of undefined value here causes illegal behavior1351// :81:17: error: use of undefined value here causes illegal behavior
1363// :81:17: note: when computing vector element at index '0'
1364// :81:17: error: use of undefined value here causes illegal behavior1352// :81:17: error: use of undefined value here causes illegal behavior
1365// :81:17: note: when computing vector element at index '0'
1366// :81:17: error: use of undefined value here causes illegal behavior1353// :81:17: error: use of undefined value here causes illegal behavior
1367// :81:17: note: when computing vector element at index '0'
1368// :81:17: error: use of undefined value here causes illegal behavior1354// :81:17: error: use of undefined value here causes illegal behavior
1369// :81:17: note: when computing vector element at index '1'
1370// :81:17: error: use of undefined value here causes illegal behavior1355// :81:17: error: use of undefined value here causes illegal behavior
1371// :81:17: note: when computing vector element at index '1'
1372// :81:17: error: use of undefined value here causes illegal behavior1356// :81:17: error: use of undefined value here causes illegal behavior
1373// :81:17: note: when computing vector element at index '0'
1374// :81:17: error: use of undefined value here causes illegal behavior1357// :81:17: error: use of undefined value here causes illegal behavior
1375// :81:17: note: when computing vector element at index '0'
1376// :81:17: error: use of undefined value here causes illegal behavior1358// :81:17: error: use of undefined value here causes illegal behavior
1377// :81:17: note: when computing vector element at index '0'1359// :81:17: note: when computing vector element at index '0'
1378// :81:17: error: use of undefined value here causes illegal behavior1360// :81:17: error: use of undefined value here causes illegal behavior
1379// :81:17: note: when computing vector element at index '0'1361// :81:17: note: when computing vector element at index '0'
1380// :81:17: error: use of undefined value here causes illegal behavior1362// :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
1383// :81:17: note: when computing vector element at index '0'1363// :81:17: note: when computing vector element at index '0'
1384// :81:17: error: use of undefined value here causes illegal behavior1364// :81:17: error: use of undefined value here causes illegal behavior
1385// :81:17: note: when computing vector element at index '0'1365// :81:17: note: when computing vector element at index '0'
...@@ -1388,10 +1368,6 @@ const std = @import("std");...@@ -1388,10 +1368,6 @@ const std = @import("std");
1388// :81:17: error: use of undefined value here causes illegal behavior1368// :81:17: error: use of undefined value here causes illegal behavior
1389// :81:17: note: when computing vector element at index '0'1369// :81:17: note: when computing vector element at index '0'
1390// :81:17: error: use of undefined value here causes illegal behavior1370// :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
1395// :81:17: note: when computing vector element at index '0'1371// :81:17: note: when computing vector element at index '0'
1396// :81:17: error: use of undefined value here causes illegal behavior1372// :81:17: error: use of undefined value here causes illegal behavior
1397// :81:17: note: when computing vector element at index '0'1373// :81:17: note: when computing vector element at index '0'
...@@ -1400,7 +1376,9 @@ const std = @import("std");...@@ -1400,7 +1376,9 @@ const std = @import("std");
1400// :81:17: error: use of undefined value here causes illegal behavior1376// :81:17: error: use of undefined value here causes illegal behavior
1401// :81:17: note: when computing vector element at index '0'1377// :81:17: note: when computing vector element at index '0'
1402// :81:17: error: use of undefined value here causes illegal behavior1378// :81:17: error: use of undefined value here causes illegal behavior
1379// :81:17: note: when computing vector element at index '0'
1403// :81:17: error: use of undefined value here causes illegal behavior1380// :81:17: error: use of undefined value here causes illegal behavior
1381// :81:17: note: when computing vector element at index '0'
1404// :81:17: error: use of undefined value here causes illegal behavior1382// :81:17: error: use of undefined value here causes illegal behavior
1405// :81:17: note: when computing vector element at index '0'1383// :81:17: note: when computing vector element at index '0'
1406// :81:17: error: use of undefined value here causes illegal behavior1384// :81:17: error: use of undefined value here causes illegal behavior
...@@ -1410,9 +1388,9 @@ const std = @import("std");...@@ -1410,9 +1388,9 @@ const std = @import("std");
1410// :81:17: error: use of undefined value here causes illegal behavior1388// :81:17: error: use of undefined value here causes illegal behavior
1411// :81:17: note: when computing vector element at index '0'1389// :81:17: note: when computing vector element at index '0'
1412// :81:17: error: use of undefined value here causes illegal behavior1390// :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'
1414// :81:17: error: use of undefined value here causes illegal behavior1392// :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'
1416// :81:17: error: use of undefined value here causes illegal behavior1394// :81:17: error: use of undefined value here causes illegal behavior
1417// :81:17: note: when computing vector element at index '0'1395// :81:17: note: when computing vector element at index '0'
1418// :81:17: error: use of undefined value here causes illegal behavior1396// :81:17: error: use of undefined value here causes illegal behavior
...@@ -1422,7 +1400,9 @@ const std = @import("std");...@@ -1422,7 +1400,9 @@ const std = @import("std");
1422// :81:17: error: use of undefined value here causes illegal behavior1400// :81:17: error: use of undefined value here causes illegal behavior
1423// :81:17: note: when computing vector element at index '0'1401// :81:17: note: when computing vector element at index '0'
1424// :81:17: error: use of undefined value here causes illegal behavior1402// :81:17: error: use of undefined value here causes illegal behavior
1403// :81:17: note: when computing vector element at index '0'
1425// :81:17: error: use of undefined value here causes illegal behavior1404// :81:17: error: use of undefined value here causes illegal behavior
1405// :81:17: note: when computing vector element at index '0'
1426// :81:17: error: use of undefined value here causes illegal behavior1406// :81:17: error: use of undefined value here causes illegal behavior
1427// :81:17: note: when computing vector element at index '0'1407// :81:17: note: when computing vector element at index '0'
1428// :81:17: error: use of undefined value here causes illegal behavior1408// :81:17: error: use of undefined value here causes illegal behavior
...@@ -1432,9 +1412,9 @@ const std = @import("std");...@@ -1432,9 +1412,9 @@ const std = @import("std");
1432// :81:17: error: use of undefined value here causes illegal behavior1412// :81:17: error: use of undefined value here causes illegal behavior
1433// :81:17: note: when computing vector element at index '0'1413// :81:17: note: when computing vector element at index '0'
1434// :81:17: error: use of undefined value here causes illegal behavior1414// :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'
1436// :81:17: error: use of undefined value here causes illegal behavior1416// :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'
1438// :81:17: error: use of undefined value here causes illegal behavior1418// :81:17: error: use of undefined value here causes illegal behavior
1439// :81:17: note: when computing vector element at index '0'1419// :81:17: note: when computing vector element at index '0'
1440// :81:17: error: use of undefined value here causes illegal behavior1420// :81:17: error: use of undefined value here causes illegal behavior
...@@ -1444,7 +1424,9 @@ const std = @import("std");...@@ -1444,7 +1424,9 @@ const std = @import("std");
1444// :81:17: error: use of undefined value here causes illegal behavior1424// :81:17: error: use of undefined value here causes illegal behavior
1445// :81:17: note: when computing vector element at index '0'1425// :81:17: note: when computing vector element at index '0'
1446// :81:17: error: use of undefined value here causes illegal behavior1426// :81:17: error: use of undefined value here causes illegal behavior
1427// :81:17: note: when computing vector element at index '0'
1447// :81:17: error: use of undefined value here causes illegal behavior1428// :81:17: error: use of undefined value here causes illegal behavior
1429// :81:17: note: when computing vector element at index '0'
1448// :81:17: error: use of undefined value here causes illegal behavior1430// :81:17: error: use of undefined value here causes illegal behavior
1449// :81:17: note: when computing vector element at index '0'1431// :81:17: note: when computing vector element at index '0'
1450// :81:17: error: use of undefined value here causes illegal behavior1432// :81:17: error: use of undefined value here causes illegal behavior
...@@ -1454,9 +1436,9 @@ const std = @import("std");...@@ -1454,9 +1436,9 @@ const std = @import("std");
1454// :81:17: error: use of undefined value here causes illegal behavior1436// :81:17: error: use of undefined value here causes illegal behavior
1455// :81:17: note: when computing vector element at index '0'1437// :81:17: note: when computing vector element at index '0'
1456// :81:17: error: use of undefined value here causes illegal behavior1438// :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'
1458// :81:17: error: use of undefined value here causes illegal behavior1440// :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'
1460// :81:17: error: use of undefined value here causes illegal behavior1442// :81:17: error: use of undefined value here causes illegal behavior
1461// :81:17: note: when computing vector element at index '0'1443// :81:17: note: when computing vector element at index '0'
1462// :81:17: error: use of undefined value here causes illegal behavior1444// :81:17: error: use of undefined value here causes illegal behavior
...@@ -1466,7 +1448,9 @@ const std = @import("std");...@@ -1466,7 +1448,9 @@ const std = @import("std");
1466// :81:17: error: use of undefined value here causes illegal behavior1448// :81:17: error: use of undefined value here causes illegal behavior
1467// :81:17: note: when computing vector element at index '0'1449// :81:17: note: when computing vector element at index '0'
1468// :81:17: error: use of undefined value here causes illegal behavior1450// :81:17: error: use of undefined value here causes illegal behavior
1451// :81:17: note: when computing vector element at index '0'
1469// :81:17: error: use of undefined value here causes illegal behavior1452// :81:17: error: use of undefined value here causes illegal behavior
1453// :81:17: note: when computing vector element at index '0'
1470// :81:17: error: use of undefined value here causes illegal behavior1454// :81:17: error: use of undefined value here causes illegal behavior
1471// :81:17: note: when computing vector element at index '0'1455// :81:17: note: when computing vector element at index '0'
1472// :81:17: error: use of undefined value here causes illegal behavior1456// :81:17: error: use of undefined value here causes illegal behavior
...@@ -1476,9 +1460,9 @@ const std = @import("std");...@@ -1476,9 +1460,9 @@ const std = @import("std");
1476// :81:17: error: use of undefined value here causes illegal behavior1460// :81:17: error: use of undefined value here causes illegal behavior
1477// :81:17: note: when computing vector element at index '0'1461// :81:17: note: when computing vector element at index '0'
1478// :81:17: error: use of undefined value here causes illegal behavior1462// :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'
1480// :81:17: error: use of undefined value here causes illegal behavior1464// :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'
1482// :81:17: error: use of undefined value here causes illegal behavior1466// :81:17: error: use of undefined value here causes illegal behavior
1483// :81:17: note: when computing vector element at index '0'1467// :81:17: note: when computing vector element at index '0'
1484// :81:17: error: use of undefined value here causes illegal behavior1468// :81:17: error: use of undefined value here causes illegal behavior
...@@ -1488,7 +1472,9 @@ const std = @import("std");...@@ -1488,7 +1472,9 @@ const std = @import("std");
1488// :81:17: error: use of undefined value here causes illegal behavior1472// :81:17: error: use of undefined value here causes illegal behavior
1489// :81:17: note: when computing vector element at index '0'1473// :81:17: note: when computing vector element at index '0'
1490// :81:17: error: use of undefined value here causes illegal behavior1474// :81:17: error: use of undefined value here causes illegal behavior
1475// :81:17: note: when computing vector element at index '0'
1491// :81:17: error: use of undefined value here causes illegal behavior1476// :81:17: error: use of undefined value here causes illegal behavior
1477// :81:17: note: when computing vector element at index '0'
1492// :81:17: error: use of undefined value here causes illegal behavior1478// :81:17: error: use of undefined value here causes illegal behavior
1493// :81:17: note: when computing vector element at index '0'1479// :81:17: note: when computing vector element at index '0'
1494// :81:17: error: use of undefined value here causes illegal behavior1480// :81:17: error: use of undefined value here causes illegal behavior
...@@ -1498,9 +1484,9 @@ const std = @import("std");...@@ -1498,9 +1484,9 @@ const std = @import("std");
1498// :81:17: error: use of undefined value here causes illegal behavior1484// :81:17: error: use of undefined value here causes illegal behavior
1499// :81:17: note: when computing vector element at index '0'1485// :81:17: note: when computing vector element at index '0'
1500// :81:17: error: use of undefined value here causes illegal behavior1486// :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'
1502// :81:17: error: use of undefined value here causes illegal behavior1488// :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'
1504// :81:17: error: use of undefined value here causes illegal behavior1490// :81:17: error: use of undefined value here causes illegal behavior
1505// :81:17: note: when computing vector element at index '0'1491// :81:17: note: when computing vector element at index '0'
1506// :81:17: error: use of undefined value here causes illegal behavior1492// :81:17: error: use of undefined value here causes illegal behavior
...@@ -1510,7 +1496,9 @@ const std = @import("std");...@@ -1510,7 +1496,9 @@ const std = @import("std");
1510// :81:17: error: use of undefined value here causes illegal behavior1496// :81:17: error: use of undefined value here causes illegal behavior
1511// :81:17: note: when computing vector element at index '0'1497// :81:17: note: when computing vector element at index '0'
1512// :81:17: error: use of undefined value here causes illegal behavior1498// :81:17: error: use of undefined value here causes illegal behavior
1499// :81:17: note: when computing vector element at index '0'
1513// :81:17: error: use of undefined value here causes illegal behavior1500// :81:17: error: use of undefined value here causes illegal behavior
1501// :81:17: note: when computing vector element at index '0'
1514// :81:17: error: use of undefined value here causes illegal behavior1502// :81:17: error: use of undefined value here causes illegal behavior
1515// :81:17: note: when computing vector element at index '0'1503// :81:17: note: when computing vector element at index '0'
1516// :81:17: error: use of undefined value here causes illegal behavior1504// :81:17: error: use of undefined value here causes illegal behavior
...@@ -1520,9 +1508,9 @@ const std = @import("std");...@@ -1520,9 +1508,9 @@ const std = @import("std");
1520// :81:17: error: use of undefined value here causes illegal behavior1508// :81:17: error: use of undefined value here causes illegal behavior
1521// :81:17: note: when computing vector element at index '0'1509// :81:17: note: when computing vector element at index '0'
1522// :81:17: error: use of undefined value here causes illegal behavior1510// :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'
1524// :81:17: error: use of undefined value here causes illegal behavior1512// :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'
1526// :81:17: error: use of undefined value here causes illegal behavior1514// :81:17: error: use of undefined value here causes illegal behavior
1527// :81:17: note: when computing vector element at index '0'1515// :81:17: note: when computing vector element at index '0'
1528// :81:17: error: use of undefined value here causes illegal behavior1516// :81:17: error: use of undefined value here causes illegal behavior
...@@ -1532,7 +1520,9 @@ const std = @import("std");...@@ -1532,7 +1520,9 @@ const std = @import("std");
1532// :81:17: error: use of undefined value here causes illegal behavior1520// :81:17: error: use of undefined value here causes illegal behavior
1533// :81:17: note: when computing vector element at index '0'1521// :81:17: note: when computing vector element at index '0'
1534// :81:17: error: use of undefined value here causes illegal behavior1522// :81:17: error: use of undefined value here causes illegal behavior
1523// :81:17: note: when computing vector element at index '0'
1535// :81:17: error: use of undefined value here causes illegal behavior1524// :81:17: error: use of undefined value here causes illegal behavior
1525// :81:17: note: when computing vector element at index '0'
1536// :81:17: error: use of undefined value here causes illegal behavior1526// :81:17: error: use of undefined value here causes illegal behavior
1537// :81:17: note: when computing vector element at index '0'1527// :81:17: note: when computing vector element at index '0'
1538// :81:17: error: use of undefined value here causes illegal behavior1528// :81:17: error: use of undefined value here causes illegal behavior
...@@ -1546,35 +1536,45 @@ const std = @import("std");...@@ -1546,35 +1536,45 @@ const std = @import("std");
1546// :81:17: error: use of undefined value here causes illegal behavior1536// :81:17: error: use of undefined value here causes illegal behavior
1547// :81:17: note: when computing vector element at index '1'1537// :81:17: note: when computing vector element at index '1'
1548// :81:17: error: use of undefined value here causes illegal behavior1538// :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'
1550// :81:17: error: use of undefined value here causes illegal behavior1540// :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'
1552// :81:17: error: use of undefined value here causes illegal behavior1542// :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'
1554// :81:17: error: use of undefined value here causes illegal behavior1544// :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'
1556// :81:17: error: use of undefined value here causes illegal behavior1546// :81:17: error: use of undefined value here causes illegal behavior
1547// :81:17: note: when computing vector element at index '1'
1557// :81:17: error: use of undefined value here causes illegal behavior1548// :81:17: error: use of undefined value here causes illegal behavior
1549// :81:17: note: when computing vector element at index '1'
1558// :81:17: error: use of undefined value here causes illegal behavior1550// :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'
1560// :81:17: error: use of undefined value here causes illegal behavior1552// :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'
1562// :81:17: error: use of undefined value here causes illegal behavior1554// :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'
1564// :81:17: error: use of undefined value here causes illegal behavior1556// :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'
1566// :81:17: error: use of undefined value here causes illegal behavior1558// :81:17: error: use of undefined value here causes illegal behavior
1567// :81:17: note: when computing vector element at index '1'1559// :81:17: note: when computing vector element at index '1'
1568// :81:17: error: use of undefined value here causes illegal behavior1560// :81:17: error: use of undefined value here causes illegal behavior
1569// :81:17: note: when computing vector element at index '1'1561// :81:17: note: when computing vector element at index '1'
1570// :81:17: error: use of undefined value here causes illegal behavior1562// :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'
1572// :81:17: error: use of undefined value here causes illegal behavior1564// :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'
1574// :81:17: error: use of undefined value here causes illegal behavior1566// :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'
1576// :81:17: error: use of undefined value here causes illegal behavior1568// :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'
1578// :81:21: error: use of undefined value here causes illegal behavior1578// :81:21: error: use of undefined value here causes illegal behavior
1579// :81:21: note: when computing vector element at index '0'1579// :81:21: note: when computing vector element at index '0'
1580// :81:21: error: use of undefined value here causes illegal behavior1580// :81:21: error: use of undefined value here causes illegal behavior
...@@ -1622,39 +1622,25 @@ const std = @import("std");...@@ -1622,39 +1622,25 @@ const std = @import("std");
1622// :85:22: error: use of undefined value here causes illegal behavior1622// :85:22: error: use of undefined value here causes illegal behavior
1623// :85:22: error: use of undefined value here causes illegal behavior1623// :85:22: error: use of undefined value here causes illegal behavior
1624// :85:22: error: use of undefined value here causes illegal behavior1624// :85:22: error: use of undefined value here causes illegal behavior
1625// :85:22: note: when computing vector element at index '0'
1626// :85:22: error: use of undefined value here causes illegal behavior1625// :85:22: error: use of undefined value here causes illegal behavior
1627// :85:22: note: when computing vector element at index '0'
1628// :85:22: error: use of undefined value here causes illegal behavior1626// :85:22: error: use of undefined value here causes illegal behavior
1629// :85:22: note: when computing vector element at index '0'
1630// :85:22: error: use of undefined value here causes illegal behavior1627// :85:22: error: use of undefined value here causes illegal behavior
1631// :85:22: note: when computing vector element at index '0'
1632// :85:22: error: use of undefined value here causes illegal behavior1628// :85:22: error: use of undefined value here causes illegal behavior
1633// :85:22: note: when computing vector element at index '1'
1634// :85:22: error: use of undefined value here causes illegal behavior1629// :85:22: error: use of undefined value here causes illegal behavior
1635// :85:22: note: when computing vector element at index '1'
1636// :85:22: error: use of undefined value here causes illegal behavior1630// :85:22: error: use of undefined value here causes illegal behavior
1637// :85:22: note: when computing vector element at index '0'
1638// :85:22: error: use of undefined value here causes illegal behavior1631// :85:22: error: use of undefined value here causes illegal behavior
1639// :85:22: note: when computing vector element at index '0'
1640// :85:22: error: use of undefined value here causes illegal behavior1632// :85:22: error: use of undefined value here causes illegal behavior
1641// :85:22: note: when computing vector element at index '0'
1642// :85:22: error: use of undefined value here causes illegal behavior1633// :85:22: error: use of undefined value here causes illegal behavior
1643// :85:22: note: when computing vector element at index '0'
1644// :85:22: error: use of undefined value here causes illegal behavior1634// :85:22: error: use of undefined value here causes illegal behavior
1645// :85:22: error: use of undefined value here causes illegal behavior1635// :85:22: error: use of undefined value here causes illegal behavior
1646// :85:22: error: use of undefined value here causes illegal behavior1636// :85:22: error: use of undefined value here causes illegal behavior
1647// :85:22: note: when computing vector element at index '0'
1648// :85:22: error: use of undefined value here causes illegal behavior1637// :85:22: error: use of undefined value here causes illegal behavior
1649// :85:22: note: when computing vector element at index '0'
1650// :85:22: error: use of undefined value here causes illegal behavior1638// :85:22: error: use of undefined value here causes illegal behavior
1651// :85:22: note: when computing vector element at index '0'
1652// :85:22: error: use of undefined value here causes illegal behavior1639// :85:22: error: use of undefined value here causes illegal behavior
1653// :85:22: note: when computing vector element at index '0'
1654// :85:22: error: use of undefined value here causes illegal behavior1640// :85:22: error: use of undefined value here causes illegal behavior
1655// :85:22: note: when computing vector element at index '1'
1656// :85:22: error: use of undefined value here causes illegal behavior1641// :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
1658// :85:22: error: use of undefined value here causes illegal behavior1644// :85:22: error: use of undefined value here causes illegal behavior
1659// :85:22: note: when computing vector element at index '0'1645// :85:22: note: when computing vector element at index '0'
1660// :85:22: error: use of undefined value here causes illegal behavior1646// :85:22: error: use of undefined value here causes illegal behavior
...@@ -1664,7 +1650,9 @@ const std = @import("std");...@@ -1664,7 +1650,9 @@ const std = @import("std");
1664// :85:22: error: use of undefined value here causes illegal behavior1650// :85:22: error: use of undefined value here causes illegal behavior
1665// :85:22: note: when computing vector element at index '0'1651// :85:22: note: when computing vector element at index '0'
1666// :85:22: error: use of undefined value here causes illegal behavior1652// :85:22: error: use of undefined value here causes illegal behavior
1653// :85:22: note: when computing vector element at index '0'
1667// :85:22: error: use of undefined value here causes illegal behavior1654// :85:22: error: use of undefined value here causes illegal behavior
1655// :85:22: note: when computing vector element at index '0'
1668// :85:22: error: use of undefined value here causes illegal behavior1656// :85:22: error: use of undefined value here causes illegal behavior
1669// :85:22: note: when computing vector element at index '0'1657// :85:22: note: when computing vector element at index '0'
1670// :85:22: error: use of undefined value here causes illegal behavior1658// :85:22: error: use of undefined value here causes illegal behavior
...@@ -1674,9 +1662,9 @@ const std = @import("std");...@@ -1674,9 +1662,9 @@ const std = @import("std");
1674// :85:22: error: use of undefined value here causes illegal behavior1662// :85:22: error: use of undefined value here causes illegal behavior
1675// :85:22: note: when computing vector element at index '0'1663// :85:22: note: when computing vector element at index '0'
1676// :85:22: error: use of undefined value here causes illegal behavior1664// :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'
1678// :85:22: error: use of undefined value here causes illegal behavior1666// :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'
1680// :85:22: error: use of undefined value here causes illegal behavior1668// :85:22: error: use of undefined value here causes illegal behavior
1681// :85:22: note: when computing vector element at index '0'1669// :85:22: note: when computing vector element at index '0'
1682// :85:22: error: use of undefined value here causes illegal behavior1670// :85:22: error: use of undefined value here causes illegal behavior
...@@ -1686,7 +1674,9 @@ const std = @import("std");...@@ -1686,7 +1674,9 @@ const std = @import("std");
1686// :85:22: error: use of undefined value here causes illegal behavior1674// :85:22: error: use of undefined value here causes illegal behavior
1687// :85:22: note: when computing vector element at index '0'1675// :85:22: note: when computing vector element at index '0'
1688// :85:22: error: use of undefined value here causes illegal behavior1676// :85:22: error: use of undefined value here causes illegal behavior
1677// :85:22: note: when computing vector element at index '0'
1689// :85:22: error: use of undefined value here causes illegal behavior1678// :85:22: error: use of undefined value here causes illegal behavior
1679// :85:22: note: when computing vector element at index '0'
1690// :85:22: error: use of undefined value here causes illegal behavior1680// :85:22: error: use of undefined value here causes illegal behavior
1691// :85:22: note: when computing vector element at index '0'1681// :85:22: note: when computing vector element at index '0'
1692// :85:22: error: use of undefined value here causes illegal behavior1682// :85:22: error: use of undefined value here causes illegal behavior
...@@ -1696,9 +1686,9 @@ const std = @import("std");...@@ -1696,9 +1686,9 @@ const std = @import("std");
1696// :85:22: error: use of undefined value here causes illegal behavior1686// :85:22: error: use of undefined value here causes illegal behavior
1697// :85:22: note: when computing vector element at index '0'1687// :85:22: note: when computing vector element at index '0'
1698// :85:22: error: use of undefined value here causes illegal behavior1688// :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'
1700// :85:22: error: use of undefined value here causes illegal behavior1690// :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'
1702// :85:22: error: use of undefined value here causes illegal behavior1692// :85:22: error: use of undefined value here causes illegal behavior
1703// :85:22: note: when computing vector element at index '0'1693// :85:22: note: when computing vector element at index '0'
1704// :85:22: error: use of undefined value here causes illegal behavior1694// :85:22: error: use of undefined value here causes illegal behavior
...@@ -1708,7 +1698,9 @@ const std = @import("std");...@@ -1708,7 +1698,9 @@ const std = @import("std");
1708// :85:22: error: use of undefined value here causes illegal behavior1698// :85:22: error: use of undefined value here causes illegal behavior
1709// :85:22: note: when computing vector element at index '0'1699// :85:22: note: when computing vector element at index '0'
1710// :85:22: error: use of undefined value here causes illegal behavior1700// :85:22: error: use of undefined value here causes illegal behavior
1701// :85:22: note: when computing vector element at index '0'
1711// :85:22: error: use of undefined value here causes illegal behavior1702// :85:22: error: use of undefined value here causes illegal behavior
1703// :85:22: note: when computing vector element at index '0'
1712// :85:22: error: use of undefined value here causes illegal behavior1704// :85:22: error: use of undefined value here causes illegal behavior
1713// :85:22: note: when computing vector element at index '0'1705// :85:22: note: when computing vector element at index '0'
1714// :85:22: error: use of undefined value here causes illegal behavior1706// :85:22: error: use of undefined value here causes illegal behavior
...@@ -1718,10 +1710,6 @@ const std = @import("std");...@@ -1718,10 +1710,6 @@ const std = @import("std");
1718// :85:22: error: use of undefined value here causes illegal behavior1710// :85:22: error: use of undefined value here causes illegal behavior
1719// :85:22: note: when computing vector element at index '0'1711// :85:22: note: when computing vector element at index '0'
1720// :85:22: error: use of undefined value here causes illegal behavior1712// :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
1725// :85:22: note: when computing vector element at index '0'1713// :85:22: note: when computing vector element at index '0'
1726// :85:22: error: use of undefined value here causes illegal behavior1714// :85:22: error: use of undefined value here causes illegal behavior
1727// :85:22: note: when computing vector element at index '0'1715// :85:22: note: when computing vector element at index '0'
...@@ -1730,8 +1718,6 @@ const std = @import("std");...@@ -1730,8 +1718,6 @@ const std = @import("std");
1730// :85:22: error: use of undefined value here causes illegal behavior1718// :85:22: error: use of undefined value here causes illegal behavior
1731// :85:22: note: when computing vector element at index '0'1719// :85:22: note: when computing vector element at index '0'
1732// :85:22: error: use of undefined value here causes illegal behavior1720// :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
1735// :85:22: note: when computing vector element at index '0'1721// :85:22: note: when computing vector element at index '0'
1736// :85:22: error: use of undefined value here causes illegal behavior1722// :85:22: error: use of undefined value here causes illegal behavior
1737// :85:22: note: when computing vector element at index '0'1723// :85:22: note: when computing vector element at index '0'
...@@ -1740,10 +1726,6 @@ const std = @import("std");...@@ -1740,10 +1726,6 @@ const std = @import("std");
1740// :85:22: error: use of undefined value here causes illegal behavior1726// :85:22: error: use of undefined value here causes illegal behavior
1741// :85:22: note: when computing vector element at index '0'1727// :85:22: note: when computing vector element at index '0'
1742// :85:22: error: use of undefined value here causes illegal behavior1728// :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
1747// :85:22: note: when computing vector element at index '0'1729// :85:22: note: when computing vector element at index '0'
1748// :85:22: error: use of undefined value here causes illegal behavior1730// :85:22: error: use of undefined value here causes illegal behavior
1749// :85:22: note: when computing vector element at index '0'1731// :85:22: note: when computing vector element at index '0'
...@@ -1752,7 +1734,9 @@ const std = @import("std");...@@ -1752,7 +1734,9 @@ const std = @import("std");
1752// :85:22: error: use of undefined value here causes illegal behavior1734// :85:22: error: use of undefined value here causes illegal behavior
1753// :85:22: note: when computing vector element at index '0'1735// :85:22: note: when computing vector element at index '0'
1754// :85:22: error: use of undefined value here causes illegal behavior1736// :85:22: error: use of undefined value here causes illegal behavior
1737// :85:22: note: when computing vector element at index '0'
1755// :85:22: error: use of undefined value here causes illegal behavior1738// :85:22: error: use of undefined value here causes illegal behavior
1739// :85:22: note: when computing vector element at index '0'
1756// :85:22: error: use of undefined value here causes illegal behavior1740// :85:22: error: use of undefined value here causes illegal behavior
1757// :85:22: note: when computing vector element at index '0'1741// :85:22: note: when computing vector element at index '0'
1758// :85:22: error: use of undefined value here causes illegal behavior1742// :85:22: error: use of undefined value here causes illegal behavior
...@@ -1762,9 +1746,9 @@ const std = @import("std");...@@ -1762,9 +1746,9 @@ const std = @import("std");
1762// :85:22: error: use of undefined value here causes illegal behavior1746// :85:22: error: use of undefined value here causes illegal behavior
1763// :85:22: note: when computing vector element at index '0'1747// :85:22: note: when computing vector element at index '0'
1764// :85:22: error: use of undefined value here causes illegal behavior1748// :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'
1766// :85:22: error: use of undefined value here causes illegal behavior1750// :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'
1768// :85:22: error: use of undefined value here causes illegal behavior1752// :85:22: error: use of undefined value here causes illegal behavior
1769// :85:22: note: when computing vector element at index '0'1753// :85:22: note: when computing vector element at index '0'
1770// :85:22: error: use of undefined value here causes illegal behavior1754// :85:22: error: use of undefined value here causes illegal behavior
...@@ -1774,7 +1758,9 @@ const std = @import("std");...@@ -1774,7 +1758,9 @@ const std = @import("std");
1774// :85:22: error: use of undefined value here causes illegal behavior1758// :85:22: error: use of undefined value here causes illegal behavior
1775// :85:22: note: when computing vector element at index '0'1759// :85:22: note: when computing vector element at index '0'
1776// :85:22: error: use of undefined value here causes illegal behavior1760// :85:22: error: use of undefined value here causes illegal behavior
1761// :85:22: note: when computing vector element at index '0'
1777// :85:22: error: use of undefined value here causes illegal behavior1762// :85:22: error: use of undefined value here causes illegal behavior
1763// :85:22: note: when computing vector element at index '0'
1778// :85:22: error: use of undefined value here causes illegal behavior1764// :85:22: error: use of undefined value here causes illegal behavior
1779// :85:22: note: when computing vector element at index '0'1765// :85:22: note: when computing vector element at index '0'
1780// :85:22: error: use of undefined value here causes illegal behavior1766// :85:22: error: use of undefined value here causes illegal behavior
...@@ -1784,9 +1770,9 @@ const std = @import("std");...@@ -1784,9 +1770,9 @@ const std = @import("std");
1784// :85:22: error: use of undefined value here causes illegal behavior1770// :85:22: error: use of undefined value here causes illegal behavior
1785// :85:22: note: when computing vector element at index '0'1771// :85:22: note: when computing vector element at index '0'
1786// :85:22: error: use of undefined value here causes illegal behavior1772// :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'
1788// :85:22: error: use of undefined value here causes illegal behavior1774// :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'
1790// :85:22: error: use of undefined value here causes illegal behavior1776// :85:22: error: use of undefined value here causes illegal behavior
1791// :85:22: note: when computing vector element at index '0'1777// :85:22: note: when computing vector element at index '0'
1792// :85:22: error: use of undefined value here causes illegal behavior1778// :85:22: error: use of undefined value here causes illegal behavior
...@@ -1796,7 +1782,9 @@ const std = @import("std");...@@ -1796,7 +1782,9 @@ const std = @import("std");
1796// :85:22: error: use of undefined value here causes illegal behavior1782// :85:22: error: use of undefined value here causes illegal behavior
1797// :85:22: note: when computing vector element at index '0'1783// :85:22: note: when computing vector element at index '0'
1798// :85:22: error: use of undefined value here causes illegal behavior1784// :85:22: error: use of undefined value here causes illegal behavior
1785// :85:22: note: when computing vector element at index '0'
1799// :85:22: error: use of undefined value here causes illegal behavior1786// :85:22: error: use of undefined value here causes illegal behavior
1787// :85:22: note: when computing vector element at index '0'
1800// :85:22: error: use of undefined value here causes illegal behavior1788// :85:22: error: use of undefined value here causes illegal behavior
1801// :85:22: note: when computing vector element at index '0'1789// :85:22: note: when computing vector element at index '0'
1802// :85:22: error: use of undefined value here causes illegal behavior1790// :85:22: error: use of undefined value here causes illegal behavior
...@@ -1806,9 +1794,9 @@ const std = @import("std");...@@ -1806,9 +1794,9 @@ const std = @import("std");
1806// :85:22: error: use of undefined value here causes illegal behavior1794// :85:22: error: use of undefined value here causes illegal behavior
1807// :85:22: note: when computing vector element at index '0'1795// :85:22: note: when computing vector element at index '0'
1808// :85:22: error: use of undefined value here causes illegal behavior1796// :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'
1810// :85:22: error: use of undefined value here causes illegal behavior1798// :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'
1812// :85:22: error: use of undefined value here causes illegal behavior1800// :85:22: error: use of undefined value here causes illegal behavior
1813// :85:22: note: when computing vector element at index '0'1801// :85:22: note: when computing vector element at index '0'
1814// :85:22: error: use of undefined value here causes illegal behavior1802// :85:22: error: use of undefined value here causes illegal behavior
...@@ -1818,7 +1806,9 @@ const std = @import("std");...@@ -1818,7 +1806,9 @@ const std = @import("std");
1818// :85:22: error: use of undefined value here causes illegal behavior1806// :85:22: error: use of undefined value here causes illegal behavior
1819// :85:22: note: when computing vector element at index '0'1807// :85:22: note: when computing vector element at index '0'
1820// :85:22: error: use of undefined value here causes illegal behavior1808// :85:22: error: use of undefined value here causes illegal behavior
1809// :85:22: note: when computing vector element at index '0'
1821// :85:22: error: use of undefined value here causes illegal behavior1810// :85:22: error: use of undefined value here causes illegal behavior
1811// :85:22: note: when computing vector element at index '0'
1822// :85:22: error: use of undefined value here causes illegal behavior1812// :85:22: error: use of undefined value here causes illegal behavior
1823// :85:22: note: when computing vector element at index '0'1813// :85:22: note: when computing vector element at index '0'
1824// :85:22: error: use of undefined value here causes illegal behavior1814// :85:22: error: use of undefined value here causes illegal behavior
...@@ -1832,35 +1822,45 @@ const std = @import("std");...@@ -1832,35 +1822,45 @@ const std = @import("std");
1832// :85:22: error: use of undefined value here causes illegal behavior1822// :85:22: error: use of undefined value here causes illegal behavior
1833// :85:22: note: when computing vector element at index '1'1823// :85:22: note: when computing vector element at index '1'
1834// :85:22: error: use of undefined value here causes illegal behavior1824// :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'
1836// :85:22: error: use of undefined value here causes illegal behavior1826// :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'
1838// :85:22: error: use of undefined value here causes illegal behavior1828// :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'
1840// :85:22: error: use of undefined value here causes illegal behavior1830// :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'
1842// :85:22: error: use of undefined value here causes illegal behavior1832// :85:22: error: use of undefined value here causes illegal behavior
1833// :85:22: note: when computing vector element at index '1'
1843// :85:22: error: use of undefined value here causes illegal behavior1834// :85:22: error: use of undefined value here causes illegal behavior
1835// :85:22: note: when computing vector element at index '1'
1844// :85:22: error: use of undefined value here causes illegal behavior1836// :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'
1846// :85:22: error: use of undefined value here causes illegal behavior1838// :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'
1848// :85:22: error: use of undefined value here causes illegal behavior1840// :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'
1850// :85:22: error: use of undefined value here causes illegal behavior1842// :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'
1852// :85:22: error: use of undefined value here causes illegal behavior1844// :85:22: error: use of undefined value here causes illegal behavior
1853// :85:22: note: when computing vector element at index '1'1845// :85:22: note: when computing vector element at index '1'
1854// :85:22: error: use of undefined value here causes illegal behavior1846// :85:22: error: use of undefined value here causes illegal behavior
1855// :85:22: note: when computing vector element at index '1'1847// :85:22: note: when computing vector element at index '1'
1856// :85:22: error: use of undefined value here causes illegal behavior1848// :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'
1858// :85:22: error: use of undefined value here causes illegal behavior1850// :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'
1860// :85:22: error: use of undefined value here causes illegal behavior1852// :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'
1862// :85:22: error: use of undefined value here causes illegal behavior1854// :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'
1864// :85:25: error: use of undefined value here causes illegal behavior1864// :85:25: error: use of undefined value here causes illegal behavior
1865// :85:25: note: when computing vector element at index '0'1865// :85:25: note: when computing vector element at index '0'
1866// :85:25: error: use of undefined value here causes illegal behavior1866// :85:25: error: use of undefined value here causes illegal behavior
...@@ -1908,50 +1908,30 @@ const std = @import("std");...@@ -1908,50 +1908,30 @@ const std = @import("std");
1908// :89:22: error: use of undefined value here causes illegal behavior1908// :89:22: error: use of undefined value here causes illegal behavior
1909// :89:22: error: use of undefined value here causes illegal behavior1909// :89:22: error: use of undefined value here causes illegal behavior
1910// :89:22: error: use of undefined value here causes illegal behavior1910// :89:22: error: use of undefined value here causes illegal behavior
1911// :89:22: note: when computing vector element at index '0'
1912// :89:22: error: use of undefined value here causes illegal behavior1911// :89:22: error: use of undefined value here causes illegal behavior
1913// :89:22: note: when computing vector element at index '0'
1914// :89:22: error: use of undefined value here causes illegal behavior1912// :89:22: error: use of undefined value here causes illegal behavior
1915// :89:22: note: when computing vector element at index '0'
1916// :89:22: error: use of undefined value here causes illegal behavior1913// :89:22: error: use of undefined value here causes illegal behavior
1917// :89:22: note: when computing vector element at index '0'
1918// :89:22: error: use of undefined value here causes illegal behavior1914// :89:22: error: use of undefined value here causes illegal behavior
1919// :89:22: note: when computing vector element at index '1'
1920// :89:22: error: use of undefined value here causes illegal behavior1915// :89:22: error: use of undefined value here causes illegal behavior
1921// :89:22: note: when computing vector element at index '1'
1922// :89:22: error: use of undefined value here causes illegal behavior1916// :89:22: error: use of undefined value here causes illegal behavior
1923// :89:22: note: when computing vector element at index '0'
1924// :89:22: error: use of undefined value here causes illegal behavior1917// :89:22: error: use of undefined value here causes illegal behavior
1925// :89:22: note: when computing vector element at index '0'
1926// :89:22: error: use of undefined value here causes illegal behavior1918// :89:22: error: use of undefined value here causes illegal behavior
1927// :89:22: note: when computing vector element at index '0'
1928// :89:22: error: use of undefined value here causes illegal behavior1919// :89:22: error: use of undefined value here causes illegal behavior
1929// :89:22: note: when computing vector element at index '0'
1930// :89:22: error: use of undefined value here causes illegal behavior1920// :89:22: error: use of undefined value here causes illegal behavior
1931// :89:22: error: use of undefined value here causes illegal behavior1921// :89:22: error: use of undefined value here causes illegal behavior
1932// :89:22: error: use of undefined value here causes illegal behavior1922// :89:22: error: use of undefined value here causes illegal behavior
1933// :89:22: note: when computing vector element at index '0'
1934// :89:22: error: use of undefined value here causes illegal behavior1923// :89:22: error: use of undefined value here causes illegal behavior
1935// :89:22: note: when computing vector element at index '0'
1936// :89:22: error: use of undefined value here causes illegal behavior1924// :89:22: error: use of undefined value here causes illegal behavior
1937// :89:22: note: when computing vector element at index '0'
1938// :89:22: error: use of undefined value here causes illegal behavior1925// :89:22: error: use of undefined value here causes illegal behavior
1939// :89:22: note: when computing vector element at index '0'
1940// :89:22: error: use of undefined value here causes illegal behavior1926// :89:22: error: use of undefined value here causes illegal behavior
1941// :89:22: note: when computing vector element at index '1'
1942// :89:22: error: use of undefined value here causes illegal behavior1927// :89:22: error: use of undefined value here causes illegal behavior
1943// :89:22: note: when computing vector element at index '1'
1944// :89:22: error: use of undefined value here causes illegal behavior1928// :89:22: error: use of undefined value here causes illegal behavior
1945// :89:22: note: when computing vector element at index '0'
1946// :89:22: error: use of undefined value here causes illegal behavior1929// :89:22: error: use of undefined value here causes illegal behavior
1947// :89:22: note: when computing vector element at index '0'
1948// :89:22: error: use of undefined value here causes illegal behavior1930// :89:22: error: use of undefined value here causes illegal behavior
1949// :89:22: note: when computing vector element at index '0'1931// :89:22: note: when computing vector element at index '0'
1950// :89:22: error: use of undefined value here causes illegal behavior1932// :89:22: error: use of undefined value here causes illegal behavior
1951// :89:22: note: when computing vector element at index '0'1933// :89:22: note: when computing vector element at index '0'
1952// :89:22: error: use of undefined value here causes illegal behavior1934// :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
1955// :89:22: note: when computing vector element at index '0'1935// :89:22: note: when computing vector element at index '0'
1956// :89:22: error: use of undefined value here causes illegal behavior1936// :89:22: error: use of undefined value here causes illegal behavior
1957// :89:22: note: when computing vector element at index '0'1937// :89:22: note: when computing vector element at index '0'
...@@ -1960,10 +1940,6 @@ const std = @import("std");...@@ -1960,10 +1940,6 @@ const std = @import("std");
1960// :89:22: error: use of undefined value here causes illegal behavior1940// :89:22: error: use of undefined value here causes illegal behavior
1961// :89:22: note: when computing vector element at index '0'1941// :89:22: note: when computing vector element at index '0'
1962// :89:22: error: use of undefined value here causes illegal behavior1942// :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
1967// :89:22: note: when computing vector element at index '0'1943// :89:22: note: when computing vector element at index '0'
1968// :89:22: error: use of undefined value here causes illegal behavior1944// :89:22: error: use of undefined value here causes illegal behavior
1969// :89:22: note: when computing vector element at index '0'1945// :89:22: note: when computing vector element at index '0'
...@@ -1972,7 +1948,9 @@ const std = @import("std");...@@ -1972,7 +1948,9 @@ const std = @import("std");
1972// :89:22: error: use of undefined value here causes illegal behavior1948// :89:22: error: use of undefined value here causes illegal behavior
1973// :89:22: note: when computing vector element at index '0'1949// :89:22: note: when computing vector element at index '0'
1974// :89:22: error: use of undefined value here causes illegal behavior1950// :89:22: error: use of undefined value here causes illegal behavior
1951// :89:22: note: when computing vector element at index '0'
1975// :89:22: error: use of undefined value here causes illegal behavior1952// :89:22: error: use of undefined value here causes illegal behavior
1953// :89:22: note: when computing vector element at index '0'
1976// :89:22: error: use of undefined value here causes illegal behavior1954// :89:22: error: use of undefined value here causes illegal behavior
1977// :89:22: note: when computing vector element at index '0'1955// :89:22: note: when computing vector element at index '0'
1978// :89:22: error: use of undefined value here causes illegal behavior1956// :89:22: error: use of undefined value here causes illegal behavior
...@@ -1982,9 +1960,9 @@ const std = @import("std");...@@ -1982,9 +1960,9 @@ const std = @import("std");
1982// :89:22: error: use of undefined value here causes illegal behavior1960// :89:22: error: use of undefined value here causes illegal behavior
1983// :89:22: note: when computing vector element at index '0'1961// :89:22: note: when computing vector element at index '0'
1984// :89:22: error: use of undefined value here causes illegal behavior1962// :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'
1986// :89:22: error: use of undefined value here causes illegal behavior1964// :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'
1988// :89:22: error: use of undefined value here causes illegal behavior1966// :89:22: error: use of undefined value here causes illegal behavior
1989// :89:22: note: when computing vector element at index '0'1967// :89:22: note: when computing vector element at index '0'
1990// :89:22: error: use of undefined value here causes illegal behavior1968// :89:22: error: use of undefined value here causes illegal behavior
...@@ -1994,7 +1972,9 @@ const std = @import("std");...@@ -1994,7 +1972,9 @@ const std = @import("std");
1994// :89:22: error: use of undefined value here causes illegal behavior1972// :89:22: error: use of undefined value here causes illegal behavior
1995// :89:22: note: when computing vector element at index '0'1973// :89:22: note: when computing vector element at index '0'
1996// :89:22: error: use of undefined value here causes illegal behavior1974// :89:22: error: use of undefined value here causes illegal behavior
1975// :89:22: note: when computing vector element at index '0'
1997// :89:22: error: use of undefined value here causes illegal behavior1976// :89:22: error: use of undefined value here causes illegal behavior
1977// :89:22: note: when computing vector element at index '0'
1998// :89:22: error: use of undefined value here causes illegal behavior1978// :89:22: error: use of undefined value here causes illegal behavior
1999// :89:22: note: when computing vector element at index '0'1979// :89:22: note: when computing vector element at index '0'
2000// :89:22: error: use of undefined value here causes illegal behavior1980// :89:22: error: use of undefined value here causes illegal behavior
...@@ -2004,9 +1984,9 @@ const std = @import("std");...@@ -2004,9 +1984,9 @@ const std = @import("std");
2004// :89:22: error: use of undefined value here causes illegal behavior1984// :89:22: error: use of undefined value here causes illegal behavior
2005// :89:22: note: when computing vector element at index '0'1985// :89:22: note: when computing vector element at index '0'
2006// :89:22: error: use of undefined value here causes illegal behavior1986// :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'
2008// :89:22: error: use of undefined value here causes illegal behavior1988// :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'
2010// :89:22: error: use of undefined value here causes illegal behavior1990// :89:22: error: use of undefined value here causes illegal behavior
2011// :89:22: note: when computing vector element at index '0'1991// :89:22: note: when computing vector element at index '0'
2012// :89:22: error: use of undefined value here causes illegal behavior1992// :89:22: error: use of undefined value here causes illegal behavior
...@@ -2016,7 +1996,9 @@ const std = @import("std");...@@ -2016,7 +1996,9 @@ const std = @import("std");
2016// :89:22: error: use of undefined value here causes illegal behavior1996// :89:22: error: use of undefined value here causes illegal behavior
2017// :89:22: note: when computing vector element at index '0'1997// :89:22: note: when computing vector element at index '0'
2018// :89:22: error: use of undefined value here causes illegal behavior1998// :89:22: error: use of undefined value here causes illegal behavior
1999// :89:22: note: when computing vector element at index '0'
2019// :89:22: error: use of undefined value here causes illegal behavior2000// :89:22: error: use of undefined value here causes illegal behavior
2001// :89:22: note: when computing vector element at index '0'
2020// :89:22: error: use of undefined value here causes illegal behavior2002// :89:22: error: use of undefined value here causes illegal behavior
2021// :89:22: note: when computing vector element at index '0'2003// :89:22: note: when computing vector element at index '0'
2022// :89:22: error: use of undefined value here causes illegal behavior2004// :89:22: error: use of undefined value here causes illegal behavior
...@@ -2026,9 +2008,9 @@ const std = @import("std");...@@ -2026,9 +2008,9 @@ const std = @import("std");
2026// :89:22: error: use of undefined value here causes illegal behavior2008// :89:22: error: use of undefined value here causes illegal behavior
2027// :89:22: note: when computing vector element at index '0'2009// :89:22: note: when computing vector element at index '0'
2028// :89:22: error: use of undefined value here causes illegal behavior2010// :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'
2030// :89:22: error: use of undefined value here causes illegal behavior2012// :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'
2032// :89:22: error: use of undefined value here causes illegal behavior2014// :89:22: error: use of undefined value here causes illegal behavior
2033// :89:22: note: when computing vector element at index '0'2015// :89:22: note: when computing vector element at index '0'
2034// :89:22: error: use of undefined value here causes illegal behavior2016// :89:22: error: use of undefined value here causes illegal behavior
...@@ -2038,7 +2020,9 @@ const std = @import("std");...@@ -2038,7 +2020,9 @@ const std = @import("std");
2038// :89:22: error: use of undefined value here causes illegal behavior2020// :89:22: error: use of undefined value here causes illegal behavior
2039// :89:22: note: when computing vector element at index '0'2021// :89:22: note: when computing vector element at index '0'
2040// :89:22: error: use of undefined value here causes illegal behavior2022// :89:22: error: use of undefined value here causes illegal behavior
2023// :89:22: note: when computing vector element at index '0'
2041// :89:22: error: use of undefined value here causes illegal behavior2024// :89:22: error: use of undefined value here causes illegal behavior
2025// :89:22: note: when computing vector element at index '0'
2042// :89:22: error: use of undefined value here causes illegal behavior2026// :89:22: error: use of undefined value here causes illegal behavior
2043// :89:22: note: when computing vector element at index '0'2027// :89:22: note: when computing vector element at index '0'
2044// :89:22: error: use of undefined value here causes illegal behavior2028// :89:22: error: use of undefined value here causes illegal behavior
...@@ -2048,9 +2032,9 @@ const std = @import("std");...@@ -2048,9 +2032,9 @@ const std = @import("std");
2048// :89:22: error: use of undefined value here causes illegal behavior2032// :89:22: error: use of undefined value here causes illegal behavior
2049// :89:22: note: when computing vector element at index '0'2033// :89:22: note: when computing vector element at index '0'
2050// :89:22: error: use of undefined value here causes illegal behavior2034// :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'
2052// :89:22: error: use of undefined value here causes illegal behavior2036// :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'
2054// :89:22: error: use of undefined value here causes illegal behavior2038// :89:22: error: use of undefined value here causes illegal behavior
2055// :89:22: note: when computing vector element at index '0'2039// :89:22: note: when computing vector element at index '0'
2056// :89:22: error: use of undefined value here causes illegal behavior2040// :89:22: error: use of undefined value here causes illegal behavior
...@@ -2060,7 +2044,9 @@ const std = @import("std");...@@ -2060,7 +2044,9 @@ const std = @import("std");
2060// :89:22: error: use of undefined value here causes illegal behavior2044// :89:22: error: use of undefined value here causes illegal behavior
2061// :89:22: note: when computing vector element at index '0'2045// :89:22: note: when computing vector element at index '0'
2062// :89:22: error: use of undefined value here causes illegal behavior2046// :89:22: error: use of undefined value here causes illegal behavior
2047// :89:22: note: when computing vector element at index '0'
2063// :89:22: error: use of undefined value here causes illegal behavior2048// :89:22: error: use of undefined value here causes illegal behavior
2049// :89:22: note: when computing vector element at index '0'
2064// :89:22: error: use of undefined value here causes illegal behavior2050// :89:22: error: use of undefined value here causes illegal behavior
2065// :89:22: note: when computing vector element at index '0'2051// :89:22: note: when computing vector element at index '0'
2066// :89:22: error: use of undefined value here causes illegal behavior2052// :89:22: error: use of undefined value here causes illegal behavior
...@@ -2070,9 +2056,9 @@ const std = @import("std");...@@ -2070,9 +2056,9 @@ const std = @import("std");
2070// :89:22: error: use of undefined value here causes illegal behavior2056// :89:22: error: use of undefined value here causes illegal behavior
2071// :89:22: note: when computing vector element at index '0'2057// :89:22: note: when computing vector element at index '0'
2072// :89:22: error: use of undefined value here causes illegal behavior2058// :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'
2074// :89:22: error: use of undefined value here causes illegal behavior2060// :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'
2076// :89:22: error: use of undefined value here causes illegal behavior2062// :89:22: error: use of undefined value here causes illegal behavior
2077// :89:22: note: when computing vector element at index '0'2063// :89:22: note: when computing vector element at index '0'
2078// :89:22: error: use of undefined value here causes illegal behavior2064// :89:22: error: use of undefined value here causes illegal behavior
...@@ -2082,7 +2068,9 @@ const std = @import("std");...@@ -2082,7 +2068,9 @@ const std = @import("std");
2082// :89:22: error: use of undefined value here causes illegal behavior2068// :89:22: error: use of undefined value here causes illegal behavior
2083// :89:22: note: when computing vector element at index '0'2069// :89:22: note: when computing vector element at index '0'
2084// :89:22: error: use of undefined value here causes illegal behavior2070// :89:22: error: use of undefined value here causes illegal behavior
2071// :89:22: note: when computing vector element at index '0'
2085// :89:22: error: use of undefined value here causes illegal behavior2072// :89:22: error: use of undefined value here causes illegal behavior
2073// :89:22: note: when computing vector element at index '0'
2086// :89:22: error: use of undefined value here causes illegal behavior2074// :89:22: error: use of undefined value here causes illegal behavior
2087// :89:22: note: when computing vector element at index '0'2075// :89:22: note: when computing vector element at index '0'
2088// :89:22: error: use of undefined value here causes illegal behavior2076// :89:22: error: use of undefined value here causes illegal behavior
...@@ -2092,9 +2080,9 @@ const std = @import("std");...@@ -2092,9 +2080,9 @@ const std = @import("std");
2092// :89:22: error: use of undefined value here causes illegal behavior2080// :89:22: error: use of undefined value here causes illegal behavior
2093// :89:22: note: when computing vector element at index '0'2081// :89:22: note: when computing vector element at index '0'
2094// :89:22: error: use of undefined value here causes illegal behavior2082// :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'
2096// :89:22: error: use of undefined value here causes illegal behavior2084// :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'
2098// :89:22: error: use of undefined value here causes illegal behavior2086// :89:22: error: use of undefined value here causes illegal behavior
2099// :89:22: note: when computing vector element at index '0'2087// :89:22: note: when computing vector element at index '0'
2100// :89:22: error: use of undefined value here causes illegal behavior2088// :89:22: error: use of undefined value here causes illegal behavior
...@@ -2104,7 +2092,9 @@ const std = @import("std");...@@ -2104,7 +2092,9 @@ const std = @import("std");
2104// :89:22: error: use of undefined value here causes illegal behavior2092// :89:22: error: use of undefined value here causes illegal behavior
2105// :89:22: note: when computing vector element at index '0'2093// :89:22: note: when computing vector element at index '0'
2106// :89:22: error: use of undefined value here causes illegal behavior2094// :89:22: error: use of undefined value here causes illegal behavior
2095// :89:22: note: when computing vector element at index '0'
2107// :89:22: error: use of undefined value here causes illegal behavior2096// :89:22: error: use of undefined value here causes illegal behavior
2097// :89:22: note: when computing vector element at index '0'
2108// :89:22: error: use of undefined value here causes illegal behavior2098// :89:22: error: use of undefined value here causes illegal behavior
2109// :89:22: note: when computing vector element at index '0'2099// :89:22: note: when computing vector element at index '0'
2110// :89:22: error: use of undefined value here causes illegal behavior2100// :89:22: error: use of undefined value here causes illegal behavior
...@@ -2118,35 +2108,45 @@ const std = @import("std");...@@ -2118,35 +2108,45 @@ const std = @import("std");
2118// :89:22: error: use of undefined value here causes illegal behavior2108// :89:22: error: use of undefined value here causes illegal behavior
2119// :89:22: note: when computing vector element at index '1'2109// :89:22: note: when computing vector element at index '1'
2120// :89:22: error: use of undefined value here causes illegal behavior2110// :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'
2122// :89:22: error: use of undefined value here causes illegal behavior2112// :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'
2124// :89:22: error: use of undefined value here causes illegal behavior2114// :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'
2126// :89:22: error: use of undefined value here causes illegal behavior2116// :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'
2128// :89:22: error: use of undefined value here causes illegal behavior2118// :89:22: error: use of undefined value here causes illegal behavior
2119// :89:22: note: when computing vector element at index '1'
2129// :89:22: error: use of undefined value here causes illegal behavior2120// :89:22: error: use of undefined value here causes illegal behavior
2121// :89:22: note: when computing vector element at index '1'
2130// :89:22: error: use of undefined value here causes illegal behavior2122// :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'
2132// :89:22: error: use of undefined value here causes illegal behavior2124// :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'
2134// :89:22: error: use of undefined value here causes illegal behavior2126// :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'
2136// :89:22: error: use of undefined value here causes illegal behavior2128// :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'
2138// :89:22: error: use of undefined value here causes illegal behavior2130// :89:22: error: use of undefined value here causes illegal behavior
2139// :89:22: note: when computing vector element at index '1'2131// :89:22: note: when computing vector element at index '1'
2140// :89:22: error: use of undefined value here causes illegal behavior2132// :89:22: error: use of undefined value here causes illegal behavior
2141// :89:22: note: when computing vector element at index '1'2133// :89:22: note: when computing vector element at index '1'
2142// :89:22: error: use of undefined value here causes illegal behavior2134// :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'
2144// :89:22: error: use of undefined value here causes illegal behavior2136// :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'
2146// :89:22: error: use of undefined value here causes illegal behavior2138// :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'
2148// :89:22: error: use of undefined value here causes illegal behavior2140// :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'
2150// :89:25: error: use of undefined value here causes illegal behavior2150// :89:25: error: use of undefined value here causes illegal behavior
2151// :89:25: note: when computing vector element at index '0'2151// :89:25: note: when computing vector element at index '0'
2152// :89:25: error: use of undefined value here causes illegal behavior2152// :89:25: error: use of undefined value here causes illegal behavior
...@@ -2198,21 +2198,13 @@ const std = @import("std");...@@ -2198,21 +2198,13 @@ const std = @import("std");
2198// :95:17: error: use of undefined value here causes illegal behavior2198// :95:17: error: use of undefined value here causes illegal behavior
2199// :95:17: error: use of undefined value here causes illegal behavior2199// :95:17: error: use of undefined value here causes illegal behavior
2200// :95:17: error: use of undefined value here causes illegal behavior2200// :95:17: error: use of undefined value here causes illegal behavior
2201// :95:17: note: when computing vector element at index '1'
2202// :95:17: error: use of undefined value here causes illegal behavior2201// :95:17: error: use of undefined value here causes illegal behavior
2203// :95:17: note: when computing vector element at index '1'
2204// :95:17: error: use of undefined value here causes illegal behavior2202// :95:17: error: use of undefined value here causes illegal behavior
2205// :95:17: note: when computing vector element at index '1'
2206// :95:17: error: use of undefined value here causes illegal behavior2203// :95:17: error: use of undefined value here causes illegal behavior
2207// :95:17: note: when computing vector element at index '1'
2208// :95:17: error: use of undefined value here causes illegal behavior2204// :95:17: error: use of undefined value here causes illegal behavior
2209// :95:17: note: when computing vector element at index '0'
2210// :95:17: error: use of undefined value here causes illegal behavior2205// :95:17: error: use of undefined value here causes illegal behavior
2211// :95:17: note: when computing vector element at index '0'
2212// :95:17: error: use of undefined value here causes illegal behavior2206// :95:17: error: use of undefined value here causes illegal behavior
2213// :95:17: note: when computing vector element at index '0'
2214// :95:17: error: use of undefined value here causes illegal behavior2207// :95:17: error: use of undefined value here causes illegal behavior
2215// :95:17: note: when computing vector element at index '0'
2216// :95:17: error: use of undefined value here causes illegal behavior2208// :95:17: error: use of undefined value here causes illegal behavior
2217// :95:17: error: use of undefined value here causes illegal behavior2209// :95:17: error: use of undefined value here causes illegal behavior
2218// :95:17: error: use of undefined value here causes illegal behavior2210// :95:17: error: use of undefined value here causes illegal behavior
...@@ -2220,21 +2212,13 @@ const std = @import("std");...@@ -2220,21 +2212,13 @@ const std = @import("std");
2220// :95:17: error: use of undefined value here causes illegal behavior2212// :95:17: error: use of undefined value here causes illegal behavior
2221// :95:17: error: use of undefined value here causes illegal behavior2213// :95:17: error: use of undefined value here causes illegal behavior
2222// :95:17: error: use of undefined value here causes illegal behavior2214// :95:17: error: use of undefined value here causes illegal behavior
2223// :95:17: note: when computing vector element at index '1'
2224// :95:17: error: use of undefined value here causes illegal behavior2215// :95:17: error: use of undefined value here causes illegal behavior
2225// :95:17: note: when computing vector element at index '1'
2226// :95:17: error: use of undefined value here causes illegal behavior2216// :95:17: error: use of undefined value here causes illegal behavior
2227// :95:17: note: when computing vector element at index '1'
2228// :95:17: error: use of undefined value here causes illegal behavior2217// :95:17: error: use of undefined value here causes illegal behavior
2229// :95:17: note: when computing vector element at index '1'
2230// :95:17: error: use of undefined value here causes illegal behavior2218// :95:17: error: use of undefined value here causes illegal behavior
2231// :95:17: note: when computing vector element at index '0'
2232// :95:17: error: use of undefined value here causes illegal behavior2219// :95:17: error: use of undefined value here causes illegal behavior
2233// :95:17: note: when computing vector element at index '0'
2234// :95:17: error: use of undefined value here causes illegal behavior2220// :95:17: error: use of undefined value here causes illegal behavior
2235// :95:17: note: when computing vector element at index '0'
2236// :95:17: error: use of undefined value here causes illegal behavior2221// :95:17: error: use of undefined value here causes illegal behavior
2237// :95:17: note: when computing vector element at index '0'
2238// :95:17: error: use of undefined value here causes illegal behavior2222// :95:17: error: use of undefined value here causes illegal behavior
2239// :95:17: error: use of undefined value here causes illegal behavior2223// :95:17: error: use of undefined value here causes illegal behavior
2240// :95:17: error: use of undefined value here causes illegal behavior2224// :95:17: error: use of undefined value here causes illegal behavior
...@@ -2242,21 +2226,13 @@ const std = @import("std");...@@ -2242,21 +2226,13 @@ const std = @import("std");
2242// :95:17: error: use of undefined value here causes illegal behavior2226// :95:17: error: use of undefined value here causes illegal behavior
2243// :95:17: error: use of undefined value here causes illegal behavior2227// :95:17: error: use of undefined value here causes illegal behavior
2244// :95:17: error: use of undefined value here causes illegal behavior2228// :95:17: error: use of undefined value here causes illegal behavior
2245// :95:17: note: when computing vector element at index '1'
2246// :95:17: error: use of undefined value here causes illegal behavior2229// :95:17: error: use of undefined value here causes illegal behavior
2247// :95:17: note: when computing vector element at index '1'
2248// :95:17: error: use of undefined value here causes illegal behavior2230// :95:17: error: use of undefined value here causes illegal behavior
2249// :95:17: note: when computing vector element at index '1'
2250// :95:17: error: use of undefined value here causes illegal behavior2231// :95:17: error: use of undefined value here causes illegal behavior
2251// :95:17: note: when computing vector element at index '1'
2252// :95:17: error: use of undefined value here causes illegal behavior2232// :95:17: error: use of undefined value here causes illegal behavior
2253// :95:17: note: when computing vector element at index '0'
2254// :95:17: error: use of undefined value here causes illegal behavior2233// :95:17: error: use of undefined value here causes illegal behavior
2255// :95:17: note: when computing vector element at index '0'
2256// :95:17: error: use of undefined value here causes illegal behavior2234// :95:17: error: use of undefined value here causes illegal behavior
2257// :95:17: note: when computing vector element at index '0'
2258// :95:17: error: use of undefined value here causes illegal behavior2235// :95:17: error: use of undefined value here causes illegal behavior
2259// :95:17: note: when computing vector element at index '0'
2260// :95:17: error: use of undefined value here causes illegal behavior2236// :95:17: error: use of undefined value here causes illegal behavior
2261// :95:17: error: use of undefined value here causes illegal behavior2237// :95:17: error: use of undefined value here causes illegal behavior
2262// :95:17: error: use of undefined value here causes illegal behavior2238// :95:17: error: use of undefined value here causes illegal behavior
...@@ -2264,21 +2240,13 @@ const std = @import("std");...@@ -2264,21 +2240,13 @@ const std = @import("std");
2264// :95:17: error: use of undefined value here causes illegal behavior2240// :95:17: error: use of undefined value here causes illegal behavior
2265// :95:17: error: use of undefined value here causes illegal behavior2241// :95:17: error: use of undefined value here causes illegal behavior
2266// :95:17: error: use of undefined value here causes illegal behavior2242// :95:17: error: use of undefined value here causes illegal behavior
2267// :95:17: note: when computing vector element at index '1'
2268// :95:17: error: use of undefined value here causes illegal behavior2243// :95:17: error: use of undefined value here causes illegal behavior
2269// :95:17: note: when computing vector element at index '1'
2270// :95:17: error: use of undefined value here causes illegal behavior2244// :95:17: error: use of undefined value here causes illegal behavior
2271// :95:17: note: when computing vector element at index '1'
2272// :95:17: error: use of undefined value here causes illegal behavior2245// :95:17: error: use of undefined value here causes illegal behavior
2273// :95:17: note: when computing vector element at index '1'
2274// :95:17: error: use of undefined value here causes illegal behavior2246// :95:17: error: use of undefined value here causes illegal behavior
2275// :95:17: note: when computing vector element at index '0'
2276// :95:17: error: use of undefined value here causes illegal behavior2247// :95:17: error: use of undefined value here causes illegal behavior
2277// :95:17: note: when computing vector element at index '0'
2278// :95:17: error: use of undefined value here causes illegal behavior2248// :95:17: error: use of undefined value here causes illegal behavior
2279// :95:17: note: when computing vector element at index '0'
2280// :95:17: error: use of undefined value here causes illegal behavior2249// :95:17: error: use of undefined value here causes illegal behavior
2281// :95:17: note: when computing vector element at index '0'
2282// :95:17: error: use of undefined value here causes illegal behavior2250// :95:17: error: use of undefined value here causes illegal behavior
2283// :95:17: error: use of undefined value here causes illegal behavior2251// :95:17: error: use of undefined value here causes illegal behavior
2284// :95:17: error: use of undefined value here causes illegal behavior2252// :95:17: error: use of undefined value here causes illegal behavior
...@@ -2286,13 +2254,9 @@ const std = @import("std");...@@ -2286,13 +2254,9 @@ const std = @import("std");
2286// :95:17: error: use of undefined value here causes illegal behavior2254// :95:17: error: use of undefined value here causes illegal behavior
2287// :95:17: error: use of undefined value here causes illegal behavior2255// :95:17: error: use of undefined value here causes illegal behavior
2288// :95:17: error: use of undefined value here causes illegal behavior2256// :95:17: error: use of undefined value here causes illegal behavior
2289// :95:17: note: when computing vector element at index '1'
2290// :95:17: error: use of undefined value here causes illegal behavior2257// :95:17: error: use of undefined value here causes illegal behavior
2291// :95:17: note: when computing vector element at index '1'
2292// :95:17: error: use of undefined value here causes illegal behavior2258// :95:17: error: use of undefined value here causes illegal behavior
2293// :95:17: note: when computing vector element at index '1'
2294// :95:17: error: use of undefined value here causes illegal behavior2259// :95:17: error: use of undefined value here causes illegal behavior
2295// :95:17: note: when computing vector element at index '1'
2296// :95:17: error: use of undefined value here causes illegal behavior2260// :95:17: error: use of undefined value here causes illegal behavior
2297// :95:17: note: when computing vector element at index '0'2261// :95:17: note: when computing vector element at index '0'
2298// :95:17: error: use of undefined value here causes illegal behavior2262// :95:17: error: use of undefined value here causes illegal behavior
...@@ -2302,19 +2266,21 @@ const std = @import("std");...@@ -2302,19 +2266,21 @@ const std = @import("std");
2302// :95:17: error: use of undefined value here causes illegal behavior2266// :95:17: error: use of undefined value here causes illegal behavior
2303// :95:17: note: when computing vector element at index '0'2267// :95:17: note: when computing vector element at index '0'
2304// :95:17: error: use of undefined value here causes illegal behavior2268// :95:17: error: use of undefined value here causes illegal behavior
2269// :95:17: note: when computing vector element at index '0'
2305// :95:17: error: use of undefined value here causes illegal behavior2270// :95:17: error: use of undefined value here causes illegal behavior
2271// :95:17: note: when computing vector element at index '0'
2306// :95:17: error: use of undefined value here causes illegal behavior2272// :95:17: error: use of undefined value here causes illegal behavior
2273// :95:17: note: when computing vector element at index '0'
2307// :95:17: error: use of undefined value here causes illegal behavior2274// :95:17: error: use of undefined value here causes illegal behavior
2275// :95:17: note: when computing vector element at index '0'
2308// :95:17: error: use of undefined value here causes illegal behavior2276// :95:17: error: use of undefined value here causes illegal behavior
2277// :95:17: note: when computing vector element at index '0'
2309// :95:17: error: use of undefined value here causes illegal behavior2278// :95:17: error: use of undefined value here causes illegal behavior
2279// :95:17: note: when computing vector element at index '0'
2310// :95:17: error: use of undefined value here causes illegal behavior2280// :95:17: error: use of undefined value here causes illegal behavior
2311// :95:17: note: when computing vector element at index '1'2281// :95:17: note: when computing vector element at index '0'
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'
2316// :95:17: error: use of undefined value here causes illegal behavior2282// :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'
2318// :95:17: error: use of undefined value here causes illegal behavior2284// :95:17: error: use of undefined value here causes illegal behavior
2319// :95:17: note: when computing vector element at index '0'2285// :95:17: note: when computing vector element at index '0'
2320// :95:17: error: use of undefined value here causes illegal behavior2286// :95:17: error: use of undefined value here causes illegal behavior
...@@ -2324,19 +2290,25 @@ const std = @import("std");...@@ -2324,19 +2290,25 @@ const std = @import("std");
2324// :95:17: error: use of undefined value here causes illegal behavior2290// :95:17: error: use of undefined value here causes illegal behavior
2325// :95:17: note: when computing vector element at index '0'2291// :95:17: note: when computing vector element at index '0'
2326// :95:17: error: use of undefined value here causes illegal behavior2292// :95:17: error: use of undefined value here causes illegal behavior
2293// :95:17: note: when computing vector element at index '0'
2327// :95:17: error: use of undefined value here causes illegal behavior2294// :95:17: error: use of undefined value here causes illegal behavior
2295// :95:17: note: when computing vector element at index '0'
2328// :95:17: error: use of undefined value here causes illegal behavior2296// :95:17: error: use of undefined value here causes illegal behavior
2297// :95:17: note: when computing vector element at index '0'
2329// :95:17: error: use of undefined value here causes illegal behavior2298// :95:17: error: use of undefined value here causes illegal behavior
2299// :95:17: note: when computing vector element at index '0'
2330// :95:17: error: use of undefined value here causes illegal behavior2300// :95:17: error: use of undefined value here causes illegal behavior
2301// :95:17: note: when computing vector element at index '0'
2331// :95:17: error: use of undefined value here causes illegal behavior2302// :95:17: error: use of undefined value here causes illegal behavior
2303// :95:17: note: when computing vector element at index '0'
2332// :95:17: error: use of undefined value here causes illegal behavior2304// :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'
2334// :95:17: error: use of undefined value here causes illegal behavior2306// :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'
2336// :95:17: error: use of undefined value here causes illegal behavior2308// :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'
2338// :95:17: error: use of undefined value here causes illegal behavior2310// :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'
2340// :95:17: error: use of undefined value here causes illegal behavior2312// :95:17: error: use of undefined value here causes illegal behavior
2341// :95:17: note: when computing vector element at index '0'2313// :95:17: note: when computing vector element at index '0'
2342// :95:17: error: use of undefined value here causes illegal behavior2314// :95:17: error: use of undefined value here causes illegal behavior
...@@ -2346,19 +2318,25 @@ const std = @import("std");...@@ -2346,19 +2318,25 @@ const std = @import("std");
2346// :95:17: error: use of undefined value here causes illegal behavior2318// :95:17: error: use of undefined value here causes illegal behavior
2347// :95:17: note: when computing vector element at index '0'2319// :95:17: note: when computing vector element at index '0'
2348// :95:17: error: use of undefined value here causes illegal behavior2320// :95:17: error: use of undefined value here causes illegal behavior
2321// :95:17: note: when computing vector element at index '0'
2349// :95:17: error: use of undefined value here causes illegal behavior2322// :95:17: error: use of undefined value here causes illegal behavior
2323// :95:17: note: when computing vector element at index '0'
2350// :95:17: error: use of undefined value here causes illegal behavior2324// :95:17: error: use of undefined value here causes illegal behavior
2325// :95:17: note: when computing vector element at index '0'
2351// :95:17: error: use of undefined value here causes illegal behavior2326// :95:17: error: use of undefined value here causes illegal behavior
2327// :95:17: note: when computing vector element at index '0'
2352// :95:17: error: use of undefined value here causes illegal behavior2328// :95:17: error: use of undefined value here causes illegal behavior
2329// :95:17: note: when computing vector element at index '0'
2353// :95:17: error: use of undefined value here causes illegal behavior2330// :95:17: error: use of undefined value here causes illegal behavior
2331// :95:17: note: when computing vector element at index '0'
2354// :95:17: error: use of undefined value here causes illegal behavior2332// :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'
2356// :95:17: error: use of undefined value here causes illegal behavior2334// :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'
2358// :95:17: error: use of undefined value here causes illegal behavior2336// :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'
2360// :95:17: error: use of undefined value here causes illegal behavior2338// :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'
2362// :95:17: error: use of undefined value here causes illegal behavior2340// :95:17: error: use of undefined value here causes illegal behavior
2363// :95:17: note: when computing vector element at index '0'2341// :95:17: note: when computing vector element at index '0'
2364// :95:17: error: use of undefined value here causes illegal behavior2342// :95:17: error: use of undefined value here causes illegal behavior
...@@ -2368,11 +2346,17 @@ const std = @import("std");...@@ -2368,11 +2346,17 @@ const std = @import("std");
2368// :95:17: error: use of undefined value here causes illegal behavior2346// :95:17: error: use of undefined value here causes illegal behavior
2369// :95:17: note: when computing vector element at index '0'2347// :95:17: note: when computing vector element at index '0'
2370// :95:17: error: use of undefined value here causes illegal behavior2348// :95:17: error: use of undefined value here causes illegal behavior
2349// :95:17: note: when computing vector element at index '1'
2371// :95:17: error: use of undefined value here causes illegal behavior2350// :95:17: error: use of undefined value here causes illegal behavior
2351// :95:17: note: when computing vector element at index '1'
2372// :95:17: error: use of undefined value here causes illegal behavior2352// :95:17: error: use of undefined value here causes illegal behavior
2353// :95:17: note: when computing vector element at index '1'
2373// :95:17: error: use of undefined value here causes illegal behavior2354// :95:17: error: use of undefined value here causes illegal behavior
2355// :95:17: note: when computing vector element at index '1'
2374// :95:17: error: use of undefined value here causes illegal behavior2356// :95:17: error: use of undefined value here causes illegal behavior
2357// :95:17: note: when computing vector element at index '1'
2375// :95:17: error: use of undefined value here causes illegal behavior2358// :95:17: error: use of undefined value here causes illegal behavior
2359// :95:17: note: when computing vector element at index '1'
2376// :95:17: error: use of undefined value here causes illegal behavior2360// :95:17: error: use of undefined value here causes illegal behavior
2377// :95:17: note: when computing vector element at index '1'2361// :95:17: note: when computing vector element at index '1'
2378// :95:17: error: use of undefined value here causes illegal behavior2362// :95:17: error: use of undefined value here causes illegal behavior
...@@ -2382,19 +2366,25 @@ const std = @import("std");...@@ -2382,19 +2366,25 @@ const std = @import("std");
2382// :95:17: error: use of undefined value here causes illegal behavior2366// :95:17: error: use of undefined value here causes illegal behavior
2383// :95:17: note: when computing vector element at index '1'2367// :95:17: note: when computing vector element at index '1'
2384// :95:17: error: use of undefined value here causes illegal behavior2368// :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'
2386// :95:17: error: use of undefined value here causes illegal behavior2370// :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'
2388// :95:17: error: use of undefined value here causes illegal behavior2372// :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'
2390// :95:17: error: use of undefined value here causes illegal behavior2374// :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'
2392// :95:17: error: use of undefined value here causes illegal behavior2376// :95:17: error: use of undefined value here causes illegal behavior
2377// :95:17: note: when computing vector element at index '1'
2393// :95:17: error: use of undefined value here causes illegal behavior2378// :95:17: error: use of undefined value here causes illegal behavior
2379// :95:17: note: when computing vector element at index '1'
2394// :95:17: error: use of undefined value here causes illegal behavior2380// :95:17: error: use of undefined value here causes illegal behavior
2381// :95:17: note: when computing vector element at index '1'
2395// :95:17: error: use of undefined value here causes illegal behavior2382// :95:17: error: use of undefined value here causes illegal behavior
2383// :95:17: note: when computing vector element at index '1'
2396// :95:17: error: use of undefined value here causes illegal behavior2384// :95:17: error: use of undefined value here causes illegal behavior
2385// :95:17: note: when computing vector element at index '1'
2397// :95:17: error: use of undefined value here causes illegal behavior2386// :95:17: error: use of undefined value here causes illegal behavior
2387// :95:17: note: when computing vector element at index '1'
2398// :95:17: error: use of undefined value here causes illegal behavior2388// :95:17: error: use of undefined value here causes illegal behavior
2399// :95:17: note: when computing vector element at index '1'2389// :95:17: note: when computing vector element at index '1'
2400// :95:17: error: use of undefined value here causes illegal behavior2390// :95:17: error: use of undefined value here causes illegal behavior
...@@ -2404,19 +2394,25 @@ const std = @import("std");...@@ -2404,19 +2394,25 @@ const std = @import("std");
2404// :95:17: error: use of undefined value here causes illegal behavior2394// :95:17: error: use of undefined value here causes illegal behavior
2405// :95:17: note: when computing vector element at index '1'2395// :95:17: note: when computing vector element at index '1'
2406// :95:17: error: use of undefined value here causes illegal behavior2396// :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'
2408// :95:17: error: use of undefined value here causes illegal behavior2398// :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'
2410// :95:17: error: use of undefined value here causes illegal behavior2400// :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'
2412// :95:17: error: use of undefined value here causes illegal behavior2402// :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'
2414// :95:17: error: use of undefined value here causes illegal behavior2404// :95:17: error: use of undefined value here causes illegal behavior
2405// :95:17: note: when computing vector element at index '1'
2415// :95:17: error: use of undefined value here causes illegal behavior2406// :95:17: error: use of undefined value here causes illegal behavior
2407// :95:17: note: when computing vector element at index '1'
2416// :95:17: error: use of undefined value here causes illegal behavior2408// :95:17: error: use of undefined value here causes illegal behavior
2409// :95:17: note: when computing vector element at index '1'
2417// :95:17: error: use of undefined value here causes illegal behavior2410// :95:17: error: use of undefined value here causes illegal behavior
2411// :95:17: note: when computing vector element at index '1'
2418// :95:17: error: use of undefined value here causes illegal behavior2412// :95:17: error: use of undefined value here causes illegal behavior
2413// :95:17: note: when computing vector element at index '1'
2419// :95:17: error: use of undefined value here causes illegal behavior2414// :95:17: error: use of undefined value here causes illegal behavior
2415// :95:17: note: when computing vector element at index '1'
2420// :95:17: error: use of undefined value here causes illegal behavior2416// :95:17: error: use of undefined value here causes illegal behavior
2421// :95:17: note: when computing vector element at index '1'2417// :95:17: note: when computing vector element at index '1'
2422// :95:17: error: use of undefined value here causes illegal behavior2418// :95:17: error: use of undefined value here causes illegal behavior
...@@ -2426,13 +2422,17 @@ const std = @import("std");...@@ -2426,13 +2422,17 @@ const std = @import("std");
2426// :95:17: error: use of undefined value here causes illegal behavior2422// :95:17: error: use of undefined value here causes illegal behavior
2427// :95:17: note: when computing vector element at index '1'2423// :95:17: note: when computing vector element at index '1'
2428// :95:17: error: use of undefined value here causes illegal behavior2424// :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'
2430// :95:17: error: use of undefined value here causes illegal behavior2426// :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'
2432// :95:17: error: use of undefined value here causes illegal behavior2428// :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'
2434// :95:17: error: use of undefined value here causes illegal behavior2430// :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'
2436// :99:27: error: use of undefined value here causes illegal behavior2436// :99:27: error: use of undefined value here causes illegal behavior
2437// :99:27: error: use of undefined value here causes illegal behavior2437// :99:27: error: use of undefined value here causes illegal behavior
2438// :99:27: error: use of undefined value here causes illegal behavior2438// :99:27: error: use of undefined value here causes illegal behavior
...@@ -2440,21 +2440,13 @@ const std = @import("std");...@@ -2440,21 +2440,13 @@ const std = @import("std");
2440// :99:27: error: use of undefined value here causes illegal behavior2440// :99:27: error: use of undefined value here causes illegal behavior
2441// :99:27: error: use of undefined value here causes illegal behavior2441// :99:27: error: use of undefined value here causes illegal behavior
2442// :99:27: error: use of undefined value here causes illegal behavior2442// :99:27: error: use of undefined value here causes illegal behavior
2443// :99:27: note: when computing vector element at index '1'
2444// :99:27: error: use of undefined value here causes illegal behavior2443// :99:27: error: use of undefined value here causes illegal behavior
2445// :99:27: note: when computing vector element at index '1'
2446// :99:27: error: use of undefined value here causes illegal behavior2444// :99:27: error: use of undefined value here causes illegal behavior
2447// :99:27: note: when computing vector element at index '1'
2448// :99:27: error: use of undefined value here causes illegal behavior2445// :99:27: error: use of undefined value here causes illegal behavior
2449// :99:27: note: when computing vector element at index '1'
2450// :99:27: error: use of undefined value here causes illegal behavior2446// :99:27: error: use of undefined value here causes illegal behavior
2451// :99:27: note: when computing vector element at index '0'
2452// :99:27: error: use of undefined value here causes illegal behavior2447// :99:27: error: use of undefined value here causes illegal behavior
2453// :99:27: note: when computing vector element at index '0'
2454// :99:27: error: use of undefined value here causes illegal behavior2448// :99:27: error: use of undefined value here causes illegal behavior
2455// :99:27: note: when computing vector element at index '0'
2456// :99:27: error: use of undefined value here causes illegal behavior2449// :99:27: error: use of undefined value here causes illegal behavior
2457// :99:27: note: when computing vector element at index '0'
2458// :99:27: error: use of undefined value here causes illegal behavior2450// :99:27: error: use of undefined value here causes illegal behavior
2459// :99:27: error: use of undefined value here causes illegal behavior2451// :99:27: error: use of undefined value here causes illegal behavior
2460// :99:27: error: use of undefined value here causes illegal behavior2452// :99:27: error: use of undefined value here causes illegal behavior
...@@ -2462,21 +2454,13 @@ const std = @import("std");...@@ -2462,21 +2454,13 @@ const std = @import("std");
2462// :99:27: error: use of undefined value here causes illegal behavior2454// :99:27: error: use of undefined value here causes illegal behavior
2463// :99:27: error: use of undefined value here causes illegal behavior2455// :99:27: error: use of undefined value here causes illegal behavior
2464// :99:27: error: use of undefined value here causes illegal behavior2456// :99:27: error: use of undefined value here causes illegal behavior
2465// :99:27: note: when computing vector element at index '1'
2466// :99:27: error: use of undefined value here causes illegal behavior2457// :99:27: error: use of undefined value here causes illegal behavior
2467// :99:27: note: when computing vector element at index '1'
2468// :99:27: error: use of undefined value here causes illegal behavior2458// :99:27: error: use of undefined value here causes illegal behavior
2469// :99:27: note: when computing vector element at index '1'
2470// :99:27: error: use of undefined value here causes illegal behavior2459// :99:27: error: use of undefined value here causes illegal behavior
2471// :99:27: note: when computing vector element at index '1'
2472// :99:27: error: use of undefined value here causes illegal behavior2460// :99:27: error: use of undefined value here causes illegal behavior
2473// :99:27: note: when computing vector element at index '0'
2474// :99:27: error: use of undefined value here causes illegal behavior2461// :99:27: error: use of undefined value here causes illegal behavior
2475// :99:27: note: when computing vector element at index '0'
2476// :99:27: error: use of undefined value here causes illegal behavior2462// :99:27: error: use of undefined value here causes illegal behavior
2477// :99:27: note: when computing vector element at index '0'
2478// :99:27: error: use of undefined value here causes illegal behavior2463// :99:27: error: use of undefined value here causes illegal behavior
2479// :99:27: note: when computing vector element at index '0'
2480// :99:27: error: use of undefined value here causes illegal behavior2464// :99:27: error: use of undefined value here causes illegal behavior
2481// :99:27: error: use of undefined value here causes illegal behavior2465// :99:27: error: use of undefined value here causes illegal behavior
2482// :99:27: error: use of undefined value here causes illegal behavior2466// :99:27: error: use of undefined value here causes illegal behavior
...@@ -2484,21 +2468,13 @@ const std = @import("std");...@@ -2484,21 +2468,13 @@ const std = @import("std");
2484// :99:27: error: use of undefined value here causes illegal behavior2468// :99:27: error: use of undefined value here causes illegal behavior
2485// :99:27: error: use of undefined value here causes illegal behavior2469// :99:27: error: use of undefined value here causes illegal behavior
2486// :99:27: error: use of undefined value here causes illegal behavior2470// :99:27: error: use of undefined value here causes illegal behavior
2487// :99:27: note: when computing vector element at index '1'
2488// :99:27: error: use of undefined value here causes illegal behavior2471// :99:27: error: use of undefined value here causes illegal behavior
2489// :99:27: note: when computing vector element at index '1'
2490// :99:27: error: use of undefined value here causes illegal behavior2472// :99:27: error: use of undefined value here causes illegal behavior
2491// :99:27: note: when computing vector element at index '1'
2492// :99:27: error: use of undefined value here causes illegal behavior2473// :99:27: error: use of undefined value here causes illegal behavior
2493// :99:27: note: when computing vector element at index '1'
2494// :99:27: error: use of undefined value here causes illegal behavior2474// :99:27: error: use of undefined value here causes illegal behavior
2495// :99:27: note: when computing vector element at index '0'
2496// :99:27: error: use of undefined value here causes illegal behavior2475// :99:27: error: use of undefined value here causes illegal behavior
2497// :99:27: note: when computing vector element at index '0'
2498// :99:27: error: use of undefined value here causes illegal behavior2476// :99:27: error: use of undefined value here causes illegal behavior
2499// :99:27: note: when computing vector element at index '0'
2500// :99:27: error: use of undefined value here causes illegal behavior2477// :99:27: error: use of undefined value here causes illegal behavior
2501// :99:27: note: when computing vector element at index '0'
2502// :99:27: error: use of undefined value here causes illegal behavior2478// :99:27: error: use of undefined value here causes illegal behavior
2503// :99:27: error: use of undefined value here causes illegal behavior2479// :99:27: error: use of undefined value here causes illegal behavior
2504// :99:27: error: use of undefined value here causes illegal behavior2480// :99:27: error: use of undefined value here causes illegal behavior
...@@ -2506,21 +2482,13 @@ const std = @import("std");...@@ -2506,21 +2482,13 @@ const std = @import("std");
2506// :99:27: error: use of undefined value here causes illegal behavior2482// :99:27: error: use of undefined value here causes illegal behavior
2507// :99:27: error: use of undefined value here causes illegal behavior2483// :99:27: error: use of undefined value here causes illegal behavior
2508// :99:27: error: use of undefined value here causes illegal behavior2484// :99:27: error: use of undefined value here causes illegal behavior
2509// :99:27: note: when computing vector element at index '1'
2510// :99:27: error: use of undefined value here causes illegal behavior2485// :99:27: error: use of undefined value here causes illegal behavior
2511// :99:27: note: when computing vector element at index '1'
2512// :99:27: error: use of undefined value here causes illegal behavior2486// :99:27: error: use of undefined value here causes illegal behavior
2513// :99:27: note: when computing vector element at index '1'
2514// :99:27: error: use of undefined value here causes illegal behavior2487// :99:27: error: use of undefined value here causes illegal behavior
2515// :99:27: note: when computing vector element at index '1'
2516// :99:27: error: use of undefined value here causes illegal behavior2488// :99:27: error: use of undefined value here causes illegal behavior
2517// :99:27: note: when computing vector element at index '0'
2518// :99:27: error: use of undefined value here causes illegal behavior2489// :99:27: error: use of undefined value here causes illegal behavior
2519// :99:27: note: when computing vector element at index '0'
2520// :99:27: error: use of undefined value here causes illegal behavior2490// :99:27: error: use of undefined value here causes illegal behavior
2521// :99:27: note: when computing vector element at index '0'
2522// :99:27: error: use of undefined value here causes illegal behavior2491// :99:27: error: use of undefined value here causes illegal behavior
2523// :99:27: note: when computing vector element at index '0'
2524// :99:27: error: use of undefined value here causes illegal behavior2492// :99:27: error: use of undefined value here causes illegal behavior
2525// :99:27: error: use of undefined value here causes illegal behavior2493// :99:27: error: use of undefined value here causes illegal behavior
2526// :99:27: error: use of undefined value here causes illegal behavior2494// :99:27: error: use of undefined value here causes illegal behavior
...@@ -2528,13 +2496,9 @@ const std = @import("std");...@@ -2528,13 +2496,9 @@ const std = @import("std");
2528// :99:27: error: use of undefined value here causes illegal behavior2496// :99:27: error: use of undefined value here causes illegal behavior
2529// :99:27: error: use of undefined value here causes illegal behavior2497// :99:27: error: use of undefined value here causes illegal behavior
2530// :99:27: error: use of undefined value here causes illegal behavior2498// :99:27: error: use of undefined value here causes illegal behavior
2531// :99:27: note: when computing vector element at index '1'
2532// :99:27: error: use of undefined value here causes illegal behavior2499// :99:27: error: use of undefined value here causes illegal behavior
2533// :99:27: note: when computing vector element at index '1'
2534// :99:27: error: use of undefined value here causes illegal behavior2500// :99:27: error: use of undefined value here causes illegal behavior
2535// :99:27: note: when computing vector element at index '1'
2536// :99:27: error: use of undefined value here causes illegal behavior2501// :99:27: error: use of undefined value here causes illegal behavior
2537// :99:27: note: when computing vector element at index '1'
2538// :99:27: error: use of undefined value here causes illegal behavior2502// :99:27: error: use of undefined value here causes illegal behavior
2539// :99:27: note: when computing vector element at index '0'2503// :99:27: note: when computing vector element at index '0'
2540// :99:27: error: use of undefined value here causes illegal behavior2504// :99:27: error: use of undefined value here causes illegal behavior
...@@ -2544,19 +2508,21 @@ const std = @import("std");...@@ -2544,19 +2508,21 @@ const std = @import("std");
2544// :99:27: error: use of undefined value here causes illegal behavior2508// :99:27: error: use of undefined value here causes illegal behavior
2545// :99:27: note: when computing vector element at index '0'2509// :99:27: note: when computing vector element at index '0'
2546// :99:27: error: use of undefined value here causes illegal behavior2510// :99:27: error: use of undefined value here causes illegal behavior
2511// :99:27: note: when computing vector element at index '0'
2547// :99:27: error: use of undefined value here causes illegal behavior2512// :99:27: error: use of undefined value here causes illegal behavior
2513// :99:27: note: when computing vector element at index '0'
2548// :99:27: error: use of undefined value here causes illegal behavior2514// :99:27: error: use of undefined value here causes illegal behavior
2515// :99:27: note: when computing vector element at index '0'
2549// :99:27: error: use of undefined value here causes illegal behavior2516// :99:27: error: use of undefined value here causes illegal behavior
2517// :99:27: note: when computing vector element at index '0'
2550// :99:27: error: use of undefined value here causes illegal behavior2518// :99:27: error: use of undefined value here causes illegal behavior
2519// :99:27: note: when computing vector element at index '0'
2551// :99:27: error: use of undefined value here causes illegal behavior2520// :99:27: error: use of undefined value here causes illegal behavior
2521// :99:27: note: when computing vector element at index '0'
2552// :99:27: error: use of undefined value here causes illegal behavior2522// :99:27: error: use of undefined value here causes illegal behavior
2553// :99:27: note: when computing vector element at index '1'2523// :99:27: note: when computing vector element at index '0'
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'
2558// :99:27: error: use of undefined value here causes illegal behavior2524// :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'
2560// :99:27: error: use of undefined value here causes illegal behavior2526// :99:27: error: use of undefined value here causes illegal behavior
2561// :99:27: note: when computing vector element at index '0'2527// :99:27: note: when computing vector element at index '0'
2562// :99:27: error: use of undefined value here causes illegal behavior2528// :99:27: error: use of undefined value here causes illegal behavior
...@@ -2566,19 +2532,25 @@ const std = @import("std");...@@ -2566,19 +2532,25 @@ const std = @import("std");
2566// :99:27: error: use of undefined value here causes illegal behavior2532// :99:27: error: use of undefined value here causes illegal behavior
2567// :99:27: note: when computing vector element at index '0'2533// :99:27: note: when computing vector element at index '0'
2568// :99:27: error: use of undefined value here causes illegal behavior2534// :99:27: error: use of undefined value here causes illegal behavior
2535// :99:27: note: when computing vector element at index '0'
2569// :99:27: error: use of undefined value here causes illegal behavior2536// :99:27: error: use of undefined value here causes illegal behavior
2537// :99:27: note: when computing vector element at index '0'
2570// :99:27: error: use of undefined value here causes illegal behavior2538// :99:27: error: use of undefined value here causes illegal behavior
2539// :99:27: note: when computing vector element at index '0'
2571// :99:27: error: use of undefined value here causes illegal behavior2540// :99:27: error: use of undefined value here causes illegal behavior
2541// :99:27: note: when computing vector element at index '0'
2572// :99:27: error: use of undefined value here causes illegal behavior2542// :99:27: error: use of undefined value here causes illegal behavior
2543// :99:27: note: when computing vector element at index '0'
2573// :99:27: error: use of undefined value here causes illegal behavior2544// :99:27: error: use of undefined value here causes illegal behavior
2545// :99:27: note: when computing vector element at index '0'
2574// :99:27: error: use of undefined value here causes illegal behavior2546// :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'
2576// :99:27: error: use of undefined value here causes illegal behavior2548// :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'
2578// :99:27: error: use of undefined value here causes illegal behavior2550// :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'
2580// :99:27: error: use of undefined value here causes illegal behavior2552// :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'
2582// :99:27: error: use of undefined value here causes illegal behavior2554// :99:27: error: use of undefined value here causes illegal behavior
2583// :99:27: note: when computing vector element at index '0'2555// :99:27: note: when computing vector element at index '0'
2584// :99:27: error: use of undefined value here causes illegal behavior2556// :99:27: error: use of undefined value here causes illegal behavior
...@@ -2588,19 +2560,25 @@ const std = @import("std");...@@ -2588,19 +2560,25 @@ const std = @import("std");
2588// :99:27: error: use of undefined value here causes illegal behavior2560// :99:27: error: use of undefined value here causes illegal behavior
2589// :99:27: note: when computing vector element at index '0'2561// :99:27: note: when computing vector element at index '0'
2590// :99:27: error: use of undefined value here causes illegal behavior2562// :99:27: error: use of undefined value here causes illegal behavior
2563// :99:27: note: when computing vector element at index '0'
2591// :99:27: error: use of undefined value here causes illegal behavior2564// :99:27: error: use of undefined value here causes illegal behavior
2565// :99:27: note: when computing vector element at index '0'
2592// :99:27: error: use of undefined value here causes illegal behavior2566// :99:27: error: use of undefined value here causes illegal behavior
2567// :99:27: note: when computing vector element at index '0'
2593// :99:27: error: use of undefined value here causes illegal behavior2568// :99:27: error: use of undefined value here causes illegal behavior
2569// :99:27: note: when computing vector element at index '0'
2594// :99:27: error: use of undefined value here causes illegal behavior2570// :99:27: error: use of undefined value here causes illegal behavior
2571// :99:27: note: when computing vector element at index '0'
2595// :99:27: error: use of undefined value here causes illegal behavior2572// :99:27: error: use of undefined value here causes illegal behavior
2573// :99:27: note: when computing vector element at index '0'
2596// :99:27: error: use of undefined value here causes illegal behavior2574// :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'
2598// :99:27: error: use of undefined value here causes illegal behavior2576// :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'
2600// :99:27: error: use of undefined value here causes illegal behavior2578// :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'
2602// :99:27: error: use of undefined value here causes illegal behavior2580// :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'
2604// :99:27: error: use of undefined value here causes illegal behavior2582// :99:27: error: use of undefined value here causes illegal behavior
2605// :99:27: note: when computing vector element at index '0'2583// :99:27: note: when computing vector element at index '0'
2606// :99:27: error: use of undefined value here causes illegal behavior2584// :99:27: error: use of undefined value here causes illegal behavior
...@@ -2610,11 +2588,17 @@ const std = @import("std");...@@ -2610,11 +2588,17 @@ const std = @import("std");
2610// :99:27: error: use of undefined value here causes illegal behavior2588// :99:27: error: use of undefined value here causes illegal behavior
2611// :99:27: note: when computing vector element at index '0'2589// :99:27: note: when computing vector element at index '0'
2612// :99:27: error: use of undefined value here causes illegal behavior2590// :99:27: error: use of undefined value here causes illegal behavior
2591// :99:27: note: when computing vector element at index '1'
2613// :99:27: error: use of undefined value here causes illegal behavior2592// :99:27: error: use of undefined value here causes illegal behavior
2593// :99:27: note: when computing vector element at index '1'
2614// :99:27: error: use of undefined value here causes illegal behavior2594// :99:27: error: use of undefined value here causes illegal behavior
2595// :99:27: note: when computing vector element at index '1'
2615// :99:27: error: use of undefined value here causes illegal behavior2596// :99:27: error: use of undefined value here causes illegal behavior
2597// :99:27: note: when computing vector element at index '1'
2616// :99:27: error: use of undefined value here causes illegal behavior2598// :99:27: error: use of undefined value here causes illegal behavior
2599// :99:27: note: when computing vector element at index '1'
2617// :99:27: error: use of undefined value here causes illegal behavior2600// :99:27: error: use of undefined value here causes illegal behavior
2601// :99:27: note: when computing vector element at index '1'
2618// :99:27: error: use of undefined value here causes illegal behavior2602// :99:27: error: use of undefined value here causes illegal behavior
2619// :99:27: note: when computing vector element at index '1'2603// :99:27: note: when computing vector element at index '1'
2620// :99:27: error: use of undefined value here causes illegal behavior2604// :99:27: error: use of undefined value here causes illegal behavior
...@@ -2624,19 +2608,25 @@ const std = @import("std");...@@ -2624,19 +2608,25 @@ const std = @import("std");
2624// :99:27: error: use of undefined value here causes illegal behavior2608// :99:27: error: use of undefined value here causes illegal behavior
2625// :99:27: note: when computing vector element at index '1'2609// :99:27: note: when computing vector element at index '1'
2626// :99:27: error: use of undefined value here causes illegal behavior2610// :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'
2628// :99:27: error: use of undefined value here causes illegal behavior2612// :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'
2630// :99:27: error: use of undefined value here causes illegal behavior2614// :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'
2632// :99:27: error: use of undefined value here causes illegal behavior2616// :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'
2634// :99:27: error: use of undefined value here causes illegal behavior2618// :99:27: error: use of undefined value here causes illegal behavior
2619// :99:27: note: when computing vector element at index '1'
2635// :99:27: error: use of undefined value here causes illegal behavior2620// :99:27: error: use of undefined value here causes illegal behavior
2621// :99:27: note: when computing vector element at index '1'
2636// :99:27: error: use of undefined value here causes illegal behavior2622// :99:27: error: use of undefined value here causes illegal behavior
2623// :99:27: note: when computing vector element at index '1'
2637// :99:27: error: use of undefined value here causes illegal behavior2624// :99:27: error: use of undefined value here causes illegal behavior
2625// :99:27: note: when computing vector element at index '1'
2638// :99:27: error: use of undefined value here causes illegal behavior2626// :99:27: error: use of undefined value here causes illegal behavior
2627// :99:27: note: when computing vector element at index '1'
2639// :99:27: error: use of undefined value here causes illegal behavior2628// :99:27: error: use of undefined value here causes illegal behavior
2629// :99:27: note: when computing vector element at index '1'
2640// :99:27: error: use of undefined value here causes illegal behavior2630// :99:27: error: use of undefined value here causes illegal behavior
2641// :99:27: note: when computing vector element at index '1'2631// :99:27: note: when computing vector element at index '1'
2642// :99:27: error: use of undefined value here causes illegal behavior2632// :99:27: error: use of undefined value here causes illegal behavior
...@@ -2646,19 +2636,25 @@ const std = @import("std");...@@ -2646,19 +2636,25 @@ const std = @import("std");
2646// :99:27: error: use of undefined value here causes illegal behavior2636// :99:27: error: use of undefined value here causes illegal behavior
2647// :99:27: note: when computing vector element at index '1'2637// :99:27: note: when computing vector element at index '1'
2648// :99:27: error: use of undefined value here causes illegal behavior2638// :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'
2650// :99:27: error: use of undefined value here causes illegal behavior2640// :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'
2652// :99:27: error: use of undefined value here causes illegal behavior2642// :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'
2654// :99:27: error: use of undefined value here causes illegal behavior2644// :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'
2656// :99:27: error: use of undefined value here causes illegal behavior2646// :99:27: error: use of undefined value here causes illegal behavior
2647// :99:27: note: when computing vector element at index '1'
2657// :99:27: error: use of undefined value here causes illegal behavior2648// :99:27: error: use of undefined value here causes illegal behavior
2649// :99:27: note: when computing vector element at index '1'
2658// :99:27: error: use of undefined value here causes illegal behavior2650// :99:27: error: use of undefined value here causes illegal behavior
2651// :99:27: note: when computing vector element at index '1'
2659// :99:27: error: use of undefined value here causes illegal behavior2652// :99:27: error: use of undefined value here causes illegal behavior
2653// :99:27: note: when computing vector element at index '1'
2660// :99:27: error: use of undefined value here causes illegal behavior2654// :99:27: error: use of undefined value here causes illegal behavior
2655// :99:27: note: when computing vector element at index '1'
2661// :99:27: error: use of undefined value here causes illegal behavior2656// :99:27: error: use of undefined value here causes illegal behavior
2657// :99:27: note: when computing vector element at index '1'
2662// :99:27: error: use of undefined value here causes illegal behavior2658// :99:27: error: use of undefined value here causes illegal behavior
2663// :99:27: note: when computing vector element at index '1'2659// :99:27: note: when computing vector element at index '1'
2664// :99:27: error: use of undefined value here causes illegal behavior2660// :99:27: error: use of undefined value here causes illegal behavior
...@@ -2668,13 +2664,17 @@ const std = @import("std");...@@ -2668,13 +2664,17 @@ const std = @import("std");
2668// :99:27: error: use of undefined value here causes illegal behavior2664// :99:27: error: use of undefined value here causes illegal behavior
2669// :99:27: note: when computing vector element at index '1'2665// :99:27: note: when computing vector element at index '1'
2670// :99:27: error: use of undefined value here causes illegal behavior2666// :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'
2672// :99:27: error: use of undefined value here causes illegal behavior2668// :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'
2674// :99:27: error: use of undefined value here causes illegal behavior2670// :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'
2676// :99:27: error: use of undefined value here causes illegal behavior2672// :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'
2678// :103:27: error: use of undefined value here causes illegal behavior2678// :103:27: error: use of undefined value here causes illegal behavior
2679// :103:27: error: use of undefined value here causes illegal behavior2679// :103:27: error: use of undefined value here causes illegal behavior
2680// :103:27: error: use of undefined value here causes illegal behavior2680// :103:27: error: use of undefined value here causes illegal behavior
...@@ -2682,21 +2682,13 @@ const std = @import("std");...@@ -2682,21 +2682,13 @@ const std = @import("std");
2682// :103:27: error: use of undefined value here causes illegal behavior2682// :103:27: error: use of undefined value here causes illegal behavior
2683// :103:27: error: use of undefined value here causes illegal behavior2683// :103:27: error: use of undefined value here causes illegal behavior
2684// :103:27: error: use of undefined value here causes illegal behavior2684// :103:27: error: use of undefined value here causes illegal behavior
2685// :103:27: note: when computing vector element at index '1'
2686// :103:27: error: use of undefined value here causes illegal behavior2685// :103:27: error: use of undefined value here causes illegal behavior
2687// :103:27: note: when computing vector element at index '1'
2688// :103:27: error: use of undefined value here causes illegal behavior2686// :103:27: error: use of undefined value here causes illegal behavior
2689// :103:27: note: when computing vector element at index '1'
2690// :103:27: error: use of undefined value here causes illegal behavior2687// :103:27: error: use of undefined value here causes illegal behavior
2691// :103:27: note: when computing vector element at index '1'
2692// :103:27: error: use of undefined value here causes illegal behavior2688// :103:27: error: use of undefined value here causes illegal behavior
2693// :103:27: note: when computing vector element at index '0'
2694// :103:27: error: use of undefined value here causes illegal behavior2689// :103:27: error: use of undefined value here causes illegal behavior
2695// :103:27: note: when computing vector element at index '0'
2696// :103:27: error: use of undefined value here causes illegal behavior2690// :103:27: error: use of undefined value here causes illegal behavior
2697// :103:27: note: when computing vector element at index '0'
2698// :103:27: error: use of undefined value here causes illegal behavior2691// :103:27: error: use of undefined value here causes illegal behavior
2699// :103:27: note: when computing vector element at index '0'
2700// :103:27: error: use of undefined value here causes illegal behavior2692// :103:27: error: use of undefined value here causes illegal behavior
2701// :103:27: error: use of undefined value here causes illegal behavior2693// :103:27: error: use of undefined value here causes illegal behavior
2702// :103:27: error: use of undefined value here causes illegal behavior2694// :103:27: error: use of undefined value here causes illegal behavior
...@@ -2704,21 +2696,13 @@ const std = @import("std");...@@ -2704,21 +2696,13 @@ const std = @import("std");
2704// :103:27: error: use of undefined value here causes illegal behavior2696// :103:27: error: use of undefined value here causes illegal behavior
2705// :103:27: error: use of undefined value here causes illegal behavior2697// :103:27: error: use of undefined value here causes illegal behavior
2706// :103:27: error: use of undefined value here causes illegal behavior2698// :103:27: error: use of undefined value here causes illegal behavior
2707// :103:27: note: when computing vector element at index '1'
2708// :103:27: error: use of undefined value here causes illegal behavior2699// :103:27: error: use of undefined value here causes illegal behavior
2709// :103:27: note: when computing vector element at index '1'
2710// :103:27: error: use of undefined value here causes illegal behavior2700// :103:27: error: use of undefined value here causes illegal behavior
2711// :103:27: note: when computing vector element at index '1'
2712// :103:27: error: use of undefined value here causes illegal behavior2701// :103:27: error: use of undefined value here causes illegal behavior
2713// :103:27: note: when computing vector element at index '1'
2714// :103:27: error: use of undefined value here causes illegal behavior2702// :103:27: error: use of undefined value here causes illegal behavior
2715// :103:27: note: when computing vector element at index '0'
2716// :103:27: error: use of undefined value here causes illegal behavior2703// :103:27: error: use of undefined value here causes illegal behavior
2717// :103:27: note: when computing vector element at index '0'
2718// :103:27: error: use of undefined value here causes illegal behavior2704// :103:27: error: use of undefined value here causes illegal behavior
2719// :103:27: note: when computing vector element at index '0'
2720// :103:27: error: use of undefined value here causes illegal behavior2705// :103:27: error: use of undefined value here causes illegal behavior
2721// :103:27: note: when computing vector element at index '0'
2722// :103:27: error: use of undefined value here causes illegal behavior2706// :103:27: error: use of undefined value here causes illegal behavior
2723// :103:27: error: use of undefined value here causes illegal behavior2707// :103:27: error: use of undefined value here causes illegal behavior
2724// :103:27: error: use of undefined value here causes illegal behavior2708// :103:27: error: use of undefined value here causes illegal behavior
...@@ -2726,21 +2710,13 @@ const std = @import("std");...@@ -2726,21 +2710,13 @@ const std = @import("std");
2726// :103:27: error: use of undefined value here causes illegal behavior2710// :103:27: error: use of undefined value here causes illegal behavior
2727// :103:27: error: use of undefined value here causes illegal behavior2711// :103:27: error: use of undefined value here causes illegal behavior
2728// :103:27: error: use of undefined value here causes illegal behavior2712// :103:27: error: use of undefined value here causes illegal behavior
2729// :103:27: note: when computing vector element at index '1'
2730// :103:27: error: use of undefined value here causes illegal behavior2713// :103:27: error: use of undefined value here causes illegal behavior
2731// :103:27: note: when computing vector element at index '1'
2732// :103:27: error: use of undefined value here causes illegal behavior2714// :103:27: error: use of undefined value here causes illegal behavior
2733// :103:27: note: when computing vector element at index '1'
2734// :103:27: error: use of undefined value here causes illegal behavior2715// :103:27: error: use of undefined value here causes illegal behavior
2735// :103:27: note: when computing vector element at index '1'
2736// :103:27: error: use of undefined value here causes illegal behavior2716// :103:27: error: use of undefined value here causes illegal behavior
2737// :103:27: note: when computing vector element at index '0'
2738// :103:27: error: use of undefined value here causes illegal behavior2717// :103:27: error: use of undefined value here causes illegal behavior
2739// :103:27: note: when computing vector element at index '0'
2740// :103:27: error: use of undefined value here causes illegal behavior2718// :103:27: error: use of undefined value here causes illegal behavior
2741// :103:27: note: when computing vector element at index '0'
2742// :103:27: error: use of undefined value here causes illegal behavior2719// :103:27: error: use of undefined value here causes illegal behavior
2743// :103:27: note: when computing vector element at index '0'
2744// :103:27: error: use of undefined value here causes illegal behavior2720// :103:27: error: use of undefined value here causes illegal behavior
2745// :103:27: error: use of undefined value here causes illegal behavior2721// :103:27: error: use of undefined value here causes illegal behavior
2746// :103:27: error: use of undefined value here causes illegal behavior2722// :103:27: error: use of undefined value here causes illegal behavior
...@@ -2748,21 +2724,13 @@ const std = @import("std");...@@ -2748,21 +2724,13 @@ const std = @import("std");
2748// :103:27: error: use of undefined value here causes illegal behavior2724// :103:27: error: use of undefined value here causes illegal behavior
2749// :103:27: error: use of undefined value here causes illegal behavior2725// :103:27: error: use of undefined value here causes illegal behavior
2750// :103:27: error: use of undefined value here causes illegal behavior2726// :103:27: error: use of undefined value here causes illegal behavior
2751// :103:27: note: when computing vector element at index '1'
2752// :103:27: error: use of undefined value here causes illegal behavior2727// :103:27: error: use of undefined value here causes illegal behavior
2753// :103:27: note: when computing vector element at index '1'
2754// :103:27: error: use of undefined value here causes illegal behavior2728// :103:27: error: use of undefined value here causes illegal behavior
2755// :103:27: note: when computing vector element at index '1'
2756// :103:27: error: use of undefined value here causes illegal behavior2729// :103:27: error: use of undefined value here causes illegal behavior
2757// :103:27: note: when computing vector element at index '1'
2758// :103:27: error: use of undefined value here causes illegal behavior2730// :103:27: error: use of undefined value here causes illegal behavior
2759// :103:27: note: when computing vector element at index '0'
2760// :103:27: error: use of undefined value here causes illegal behavior2731// :103:27: error: use of undefined value here causes illegal behavior
2761// :103:27: note: when computing vector element at index '0'
2762// :103:27: error: use of undefined value here causes illegal behavior2732// :103:27: error: use of undefined value here causes illegal behavior
2763// :103:27: note: when computing vector element at index '0'
2764// :103:27: error: use of undefined value here causes illegal behavior2733// :103:27: error: use of undefined value here causes illegal behavior
2765// :103:27: note: when computing vector element at index '0'
2766// :103:27: error: use of undefined value here causes illegal behavior2734// :103:27: error: use of undefined value here causes illegal behavior
2767// :103:27: error: use of undefined value here causes illegal behavior2735// :103:27: error: use of undefined value here causes illegal behavior
2768// :103:27: error: use of undefined value here causes illegal behavior2736// :103:27: error: use of undefined value here causes illegal behavior
...@@ -2770,13 +2738,9 @@ const std = @import("std");...@@ -2770,13 +2738,9 @@ const std = @import("std");
2770// :103:27: error: use of undefined value here causes illegal behavior2738// :103:27: error: use of undefined value here causes illegal behavior
2771// :103:27: error: use of undefined value here causes illegal behavior2739// :103:27: error: use of undefined value here causes illegal behavior
2772// :103:27: error: use of undefined value here causes illegal behavior2740// :103:27: error: use of undefined value here causes illegal behavior
2773// :103:27: note: when computing vector element at index '1'
2774// :103:27: error: use of undefined value here causes illegal behavior2741// :103:27: error: use of undefined value here causes illegal behavior
2775// :103:27: note: when computing vector element at index '1'
2776// :103:27: error: use of undefined value here causes illegal behavior2742// :103:27: error: use of undefined value here causes illegal behavior
2777// :103:27: note: when computing vector element at index '1'
2778// :103:27: error: use of undefined value here causes illegal behavior2743// :103:27: error: use of undefined value here causes illegal behavior
2779// :103:27: note: when computing vector element at index '1'
2780// :103:27: error: use of undefined value here causes illegal behavior2744// :103:27: error: use of undefined value here causes illegal behavior
2781// :103:27: note: when computing vector element at index '0'2745// :103:27: note: when computing vector element at index '0'
2782// :103:27: error: use of undefined value here causes illegal behavior2746// :103:27: error: use of undefined value here causes illegal behavior
...@@ -2786,19 +2750,21 @@ const std = @import("std");...@@ -2786,19 +2750,21 @@ const std = @import("std");
2786// :103:27: error: use of undefined value here causes illegal behavior2750// :103:27: error: use of undefined value here causes illegal behavior
2787// :103:27: note: when computing vector element at index '0'2751// :103:27: note: when computing vector element at index '0'
2788// :103:27: error: use of undefined value here causes illegal behavior2752// :103:27: error: use of undefined value here causes illegal behavior
2753// :103:27: note: when computing vector element at index '0'
2789// :103:27: error: use of undefined value here causes illegal behavior2754// :103:27: error: use of undefined value here causes illegal behavior
2755// :103:27: note: when computing vector element at index '0'
2790// :103:27: error: use of undefined value here causes illegal behavior2756// :103:27: error: use of undefined value here causes illegal behavior
2757// :103:27: note: when computing vector element at index '0'
2791// :103:27: error: use of undefined value here causes illegal behavior2758// :103:27: error: use of undefined value here causes illegal behavior
2759// :103:27: note: when computing vector element at index '0'
2792// :103:27: error: use of undefined value here causes illegal behavior2760// :103:27: error: use of undefined value here causes illegal behavior
2761// :103:27: note: when computing vector element at index '0'
2793// :103:27: error: use of undefined value here causes illegal behavior2762// :103:27: error: use of undefined value here causes illegal behavior
2763// :103:27: note: when computing vector element at index '0'
2794// :103:27: error: use of undefined value here causes illegal behavior2764// :103:27: error: use of undefined value here causes illegal behavior
2795// :103:27: note: when computing vector element at index '1'2765// :103:27: note: when computing vector element at index '0'
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'
2800// :103:27: error: use of undefined value here causes illegal behavior2766// :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'
2802// :103:27: error: use of undefined value here causes illegal behavior2768// :103:27: error: use of undefined value here causes illegal behavior
2803// :103:27: note: when computing vector element at index '0'2769// :103:27: note: when computing vector element at index '0'
2804// :103:27: error: use of undefined value here causes illegal behavior2770// :103:27: error: use of undefined value here causes illegal behavior
...@@ -2808,19 +2774,25 @@ const std = @import("std");...@@ -2808,19 +2774,25 @@ const std = @import("std");
2808// :103:27: error: use of undefined value here causes illegal behavior2774// :103:27: error: use of undefined value here causes illegal behavior
2809// :103:27: note: when computing vector element at index '0'2775// :103:27: note: when computing vector element at index '0'
2810// :103:27: error: use of undefined value here causes illegal behavior2776// :103:27: error: use of undefined value here causes illegal behavior
2777// :103:27: note: when computing vector element at index '0'
2811// :103:27: error: use of undefined value here causes illegal behavior2778// :103:27: error: use of undefined value here causes illegal behavior
2779// :103:27: note: when computing vector element at index '0'
2812// :103:27: error: use of undefined value here causes illegal behavior2780// :103:27: error: use of undefined value here causes illegal behavior
2781// :103:27: note: when computing vector element at index '0'
2813// :103:27: error: use of undefined value here causes illegal behavior2782// :103:27: error: use of undefined value here causes illegal behavior
2783// :103:27: note: when computing vector element at index '0'
2814// :103:27: error: use of undefined value here causes illegal behavior2784// :103:27: error: use of undefined value here causes illegal behavior
2785// :103:27: note: when computing vector element at index '0'
2815// :103:27: error: use of undefined value here causes illegal behavior2786// :103:27: error: use of undefined value here causes illegal behavior
2787// :103:27: note: when computing vector element at index '0'
2816// :103:27: error: use of undefined value here causes illegal behavior2788// :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'
2818// :103:27: error: use of undefined value here causes illegal behavior2790// :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'
2820// :103:27: error: use of undefined value here causes illegal behavior2792// :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'
2822// :103:27: error: use of undefined value here causes illegal behavior2794// :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'
2824// :103:27: error: use of undefined value here causes illegal behavior2796// :103:27: error: use of undefined value here causes illegal behavior
2825// :103:27: note: when computing vector element at index '0'2797// :103:27: note: when computing vector element at index '0'
2826// :103:27: error: use of undefined value here causes illegal behavior2798// :103:27: error: use of undefined value here causes illegal behavior
...@@ -2830,19 +2802,25 @@ const std = @import("std");...@@ -2830,19 +2802,25 @@ const std = @import("std");
2830// :103:27: error: use of undefined value here causes illegal behavior2802// :103:27: error: use of undefined value here causes illegal behavior
2831// :103:27: note: when computing vector element at index '0'2803// :103:27: note: when computing vector element at index '0'
2832// :103:27: error: use of undefined value here causes illegal behavior2804// :103:27: error: use of undefined value here causes illegal behavior
2805// :103:27: note: when computing vector element at index '0'
2833// :103:27: error: use of undefined value here causes illegal behavior2806// :103:27: error: use of undefined value here causes illegal behavior
2807// :103:27: note: when computing vector element at index '0'
2834// :103:27: error: use of undefined value here causes illegal behavior2808// :103:27: error: use of undefined value here causes illegal behavior
2809// :103:27: note: when computing vector element at index '0'
2835// :103:27: error: use of undefined value here causes illegal behavior2810// :103:27: error: use of undefined value here causes illegal behavior
2811// :103:27: note: when computing vector element at index '0'
2836// :103:27: error: use of undefined value here causes illegal behavior2812// :103:27: error: use of undefined value here causes illegal behavior
2813// :103:27: note: when computing vector element at index '0'
2837// :103:27: error: use of undefined value here causes illegal behavior2814// :103:27: error: use of undefined value here causes illegal behavior
2815// :103:27: note: when computing vector element at index '0'
2838// :103:27: error: use of undefined value here causes illegal behavior2816// :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'
2840// :103:27: error: use of undefined value here causes illegal behavior2818// :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'
2842// :103:27: error: use of undefined value here causes illegal behavior2820// :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'
2844// :103:27: error: use of undefined value here causes illegal behavior2822// :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'
2846// :103:27: error: use of undefined value here causes illegal behavior2824// :103:27: error: use of undefined value here causes illegal behavior
2847// :103:27: note: when computing vector element at index '0'2825// :103:27: note: when computing vector element at index '0'
2848// :103:27: error: use of undefined value here causes illegal behavior2826// :103:27: error: use of undefined value here causes illegal behavior
...@@ -2852,11 +2830,17 @@ const std = @import("std");...@@ -2852,11 +2830,17 @@ const std = @import("std");
2852// :103:27: error: use of undefined value here causes illegal behavior2830// :103:27: error: use of undefined value here causes illegal behavior
2853// :103:27: note: when computing vector element at index '0'2831// :103:27: note: when computing vector element at index '0'
2854// :103:27: error: use of undefined value here causes illegal behavior2832// :103:27: error: use of undefined value here causes illegal behavior
2833// :103:27: note: when computing vector element at index '1'
2855// :103:27: error: use of undefined value here causes illegal behavior2834// :103:27: error: use of undefined value here causes illegal behavior
2835// :103:27: note: when computing vector element at index '1'
2856// :103:27: error: use of undefined value here causes illegal behavior2836// :103:27: error: use of undefined value here causes illegal behavior
2837// :103:27: note: when computing vector element at index '1'
2857// :103:27: error: use of undefined value here causes illegal behavior2838// :103:27: error: use of undefined value here causes illegal behavior
2839// :103:27: note: when computing vector element at index '1'
2858// :103:27: error: use of undefined value here causes illegal behavior2840// :103:27: error: use of undefined value here causes illegal behavior
2841// :103:27: note: when computing vector element at index '1'
2859// :103:27: error: use of undefined value here causes illegal behavior2842// :103:27: error: use of undefined value here causes illegal behavior
2843// :103:27: note: when computing vector element at index '1'
2860// :103:27: error: use of undefined value here causes illegal behavior2844// :103:27: error: use of undefined value here causes illegal behavior
2861// :103:27: note: when computing vector element at index '1'2845// :103:27: note: when computing vector element at index '1'
2862// :103:27: error: use of undefined value here causes illegal behavior2846// :103:27: error: use of undefined value here causes illegal behavior
...@@ -2866,19 +2850,25 @@ const std = @import("std");...@@ -2866,19 +2850,25 @@ const std = @import("std");
2866// :103:27: error: use of undefined value here causes illegal behavior2850// :103:27: error: use of undefined value here causes illegal behavior
2867// :103:27: note: when computing vector element at index '1'2851// :103:27: note: when computing vector element at index '1'
2868// :103:27: error: use of undefined value here causes illegal behavior2852// :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'
2870// :103:27: error: use of undefined value here causes illegal behavior2854// :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'
2872// :103:27: error: use of undefined value here causes illegal behavior2856// :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'
2874// :103:27: error: use of undefined value here causes illegal behavior2858// :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'
2876// :103:27: error: use of undefined value here causes illegal behavior2860// :103:27: error: use of undefined value here causes illegal behavior
2861// :103:27: note: when computing vector element at index '1'
2877// :103:27: error: use of undefined value here causes illegal behavior2862// :103:27: error: use of undefined value here causes illegal behavior
2863// :103:27: note: when computing vector element at index '1'
2878// :103:27: error: use of undefined value here causes illegal behavior2864// :103:27: error: use of undefined value here causes illegal behavior
2865// :103:27: note: when computing vector element at index '1'
2879// :103:27: error: use of undefined value here causes illegal behavior2866// :103:27: error: use of undefined value here causes illegal behavior
2867// :103:27: note: when computing vector element at index '1'
2880// :103:27: error: use of undefined value here causes illegal behavior2868// :103:27: error: use of undefined value here causes illegal behavior
2869// :103:27: note: when computing vector element at index '1'
2881// :103:27: error: use of undefined value here causes illegal behavior2870// :103:27: error: use of undefined value here causes illegal behavior
2871// :103:27: note: when computing vector element at index '1'
2882// :103:27: error: use of undefined value here causes illegal behavior2872// :103:27: error: use of undefined value here causes illegal behavior
2883// :103:27: note: when computing vector element at index '1'2873// :103:27: note: when computing vector element at index '1'
2884// :103:27: error: use of undefined value here causes illegal behavior2874// :103:27: error: use of undefined value here causes illegal behavior
...@@ -2888,19 +2878,25 @@ const std = @import("std");...@@ -2888,19 +2878,25 @@ const std = @import("std");
2888// :103:27: error: use of undefined value here causes illegal behavior2878// :103:27: error: use of undefined value here causes illegal behavior
2889// :103:27: note: when computing vector element at index '1'2879// :103:27: note: when computing vector element at index '1'
2890// :103:27: error: use of undefined value here causes illegal behavior2880// :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'
2892// :103:27: error: use of undefined value here causes illegal behavior2882// :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'
2894// :103:27: error: use of undefined value here causes illegal behavior2884// :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'
2896// :103:27: error: use of undefined value here causes illegal behavior2886// :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'
2898// :103:27: error: use of undefined value here causes illegal behavior2888// :103:27: error: use of undefined value here causes illegal behavior
2889// :103:27: note: when computing vector element at index '1'
2899// :103:27: error: use of undefined value here causes illegal behavior2890// :103:27: error: use of undefined value here causes illegal behavior
2891// :103:27: note: when computing vector element at index '1'
2900// :103:27: error: use of undefined value here causes illegal behavior2892// :103:27: error: use of undefined value here causes illegal behavior
2893// :103:27: note: when computing vector element at index '1'
2901// :103:27: error: use of undefined value here causes illegal behavior2894// :103:27: error: use of undefined value here causes illegal behavior
2895// :103:27: note: when computing vector element at index '1'
2902// :103:27: error: use of undefined value here causes illegal behavior2896// :103:27: error: use of undefined value here causes illegal behavior
2897// :103:27: note: when computing vector element at index '1'
2903// :103:27: error: use of undefined value here causes illegal behavior2898// :103:27: error: use of undefined value here causes illegal behavior
2899// :103:27: note: when computing vector element at index '1'
2904// :103:27: error: use of undefined value here causes illegal behavior2900// :103:27: error: use of undefined value here causes illegal behavior
2905// :103:27: note: when computing vector element at index '1'2901// :103:27: note: when computing vector element at index '1'
2906// :103:27: error: use of undefined value here causes illegal behavior2902// :103:27: error: use of undefined value here causes illegal behavior
...@@ -2910,13 +2906,17 @@ const std = @import("std");...@@ -2910,13 +2906,17 @@ const std = @import("std");
2910// :103:27: error: use of undefined value here causes illegal behavior2906// :103:27: error: use of undefined value here causes illegal behavior
2911// :103:27: note: when computing vector element at index '1'2907// :103:27: note: when computing vector element at index '1'
2912// :103:27: error: use of undefined value here causes illegal behavior2908// :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'
2914// :103:27: error: use of undefined value here causes illegal behavior2910// :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'
2916// :103:27: error: use of undefined value here causes illegal behavior2912// :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'
2918// :103:27: error: use of undefined value here causes illegal behavior2914// :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'
2920// :107:27: error: use of undefined value here causes illegal behavior2920// :107:27: error: use of undefined value here causes illegal behavior
2921// :107:27: error: use of undefined value here causes illegal behavior2921// :107:27: error: use of undefined value here causes illegal behavior
2922// :107:27: error: use of undefined value here causes illegal behavior2922// :107:27: error: use of undefined value here causes illegal behavior
...@@ -2924,21 +2924,13 @@ const std = @import("std");...@@ -2924,21 +2924,13 @@ const std = @import("std");
2924// :107:27: error: use of undefined value here causes illegal behavior2924// :107:27: error: use of undefined value here causes illegal behavior
2925// :107:27: error: use of undefined value here causes illegal behavior2925// :107:27: error: use of undefined value here causes illegal behavior
2926// :107:27: error: use of undefined value here causes illegal behavior2926// :107:27: error: use of undefined value here causes illegal behavior
2927// :107:27: note: when computing vector element at index '1'
2928// :107:27: error: use of undefined value here causes illegal behavior2927// :107:27: error: use of undefined value here causes illegal behavior
2929// :107:27: note: when computing vector element at index '1'
2930// :107:27: error: use of undefined value here causes illegal behavior2928// :107:27: error: use of undefined value here causes illegal behavior
2931// :107:27: note: when computing vector element at index '1'
2932// :107:27: error: use of undefined value here causes illegal behavior2929// :107:27: error: use of undefined value here causes illegal behavior
2933// :107:27: note: when computing vector element at index '1'
2934// :107:27: error: use of undefined value here causes illegal behavior2930// :107:27: error: use of undefined value here causes illegal behavior
2935// :107:27: note: when computing vector element at index '0'
2936// :107:27: error: use of undefined value here causes illegal behavior2931// :107:27: error: use of undefined value here causes illegal behavior
2937// :107:27: note: when computing vector element at index '0'
2938// :107:27: error: use of undefined value here causes illegal behavior2932// :107:27: error: use of undefined value here causes illegal behavior
2939// :107:27: note: when computing vector element at index '0'
2940// :107:27: error: use of undefined value here causes illegal behavior2933// :107:27: error: use of undefined value here causes illegal behavior
2941// :107:27: note: when computing vector element at index '0'
2942// :107:27: error: use of undefined value here causes illegal behavior2934// :107:27: error: use of undefined value here causes illegal behavior
2943// :107:27: error: use of undefined value here causes illegal behavior2935// :107:27: error: use of undefined value here causes illegal behavior
2944// :107:27: error: use of undefined value here causes illegal behavior2936// :107:27: error: use of undefined value here causes illegal behavior
...@@ -2946,21 +2938,13 @@ const std = @import("std");...@@ -2946,21 +2938,13 @@ const std = @import("std");
2946// :107:27: error: use of undefined value here causes illegal behavior2938// :107:27: error: use of undefined value here causes illegal behavior
2947// :107:27: error: use of undefined value here causes illegal behavior2939// :107:27: error: use of undefined value here causes illegal behavior
2948// :107:27: error: use of undefined value here causes illegal behavior2940// :107:27: error: use of undefined value here causes illegal behavior
2949// :107:27: note: when computing vector element at index '1'
2950// :107:27: error: use of undefined value here causes illegal behavior2941// :107:27: error: use of undefined value here causes illegal behavior
2951// :107:27: note: when computing vector element at index '1'
2952// :107:27: error: use of undefined value here causes illegal behavior2942// :107:27: error: use of undefined value here causes illegal behavior
2953// :107:27: note: when computing vector element at index '1'
2954// :107:27: error: use of undefined value here causes illegal behavior2943// :107:27: error: use of undefined value here causes illegal behavior
2955// :107:27: note: when computing vector element at index '1'
2956// :107:27: error: use of undefined value here causes illegal behavior2944// :107:27: error: use of undefined value here causes illegal behavior
2957// :107:27: note: when computing vector element at index '0'
2958// :107:27: error: use of undefined value here causes illegal behavior2945// :107:27: error: use of undefined value here causes illegal behavior
2959// :107:27: note: when computing vector element at index '0'
2960// :107:27: error: use of undefined value here causes illegal behavior2946// :107:27: error: use of undefined value here causes illegal behavior
2961// :107:27: note: when computing vector element at index '0'
2962// :107:27: error: use of undefined value here causes illegal behavior2947// :107:27: error: use of undefined value here causes illegal behavior
2963// :107:27: note: when computing vector element at index '0'
2964// :107:27: error: use of undefined value here causes illegal behavior2948// :107:27: error: use of undefined value here causes illegal behavior
2965// :107:27: error: use of undefined value here causes illegal behavior2949// :107:27: error: use of undefined value here causes illegal behavior
2966// :107:27: error: use of undefined value here causes illegal behavior2950// :107:27: error: use of undefined value here causes illegal behavior
...@@ -2968,21 +2952,13 @@ const std = @import("std");...@@ -2968,21 +2952,13 @@ const std = @import("std");
2968// :107:27: error: use of undefined value here causes illegal behavior2952// :107:27: error: use of undefined value here causes illegal behavior
2969// :107:27: error: use of undefined value here causes illegal behavior2953// :107:27: error: use of undefined value here causes illegal behavior
2970// :107:27: error: use of undefined value here causes illegal behavior2954// :107:27: error: use of undefined value here causes illegal behavior
2971// :107:27: note: when computing vector element at index '1'
2972// :107:27: error: use of undefined value here causes illegal behavior2955// :107:27: error: use of undefined value here causes illegal behavior
2973// :107:27: note: when computing vector element at index '1'
2974// :107:27: error: use of undefined value here causes illegal behavior2956// :107:27: error: use of undefined value here causes illegal behavior
2975// :107:27: note: when computing vector element at index '1'
2976// :107:27: error: use of undefined value here causes illegal behavior2957// :107:27: error: use of undefined value here causes illegal behavior
2977// :107:27: note: when computing vector element at index '1'
2978// :107:27: error: use of undefined value here causes illegal behavior2958// :107:27: error: use of undefined value here causes illegal behavior
2979// :107:27: note: when computing vector element at index '0'
2980// :107:27: error: use of undefined value here causes illegal behavior2959// :107:27: error: use of undefined value here causes illegal behavior
2981// :107:27: note: when computing vector element at index '0'
2982// :107:27: error: use of undefined value here causes illegal behavior2960// :107:27: error: use of undefined value here causes illegal behavior
2983// :107:27: note: when computing vector element at index '0'
2984// :107:27: error: use of undefined value here causes illegal behavior2961// :107:27: error: use of undefined value here causes illegal behavior
2985// :107:27: note: when computing vector element at index '0'
2986// :107:27: error: use of undefined value here causes illegal behavior2962// :107:27: error: use of undefined value here causes illegal behavior
2987// :107:27: error: use of undefined value here causes illegal behavior2963// :107:27: error: use of undefined value here causes illegal behavior
2988// :107:27: error: use of undefined value here causes illegal behavior2964// :107:27: error: use of undefined value here causes illegal behavior
...@@ -2990,21 +2966,13 @@ const std = @import("std");...@@ -2990,21 +2966,13 @@ const std = @import("std");
2990// :107:27: error: use of undefined value here causes illegal behavior2966// :107:27: error: use of undefined value here causes illegal behavior
2991// :107:27: error: use of undefined value here causes illegal behavior2967// :107:27: error: use of undefined value here causes illegal behavior
2992// :107:27: error: use of undefined value here causes illegal behavior2968// :107:27: error: use of undefined value here causes illegal behavior
2993// :107:27: note: when computing vector element at index '1'
2994// :107:27: error: use of undefined value here causes illegal behavior2969// :107:27: error: use of undefined value here causes illegal behavior
2995// :107:27: note: when computing vector element at index '1'
2996// :107:27: error: use of undefined value here causes illegal behavior2970// :107:27: error: use of undefined value here causes illegal behavior
2997// :107:27: note: when computing vector element at index '1'
2998// :107:27: error: use of undefined value here causes illegal behavior2971// :107:27: error: use of undefined value here causes illegal behavior
2999// :107:27: note: when computing vector element at index '1'
3000// :107:27: error: use of undefined value here causes illegal behavior2972// :107:27: error: use of undefined value here causes illegal behavior
3001// :107:27: note: when computing vector element at index '0'
3002// :107:27: error: use of undefined value here causes illegal behavior2973// :107:27: error: use of undefined value here causes illegal behavior
3003// :107:27: note: when computing vector element at index '0'
3004// :107:27: error: use of undefined value here causes illegal behavior2974// :107:27: error: use of undefined value here causes illegal behavior
3005// :107:27: note: when computing vector element at index '0'
3006// :107:27: error: use of undefined value here causes illegal behavior2975// :107:27: error: use of undefined value here causes illegal behavior
3007// :107:27: note: when computing vector element at index '0'
3008// :107:27: error: use of undefined value here causes illegal behavior2976// :107:27: error: use of undefined value here causes illegal behavior
3009// :107:27: error: use of undefined value here causes illegal behavior2977// :107:27: error: use of undefined value here causes illegal behavior
3010// :107:27: error: use of undefined value here causes illegal behavior2978// :107:27: error: use of undefined value here causes illegal behavior
...@@ -3012,13 +2980,9 @@ const std = @import("std");...@@ -3012,13 +2980,9 @@ const std = @import("std");
3012// :107:27: error: use of undefined value here causes illegal behavior2980// :107:27: error: use of undefined value here causes illegal behavior
3013// :107:27: error: use of undefined value here causes illegal behavior2981// :107:27: error: use of undefined value here causes illegal behavior
3014// :107:27: error: use of undefined value here causes illegal behavior2982// :107:27: error: use of undefined value here causes illegal behavior
3015// :107:27: note: when computing vector element at index '1'
3016// :107:27: error: use of undefined value here causes illegal behavior2983// :107:27: error: use of undefined value here causes illegal behavior
3017// :107:27: note: when computing vector element at index '1'
3018// :107:27: error: use of undefined value here causes illegal behavior2984// :107:27: error: use of undefined value here causes illegal behavior
3019// :107:27: note: when computing vector element at index '1'
3020// :107:27: error: use of undefined value here causes illegal behavior2985// :107:27: error: use of undefined value here causes illegal behavior
3021// :107:27: note: when computing vector element at index '1'
3022// :107:27: error: use of undefined value here causes illegal behavior2986// :107:27: error: use of undefined value here causes illegal behavior
3023// :107:27: note: when computing vector element at index '0'2987// :107:27: note: when computing vector element at index '0'
3024// :107:27: error: use of undefined value here causes illegal behavior2988// :107:27: error: use of undefined value here causes illegal behavior
...@@ -3028,19 +2992,21 @@ const std = @import("std");...@@ -3028,19 +2992,21 @@ const std = @import("std");
3028// :107:27: error: use of undefined value here causes illegal behavior2992// :107:27: error: use of undefined value here causes illegal behavior
3029// :107:27: note: when computing vector element at index '0'2993// :107:27: note: when computing vector element at index '0'
3030// :107:27: error: use of undefined value here causes illegal behavior2994// :107:27: error: use of undefined value here causes illegal behavior
2995// :107:27: note: when computing vector element at index '0'
3031// :107:27: error: use of undefined value here causes illegal behavior2996// :107:27: error: use of undefined value here causes illegal behavior
2997// :107:27: note: when computing vector element at index '0'
3032// :107:27: error: use of undefined value here causes illegal behavior2998// :107:27: error: use of undefined value here causes illegal behavior
2999// :107:27: note: when computing vector element at index '0'
3033// :107:27: error: use of undefined value here causes illegal behavior3000// :107:27: error: use of undefined value here causes illegal behavior
3001// :107:27: note: when computing vector element at index '0'
3034// :107:27: error: use of undefined value here causes illegal behavior3002// :107:27: error: use of undefined value here causes illegal behavior
3003// :107:27: note: when computing vector element at index '0'
3035// :107:27: error: use of undefined value here causes illegal behavior3004// :107:27: error: use of undefined value here causes illegal behavior
3005// :107:27: note: when computing vector element at index '0'
3036// :107:27: error: use of undefined value here causes illegal behavior3006// :107:27: error: use of undefined value here causes illegal behavior
3037// :107:27: note: when computing vector element at index '1'3007// :107:27: note: when computing vector element at index '0'
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'
3042// :107:27: error: use of undefined value here causes illegal behavior3008// :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'
3044// :107:27: error: use of undefined value here causes illegal behavior3010// :107:27: error: use of undefined value here causes illegal behavior
3045// :107:27: note: when computing vector element at index '0'3011// :107:27: note: when computing vector element at index '0'
3046// :107:27: error: use of undefined value here causes illegal behavior3012// :107:27: error: use of undefined value here causes illegal behavior
...@@ -3050,19 +3016,25 @@ const std = @import("std");...@@ -3050,19 +3016,25 @@ const std = @import("std");
3050// :107:27: error: use of undefined value here causes illegal behavior3016// :107:27: error: use of undefined value here causes illegal behavior
3051// :107:27: note: when computing vector element at index '0'3017// :107:27: note: when computing vector element at index '0'
3052// :107:27: error: use of undefined value here causes illegal behavior3018// :107:27: error: use of undefined value here causes illegal behavior
3019// :107:27: note: when computing vector element at index '0'
3053// :107:27: error: use of undefined value here causes illegal behavior3020// :107:27: error: use of undefined value here causes illegal behavior
3021// :107:27: note: when computing vector element at index '0'
3054// :107:27: error: use of undefined value here causes illegal behavior3022// :107:27: error: use of undefined value here causes illegal behavior
3023// :107:27: note: when computing vector element at index '0'
3055// :107:27: error: use of undefined value here causes illegal behavior3024// :107:27: error: use of undefined value here causes illegal behavior
3025// :107:27: note: when computing vector element at index '0'
3056// :107:27: error: use of undefined value here causes illegal behavior3026// :107:27: error: use of undefined value here causes illegal behavior
3027// :107:27: note: when computing vector element at index '0'
3057// :107:27: error: use of undefined value here causes illegal behavior3028// :107:27: error: use of undefined value here causes illegal behavior
3029// :107:27: note: when computing vector element at index '0'
3058// :107:27: error: use of undefined value here causes illegal behavior3030// :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'
3060// :107:27: error: use of undefined value here causes illegal behavior3032// :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'
3062// :107:27: error: use of undefined value here causes illegal behavior3034// :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'
3064// :107:27: error: use of undefined value here causes illegal behavior3036// :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'
3066// :107:27: error: use of undefined value here causes illegal behavior3038// :107:27: error: use of undefined value here causes illegal behavior
3067// :107:27: note: when computing vector element at index '0'3039// :107:27: note: when computing vector element at index '0'
3068// :107:27: error: use of undefined value here causes illegal behavior3040// :107:27: error: use of undefined value here causes illegal behavior
...@@ -3072,19 +3044,25 @@ const std = @import("std");...@@ -3072,19 +3044,25 @@ const std = @import("std");
3072// :107:27: error: use of undefined value here causes illegal behavior3044// :107:27: error: use of undefined value here causes illegal behavior
3073// :107:27: note: when computing vector element at index '0'3045// :107:27: note: when computing vector element at index '0'
3074// :107:27: error: use of undefined value here causes illegal behavior3046// :107:27: error: use of undefined value here causes illegal behavior
3047// :107:27: note: when computing vector element at index '0'
3075// :107:27: error: use of undefined value here causes illegal behavior3048// :107:27: error: use of undefined value here causes illegal behavior
3049// :107:27: note: when computing vector element at index '0'
3076// :107:27: error: use of undefined value here causes illegal behavior3050// :107:27: error: use of undefined value here causes illegal behavior
3051// :107:27: note: when computing vector element at index '0'
3077// :107:27: error: use of undefined value here causes illegal behavior3052// :107:27: error: use of undefined value here causes illegal behavior
3053// :107:27: note: when computing vector element at index '0'
3078// :107:27: error: use of undefined value here causes illegal behavior3054// :107:27: error: use of undefined value here causes illegal behavior
3055// :107:27: note: when computing vector element at index '0'
3079// :107:27: error: use of undefined value here causes illegal behavior3056// :107:27: error: use of undefined value here causes illegal behavior
3057// :107:27: note: when computing vector element at index '0'
3080// :107:27: error: use of undefined value here causes illegal behavior3058// :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'
3082// :107:27: error: use of undefined value here causes illegal behavior3060// :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'
3084// :107:27: error: use of undefined value here causes illegal behavior3062// :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'
3086// :107:27: error: use of undefined value here causes illegal behavior3064// :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'
3088// :107:27: error: use of undefined value here causes illegal behavior3066// :107:27: error: use of undefined value here causes illegal behavior
3089// :107:27: note: when computing vector element at index '0'3067// :107:27: note: when computing vector element at index '0'
3090// :107:27: error: use of undefined value here causes illegal behavior3068// :107:27: error: use of undefined value here causes illegal behavior
...@@ -3094,11 +3072,17 @@ const std = @import("std");...@@ -3094,11 +3072,17 @@ const std = @import("std");
3094// :107:27: error: use of undefined value here causes illegal behavior3072// :107:27: error: use of undefined value here causes illegal behavior
3095// :107:27: note: when computing vector element at index '0'3073// :107:27: note: when computing vector element at index '0'
3096// :107:27: error: use of undefined value here causes illegal behavior3074// :107:27: error: use of undefined value here causes illegal behavior
3075// :107:27: note: when computing vector element at index '1'
3097// :107:27: error: use of undefined value here causes illegal behavior3076// :107:27: error: use of undefined value here causes illegal behavior
3077// :107:27: note: when computing vector element at index '1'
3098// :107:27: error: use of undefined value here causes illegal behavior3078// :107:27: error: use of undefined value here causes illegal behavior
3079// :107:27: note: when computing vector element at index '1'
3099// :107:27: error: use of undefined value here causes illegal behavior3080// :107:27: error: use of undefined value here causes illegal behavior
3081// :107:27: note: when computing vector element at index '1'
3100// :107:27: error: use of undefined value here causes illegal behavior3082// :107:27: error: use of undefined value here causes illegal behavior
3083// :107:27: note: when computing vector element at index '1'
3101// :107:27: error: use of undefined value here causes illegal behavior3084// :107:27: error: use of undefined value here causes illegal behavior
3085// :107:27: note: when computing vector element at index '1'
3102// :107:27: error: use of undefined value here causes illegal behavior3086// :107:27: error: use of undefined value here causes illegal behavior
3103// :107:27: note: when computing vector element at index '1'3087// :107:27: note: when computing vector element at index '1'
3104// :107:27: error: use of undefined value here causes illegal behavior3088// :107:27: error: use of undefined value here causes illegal behavior
...@@ -3108,19 +3092,25 @@ const std = @import("std");...@@ -3108,19 +3092,25 @@ const std = @import("std");
3108// :107:27: error: use of undefined value here causes illegal behavior3092// :107:27: error: use of undefined value here causes illegal behavior
3109// :107:27: note: when computing vector element at index '1'3093// :107:27: note: when computing vector element at index '1'
3110// :107:27: error: use of undefined value here causes illegal behavior3094// :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'
3112// :107:27: error: use of undefined value here causes illegal behavior3096// :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'
3114// :107:27: error: use of undefined value here causes illegal behavior3098// :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'
3116// :107:27: error: use of undefined value here causes illegal behavior3100// :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'
3118// :107:27: error: use of undefined value here causes illegal behavior3102// :107:27: error: use of undefined value here causes illegal behavior
3103// :107:27: note: when computing vector element at index '1'
3119// :107:27: error: use of undefined value here causes illegal behavior3104// :107:27: error: use of undefined value here causes illegal behavior
3105// :107:27: note: when computing vector element at index '1'
3120// :107:27: error: use of undefined value here causes illegal behavior3106// :107:27: error: use of undefined value here causes illegal behavior
3107// :107:27: note: when computing vector element at index '1'
3121// :107:27: error: use of undefined value here causes illegal behavior3108// :107:27: error: use of undefined value here causes illegal behavior
3109// :107:27: note: when computing vector element at index '1'
3122// :107:27: error: use of undefined value here causes illegal behavior3110// :107:27: error: use of undefined value here causes illegal behavior
3111// :107:27: note: when computing vector element at index '1'
3123// :107:27: error: use of undefined value here causes illegal behavior3112// :107:27: error: use of undefined value here causes illegal behavior
3113// :107:27: note: when computing vector element at index '1'
3124// :107:27: error: use of undefined value here causes illegal behavior3114// :107:27: error: use of undefined value here causes illegal behavior
3125// :107:27: note: when computing vector element at index '1'3115// :107:27: note: when computing vector element at index '1'
3126// :107:27: error: use of undefined value here causes illegal behavior3116// :107:27: error: use of undefined value here causes illegal behavior
...@@ -3130,19 +3120,29 @@ const std = @import("std");...@@ -3130,19 +3120,29 @@ const std = @import("std");
3130// :107:27: error: use of undefined value here causes illegal behavior3120// :107:27: error: use of undefined value here causes illegal behavior
3131// :107:27: note: when computing vector element at index '1'3121// :107:27: note: when computing vector element at index '1'
3132// :107:27: error: use of undefined value here causes illegal behavior3122// :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'
3134// :107:27: error: use of undefined value here causes illegal behavior3124// :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'
3136// :107:27: error: use of undefined value here causes illegal behavior3126// :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'
3138// :107:27: error: use of undefined value here causes illegal behavior3128// :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'
3140// :107:27: error: use of undefined value here causes illegal behavior3134// :107:27: error: use of undefined value here causes illegal behavior
3135// :107:27: note: when computing vector element at index '1'
3141// :107:27: error: use of undefined value here causes illegal behavior3136// :107:27: error: use of undefined value here causes illegal behavior
3137// :107:27: note: when computing vector element at index '1'
3142// :107:27: error: use of undefined value here causes illegal behavior3138// :107:27: error: use of undefined value here causes illegal behavior
3139// :107:27: note: when computing vector element at index '1'
3143// :107:27: error: use of undefined value here causes illegal behavior3140// :107:27: error: use of undefined value here causes illegal behavior
3141// :107:27: note: when computing vector element at index '1'
3144// :107:27: error: use of undefined value here causes illegal behavior3142// :107:27: error: use of undefined value here causes illegal behavior
3143// :107:27: note: when computing vector element at index '1'
3145// :107:27: error: use of undefined value here causes illegal behavior3144// :107:27: error: use of undefined value here causes illegal behavior
3145// :107:27: note: when computing vector element at index '1'
3146// :107:27: error: use of undefined value here causes illegal behavior3146// :107:27: error: use of undefined value here causes illegal behavior
3147// :107:27: note: when computing vector element at index '1'3147// :107:27: note: when computing vector element at index '1'
3148// :107:27: error: use of undefined value here causes illegal behavior3148// :107:27: error: use of undefined value here causes illegal behavior
...@@ -3152,13 +3152,13 @@ const std = @import("std");...@@ -3152,13 +3152,13 @@ const std = @import("std");
3152// :107:27: error: use of undefined value here causes illegal behavior3152// :107:27: error: use of undefined value here causes illegal behavior
3153// :107:27: note: when computing vector element at index '1'3153// :107:27: note: when computing vector element at index '1'
3154// :107:27: error: use of undefined value here causes illegal behavior3154// :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'
3156// :107:27: error: use of undefined value here causes illegal behavior3156// :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'
3158// :107:27: error: use of undefined value here causes illegal behavior3158// :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'
3160// :107:27: error: use of undefined value here causes illegal behavior3160// :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'
3162// :111:22: error: use of undefined value here causes illegal behavior3162// :111:22: error: use of undefined value here causes illegal behavior
3163// :111:22: error: use of undefined value here causes illegal behavior3163// :111:22: error: use of undefined value here causes illegal behavior
3164// :111:22: error: use of undefined value here causes illegal behavior3164// :111:22: error: use of undefined value here causes illegal behavior
...@@ -3166,21 +3166,13 @@ const std = @import("std");...@@ -3166,21 +3166,13 @@ const std = @import("std");
3166// :111:22: error: use of undefined value here causes illegal behavior3166// :111:22: error: use of undefined value here causes illegal behavior
3167// :111:22: error: use of undefined value here causes illegal behavior3167// :111:22: error: use of undefined value here causes illegal behavior
3168// :111:22: error: use of undefined value here causes illegal behavior3168// :111:22: error: use of undefined value here causes illegal behavior
3169// :111:22: note: when computing vector element at index '1'
3170// :111:22: error: use of undefined value here causes illegal behavior3169// :111:22: error: use of undefined value here causes illegal behavior
3171// :111:22: note: when computing vector element at index '1'
3172// :111:22: error: use of undefined value here causes illegal behavior3170// :111:22: error: use of undefined value here causes illegal behavior
3173// :111:22: note: when computing vector element at index '1'
3174// :111:22: error: use of undefined value here causes illegal behavior3171// :111:22: error: use of undefined value here causes illegal behavior
3175// :111:22: note: when computing vector element at index '1'
3176// :111:22: error: use of undefined value here causes illegal behavior3172// :111:22: error: use of undefined value here causes illegal behavior
3177// :111:22: note: when computing vector element at index '0'
3178// :111:22: error: use of undefined value here causes illegal behavior3173// :111:22: error: use of undefined value here causes illegal behavior
3179// :111:22: note: when computing vector element at index '0'
3180// :111:22: error: use of undefined value here causes illegal behavior3174// :111:22: error: use of undefined value here causes illegal behavior
3181// :111:22: note: when computing vector element at index '0'
3182// :111:22: error: use of undefined value here causes illegal behavior3175// :111:22: error: use of undefined value here causes illegal behavior
3183// :111:22: note: when computing vector element at index '0'
3184// :111:22: error: use of undefined value here causes illegal behavior3176// :111:22: error: use of undefined value here causes illegal behavior
3185// :111:22: error: use of undefined value here causes illegal behavior3177// :111:22: error: use of undefined value here causes illegal behavior
3186// :111:22: error: use of undefined value here causes illegal behavior3178// :111:22: error: use of undefined value here causes illegal behavior
...@@ -3188,21 +3180,13 @@ const std = @import("std");...@@ -3188,21 +3180,13 @@ const std = @import("std");
3188// :111:22: error: use of undefined value here causes illegal behavior3180// :111:22: error: use of undefined value here causes illegal behavior
3189// :111:22: error: use of undefined value here causes illegal behavior3181// :111:22: error: use of undefined value here causes illegal behavior
3190// :111:22: error: use of undefined value here causes illegal behavior3182// :111:22: error: use of undefined value here causes illegal behavior
3191// :111:22: note: when computing vector element at index '1'
3192// :111:22: error: use of undefined value here causes illegal behavior3183// :111:22: error: use of undefined value here causes illegal behavior
3193// :111:22: note: when computing vector element at index '1'
3194// :111:22: error: use of undefined value here causes illegal behavior3184// :111:22: error: use of undefined value here causes illegal behavior
3195// :111:22: note: when computing vector element at index '1'
3196// :111:22: error: use of undefined value here causes illegal behavior3185// :111:22: error: use of undefined value here causes illegal behavior
3197// :111:22: note: when computing vector element at index '1'
3198// :111:22: error: use of undefined value here causes illegal behavior3186// :111:22: error: use of undefined value here causes illegal behavior
3199// :111:22: note: when computing vector element at index '0'
3200// :111:22: error: use of undefined value here causes illegal behavior3187// :111:22: error: use of undefined value here causes illegal behavior
3201// :111:22: note: when computing vector element at index '0'
3202// :111:22: error: use of undefined value here causes illegal behavior3188// :111:22: error: use of undefined value here causes illegal behavior
3203// :111:22: note: when computing vector element at index '0'
3204// :111:22: error: use of undefined value here causes illegal behavior3189// :111:22: error: use of undefined value here causes illegal behavior
3205// :111:22: note: when computing vector element at index '0'
3206// :111:22: error: use of undefined value here causes illegal behavior3190// :111:22: error: use of undefined value here causes illegal behavior
3207// :111:22: error: use of undefined value here causes illegal behavior3191// :111:22: error: use of undefined value here causes illegal behavior
3208// :111:22: error: use of undefined value here causes illegal behavior3192// :111:22: error: use of undefined value here causes illegal behavior
...@@ -3210,21 +3194,13 @@ const std = @import("std");...@@ -3210,21 +3194,13 @@ const std = @import("std");
3210// :111:22: error: use of undefined value here causes illegal behavior3194// :111:22: error: use of undefined value here causes illegal behavior
3211// :111:22: error: use of undefined value here causes illegal behavior3195// :111:22: error: use of undefined value here causes illegal behavior
3212// :111:22: error: use of undefined value here causes illegal behavior3196// :111:22: error: use of undefined value here causes illegal behavior
3213// :111:22: note: when computing vector element at index '1'
3214// :111:22: error: use of undefined value here causes illegal behavior3197// :111:22: error: use of undefined value here causes illegal behavior
3215// :111:22: note: when computing vector element at index '1'
3216// :111:22: error: use of undefined value here causes illegal behavior3198// :111:22: error: use of undefined value here causes illegal behavior
3217// :111:22: note: when computing vector element at index '1'
3218// :111:22: error: use of undefined value here causes illegal behavior3199// :111:22: error: use of undefined value here causes illegal behavior
3219// :111:22: note: when computing vector element at index '1'
3220// :111:22: error: use of undefined value here causes illegal behavior3200// :111:22: error: use of undefined value here causes illegal behavior
3221// :111:22: note: when computing vector element at index '0'
3222// :111:22: error: use of undefined value here causes illegal behavior3201// :111:22: error: use of undefined value here causes illegal behavior
3223// :111:22: note: when computing vector element at index '0'
3224// :111:22: error: use of undefined value here causes illegal behavior3202// :111:22: error: use of undefined value here causes illegal behavior
3225// :111:22: note: when computing vector element at index '0'
3226// :111:22: error: use of undefined value here causes illegal behavior3203// :111:22: error: use of undefined value here causes illegal behavior
3227// :111:22: note: when computing vector element at index '0'
3228// :111:22: error: use of undefined value here causes illegal behavior3204// :111:22: error: use of undefined value here causes illegal behavior
3229// :111:22: error: use of undefined value here causes illegal behavior3205// :111:22: error: use of undefined value here causes illegal behavior
3230// :111:22: error: use of undefined value here causes illegal behavior3206// :111:22: error: use of undefined value here causes illegal behavior
...@@ -3232,21 +3208,13 @@ const std = @import("std");...@@ -3232,21 +3208,13 @@ const std = @import("std");
3232// :111:22: error: use of undefined value here causes illegal behavior3208// :111:22: error: use of undefined value here causes illegal behavior
3233// :111:22: error: use of undefined value here causes illegal behavior3209// :111:22: error: use of undefined value here causes illegal behavior
3234// :111:22: error: use of undefined value here causes illegal behavior3210// :111:22: error: use of undefined value here causes illegal behavior
3235// :111:22: note: when computing vector element at index '1'
3236// :111:22: error: use of undefined value here causes illegal behavior3211// :111:22: error: use of undefined value here causes illegal behavior
3237// :111:22: note: when computing vector element at index '1'
3238// :111:22: error: use of undefined value here causes illegal behavior3212// :111:22: error: use of undefined value here causes illegal behavior
3239// :111:22: note: when computing vector element at index '1'
3240// :111:22: error: use of undefined value here causes illegal behavior3213// :111:22: error: use of undefined value here causes illegal behavior
3241// :111:22: note: when computing vector element at index '1'
3242// :111:22: error: use of undefined value here causes illegal behavior3214// :111:22: error: use of undefined value here causes illegal behavior
3243// :111:22: note: when computing vector element at index '0'
3244// :111:22: error: use of undefined value here causes illegal behavior3215// :111:22: error: use of undefined value here causes illegal behavior
3245// :111:22: note: when computing vector element at index '0'
3246// :111:22: error: use of undefined value here causes illegal behavior3216// :111:22: error: use of undefined value here causes illegal behavior
3247// :111:22: note: when computing vector element at index '0'
3248// :111:22: error: use of undefined value here causes illegal behavior3217// :111:22: error: use of undefined value here causes illegal behavior
3249// :111:22: note: when computing vector element at index '0'
3250// :111:22: error: use of undefined value here causes illegal behavior3218// :111:22: error: use of undefined value here causes illegal behavior
3251// :111:22: error: use of undefined value here causes illegal behavior3219// :111:22: error: use of undefined value here causes illegal behavior
3252// :111:22: error: use of undefined value here causes illegal behavior3220// :111:22: error: use of undefined value here causes illegal behavior
...@@ -3254,13 +3222,9 @@ const std = @import("std");...@@ -3254,13 +3222,9 @@ const std = @import("std");
3254// :111:22: error: use of undefined value here causes illegal behavior3222// :111:22: error: use of undefined value here causes illegal behavior
3255// :111:22: error: use of undefined value here causes illegal behavior3223// :111:22: error: use of undefined value here causes illegal behavior
3256// :111:22: error: use of undefined value here causes illegal behavior3224// :111:22: error: use of undefined value here causes illegal behavior
3257// :111:22: note: when computing vector element at index '1'
3258// :111:22: error: use of undefined value here causes illegal behavior3225// :111:22: error: use of undefined value here causes illegal behavior
3259// :111:22: note: when computing vector element at index '1'
3260// :111:22: error: use of undefined value here causes illegal behavior3226// :111:22: error: use of undefined value here causes illegal behavior
3261// :111:22: note: when computing vector element at index '1'
3262// :111:22: error: use of undefined value here causes illegal behavior3227// :111:22: error: use of undefined value here causes illegal behavior
3263// :111:22: note: when computing vector element at index '1'
3264// :111:22: error: use of undefined value here causes illegal behavior3228// :111:22: error: use of undefined value here causes illegal behavior
3265// :111:22: note: when computing vector element at index '0'3229// :111:22: note: when computing vector element at index '0'
3266// :111:22: error: use of undefined value here causes illegal behavior3230// :111:22: error: use of undefined value here causes illegal behavior
...@@ -3270,19 +3234,21 @@ const std = @import("std");...@@ -3270,19 +3234,21 @@ const std = @import("std");
3270// :111:22: error: use of undefined value here causes illegal behavior3234// :111:22: error: use of undefined value here causes illegal behavior
3271// :111:22: note: when computing vector element at index '0'3235// :111:22: note: when computing vector element at index '0'
3272// :111:22: error: use of undefined value here causes illegal behavior3236// :111:22: error: use of undefined value here causes illegal behavior
3237// :111:22: note: when computing vector element at index '0'
3273// :111:22: error: use of undefined value here causes illegal behavior3238// :111:22: error: use of undefined value here causes illegal behavior
3239// :111:22: note: when computing vector element at index '0'
3274// :111:22: error: use of undefined value here causes illegal behavior3240// :111:22: error: use of undefined value here causes illegal behavior
3241// :111:22: note: when computing vector element at index '0'
3275// :111:22: error: use of undefined value here causes illegal behavior3242// :111:22: error: use of undefined value here causes illegal behavior
3243// :111:22: note: when computing vector element at index '0'
3276// :111:22: error: use of undefined value here causes illegal behavior3244// :111:22: error: use of undefined value here causes illegal behavior
3245// :111:22: note: when computing vector element at index '0'
3277// :111:22: error: use of undefined value here causes illegal behavior3246// :111:22: error: use of undefined value here causes illegal behavior
3247// :111:22: note: when computing vector element at index '0'
3278// :111:22: error: use of undefined value here causes illegal behavior3248// :111:22: error: use of undefined value here causes illegal behavior
3279// :111:22: note: when computing vector element at index '1'3249// :111:22: note: when computing vector element at index '0'
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'
3284// :111:22: error: use of undefined value here causes illegal behavior3250// :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'
3286// :111:22: error: use of undefined value here causes illegal behavior3252// :111:22: error: use of undefined value here causes illegal behavior
3287// :111:22: note: when computing vector element at index '0'3253// :111:22: note: when computing vector element at index '0'
3288// :111:22: error: use of undefined value here causes illegal behavior3254// :111:22: error: use of undefined value here causes illegal behavior
...@@ -3292,19 +3258,25 @@ const std = @import("std");...@@ -3292,19 +3258,25 @@ const std = @import("std");
3292// :111:22: error: use of undefined value here causes illegal behavior3258// :111:22: error: use of undefined value here causes illegal behavior
3293// :111:22: note: when computing vector element at index '0'3259// :111:22: note: when computing vector element at index '0'
3294// :111:22: error: use of undefined value here causes illegal behavior3260// :111:22: error: use of undefined value here causes illegal behavior
3261// :111:22: note: when computing vector element at index '0'
3295// :111:22: error: use of undefined value here causes illegal behavior3262// :111:22: error: use of undefined value here causes illegal behavior
3263// :111:22: note: when computing vector element at index '0'
3296// :111:22: error: use of undefined value here causes illegal behavior3264// :111:22: error: use of undefined value here causes illegal behavior
3265// :111:22: note: when computing vector element at index '0'
3297// :111:22: error: use of undefined value here causes illegal behavior3266// :111:22: error: use of undefined value here causes illegal behavior
3267// :111:22: note: when computing vector element at index '0'
3298// :111:22: error: use of undefined value here causes illegal behavior3268// :111:22: error: use of undefined value here causes illegal behavior
3269// :111:22: note: when computing vector element at index '0'
3299// :111:22: error: use of undefined value here causes illegal behavior3270// :111:22: error: use of undefined value here causes illegal behavior
3271// :111:22: note: when computing vector element at index '0'
3300// :111:22: error: use of undefined value here causes illegal behavior3272// :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'
3302// :111:22: error: use of undefined value here causes illegal behavior3274// :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'
3304// :111:22: error: use of undefined value here causes illegal behavior3276// :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'
3306// :111:22: error: use of undefined value here causes illegal behavior3278// :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'
3308// :111:22: error: use of undefined value here causes illegal behavior3280// :111:22: error: use of undefined value here causes illegal behavior
3309// :111:22: note: when computing vector element at index '0'3281// :111:22: note: when computing vector element at index '0'
3310// :111:22: error: use of undefined value here causes illegal behavior3282// :111:22: error: use of undefined value here causes illegal behavior
...@@ -3314,19 +3286,25 @@ const std = @import("std");...@@ -3314,19 +3286,25 @@ const std = @import("std");
3314// :111:22: error: use of undefined value here causes illegal behavior3286// :111:22: error: use of undefined value here causes illegal behavior
3315// :111:22: note: when computing vector element at index '0'3287// :111:22: note: when computing vector element at index '0'
3316// :111:22: error: use of undefined value here causes illegal behavior3288// :111:22: error: use of undefined value here causes illegal behavior
3289// :111:22: note: when computing vector element at index '0'
3317// :111:22: error: use of undefined value here causes illegal behavior3290// :111:22: error: use of undefined value here causes illegal behavior
3291// :111:22: note: when computing vector element at index '0'
3318// :111:22: error: use of undefined value here causes illegal behavior3292// :111:22: error: use of undefined value here causes illegal behavior
3293// :111:22: note: when computing vector element at index '0'
3319// :111:22: error: use of undefined value here causes illegal behavior3294// :111:22: error: use of undefined value here causes illegal behavior
3295// :111:22: note: when computing vector element at index '0'
3320// :111:22: error: use of undefined value here causes illegal behavior3296// :111:22: error: use of undefined value here causes illegal behavior
3297// :111:22: note: when computing vector element at index '0'
3321// :111:22: error: use of undefined value here causes illegal behavior3298// :111:22: error: use of undefined value here causes illegal behavior
3299// :111:22: note: when computing vector element at index '0'
3322// :111:22: error: use of undefined value here causes illegal behavior3300// :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'
3324// :111:22: error: use of undefined value here causes illegal behavior3302// :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'
3326// :111:22: error: use of undefined value here causes illegal behavior3304// :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'
3328// :111:22: error: use of undefined value here causes illegal behavior3306// :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'
3330// :111:22: error: use of undefined value here causes illegal behavior3308// :111:22: error: use of undefined value here causes illegal behavior
3331// :111:22: note: when computing vector element at index '0'3309// :111:22: note: when computing vector element at index '0'
3332// :111:22: error: use of undefined value here causes illegal behavior3310// :111:22: error: use of undefined value here causes illegal behavior
...@@ -3336,11 +3314,17 @@ const std = @import("std");...@@ -3336,11 +3314,17 @@ const std = @import("std");
3336// :111:22: error: use of undefined value here causes illegal behavior3314// :111:22: error: use of undefined value here causes illegal behavior
3337// :111:22: note: when computing vector element at index '0'3315// :111:22: note: when computing vector element at index '0'
3338// :111:22: error: use of undefined value here causes illegal behavior3316// :111:22: error: use of undefined value here causes illegal behavior
3317// :111:22: note: when computing vector element at index '1'
3339// :111:22: error: use of undefined value here causes illegal behavior3318// :111:22: error: use of undefined value here causes illegal behavior
3319// :111:22: note: when computing vector element at index '1'
3340// :111:22: error: use of undefined value here causes illegal behavior3320// :111:22: error: use of undefined value here causes illegal behavior
3321// :111:22: note: when computing vector element at index '1'
3341// :111:22: error: use of undefined value here causes illegal behavior3322// :111:22: error: use of undefined value here causes illegal behavior
3323// :111:22: note: when computing vector element at index '1'
3342// :111:22: error: use of undefined value here causes illegal behavior3324// :111:22: error: use of undefined value here causes illegal behavior
3325// :111:22: note: when computing vector element at index '1'
3343// :111:22: error: use of undefined value here causes illegal behavior3326// :111:22: error: use of undefined value here causes illegal behavior
3327// :111:22: note: when computing vector element at index '1'
3344// :111:22: error: use of undefined value here causes illegal behavior3328// :111:22: error: use of undefined value here causes illegal behavior
3345// :111:22: note: when computing vector element at index '1'3329// :111:22: note: when computing vector element at index '1'
3346// :111:22: error: use of undefined value here causes illegal behavior3330// :111:22: error: use of undefined value here causes illegal behavior
...@@ -3350,19 +3334,25 @@ const std = @import("std");...@@ -3350,19 +3334,25 @@ const std = @import("std");
3350// :111:22: error: use of undefined value here causes illegal behavior3334// :111:22: error: use of undefined value here causes illegal behavior
3351// :111:22: note: when computing vector element at index '1'3335// :111:22: note: when computing vector element at index '1'
3352// :111:22: error: use of undefined value here causes illegal behavior3336// :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'
3354// :111:22: error: use of undefined value here causes illegal behavior3338// :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'
3356// :111:22: error: use of undefined value here causes illegal behavior3340// :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'
3358// :111:22: error: use of undefined value here causes illegal behavior3342// :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'
3360// :111:22: error: use of undefined value here causes illegal behavior3344// :111:22: error: use of undefined value here causes illegal behavior
3345// :111:22: note: when computing vector element at index '1'
3361// :111:22: error: use of undefined value here causes illegal behavior3346// :111:22: error: use of undefined value here causes illegal behavior
3347// :111:22: note: when computing vector element at index '1'
3362// :111:22: error: use of undefined value here causes illegal behavior3348// :111:22: error: use of undefined value here causes illegal behavior
3349// :111:22: note: when computing vector element at index '1'
3363// :111:22: error: use of undefined value here causes illegal behavior3350// :111:22: error: use of undefined value here causes illegal behavior
3351// :111:22: note: when computing vector element at index '1'
3364// :111:22: error: use of undefined value here causes illegal behavior3352// :111:22: error: use of undefined value here causes illegal behavior
3353// :111:22: note: when computing vector element at index '1'
3365// :111:22: error: use of undefined value here causes illegal behavior3354// :111:22: error: use of undefined value here causes illegal behavior
3355// :111:22: note: when computing vector element at index '1'
3366// :111:22: error: use of undefined value here causes illegal behavior3356// :111:22: error: use of undefined value here causes illegal behavior
3367// :111:22: note: when computing vector element at index '1'3357// :111:22: note: when computing vector element at index '1'
3368// :111:22: error: use of undefined value here causes illegal behavior3358// :111:22: error: use of undefined value here causes illegal behavior
...@@ -3372,19 +3362,25 @@ const std = @import("std");...@@ -3372,19 +3362,25 @@ const std = @import("std");
3372// :111:22: error: use of undefined value here causes illegal behavior3362// :111:22: error: use of undefined value here causes illegal behavior
3373// :111:22: note: when computing vector element at index '1'3363// :111:22: note: when computing vector element at index '1'
3374// :111:22: error: use of undefined value here causes illegal behavior3364// :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'
3376// :111:22: error: use of undefined value here causes illegal behavior3366// :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'
3378// :111:22: error: use of undefined value here causes illegal behavior3368// :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'
3380// :111:22: error: use of undefined value here causes illegal behavior3370// :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'
3382// :111:22: error: use of undefined value here causes illegal behavior3372// :111:22: error: use of undefined value here causes illegal behavior
3373// :111:22: note: when computing vector element at index '1'
3383// :111:22: error: use of undefined value here causes illegal behavior3374// :111:22: error: use of undefined value here causes illegal behavior
3375// :111:22: note: when computing vector element at index '1'
3384// :111:22: error: use of undefined value here causes illegal behavior3376// :111:22: error: use of undefined value here causes illegal behavior
3377// :111:22: note: when computing vector element at index '1'
3385// :111:22: error: use of undefined value here causes illegal behavior3378// :111:22: error: use of undefined value here causes illegal behavior
3379// :111:22: note: when computing vector element at index '1'
3386// :111:22: error: use of undefined value here causes illegal behavior3380// :111:22: error: use of undefined value here causes illegal behavior
3381// :111:22: note: when computing vector element at index '1'
3387// :111:22: error: use of undefined value here causes illegal behavior3382// :111:22: error: use of undefined value here causes illegal behavior
3383// :111:22: note: when computing vector element at index '1'
3388// :111:22: error: use of undefined value here causes illegal behavior3384// :111:22: error: use of undefined value here causes illegal behavior
3389// :111:22: note: when computing vector element at index '1'3385// :111:22: note: when computing vector element at index '1'
3390// :111:22: error: use of undefined value here causes illegal behavior3386// :111:22: error: use of undefined value here causes illegal behavior
...@@ -3394,13 +3390,17 @@ const std = @import("std");...@@ -3394,13 +3390,17 @@ const std = @import("std");
3394// :111:22: error: use of undefined value here causes illegal behavior3390// :111:22: error: use of undefined value here causes illegal behavior
3395// :111:22: note: when computing vector element at index '1'3391// :111:22: note: when computing vector element at index '1'
3396// :111:22: error: use of undefined value here causes illegal behavior3392// :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'
3398// :111:22: error: use of undefined value here causes illegal behavior3394// :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'
3400// :111:22: error: use of undefined value here causes illegal behavior3396// :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'
3402// :111:22: error: use of undefined value here causes illegal behavior3398// :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'
3404// :115:22: error: use of undefined value here causes illegal behavior3404// :115:22: error: use of undefined value here causes illegal behavior
3405// :115:22: error: use of undefined value here causes illegal behavior3405// :115:22: error: use of undefined value here causes illegal behavior
3406// :115:22: error: use of undefined value here causes illegal behavior3406// :115:22: error: use of undefined value here causes illegal behavior
...@@ -3408,21 +3408,13 @@ const std = @import("std");...@@ -3408,21 +3408,13 @@ const std = @import("std");
3408// :115:22: error: use of undefined value here causes illegal behavior3408// :115:22: error: use of undefined value here causes illegal behavior
3409// :115:22: error: use of undefined value here causes illegal behavior3409// :115:22: error: use of undefined value here causes illegal behavior
3410// :115:22: error: use of undefined value here causes illegal behavior3410// :115:22: error: use of undefined value here causes illegal behavior
3411// :115:22: note: when computing vector element at index '1'
3412// :115:22: error: use of undefined value here causes illegal behavior3411// :115:22: error: use of undefined value here causes illegal behavior
3413// :115:22: note: when computing vector element at index '1'
3414// :115:22: error: use of undefined value here causes illegal behavior3412// :115:22: error: use of undefined value here causes illegal behavior
3415// :115:22: note: when computing vector element at index '1'
3416// :115:22: error: use of undefined value here causes illegal behavior3413// :115:22: error: use of undefined value here causes illegal behavior
3417// :115:22: note: when computing vector element at index '1'
3418// :115:22: error: use of undefined value here causes illegal behavior3414// :115:22: error: use of undefined value here causes illegal behavior
3419// :115:22: note: when computing vector element at index '0'
3420// :115:22: error: use of undefined value here causes illegal behavior3415// :115:22: error: use of undefined value here causes illegal behavior
3421// :115:22: note: when computing vector element at index '0'
3422// :115:22: error: use of undefined value here causes illegal behavior3416// :115:22: error: use of undefined value here causes illegal behavior
3423// :115:22: note: when computing vector element at index '0'
3424// :115:22: error: use of undefined value here causes illegal behavior3417// :115:22: error: use of undefined value here causes illegal behavior
3425// :115:22: note: when computing vector element at index '0'
3426// :115:22: error: use of undefined value here causes illegal behavior3418// :115:22: error: use of undefined value here causes illegal behavior
3427// :115:22: error: use of undefined value here causes illegal behavior3419// :115:22: error: use of undefined value here causes illegal behavior
3428// :115:22: error: use of undefined value here causes illegal behavior3420// :115:22: error: use of undefined value here causes illegal behavior
...@@ -3430,21 +3422,13 @@ const std = @import("std");...@@ -3430,21 +3422,13 @@ const std = @import("std");
3430// :115:22: error: use of undefined value here causes illegal behavior3422// :115:22: error: use of undefined value here causes illegal behavior
3431// :115:22: error: use of undefined value here causes illegal behavior3423// :115:22: error: use of undefined value here causes illegal behavior
3432// :115:22: error: use of undefined value here causes illegal behavior3424// :115:22: error: use of undefined value here causes illegal behavior
3433// :115:22: note: when computing vector element at index '1'
3434// :115:22: error: use of undefined value here causes illegal behavior3425// :115:22: error: use of undefined value here causes illegal behavior
3435// :115:22: note: when computing vector element at index '1'
3436// :115:22: error: use of undefined value here causes illegal behavior3426// :115:22: error: use of undefined value here causes illegal behavior
3437// :115:22: note: when computing vector element at index '1'
3438// :115:22: error: use of undefined value here causes illegal behavior3427// :115:22: error: use of undefined value here causes illegal behavior
3439// :115:22: note: when computing vector element at index '1'
3440// :115:22: error: use of undefined value here causes illegal behavior3428// :115:22: error: use of undefined value here causes illegal behavior
3441// :115:22: note: when computing vector element at index '0'
3442// :115:22: error: use of undefined value here causes illegal behavior3429// :115:22: error: use of undefined value here causes illegal behavior
3443// :115:22: note: when computing vector element at index '0'
3444// :115:22: error: use of undefined value here causes illegal behavior3430// :115:22: error: use of undefined value here causes illegal behavior
3445// :115:22: note: when computing vector element at index '0'
3446// :115:22: error: use of undefined value here causes illegal behavior3431// :115:22: error: use of undefined value here causes illegal behavior
3447// :115:22: note: when computing vector element at index '0'
3448// :115:22: error: use of undefined value here causes illegal behavior3432// :115:22: error: use of undefined value here causes illegal behavior
3449// :115:22: error: use of undefined value here causes illegal behavior3433// :115:22: error: use of undefined value here causes illegal behavior
3450// :115:22: error: use of undefined value here causes illegal behavior3434// :115:22: error: use of undefined value here causes illegal behavior
...@@ -3452,21 +3436,13 @@ const std = @import("std");...@@ -3452,21 +3436,13 @@ const std = @import("std");
3452// :115:22: error: use of undefined value here causes illegal behavior3436// :115:22: error: use of undefined value here causes illegal behavior
3453// :115:22: error: use of undefined value here causes illegal behavior3437// :115:22: error: use of undefined value here causes illegal behavior
3454// :115:22: error: use of undefined value here causes illegal behavior3438// :115:22: error: use of undefined value here causes illegal behavior
3455// :115:22: note: when computing vector element at index '1'
3456// :115:22: error: use of undefined value here causes illegal behavior3439// :115:22: error: use of undefined value here causes illegal behavior
3457// :115:22: note: when computing vector element at index '1'
3458// :115:22: error: use of undefined value here causes illegal behavior3440// :115:22: error: use of undefined value here causes illegal behavior
3459// :115:22: note: when computing vector element at index '1'
3460// :115:22: error: use of undefined value here causes illegal behavior3441// :115:22: error: use of undefined value here causes illegal behavior
3461// :115:22: note: when computing vector element at index '1'
3462// :115:22: error: use of undefined value here causes illegal behavior3442// :115:22: error: use of undefined value here causes illegal behavior
3463// :115:22: note: when computing vector element at index '0'
3464// :115:22: error: use of undefined value here causes illegal behavior3443// :115:22: error: use of undefined value here causes illegal behavior
3465// :115:22: note: when computing vector element at index '0'
3466// :115:22: error: use of undefined value here causes illegal behavior3444// :115:22: error: use of undefined value here causes illegal behavior
3467// :115:22: note: when computing vector element at index '0'
3468// :115:22: error: use of undefined value here causes illegal behavior3445// :115:22: error: use of undefined value here causes illegal behavior
3469// :115:22: note: when computing vector element at index '0'
3470// :115:22: error: use of undefined value here causes illegal behavior3446// :115:22: error: use of undefined value here causes illegal behavior
3471// :115:22: error: use of undefined value here causes illegal behavior3447// :115:22: error: use of undefined value here causes illegal behavior
3472// :115:22: error: use of undefined value here causes illegal behavior3448// :115:22: error: use of undefined value here causes illegal behavior
...@@ -3474,21 +3450,13 @@ const std = @import("std");...@@ -3474,21 +3450,13 @@ const std = @import("std");
3474// :115:22: error: use of undefined value here causes illegal behavior3450// :115:22: error: use of undefined value here causes illegal behavior
3475// :115:22: error: use of undefined value here causes illegal behavior3451// :115:22: error: use of undefined value here causes illegal behavior
3476// :115:22: error: use of undefined value here causes illegal behavior3452// :115:22: error: use of undefined value here causes illegal behavior
3477// :115:22: note: when computing vector element at index '1'
3478// :115:22: error: use of undefined value here causes illegal behavior3453// :115:22: error: use of undefined value here causes illegal behavior
3479// :115:22: note: when computing vector element at index '1'
3480// :115:22: error: use of undefined value here causes illegal behavior3454// :115:22: error: use of undefined value here causes illegal behavior
3481// :115:22: note: when computing vector element at index '1'
3482// :115:22: error: use of undefined value here causes illegal behavior3455// :115:22: error: use of undefined value here causes illegal behavior
3483// :115:22: note: when computing vector element at index '1'
3484// :115:22: error: use of undefined value here causes illegal behavior3456// :115:22: error: use of undefined value here causes illegal behavior
3485// :115:22: note: when computing vector element at index '0'
3486// :115:22: error: use of undefined value here causes illegal behavior3457// :115:22: error: use of undefined value here causes illegal behavior
3487// :115:22: note: when computing vector element at index '0'
3488// :115:22: error: use of undefined value here causes illegal behavior3458// :115:22: error: use of undefined value here causes illegal behavior
3489// :115:22: note: when computing vector element at index '0'
3490// :115:22: error: use of undefined value here causes illegal behavior3459// :115:22: error: use of undefined value here causes illegal behavior
3491// :115:22: note: when computing vector element at index '0'
3492// :115:22: error: use of undefined value here causes illegal behavior3460// :115:22: error: use of undefined value here causes illegal behavior
3493// :115:22: error: use of undefined value here causes illegal behavior3461// :115:22: error: use of undefined value here causes illegal behavior
3494// :115:22: error: use of undefined value here causes illegal behavior3462// :115:22: error: use of undefined value here causes illegal behavior
...@@ -3496,13 +3464,9 @@ const std = @import("std");...@@ -3496,13 +3464,9 @@ const std = @import("std");
3496// :115:22: error: use of undefined value here causes illegal behavior3464// :115:22: error: use of undefined value here causes illegal behavior
3497// :115:22: error: use of undefined value here causes illegal behavior3465// :115:22: error: use of undefined value here causes illegal behavior
3498// :115:22: error: use of undefined value here causes illegal behavior3466// :115:22: error: use of undefined value here causes illegal behavior
3499// :115:22: note: when computing vector element at index '1'
3500// :115:22: error: use of undefined value here causes illegal behavior3467// :115:22: error: use of undefined value here causes illegal behavior
3501// :115:22: note: when computing vector element at index '1'
3502// :115:22: error: use of undefined value here causes illegal behavior3468// :115:22: error: use of undefined value here causes illegal behavior
3503// :115:22: note: when computing vector element at index '1'
3504// :115:22: error: use of undefined value here causes illegal behavior3469// :115:22: error: use of undefined value here causes illegal behavior
3505// :115:22: note: when computing vector element at index '1'
3506// :115:22: error: use of undefined value here causes illegal behavior3470// :115:22: error: use of undefined value here causes illegal behavior
3507// :115:22: note: when computing vector element at index '0'3471// :115:22: note: when computing vector element at index '0'
3508// :115:22: error: use of undefined value here causes illegal behavior3472// :115:22: error: use of undefined value here causes illegal behavior
...@@ -3512,19 +3476,21 @@ const std = @import("std");...@@ -3512,19 +3476,21 @@ const std = @import("std");
3512// :115:22: error: use of undefined value here causes illegal behavior3476// :115:22: error: use of undefined value here causes illegal behavior
3513// :115:22: note: when computing vector element at index '0'3477// :115:22: note: when computing vector element at index '0'
3514// :115:22: error: use of undefined value here causes illegal behavior3478// :115:22: error: use of undefined value here causes illegal behavior
3479// :115:22: note: when computing vector element at index '0'
3515// :115:22: error: use of undefined value here causes illegal behavior3480// :115:22: error: use of undefined value here causes illegal behavior
3481// :115:22: note: when computing vector element at index '0'
3516// :115:22: error: use of undefined value here causes illegal behavior3482// :115:22: error: use of undefined value here causes illegal behavior
3483// :115:22: note: when computing vector element at index '0'
3517// :115:22: error: use of undefined value here causes illegal behavior3484// :115:22: error: use of undefined value here causes illegal behavior
3485// :115:22: note: when computing vector element at index '0'
3518// :115:22: error: use of undefined value here causes illegal behavior3486// :115:22: error: use of undefined value here causes illegal behavior
3487// :115:22: note: when computing vector element at index '0'
3519// :115:22: error: use of undefined value here causes illegal behavior3488// :115:22: error: use of undefined value here causes illegal behavior
3489// :115:22: note: when computing vector element at index '0'
3520// :115:22: error: use of undefined value here causes illegal behavior3490// :115:22: error: use of undefined value here causes illegal behavior
3521// :115:22: note: when computing vector element at index '1'3491// :115:22: note: when computing vector element at index '0'
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'
3526// :115:22: error: use of undefined value here causes illegal behavior3492// :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'
3528// :115:22: error: use of undefined value here causes illegal behavior3494// :115:22: error: use of undefined value here causes illegal behavior
3529// :115:22: note: when computing vector element at index '0'3495// :115:22: note: when computing vector element at index '0'
3530// :115:22: error: use of undefined value here causes illegal behavior3496// :115:22: error: use of undefined value here causes illegal behavior
...@@ -3534,19 +3500,25 @@ const std = @import("std");...@@ -3534,19 +3500,25 @@ const std = @import("std");
3534// :115:22: error: use of undefined value here causes illegal behavior3500// :115:22: error: use of undefined value here causes illegal behavior
3535// :115:22: note: when computing vector element at index '0'3501// :115:22: note: when computing vector element at index '0'
3536// :115:22: error: use of undefined value here causes illegal behavior3502// :115:22: error: use of undefined value here causes illegal behavior
3503// :115:22: note: when computing vector element at index '0'
3537// :115:22: error: use of undefined value here causes illegal behavior3504// :115:22: error: use of undefined value here causes illegal behavior
3505// :115:22: note: when computing vector element at index '0'
3538// :115:22: error: use of undefined value here causes illegal behavior3506// :115:22: error: use of undefined value here causes illegal behavior
3507// :115:22: note: when computing vector element at index '0'
3539// :115:22: error: use of undefined value here causes illegal behavior3508// :115:22: error: use of undefined value here causes illegal behavior
3509// :115:22: note: when computing vector element at index '0'
3540// :115:22: error: use of undefined value here causes illegal behavior3510// :115:22: error: use of undefined value here causes illegal behavior
3511// :115:22: note: when computing vector element at index '0'
3541// :115:22: error: use of undefined value here causes illegal behavior3512// :115:22: error: use of undefined value here causes illegal behavior
3513// :115:22: note: when computing vector element at index '0'
3542// :115:22: error: use of undefined value here causes illegal behavior3514// :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'
3544// :115:22: error: use of undefined value here causes illegal behavior3516// :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'
3546// :115:22: error: use of undefined value here causes illegal behavior3518// :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'
3548// :115:22: error: use of undefined value here causes illegal behavior3520// :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'
3550// :115:22: error: use of undefined value here causes illegal behavior3522// :115:22: error: use of undefined value here causes illegal behavior
3551// :115:22: note: when computing vector element at index '0'3523// :115:22: note: when computing vector element at index '0'
3552// :115:22: error: use of undefined value here causes illegal behavior3524// :115:22: error: use of undefined value here causes illegal behavior
...@@ -3556,19 +3528,25 @@ const std = @import("std");...@@ -3556,19 +3528,25 @@ const std = @import("std");
3556// :115:22: error: use of undefined value here causes illegal behavior3528// :115:22: error: use of undefined value here causes illegal behavior
3557// :115:22: note: when computing vector element at index '0'3529// :115:22: note: when computing vector element at index '0'
3558// :115:22: error: use of undefined value here causes illegal behavior3530// :115:22: error: use of undefined value here causes illegal behavior
3531// :115:22: note: when computing vector element at index '0'
3559// :115:22: error: use of undefined value here causes illegal behavior3532// :115:22: error: use of undefined value here causes illegal behavior
3533// :115:22: note: when computing vector element at index '0'
3560// :115:22: error: use of undefined value here causes illegal behavior3534// :115:22: error: use of undefined value here causes illegal behavior
3535// :115:22: note: when computing vector element at index '0'
3561// :115:22: error: use of undefined value here causes illegal behavior3536// :115:22: error: use of undefined value here causes illegal behavior
3537// :115:22: note: when computing vector element at index '0'
3562// :115:22: error: use of undefined value here causes illegal behavior3538// :115:22: error: use of undefined value here causes illegal behavior
3539// :115:22: note: when computing vector element at index '0'
3563// :115:22: error: use of undefined value here causes illegal behavior3540// :115:22: error: use of undefined value here causes illegal behavior
3541// :115:22: note: when computing vector element at index '0'
3564// :115:22: error: use of undefined value here causes illegal behavior3542// :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'
3566// :115:22: error: use of undefined value here causes illegal behavior3544// :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'
3568// :115:22: error: use of undefined value here causes illegal behavior3546// :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'
3570// :115:22: error: use of undefined value here causes illegal behavior3548// :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'
3572// :115:22: error: use of undefined value here causes illegal behavior3550// :115:22: error: use of undefined value here causes illegal behavior
3573// :115:22: note: when computing vector element at index '0'3551// :115:22: note: when computing vector element at index '0'
3574// :115:22: error: use of undefined value here causes illegal behavior3552// :115:22: error: use of undefined value here causes illegal behavior
...@@ -3578,11 +3556,17 @@ const std = @import("std");...@@ -3578,11 +3556,17 @@ const std = @import("std");
3578// :115:22: error: use of undefined value here causes illegal behavior3556// :115:22: error: use of undefined value here causes illegal behavior
3579// :115:22: note: when computing vector element at index '0'3557// :115:22: note: when computing vector element at index '0'
3580// :115:22: error: use of undefined value here causes illegal behavior3558// :115:22: error: use of undefined value here causes illegal behavior
3559// :115:22: note: when computing vector element at index '1'
3581// :115:22: error: use of undefined value here causes illegal behavior3560// :115:22: error: use of undefined value here causes illegal behavior
3561// :115:22: note: when computing vector element at index '1'
3582// :115:22: error: use of undefined value here causes illegal behavior3562// :115:22: error: use of undefined value here causes illegal behavior
3563// :115:22: note: when computing vector element at index '1'
3583// :115:22: error: use of undefined value here causes illegal behavior3564// :115:22: error: use of undefined value here causes illegal behavior
3565// :115:22: note: when computing vector element at index '1'
3584// :115:22: error: use of undefined value here causes illegal behavior3566// :115:22: error: use of undefined value here causes illegal behavior
3567// :115:22: note: when computing vector element at index '1'
3585// :115:22: error: use of undefined value here causes illegal behavior3568// :115:22: error: use of undefined value here causes illegal behavior
3569// :115:22: note: when computing vector element at index '1'
3586// :115:22: error: use of undefined value here causes illegal behavior3570// :115:22: error: use of undefined value here causes illegal behavior
3587// :115:22: note: when computing vector element at index '1'3571// :115:22: note: when computing vector element at index '1'
3588// :115:22: error: use of undefined value here causes illegal behavior3572// :115:22: error: use of undefined value here causes illegal behavior
...@@ -3592,19 +3576,25 @@ const std = @import("std");...@@ -3592,19 +3576,25 @@ const std = @import("std");
3592// :115:22: error: use of undefined value here causes illegal behavior3576// :115:22: error: use of undefined value here causes illegal behavior
3593// :115:22: note: when computing vector element at index '1'3577// :115:22: note: when computing vector element at index '1'
3594// :115:22: error: use of undefined value here causes illegal behavior3578// :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'
3596// :115:22: error: use of undefined value here causes illegal behavior3580// :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'
3598// :115:22: error: use of undefined value here causes illegal behavior3582// :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'
3600// :115:22: error: use of undefined value here causes illegal behavior3584// :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'
3602// :115:22: error: use of undefined value here causes illegal behavior3586// :115:22: error: use of undefined value here causes illegal behavior
3587// :115:22: note: when computing vector element at index '1'
3603// :115:22: error: use of undefined value here causes illegal behavior3588// :115:22: error: use of undefined value here causes illegal behavior
3589// :115:22: note: when computing vector element at index '1'
3604// :115:22: error: use of undefined value here causes illegal behavior3590// :115:22: error: use of undefined value here causes illegal behavior
3591// :115:22: note: when computing vector element at index '1'
3605// :115:22: error: use of undefined value here causes illegal behavior3592// :115:22: error: use of undefined value here causes illegal behavior
3593// :115:22: note: when computing vector element at index '1'
3606// :115:22: error: use of undefined value here causes illegal behavior3594// :115:22: error: use of undefined value here causes illegal behavior
3595// :115:22: note: when computing vector element at index '1'
3607// :115:22: error: use of undefined value here causes illegal behavior3596// :115:22: error: use of undefined value here causes illegal behavior
3597// :115:22: note: when computing vector element at index '1'
3608// :115:22: error: use of undefined value here causes illegal behavior3598// :115:22: error: use of undefined value here causes illegal behavior
3609// :115:22: note: when computing vector element at index '1'3599// :115:22: note: when computing vector element at index '1'
3610// :115:22: error: use of undefined value here causes illegal behavior3600// :115:22: error: use of undefined value here causes illegal behavior
...@@ -3614,19 +3604,27 @@ const std = @import("std");...@@ -3614,19 +3604,27 @@ const std = @import("std");
3614// :115:22: error: use of undefined value here causes illegal behavior3604// :115:22: error: use of undefined value here causes illegal behavior
3615// :115:22: note: when computing vector element at index '1'3605// :115:22: note: when computing vector element at index '1'
3616// :115:22: error: use of undefined value here causes illegal behavior3606// :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'
3618// :115:22: error: use of undefined value here causes illegal behavior3608// :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'
3620// :115:22: error: use of undefined value here causes illegal behavior3610// :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'
3622// :115:22: error: use of undefined value here causes illegal behavior3612// :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'
3624// :115:22: error: use of undefined value here causes illegal behavior3616// :115:22: error: use of undefined value here causes illegal behavior
3617// :115:22: note: when computing vector element at index '1'
3625// :115:22: error: use of undefined value here causes illegal behavior3618// :115:22: error: use of undefined value here causes illegal behavior
3619// :115:22: note: when computing vector element at index '1'
3626// :115:22: error: use of undefined value here causes illegal behavior3620// :115:22: error: use of undefined value here causes illegal behavior
3621// :115:22: note: when computing vector element at index '1'
3627// :115:22: error: use of undefined value here causes illegal behavior3622// :115:22: error: use of undefined value here causes illegal behavior
3623// :115:22: note: when computing vector element at index '1'
3628// :115:22: error: use of undefined value here causes illegal behavior3624// :115:22: error: use of undefined value here causes illegal behavior
3625// :115:22: note: when computing vector element at index '1'
3629// :115:22: error: use of undefined value here causes illegal behavior3626// :115:22: error: use of undefined value here causes illegal behavior
3627// :115:22: note: when computing vector element at index '1'
3630// :115:22: error: use of undefined value here causes illegal behavior3628// :115:22: error: use of undefined value here causes illegal behavior
3631// :115:22: note: when computing vector element at index '1'3629// :115:22: note: when computing vector element at index '1'
3632// :115:22: error: use of undefined value here causes illegal behavior3630// :115:22: error: use of undefined value here causes illegal behavior
...@@ -3636,37 +3634,32 @@ const std = @import("std");...@@ -3636,37 +3634,32 @@ const std = @import("std");
3636// :115:22: error: use of undefined value here causes illegal behavior3634// :115:22: error: use of undefined value here causes illegal behavior
3637// :115:22: note: when computing vector element at index '1'3635// :115:22: note: when computing vector element at index '1'
3638// :115:22: error: use of undefined value here causes illegal behavior3636// :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'
3640// :115:22: error: use of undefined value here causes illegal behavior3638// :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'
3642// :115:22: error: use of undefined value here causes illegal behavior3640// :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'
3644// :115:22: error: use of undefined value here causes illegal behavior3642// :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
3646// :121:17: error: use of undefined value here causes illegal behavior3647// :121:17: error: use of undefined value here causes illegal behavior
3647// :121:17: error: use of undefined value here causes illegal behavior3648// :121:17: error: use of undefined value here causes illegal behavior
3648// :121:17: note: when computing vector element at index '0'
3649// :121:17: error: use of undefined value here causes illegal behavior3649// :121:17: error: use of undefined value here causes illegal behavior
3650// :121:17: note: when computing vector element at index '0'
3651// :121:17: error: use of undefined value here causes illegal behavior3650// :121:17: error: use of undefined value here causes illegal behavior
3652// :121:17: note: when computing vector element at index '0'
3653// :121:17: error: use of undefined value here causes illegal behavior3651// :121:17: error: use of undefined value here causes illegal behavior
3654// :121:17: note: when computing vector element at index '1'
3655// :121:17: error: use of undefined value here causes illegal behavior3652// :121:17: error: use of undefined value here causes illegal behavior
3656// :121:17: note: when computing vector element at index '0'
3657// :121:17: error: use of undefined value here causes illegal behavior3653// :121:17: error: use of undefined value here causes illegal behavior
3658// :121:17: note: when computing vector element at index '0'
3659// :121:17: error: use of undefined value here causes illegal behavior3654// :121:17: error: use of undefined value here causes illegal behavior
3660// :121:17: note: when computing vector element at index '0'
3661// :121:17: error: use of undefined value here causes illegal behavior3655// :121:17: error: use of undefined value here causes illegal behavior
3662// :121:17: error: use of undefined value here causes illegal behavior3656// :121:17: error: use of undefined value here causes illegal behavior
3663// :121:17: note: when computing vector element at index '0'
3664// :121:17: error: use of undefined value here causes illegal behavior3657// :121:17: error: use of undefined value here causes illegal behavior
3665// :121:17: note: when computing vector element at index '0'3658// :121:17: note: when computing vector element at index '0'
3666// :121:17: error: use of undefined value here causes illegal behavior3659// :121:17: error: use of undefined value here causes illegal behavior
3667// :121:17: note: when computing vector element at index '0'3660// :121:17: note: when computing vector element at index '0'
3668// :121:17: error: use of undefined value here causes illegal behavior3661// :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'
3670// :121:17: error: use of undefined value here causes illegal behavior3663// :121:17: error: use of undefined value here causes illegal behavior
3671// :121:17: note: when computing vector element at index '0'3664// :121:17: note: when computing vector element at index '0'
3672// :121:17: error: use of undefined value here causes illegal behavior3665// :121:17: error: use of undefined value here causes illegal behavior
...@@ -3674,6 +3667,7 @@ const std = @import("std");...@@ -3674,6 +3667,7 @@ const std = @import("std");
3674// :121:17: error: use of undefined value here causes illegal behavior3667// :121:17: error: use of undefined value here causes illegal behavior
3675// :121:17: note: when computing vector element at index '0'3668// :121:17: note: when computing vector element at index '0'
3676// :121:17: error: use of undefined value here causes illegal behavior3669// :121:17: error: use of undefined value here causes illegal behavior
3670// :121:17: note: when computing vector element at index '0'
3677// :121:17: error: use of undefined value here causes illegal behavior3671// :121:17: error: use of undefined value here causes illegal behavior
3678// :121:17: note: when computing vector element at index '0'3672// :121:17: note: when computing vector element at index '0'
3679// :121:17: error: use of undefined value here causes illegal behavior3673// :121:17: error: use of undefined value here causes illegal behavior
...@@ -3681,7 +3675,7 @@ const std = @import("std");...@@ -3681,7 +3675,7 @@ const std = @import("std");
3681// :121:17: error: use of undefined value here causes illegal behavior3675// :121:17: error: use of undefined value here causes illegal behavior
3682// :121:17: note: when computing vector element at index '0'3676// :121:17: note: when computing vector element at index '0'
3683// :121:17: error: use of undefined value here causes illegal behavior3677// :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'
3685// :121:17: error: use of undefined value here causes illegal behavior3679// :121:17: error: use of undefined value here causes illegal behavior
3686// :121:17: note: when computing vector element at index '0'3680// :121:17: note: when computing vector element at index '0'
3687// :121:17: error: use of undefined value here causes illegal behavior3681// :121:17: error: use of undefined value here causes illegal behavior
...@@ -3689,6 +3683,7 @@ const std = @import("std");...@@ -3689,6 +3683,7 @@ const std = @import("std");
3689// :121:17: error: use of undefined value here causes illegal behavior3683// :121:17: error: use of undefined value here causes illegal behavior
3690// :121:17: note: when computing vector element at index '0'3684// :121:17: note: when computing vector element at index '0'
3691// :121:17: error: use of undefined value here causes illegal behavior3685// :121:17: error: use of undefined value here causes illegal behavior
3686// :121:17: note: when computing vector element at index '0'
3692// :121:17: error: use of undefined value here causes illegal behavior3687// :121:17: error: use of undefined value here causes illegal behavior
3693// :121:17: note: when computing vector element at index '0'3688// :121:17: note: when computing vector element at index '0'
3694// :121:17: error: use of undefined value here causes illegal behavior3689// :121:17: error: use of undefined value here causes illegal behavior
...@@ -3696,7 +3691,7 @@ const std = @import("std");...@@ -3696,7 +3691,7 @@ const std = @import("std");
3696// :121:17: error: use of undefined value here causes illegal behavior3691// :121:17: error: use of undefined value here causes illegal behavior
3697// :121:17: note: when computing vector element at index '0'3692// :121:17: note: when computing vector element at index '0'
3698// :121:17: error: use of undefined value here causes illegal behavior3693// :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'
3700// :121:17: error: use of undefined value here causes illegal behavior3695// :121:17: error: use of undefined value here causes illegal behavior
3701// :121:17: note: when computing vector element at index '0'3696// :121:17: note: when computing vector element at index '0'
3702// :121:17: error: use of undefined value here causes illegal behavior3697// :121:17: error: use of undefined value here causes illegal behavior
...@@ -3704,6 +3699,7 @@ const std = @import("std");...@@ -3704,6 +3699,7 @@ const std = @import("std");
3704// :121:17: error: use of undefined value here causes illegal behavior3699// :121:17: error: use of undefined value here causes illegal behavior
3705// :121:17: note: when computing vector element at index '0'3700// :121:17: note: when computing vector element at index '0'
3706// :121:17: error: use of undefined value here causes illegal behavior3701// :121:17: error: use of undefined value here causes illegal behavior
3702// :121:17: note: when computing vector element at index '0'
3707// :121:17: error: use of undefined value here causes illegal behavior3703// :121:17: error: use of undefined value here causes illegal behavior
3708// :121:17: note: when computing vector element at index '0'3704// :121:17: note: when computing vector element at index '0'
3709// :121:17: error: use of undefined value here causes illegal behavior3705// :121:17: error: use of undefined value here causes illegal behavior
...@@ -3711,7 +3707,7 @@ const std = @import("std");...@@ -3711,7 +3707,7 @@ const std = @import("std");
3711// :121:17: error: use of undefined value here causes illegal behavior3707// :121:17: error: use of undefined value here causes illegal behavior
3712// :121:17: note: when computing vector element at index '0'3708// :121:17: note: when computing vector element at index '0'
3713// :121:17: error: use of undefined value here causes illegal behavior3709// :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'
3715// :121:17: error: use of undefined value here causes illegal behavior3711// :121:17: error: use of undefined value here causes illegal behavior
3716// :121:17: note: when computing vector element at index '0'3712// :121:17: note: when computing vector element at index '0'
3717// :121:17: error: use of undefined value here causes illegal behavior3713// :121:17: error: use of undefined value here causes illegal behavior
...@@ -3719,6 +3715,7 @@ const std = @import("std");...@@ -3719,6 +3715,7 @@ const std = @import("std");
3719// :121:17: error: use of undefined value here causes illegal behavior3715// :121:17: error: use of undefined value here causes illegal behavior
3720// :121:17: note: when computing vector element at index '0'3716// :121:17: note: when computing vector element at index '0'
3721// :121:17: error: use of undefined value here causes illegal behavior3717// :121:17: error: use of undefined value here causes illegal behavior
3718// :121:17: note: when computing vector element at index '0'
3722// :121:17: error: use of undefined value here causes illegal behavior3719// :121:17: error: use of undefined value here causes illegal behavior
3723// :121:17: note: when computing vector element at index '0'3720// :121:17: note: when computing vector element at index '0'
3724// :121:17: error: use of undefined value here causes illegal behavior3721// :121:17: error: use of undefined value here causes illegal behavior
...@@ -3726,7 +3723,7 @@ const std = @import("std");...@@ -3726,7 +3723,7 @@ const std = @import("std");
3726// :121:17: error: use of undefined value here causes illegal behavior3723// :121:17: error: use of undefined value here causes illegal behavior
3727// :121:17: note: when computing vector element at index '0'3724// :121:17: note: when computing vector element at index '0'
3728// :121:17: error: use of undefined value here causes illegal behavior3725// :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'
3730// :121:17: error: use of undefined value here causes illegal behavior3727// :121:17: error: use of undefined value here causes illegal behavior
3731// :121:17: note: when computing vector element at index '0'3728// :121:17: note: when computing vector element at index '0'
3732// :121:17: error: use of undefined value here causes illegal behavior3729// :121:17: error: use of undefined value here causes illegal behavior
...@@ -3734,6 +3731,7 @@ const std = @import("std");...@@ -3734,6 +3731,7 @@ const std = @import("std");
3734// :121:17: error: use of undefined value here causes illegal behavior3731// :121:17: error: use of undefined value here causes illegal behavior
3735// :121:17: note: when computing vector element at index '0'3732// :121:17: note: when computing vector element at index '0'
3736// :121:17: error: use of undefined value here causes illegal behavior3733// :121:17: error: use of undefined value here causes illegal behavior
3734// :121:17: note: when computing vector element at index '0'
3737// :121:17: error: use of undefined value here causes illegal behavior3735// :121:17: error: use of undefined value here causes illegal behavior
3738// :121:17: note: when computing vector element at index '0'3736// :121:17: note: when computing vector element at index '0'
3739// :121:17: error: use of undefined value here causes illegal behavior3737// :121:17: error: use of undefined value here causes illegal behavior
...@@ -3741,7 +3739,7 @@ const std = @import("std");...@@ -3741,7 +3739,7 @@ const std = @import("std");
3741// :121:17: error: use of undefined value here causes illegal behavior3739// :121:17: error: use of undefined value here causes illegal behavior
3742// :121:17: note: when computing vector element at index '0'3740// :121:17: note: when computing vector element at index '0'
3743// :121:17: error: use of undefined value here causes illegal behavior3741// :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'
3745// :121:17: error: use of undefined value here causes illegal behavior3743// :121:17: error: use of undefined value here causes illegal behavior
3746// :121:17: note: when computing vector element at index '0'3744// :121:17: note: when computing vector element at index '0'
3747// :121:17: error: use of undefined value here causes illegal behavior3745// :121:17: error: use of undefined value here causes illegal behavior
...@@ -3749,6 +3747,7 @@ const std = @import("std");...@@ -3749,6 +3747,7 @@ const std = @import("std");
3749// :121:17: error: use of undefined value here causes illegal behavior3747// :121:17: error: use of undefined value here causes illegal behavior
3750// :121:17: note: when computing vector element at index '0'3748// :121:17: note: when computing vector element at index '0'
3751// :121:17: error: use of undefined value here causes illegal behavior3749// :121:17: error: use of undefined value here causes illegal behavior
3750// :121:17: note: when computing vector element at index '0'
3752// :121:17: error: use of undefined value here causes illegal behavior3751// :121:17: error: use of undefined value here causes illegal behavior
3753// :121:17: note: when computing vector element at index '0'3752// :121:17: note: when computing vector element at index '0'
3754// :121:17: error: use of undefined value here causes illegal behavior3753// :121:17: error: use of undefined value here causes illegal behavior
...@@ -3756,7 +3755,7 @@ const std = @import("std");...@@ -3756,7 +3755,7 @@ const std = @import("std");
3756// :121:17: error: use of undefined value here causes illegal behavior3755// :121:17: error: use of undefined value here causes illegal behavior
3757// :121:17: note: when computing vector element at index '0'3756// :121:17: note: when computing vector element at index '0'
3758// :121:17: error: use of undefined value here causes illegal behavior3757// :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'
3760// :121:17: error: use of undefined value here causes illegal behavior3759// :121:17: error: use of undefined value here causes illegal behavior
3761// :121:17: note: when computing vector element at index '0'3760// :121:17: note: when computing vector element at index '0'
3762// :121:17: error: use of undefined value here causes illegal behavior3761// :121:17: error: use of undefined value here causes illegal behavior
...@@ -3764,6 +3763,7 @@ const std = @import("std");...@@ -3764,6 +3763,7 @@ const std = @import("std");
3764// :121:17: error: use of undefined value here causes illegal behavior3763// :121:17: error: use of undefined value here causes illegal behavior
3765// :121:17: note: when computing vector element at index '0'3764// :121:17: note: when computing vector element at index '0'
3766// :121:17: error: use of undefined value here causes illegal behavior3765// :121:17: error: use of undefined value here causes illegal behavior
3766// :121:17: note: when computing vector element at index '0'
3767// :121:17: error: use of undefined value here causes illegal behavior3767// :121:17: error: use of undefined value here causes illegal behavior
3768// :121:17: note: when computing vector element at index '0'3768// :121:17: note: when computing vector element at index '0'
3769// :121:17: error: use of undefined value here causes illegal behavior3769// :121:17: error: use of undefined value here causes illegal behavior
...@@ -3771,7 +3771,7 @@ const std = @import("std");...@@ -3771,7 +3771,7 @@ const std = @import("std");
3771// :121:17: error: use of undefined value here causes illegal behavior3771// :121:17: error: use of undefined value here causes illegal behavior
3772// :121:17: note: when computing vector element at index '0'3772// :121:17: note: when computing vector element at index '0'
3773// :121:17: error: use of undefined value here causes illegal behavior3773// :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'
3775// :121:17: error: use of undefined value here causes illegal behavior3775// :121:17: error: use of undefined value here causes illegal behavior
3776// :121:17: note: when computing vector element at index '0'3776// :121:17: note: when computing vector element at index '0'
3777// :121:17: error: use of undefined value here causes illegal behavior3777// :121:17: error: use of undefined value here causes illegal behavior
...@@ -3779,6 +3779,7 @@ const std = @import("std");...@@ -3779,6 +3779,7 @@ const std = @import("std");
3779// :121:17: error: use of undefined value here causes illegal behavior3779// :121:17: error: use of undefined value here causes illegal behavior
3780// :121:17: note: when computing vector element at index '0'3780// :121:17: note: when computing vector element at index '0'
3781// :121:17: error: use of undefined value here causes illegal behavior3781// :121:17: error: use of undefined value here causes illegal behavior
3782// :121:17: note: when computing vector element at index '0'
3782// :121:17: error: use of undefined value here causes illegal behavior3783// :121:17: error: use of undefined value here causes illegal behavior
3783// :121:17: note: when computing vector element at index '0'3784// :121:17: note: when computing vector element at index '0'
3784// :121:17: error: use of undefined value here causes illegal behavior3785// :121:17: error: use of undefined value here causes illegal behavior
...@@ -3788,126 +3789,120 @@ const std = @import("std");...@@ -3788,126 +3789,120 @@ const std = @import("std");
3788// :121:17: error: use of undefined value here causes illegal behavior3789// :121:17: error: use of undefined value here causes illegal behavior
3789// :121:17: note: when computing vector element at index '1'3790// :121:17: note: when computing vector element at index '1'
3790// :121:17: error: use of undefined value here causes illegal behavior3791// :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: note: when computing vector element at index '1'
3792// :121:17: error: use of undefined value here causes illegal behavior
3793// :121:17: note: when computing vector element at index '0'
3794// :121:17: error: use of undefined value here causes illegal behavior3793// :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'
3796// :121:17: error: use of undefined value here causes illegal behavior3795// :121:17: error: use of undefined value here causes illegal behavior
3796// :121:17: note: when computing vector element at index '1'
3797// :121:17: error: use of undefined value here causes illegal behavior3797// :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'
3799// :121:17: error: use of undefined value here causes illegal behavior3799// :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'
3801// :121:17: error: use of undefined value here causes illegal behavior3801// :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'
3803// :121:17: error: use of undefined value here causes illegal behavior3803// :121:17: error: use of undefined value here causes illegal behavior
3804// :121:17: note: when computing vector element at index '1'3804// :121:17: note: when computing vector element at index '1'
3805// :121:17: error: use of undefined value here causes illegal behavior3805// :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'
3807// :121:17: error: use of undefined value here causes illegal behavior3807// :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'
3809// :121:17: error: use of undefined value here causes illegal behavior3809// :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'
3811// :121:21: error: use of undefined value here causes illegal behavior3811// :121:21: error: use of undefined value here causes illegal behavior
3812// :121:21: error: use of undefined value here causes illegal behavior3812// :121:21: error: use of undefined value here causes illegal behavior
3813// :121:21: note: when computing vector element at index '0'
3814// :121:21: error: use of undefined value here causes illegal behavior3813// :121:21: error: use of undefined value here causes illegal behavior
3815// :121:21: note: when computing vector element at index '0'
3816// :121:21: error: use of undefined value here causes illegal behavior3814// :121:21: error: use of undefined value here causes illegal behavior
3817// :121:21: note: when computing vector element at index '1'
3818// :121:21: error: use of undefined value here causes illegal behavior3815// :121:21: error: use of undefined value here causes illegal behavior
3819// :121:21: note: when computing vector element at index '0'
3820// :121:21: error: use of undefined value here causes illegal behavior3816// :121:21: error: use of undefined value here causes illegal behavior
3821// :121:21: note: when computing vector element at index '0'
3822// :121:21: error: use of undefined value here causes illegal behavior3817// :121:21: error: use of undefined value here causes illegal behavior
3823// :121:21: error: use of undefined value here causes illegal behavior3818// :121:21: error: use of undefined value here causes illegal behavior
3824// :121:21: note: when computing vector element at index '0'
3825// :121:21: error: use of undefined value here causes illegal behavior3819// :121:21: error: use of undefined value here causes illegal behavior
3826// :121:21: note: when computing vector element at index '0'
3827// :121:21: error: use of undefined value here causes illegal behavior3820// :121:21: error: use of undefined value here causes illegal behavior
3828// :121:21: note: when computing vector element at index '1'
3829// :121:21: error: use of undefined value here causes illegal behavior3821// :121:21: error: use of undefined value here causes illegal behavior
3830// :121:21: note: when computing vector element at index '0'
3831// :121:21: error: use of undefined value here causes illegal behavior3822// :121:21: error: use of undefined value here causes illegal behavior
3832// :121:21: note: when computing vector element at index '0'3823// :121:21: note: when computing vector element at index '0'
3833// :121:21: error: use of undefined value here causes illegal behavior3824// :121:21: error: use of undefined value here causes illegal behavior
3834// :121:21: error: use of undefined value here causes illegal behavior
3835// :121:21: note: when computing vector element at index '0'3825// :121:21: note: when computing vector element at index '0'
3836// :121:21: error: use of undefined value here causes illegal behavior3826// :121:21: error: use of undefined value here causes illegal behavior
3837// :121:21: note: when computing vector element at index '0'3827// :121:21: note: when computing vector element at index '0'
3838// :121:21: error: use of undefined value here causes illegal behavior3828// :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
3841// :121:21: note: when computing vector element at index '0'3829// :121:21: note: when computing vector element at index '0'
3842// :121:21: error: use of undefined value here causes illegal behavior3830// :121:21: error: use of undefined value here causes illegal behavior
3843// :121:21: note: when computing vector element at index '0'3831// :121:21: note: when computing vector element at index '0'
3844// :121:21: error: use of undefined value here causes illegal behavior3832// :121:21: error: use of undefined value here causes illegal behavior
3833// :121:21: note: when computing vector element at index '0'
3845// :121:21: error: use of undefined value here causes illegal behavior3834// :121:21: error: use of undefined value here causes illegal behavior
3846// :121:21: note: when computing vector element at index '0'3835// :121:21: note: when computing vector element at index '0'
3847// :121:21: error: use of undefined value here causes illegal behavior3836// :121:21: error: use of undefined value here causes illegal behavior
3848// :121:21: note: when computing vector element at index '0'3837// :121:21: note: when computing vector element at index '0'
3849// :121:21: error: use of undefined value here causes illegal behavior3838// :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'
3851// :121:21: error: use of undefined value here causes illegal behavior3840// :121:21: error: use of undefined value here causes illegal behavior
3852// :121:21: note: when computing vector element at index '0'3841// :121:21: note: when computing vector element at index '0'
3853// :121:21: error: use of undefined value here causes illegal behavior3842// :121:21: error: use of undefined value here causes illegal behavior
3854// :121:21: note: when computing vector element at index '0'3843// :121:21: note: when computing vector element at index '0'
3855// :121:21: error: use of undefined value here causes illegal behavior3844// :121:21: error: use of undefined value here causes illegal behavior
3845// :121:21: note: when computing vector element at index '0'
3856// :121:21: error: use of undefined value here causes illegal behavior3846// :121:21: error: use of undefined value here causes illegal behavior
3857// :121:21: note: when computing vector element at index '0'3847// :121:21: note: when computing vector element at index '0'
3858// :121:21: error: use of undefined value here causes illegal behavior3848// :121:21: error: use of undefined value here causes illegal behavior
3859// :121:21: note: when computing vector element at index '0'3849// :121:21: note: when computing vector element at index '0'
3860// :121:21: error: use of undefined value here causes illegal behavior3850// :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'
3862// :121:21: error: use of undefined value here causes illegal behavior3852// :121:21: error: use of undefined value here causes illegal behavior
3863// :121:21: note: when computing vector element at index '0'3853// :121:21: note: when computing vector element at index '0'
3864// :121:21: error: use of undefined value here causes illegal behavior3854// :121:21: error: use of undefined value here causes illegal behavior
3865// :121:21: note: when computing vector element at index '0'3855// :121:21: note: when computing vector element at index '0'
3866// :121:21: error: use of undefined value here causes illegal behavior3856// :121:21: error: use of undefined value here causes illegal behavior
3857// :121:21: note: when computing vector element at index '0'
3867// :121:21: error: use of undefined value here causes illegal behavior3858// :121:21: error: use of undefined value here causes illegal behavior
3868// :121:21: note: when computing vector element at index '0'3859// :121:21: note: when computing vector element at index '0'
3869// :121:21: error: use of undefined value here causes illegal behavior3860// :121:21: error: use of undefined value here causes illegal behavior
3870// :121:21: note: when computing vector element at index '0'3861// :121:21: note: when computing vector element at index '0'
3871// :121:21: error: use of undefined value here causes illegal behavior3862// :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'
3873// :121:21: error: use of undefined value here causes illegal behavior3864// :121:21: error: use of undefined value here causes illegal behavior
3874// :121:21: note: when computing vector element at index '0'3865// :121:21: note: when computing vector element at index '0'
3875// :121:21: error: use of undefined value here causes illegal behavior3866// :121:21: error: use of undefined value here causes illegal behavior
3876// :121:21: note: when computing vector element at index '0'3867// :121:21: note: when computing vector element at index '0'
3877// :121:21: error: use of undefined value here causes illegal behavior3868// :121:21: error: use of undefined value here causes illegal behavior
3869// :121:21: note: when computing vector element at index '0'
3878// :121:21: error: use of undefined value here causes illegal behavior3870// :121:21: error: use of undefined value here causes illegal behavior
3879// :121:21: note: when computing vector element at index '0'3871// :121:21: note: when computing vector element at index '0'
3880// :121:21: error: use of undefined value here causes illegal behavior3872// :121:21: error: use of undefined value here causes illegal behavior
3881// :121:21: note: when computing vector element at index '0'3873// :121:21: note: when computing vector element at index '0'
3882// :121:21: error: use of undefined value here causes illegal behavior3874// :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'
3884// :121:21: error: use of undefined value here causes illegal behavior3876// :121:21: error: use of undefined value here causes illegal behavior
3885// :121:21: note: when computing vector element at index '0'3877// :121:21: note: when computing vector element at index '0'
3886// :121:21: error: use of undefined value here causes illegal behavior3878// :121:21: error: use of undefined value here causes illegal behavior
3887// :121:21: note: when computing vector element at index '0'3879// :121:21: note: when computing vector element at index '0'
3888// :121:21: error: use of undefined value here causes illegal behavior3880// :121:21: error: use of undefined value here causes illegal behavior
3881// :121:21: note: when computing vector element at index '0'
3889// :121:21: error: use of undefined value here causes illegal behavior3882// :121:21: error: use of undefined value here causes illegal behavior
3890// :121:21: note: when computing vector element at index '0'3883// :121:21: note: when computing vector element at index '0'
3891// :121:21: error: use of undefined value here causes illegal behavior3884// :121:21: error: use of undefined value here causes illegal behavior
3892// :121:21: note: when computing vector element at index '0'3885// :121:21: note: when computing vector element at index '0'
3893// :121:21: error: use of undefined value here causes illegal behavior3886// :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'
3895// :121:21: error: use of undefined value here causes illegal behavior3888// :121:21: error: use of undefined value here causes illegal behavior
3896// :121:21: note: when computing vector element at index '0'3889// :121:21: note: when computing vector element at index '0'
3897// :121:21: error: use of undefined value here causes illegal behavior3890// :121:21: error: use of undefined value here causes illegal behavior
3898// :121:21: note: when computing vector element at index '0'3891// :121:21: note: when computing vector element at index '0'
3899// :121:21: error: use of undefined value here causes illegal behavior3892// :121:21: error: use of undefined value here causes illegal behavior
3893// :121:21: note: when computing vector element at index '0'
3900// :121:21: error: use of undefined value here causes illegal behavior3894// :121:21: error: use of undefined value here causes illegal behavior
3901// :121:21: note: when computing vector element at index '0'3895// :121:21: note: when computing vector element at index '0'
3902// :121:21: error: use of undefined value here causes illegal behavior3896// :121:21: error: use of undefined value here causes illegal behavior
3903// :121:21: note: when computing vector element at index '0'3897// :121:21: note: when computing vector element at index '0'
3904// :121:21: error: use of undefined value here causes illegal behavior3898// :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'
3906// :121:21: error: use of undefined value here causes illegal behavior3900// :121:21: error: use of undefined value here causes illegal behavior
3907// :121:21: note: when computing vector element at index '0'3901// :121:21: note: when computing vector element at index '0'
3908// :121:21: error: use of undefined value here causes illegal behavior3902// :121:21: error: use of undefined value here causes illegal behavior
3909// :121:21: note: when computing vector element at index '0'3903// :121:21: note: when computing vector element at index '0'
3910// :121:21: error: use of undefined value here causes illegal behavior3904// :121:21: error: use of undefined value here causes illegal behavior
3905// :121:21: note: when computing vector element at index '0'
3911// :121:21: error: use of undefined value here causes illegal behavior3906// :121:21: error: use of undefined value here causes illegal behavior
3912// :121:21: note: when computing vector element at index '0'3907// :121:21: note: when computing vector element at index '0'
3913// :121:21: error: use of undefined value here causes illegal behavior3908// :121:21: error: use of undefined value here causes illegal behavior
...@@ -3915,44 +3910,42 @@ const std = @import("std");...@@ -3915,44 +3910,42 @@ const std = @import("std");
3915// :121:21: error: use of undefined value here causes illegal behavior3910// :121:21: error: use of undefined value here causes illegal behavior
3916// :121:21: note: when computing vector element at index '1'3911// :121:21: note: when computing vector element at index '1'
3917// :121:21: error: use of undefined value here causes illegal behavior3912// :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'
3919// :121:21: error: use of undefined value here causes illegal behavior3914// :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'
3921// :121:21: error: use of undefined value here causes illegal behavior3916// :121:21: error: use of undefined value here causes illegal behavior
3917// :121:21: note: when computing vector element at index '1'
3922// :121:21: error: use of undefined value here causes illegal behavior3918// :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'
3924// :121:21: error: use of undefined value here causes illegal behavior3920// :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'
3926// :121:21: error: use of undefined value here causes illegal behavior3922// :121:21: error: use of undefined value here causes illegal behavior
3927// :121:21: note: when computing vector element at index '1'3923// :121:21: note: when computing vector element at index '1'
3928// :121:21: error: use of undefined value here causes illegal behavior3924// :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'
3930// :121:21: error: use of undefined value here causes illegal behavior3926// :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
3932// :125:27: error: use of undefined value here causes illegal behavior3933// :125:27: error: use of undefined value here causes illegal behavior
3933// :125:27: error: use of undefined value here causes illegal behavior3934// :125:27: error: use of undefined value here causes illegal behavior
3934// :125:27: note: when computing vector element at index '0'
3935// :125:27: error: use of undefined value here causes illegal behavior3935// :125:27: error: use of undefined value here causes illegal behavior
3936// :125:27: note: when computing vector element at index '0'
3937// :125:27: error: use of undefined value here causes illegal behavior3936// :125:27: error: use of undefined value here causes illegal behavior
3938// :125:27: note: when computing vector element at index '0'
3939// :125:27: error: use of undefined value here causes illegal behavior3937// :125:27: error: use of undefined value here causes illegal behavior
3940// :125:27: note: when computing vector element at index '1'
3941// :125:27: error: use of undefined value here causes illegal behavior3938// :125:27: error: use of undefined value here causes illegal behavior
3942// :125:27: note: when computing vector element at index '0'
3943// :125:27: error: use of undefined value here causes illegal behavior3939// :125:27: error: use of undefined value here causes illegal behavior
3944// :125:27: note: when computing vector element at index '0'
3945// :125:27: error: use of undefined value here causes illegal behavior3940// :125:27: error: use of undefined value here causes illegal behavior
3946// :125:27: note: when computing vector element at index '0'
3947// :125:27: error: use of undefined value here causes illegal behavior3941// :125:27: error: use of undefined value here causes illegal behavior
3948// :125:27: error: use of undefined value here causes illegal behavior3942// :125:27: error: use of undefined value here causes illegal behavior
3949// :125:27: note: when computing vector element at index '0'
3950// :125:27: error: use of undefined value here causes illegal behavior3943// :125:27: error: use of undefined value here causes illegal behavior
3951// :125:27: note: when computing vector element at index '0'3944// :125:27: note: when computing vector element at index '0'
3952// :125:27: error: use of undefined value here causes illegal behavior3945// :125:27: error: use of undefined value here causes illegal behavior
3953// :125:27: note: when computing vector element at index '0'3946// :125:27: note: when computing vector element at index '0'
3954// :125:27: error: use of undefined value here causes illegal behavior3947// :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'
3956// :125:27: error: use of undefined value here causes illegal behavior3949// :125:27: error: use of undefined value here causes illegal behavior
3957// :125:27: note: when computing vector element at index '0'3950// :125:27: note: when computing vector element at index '0'
3958// :125:27: error: use of undefined value here causes illegal behavior3951// :125:27: error: use of undefined value here causes illegal behavior
...@@ -3960,6 +3953,7 @@ const std = @import("std");...@@ -3960,6 +3953,7 @@ const std = @import("std");
3960// :125:27: error: use of undefined value here causes illegal behavior3953// :125:27: error: use of undefined value here causes illegal behavior
3961// :125:27: note: when computing vector element at index '0'3954// :125:27: note: when computing vector element at index '0'
3962// :125:27: error: use of undefined value here causes illegal behavior3955// :125:27: error: use of undefined value here causes illegal behavior
3956// :125:27: note: when computing vector element at index '0'
3963// :125:27: error: use of undefined value here causes illegal behavior3957// :125:27: error: use of undefined value here causes illegal behavior
3964// :125:27: note: when computing vector element at index '0'3958// :125:27: note: when computing vector element at index '0'
3965// :125:27: error: use of undefined value here causes illegal behavior3959// :125:27: error: use of undefined value here causes illegal behavior
...@@ -3967,7 +3961,7 @@ const std = @import("std");...@@ -3967,7 +3961,7 @@ const std = @import("std");
3967// :125:27: error: use of undefined value here causes illegal behavior3961// :125:27: error: use of undefined value here causes illegal behavior
3968// :125:27: note: when computing vector element at index '0'3962// :125:27: note: when computing vector element at index '0'
3969// :125:27: error: use of undefined value here causes illegal behavior3963// :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'
3971// :125:27: error: use of undefined value here causes illegal behavior3965// :125:27: error: use of undefined value here causes illegal behavior
3972// :125:27: note: when computing vector element at index '0'3966// :125:27: note: when computing vector element at index '0'
3973// :125:27: error: use of undefined value here causes illegal behavior3967// :125:27: error: use of undefined value here causes illegal behavior
...@@ -3975,6 +3969,7 @@ const std = @import("std");...@@ -3975,6 +3969,7 @@ const std = @import("std");
3975// :125:27: error: use of undefined value here causes illegal behavior3969// :125:27: error: use of undefined value here causes illegal behavior
3976// :125:27: note: when computing vector element at index '0'3970// :125:27: note: when computing vector element at index '0'
3977// :125:27: error: use of undefined value here causes illegal behavior3971// :125:27: error: use of undefined value here causes illegal behavior
3972// :125:27: note: when computing vector element at index '0'
3978// :125:27: error: use of undefined value here causes illegal behavior3973// :125:27: error: use of undefined value here causes illegal behavior
3979// :125:27: note: when computing vector element at index '0'3974// :125:27: note: when computing vector element at index '0'
3980// :125:27: error: use of undefined value here causes illegal behavior3975// :125:27: error: use of undefined value here causes illegal behavior
...@@ -3982,7 +3977,7 @@ const std = @import("std");...@@ -3982,7 +3977,7 @@ const std = @import("std");
3982// :125:27: error: use of undefined value here causes illegal behavior3977// :125:27: error: use of undefined value here causes illegal behavior
3983// :125:27: note: when computing vector element at index '0'3978// :125:27: note: when computing vector element at index '0'
3984// :125:27: error: use of undefined value here causes illegal behavior3979// :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'
3986// :125:27: error: use of undefined value here causes illegal behavior3981// :125:27: error: use of undefined value here causes illegal behavior
3987// :125:27: note: when computing vector element at index '0'3982// :125:27: note: when computing vector element at index '0'
3988// :125:27: error: use of undefined value here causes illegal behavior3983// :125:27: error: use of undefined value here causes illegal behavior
...@@ -3990,6 +3985,7 @@ const std = @import("std");...@@ -3990,6 +3985,7 @@ const std = @import("std");
3990// :125:27: error: use of undefined value here causes illegal behavior3985// :125:27: error: use of undefined value here causes illegal behavior
3991// :125:27: note: when computing vector element at index '0'3986// :125:27: note: when computing vector element at index '0'
3992// :125:27: error: use of undefined value here causes illegal behavior3987// :125:27: error: use of undefined value here causes illegal behavior
3988// :125:27: note: when computing vector element at index '0'
3993// :125:27: error: use of undefined value here causes illegal behavior3989// :125:27: error: use of undefined value here causes illegal behavior
3994// :125:27: note: when computing vector element at index '0'3990// :125:27: note: when computing vector element at index '0'
3995// :125:27: error: use of undefined value here causes illegal behavior3991// :125:27: error: use of undefined value here causes illegal behavior
...@@ -3997,7 +3993,7 @@ const std = @import("std");...@@ -3997,7 +3993,7 @@ const std = @import("std");
3997// :125:27: error: use of undefined value here causes illegal behavior3993// :125:27: error: use of undefined value here causes illegal behavior
3998// :125:27: note: when computing vector element at index '0'3994// :125:27: note: when computing vector element at index '0'
3999// :125:27: error: use of undefined value here causes illegal behavior3995// :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'
4001// :125:27: error: use of undefined value here causes illegal behavior3997// :125:27: error: use of undefined value here causes illegal behavior
4002// :125:27: note: when computing vector element at index '0'3998// :125:27: note: when computing vector element at index '0'
4003// :125:27: error: use of undefined value here causes illegal behavior3999// :125:27: error: use of undefined value here causes illegal behavior
...@@ -4005,6 +4001,7 @@ const std = @import("std");...@@ -4005,6 +4001,7 @@ const std = @import("std");
4005// :125:27: error: use of undefined value here causes illegal behavior4001// :125:27: error: use of undefined value here causes illegal behavior
4006// :125:27: note: when computing vector element at index '0'4002// :125:27: note: when computing vector element at index '0'
4007// :125:27: error: use of undefined value here causes illegal behavior4003// :125:27: error: use of undefined value here causes illegal behavior
4004// :125:27: note: when computing vector element at index '0'
4008// :125:27: error: use of undefined value here causes illegal behavior4005// :125:27: error: use of undefined value here causes illegal behavior
4009// :125:27: note: when computing vector element at index '0'4006// :125:27: note: when computing vector element at index '0'
4010// :125:27: error: use of undefined value here causes illegal behavior4007// :125:27: error: use of undefined value here causes illegal behavior
...@@ -4012,7 +4009,7 @@ const std = @import("std");...@@ -4012,7 +4009,7 @@ const std = @import("std");
4012// :125:27: error: use of undefined value here causes illegal behavior4009// :125:27: error: use of undefined value here causes illegal behavior
4013// :125:27: note: when computing vector element at index '0'4010// :125:27: note: when computing vector element at index '0'
4014// :125:27: error: use of undefined value here causes illegal behavior4011// :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'
4016// :125:27: error: use of undefined value here causes illegal behavior4013// :125:27: error: use of undefined value here causes illegal behavior
4017// :125:27: note: when computing vector element at index '0'4014// :125:27: note: when computing vector element at index '0'
4018// :125:27: error: use of undefined value here causes illegal behavior4015// :125:27: error: use of undefined value here causes illegal behavior
...@@ -4020,6 +4017,7 @@ const std = @import("std");...@@ -4020,6 +4017,7 @@ const std = @import("std");
4020// :125:27: error: use of undefined value here causes illegal behavior4017// :125:27: error: use of undefined value here causes illegal behavior
4021// :125:27: note: when computing vector element at index '0'4018// :125:27: note: when computing vector element at index '0'
4022// :125:27: error: use of undefined value here causes illegal behavior4019// :125:27: error: use of undefined value here causes illegal behavior
4020// :125:27: note: when computing vector element at index '0'
4023// :125:27: error: use of undefined value here causes illegal behavior4021// :125:27: error: use of undefined value here causes illegal behavior
4024// :125:27: note: when computing vector element at index '0'4022// :125:27: note: when computing vector element at index '0'
4025// :125:27: error: use of undefined value here causes illegal behavior4023// :125:27: error: use of undefined value here causes illegal behavior
...@@ -4027,7 +4025,7 @@ const std = @import("std");...@@ -4027,7 +4025,7 @@ const std = @import("std");
4027// :125:27: error: use of undefined value here causes illegal behavior4025// :125:27: error: use of undefined value here causes illegal behavior
4028// :125:27: note: when computing vector element at index '0'4026// :125:27: note: when computing vector element at index '0'
4029// :125:27: error: use of undefined value here causes illegal behavior4027// :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'
4031// :125:27: error: use of undefined value here causes illegal behavior4029// :125:27: error: use of undefined value here causes illegal behavior
4032// :125:27: note: when computing vector element at index '0'4030// :125:27: note: when computing vector element at index '0'
4033// :125:27: error: use of undefined value here causes illegal behavior4031// :125:27: error: use of undefined value here causes illegal behavior
...@@ -4035,6 +4033,7 @@ const std = @import("std");...@@ -4035,6 +4033,7 @@ const std = @import("std");
4035// :125:27: error: use of undefined value here causes illegal behavior4033// :125:27: error: use of undefined value here causes illegal behavior
4036// :125:27: note: when computing vector element at index '0'4034// :125:27: note: when computing vector element at index '0'
4037// :125:27: error: use of undefined value here causes illegal behavior4035// :125:27: error: use of undefined value here causes illegal behavior
4036// :125:27: note: when computing vector element at index '0'
4038// :125:27: error: use of undefined value here causes illegal behavior4037// :125:27: error: use of undefined value here causes illegal behavior
4039// :125:27: note: when computing vector element at index '0'4038// :125:27: note: when computing vector element at index '0'
4040// :125:27: error: use of undefined value here causes illegal behavior4039// :125:27: error: use of undefined value here causes illegal behavior
...@@ -4042,7 +4041,7 @@ const std = @import("std");...@@ -4042,7 +4041,7 @@ const std = @import("std");
4042// :125:27: error: use of undefined value here causes illegal behavior4041// :125:27: error: use of undefined value here causes illegal behavior
4043// :125:27: note: when computing vector element at index '0'4042// :125:27: note: when computing vector element at index '0'
4044// :125:27: error: use of undefined value here causes illegal behavior4043// :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'
4046// :125:27: error: use of undefined value here causes illegal behavior4045// :125:27: error: use of undefined value here causes illegal behavior
4047// :125:27: note: when computing vector element at index '0'4046// :125:27: note: when computing vector element at index '0'
4048// :125:27: error: use of undefined value here causes illegal behavior4047// :125:27: error: use of undefined value here causes illegal behavior
...@@ -4050,6 +4049,7 @@ const std = @import("std");...@@ -4050,6 +4049,7 @@ const std = @import("std");
4050// :125:27: error: use of undefined value here causes illegal behavior4049// :125:27: error: use of undefined value here causes illegal behavior
4051// :125:27: note: when computing vector element at index '0'4050// :125:27: note: when computing vector element at index '0'
4052// :125:27: error: use of undefined value here causes illegal behavior4051// :125:27: error: use of undefined value here causes illegal behavior
4052// :125:27: note: when computing vector element at index '0'
4053// :125:27: error: use of undefined value here causes illegal behavior4053// :125:27: error: use of undefined value here causes illegal behavior
4054// :125:27: note: when computing vector element at index '0'4054// :125:27: note: when computing vector element at index '0'
4055// :125:27: error: use of undefined value here causes illegal behavior4055// :125:27: error: use of undefined value here causes illegal behavior
...@@ -4057,7 +4057,7 @@ const std = @import("std");...@@ -4057,7 +4057,7 @@ const std = @import("std");
4057// :125:27: error: use of undefined value here causes illegal behavior4057// :125:27: error: use of undefined value here causes illegal behavior
4058// :125:27: note: when computing vector element at index '0'4058// :125:27: note: when computing vector element at index '0'
4059// :125:27: error: use of undefined value here causes illegal behavior4059// :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'
4061// :125:27: error: use of undefined value here causes illegal behavior4061// :125:27: error: use of undefined value here causes illegal behavior
4062// :125:27: note: when computing vector element at index '0'4062// :125:27: note: when computing vector element at index '0'
4063// :125:27: error: use of undefined value here causes illegal behavior4063// :125:27: error: use of undefined value here causes illegal behavior
...@@ -4065,6 +4065,7 @@ const std = @import("std");...@@ -4065,6 +4065,7 @@ const std = @import("std");
4065// :125:27: error: use of undefined value here causes illegal behavior4065// :125:27: error: use of undefined value here causes illegal behavior
4066// :125:27: note: when computing vector element at index '0'4066// :125:27: note: when computing vector element at index '0'
4067// :125:27: error: use of undefined value here causes illegal behavior4067// :125:27: error: use of undefined value here causes illegal behavior
4068// :125:27: note: when computing vector element at index '0'
4068// :125:27: error: use of undefined value here causes illegal behavior4069// :125:27: error: use of undefined value here causes illegal behavior
4069// :125:27: note: when computing vector element at index '0'4070// :125:27: note: when computing vector element at index '0'
4070// :125:27: error: use of undefined value here causes illegal behavior4071// :125:27: error: use of undefined value here causes illegal behavior
...@@ -4074,126 +4075,120 @@ const std = @import("std");...@@ -4074,126 +4075,120 @@ const std = @import("std");
4074// :125:27: error: use of undefined value here causes illegal behavior4075// :125:27: error: use of undefined value here causes illegal behavior
4075// :125:27: note: when computing vector element at index '1'4076// :125:27: note: when computing vector element at index '1'
4076// :125:27: error: use of undefined value here causes illegal behavior4077// :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: note: when computing vector element at index '1'
4078// :125:27: error: use of undefined value here causes illegal behavior
4079// :125:27: note: when computing vector element at index '0'
4080// :125:27: error: use of undefined value here causes illegal behavior4079// :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'
4082// :125:27: error: use of undefined value here causes illegal behavior4081// :125:27: error: use of undefined value here causes illegal behavior
4082// :125:27: note: when computing vector element at index '1'
4083// :125:27: error: use of undefined value here causes illegal behavior4083// :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'
4085// :125:27: error: use of undefined value here causes illegal behavior4085// :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'
4087// :125:27: error: use of undefined value here causes illegal behavior4087// :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'
4089// :125:27: error: use of undefined value here causes illegal behavior4089// :125:27: error: use of undefined value here causes illegal behavior
4090// :125:27: note: when computing vector element at index '1'4090// :125:27: note: when computing vector element at index '1'
4091// :125:27: error: use of undefined value here causes illegal behavior4091// :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'
4093// :125:27: error: use of undefined value here causes illegal behavior4093// :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'
4095// :125:27: error: use of undefined value here causes illegal behavior4095// :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'
4097// :125:30: error: use of undefined value here causes illegal behavior4097// :125:30: error: use of undefined value here causes illegal behavior
4098// :125:30: error: use of undefined value here causes illegal behavior4098// :125:30: error: use of undefined value here causes illegal behavior
4099// :125:30: note: when computing vector element at index '0'
4100// :125:30: error: use of undefined value here causes illegal behavior4099// :125:30: error: use of undefined value here causes illegal behavior
4101// :125:30: note: when computing vector element at index '0'
4102// :125:30: error: use of undefined value here causes illegal behavior4100// :125:30: error: use of undefined value here causes illegal behavior
4103// :125:30: note: when computing vector element at index '1'
4104// :125:30: error: use of undefined value here causes illegal behavior4101// :125:30: error: use of undefined value here causes illegal behavior
4105// :125:30: note: when computing vector element at index '0'
4106// :125:30: error: use of undefined value here causes illegal behavior4102// :125:30: error: use of undefined value here causes illegal behavior
4107// :125:30: note: when computing vector element at index '0'
4108// :125:30: error: use of undefined value here causes illegal behavior4103// :125:30: error: use of undefined value here causes illegal behavior
4109// :125:30: error: use of undefined value here causes illegal behavior4104// :125:30: error: use of undefined value here causes illegal behavior
4110// :125:30: note: when computing vector element at index '0'
4111// :125:30: error: use of undefined value here causes illegal behavior4105// :125:30: error: use of undefined value here causes illegal behavior
4112// :125:30: note: when computing vector element at index '0'
4113// :125:30: error: use of undefined value here causes illegal behavior4106// :125:30: error: use of undefined value here causes illegal behavior
4114// :125:30: note: when computing vector element at index '1'
4115// :125:30: error: use of undefined value here causes illegal behavior4107// :125:30: error: use of undefined value here causes illegal behavior
4116// :125:30: note: when computing vector element at index '0'
4117// :125:30: error: use of undefined value here causes illegal behavior4108// :125:30: error: use of undefined value here causes illegal behavior
4118// :125:30: note: when computing vector element at index '0'4109// :125:30: note: when computing vector element at index '0'
4119// :125:30: error: use of undefined value here causes illegal behavior4110// :125:30: error: use of undefined value here causes illegal behavior
4120// :125:30: error: use of undefined value here causes illegal behavior
4121// :125:30: note: when computing vector element at index '0'4111// :125:30: note: when computing vector element at index '0'
4122// :125:30: error: use of undefined value here causes illegal behavior4112// :125:30: error: use of undefined value here causes illegal behavior
4123// :125:30: note: when computing vector element at index '0'4113// :125:30: note: when computing vector element at index '0'
4124// :125:30: error: use of undefined value here causes illegal behavior4114// :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
4127// :125:30: note: when computing vector element at index '0'4115// :125:30: note: when computing vector element at index '0'
4128// :125:30: error: use of undefined value here causes illegal behavior4116// :125:30: error: use of undefined value here causes illegal behavior
4129// :125:30: note: when computing vector element at index '0'4117// :125:30: note: when computing vector element at index '0'
4130// :125:30: error: use of undefined value here causes illegal behavior4118// :125:30: error: use of undefined value here causes illegal behavior
4119// :125:30: note: when computing vector element at index '0'
4131// :125:30: error: use of undefined value here causes illegal behavior4120// :125:30: error: use of undefined value here causes illegal behavior
4132// :125:30: note: when computing vector element at index '0'4121// :125:30: note: when computing vector element at index '0'
4133// :125:30: error: use of undefined value here causes illegal behavior4122// :125:30: error: use of undefined value here causes illegal behavior
4134// :125:30: note: when computing vector element at index '0'4123// :125:30: note: when computing vector element at index '0'
4135// :125:30: error: use of undefined value here causes illegal behavior4124// :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'
4137// :125:30: error: use of undefined value here causes illegal behavior4126// :125:30: error: use of undefined value here causes illegal behavior
4138// :125:30: note: when computing vector element at index '0'4127// :125:30: note: when computing vector element at index '0'
4139// :125:30: error: use of undefined value here causes illegal behavior4128// :125:30: error: use of undefined value here causes illegal behavior
4140// :125:30: note: when computing vector element at index '0'4129// :125:30: note: when computing vector element at index '0'
4141// :125:30: error: use of undefined value here causes illegal behavior4130// :125:30: error: use of undefined value here causes illegal behavior
4131// :125:30: note: when computing vector element at index '0'
4142// :125:30: error: use of undefined value here causes illegal behavior4132// :125:30: error: use of undefined value here causes illegal behavior
4143// :125:30: note: when computing vector element at index '0'4133// :125:30: note: when computing vector element at index '0'
4144// :125:30: error: use of undefined value here causes illegal behavior4134// :125:30: error: use of undefined value here causes illegal behavior
4145// :125:30: note: when computing vector element at index '0'4135// :125:30: note: when computing vector element at index '0'
4146// :125:30: error: use of undefined value here causes illegal behavior4136// :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'
4148// :125:30: error: use of undefined value here causes illegal behavior4138// :125:30: error: use of undefined value here causes illegal behavior
4149// :125:30: note: when computing vector element at index '0'4139// :125:30: note: when computing vector element at index '0'
4150// :125:30: error: use of undefined value here causes illegal behavior4140// :125:30: error: use of undefined value here causes illegal behavior
4151// :125:30: note: when computing vector element at index '0'4141// :125:30: note: when computing vector element at index '0'
4152// :125:30: error: use of undefined value here causes illegal behavior4142// :125:30: error: use of undefined value here causes illegal behavior
4143// :125:30: note: when computing vector element at index '0'
4153// :125:30: error: use of undefined value here causes illegal behavior4144// :125:30: error: use of undefined value here causes illegal behavior
4154// :125:30: note: when computing vector element at index '0'4145// :125:30: note: when computing vector element at index '0'
4155// :125:30: error: use of undefined value here causes illegal behavior4146// :125:30: error: use of undefined value here causes illegal behavior
4156// :125:30: note: when computing vector element at index '0'4147// :125:30: note: when computing vector element at index '0'
4157// :125:30: error: use of undefined value here causes illegal behavior4148// :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'
4159// :125:30: error: use of undefined value here causes illegal behavior4150// :125:30: error: use of undefined value here causes illegal behavior
4160// :125:30: note: when computing vector element at index '0'4151// :125:30: note: when computing vector element at index '0'
4161// :125:30: error: use of undefined value here causes illegal behavior4152// :125:30: error: use of undefined value here causes illegal behavior
4162// :125:30: note: when computing vector element at index '0'4153// :125:30: note: when computing vector element at index '0'
4163// :125:30: error: use of undefined value here causes illegal behavior4154// :125:30: error: use of undefined value here causes illegal behavior
4155// :125:30: note: when computing vector element at index '0'
4164// :125:30: error: use of undefined value here causes illegal behavior4156// :125:30: error: use of undefined value here causes illegal behavior
4165// :125:30: note: when computing vector element at index '0'4157// :125:30: note: when computing vector element at index '0'
4166// :125:30: error: use of undefined value here causes illegal behavior4158// :125:30: error: use of undefined value here causes illegal behavior
4167// :125:30: note: when computing vector element at index '0'4159// :125:30: note: when computing vector element at index '0'
4168// :125:30: error: use of undefined value here causes illegal behavior4160// :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'
4170// :125:30: error: use of undefined value here causes illegal behavior4162// :125:30: error: use of undefined value here causes illegal behavior
4171// :125:30: note: when computing vector element at index '0'4163// :125:30: note: when computing vector element at index '0'
4172// :125:30: error: use of undefined value here causes illegal behavior4164// :125:30: error: use of undefined value here causes illegal behavior
4173// :125:30: note: when computing vector element at index '0'4165// :125:30: note: when computing vector element at index '0'
4174// :125:30: error: use of undefined value here causes illegal behavior4166// :125:30: error: use of undefined value here causes illegal behavior
4167// :125:30: note: when computing vector element at index '0'
4175// :125:30: error: use of undefined value here causes illegal behavior4168// :125:30: error: use of undefined value here causes illegal behavior
4176// :125:30: note: when computing vector element at index '0'4169// :125:30: note: when computing vector element at index '0'
4177// :125:30: error: use of undefined value here causes illegal behavior4170// :125:30: error: use of undefined value here causes illegal behavior
4178// :125:30: note: when computing vector element at index '0'4171// :125:30: note: when computing vector element at index '0'
4179// :125:30: error: use of undefined value here causes illegal behavior4172// :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'
4181// :125:30: error: use of undefined value here causes illegal behavior4174// :125:30: error: use of undefined value here causes illegal behavior
4182// :125:30: note: when computing vector element at index '0'4175// :125:30: note: when computing vector element at index '0'
4183// :125:30: error: use of undefined value here causes illegal behavior4176// :125:30: error: use of undefined value here causes illegal behavior
4184// :125:30: note: when computing vector element at index '0'4177// :125:30: note: when computing vector element at index '0'
4185// :125:30: error: use of undefined value here causes illegal behavior4178// :125:30: error: use of undefined value here causes illegal behavior
4179// :125:30: note: when computing vector element at index '0'
4186// :125:30: error: use of undefined value here causes illegal behavior4180// :125:30: error: use of undefined value here causes illegal behavior
4187// :125:30: note: when computing vector element at index '0'4181// :125:30: note: when computing vector element at index '0'
4188// :125:30: error: use of undefined value here causes illegal behavior4182// :125:30: error: use of undefined value here causes illegal behavior
4189// :125:30: note: when computing vector element at index '0'4183// :125:30: note: when computing vector element at index '0'
4190// :125:30: error: use of undefined value here causes illegal behavior4184// :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'
4192// :125:30: error: use of undefined value here causes illegal behavior4186// :125:30: error: use of undefined value here causes illegal behavior
4193// :125:30: note: when computing vector element at index '0'4187// :125:30: note: when computing vector element at index '0'
4194// :125:30: error: use of undefined value here causes illegal behavior4188// :125:30: error: use of undefined value here causes illegal behavior
4195// :125:30: note: when computing vector element at index '0'4189// :125:30: note: when computing vector element at index '0'
4196// :125:30: error: use of undefined value here causes illegal behavior4190// :125:30: error: use of undefined value here causes illegal behavior
4191// :125:30: note: when computing vector element at index '0'
4197// :125:30: error: use of undefined value here causes illegal behavior4192// :125:30: error: use of undefined value here causes illegal behavior
4198// :125:30: note: when computing vector element at index '0'4193// :125:30: note: when computing vector element at index '0'
4199// :125:30: error: use of undefined value here causes illegal behavior4194// :125:30: error: use of undefined value here causes illegal behavior
...@@ -4201,44 +4196,42 @@ const std = @import("std");...@@ -4201,44 +4196,42 @@ const std = @import("std");
4201// :125:30: error: use of undefined value here causes illegal behavior4196// :125:30: error: use of undefined value here causes illegal behavior
4202// :125:30: note: when computing vector element at index '1'4197// :125:30: note: when computing vector element at index '1'
4203// :125:30: error: use of undefined value here causes illegal behavior4198// :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'
4205// :125:30: error: use of undefined value here causes illegal behavior4200// :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'
4207// :125:30: error: use of undefined value here causes illegal behavior4202// :125:30: error: use of undefined value here causes illegal behavior
4203// :125:30: note: when computing vector element at index '1'
4208// :125:30: error: use of undefined value here causes illegal behavior4204// :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'
4210// :125:30: error: use of undefined value here causes illegal behavior4206// :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'
4212// :125:30: error: use of undefined value here causes illegal behavior4208// :125:30: error: use of undefined value here causes illegal behavior
4213// :125:30: note: when computing vector element at index '1'4209// :125:30: note: when computing vector element at index '1'
4214// :125:30: error: use of undefined value here causes illegal behavior4210// :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'
4216// :125:30: error: use of undefined value here causes illegal behavior4212// :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
4218// :129:27: error: use of undefined value here causes illegal behavior4219// :129:27: error: use of undefined value here causes illegal behavior
4219// :129:27: error: use of undefined value here causes illegal behavior4220// :129:27: error: use of undefined value here causes illegal behavior
4220// :129:27: note: when computing vector element at index '0'
4221// :129:27: error: use of undefined value here causes illegal behavior4221// :129:27: error: use of undefined value here causes illegal behavior
4222// :129:27: note: when computing vector element at index '0'
4223// :129:27: error: use of undefined value here causes illegal behavior4222// :129:27: error: use of undefined value here causes illegal behavior
4224// :129:27: note: when computing vector element at index '0'
4225// :129:27: error: use of undefined value here causes illegal behavior4223// :129:27: error: use of undefined value here causes illegal behavior
4226// :129:27: note: when computing vector element at index '1'
4227// :129:27: error: use of undefined value here causes illegal behavior4224// :129:27: error: use of undefined value here causes illegal behavior
4228// :129:27: note: when computing vector element at index '0'
4229// :129:27: error: use of undefined value here causes illegal behavior4225// :129:27: error: use of undefined value here causes illegal behavior
4230// :129:27: note: when computing vector element at index '0'
4231// :129:27: error: use of undefined value here causes illegal behavior4226// :129:27: error: use of undefined value here causes illegal behavior
4232// :129:27: note: when computing vector element at index '0'
4233// :129:27: error: use of undefined value here causes illegal behavior4227// :129:27: error: use of undefined value here causes illegal behavior
4234// :129:27: error: use of undefined value here causes illegal behavior4228// :129:27: error: use of undefined value here causes illegal behavior
4235// :129:27: note: when computing vector element at index '0'
4236// :129:27: error: use of undefined value here causes illegal behavior4229// :129:27: error: use of undefined value here causes illegal behavior
4237// :129:27: note: when computing vector element at index '0'4230// :129:27: note: when computing vector element at index '0'
4238// :129:27: error: use of undefined value here causes illegal behavior4231// :129:27: error: use of undefined value here causes illegal behavior
4239// :129:27: note: when computing vector element at index '0'4232// :129:27: note: when computing vector element at index '0'
4240// :129:27: error: use of undefined value here causes illegal behavior4233// :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'
4242// :129:27: error: use of undefined value here causes illegal behavior4235// :129:27: error: use of undefined value here causes illegal behavior
4243// :129:27: note: when computing vector element at index '0'4236// :129:27: note: when computing vector element at index '0'
4244// :129:27: error: use of undefined value here causes illegal behavior4237// :129:27: error: use of undefined value here causes illegal behavior
...@@ -4246,6 +4239,7 @@ const std = @import("std");...@@ -4246,6 +4239,7 @@ const std = @import("std");
4246// :129:27: error: use of undefined value here causes illegal behavior4239// :129:27: error: use of undefined value here causes illegal behavior
4247// :129:27: note: when computing vector element at index '0'4240// :129:27: note: when computing vector element at index '0'
4248// :129:27: error: use of undefined value here causes illegal behavior4241// :129:27: error: use of undefined value here causes illegal behavior
4242// :129:27: note: when computing vector element at index '0'
4249// :129:27: error: use of undefined value here causes illegal behavior4243// :129:27: error: use of undefined value here causes illegal behavior
4250// :129:27: note: when computing vector element at index '0'4244// :129:27: note: when computing vector element at index '0'
4251// :129:27: error: use of undefined value here causes illegal behavior4245// :129:27: error: use of undefined value here causes illegal behavior
...@@ -4253,7 +4247,7 @@ const std = @import("std");...@@ -4253,7 +4247,7 @@ const std = @import("std");
4253// :129:27: error: use of undefined value here causes illegal behavior4247// :129:27: error: use of undefined value here causes illegal behavior
4254// :129:27: note: when computing vector element at index '0'4248// :129:27: note: when computing vector element at index '0'
4255// :129:27: error: use of undefined value here causes illegal behavior4249// :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'
4257// :129:27: error: use of undefined value here causes illegal behavior4251// :129:27: error: use of undefined value here causes illegal behavior
4258// :129:27: note: when computing vector element at index '0'4252// :129:27: note: when computing vector element at index '0'
4259// :129:27: error: use of undefined value here causes illegal behavior4253// :129:27: error: use of undefined value here causes illegal behavior
...@@ -4261,6 +4255,7 @@ const std = @import("std");...@@ -4261,6 +4255,7 @@ const std = @import("std");
4261// :129:27: error: use of undefined value here causes illegal behavior4255// :129:27: error: use of undefined value here causes illegal behavior
4262// :129:27: note: when computing vector element at index '0'4256// :129:27: note: when computing vector element at index '0'
4263// :129:27: error: use of undefined value here causes illegal behavior4257// :129:27: error: use of undefined value here causes illegal behavior
4258// :129:27: note: when computing vector element at index '0'
4264// :129:27: error: use of undefined value here causes illegal behavior4259// :129:27: error: use of undefined value here causes illegal behavior
4265// :129:27: note: when computing vector element at index '0'4260// :129:27: note: when computing vector element at index '0'
4266// :129:27: error: use of undefined value here causes illegal behavior4261// :129:27: error: use of undefined value here causes illegal behavior
...@@ -4268,7 +4263,7 @@ const std = @import("std");...@@ -4268,7 +4263,7 @@ const std = @import("std");
4268// :129:27: error: use of undefined value here causes illegal behavior4263// :129:27: error: use of undefined value here causes illegal behavior
4269// :129:27: note: when computing vector element at index '0'4264// :129:27: note: when computing vector element at index '0'
4270// :129:27: error: use of undefined value here causes illegal behavior4265// :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'
4272// :129:27: error: use of undefined value here causes illegal behavior4267// :129:27: error: use of undefined value here causes illegal behavior
4273// :129:27: note: when computing vector element at index '0'4268// :129:27: note: when computing vector element at index '0'
4274// :129:27: error: use of undefined value here causes illegal behavior4269// :129:27: error: use of undefined value here causes illegal behavior
...@@ -4276,6 +4271,7 @@ const std = @import("std");...@@ -4276,6 +4271,7 @@ const std = @import("std");
4276// :129:27: error: use of undefined value here causes illegal behavior4271// :129:27: error: use of undefined value here causes illegal behavior
4277// :129:27: note: when computing vector element at index '0'4272// :129:27: note: when computing vector element at index '0'
4278// :129:27: error: use of undefined value here causes illegal behavior4273// :129:27: error: use of undefined value here causes illegal behavior
4274// :129:27: note: when computing vector element at index '0'
4279// :129:27: error: use of undefined value here causes illegal behavior4275// :129:27: error: use of undefined value here causes illegal behavior
4280// :129:27: note: when computing vector element at index '0'4276// :129:27: note: when computing vector element at index '0'
4281// :129:27: error: use of undefined value here causes illegal behavior4277// :129:27: error: use of undefined value here causes illegal behavior
...@@ -4283,7 +4279,7 @@ const std = @import("std");...@@ -4283,7 +4279,7 @@ const std = @import("std");
4283// :129:27: error: use of undefined value here causes illegal behavior4279// :129:27: error: use of undefined value here causes illegal behavior
4284// :129:27: note: when computing vector element at index '0'4280// :129:27: note: when computing vector element at index '0'
4285// :129:27: error: use of undefined value here causes illegal behavior4281// :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'
4287// :129:27: error: use of undefined value here causes illegal behavior4283// :129:27: error: use of undefined value here causes illegal behavior
4288// :129:27: note: when computing vector element at index '0'4284// :129:27: note: when computing vector element at index '0'
4289// :129:27: error: use of undefined value here causes illegal behavior4285// :129:27: error: use of undefined value here causes illegal behavior
...@@ -4291,6 +4287,7 @@ const std = @import("std");...@@ -4291,6 +4287,7 @@ const std = @import("std");
4291// :129:27: error: use of undefined value here causes illegal behavior4287// :129:27: error: use of undefined value here causes illegal behavior
4292// :129:27: note: when computing vector element at index '0'4288// :129:27: note: when computing vector element at index '0'
4293// :129:27: error: use of undefined value here causes illegal behavior4289// :129:27: error: use of undefined value here causes illegal behavior
4290// :129:27: note: when computing vector element at index '0'
4294// :129:27: error: use of undefined value here causes illegal behavior4291// :129:27: error: use of undefined value here causes illegal behavior
4295// :129:27: note: when computing vector element at index '0'4292// :129:27: note: when computing vector element at index '0'
4296// :129:27: error: use of undefined value here causes illegal behavior4293// :129:27: error: use of undefined value here causes illegal behavior
...@@ -4298,7 +4295,7 @@ const std = @import("std");...@@ -4298,7 +4295,7 @@ const std = @import("std");
4298// :129:27: error: use of undefined value here causes illegal behavior4295// :129:27: error: use of undefined value here causes illegal behavior
4299// :129:27: note: when computing vector element at index '0'4296// :129:27: note: when computing vector element at index '0'
4300// :129:27: error: use of undefined value here causes illegal behavior4297// :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'
4302// :129:27: error: use of undefined value here causes illegal behavior4299// :129:27: error: use of undefined value here causes illegal behavior
4303// :129:27: note: when computing vector element at index '0'4300// :129:27: note: when computing vector element at index '0'
4304// :129:27: error: use of undefined value here causes illegal behavior4301// :129:27: error: use of undefined value here causes illegal behavior
...@@ -4306,6 +4303,7 @@ const std = @import("std");...@@ -4306,6 +4303,7 @@ const std = @import("std");
4306// :129:27: error: use of undefined value here causes illegal behavior4303// :129:27: error: use of undefined value here causes illegal behavior
4307// :129:27: note: when computing vector element at index '0'4304// :129:27: note: when computing vector element at index '0'
4308// :129:27: error: use of undefined value here causes illegal behavior4305// :129:27: error: use of undefined value here causes illegal behavior
4306// :129:27: note: when computing vector element at index '0'
4309// :129:27: error: use of undefined value here causes illegal behavior4307// :129:27: error: use of undefined value here causes illegal behavior
4310// :129:27: note: when computing vector element at index '0'4308// :129:27: note: when computing vector element at index '0'
4311// :129:27: error: use of undefined value here causes illegal behavior4309// :129:27: error: use of undefined value here causes illegal behavior
...@@ -4313,7 +4311,7 @@ const std = @import("std");...@@ -4313,7 +4311,7 @@ const std = @import("std");
4313// :129:27: error: use of undefined value here causes illegal behavior4311// :129:27: error: use of undefined value here causes illegal behavior
4314// :129:27: note: when computing vector element at index '0'4312// :129:27: note: when computing vector element at index '0'
4315// :129:27: error: use of undefined value here causes illegal behavior4313// :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'
4317// :129:27: error: use of undefined value here causes illegal behavior4315// :129:27: error: use of undefined value here causes illegal behavior
4318// :129:27: note: when computing vector element at index '0'4316// :129:27: note: when computing vector element at index '0'
4319// :129:27: error: use of undefined value here causes illegal behavior4317// :129:27: error: use of undefined value here causes illegal behavior
...@@ -4321,6 +4319,7 @@ const std = @import("std");...@@ -4321,6 +4319,7 @@ const std = @import("std");
4321// :129:27: error: use of undefined value here causes illegal behavior4319// :129:27: error: use of undefined value here causes illegal behavior
4322// :129:27: note: when computing vector element at index '0'4320// :129:27: note: when computing vector element at index '0'
4323// :129:27: error: use of undefined value here causes illegal behavior4321// :129:27: error: use of undefined value here causes illegal behavior
4322// :129:27: note: when computing vector element at index '0'
4324// :129:27: error: use of undefined value here causes illegal behavior4323// :129:27: error: use of undefined value here causes illegal behavior
4325// :129:27: note: when computing vector element at index '0'4324// :129:27: note: when computing vector element at index '0'
4326// :129:27: error: use of undefined value here causes illegal behavior4325// :129:27: error: use of undefined value here causes illegal behavior
...@@ -4328,7 +4327,7 @@ const std = @import("std");...@@ -4328,7 +4327,7 @@ const std = @import("std");
4328// :129:27: error: use of undefined value here causes illegal behavior4327// :129:27: error: use of undefined value here causes illegal behavior
4329// :129:27: note: when computing vector element at index '0'4328// :129:27: note: when computing vector element at index '0'
4330// :129:27: error: use of undefined value here causes illegal behavior4329// :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'
4332// :129:27: error: use of undefined value here causes illegal behavior4331// :129:27: error: use of undefined value here causes illegal behavior
4333// :129:27: note: when computing vector element at index '0'4332// :129:27: note: when computing vector element at index '0'
4334// :129:27: error: use of undefined value here causes illegal behavior4333// :129:27: error: use of undefined value here causes illegal behavior
...@@ -4336,6 +4335,7 @@ const std = @import("std");...@@ -4336,6 +4335,7 @@ const std = @import("std");
4336// :129:27: error: use of undefined value here causes illegal behavior4335// :129:27: error: use of undefined value here causes illegal behavior
4337// :129:27: note: when computing vector element at index '0'4336// :129:27: note: when computing vector element at index '0'
4338// :129:27: error: use of undefined value here causes illegal behavior4337// :129:27: error: use of undefined value here causes illegal behavior
4338// :129:27: note: when computing vector element at index '0'
4339// :129:27: error: use of undefined value here causes illegal behavior4339// :129:27: error: use of undefined value here causes illegal behavior
4340// :129:27: note: when computing vector element at index '0'4340// :129:27: note: when computing vector element at index '0'
4341// :129:27: error: use of undefined value here causes illegal behavior4341// :129:27: error: use of undefined value here causes illegal behavior
...@@ -4343,7 +4343,7 @@ const std = @import("std");...@@ -4343,7 +4343,7 @@ const std = @import("std");
4343// :129:27: error: use of undefined value here causes illegal behavior4343// :129:27: error: use of undefined value here causes illegal behavior
4344// :129:27: note: when computing vector element at index '0'4344// :129:27: note: when computing vector element at index '0'
4345// :129:27: error: use of undefined value here causes illegal behavior4345// :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'
4347// :129:27: error: use of undefined value here causes illegal behavior4347// :129:27: error: use of undefined value here causes illegal behavior
4348// :129:27: note: when computing vector element at index '0'4348// :129:27: note: when computing vector element at index '0'
4349// :129:27: error: use of undefined value here causes illegal behavior4349// :129:27: error: use of undefined value here causes illegal behavior
...@@ -4351,6 +4351,7 @@ const std = @import("std");...@@ -4351,6 +4351,7 @@ const std = @import("std");
4351// :129:27: error: use of undefined value here causes illegal behavior4351// :129:27: error: use of undefined value here causes illegal behavior
4352// :129:27: note: when computing vector element at index '0'4352// :129:27: note: when computing vector element at index '0'
4353// :129:27: error: use of undefined value here causes illegal behavior4353// :129:27: error: use of undefined value here causes illegal behavior
4354// :129:27: note: when computing vector element at index '0'
4354// :129:27: error: use of undefined value here causes illegal behavior4355// :129:27: error: use of undefined value here causes illegal behavior
4355// :129:27: note: when computing vector element at index '0'4356// :129:27: note: when computing vector element at index '0'
4356// :129:27: error: use of undefined value here causes illegal behavior4357// :129:27: error: use of undefined value here causes illegal behavior
...@@ -4360,126 +4361,120 @@ const std = @import("std");...@@ -4360,126 +4361,120 @@ const std = @import("std");
4360// :129:27: error: use of undefined value here causes illegal behavior4361// :129:27: error: use of undefined value here causes illegal behavior
4361// :129:27: note: when computing vector element at index '1'4362// :129:27: note: when computing vector element at index '1'
4362// :129:27: error: use of undefined value here causes illegal behavior4363// :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: note: when computing vector element at index '1'
4364// :129:27: error: use of undefined value here causes illegal behavior
4365// :129:27: note: when computing vector element at index '0'
4366// :129:27: error: use of undefined value here causes illegal behavior4365// :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'
4368// :129:27: error: use of undefined value here causes illegal behavior4367// :129:27: error: use of undefined value here causes illegal behavior
4368// :129:27: note: when computing vector element at index '1'
4369// :129:27: error: use of undefined value here causes illegal behavior4369// :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'
4371// :129:27: error: use of undefined value here causes illegal behavior4371// :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'
4373// :129:27: error: use of undefined value here causes illegal behavior4373// :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'
4375// :129:27: error: use of undefined value here causes illegal behavior4375// :129:27: error: use of undefined value here causes illegal behavior
4376// :129:27: note: when computing vector element at index '1'4376// :129:27: note: when computing vector element at index '1'
4377// :129:27: error: use of undefined value here causes illegal behavior4377// :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'
4379// :129:27: error: use of undefined value here causes illegal behavior4379// :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'
4381// :129:27: error: use of undefined value here causes illegal behavior4381// :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'
4383// :129:30: error: use of undefined value here causes illegal behavior4383// :129:30: error: use of undefined value here causes illegal behavior
4384// :129:30: error: use of undefined value here causes illegal behavior4384// :129:30: error: use of undefined value here causes illegal behavior
4385// :129:30: note: when computing vector element at index '0'
4386// :129:30: error: use of undefined value here causes illegal behavior4385// :129:30: error: use of undefined value here causes illegal behavior
4387// :129:30: note: when computing vector element at index '0'
4388// :129:30: error: use of undefined value here causes illegal behavior4386// :129:30: error: use of undefined value here causes illegal behavior
4389// :129:30: note: when computing vector element at index '1'
4390// :129:30: error: use of undefined value here causes illegal behavior4387// :129:30: error: use of undefined value here causes illegal behavior
4391// :129:30: note: when computing vector element at index '0'
4392// :129:30: error: use of undefined value here causes illegal behavior4388// :129:30: error: use of undefined value here causes illegal behavior
4393// :129:30: note: when computing vector element at index '0'
4394// :129:30: error: use of undefined value here causes illegal behavior4389// :129:30: error: use of undefined value here causes illegal behavior
4395// :129:30: error: use of undefined value here causes illegal behavior4390// :129:30: error: use of undefined value here causes illegal behavior
4396// :129:30: note: when computing vector element at index '0'
4397// :129:30: error: use of undefined value here causes illegal behavior4391// :129:30: error: use of undefined value here causes illegal behavior
4398// :129:30: note: when computing vector element at index '0'
4399// :129:30: error: use of undefined value here causes illegal behavior4392// :129:30: error: use of undefined value here causes illegal behavior
4400// :129:30: note: when computing vector element at index '1'
4401// :129:30: error: use of undefined value here causes illegal behavior4393// :129:30: error: use of undefined value here causes illegal behavior
4402// :129:30: note: when computing vector element at index '0'
4403// :129:30: error: use of undefined value here causes illegal behavior4394// :129:30: error: use of undefined value here causes illegal behavior
4404// :129:30: note: when computing vector element at index '0'4395// :129:30: note: when computing vector element at index '0'
4405// :129:30: error: use of undefined value here causes illegal behavior4396// :129:30: error: use of undefined value here causes illegal behavior
4406// :129:30: error: use of undefined value here causes illegal behavior
4407// :129:30: note: when computing vector element at index '0'4397// :129:30: note: when computing vector element at index '0'
4408// :129:30: error: use of undefined value here causes illegal behavior4398// :129:30: error: use of undefined value here causes illegal behavior
4409// :129:30: note: when computing vector element at index '0'4399// :129:30: note: when computing vector element at index '0'
4410// :129:30: error: use of undefined value here causes illegal behavior4400// :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
4413// :129:30: note: when computing vector element at index '0'4401// :129:30: note: when computing vector element at index '0'
4414// :129:30: error: use of undefined value here causes illegal behavior4402// :129:30: error: use of undefined value here causes illegal behavior
4415// :129:30: note: when computing vector element at index '0'4403// :129:30: note: when computing vector element at index '0'
4416// :129:30: error: use of undefined value here causes illegal behavior4404// :129:30: error: use of undefined value here causes illegal behavior
4405// :129:30: note: when computing vector element at index '0'
4417// :129:30: error: use of undefined value here causes illegal behavior4406// :129:30: error: use of undefined value here causes illegal behavior
4418// :129:30: note: when computing vector element at index '0'4407// :129:30: note: when computing vector element at index '0'
4419// :129:30: error: use of undefined value here causes illegal behavior4408// :129:30: error: use of undefined value here causes illegal behavior
4420// :129:30: note: when computing vector element at index '0'4409// :129:30: note: when computing vector element at index '0'
4421// :129:30: error: use of undefined value here causes illegal behavior4410// :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'
4423// :129:30: error: use of undefined value here causes illegal behavior4412// :129:30: error: use of undefined value here causes illegal behavior
4424// :129:30: note: when computing vector element at index '0'4413// :129:30: note: when computing vector element at index '0'
4425// :129:30: error: use of undefined value here causes illegal behavior4414// :129:30: error: use of undefined value here causes illegal behavior
4426// :129:30: note: when computing vector element at index '0'4415// :129:30: note: when computing vector element at index '0'
4427// :129:30: error: use of undefined value here causes illegal behavior4416// :129:30: error: use of undefined value here causes illegal behavior
4417// :129:30: note: when computing vector element at index '0'
4428// :129:30: error: use of undefined value here causes illegal behavior4418// :129:30: error: use of undefined value here causes illegal behavior
4429// :129:30: note: when computing vector element at index '0'4419// :129:30: note: when computing vector element at index '0'
4430// :129:30: error: use of undefined value here causes illegal behavior4420// :129:30: error: use of undefined value here causes illegal behavior
4431// :129:30: note: when computing vector element at index '0'4421// :129:30: note: when computing vector element at index '0'
4432// :129:30: error: use of undefined value here causes illegal behavior4422// :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'
4434// :129:30: error: use of undefined value here causes illegal behavior4424// :129:30: error: use of undefined value here causes illegal behavior
4435// :129:30: note: when computing vector element at index '0'4425// :129:30: note: when computing vector element at index '0'
4436// :129:30: error: use of undefined value here causes illegal behavior4426// :129:30: error: use of undefined value here causes illegal behavior
4437// :129:30: note: when computing vector element at index '0'4427// :129:30: note: when computing vector element at index '0'
4438// :129:30: error: use of undefined value here causes illegal behavior4428// :129:30: error: use of undefined value here causes illegal behavior
4429// :129:30: note: when computing vector element at index '0'
4439// :129:30: error: use of undefined value here causes illegal behavior4430// :129:30: error: use of undefined value here causes illegal behavior
4440// :129:30: note: when computing vector element at index '0'4431// :129:30: note: when computing vector element at index '0'
4441// :129:30: error: use of undefined value here causes illegal behavior4432// :129:30: error: use of undefined value here causes illegal behavior
4442// :129:30: note: when computing vector element at index '0'4433// :129:30: note: when computing vector element at index '0'
4443// :129:30: error: use of undefined value here causes illegal behavior4434// :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'
4445// :129:30: error: use of undefined value here causes illegal behavior4436// :129:30: error: use of undefined value here causes illegal behavior
4446// :129:30: note: when computing vector element at index '0'4437// :129:30: note: when computing vector element at index '0'
4447// :129:30: error: use of undefined value here causes illegal behavior4438// :129:30: error: use of undefined value here causes illegal behavior
4448// :129:30: note: when computing vector element at index '0'4439// :129:30: note: when computing vector element at index '0'
4449// :129:30: error: use of undefined value here causes illegal behavior4440// :129:30: error: use of undefined value here causes illegal behavior
4441// :129:30: note: when computing vector element at index '0'
4450// :129:30: error: use of undefined value here causes illegal behavior4442// :129:30: error: use of undefined value here causes illegal behavior
4451// :129:30: note: when computing vector element at index '0'4443// :129:30: note: when computing vector element at index '0'
4452// :129:30: error: use of undefined value here causes illegal behavior4444// :129:30: error: use of undefined value here causes illegal behavior
4453// :129:30: note: when computing vector element at index '0'4445// :129:30: note: when computing vector element at index '0'
4454// :129:30: error: use of undefined value here causes illegal behavior4446// :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'
4456// :129:30: error: use of undefined value here causes illegal behavior4448// :129:30: error: use of undefined value here causes illegal behavior
4457// :129:30: note: when computing vector element at index '0'4449// :129:30: note: when computing vector element at index '0'
4458// :129:30: error: use of undefined value here causes illegal behavior4450// :129:30: error: use of undefined value here causes illegal behavior
4459// :129:30: note: when computing vector element at index '0'4451// :129:30: note: when computing vector element at index '0'
4460// :129:30: error: use of undefined value here causes illegal behavior4452// :129:30: error: use of undefined value here causes illegal behavior
4453// :129:30: note: when computing vector element at index '0'
4461// :129:30: error: use of undefined value here causes illegal behavior4454// :129:30: error: use of undefined value here causes illegal behavior
4462// :129:30: note: when computing vector element at index '0'4455// :129:30: note: when computing vector element at index '0'
4463// :129:30: error: use of undefined value here causes illegal behavior4456// :129:30: error: use of undefined value here causes illegal behavior
4464// :129:30: note: when computing vector element at index '0'4457// :129:30: note: when computing vector element at index '0'
4465// :129:30: error: use of undefined value here causes illegal behavior4458// :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'
4467// :129:30: error: use of undefined value here causes illegal behavior4460// :129:30: error: use of undefined value here causes illegal behavior
4468// :129:30: note: when computing vector element at index '0'4461// :129:30: note: when computing vector element at index '0'
4469// :129:30: error: use of undefined value here causes illegal behavior4462// :129:30: error: use of undefined value here causes illegal behavior
4470// :129:30: note: when computing vector element at index '0'4463// :129:30: note: when computing vector element at index '0'
4471// :129:30: error: use of undefined value here causes illegal behavior4464// :129:30: error: use of undefined value here causes illegal behavior
4465// :129:30: note: when computing vector element at index '0'
4472// :129:30: error: use of undefined value here causes illegal behavior4466// :129:30: error: use of undefined value here causes illegal behavior
4473// :129:30: note: when computing vector element at index '0'4467// :129:30: note: when computing vector element at index '0'
4474// :129:30: error: use of undefined value here causes illegal behavior4468// :129:30: error: use of undefined value here causes illegal behavior
4475// :129:30: note: when computing vector element at index '0'4469// :129:30: note: when computing vector element at index '0'
4476// :129:30: error: use of undefined value here causes illegal behavior4470// :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'
4478// :129:30: error: use of undefined value here causes illegal behavior4472// :129:30: error: use of undefined value here causes illegal behavior
4479// :129:30: note: when computing vector element at index '0'4473// :129:30: note: when computing vector element at index '0'
4480// :129:30: error: use of undefined value here causes illegal behavior4474// :129:30: error: use of undefined value here causes illegal behavior
4481// :129:30: note: when computing vector element at index '0'4475// :129:30: note: when computing vector element at index '0'
4482// :129:30: error: use of undefined value here causes illegal behavior4476// :129:30: error: use of undefined value here causes illegal behavior
4477// :129:30: note: when computing vector element at index '0'
4483// :129:30: error: use of undefined value here causes illegal behavior4478// :129:30: error: use of undefined value here causes illegal behavior
4484// :129:30: note: when computing vector element at index '0'4479// :129:30: note: when computing vector element at index '0'
4485// :129:30: error: use of undefined value here causes illegal behavior4480// :129:30: error: use of undefined value here causes illegal behavior
...@@ -4487,44 +4482,42 @@ const std = @import("std");...@@ -4487,44 +4482,42 @@ const std = @import("std");
4487// :129:30: error: use of undefined value here causes illegal behavior4482// :129:30: error: use of undefined value here causes illegal behavior
4488// :129:30: note: when computing vector element at index '1'4483// :129:30: note: when computing vector element at index '1'
4489// :129:30: error: use of undefined value here causes illegal behavior4484// :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'
4491// :129:30: error: use of undefined value here causes illegal behavior4486// :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'
4493// :129:30: error: use of undefined value here causes illegal behavior4490// :129:30: error: use of undefined value here causes illegal behavior
4491// :129:30: note: when computing vector element at index '1'
4494// :129:30: error: use of undefined value here causes illegal behavior4492// :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'
4496// :129:30: error: use of undefined value here causes illegal behavior4494// :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'
4498// :129:30: error: use of undefined value here causes illegal behavior4496// :129:30: error: use of undefined value here causes illegal behavior
4499// :129:30: note: when computing vector element at index '1'4497// :129:30: note: when computing vector element at index '1'
4500// :129:30: error: use of undefined value here causes illegal behavior4498// :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'
4502// :129:30: error: use of undefined value here causes illegal behavior4500// :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
4504// :133:27: error: use of undefined value here causes illegal behavior4505// :133:27: error: use of undefined value here causes illegal behavior
4505// :133:27: error: use of undefined value here causes illegal behavior4506// :133:27: error: use of undefined value here causes illegal behavior
4506// :133:27: note: when computing vector element at index '0'
4507// :133:27: error: use of undefined value here causes illegal behavior4507// :133:27: error: use of undefined value here causes illegal behavior
4508// :133:27: note: when computing vector element at index '0'
4509// :133:27: error: use of undefined value here causes illegal behavior4508// :133:27: error: use of undefined value here causes illegal behavior
4510// :133:27: note: when computing vector element at index '0'
4511// :133:27: error: use of undefined value here causes illegal behavior4509// :133:27: error: use of undefined value here causes illegal behavior
4512// :133:27: note: when computing vector element at index '1'
4513// :133:27: error: use of undefined value here causes illegal behavior4510// :133:27: error: use of undefined value here causes illegal behavior
4514// :133:27: note: when computing vector element at index '0'
4515// :133:27: error: use of undefined value here causes illegal behavior4511// :133:27: error: use of undefined value here causes illegal behavior
4516// :133:27: note: when computing vector element at index '0'
4517// :133:27: error: use of undefined value here causes illegal behavior4512// :133:27: error: use of undefined value here causes illegal behavior
4518// :133:27: note: when computing vector element at index '0'
4519// :133:27: error: use of undefined value here causes illegal behavior4513// :133:27: error: use of undefined value here causes illegal behavior
4520// :133:27: error: use of undefined value here causes illegal behavior4514// :133:27: error: use of undefined value here causes illegal behavior
4521// :133:27: note: when computing vector element at index '0'
4522// :133:27: error: use of undefined value here causes illegal behavior4515// :133:27: error: use of undefined value here causes illegal behavior
4523// :133:27: note: when computing vector element at index '0'4516// :133:27: note: when computing vector element at index '0'
4524// :133:27: error: use of undefined value here causes illegal behavior4517// :133:27: error: use of undefined value here causes illegal behavior
4525// :133:27: note: when computing vector element at index '0'4518// :133:27: note: when computing vector element at index '0'
4526// :133:27: error: use of undefined value here causes illegal behavior4519// :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'
4528// :133:27: error: use of undefined value here causes illegal behavior4521// :133:27: error: use of undefined value here causes illegal behavior
4529// :133:27: note: when computing vector element at index '0'4522// :133:27: note: when computing vector element at index '0'
4530// :133:27: error: use of undefined value here causes illegal behavior4523// :133:27: error: use of undefined value here causes illegal behavior
...@@ -4532,6 +4525,7 @@ const std = @import("std");...@@ -4532,6 +4525,7 @@ const std = @import("std");
4532// :133:27: error: use of undefined value here causes illegal behavior4525// :133:27: error: use of undefined value here causes illegal behavior
4533// :133:27: note: when computing vector element at index '0'4526// :133:27: note: when computing vector element at index '0'
4534// :133:27: error: use of undefined value here causes illegal behavior4527// :133:27: error: use of undefined value here causes illegal behavior
4528// :133:27: note: when computing vector element at index '0'
4535// :133:27: error: use of undefined value here causes illegal behavior4529// :133:27: error: use of undefined value here causes illegal behavior
4536// :133:27: note: when computing vector element at index '0'4530// :133:27: note: when computing vector element at index '0'
4537// :133:27: error: use of undefined value here causes illegal behavior4531// :133:27: error: use of undefined value here causes illegal behavior
...@@ -4539,7 +4533,7 @@ const std = @import("std");...@@ -4539,7 +4533,7 @@ const std = @import("std");
4539// :133:27: error: use of undefined value here causes illegal behavior4533// :133:27: error: use of undefined value here causes illegal behavior
4540// :133:27: note: when computing vector element at index '0'4534// :133:27: note: when computing vector element at index '0'
4541// :133:27: error: use of undefined value here causes illegal behavior4535// :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'
4543// :133:27: error: use of undefined value here causes illegal behavior4537// :133:27: error: use of undefined value here causes illegal behavior
4544// :133:27: note: when computing vector element at index '0'4538// :133:27: note: when computing vector element at index '0'
4545// :133:27: error: use of undefined value here causes illegal behavior4539// :133:27: error: use of undefined value here causes illegal behavior
...@@ -4547,6 +4541,7 @@ const std = @import("std");...@@ -4547,6 +4541,7 @@ const std = @import("std");
4547// :133:27: error: use of undefined value here causes illegal behavior4541// :133:27: error: use of undefined value here causes illegal behavior
4548// :133:27: note: when computing vector element at index '0'4542// :133:27: note: when computing vector element at index '0'
4549// :133:27: error: use of undefined value here causes illegal behavior4543// :133:27: error: use of undefined value here causes illegal behavior
4544// :133:27: note: when computing vector element at index '0'
4550// :133:27: error: use of undefined value here causes illegal behavior4545// :133:27: error: use of undefined value here causes illegal behavior
4551// :133:27: note: when computing vector element at index '0'4546// :133:27: note: when computing vector element at index '0'
4552// :133:27: error: use of undefined value here causes illegal behavior4547// :133:27: error: use of undefined value here causes illegal behavior
...@@ -4554,7 +4549,7 @@ const std = @import("std");...@@ -4554,7 +4549,7 @@ const std = @import("std");
4554// :133:27: error: use of undefined value here causes illegal behavior4549// :133:27: error: use of undefined value here causes illegal behavior
4555// :133:27: note: when computing vector element at index '0'4550// :133:27: note: when computing vector element at index '0'
4556// :133:27: error: use of undefined value here causes illegal behavior4551// :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'
4558// :133:27: error: use of undefined value here causes illegal behavior4553// :133:27: error: use of undefined value here causes illegal behavior
4559// :133:27: note: when computing vector element at index '0'4554// :133:27: note: when computing vector element at index '0'
4560// :133:27: error: use of undefined value here causes illegal behavior4555// :133:27: error: use of undefined value here causes illegal behavior
...@@ -4562,6 +4557,7 @@ const std = @import("std");...@@ -4562,6 +4557,7 @@ const std = @import("std");
4562// :133:27: error: use of undefined value here causes illegal behavior4557// :133:27: error: use of undefined value here causes illegal behavior
4563// :133:27: note: when computing vector element at index '0'4558// :133:27: note: when computing vector element at index '0'
4564// :133:27: error: use of undefined value here causes illegal behavior4559// :133:27: error: use of undefined value here causes illegal behavior
4560// :133:27: note: when computing vector element at index '0'
4565// :133:27: error: use of undefined value here causes illegal behavior4561// :133:27: error: use of undefined value here causes illegal behavior
4566// :133:27: note: when computing vector element at index '0'4562// :133:27: note: when computing vector element at index '0'
4567// :133:27: error: use of undefined value here causes illegal behavior4563// :133:27: error: use of undefined value here causes illegal behavior
...@@ -4569,7 +4565,7 @@ const std = @import("std");...@@ -4569,7 +4565,7 @@ const std = @import("std");
4569// :133:27: error: use of undefined value here causes illegal behavior4565// :133:27: error: use of undefined value here causes illegal behavior
4570// :133:27: note: when computing vector element at index '0'4566// :133:27: note: when computing vector element at index '0'
4571// :133:27: error: use of undefined value here causes illegal behavior4567// :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'
4573// :133:27: error: use of undefined value here causes illegal behavior4569// :133:27: error: use of undefined value here causes illegal behavior
4574// :133:27: note: when computing vector element at index '0'4570// :133:27: note: when computing vector element at index '0'
4575// :133:27: error: use of undefined value here causes illegal behavior4571// :133:27: error: use of undefined value here causes illegal behavior
...@@ -4577,6 +4573,7 @@ const std = @import("std");...@@ -4577,6 +4573,7 @@ const std = @import("std");
4577// :133:27: error: use of undefined value here causes illegal behavior4573// :133:27: error: use of undefined value here causes illegal behavior
4578// :133:27: note: when computing vector element at index '0'4574// :133:27: note: when computing vector element at index '0'
4579// :133:27: error: use of undefined value here causes illegal behavior4575// :133:27: error: use of undefined value here causes illegal behavior
4576// :133:27: note: when computing vector element at index '0'
4580// :133:27: error: use of undefined value here causes illegal behavior4577// :133:27: error: use of undefined value here causes illegal behavior
4581// :133:27: note: when computing vector element at index '0'4578// :133:27: note: when computing vector element at index '0'
4582// :133:27: error: use of undefined value here causes illegal behavior4579// :133:27: error: use of undefined value here causes illegal behavior
...@@ -4584,7 +4581,7 @@ const std = @import("std");...@@ -4584,7 +4581,7 @@ const std = @import("std");
4584// :133:27: error: use of undefined value here causes illegal behavior4581// :133:27: error: use of undefined value here causes illegal behavior
4585// :133:27: note: when computing vector element at index '0'4582// :133:27: note: when computing vector element at index '0'
4586// :133:27: error: use of undefined value here causes illegal behavior4583// :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'
4588// :133:27: error: use of undefined value here causes illegal behavior4585// :133:27: error: use of undefined value here causes illegal behavior
4589// :133:27: note: when computing vector element at index '0'4586// :133:27: note: when computing vector element at index '0'
4590// :133:27: error: use of undefined value here causes illegal behavior4587// :133:27: error: use of undefined value here causes illegal behavior
...@@ -4592,6 +4589,7 @@ const std = @import("std");...@@ -4592,6 +4589,7 @@ const std = @import("std");
4592// :133:27: error: use of undefined value here causes illegal behavior4589// :133:27: error: use of undefined value here causes illegal behavior
4593// :133:27: note: when computing vector element at index '0'4590// :133:27: note: when computing vector element at index '0'
4594// :133:27: error: use of undefined value here causes illegal behavior4591// :133:27: error: use of undefined value here causes illegal behavior
4592// :133:27: note: when computing vector element at index '0'
4595// :133:27: error: use of undefined value here causes illegal behavior4593// :133:27: error: use of undefined value here causes illegal behavior
4596// :133:27: note: when computing vector element at index '0'4594// :133:27: note: when computing vector element at index '0'
4597// :133:27: error: use of undefined value here causes illegal behavior4595// :133:27: error: use of undefined value here causes illegal behavior
...@@ -4599,7 +4597,7 @@ const std = @import("std");...@@ -4599,7 +4597,7 @@ const std = @import("std");
4599// :133:27: error: use of undefined value here causes illegal behavior4597// :133:27: error: use of undefined value here causes illegal behavior
4600// :133:27: note: when computing vector element at index '0'4598// :133:27: note: when computing vector element at index '0'
4601// :133:27: error: use of undefined value here causes illegal behavior4599// :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'
4603// :133:27: error: use of undefined value here causes illegal behavior4601// :133:27: error: use of undefined value here causes illegal behavior
4604// :133:27: note: when computing vector element at index '0'4602// :133:27: note: when computing vector element at index '0'
4605// :133:27: error: use of undefined value here causes illegal behavior4603// :133:27: error: use of undefined value here causes illegal behavior
...@@ -4607,6 +4605,7 @@ const std = @import("std");...@@ -4607,6 +4605,7 @@ const std = @import("std");
4607// :133:27: error: use of undefined value here causes illegal behavior4605// :133:27: error: use of undefined value here causes illegal behavior
4608// :133:27: note: when computing vector element at index '0'4606// :133:27: note: when computing vector element at index '0'
4609// :133:27: error: use of undefined value here causes illegal behavior4607// :133:27: error: use of undefined value here causes illegal behavior
4608// :133:27: note: when computing vector element at index '0'
4610// :133:27: error: use of undefined value here causes illegal behavior4609// :133:27: error: use of undefined value here causes illegal behavior
4611// :133:27: note: when computing vector element at index '0'4610// :133:27: note: when computing vector element at index '0'
4612// :133:27: error: use of undefined value here causes illegal behavior4611// :133:27: error: use of undefined value here causes illegal behavior
...@@ -4614,7 +4613,7 @@ const std = @import("std");...@@ -4614,7 +4613,7 @@ const std = @import("std");
4614// :133:27: error: use of undefined value here causes illegal behavior4613// :133:27: error: use of undefined value here causes illegal behavior
4615// :133:27: note: when computing vector element at index '0'4614// :133:27: note: when computing vector element at index '0'
4616// :133:27: error: use of undefined value here causes illegal behavior4615// :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'
4618// :133:27: error: use of undefined value here causes illegal behavior4617// :133:27: error: use of undefined value here causes illegal behavior
4619// :133:27: note: when computing vector element at index '0'4618// :133:27: note: when computing vector element at index '0'
4620// :133:27: error: use of undefined value here causes illegal behavior4619// :133:27: error: use of undefined value here causes illegal behavior
...@@ -4622,6 +4621,7 @@ const std = @import("std");...@@ -4622,6 +4621,7 @@ const std = @import("std");
4622// :133:27: error: use of undefined value here causes illegal behavior4621// :133:27: error: use of undefined value here causes illegal behavior
4623// :133:27: note: when computing vector element at index '0'4622// :133:27: note: when computing vector element at index '0'
4624// :133:27: error: use of undefined value here causes illegal behavior4623// :133:27: error: use of undefined value here causes illegal behavior
4624// :133:27: note: when computing vector element at index '0'
4625// :133:27: error: use of undefined value here causes illegal behavior4625// :133:27: error: use of undefined value here causes illegal behavior
4626// :133:27: note: when computing vector element at index '0'4626// :133:27: note: when computing vector element at index '0'
4627// :133:27: error: use of undefined value here causes illegal behavior4627// :133:27: error: use of undefined value here causes illegal behavior
...@@ -4629,7 +4629,7 @@ const std = @import("std");...@@ -4629,7 +4629,7 @@ const std = @import("std");
4629// :133:27: error: use of undefined value here causes illegal behavior4629// :133:27: error: use of undefined value here causes illegal behavior
4630// :133:27: note: when computing vector element at index '0'4630// :133:27: note: when computing vector element at index '0'
4631// :133:27: error: use of undefined value here causes illegal behavior4631// :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'
4633// :133:27: error: use of undefined value here causes illegal behavior4633// :133:27: error: use of undefined value here causes illegal behavior
4634// :133:27: note: when computing vector element at index '0'4634// :133:27: note: when computing vector element at index '0'
4635// :133:27: error: use of undefined value here causes illegal behavior4635// :133:27: error: use of undefined value here causes illegal behavior
...@@ -4637,6 +4637,7 @@ const std = @import("std");...@@ -4637,6 +4637,7 @@ const std = @import("std");
4637// :133:27: error: use of undefined value here causes illegal behavior4637// :133:27: error: use of undefined value here causes illegal behavior
4638// :133:27: note: when computing vector element at index '0'4638// :133:27: note: when computing vector element at index '0'
4639// :133:27: error: use of undefined value here causes illegal behavior4639// :133:27: error: use of undefined value here causes illegal behavior
4640// :133:27: note: when computing vector element at index '0'
4640// :133:27: error: use of undefined value here causes illegal behavior4641// :133:27: error: use of undefined value here causes illegal behavior
4641// :133:27: note: when computing vector element at index '0'4642// :133:27: note: when computing vector element at index '0'
4642// :133:27: error: use of undefined value here causes illegal behavior4643// :133:27: error: use of undefined value here causes illegal behavior
...@@ -4646,126 +4647,120 @@ const std = @import("std");...@@ -4646,126 +4647,120 @@ const std = @import("std");
4646// :133:27: error: use of undefined value here causes illegal behavior4647// :133:27: error: use of undefined value here causes illegal behavior
4647// :133:27: note: when computing vector element at index '1'4648// :133:27: note: when computing vector element at index '1'
4648// :133:27: error: use of undefined value here causes illegal behavior4649// :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: note: when computing vector element at index '1'
4650// :133:27: error: use of undefined value here causes illegal behavior
4651// :133:27: note: when computing vector element at index '0'
4652// :133:27: error: use of undefined value here causes illegal behavior4651// :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'
4654// :133:27: error: use of undefined value here causes illegal behavior4653// :133:27: error: use of undefined value here causes illegal behavior
4654// :133:27: note: when computing vector element at index '1'
4655// :133:27: error: use of undefined value here causes illegal behavior4655// :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'
4657// :133:27: error: use of undefined value here causes illegal behavior4657// :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'
4659// :133:27: error: use of undefined value here causes illegal behavior4659// :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'
4661// :133:27: error: use of undefined value here causes illegal behavior4661// :133:27: error: use of undefined value here causes illegal behavior
4662// :133:27: note: when computing vector element at index '1'4662// :133:27: note: when computing vector element at index '1'
4663// :133:27: error: use of undefined value here causes illegal behavior4663// :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'
4665// :133:27: error: use of undefined value here causes illegal behavior4665// :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'
4667// :133:27: error: use of undefined value here causes illegal behavior4667// :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'
4669// :133:30: error: use of undefined value here causes illegal behavior4669// :133:30: error: use of undefined value here causes illegal behavior
4670// :133:30: error: use of undefined value here causes illegal behavior4670// :133:30: error: use of undefined value here causes illegal behavior
4671// :133:30: note: when computing vector element at index '0'
4672// :133:30: error: use of undefined value here causes illegal behavior4671// :133:30: error: use of undefined value here causes illegal behavior
4673// :133:30: note: when computing vector element at index '0'
4674// :133:30: error: use of undefined value here causes illegal behavior4672// :133:30: error: use of undefined value here causes illegal behavior
4675// :133:30: note: when computing vector element at index '1'
4676// :133:30: error: use of undefined value here causes illegal behavior4673// :133:30: error: use of undefined value here causes illegal behavior
4677// :133:30: note: when computing vector element at index '0'
4678// :133:30: error: use of undefined value here causes illegal behavior4674// :133:30: error: use of undefined value here causes illegal behavior
4679// :133:30: note: when computing vector element at index '0'
4680// :133:30: error: use of undefined value here causes illegal behavior4675// :133:30: error: use of undefined value here causes illegal behavior
4681// :133:30: error: use of undefined value here causes illegal behavior4676// :133:30: error: use of undefined value here causes illegal behavior
4682// :133:30: note: when computing vector element at index '0'
4683// :133:30: error: use of undefined value here causes illegal behavior4677// :133:30: error: use of undefined value here causes illegal behavior
4684// :133:30: note: when computing vector element at index '0'
4685// :133:30: error: use of undefined value here causes illegal behavior4678// :133:30: error: use of undefined value here causes illegal behavior
4686// :133:30: note: when computing vector element at index '1'
4687// :133:30: error: use of undefined value here causes illegal behavior4679// :133:30: error: use of undefined value here causes illegal behavior
4688// :133:30: note: when computing vector element at index '0'
4689// :133:30: error: use of undefined value here causes illegal behavior4680// :133:30: error: use of undefined value here causes illegal behavior
4690// :133:30: note: when computing vector element at index '0'4681// :133:30: note: when computing vector element at index '0'
4691// :133:30: error: use of undefined value here causes illegal behavior4682// :133:30: error: use of undefined value here causes illegal behavior
4692// :133:30: error: use of undefined value here causes illegal behavior
4693// :133:30: note: when computing vector element at index '0'4683// :133:30: note: when computing vector element at index '0'
4694// :133:30: error: use of undefined value here causes illegal behavior4684// :133:30: error: use of undefined value here causes illegal behavior
4695// :133:30: note: when computing vector element at index '0'4685// :133:30: note: when computing vector element at index '0'
4696// :133:30: error: use of undefined value here causes illegal behavior4686// :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
4699// :133:30: note: when computing vector element at index '0'4687// :133:30: note: when computing vector element at index '0'
4700// :133:30: error: use of undefined value here causes illegal behavior4688// :133:30: error: use of undefined value here causes illegal behavior
4701// :133:30: note: when computing vector element at index '0'4689// :133:30: note: when computing vector element at index '0'
4702// :133:30: error: use of undefined value here causes illegal behavior4690// :133:30: error: use of undefined value here causes illegal behavior
4691// :133:30: note: when computing vector element at index '0'
4703// :133:30: error: use of undefined value here causes illegal behavior4692// :133:30: error: use of undefined value here causes illegal behavior
4704// :133:30: note: when computing vector element at index '0'4693// :133:30: note: when computing vector element at index '0'
4705// :133:30: error: use of undefined value here causes illegal behavior4694// :133:30: error: use of undefined value here causes illegal behavior
4706// :133:30: note: when computing vector element at index '0'4695// :133:30: note: when computing vector element at index '0'
4707// :133:30: error: use of undefined value here causes illegal behavior4696// :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'
4709// :133:30: error: use of undefined value here causes illegal behavior4698// :133:30: error: use of undefined value here causes illegal behavior
4710// :133:30: note: when computing vector element at index '0'4699// :133:30: note: when computing vector element at index '0'
4711// :133:30: error: use of undefined value here causes illegal behavior4700// :133:30: error: use of undefined value here causes illegal behavior
4712// :133:30: note: when computing vector element at index '0'4701// :133:30: note: when computing vector element at index '0'
4713// :133:30: error: use of undefined value here causes illegal behavior4702// :133:30: error: use of undefined value here causes illegal behavior
4703// :133:30: note: when computing vector element at index '0'
4714// :133:30: error: use of undefined value here causes illegal behavior4704// :133:30: error: use of undefined value here causes illegal behavior
4715// :133:30: note: when computing vector element at index '0'4705// :133:30: note: when computing vector element at index '0'
4716// :133:30: error: use of undefined value here causes illegal behavior4706// :133:30: error: use of undefined value here causes illegal behavior
4717// :133:30: note: when computing vector element at index '0'4707// :133:30: note: when computing vector element at index '0'
4718// :133:30: error: use of undefined value here causes illegal behavior4708// :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'
4720// :133:30: error: use of undefined value here causes illegal behavior4710// :133:30: error: use of undefined value here causes illegal behavior
4721// :133:30: note: when computing vector element at index '0'4711// :133:30: note: when computing vector element at index '0'
4722// :133:30: error: use of undefined value here causes illegal behavior4712// :133:30: error: use of undefined value here causes illegal behavior
4723// :133:30: note: when computing vector element at index '0'4713// :133:30: note: when computing vector element at index '0'
4724// :133:30: error: use of undefined value here causes illegal behavior4714// :133:30: error: use of undefined value here causes illegal behavior
4715// :133:30: note: when computing vector element at index '0'
4725// :133:30: error: use of undefined value here causes illegal behavior4716// :133:30: error: use of undefined value here causes illegal behavior
4726// :133:30: note: when computing vector element at index '0'4717// :133:30: note: when computing vector element at index '0'
4727// :133:30: error: use of undefined value here causes illegal behavior4718// :133:30: error: use of undefined value here causes illegal behavior
4728// :133:30: note: when computing vector element at index '0'4719// :133:30: note: when computing vector element at index '0'
4729// :133:30: error: use of undefined value here causes illegal behavior4720// :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'
4731// :133:30: error: use of undefined value here causes illegal behavior4722// :133:30: error: use of undefined value here causes illegal behavior
4732// :133:30: note: when computing vector element at index '0'4723// :133:30: note: when computing vector element at index '0'
4733// :133:30: error: use of undefined value here causes illegal behavior4724// :133:30: error: use of undefined value here causes illegal behavior
4734// :133:30: note: when computing vector element at index '0'4725// :133:30: note: when computing vector element at index '0'
4735// :133:30: error: use of undefined value here causes illegal behavior4726// :133:30: error: use of undefined value here causes illegal behavior
4727// :133:30: note: when computing vector element at index '0'
4736// :133:30: error: use of undefined value here causes illegal behavior4728// :133:30: error: use of undefined value here causes illegal behavior
4737// :133:30: note: when computing vector element at index '0'4729// :133:30: note: when computing vector element at index '0'
4738// :133:30: error: use of undefined value here causes illegal behavior4730// :133:30: error: use of undefined value here causes illegal behavior
4739// :133:30: note: when computing vector element at index '0'4731// :133:30: note: when computing vector element at index '0'
4740// :133:30: error: use of undefined value here causes illegal behavior4732// :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'
4742// :133:30: error: use of undefined value here causes illegal behavior4734// :133:30: error: use of undefined value here causes illegal behavior
4743// :133:30: note: when computing vector element at index '0'4735// :133:30: note: when computing vector element at index '0'
4744// :133:30: error: use of undefined value here causes illegal behavior4736// :133:30: error: use of undefined value here causes illegal behavior
4745// :133:30: note: when computing vector element at index '0'4737// :133:30: note: when computing vector element at index '0'
4746// :133:30: error: use of undefined value here causes illegal behavior4738// :133:30: error: use of undefined value here causes illegal behavior
4739// :133:30: note: when computing vector element at index '0'
4747// :133:30: error: use of undefined value here causes illegal behavior4740// :133:30: error: use of undefined value here causes illegal behavior
4748// :133:30: note: when computing vector element at index '0'4741// :133:30: note: when computing vector element at index '0'
4749// :133:30: error: use of undefined value here causes illegal behavior4742// :133:30: error: use of undefined value here causes illegal behavior
4750// :133:30: note: when computing vector element at index '0'4743// :133:30: note: when computing vector element at index '0'
4751// :133:30: error: use of undefined value here causes illegal behavior4744// :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'
4753// :133:30: error: use of undefined value here causes illegal behavior4746// :133:30: error: use of undefined value here causes illegal behavior
4754// :133:30: note: when computing vector element at index '0'4747// :133:30: note: when computing vector element at index '0'
4755// :133:30: error: use of undefined value here causes illegal behavior4748// :133:30: error: use of undefined value here causes illegal behavior
4756// :133:30: note: when computing vector element at index '0'4749// :133:30: note: when computing vector element at index '0'
4757// :133:30: error: use of undefined value here causes illegal behavior4750// :133:30: error: use of undefined value here causes illegal behavior
4751// :133:30: note: when computing vector element at index '0'
4758// :133:30: error: use of undefined value here causes illegal behavior4752// :133:30: error: use of undefined value here causes illegal behavior
4759// :133:30: note: when computing vector element at index '0'4753// :133:30: note: when computing vector element at index '0'
4760// :133:30: error: use of undefined value here causes illegal behavior4754// :133:30: error: use of undefined value here causes illegal behavior
4761// :133:30: note: when computing vector element at index '0'4755// :133:30: note: when computing vector element at index '0'
4762// :133:30: error: use of undefined value here causes illegal behavior4756// :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'
4764// :133:30: error: use of undefined value here causes illegal behavior4758// :133:30: error: use of undefined value here causes illegal behavior
4765// :133:30: note: when computing vector element at index '0'4759// :133:30: note: when computing vector element at index '0'
4766// :133:30: error: use of undefined value here causes illegal behavior4760// :133:30: error: use of undefined value here causes illegal behavior
4767// :133:30: note: when computing vector element at index '0'4761// :133:30: note: when computing vector element at index '0'
4768// :133:30: error: use of undefined value here causes illegal behavior4762// :133:30: error: use of undefined value here causes illegal behavior
4763// :133:30: note: when computing vector element at index '0'
4769// :133:30: error: use of undefined value here causes illegal behavior4764// :133:30: error: use of undefined value here causes illegal behavior
4770// :133:30: note: when computing vector element at index '0'4765// :133:30: note: when computing vector element at index '0'
4771// :133:30: error: use of undefined value here causes illegal behavior4766// :133:30: error: use of undefined value here causes illegal behavior
...@@ -4773,44 +4768,42 @@ const std = @import("std");...@@ -4773,44 +4768,42 @@ const std = @import("std");
4773// :133:30: error: use of undefined value here causes illegal behavior4768// :133:30: error: use of undefined value here causes illegal behavior
4774// :133:30: note: when computing vector element at index '1'4769// :133:30: note: when computing vector element at index '1'
4775// :133:30: error: use of undefined value here causes illegal behavior4770// :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'
4777// :133:30: error: use of undefined value here causes illegal behavior4772// :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'
4779// :133:30: error: use of undefined value here causes illegal behavior4774// :133:30: error: use of undefined value here causes illegal behavior
4775// :133:30: note: when computing vector element at index '1'
4780// :133:30: error: use of undefined value here causes illegal behavior4776// :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'
4782// :133:30: error: use of undefined value here causes illegal behavior4778// :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'
4784// :133:30: error: use of undefined value here causes illegal behavior4780// :133:30: error: use of undefined value here causes illegal behavior
4785// :133:30: note: when computing vector element at index '1'4781// :133:30: note: when computing vector element at index '1'
4786// :133:30: error: use of undefined value here causes illegal behavior4782// :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'
4788// :133:30: error: use of undefined value here causes illegal behavior4784// :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
4790// :137:17: error: use of undefined value here causes illegal behavior4791// :137:17: error: use of undefined value here causes illegal behavior
4791// :137:17: error: use of undefined value here causes illegal behavior4792// :137:17: error: use of undefined value here causes illegal behavior
4792// :137:17: note: when computing vector element at index '0'
4793// :137:17: error: use of undefined value here causes illegal behavior4793// :137:17: error: use of undefined value here causes illegal behavior
4794// :137:17: note: when computing vector element at index '0'
4795// :137:17: error: use of undefined value here causes illegal behavior4794// :137:17: error: use of undefined value here causes illegal behavior
4796// :137:17: note: when computing vector element at index '0'
4797// :137:17: error: use of undefined value here causes illegal behavior4795// :137:17: error: use of undefined value here causes illegal behavior
4798// :137:17: note: when computing vector element at index '1'
4799// :137:17: error: use of undefined value here causes illegal behavior4796// :137:17: error: use of undefined value here causes illegal behavior
4800// :137:17: note: when computing vector element at index '0'
4801// :137:17: error: use of undefined value here causes illegal behavior4797// :137:17: error: use of undefined value here causes illegal behavior
4802// :137:17: note: when computing vector element at index '0'
4803// :137:17: error: use of undefined value here causes illegal behavior4798// :137:17: error: use of undefined value here causes illegal behavior
4804// :137:17: note: when computing vector element at index '0'
4805// :137:17: error: use of undefined value here causes illegal behavior4799// :137:17: error: use of undefined value here causes illegal behavior
4806// :137:17: error: use of undefined value here causes illegal behavior4800// :137:17: error: use of undefined value here causes illegal behavior
4807// :137:17: note: when computing vector element at index '0'
4808// :137:17: error: use of undefined value here causes illegal behavior4801// :137:17: error: use of undefined value here causes illegal behavior
4809// :137:17: note: when computing vector element at index '0'4802// :137:17: note: when computing vector element at index '0'
4810// :137:17: error: use of undefined value here causes illegal behavior4803// :137:17: error: use of undefined value here causes illegal behavior
4811// :137:17: note: when computing vector element at index '0'4804// :137:17: note: when computing vector element at index '0'
4812// :137:17: error: use of undefined value here causes illegal behavior4805// :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'
4814// :137:17: error: use of undefined value here causes illegal behavior4807// :137:17: error: use of undefined value here causes illegal behavior
4815// :137:17: note: when computing vector element at index '0'4808// :137:17: note: when computing vector element at index '0'
4816// :137:17: error: use of undefined value here causes illegal behavior4809// :137:17: error: use of undefined value here causes illegal behavior
...@@ -4818,6 +4811,7 @@ const std = @import("std");...@@ -4818,6 +4811,7 @@ const std = @import("std");
4818// :137:17: error: use of undefined value here causes illegal behavior4811// :137:17: error: use of undefined value here causes illegal behavior
4819// :137:17: note: when computing vector element at index '0'4812// :137:17: note: when computing vector element at index '0'
4820// :137:17: error: use of undefined value here causes illegal behavior4813// :137:17: error: use of undefined value here causes illegal behavior
4814// :137:17: note: when computing vector element at index '0'
4821// :137:17: error: use of undefined value here causes illegal behavior4815// :137:17: error: use of undefined value here causes illegal behavior
4822// :137:17: note: when computing vector element at index '0'4816// :137:17: note: when computing vector element at index '0'
4823// :137:17: error: use of undefined value here causes illegal behavior4817// :137:17: error: use of undefined value here causes illegal behavior
...@@ -4825,7 +4819,7 @@ const std = @import("std");...@@ -4825,7 +4819,7 @@ const std = @import("std");
4825// :137:17: error: use of undefined value here causes illegal behavior4819// :137:17: error: use of undefined value here causes illegal behavior
4826// :137:17: note: when computing vector element at index '0'4820// :137:17: note: when computing vector element at index '0'
4827// :137:17: error: use of undefined value here causes illegal behavior4821// :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'
4829// :137:17: error: use of undefined value here causes illegal behavior4823// :137:17: error: use of undefined value here causes illegal behavior
4830// :137:17: note: when computing vector element at index '0'4824// :137:17: note: when computing vector element at index '0'
4831// :137:17: error: use of undefined value here causes illegal behavior4825// :137:17: error: use of undefined value here causes illegal behavior
...@@ -4833,6 +4827,7 @@ const std = @import("std");...@@ -4833,6 +4827,7 @@ const std = @import("std");
4833// :137:17: error: use of undefined value here causes illegal behavior4827// :137:17: error: use of undefined value here causes illegal behavior
4834// :137:17: note: when computing vector element at index '0'4828// :137:17: note: when computing vector element at index '0'
4835// :137:17: error: use of undefined value here causes illegal behavior4829// :137:17: error: use of undefined value here causes illegal behavior
4830// :137:17: note: when computing vector element at index '0'
4836// :137:17: error: use of undefined value here causes illegal behavior4831// :137:17: error: use of undefined value here causes illegal behavior
4837// :137:17: note: when computing vector element at index '0'4832// :137:17: note: when computing vector element at index '0'
4838// :137:17: error: use of undefined value here causes illegal behavior4833// :137:17: error: use of undefined value here causes illegal behavior
...@@ -4840,7 +4835,7 @@ const std = @import("std");...@@ -4840,7 +4835,7 @@ const std = @import("std");
4840// :137:17: error: use of undefined value here causes illegal behavior4835// :137:17: error: use of undefined value here causes illegal behavior
4841// :137:17: note: when computing vector element at index '0'4836// :137:17: note: when computing vector element at index '0'
4842// :137:17: error: use of undefined value here causes illegal behavior4837// :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'
4844// :137:17: error: use of undefined value here causes illegal behavior4839// :137:17: error: use of undefined value here causes illegal behavior
4845// :137:17: note: when computing vector element at index '0'4840// :137:17: note: when computing vector element at index '0'
4846// :137:17: error: use of undefined value here causes illegal behavior4841// :137:17: error: use of undefined value here causes illegal behavior
...@@ -4848,6 +4843,7 @@ const std = @import("std");...@@ -4848,6 +4843,7 @@ const std = @import("std");
4848// :137:17: error: use of undefined value here causes illegal behavior4843// :137:17: error: use of undefined value here causes illegal behavior
4849// :137:17: note: when computing vector element at index '0'4844// :137:17: note: when computing vector element at index '0'
4850// :137:17: error: use of undefined value here causes illegal behavior4845// :137:17: error: use of undefined value here causes illegal behavior
4846// :137:17: note: when computing vector element at index '0'
4851// :137:17: error: use of undefined value here causes illegal behavior4847// :137:17: error: use of undefined value here causes illegal behavior
4852// :137:17: note: when computing vector element at index '0'4848// :137:17: note: when computing vector element at index '0'
4853// :137:17: error: use of undefined value here causes illegal behavior4849// :137:17: error: use of undefined value here causes illegal behavior
...@@ -4855,7 +4851,7 @@ const std = @import("std");...@@ -4855,7 +4851,7 @@ const std = @import("std");
4855// :137:17: error: use of undefined value here causes illegal behavior4851// :137:17: error: use of undefined value here causes illegal behavior
4856// :137:17: note: when computing vector element at index '0'4852// :137:17: note: when computing vector element at index '0'
4857// :137:17: error: use of undefined value here causes illegal behavior4853// :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'
4859// :137:17: error: use of undefined value here causes illegal behavior4855// :137:17: error: use of undefined value here causes illegal behavior
4860// :137:17: note: when computing vector element at index '0'4856// :137:17: note: when computing vector element at index '0'
4861// :137:17: error: use of undefined value here causes illegal behavior4857// :137:17: error: use of undefined value here causes illegal behavior
...@@ -4863,6 +4859,7 @@ const std = @import("std");...@@ -4863,6 +4859,7 @@ const std = @import("std");
4863// :137:17: error: use of undefined value here causes illegal behavior4859// :137:17: error: use of undefined value here causes illegal behavior
4864// :137:17: note: when computing vector element at index '0'4860// :137:17: note: when computing vector element at index '0'
4865// :137:17: error: use of undefined value here causes illegal behavior4861// :137:17: error: use of undefined value here causes illegal behavior
4862// :137:17: note: when computing vector element at index '0'
4866// :137:17: error: use of undefined value here causes illegal behavior4863// :137:17: error: use of undefined value here causes illegal behavior
4867// :137:17: note: when computing vector element at index '0'4864// :137:17: note: when computing vector element at index '0'
4868// :137:17: error: use of undefined value here causes illegal behavior4865// :137:17: error: use of undefined value here causes illegal behavior
...@@ -4870,7 +4867,7 @@ const std = @import("std");...@@ -4870,7 +4867,7 @@ const std = @import("std");
4870// :137:17: error: use of undefined value here causes illegal behavior4867// :137:17: error: use of undefined value here causes illegal behavior
4871// :137:17: note: when computing vector element at index '0'4868// :137:17: note: when computing vector element at index '0'
4872// :137:17: error: use of undefined value here causes illegal behavior4869// :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'
4874// :137:17: error: use of undefined value here causes illegal behavior4871// :137:17: error: use of undefined value here causes illegal behavior
4875// :137:17: note: when computing vector element at index '0'4872// :137:17: note: when computing vector element at index '0'
4876// :137:17: error: use of undefined value here causes illegal behavior4873// :137:17: error: use of undefined value here causes illegal behavior
...@@ -4878,6 +4875,7 @@ const std = @import("std");...@@ -4878,6 +4875,7 @@ const std = @import("std");
4878// :137:17: error: use of undefined value here causes illegal behavior4875// :137:17: error: use of undefined value here causes illegal behavior
4879// :137:17: note: when computing vector element at index '0'4876// :137:17: note: when computing vector element at index '0'
4880// :137:17: error: use of undefined value here causes illegal behavior4877// :137:17: error: use of undefined value here causes illegal behavior
4878// :137:17: note: when computing vector element at index '0'
4881// :137:17: error: use of undefined value here causes illegal behavior4879// :137:17: error: use of undefined value here causes illegal behavior
4882// :137:17: note: when computing vector element at index '0'4880// :137:17: note: when computing vector element at index '0'
4883// :137:17: error: use of undefined value here causes illegal behavior4881// :137:17: error: use of undefined value here causes illegal behavior
...@@ -4885,7 +4883,7 @@ const std = @import("std");...@@ -4885,7 +4883,7 @@ const std = @import("std");
4885// :137:17: error: use of undefined value here causes illegal behavior4883// :137:17: error: use of undefined value here causes illegal behavior
4886// :137:17: note: when computing vector element at index '0'4884// :137:17: note: when computing vector element at index '0'
4887// :137:17: error: use of undefined value here causes illegal behavior4885// :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'
4889// :137:17: error: use of undefined value here causes illegal behavior4887// :137:17: error: use of undefined value here causes illegal behavior
4890// :137:17: note: when computing vector element at index '0'4888// :137:17: note: when computing vector element at index '0'
4891// :137:17: error: use of undefined value here causes illegal behavior4889// :137:17: error: use of undefined value here causes illegal behavior
...@@ -4893,6 +4891,7 @@ const std = @import("std");...@@ -4893,6 +4891,7 @@ const std = @import("std");
4893// :137:17: error: use of undefined value here causes illegal behavior4891// :137:17: error: use of undefined value here causes illegal behavior
4894// :137:17: note: when computing vector element at index '0'4892// :137:17: note: when computing vector element at index '0'
4895// :137:17: error: use of undefined value here causes illegal behavior4893// :137:17: error: use of undefined value here causes illegal behavior
4894// :137:17: note: when computing vector element at index '0'
4896// :137:17: error: use of undefined value here causes illegal behavior4895// :137:17: error: use of undefined value here causes illegal behavior
4897// :137:17: note: when computing vector element at index '0'4896// :137:17: note: when computing vector element at index '0'
4898// :137:17: error: use of undefined value here causes illegal behavior4897// :137:17: error: use of undefined value here causes illegal behavior
...@@ -4900,7 +4899,7 @@ const std = @import("std");...@@ -4900,7 +4899,7 @@ const std = @import("std");
4900// :137:17: error: use of undefined value here causes illegal behavior4899// :137:17: error: use of undefined value here causes illegal behavior
4901// :137:17: note: when computing vector element at index '0'4900// :137:17: note: when computing vector element at index '0'
4902// :137:17: error: use of undefined value here causes illegal behavior4901// :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'
4904// :137:17: error: use of undefined value here causes illegal behavior4903// :137:17: error: use of undefined value here causes illegal behavior
4905// :137:17: note: when computing vector element at index '0'4904// :137:17: note: when computing vector element at index '0'
4906// :137:17: error: use of undefined value here causes illegal behavior4905// :137:17: error: use of undefined value here causes illegal behavior
...@@ -4908,6 +4907,7 @@ const std = @import("std");...@@ -4908,6 +4907,7 @@ const std = @import("std");
4908// :137:17: error: use of undefined value here causes illegal behavior4907// :137:17: error: use of undefined value here causes illegal behavior
4909// :137:17: note: when computing vector element at index '0'4908// :137:17: note: when computing vector element at index '0'
4910// :137:17: error: use of undefined value here causes illegal behavior4909// :137:17: error: use of undefined value here causes illegal behavior
4910// :137:17: note: when computing vector element at index '0'
4911// :137:17: error: use of undefined value here causes illegal behavior4911// :137:17: error: use of undefined value here causes illegal behavior
4912// :137:17: note: when computing vector element at index '0'4912// :137:17: note: when computing vector element at index '0'
4913// :137:17: error: use of undefined value here causes illegal behavior4913// :137:17: error: use of undefined value here causes illegal behavior
...@@ -4915,7 +4915,7 @@ const std = @import("std");...@@ -4915,7 +4915,7 @@ const std = @import("std");
4915// :137:17: error: use of undefined value here causes illegal behavior4915// :137:17: error: use of undefined value here causes illegal behavior
4916// :137:17: note: when computing vector element at index '0'4916// :137:17: note: when computing vector element at index '0'
4917// :137:17: error: use of undefined value here causes illegal behavior4917// :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'
4919// :137:17: error: use of undefined value here causes illegal behavior4919// :137:17: error: use of undefined value here causes illegal behavior
4920// :137:17: note: when computing vector element at index '0'4920// :137:17: note: when computing vector element at index '0'
4921// :137:17: error: use of undefined value here causes illegal behavior4921// :137:17: error: use of undefined value here causes illegal behavior
...@@ -4923,6 +4923,7 @@ const std = @import("std");...@@ -4923,6 +4923,7 @@ const std = @import("std");
4923// :137:17: error: use of undefined value here causes illegal behavior4923// :137:17: error: use of undefined value here causes illegal behavior
4924// :137:17: note: when computing vector element at index '0'4924// :137:17: note: when computing vector element at index '0'
4925// :137:17: error: use of undefined value here causes illegal behavior4925// :137:17: error: use of undefined value here causes illegal behavior
4926// :137:17: note: when computing vector element at index '0'
4926// :137:17: error: use of undefined value here causes illegal behavior4927// :137:17: error: use of undefined value here causes illegal behavior
4927// :137:17: note: when computing vector element at index '0'4928// :137:17: note: when computing vector element at index '0'
4928// :137:17: error: use of undefined value here causes illegal behavior4929// :137:17: error: use of undefined value here causes illegal behavior
...@@ -4932,126 +4933,120 @@ const std = @import("std");...@@ -4932,126 +4933,120 @@ const std = @import("std");
4932// :137:17: error: use of undefined value here causes illegal behavior4933// :137:17: error: use of undefined value here causes illegal behavior
4933// :137:17: note: when computing vector element at index '1'4934// :137:17: note: when computing vector element at index '1'
4934// :137:17: error: use of undefined value here causes illegal behavior4935// :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: note: when computing vector element at index '1'
4936// :137:17: error: use of undefined value here causes illegal behavior
4937// :137:17: note: when computing vector element at index '0'
4938// :137:17: error: use of undefined value here causes illegal behavior4937// :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'
4940// :137:17: error: use of undefined value here causes illegal behavior4939// :137:17: error: use of undefined value here causes illegal behavior
4940// :137:17: note: when computing vector element at index '1'
4941// :137:17: error: use of undefined value here causes illegal behavior4941// :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'
4943// :137:17: error: use of undefined value here causes illegal behavior4943// :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'
4945// :137:17: error: use of undefined value here causes illegal behavior4945// :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'
4947// :137:17: error: use of undefined value here causes illegal behavior4947// :137:17: error: use of undefined value here causes illegal behavior
4948// :137:17: note: when computing vector element at index '1'4948// :137:17: note: when computing vector element at index '1'
4949// :137:17: error: use of undefined value here causes illegal behavior4949// :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'
4951// :137:17: error: use of undefined value here causes illegal behavior4951// :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'
4953// :137:17: error: use of undefined value here causes illegal behavior4953// :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'
4955// :137:21: error: use of undefined value here causes illegal behavior4955// :137:21: error: use of undefined value here causes illegal behavior
4956// :137:21: error: use of undefined value here causes illegal behavior4956// :137:21: error: use of undefined value here causes illegal behavior
4957// :137:21: note: when computing vector element at index '0'
4958// :137:21: error: use of undefined value here causes illegal behavior4957// :137:21: error: use of undefined value here causes illegal behavior
4959// :137:21: note: when computing vector element at index '0'
4960// :137:21: error: use of undefined value here causes illegal behavior4958// :137:21: error: use of undefined value here causes illegal behavior
4961// :137:21: note: when computing vector element at index '1'
4962// :137:21: error: use of undefined value here causes illegal behavior4959// :137:21: error: use of undefined value here causes illegal behavior
4963// :137:21: note: when computing vector element at index '0'
4964// :137:21: error: use of undefined value here causes illegal behavior4960// :137:21: error: use of undefined value here causes illegal behavior
4965// :137:21: note: when computing vector element at index '0'
4966// :137:21: error: use of undefined value here causes illegal behavior4961// :137:21: error: use of undefined value here causes illegal behavior
4967// :137:21: error: use of undefined value here causes illegal behavior4962// :137:21: error: use of undefined value here causes illegal behavior
4968// :137:21: note: when computing vector element at index '0'
4969// :137:21: error: use of undefined value here causes illegal behavior4963// :137:21: error: use of undefined value here causes illegal behavior
4970// :137:21: note: when computing vector element at index '0'
4971// :137:21: error: use of undefined value here causes illegal behavior4964// :137:21: error: use of undefined value here causes illegal behavior
4972// :137:21: note: when computing vector element at index '1'
4973// :137:21: error: use of undefined value here causes illegal behavior4965// :137:21: error: use of undefined value here causes illegal behavior
4974// :137:21: note: when computing vector element at index '0'
4975// :137:21: error: use of undefined value here causes illegal behavior4966// :137:21: error: use of undefined value here causes illegal behavior
4976// :137:21: note: when computing vector element at index '0'4967// :137:21: note: when computing vector element at index '0'
4977// :137:21: error: use of undefined value here causes illegal behavior4968// :137:21: error: use of undefined value here causes illegal behavior
4978// :137:21: error: use of undefined value here causes illegal behavior
4979// :137:21: note: when computing vector element at index '0'4969// :137:21: note: when computing vector element at index '0'
4980// :137:21: error: use of undefined value here causes illegal behavior4970// :137:21: error: use of undefined value here causes illegal behavior
4981// :137:21: note: when computing vector element at index '0'4971// :137:21: note: when computing vector element at index '0'
4982// :137:21: error: use of undefined value here causes illegal behavior4972// :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
4985// :137:21: note: when computing vector element at index '0'4973// :137:21: note: when computing vector element at index '0'
4986// :137:21: error: use of undefined value here causes illegal behavior4974// :137:21: error: use of undefined value here causes illegal behavior
4987// :137:21: note: when computing vector element at index '0'4975// :137:21: note: when computing vector element at index '0'
4988// :137:21: error: use of undefined value here causes illegal behavior4976// :137:21: error: use of undefined value here causes illegal behavior
4977// :137:21: note: when computing vector element at index '0'
4989// :137:21: error: use of undefined value here causes illegal behavior4978// :137:21: error: use of undefined value here causes illegal behavior
4990// :137:21: note: when computing vector element at index '0'4979// :137:21: note: when computing vector element at index '0'
4991// :137:21: error: use of undefined value here causes illegal behavior4980// :137:21: error: use of undefined value here causes illegal behavior
4992// :137:21: note: when computing vector element at index '0'4981// :137:21: note: when computing vector element at index '0'
4993// :137:21: error: use of undefined value here causes illegal behavior4982// :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'
4995// :137:21: error: use of undefined value here causes illegal behavior4984// :137:21: error: use of undefined value here causes illegal behavior
4996// :137:21: note: when computing vector element at index '0'4985// :137:21: note: when computing vector element at index '0'
4997// :137:21: error: use of undefined value here causes illegal behavior4986// :137:21: error: use of undefined value here causes illegal behavior
4998// :137:21: note: when computing vector element at index '0'4987// :137:21: note: when computing vector element at index '0'
4999// :137:21: error: use of undefined value here causes illegal behavior4988// :137:21: error: use of undefined value here causes illegal behavior
4989// :137:21: note: when computing vector element at index '0'
5000// :137:21: error: use of undefined value here causes illegal behavior4990// :137:21: error: use of undefined value here causes illegal behavior
5001// :137:21: note: when computing vector element at index '0'4991// :137:21: note: when computing vector element at index '0'
5002// :137:21: error: use of undefined value here causes illegal behavior4992// :137:21: error: use of undefined value here causes illegal behavior
5003// :137:21: note: when computing vector element at index '0'4993// :137:21: note: when computing vector element at index '0'
5004// :137:21: error: use of undefined value here causes illegal behavior4994// :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'
5006// :137:21: error: use of undefined value here causes illegal behavior4996// :137:21: error: use of undefined value here causes illegal behavior
5007// :137:21: note: when computing vector element at index '0'4997// :137:21: note: when computing vector element at index '0'
5008// :137:21: error: use of undefined value here causes illegal behavior4998// :137:21: error: use of undefined value here causes illegal behavior
5009// :137:21: note: when computing vector element at index '0'4999// :137:21: note: when computing vector element at index '0'
5010// :137:21: error: use of undefined value here causes illegal behavior5000// :137:21: error: use of undefined value here causes illegal behavior
5001// :137:21: note: when computing vector element at index '0'
5011// :137:21: error: use of undefined value here causes illegal behavior5002// :137:21: error: use of undefined value here causes illegal behavior
5012// :137:21: note: when computing vector element at index '0'5003// :137:21: note: when computing vector element at index '0'
5013// :137:21: error: use of undefined value here causes illegal behavior5004// :137:21: error: use of undefined value here causes illegal behavior
5014// :137:21: note: when computing vector element at index '0'5005// :137:21: note: when computing vector element at index '0'
5015// :137:21: error: use of undefined value here causes illegal behavior5006// :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'
5017// :137:21: error: use of undefined value here causes illegal behavior5008// :137:21: error: use of undefined value here causes illegal behavior
5018// :137:21: note: when computing vector element at index '0'5009// :137:21: note: when computing vector element at index '0'
5019// :137:21: error: use of undefined value here causes illegal behavior5010// :137:21: error: use of undefined value here causes illegal behavior
5020// :137:21: note: when computing vector element at index '0'5011// :137:21: note: when computing vector element at index '0'
5021// :137:21: error: use of undefined value here causes illegal behavior5012// :137:21: error: use of undefined value here causes illegal behavior
5013// :137:21: note: when computing vector element at index '0'
5022// :137:21: error: use of undefined value here causes illegal behavior5014// :137:21: error: use of undefined value here causes illegal behavior
5023// :137:21: note: when computing vector element at index '0'5015// :137:21: note: when computing vector element at index '0'
5024// :137:21: error: use of undefined value here causes illegal behavior5016// :137:21: error: use of undefined value here causes illegal behavior
5025// :137:21: note: when computing vector element at index '0'5017// :137:21: note: when computing vector element at index '0'
5026// :137:21: error: use of undefined value here causes illegal behavior5018// :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'
5028// :137:21: error: use of undefined value here causes illegal behavior5020// :137:21: error: use of undefined value here causes illegal behavior
5029// :137:21: note: when computing vector element at index '0'5021// :137:21: note: when computing vector element at index '0'
5030// :137:21: error: use of undefined value here causes illegal behavior5022// :137:21: error: use of undefined value here causes illegal behavior
5031// :137:21: note: when computing vector element at index '0'5023// :137:21: note: when computing vector element at index '0'
5032// :137:21: error: use of undefined value here causes illegal behavior5024// :137:21: error: use of undefined value here causes illegal behavior
5025// :137:21: note: when computing vector element at index '0'
5033// :137:21: error: use of undefined value here causes illegal behavior5026// :137:21: error: use of undefined value here causes illegal behavior
5034// :137:21: note: when computing vector element at index '0'5027// :137:21: note: when computing vector element at index '0'
5035// :137:21: error: use of undefined value here causes illegal behavior5028// :137:21: error: use of undefined value here causes illegal behavior
5036// :137:21: note: when computing vector element at index '0'5029// :137:21: note: when computing vector element at index '0'
5037// :137:21: error: use of undefined value here causes illegal behavior5030// :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'
5039// :137:21: error: use of undefined value here causes illegal behavior5032// :137:21: error: use of undefined value here causes illegal behavior
5040// :137:21: note: when computing vector element at index '0'5033// :137:21: note: when computing vector element at index '0'
5041// :137:21: error: use of undefined value here causes illegal behavior5034// :137:21: error: use of undefined value here causes illegal behavior
5042// :137:21: note: when computing vector element at index '0'5035// :137:21: note: when computing vector element at index '0'
5043// :137:21: error: use of undefined value here causes illegal behavior5036// :137:21: error: use of undefined value here causes illegal behavior
5037// :137:21: note: when computing vector element at index '0'
5044// :137:21: error: use of undefined value here causes illegal behavior5038// :137:21: error: use of undefined value here causes illegal behavior
5045// :137:21: note: when computing vector element at index '0'5039// :137:21: note: when computing vector element at index '0'
5046// :137:21: error: use of undefined value here causes illegal behavior5040// :137:21: error: use of undefined value here causes illegal behavior
5047// :137:21: note: when computing vector element at index '0'5041// :137:21: note: when computing vector element at index '0'
5048// :137:21: error: use of undefined value here causes illegal behavior5042// :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'
5050// :137:21: error: use of undefined value here causes illegal behavior5044// :137:21: error: use of undefined value here causes illegal behavior
5051// :137:21: note: when computing vector element at index '0'5045// :137:21: note: when computing vector element at index '0'
5052// :137:21: error: use of undefined value here causes illegal behavior5046// :137:21: error: use of undefined value here causes illegal behavior
5053// :137:21: note: when computing vector element at index '0'5047// :137:21: note: when computing vector element at index '0'
5054// :137:21: error: use of undefined value here causes illegal behavior5048// :137:21: error: use of undefined value here causes illegal behavior
5049// :137:21: note: when computing vector element at index '0'
5055// :137:21: error: use of undefined value here causes illegal behavior5050// :137:21: error: use of undefined value here causes illegal behavior
5056// :137:21: note: when computing vector element at index '0'5051// :137:21: note: when computing vector element at index '0'
5057// :137:21: error: use of undefined value here causes illegal behavior5052// :137:21: error: use of undefined value here causes illegal behavior
...@@ -5059,44 +5054,42 @@ const std = @import("std");...@@ -5059,44 +5054,42 @@ const std = @import("std");
5059// :137:21: error: use of undefined value here causes illegal behavior5054// :137:21: error: use of undefined value here causes illegal behavior
5060// :137:21: note: when computing vector element at index '1'5055// :137:21: note: when computing vector element at index '1'
5061// :137:21: error: use of undefined value here causes illegal behavior5056// :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'
5063// :137:21: error: use of undefined value here causes illegal behavior5058// :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'
5065// :137:21: error: use of undefined value here causes illegal behavior5060// :137:21: error: use of undefined value here causes illegal behavior
5061// :137:21: note: when computing vector element at index '1'
5066// :137:21: error: use of undefined value here causes illegal behavior5062// :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'
5068// :137:21: error: use of undefined value here causes illegal behavior5064// :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'
5070// :137:21: error: use of undefined value here causes illegal behavior5066// :137:21: error: use of undefined value here causes illegal behavior
5071// :137:21: note: when computing vector element at index '1'5067// :137:21: note: when computing vector element at index '1'
5072// :137:21: error: use of undefined value here causes illegal behavior5068// :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'
5074// :137:21: error: use of undefined value here causes illegal behavior5070// :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
5076// :141:22: error: use of undefined value here causes illegal behavior5077// :141:22: error: use of undefined value here causes illegal behavior
5077// :141:22: error: use of undefined value here causes illegal behavior5078// :141:22: error: use of undefined value here causes illegal behavior
5078// :141:22: note: when computing vector element at index '0'
5079// :141:22: error: use of undefined value here causes illegal behavior5079// :141:22: error: use of undefined value here causes illegal behavior
5080// :141:22: note: when computing vector element at index '0'
5081// :141:22: error: use of undefined value here causes illegal behavior5080// :141:22: error: use of undefined value here causes illegal behavior
5082// :141:22: note: when computing vector element at index '0'
5083// :141:22: error: use of undefined value here causes illegal behavior5081// :141:22: error: use of undefined value here causes illegal behavior
5084// :141:22: note: when computing vector element at index '1'
5085// :141:22: error: use of undefined value here causes illegal behavior5082// :141:22: error: use of undefined value here causes illegal behavior
5086// :141:22: note: when computing vector element at index '0'
5087// :141:22: error: use of undefined value here causes illegal behavior5083// :141:22: error: use of undefined value here causes illegal behavior
5088// :141:22: note: when computing vector element at index '0'
5089// :141:22: error: use of undefined value here causes illegal behavior5084// :141:22: error: use of undefined value here causes illegal behavior
5090// :141:22: note: when computing vector element at index '0'
5091// :141:22: error: use of undefined value here causes illegal behavior5085// :141:22: error: use of undefined value here causes illegal behavior
5092// :141:22: error: use of undefined value here causes illegal behavior5086// :141:22: error: use of undefined value here causes illegal behavior
5093// :141:22: note: when computing vector element at index '0'
5094// :141:22: error: use of undefined value here causes illegal behavior5087// :141:22: error: use of undefined value here causes illegal behavior
5095// :141:22: note: when computing vector element at index '0'5088// :141:22: note: when computing vector element at index '0'
5096// :141:22: error: use of undefined value here causes illegal behavior5089// :141:22: error: use of undefined value here causes illegal behavior
5097// :141:22: note: when computing vector element at index '0'5090// :141:22: note: when computing vector element at index '0'
5098// :141:22: error: use of undefined value here causes illegal behavior5091// :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'
5100// :141:22: error: use of undefined value here causes illegal behavior5093// :141:22: error: use of undefined value here causes illegal behavior
5101// :141:22: note: when computing vector element at index '0'5094// :141:22: note: when computing vector element at index '0'
5102// :141:22: error: use of undefined value here causes illegal behavior5095// :141:22: error: use of undefined value here causes illegal behavior
...@@ -5104,6 +5097,7 @@ const std = @import("std");...@@ -5104,6 +5097,7 @@ const std = @import("std");
5104// :141:22: error: use of undefined value here causes illegal behavior5097// :141:22: error: use of undefined value here causes illegal behavior
5105// :141:22: note: when computing vector element at index '0'5098// :141:22: note: when computing vector element at index '0'
5106// :141:22: error: use of undefined value here causes illegal behavior5099// :141:22: error: use of undefined value here causes illegal behavior
5100// :141:22: note: when computing vector element at index '0'
5107// :141:22: error: use of undefined value here causes illegal behavior5101// :141:22: error: use of undefined value here causes illegal behavior
5108// :141:22: note: when computing vector element at index '0'5102// :141:22: note: when computing vector element at index '0'
5109// :141:22: error: use of undefined value here causes illegal behavior5103// :141:22: error: use of undefined value here causes illegal behavior
...@@ -5111,7 +5105,7 @@ const std = @import("std");...@@ -5111,7 +5105,7 @@ const std = @import("std");
5111// :141:22: error: use of undefined value here causes illegal behavior5105// :141:22: error: use of undefined value here causes illegal behavior
5112// :141:22: note: when computing vector element at index '0'5106// :141:22: note: when computing vector element at index '0'
5113// :141:22: error: use of undefined value here causes illegal behavior5107// :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'
5115// :141:22: error: use of undefined value here causes illegal behavior5109// :141:22: error: use of undefined value here causes illegal behavior
5116// :141:22: note: when computing vector element at index '0'5110// :141:22: note: when computing vector element at index '0'
5117// :141:22: error: use of undefined value here causes illegal behavior5111// :141:22: error: use of undefined value here causes illegal behavior
...@@ -5119,6 +5113,7 @@ const std = @import("std");...@@ -5119,6 +5113,7 @@ const std = @import("std");
5119// :141:22: error: use of undefined value here causes illegal behavior5113// :141:22: error: use of undefined value here causes illegal behavior
5120// :141:22: note: when computing vector element at index '0'5114// :141:22: note: when computing vector element at index '0'
5121// :141:22: error: use of undefined value here causes illegal behavior5115// :141:22: error: use of undefined value here causes illegal behavior
5116// :141:22: note: when computing vector element at index '0'
5122// :141:22: error: use of undefined value here causes illegal behavior5117// :141:22: error: use of undefined value here causes illegal behavior
5123// :141:22: note: when computing vector element at index '0'5118// :141:22: note: when computing vector element at index '0'
5124// :141:22: error: use of undefined value here causes illegal behavior5119// :141:22: error: use of undefined value here causes illegal behavior
...@@ -5126,7 +5121,7 @@ const std = @import("std");...@@ -5126,7 +5121,7 @@ const std = @import("std");
5126// :141:22: error: use of undefined value here causes illegal behavior5121// :141:22: error: use of undefined value here causes illegal behavior
5127// :141:22: note: when computing vector element at index '0'5122// :141:22: note: when computing vector element at index '0'
5128// :141:22: error: use of undefined value here causes illegal behavior5123// :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'
5130// :141:22: error: use of undefined value here causes illegal behavior5125// :141:22: error: use of undefined value here causes illegal behavior
5131// :141:22: note: when computing vector element at index '0'5126// :141:22: note: when computing vector element at index '0'
5132// :141:22: error: use of undefined value here causes illegal behavior5127// :141:22: error: use of undefined value here causes illegal behavior
...@@ -5134,6 +5129,7 @@ const std = @import("std");...@@ -5134,6 +5129,7 @@ const std = @import("std");
5134// :141:22: error: use of undefined value here causes illegal behavior5129// :141:22: error: use of undefined value here causes illegal behavior
5135// :141:22: note: when computing vector element at index '0'5130// :141:22: note: when computing vector element at index '0'
5136// :141:22: error: use of undefined value here causes illegal behavior5131// :141:22: error: use of undefined value here causes illegal behavior
5132// :141:22: note: when computing vector element at index '0'
5137// :141:22: error: use of undefined value here causes illegal behavior5133// :141:22: error: use of undefined value here causes illegal behavior
5138// :141:22: note: when computing vector element at index '0'5134// :141:22: note: when computing vector element at index '0'
5139// :141:22: error: use of undefined value here causes illegal behavior5135// :141:22: error: use of undefined value here causes illegal behavior
...@@ -5141,7 +5137,7 @@ const std = @import("std");...@@ -5141,7 +5137,7 @@ const std = @import("std");
5141// :141:22: error: use of undefined value here causes illegal behavior5137// :141:22: error: use of undefined value here causes illegal behavior
5142// :141:22: note: when computing vector element at index '0'5138// :141:22: note: when computing vector element at index '0'
5143// :141:22: error: use of undefined value here causes illegal behavior5139// :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'
5145// :141:22: error: use of undefined value here causes illegal behavior5141// :141:22: error: use of undefined value here causes illegal behavior
5146// :141:22: note: when computing vector element at index '0'5142// :141:22: note: when computing vector element at index '0'
5147// :141:22: error: use of undefined value here causes illegal behavior5143// :141:22: error: use of undefined value here causes illegal behavior
...@@ -5149,6 +5145,7 @@ const std = @import("std");...@@ -5149,6 +5145,7 @@ const std = @import("std");
5149// :141:22: error: use of undefined value here causes illegal behavior5145// :141:22: error: use of undefined value here causes illegal behavior
5150// :141:22: note: when computing vector element at index '0'5146// :141:22: note: when computing vector element at index '0'
5151// :141:22: error: use of undefined value here causes illegal behavior5147// :141:22: error: use of undefined value here causes illegal behavior
5148// :141:22: note: when computing vector element at index '0'
5152// :141:22: error: use of undefined value here causes illegal behavior5149// :141:22: error: use of undefined value here causes illegal behavior
5153// :141:22: note: when computing vector element at index '0'5150// :141:22: note: when computing vector element at index '0'
5154// :141:22: error: use of undefined value here causes illegal behavior5151// :141:22: error: use of undefined value here causes illegal behavior
...@@ -5156,7 +5153,7 @@ const std = @import("std");...@@ -5156,7 +5153,7 @@ const std = @import("std");
5156// :141:22: error: use of undefined value here causes illegal behavior5153// :141:22: error: use of undefined value here causes illegal behavior
5157// :141:22: note: when computing vector element at index '0'5154// :141:22: note: when computing vector element at index '0'
5158// :141:22: error: use of undefined value here causes illegal behavior5155// :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'
5160// :141:22: error: use of undefined value here causes illegal behavior5157// :141:22: error: use of undefined value here causes illegal behavior
5161// :141:22: note: when computing vector element at index '0'5158// :141:22: note: when computing vector element at index '0'
5162// :141:22: error: use of undefined value here causes illegal behavior5159// :141:22: error: use of undefined value here causes illegal behavior
...@@ -5164,6 +5161,7 @@ const std = @import("std");...@@ -5164,6 +5161,7 @@ const std = @import("std");
5164// :141:22: error: use of undefined value here causes illegal behavior5161// :141:22: error: use of undefined value here causes illegal behavior
5165// :141:22: note: when computing vector element at index '0'5162// :141:22: note: when computing vector element at index '0'
5166// :141:22: error: use of undefined value here causes illegal behavior5163// :141:22: error: use of undefined value here causes illegal behavior
5164// :141:22: note: when computing vector element at index '0'
5167// :141:22: error: use of undefined value here causes illegal behavior5165// :141:22: error: use of undefined value here causes illegal behavior
5168// :141:22: note: when computing vector element at index '0'5166// :141:22: note: when computing vector element at index '0'
5169// :141:22: error: use of undefined value here causes illegal behavior5167// :141:22: error: use of undefined value here causes illegal behavior
...@@ -5171,7 +5169,7 @@ const std = @import("std");...@@ -5171,7 +5169,7 @@ const std = @import("std");
5171// :141:22: error: use of undefined value here causes illegal behavior5169// :141:22: error: use of undefined value here causes illegal behavior
5172// :141:22: note: when computing vector element at index '0'5170// :141:22: note: when computing vector element at index '0'
5173// :141:22: error: use of undefined value here causes illegal behavior5171// :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'
5175// :141:22: error: use of undefined value here causes illegal behavior5173// :141:22: error: use of undefined value here causes illegal behavior
5176// :141:22: note: when computing vector element at index '0'5174// :141:22: note: when computing vector element at index '0'
5177// :141:22: error: use of undefined value here causes illegal behavior5175// :141:22: error: use of undefined value here causes illegal behavior
...@@ -5179,6 +5177,7 @@ const std = @import("std");...@@ -5179,6 +5177,7 @@ const std = @import("std");
5179// :141:22: error: use of undefined value here causes illegal behavior5177// :141:22: error: use of undefined value here causes illegal behavior
5180// :141:22: note: when computing vector element at index '0'5178// :141:22: note: when computing vector element at index '0'
5181// :141:22: error: use of undefined value here causes illegal behavior5179// :141:22: error: use of undefined value here causes illegal behavior
5180// :141:22: note: when computing vector element at index '0'
5182// :141:22: error: use of undefined value here causes illegal behavior5181// :141:22: error: use of undefined value here causes illegal behavior
5183// :141:22: note: when computing vector element at index '0'5182// :141:22: note: when computing vector element at index '0'
5184// :141:22: error: use of undefined value here causes illegal behavior5183// :141:22: error: use of undefined value here causes illegal behavior
...@@ -5186,7 +5185,7 @@ const std = @import("std");...@@ -5186,7 +5185,7 @@ const std = @import("std");
5186// :141:22: error: use of undefined value here causes illegal behavior5185// :141:22: error: use of undefined value here causes illegal behavior
5187// :141:22: note: when computing vector element at index '0'5186// :141:22: note: when computing vector element at index '0'
5188// :141:22: error: use of undefined value here causes illegal behavior5187// :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'
5190// :141:22: error: use of undefined value here causes illegal behavior5189// :141:22: error: use of undefined value here causes illegal behavior
5191// :141:22: note: when computing vector element at index '0'5190// :141:22: note: when computing vector element at index '0'
5192// :141:22: error: use of undefined value here causes illegal behavior5191// :141:22: error: use of undefined value here causes illegal behavior
...@@ -5194,6 +5193,7 @@ const std = @import("std");...@@ -5194,6 +5193,7 @@ const std = @import("std");
5194// :141:22: error: use of undefined value here causes illegal behavior5193// :141:22: error: use of undefined value here causes illegal behavior
5195// :141:22: note: when computing vector element at index '0'5194// :141:22: note: when computing vector element at index '0'
5196// :141:22: error: use of undefined value here causes illegal behavior5195// :141:22: error: use of undefined value here causes illegal behavior
5196// :141:22: note: when computing vector element at index '0'
5197// :141:22: error: use of undefined value here causes illegal behavior5197// :141:22: error: use of undefined value here causes illegal behavior
5198// :141:22: note: when computing vector element at index '0'5198// :141:22: note: when computing vector element at index '0'
5199// :141:22: error: use of undefined value here causes illegal behavior5199// :141:22: error: use of undefined value here causes illegal behavior
...@@ -5201,7 +5201,7 @@ const std = @import("std");...@@ -5201,7 +5201,7 @@ const std = @import("std");
5201// :141:22: error: use of undefined value here causes illegal behavior5201// :141:22: error: use of undefined value here causes illegal behavior
5202// :141:22: note: when computing vector element at index '0'5202// :141:22: note: when computing vector element at index '0'
5203// :141:22: error: use of undefined value here causes illegal behavior5203// :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'
5205// :141:22: error: use of undefined value here causes illegal behavior5205// :141:22: error: use of undefined value here causes illegal behavior
5206// :141:22: note: when computing vector element at index '0'5206// :141:22: note: when computing vector element at index '0'
5207// :141:22: error: use of undefined value here causes illegal behavior5207// :141:22: error: use of undefined value here causes illegal behavior
...@@ -5209,6 +5209,7 @@ const std = @import("std");...@@ -5209,6 +5209,7 @@ const std = @import("std");
5209// :141:22: error: use of undefined value here causes illegal behavior5209// :141:22: error: use of undefined value here causes illegal behavior
5210// :141:22: note: when computing vector element at index '0'5210// :141:22: note: when computing vector element at index '0'
5211// :141:22: error: use of undefined value here causes illegal behavior5211// :141:22: error: use of undefined value here causes illegal behavior
5212// :141:22: note: when computing vector element at index '0'
5212// :141:22: error: use of undefined value here causes illegal behavior5213// :141:22: error: use of undefined value here causes illegal behavior
5213// :141:22: note: when computing vector element at index '0'5214// :141:22: note: when computing vector element at index '0'
5214// :141:22: error: use of undefined value here causes illegal behavior5215// :141:22: error: use of undefined value here causes illegal behavior
...@@ -5218,126 +5219,120 @@ const std = @import("std");...@@ -5218,126 +5219,120 @@ const std = @import("std");
5218// :141:22: error: use of undefined value here causes illegal behavior5219// :141:22: error: use of undefined value here causes illegal behavior
5219// :141:22: note: when computing vector element at index '1'5220// :141:22: note: when computing vector element at index '1'
5220// :141:22: error: use of undefined value here causes illegal behavior5221// :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: note: when computing vector element at index '1'
5222// :141:22: error: use of undefined value here causes illegal behavior
5223// :141:22: note: when computing vector element at index '0'
5224// :141:22: error: use of undefined value here causes illegal behavior5223// :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'
5226// :141:22: error: use of undefined value here causes illegal behavior5225// :141:22: error: use of undefined value here causes illegal behavior
5226// :141:22: note: when computing vector element at index '1'
5227// :141:22: error: use of undefined value here causes illegal behavior5227// :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'
5229// :141:22: error: use of undefined value here causes illegal behavior5229// :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'
5231// :141:22: error: use of undefined value here causes illegal behavior5231// :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'
5233// :141:22: error: use of undefined value here causes illegal behavior5233// :141:22: error: use of undefined value here causes illegal behavior
5234// :141:22: note: when computing vector element at index '1'5234// :141:22: note: when computing vector element at index '1'
5235// :141:22: error: use of undefined value here causes illegal behavior5235// :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'
5237// :141:22: error: use of undefined value here causes illegal behavior5237// :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'
5239// :141:22: error: use of undefined value here causes illegal behavior5239// :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'
5241// :141:25: error: use of undefined value here causes illegal behavior5241// :141:25: error: use of undefined value here causes illegal behavior
5242// :141:25: error: use of undefined value here causes illegal behavior5242// :141:25: error: use of undefined value here causes illegal behavior
5243// :141:25: note: when computing vector element at index '0'
5244// :141:25: error: use of undefined value here causes illegal behavior5243// :141:25: error: use of undefined value here causes illegal behavior
5245// :141:25: note: when computing vector element at index '0'
5246// :141:25: error: use of undefined value here causes illegal behavior5244// :141:25: error: use of undefined value here causes illegal behavior
5247// :141:25: note: when computing vector element at index '1'
5248// :141:25: error: use of undefined value here causes illegal behavior5245// :141:25: error: use of undefined value here causes illegal behavior
5249// :141:25: note: when computing vector element at index '0'
5250// :141:25: error: use of undefined value here causes illegal behavior5246// :141:25: error: use of undefined value here causes illegal behavior
5251// :141:25: note: when computing vector element at index '0'
5252// :141:25: error: use of undefined value here causes illegal behavior5247// :141:25: error: use of undefined value here causes illegal behavior
5253// :141:25: error: use of undefined value here causes illegal behavior5248// :141:25: error: use of undefined value here causes illegal behavior
5254// :141:25: note: when computing vector element at index '0'
5255// :141:25: error: use of undefined value here causes illegal behavior5249// :141:25: error: use of undefined value here causes illegal behavior
5256// :141:25: note: when computing vector element at index '0'
5257// :141:25: error: use of undefined value here causes illegal behavior5250// :141:25: error: use of undefined value here causes illegal behavior
5258// :141:25: note: when computing vector element at index '1'
5259// :141:25: error: use of undefined value here causes illegal behavior5251// :141:25: error: use of undefined value here causes illegal behavior
5260// :141:25: note: when computing vector element at index '0'
5261// :141:25: error: use of undefined value here causes illegal behavior5252// :141:25: error: use of undefined value here causes illegal behavior
5262// :141:25: note: when computing vector element at index '0'5253// :141:25: note: when computing vector element at index '0'
5263// :141:25: error: use of undefined value here causes illegal behavior5254// :141:25: error: use of undefined value here causes illegal behavior
5264// :141:25: error: use of undefined value here causes illegal behavior
5265// :141:25: note: when computing vector element at index '0'5255// :141:25: note: when computing vector element at index '0'
5266// :141:25: error: use of undefined value here causes illegal behavior5256// :141:25: error: use of undefined value here causes illegal behavior
5267// :141:25: note: when computing vector element at index '0'5257// :141:25: note: when computing vector element at index '0'
5268// :141:25: error: use of undefined value here causes illegal behavior5258// :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
5271// :141:25: note: when computing vector element at index '0'5259// :141:25: note: when computing vector element at index '0'
5272// :141:25: error: use of undefined value here causes illegal behavior5260// :141:25: error: use of undefined value here causes illegal behavior
5273// :141:25: note: when computing vector element at index '0'5261// :141:25: note: when computing vector element at index '0'
5274// :141:25: error: use of undefined value here causes illegal behavior5262// :141:25: error: use of undefined value here causes illegal behavior
5263// :141:25: note: when computing vector element at index '0'
5275// :141:25: error: use of undefined value here causes illegal behavior5264// :141:25: error: use of undefined value here causes illegal behavior
5276// :141:25: note: when computing vector element at index '0'5265// :141:25: note: when computing vector element at index '0'
5277// :141:25: error: use of undefined value here causes illegal behavior5266// :141:25: error: use of undefined value here causes illegal behavior
5278// :141:25: note: when computing vector element at index '0'5267// :141:25: note: when computing vector element at index '0'
5279// :141:25: error: use of undefined value here causes illegal behavior5268// :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'
5281// :141:25: error: use of undefined value here causes illegal behavior5270// :141:25: error: use of undefined value here causes illegal behavior
5282// :141:25: note: when computing vector element at index '0'5271// :141:25: note: when computing vector element at index '0'
5283// :141:25: error: use of undefined value here causes illegal behavior5272// :141:25: error: use of undefined value here causes illegal behavior
5284// :141:25: note: when computing vector element at index '0'5273// :141:25: note: when computing vector element at index '0'
5285// :141:25: error: use of undefined value here causes illegal behavior5274// :141:25: error: use of undefined value here causes illegal behavior
5275// :141:25: note: when computing vector element at index '0'
5286// :141:25: error: use of undefined value here causes illegal behavior5276// :141:25: error: use of undefined value here causes illegal behavior
5287// :141:25: note: when computing vector element at index '0'5277// :141:25: note: when computing vector element at index '0'
5288// :141:25: error: use of undefined value here causes illegal behavior5278// :141:25: error: use of undefined value here causes illegal behavior
5289// :141:25: note: when computing vector element at index '0'5279// :141:25: note: when computing vector element at index '0'
5290// :141:25: error: use of undefined value here causes illegal behavior5280// :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'
5292// :141:25: error: use of undefined value here causes illegal behavior5282// :141:25: error: use of undefined value here causes illegal behavior
5293// :141:25: note: when computing vector element at index '0'5283// :141:25: note: when computing vector element at index '0'
5294// :141:25: error: use of undefined value here causes illegal behavior5284// :141:25: error: use of undefined value here causes illegal behavior
5295// :141:25: note: when computing vector element at index '0'5285// :141:25: note: when computing vector element at index '0'
5296// :141:25: error: use of undefined value here causes illegal behavior5286// :141:25: error: use of undefined value here causes illegal behavior
5287// :141:25: note: when computing vector element at index '0'
5297// :141:25: error: use of undefined value here causes illegal behavior5288// :141:25: error: use of undefined value here causes illegal behavior
5298// :141:25: note: when computing vector element at index '0'5289// :141:25: note: when computing vector element at index '0'
5299// :141:25: error: use of undefined value here causes illegal behavior5290// :141:25: error: use of undefined value here causes illegal behavior
5300// :141:25: note: when computing vector element at index '0'5291// :141:25: note: when computing vector element at index '0'
5301// :141:25: error: use of undefined value here causes illegal behavior5292// :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'
5303// :141:25: error: use of undefined value here causes illegal behavior5294// :141:25: error: use of undefined value here causes illegal behavior
5304// :141:25: note: when computing vector element at index '0'5295// :141:25: note: when computing vector element at index '0'
5305// :141:25: error: use of undefined value here causes illegal behavior5296// :141:25: error: use of undefined value here causes illegal behavior
5306// :141:25: note: when computing vector element at index '0'5297// :141:25: note: when computing vector element at index '0'
5307// :141:25: error: use of undefined value here causes illegal behavior5298// :141:25: error: use of undefined value here causes illegal behavior
5299// :141:25: note: when computing vector element at index '0'
5308// :141:25: error: use of undefined value here causes illegal behavior5300// :141:25: error: use of undefined value here causes illegal behavior
5309// :141:25: note: when computing vector element at index '0'5301// :141:25: note: when computing vector element at index '0'
5310// :141:25: error: use of undefined value here causes illegal behavior5302// :141:25: error: use of undefined value here causes illegal behavior
5311// :141:25: note: when computing vector element at index '0'5303// :141:25: note: when computing vector element at index '0'
5312// :141:25: error: use of undefined value here causes illegal behavior5304// :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'
5314// :141:25: error: use of undefined value here causes illegal behavior5306// :141:25: error: use of undefined value here causes illegal behavior
5315// :141:25: note: when computing vector element at index '0'5307// :141:25: note: when computing vector element at index '0'
5316// :141:25: error: use of undefined value here causes illegal behavior5308// :141:25: error: use of undefined value here causes illegal behavior
5317// :141:25: note: when computing vector element at index '0'5309// :141:25: note: when computing vector element at index '0'
5318// :141:25: error: use of undefined value here causes illegal behavior5310// :141:25: error: use of undefined value here causes illegal behavior
5311// :141:25: note: when computing vector element at index '0'
5319// :141:25: error: use of undefined value here causes illegal behavior5312// :141:25: error: use of undefined value here causes illegal behavior
5320// :141:25: note: when computing vector element at index '0'5313// :141:25: note: when computing vector element at index '0'
5321// :141:25: error: use of undefined value here causes illegal behavior5314// :141:25: error: use of undefined value here causes illegal behavior
5322// :141:25: note: when computing vector element at index '0'5315// :141:25: note: when computing vector element at index '0'
5323// :141:25: error: use of undefined value here causes illegal behavior5316// :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'
5325// :141:25: error: use of undefined value here causes illegal behavior5318// :141:25: error: use of undefined value here causes illegal behavior
5326// :141:25: note: when computing vector element at index '0'5319// :141:25: note: when computing vector element at index '0'
5327// :141:25: error: use of undefined value here causes illegal behavior5320// :141:25: error: use of undefined value here causes illegal behavior
5328// :141:25: note: when computing vector element at index '0'5321// :141:25: note: when computing vector element at index '0'
5329// :141:25: error: use of undefined value here causes illegal behavior5322// :141:25: error: use of undefined value here causes illegal behavior
5323// :141:25: note: when computing vector element at index '0'
5330// :141:25: error: use of undefined value here causes illegal behavior5324// :141:25: error: use of undefined value here causes illegal behavior
5331// :141:25: note: when computing vector element at index '0'5325// :141:25: note: when computing vector element at index '0'
5332// :141:25: error: use of undefined value here causes illegal behavior5326// :141:25: error: use of undefined value here causes illegal behavior
5333// :141:25: note: when computing vector element at index '0'5327// :141:25: note: when computing vector element at index '0'
5334// :141:25: error: use of undefined value here causes illegal behavior5328// :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'
5336// :141:25: error: use of undefined value here causes illegal behavior5330// :141:25: error: use of undefined value here causes illegal behavior
5337// :141:25: note: when computing vector element at index '0'5331// :141:25: note: when computing vector element at index '0'
5338// :141:25: error: use of undefined value here causes illegal behavior5332// :141:25: error: use of undefined value here causes illegal behavior
5339// :141:25: note: when computing vector element at index '0'5333// :141:25: note: when computing vector element at index '0'
5340// :141:25: error: use of undefined value here causes illegal behavior5334// :141:25: error: use of undefined value here causes illegal behavior
5335// :141:25: note: when computing vector element at index '0'
5341// :141:25: error: use of undefined value here causes illegal behavior5336// :141:25: error: use of undefined value here causes illegal behavior
5342// :141:25: note: when computing vector element at index '0'5337// :141:25: note: when computing vector element at index '0'
5343// :141:25: error: use of undefined value here causes illegal behavior5338// :141:25: error: use of undefined value here causes illegal behavior
...@@ -5345,44 +5340,42 @@ const std = @import("std");...@@ -5345,44 +5340,42 @@ const std = @import("std");
5345// :141:25: error: use of undefined value here causes illegal behavior5340// :141:25: error: use of undefined value here causes illegal behavior
5346// :141:25: note: when computing vector element at index '1'5341// :141:25: note: when computing vector element at index '1'
5347// :141:25: error: use of undefined value here causes illegal behavior5342// :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'
5349// :141:25: error: use of undefined value here causes illegal behavior5344// :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'
5351// :141:25: error: use of undefined value here causes illegal behavior5346// :141:25: error: use of undefined value here causes illegal behavior
5347// :141:25: note: when computing vector element at index '1'
5352// :141:25: error: use of undefined value here causes illegal behavior5348// :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'
5354// :141:25: error: use of undefined value here causes illegal behavior5350// :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'
5356// :141:25: error: use of undefined value here causes illegal behavior5352// :141:25: error: use of undefined value here causes illegal behavior
5357// :141:25: note: when computing vector element at index '1'5353// :141:25: note: when computing vector element at index '1'
5358// :141:25: error: use of undefined value here causes illegal behavior5354// :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'
5360// :141:25: error: use of undefined value here causes illegal behavior5356// :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
5362// :145:22: error: use of undefined value here causes illegal behavior5363// :145:22: error: use of undefined value here causes illegal behavior
5363// :145:22: error: use of undefined value here causes illegal behavior5364// :145:22: error: use of undefined value here causes illegal behavior
5364// :145:22: note: when computing vector element at index '0'
5365// :145:22: error: use of undefined value here causes illegal behavior5365// :145:22: error: use of undefined value here causes illegal behavior
5366// :145:22: note: when computing vector element at index '0'
5367// :145:22: error: use of undefined value here causes illegal behavior5366// :145:22: error: use of undefined value here causes illegal behavior
5368// :145:22: note: when computing vector element at index '0'
5369// :145:22: error: use of undefined value here causes illegal behavior5367// :145:22: error: use of undefined value here causes illegal behavior
5370// :145:22: note: when computing vector element at index '1'
5371// :145:22: error: use of undefined value here causes illegal behavior5368// :145:22: error: use of undefined value here causes illegal behavior
5372// :145:22: note: when computing vector element at index '0'
5373// :145:22: error: use of undefined value here causes illegal behavior5369// :145:22: error: use of undefined value here causes illegal behavior
5374// :145:22: note: when computing vector element at index '0'
5375// :145:22: error: use of undefined value here causes illegal behavior5370// :145:22: error: use of undefined value here causes illegal behavior
5376// :145:22: note: when computing vector element at index '0'
5377// :145:22: error: use of undefined value here causes illegal behavior5371// :145:22: error: use of undefined value here causes illegal behavior
5378// :145:22: error: use of undefined value here causes illegal behavior5372// :145:22: error: use of undefined value here causes illegal behavior
5379// :145:22: note: when computing vector element at index '0'
5380// :145:22: error: use of undefined value here causes illegal behavior5373// :145:22: error: use of undefined value here causes illegal behavior
5381// :145:22: note: when computing vector element at index '0'5374// :145:22: note: when computing vector element at index '0'
5382// :145:22: error: use of undefined value here causes illegal behavior5375// :145:22: error: use of undefined value here causes illegal behavior
5383// :145:22: note: when computing vector element at index '0'5376// :145:22: note: when computing vector element at index '0'
5384// :145:22: error: use of undefined value here causes illegal behavior5377// :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'
5386// :145:22: error: use of undefined value here causes illegal behavior5379// :145:22: error: use of undefined value here causes illegal behavior
5387// :145:22: note: when computing vector element at index '0'5380// :145:22: note: when computing vector element at index '0'
5388// :145:22: error: use of undefined value here causes illegal behavior5381// :145:22: error: use of undefined value here causes illegal behavior
...@@ -5390,6 +5383,7 @@ const std = @import("std");...@@ -5390,6 +5383,7 @@ const std = @import("std");
5390// :145:22: error: use of undefined value here causes illegal behavior5383// :145:22: error: use of undefined value here causes illegal behavior
5391// :145:22: note: when computing vector element at index '0'5384// :145:22: note: when computing vector element at index '0'
5392// :145:22: error: use of undefined value here causes illegal behavior5385// :145:22: error: use of undefined value here causes illegal behavior
5386// :145:22: note: when computing vector element at index '0'
5393// :145:22: error: use of undefined value here causes illegal behavior5387// :145:22: error: use of undefined value here causes illegal behavior
5394// :145:22: note: when computing vector element at index '0'5388// :145:22: note: when computing vector element at index '0'
5395// :145:22: error: use of undefined value here causes illegal behavior5389// :145:22: error: use of undefined value here causes illegal behavior
...@@ -5397,7 +5391,7 @@ const std = @import("std");...@@ -5397,7 +5391,7 @@ const std = @import("std");
5397// :145:22: error: use of undefined value here causes illegal behavior5391// :145:22: error: use of undefined value here causes illegal behavior
5398// :145:22: note: when computing vector element at index '0'5392// :145:22: note: when computing vector element at index '0'
5399// :145:22: error: use of undefined value here causes illegal behavior5393// :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'
5401// :145:22: error: use of undefined value here causes illegal behavior5395// :145:22: error: use of undefined value here causes illegal behavior
5402// :145:22: note: when computing vector element at index '0'5396// :145:22: note: when computing vector element at index '0'
5403// :145:22: error: use of undefined value here causes illegal behavior5397// :145:22: error: use of undefined value here causes illegal behavior
...@@ -5405,6 +5399,7 @@ const std = @import("std");...@@ -5405,6 +5399,7 @@ const std = @import("std");
5405// :145:22: error: use of undefined value here causes illegal behavior5399// :145:22: error: use of undefined value here causes illegal behavior
5406// :145:22: note: when computing vector element at index '0'5400// :145:22: note: when computing vector element at index '0'
5407// :145:22: error: use of undefined value here causes illegal behavior5401// :145:22: error: use of undefined value here causes illegal behavior
5402// :145:22: note: when computing vector element at index '0'
5408// :145:22: error: use of undefined value here causes illegal behavior5403// :145:22: error: use of undefined value here causes illegal behavior
5409// :145:22: note: when computing vector element at index '0'5404// :145:22: note: when computing vector element at index '0'
5410// :145:22: error: use of undefined value here causes illegal behavior5405// :145:22: error: use of undefined value here causes illegal behavior
...@@ -5412,7 +5407,7 @@ const std = @import("std");...@@ -5412,7 +5407,7 @@ const std = @import("std");
5412// :145:22: error: use of undefined value here causes illegal behavior5407// :145:22: error: use of undefined value here causes illegal behavior
5413// :145:22: note: when computing vector element at index '0'5408// :145:22: note: when computing vector element at index '0'
5414// :145:22: error: use of undefined value here causes illegal behavior5409// :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'
5416// :145:22: error: use of undefined value here causes illegal behavior5411// :145:22: error: use of undefined value here causes illegal behavior
5417// :145:22: note: when computing vector element at index '0'5412// :145:22: note: when computing vector element at index '0'
5418// :145:22: error: use of undefined value here causes illegal behavior5413// :145:22: error: use of undefined value here causes illegal behavior
...@@ -5420,6 +5415,7 @@ const std = @import("std");...@@ -5420,6 +5415,7 @@ const std = @import("std");
5420// :145:22: error: use of undefined value here causes illegal behavior5415// :145:22: error: use of undefined value here causes illegal behavior
5421// :145:22: note: when computing vector element at index '0'5416// :145:22: note: when computing vector element at index '0'
5422// :145:22: error: use of undefined value here causes illegal behavior5417// :145:22: error: use of undefined value here causes illegal behavior
5418// :145:22: note: when computing vector element at index '0'
5423// :145:22: error: use of undefined value here causes illegal behavior5419// :145:22: error: use of undefined value here causes illegal behavior
5424// :145:22: note: when computing vector element at index '0'5420// :145:22: note: when computing vector element at index '0'
5425// :145:22: error: use of undefined value here causes illegal behavior5421// :145:22: error: use of undefined value here causes illegal behavior
...@@ -5427,7 +5423,7 @@ const std = @import("std");...@@ -5427,7 +5423,7 @@ const std = @import("std");
5427// :145:22: error: use of undefined value here causes illegal behavior5423// :145:22: error: use of undefined value here causes illegal behavior
5428// :145:22: note: when computing vector element at index '0'5424// :145:22: note: when computing vector element at index '0'
5429// :145:22: error: use of undefined value here causes illegal behavior5425// :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'
5431// :145:22: error: use of undefined value here causes illegal behavior5427// :145:22: error: use of undefined value here causes illegal behavior
5432// :145:22: note: when computing vector element at index '0'5428// :145:22: note: when computing vector element at index '0'
5433// :145:22: error: use of undefined value here causes illegal behavior5429// :145:22: error: use of undefined value here causes illegal behavior
...@@ -5435,6 +5431,7 @@ const std = @import("std");...@@ -5435,6 +5431,7 @@ const std = @import("std");
5435// :145:22: error: use of undefined value here causes illegal behavior5431// :145:22: error: use of undefined value here causes illegal behavior
5436// :145:22: note: when computing vector element at index '0'5432// :145:22: note: when computing vector element at index '0'
5437// :145:22: error: use of undefined value here causes illegal behavior5433// :145:22: error: use of undefined value here causes illegal behavior
5434// :145:22: note: when computing vector element at index '0'
5438// :145:22: error: use of undefined value here causes illegal behavior5435// :145:22: error: use of undefined value here causes illegal behavior
5439// :145:22: note: when computing vector element at index '0'5436// :145:22: note: when computing vector element at index '0'
5440// :145:22: error: use of undefined value here causes illegal behavior5437// :145:22: error: use of undefined value here causes illegal behavior
...@@ -5442,7 +5439,7 @@ const std = @import("std");...@@ -5442,7 +5439,7 @@ const std = @import("std");
5442// :145:22: error: use of undefined value here causes illegal behavior5439// :145:22: error: use of undefined value here causes illegal behavior
5443// :145:22: note: when computing vector element at index '0'5440// :145:22: note: when computing vector element at index '0'
5444// :145:22: error: use of undefined value here causes illegal behavior5441// :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'
5446// :145:22: error: use of undefined value here causes illegal behavior5443// :145:22: error: use of undefined value here causes illegal behavior
5447// :145:22: note: when computing vector element at index '0'5444// :145:22: note: when computing vector element at index '0'
5448// :145:22: error: use of undefined value here causes illegal behavior5445// :145:22: error: use of undefined value here causes illegal behavior
...@@ -5450,6 +5447,7 @@ const std = @import("std");...@@ -5450,6 +5447,7 @@ const std = @import("std");
5450// :145:22: error: use of undefined value here causes illegal behavior5447// :145:22: error: use of undefined value here causes illegal behavior
5451// :145:22: note: when computing vector element at index '0'5448// :145:22: note: when computing vector element at index '0'
5452// :145:22: error: use of undefined value here causes illegal behavior5449// :145:22: error: use of undefined value here causes illegal behavior
5450// :145:22: note: when computing vector element at index '0'
5453// :145:22: error: use of undefined value here causes illegal behavior5451// :145:22: error: use of undefined value here causes illegal behavior
5454// :145:22: note: when computing vector element at index '0'5452// :145:22: note: when computing vector element at index '0'
5455// :145:22: error: use of undefined value here causes illegal behavior5453// :145:22: error: use of undefined value here causes illegal behavior
...@@ -5457,7 +5455,7 @@ const std = @import("std");...@@ -5457,7 +5455,7 @@ const std = @import("std");
5457// :145:22: error: use of undefined value here causes illegal behavior5455// :145:22: error: use of undefined value here causes illegal behavior
5458// :145:22: note: when computing vector element at index '0'5456// :145:22: note: when computing vector element at index '0'
5459// :145:22: error: use of undefined value here causes illegal behavior5457// :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'
5461// :145:22: error: use of undefined value here causes illegal behavior5459// :145:22: error: use of undefined value here causes illegal behavior
5462// :145:22: note: when computing vector element at index '0'5460// :145:22: note: when computing vector element at index '0'
5463// :145:22: error: use of undefined value here causes illegal behavior5461// :145:22: error: use of undefined value here causes illegal behavior
...@@ -5465,6 +5463,7 @@ const std = @import("std");...@@ -5465,6 +5463,7 @@ const std = @import("std");
5465// :145:22: error: use of undefined value here causes illegal behavior5463// :145:22: error: use of undefined value here causes illegal behavior
5466// :145:22: note: when computing vector element at index '0'5464// :145:22: note: when computing vector element at index '0'
5467// :145:22: error: use of undefined value here causes illegal behavior5465// :145:22: error: use of undefined value here causes illegal behavior
5466// :145:22: note: when computing vector element at index '0'
5468// :145:22: error: use of undefined value here causes illegal behavior5467// :145:22: error: use of undefined value here causes illegal behavior
5469// :145:22: note: when computing vector element at index '0'5468// :145:22: note: when computing vector element at index '0'
5470// :145:22: error: use of undefined value here causes illegal behavior5469// :145:22: error: use of undefined value here causes illegal behavior
...@@ -5472,7 +5471,7 @@ const std = @import("std");...@@ -5472,7 +5471,7 @@ const std = @import("std");
5472// :145:22: error: use of undefined value here causes illegal behavior5471// :145:22: error: use of undefined value here causes illegal behavior
5473// :145:22: note: when computing vector element at index '0'5472// :145:22: note: when computing vector element at index '0'
5474// :145:22: error: use of undefined value here causes illegal behavior5473// :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'
5476// :145:22: error: use of undefined value here causes illegal behavior5475// :145:22: error: use of undefined value here causes illegal behavior
5477// :145:22: note: when computing vector element at index '0'5476// :145:22: note: when computing vector element at index '0'
5478// :145:22: error: use of undefined value here causes illegal behavior5477// :145:22: error: use of undefined value here causes illegal behavior
...@@ -5480,6 +5479,7 @@ const std = @import("std");...@@ -5480,6 +5479,7 @@ const std = @import("std");
5480// :145:22: error: use of undefined value here causes illegal behavior5479// :145:22: error: use of undefined value here causes illegal behavior
5481// :145:22: note: when computing vector element at index '0'5480// :145:22: note: when computing vector element at index '0'
5482// :145:22: error: use of undefined value here causes illegal behavior5481// :145:22: error: use of undefined value here causes illegal behavior
5482// :145:22: note: when computing vector element at index '0'
5483// :145:22: error: use of undefined value here causes illegal behavior5483// :145:22: error: use of undefined value here causes illegal behavior
5484// :145:22: note: when computing vector element at index '0'5484// :145:22: note: when computing vector element at index '0'
5485// :145:22: error: use of undefined value here causes illegal behavior5485// :145:22: error: use of undefined value here causes illegal behavior
...@@ -5487,7 +5487,7 @@ const std = @import("std");...@@ -5487,7 +5487,7 @@ const std = @import("std");
5487// :145:22: error: use of undefined value here causes illegal behavior5487// :145:22: error: use of undefined value here causes illegal behavior
5488// :145:22: note: when computing vector element at index '0'5488// :145:22: note: when computing vector element at index '0'
5489// :145:22: error: use of undefined value here causes illegal behavior5489// :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'
5491// :145:22: error: use of undefined value here causes illegal behavior5491// :145:22: error: use of undefined value here causes illegal behavior
5492// :145:22: note: when computing vector element at index '0'5492// :145:22: note: when computing vector element at index '0'
5493// :145:22: error: use of undefined value here causes illegal behavior5493// :145:22: error: use of undefined value here causes illegal behavior
...@@ -5495,6 +5495,7 @@ const std = @import("std");...@@ -5495,6 +5495,7 @@ const std = @import("std");
5495// :145:22: error: use of undefined value here causes illegal behavior5495// :145:22: error: use of undefined value here causes illegal behavior
5496// :145:22: note: when computing vector element at index '0'5496// :145:22: note: when computing vector element at index '0'
5497// :145:22: error: use of undefined value here causes illegal behavior5497// :145:22: error: use of undefined value here causes illegal behavior
5498// :145:22: note: when computing vector element at index '0'
5498// :145:22: error: use of undefined value here causes illegal behavior5499// :145:22: error: use of undefined value here causes illegal behavior
5499// :145:22: note: when computing vector element at index '0'5500// :145:22: note: when computing vector element at index '0'
5500// :145:22: error: use of undefined value here causes illegal behavior5501// :145:22: error: use of undefined value here causes illegal behavior
...@@ -5504,126 +5505,120 @@ const std = @import("std");...@@ -5504,126 +5505,120 @@ const std = @import("std");
5504// :145:22: error: use of undefined value here causes illegal behavior5505// :145:22: error: use of undefined value here causes illegal behavior
5505// :145:22: note: when computing vector element at index '1'5506// :145:22: note: when computing vector element at index '1'
5506// :145:22: error: use of undefined value here causes illegal behavior5507// :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: note: when computing vector element at index '1'
5508// :145:22: error: use of undefined value here causes illegal behavior
5509// :145:22: note: when computing vector element at index '0'
5510// :145:22: error: use of undefined value here causes illegal behavior5509// :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'
5512// :145:22: error: use of undefined value here causes illegal behavior5511// :145:22: error: use of undefined value here causes illegal behavior
5512// :145:22: note: when computing vector element at index '1'
5513// :145:22: error: use of undefined value here causes illegal behavior5513// :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'
5515// :145:22: error: use of undefined value here causes illegal behavior5515// :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'
5517// :145:22: error: use of undefined value here causes illegal behavior5517// :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'
5519// :145:22: error: use of undefined value here causes illegal behavior5519// :145:22: error: use of undefined value here causes illegal behavior
5520// :145:22: note: when computing vector element at index '1'5520// :145:22: note: when computing vector element at index '1'
5521// :145:22: error: use of undefined value here causes illegal behavior5521// :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'
5523// :145:22: error: use of undefined value here causes illegal behavior5523// :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'
5525// :145:22: error: use of undefined value here causes illegal behavior5525// :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'
5527// :145:25: error: use of undefined value here causes illegal behavior5527// :145:25: error: use of undefined value here causes illegal behavior
5528// :145:25: error: use of undefined value here causes illegal behavior5528// :145:25: error: use of undefined value here causes illegal behavior
5529// :145:25: note: when computing vector element at index '0'
5530// :145:25: error: use of undefined value here causes illegal behavior5529// :145:25: error: use of undefined value here causes illegal behavior
5531// :145:25: note: when computing vector element at index '0'
5532// :145:25: error: use of undefined value here causes illegal behavior5530// :145:25: error: use of undefined value here causes illegal behavior
5533// :145:25: note: when computing vector element at index '1'
5534// :145:25: error: use of undefined value here causes illegal behavior5531// :145:25: error: use of undefined value here causes illegal behavior
5535// :145:25: note: when computing vector element at index '0'
5536// :145:25: error: use of undefined value here causes illegal behavior5532// :145:25: error: use of undefined value here causes illegal behavior
5537// :145:25: note: when computing vector element at index '0'
5538// :145:25: error: use of undefined value here causes illegal behavior5533// :145:25: error: use of undefined value here causes illegal behavior
5539// :145:25: error: use of undefined value here causes illegal behavior5534// :145:25: error: use of undefined value here causes illegal behavior
5540// :145:25: note: when computing vector element at index '0'
5541// :145:25: error: use of undefined value here causes illegal behavior5535// :145:25: error: use of undefined value here causes illegal behavior
5542// :145:25: note: when computing vector element at index '0'
5543// :145:25: error: use of undefined value here causes illegal behavior5536// :145:25: error: use of undefined value here causes illegal behavior
5544// :145:25: note: when computing vector element at index '1'
5545// :145:25: error: use of undefined value here causes illegal behavior5537// :145:25: error: use of undefined value here causes illegal behavior
5546// :145:25: note: when computing vector element at index '0'
5547// :145:25: error: use of undefined value here causes illegal behavior5538// :145:25: error: use of undefined value here causes illegal behavior
5548// :145:25: note: when computing vector element at index '0'5539// :145:25: note: when computing vector element at index '0'
5549// :145:25: error: use of undefined value here causes illegal behavior5540// :145:25: error: use of undefined value here causes illegal behavior
5550// :145:25: error: use of undefined value here causes illegal behavior
5551// :145:25: note: when computing vector element at index '0'5541// :145:25: note: when computing vector element at index '0'
5552// :145:25: error: use of undefined value here causes illegal behavior5542// :145:25: error: use of undefined value here causes illegal behavior
5553// :145:25: note: when computing vector element at index '0'5543// :145:25: note: when computing vector element at index '0'
5554// :145:25: error: use of undefined value here causes illegal behavior5544// :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
5557// :145:25: note: when computing vector element at index '0'5545// :145:25: note: when computing vector element at index '0'
5558// :145:25: error: use of undefined value here causes illegal behavior5546// :145:25: error: use of undefined value here causes illegal behavior
5559// :145:25: note: when computing vector element at index '0'5547// :145:25: note: when computing vector element at index '0'
5560// :145:25: error: use of undefined value here causes illegal behavior5548// :145:25: error: use of undefined value here causes illegal behavior
5549// :145:25: note: when computing vector element at index '0'
5561// :145:25: error: use of undefined value here causes illegal behavior5550// :145:25: error: use of undefined value here causes illegal behavior
5562// :145:25: note: when computing vector element at index '0'5551// :145:25: note: when computing vector element at index '0'
5563// :145:25: error: use of undefined value here causes illegal behavior5552// :145:25: error: use of undefined value here causes illegal behavior
5564// :145:25: note: when computing vector element at index '0'5553// :145:25: note: when computing vector element at index '0'
5565// :145:25: error: use of undefined value here causes illegal behavior5554// :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'
5567// :145:25: error: use of undefined value here causes illegal behavior5556// :145:25: error: use of undefined value here causes illegal behavior
5568// :145:25: note: when computing vector element at index '0'5557// :145:25: note: when computing vector element at index '0'
5569// :145:25: error: use of undefined value here causes illegal behavior5558// :145:25: error: use of undefined value here causes illegal behavior
5570// :145:25: note: when computing vector element at index '0'5559// :145:25: note: when computing vector element at index '0'
5571// :145:25: error: use of undefined value here causes illegal behavior5560// :145:25: error: use of undefined value here causes illegal behavior
5561// :145:25: note: when computing vector element at index '0'
5572// :145:25: error: use of undefined value here causes illegal behavior5562// :145:25: error: use of undefined value here causes illegal behavior
5573// :145:25: note: when computing vector element at index '0'5563// :145:25: note: when computing vector element at index '0'
5574// :145:25: error: use of undefined value here causes illegal behavior5564// :145:25: error: use of undefined value here causes illegal behavior
5575// :145:25: note: when computing vector element at index '0'5565// :145:25: note: when computing vector element at index '0'
5576// :145:25: error: use of undefined value here causes illegal behavior5566// :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'
5578// :145:25: error: use of undefined value here causes illegal behavior5568// :145:25: error: use of undefined value here causes illegal behavior
5579// :145:25: note: when computing vector element at index '0'5569// :145:25: note: when computing vector element at index '0'
5580// :145:25: error: use of undefined value here causes illegal behavior5570// :145:25: error: use of undefined value here causes illegal behavior
5581// :145:25: note: when computing vector element at index '0'5571// :145:25: note: when computing vector element at index '0'
5582// :145:25: error: use of undefined value here causes illegal behavior5572// :145:25: error: use of undefined value here causes illegal behavior
5573// :145:25: note: when computing vector element at index '0'
5583// :145:25: error: use of undefined value here causes illegal behavior5574// :145:25: error: use of undefined value here causes illegal behavior
5584// :145:25: note: when computing vector element at index '0'5575// :145:25: note: when computing vector element at index '0'
5585// :145:25: error: use of undefined value here causes illegal behavior5576// :145:25: error: use of undefined value here causes illegal behavior
5586// :145:25: note: when computing vector element at index '0'5577// :145:25: note: when computing vector element at index '0'
5587// :145:25: error: use of undefined value here causes illegal behavior5578// :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'
5589// :145:25: error: use of undefined value here causes illegal behavior5580// :145:25: error: use of undefined value here causes illegal behavior
5590// :145:25: note: when computing vector element at index '0'5581// :145:25: note: when computing vector element at index '0'
5591// :145:25: error: use of undefined value here causes illegal behavior5582// :145:25: error: use of undefined value here causes illegal behavior
5592// :145:25: note: when computing vector element at index '0'5583// :145:25: note: when computing vector element at index '0'
5593// :145:25: error: use of undefined value here causes illegal behavior5584// :145:25: error: use of undefined value here causes illegal behavior
5585// :145:25: note: when computing vector element at index '0'
5594// :145:25: error: use of undefined value here causes illegal behavior5586// :145:25: error: use of undefined value here causes illegal behavior
5595// :145:25: note: when computing vector element at index '0'5587// :145:25: note: when computing vector element at index '0'
5596// :145:25: error: use of undefined value here causes illegal behavior5588// :145:25: error: use of undefined value here causes illegal behavior
5597// :145:25: note: when computing vector element at index '0'5589// :145:25: note: when computing vector element at index '0'
5598// :145:25: error: use of undefined value here causes illegal behavior5590// :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'
5600// :145:25: error: use of undefined value here causes illegal behavior5592// :145:25: error: use of undefined value here causes illegal behavior
5601// :145:25: note: when computing vector element at index '0'5593// :145:25: note: when computing vector element at index '0'
5602// :145:25: error: use of undefined value here causes illegal behavior5594// :145:25: error: use of undefined value here causes illegal behavior
5603// :145:25: note: when computing vector element at index '0'5595// :145:25: note: when computing vector element at index '0'
5604// :145:25: error: use of undefined value here causes illegal behavior5596// :145:25: error: use of undefined value here causes illegal behavior
5597// :145:25: note: when computing vector element at index '0'
5605// :145:25: error: use of undefined value here causes illegal behavior5598// :145:25: error: use of undefined value here causes illegal behavior
5606// :145:25: note: when computing vector element at index '0'5599// :145:25: note: when computing vector element at index '0'
5607// :145:25: error: use of undefined value here causes illegal behavior5600// :145:25: error: use of undefined value here causes illegal behavior
5608// :145:25: note: when computing vector element at index '0'5601// :145:25: note: when computing vector element at index '0'
5609// :145:25: error: use of undefined value here causes illegal behavior5602// :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'
5611// :145:25: error: use of undefined value here causes illegal behavior5604// :145:25: error: use of undefined value here causes illegal behavior
5612// :145:25: note: when computing vector element at index '0'5605// :145:25: note: when computing vector element at index '0'
5613// :145:25: error: use of undefined value here causes illegal behavior5606// :145:25: error: use of undefined value here causes illegal behavior
5614// :145:25: note: when computing vector element at index '0'5607// :145:25: note: when computing vector element at index '0'
5615// :145:25: error: use of undefined value here causes illegal behavior5608// :145:25: error: use of undefined value here causes illegal behavior
5609// :145:25: note: when computing vector element at index '0'
5616// :145:25: error: use of undefined value here causes illegal behavior5610// :145:25: error: use of undefined value here causes illegal behavior
5617// :145:25: note: when computing vector element at index '0'5611// :145:25: note: when computing vector element at index '0'
5618// :145:25: error: use of undefined value here causes illegal behavior5612// :145:25: error: use of undefined value here causes illegal behavior
5619// :145:25: note: when computing vector element at index '0'5613// :145:25: note: when computing vector element at index '0'
5620// :145:25: error: use of undefined value here causes illegal behavior5614// :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'
5622// :145:25: error: use of undefined value here causes illegal behavior5616// :145:25: error: use of undefined value here causes illegal behavior
5623// :145:25: note: when computing vector element at index '0'5617// :145:25: note: when computing vector element at index '0'
5624// :145:25: error: use of undefined value here causes illegal behavior5618// :145:25: error: use of undefined value here causes illegal behavior
5625// :145:25: note: when computing vector element at index '0'5619// :145:25: note: when computing vector element at index '0'
5626// :145:25: error: use of undefined value here causes illegal behavior5620// :145:25: error: use of undefined value here causes illegal behavior
5621// :145:25: note: when computing vector element at index '0'
5627// :145:25: error: use of undefined value here causes illegal behavior5622// :145:25: error: use of undefined value here causes illegal behavior
5628// :145:25: note: when computing vector element at index '0'5623// :145:25: note: when computing vector element at index '0'
5629// :145:25: error: use of undefined value here causes illegal behavior5624// :145:25: error: use of undefined value here causes illegal behavior
...@@ -5631,20 +5626,25 @@ const std = @import("std");...@@ -5631,20 +5626,25 @@ const std = @import("std");
5631// :145:25: error: use of undefined value here causes illegal behavior5626// :145:25: error: use of undefined value here causes illegal behavior
5632// :145:25: note: when computing vector element at index '1'5627// :145:25: note: when computing vector element at index '1'
5633// :145:25: error: use of undefined value here causes illegal behavior5628// :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'
5635// :145:25: error: use of undefined value here causes illegal behavior5630// :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'
5637// :145:25: error: use of undefined value here causes illegal behavior5634// :145:25: error: use of undefined value here causes illegal behavior
5635// :145:25: note: when computing vector element at index '1'
5638// :145:25: error: use of undefined value here causes illegal behavior5636// :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'
5640// :145:25: error: use of undefined value here causes illegal behavior5638// :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'
5642// :145:25: error: use of undefined value here causes illegal behavior5640// :145:25: error: use of undefined value here causes illegal behavior
5643// :145:25: note: when computing vector element at index '1'5641// :145:25: note: when computing vector element at index '1'
5644// :145:25: error: use of undefined value here causes illegal behavior5642// :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'
5646// :145:25: error: use of undefined value here causes illegal behavior5644// :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'
5648// :151:21: error: use of undefined value here causes illegal behavior5648// :151:21: error: use of undefined value here causes illegal behavior
5649// :151:21: error: use of undefined value here causes illegal behavior5649// :151:21: error: use of undefined value here causes illegal behavior
5650// :151:21: error: use of undefined value here causes illegal behavior5650// :151:21: error: use of undefined value here causes illegal behavior
...@@ -5652,21 +5652,13 @@ const std = @import("std");...@@ -5652,21 +5652,13 @@ const std = @import("std");
5652// :151:21: error: use of undefined value here causes illegal behavior5652// :151:21: error: use of undefined value here causes illegal behavior
5653// :151:21: error: use of undefined value here causes illegal behavior5653// :151:21: error: use of undefined value here causes illegal behavior
5654// :151:21: error: use of undefined value here causes illegal behavior5654// :151:21: error: use of undefined value here causes illegal behavior
5655// :151:21: note: when computing vector element at index '1'
5656// :151:21: error: use of undefined value here causes illegal behavior5655// :151:21: error: use of undefined value here causes illegal behavior
5657// :151:21: note: when computing vector element at index '1'
5658// :151:21: error: use of undefined value here causes illegal behavior5656// :151:21: error: use of undefined value here causes illegal behavior
5659// :151:21: note: when computing vector element at index '1'
5660// :151:21: error: use of undefined value here causes illegal behavior5657// :151:21: error: use of undefined value here causes illegal behavior
5661// :151:21: note: when computing vector element at index '1'
5662// :151:21: error: use of undefined value here causes illegal behavior5658// :151:21: error: use of undefined value here causes illegal behavior
5663// :151:21: note: when computing vector element at index '0'
5664// :151:21: error: use of undefined value here causes illegal behavior5659// :151:21: error: use of undefined value here causes illegal behavior
5665// :151:21: note: when computing vector element at index '0'
5666// :151:21: error: use of undefined value here causes illegal behavior5660// :151:21: error: use of undefined value here causes illegal behavior
5667// :151:21: note: when computing vector element at index '0'
5668// :151:21: error: use of undefined value here causes illegal behavior5661// :151:21: error: use of undefined value here causes illegal behavior
5669// :151:21: note: when computing vector element at index '0'
5670// :151:21: error: use of undefined value here causes illegal behavior5662// :151:21: error: use of undefined value here causes illegal behavior
5671// :151:21: error: use of undefined value here causes illegal behavior5663// :151:21: error: use of undefined value here causes illegal behavior
5672// :151:21: error: use of undefined value here causes illegal behavior5664// :151:21: error: use of undefined value here causes illegal behavior
...@@ -5674,21 +5666,13 @@ const std = @import("std");...@@ -5674,21 +5666,13 @@ const std = @import("std");
5674// :151:21: error: use of undefined value here causes illegal behavior5666// :151:21: error: use of undefined value here causes illegal behavior
5675// :151:21: error: use of undefined value here causes illegal behavior5667// :151:21: error: use of undefined value here causes illegal behavior
5676// :151:21: error: use of undefined value here causes illegal behavior5668// :151:21: error: use of undefined value here causes illegal behavior
5677// :151:21: note: when computing vector element at index '1'
5678// :151:21: error: use of undefined value here causes illegal behavior5669// :151:21: error: use of undefined value here causes illegal behavior
5679// :151:21: note: when computing vector element at index '1'
5680// :151:21: error: use of undefined value here causes illegal behavior5670// :151:21: error: use of undefined value here causes illegal behavior
5681// :151:21: note: when computing vector element at index '1'
5682// :151:21: error: use of undefined value here causes illegal behavior5671// :151:21: error: use of undefined value here causes illegal behavior
5683// :151:21: note: when computing vector element at index '1'
5684// :151:21: error: use of undefined value here causes illegal behavior5672// :151:21: error: use of undefined value here causes illegal behavior
5685// :151:21: note: when computing vector element at index '0'
5686// :151:21: error: use of undefined value here causes illegal behavior5673// :151:21: error: use of undefined value here causes illegal behavior
5687// :151:21: note: when computing vector element at index '0'
5688// :151:21: error: use of undefined value here causes illegal behavior5674// :151:21: error: use of undefined value here causes illegal behavior
5689// :151:21: note: when computing vector element at index '0'
5690// :151:21: error: use of undefined value here causes illegal behavior5675// :151:21: error: use of undefined value here causes illegal behavior
5691// :151:21: note: when computing vector element at index '0'
5692// :151:21: error: use of undefined value here causes illegal behavior5676// :151:21: error: use of undefined value here causes illegal behavior
5693// :151:21: error: use of undefined value here causes illegal behavior5677// :151:21: error: use of undefined value here causes illegal behavior
5694// :151:21: error: use of undefined value here causes illegal behavior5678// :151:21: error: use of undefined value here causes illegal behavior
...@@ -5696,21 +5680,13 @@ const std = @import("std");...@@ -5696,21 +5680,13 @@ const std = @import("std");
5696// :151:21: error: use of undefined value here causes illegal behavior5680// :151:21: error: use of undefined value here causes illegal behavior
5697// :151:21: error: use of undefined value here causes illegal behavior5681// :151:21: error: use of undefined value here causes illegal behavior
5698// :151:21: error: use of undefined value here causes illegal behavior5682// :151:21: error: use of undefined value here causes illegal behavior
5699// :151:21: note: when computing vector element at index '1'
5700// :151:21: error: use of undefined value here causes illegal behavior5683// :151:21: error: use of undefined value here causes illegal behavior
5701// :151:21: note: when computing vector element at index '1'
5702// :151:21: error: use of undefined value here causes illegal behavior5684// :151:21: error: use of undefined value here causes illegal behavior
5703// :151:21: note: when computing vector element at index '1'
5704// :151:21: error: use of undefined value here causes illegal behavior5685// :151:21: error: use of undefined value here causes illegal behavior
5705// :151:21: note: when computing vector element at index '1'
5706// :151:21: error: use of undefined value here causes illegal behavior5686// :151:21: error: use of undefined value here causes illegal behavior
5707// :151:21: note: when computing vector element at index '0'
5708// :151:21: error: use of undefined value here causes illegal behavior5687// :151:21: error: use of undefined value here causes illegal behavior
5709// :151:21: note: when computing vector element at index '0'
5710// :151:21: error: use of undefined value here causes illegal behavior5688// :151:21: error: use of undefined value here causes illegal behavior
5711// :151:21: note: when computing vector element at index '0'
5712// :151:21: error: use of undefined value here causes illegal behavior5689// :151:21: error: use of undefined value here causes illegal behavior
5713// :151:21: note: when computing vector element at index '0'
5714// :151:21: error: use of undefined value here causes illegal behavior5690// :151:21: error: use of undefined value here causes illegal behavior
5715// :151:21: error: use of undefined value here causes illegal behavior5691// :151:21: error: use of undefined value here causes illegal behavior
5716// :151:21: error: use of undefined value here causes illegal behavior5692// :151:21: error: use of undefined value here causes illegal behavior
...@@ -5718,21 +5694,13 @@ const std = @import("std");...@@ -5718,21 +5694,13 @@ const std = @import("std");
5718// :151:21: error: use of undefined value here causes illegal behavior5694// :151:21: error: use of undefined value here causes illegal behavior
5719// :151:21: error: use of undefined value here causes illegal behavior5695// :151:21: error: use of undefined value here causes illegal behavior
5720// :151:21: error: use of undefined value here causes illegal behavior5696// :151:21: error: use of undefined value here causes illegal behavior
5721// :151:21: note: when computing vector element at index '1'
5722// :151:21: error: use of undefined value here causes illegal behavior5697// :151:21: error: use of undefined value here causes illegal behavior
5723// :151:21: note: when computing vector element at index '1'
5724// :151:21: error: use of undefined value here causes illegal behavior5698// :151:21: error: use of undefined value here causes illegal behavior
5725// :151:21: note: when computing vector element at index '1'
5726// :151:21: error: use of undefined value here causes illegal behavior5699// :151:21: error: use of undefined value here causes illegal behavior
5727// :151:21: note: when computing vector element at index '1'
5728// :151:21: error: use of undefined value here causes illegal behavior5700// :151:21: error: use of undefined value here causes illegal behavior
5729// :151:21: note: when computing vector element at index '0'
5730// :151:21: error: use of undefined value here causes illegal behavior5701// :151:21: error: use of undefined value here causes illegal behavior
5731// :151:21: note: when computing vector element at index '0'
5732// :151:21: error: use of undefined value here causes illegal behavior5702// :151:21: error: use of undefined value here causes illegal behavior
5733// :151:21: note: when computing vector element at index '0'
5734// :151:21: error: use of undefined value here causes illegal behavior5703// :151:21: error: use of undefined value here causes illegal behavior
5735// :151:21: note: when computing vector element at index '0'
5736// :151:21: error: use of undefined value here causes illegal behavior5704// :151:21: error: use of undefined value here causes illegal behavior
5737// :151:21: error: use of undefined value here causes illegal behavior5705// :151:21: error: use of undefined value here causes illegal behavior
5738// :151:21: error: use of undefined value here causes illegal behavior5706// :151:21: error: use of undefined value here causes illegal behavior
...@@ -5740,13 +5708,9 @@ const std = @import("std");...@@ -5740,13 +5708,9 @@ const std = @import("std");
5740// :151:21: error: use of undefined value here causes illegal behavior5708// :151:21: error: use of undefined value here causes illegal behavior
5741// :151:21: error: use of undefined value here causes illegal behavior5709// :151:21: error: use of undefined value here causes illegal behavior
5742// :151:21: error: use of undefined value here causes illegal behavior5710// :151:21: error: use of undefined value here causes illegal behavior
5743// :151:21: note: when computing vector element at index '1'
5744// :151:21: error: use of undefined value here causes illegal behavior5711// :151:21: error: use of undefined value here causes illegal behavior
5745// :151:21: note: when computing vector element at index '1'
5746// :151:21: error: use of undefined value here causes illegal behavior5712// :151:21: error: use of undefined value here causes illegal behavior
5747// :151:21: note: when computing vector element at index '1'
5748// :151:21: error: use of undefined value here causes illegal behavior5713// :151:21: error: use of undefined value here causes illegal behavior
5749// :151:21: note: when computing vector element at index '1'
5750// :151:21: error: use of undefined value here causes illegal behavior5714// :151:21: error: use of undefined value here causes illegal behavior
5751// :151:21: note: when computing vector element at index '0'5715// :151:21: note: when computing vector element at index '0'
5752// :151:21: error: use of undefined value here causes illegal behavior5716// :151:21: error: use of undefined value here causes illegal behavior
...@@ -5756,19 +5720,21 @@ const std = @import("std");...@@ -5756,19 +5720,21 @@ const std = @import("std");
5756// :151:21: error: use of undefined value here causes illegal behavior5720// :151:21: error: use of undefined value here causes illegal behavior
5757// :151:21: note: when computing vector element at index '0'5721// :151:21: note: when computing vector element at index '0'
5758// :151:21: error: use of undefined value here causes illegal behavior5722// :151:21: error: use of undefined value here causes illegal behavior
5723// :151:21: note: when computing vector element at index '0'
5759// :151:21: error: use of undefined value here causes illegal behavior5724// :151:21: error: use of undefined value here causes illegal behavior
5725// :151:21: note: when computing vector element at index '0'
5760// :151:21: error: use of undefined value here causes illegal behavior5726// :151:21: error: use of undefined value here causes illegal behavior
5727// :151:21: note: when computing vector element at index '0'
5761// :151:21: error: use of undefined value here causes illegal behavior5728// :151:21: error: use of undefined value here causes illegal behavior
5729// :151:21: note: when computing vector element at index '0'
5762// :151:21: error: use of undefined value here causes illegal behavior5730// :151:21: error: use of undefined value here causes illegal behavior
5731// :151:21: note: when computing vector element at index '0'
5763// :151:21: error: use of undefined value here causes illegal behavior5732// :151:21: error: use of undefined value here causes illegal behavior
5733// :151:21: note: when computing vector element at index '0'
5764// :151:21: error: use of undefined value here causes illegal behavior5734// :151:21: error: use of undefined value here causes illegal behavior
5765// :151:21: note: when computing vector element at index '1'5735// :151:21: note: when computing vector element at index '0'
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'
5770// :151:21: error: use of undefined value here causes illegal behavior5736// :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'
5772// :151:21: error: use of undefined value here causes illegal behavior5738// :151:21: error: use of undefined value here causes illegal behavior
5773// :151:21: note: when computing vector element at index '0'5739// :151:21: note: when computing vector element at index '0'
5774// :151:21: error: use of undefined value here causes illegal behavior5740// :151:21: error: use of undefined value here causes illegal behavior
...@@ -5778,19 +5744,25 @@ const std = @import("std");...@@ -5778,19 +5744,25 @@ const std = @import("std");
5778// :151:21: error: use of undefined value here causes illegal behavior5744// :151:21: error: use of undefined value here causes illegal behavior
5779// :151:21: note: when computing vector element at index '0'5745// :151:21: note: when computing vector element at index '0'
5780// :151:21: error: use of undefined value here causes illegal behavior5746// :151:21: error: use of undefined value here causes illegal behavior
5747// :151:21: note: when computing vector element at index '0'
5781// :151:21: error: use of undefined value here causes illegal behavior5748// :151:21: error: use of undefined value here causes illegal behavior
5749// :151:21: note: when computing vector element at index '0'
5782// :151:21: error: use of undefined value here causes illegal behavior5750// :151:21: error: use of undefined value here causes illegal behavior
5751// :151:21: note: when computing vector element at index '0'
5783// :151:21: error: use of undefined value here causes illegal behavior5752// :151:21: error: use of undefined value here causes illegal behavior
5753// :151:21: note: when computing vector element at index '0'
5784// :151:21: error: use of undefined value here causes illegal behavior5754// :151:21: error: use of undefined value here causes illegal behavior
5755// :151:21: note: when computing vector element at index '0'
5785// :151:21: error: use of undefined value here causes illegal behavior5756// :151:21: error: use of undefined value here causes illegal behavior
5757// :151:21: note: when computing vector element at index '0'
5786// :151:21: error: use of undefined value here causes illegal behavior5758// :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'
5788// :151:21: error: use of undefined value here causes illegal behavior5760// :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'
5790// :151:21: error: use of undefined value here causes illegal behavior5762// :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'
5792// :151:21: error: use of undefined value here causes illegal behavior5764// :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'
5794// :151:21: error: use of undefined value here causes illegal behavior5766// :151:21: error: use of undefined value here causes illegal behavior
5795// :151:21: note: when computing vector element at index '0'5767// :151:21: note: when computing vector element at index '0'
5796// :151:21: error: use of undefined value here causes illegal behavior5768// :151:21: error: use of undefined value here causes illegal behavior
...@@ -5800,19 +5772,25 @@ const std = @import("std");...@@ -5800,19 +5772,25 @@ const std = @import("std");
5800// :151:21: error: use of undefined value here causes illegal behavior5772// :151:21: error: use of undefined value here causes illegal behavior
5801// :151:21: note: when computing vector element at index '0'5773// :151:21: note: when computing vector element at index '0'
5802// :151:21: error: use of undefined value here causes illegal behavior5774// :151:21: error: use of undefined value here causes illegal behavior
5775// :151:21: note: when computing vector element at index '0'
5803// :151:21: error: use of undefined value here causes illegal behavior5776// :151:21: error: use of undefined value here causes illegal behavior
5777// :151:21: note: when computing vector element at index '0'
5804// :151:21: error: use of undefined value here causes illegal behavior5778// :151:21: error: use of undefined value here causes illegal behavior
5779// :151:21: note: when computing vector element at index '0'
5805// :151:21: error: use of undefined value here causes illegal behavior5780// :151:21: error: use of undefined value here causes illegal behavior
5781// :151:21: note: when computing vector element at index '0'
5806// :151:21: error: use of undefined value here causes illegal behavior5782// :151:21: error: use of undefined value here causes illegal behavior
5783// :151:21: note: when computing vector element at index '0'
5807// :151:21: error: use of undefined value here causes illegal behavior5784// :151:21: error: use of undefined value here causes illegal behavior
5785// :151:21: note: when computing vector element at index '0'
5808// :151:21: error: use of undefined value here causes illegal behavior5786// :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'
5810// :151:21: error: use of undefined value here causes illegal behavior5788// :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'
5812// :151:21: error: use of undefined value here causes illegal behavior5790// :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'
5814// :151:21: error: use of undefined value here causes illegal behavior5792// :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'
5816// :151:21: error: use of undefined value here causes illegal behavior5794// :151:21: error: use of undefined value here causes illegal behavior
5817// :151:21: note: when computing vector element at index '0'5795// :151:21: note: when computing vector element at index '0'
5818// :151:21: error: use of undefined value here causes illegal behavior5796// :151:21: error: use of undefined value here causes illegal behavior
...@@ -5822,11 +5800,17 @@ const std = @import("std");...@@ -5822,11 +5800,17 @@ const std = @import("std");
5822// :151:21: error: use of undefined value here causes illegal behavior5800// :151:21: error: use of undefined value here causes illegal behavior
5823// :151:21: note: when computing vector element at index '0'5801// :151:21: note: when computing vector element at index '0'
5824// :151:21: error: use of undefined value here causes illegal behavior5802// :151:21: error: use of undefined value here causes illegal behavior
5803// :151:21: note: when computing vector element at index '1'
5825// :151:21: error: use of undefined value here causes illegal behavior5804// :151:21: error: use of undefined value here causes illegal behavior
5805// :151:21: note: when computing vector element at index '1'
5826// :151:21: error: use of undefined value here causes illegal behavior5806// :151:21: error: use of undefined value here causes illegal behavior
5807// :151:21: note: when computing vector element at index '1'
5827// :151:21: error: use of undefined value here causes illegal behavior5808// :151:21: error: use of undefined value here causes illegal behavior
5809// :151:21: note: when computing vector element at index '1'
5828// :151:21: error: use of undefined value here causes illegal behavior5810// :151:21: error: use of undefined value here causes illegal behavior
5811// :151:21: note: when computing vector element at index '1'
5829// :151:21: error: use of undefined value here causes illegal behavior5812// :151:21: error: use of undefined value here causes illegal behavior
5813// :151:21: note: when computing vector element at index '1'
5830// :151:21: error: use of undefined value here causes illegal behavior5814// :151:21: error: use of undefined value here causes illegal behavior
5831// :151:21: note: when computing vector element at index '1'5815// :151:21: note: when computing vector element at index '1'
5832// :151:21: error: use of undefined value here causes illegal behavior5816// :151:21: error: use of undefined value here causes illegal behavior
...@@ -5836,19 +5820,25 @@ const std = @import("std");...@@ -5836,19 +5820,25 @@ const std = @import("std");
5836// :151:21: error: use of undefined value here causes illegal behavior5820// :151:21: error: use of undefined value here causes illegal behavior
5837// :151:21: note: when computing vector element at index '1'5821// :151:21: note: when computing vector element at index '1'
5838// :151:21: error: use of undefined value here causes illegal behavior5822// :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'
5840// :151:21: error: use of undefined value here causes illegal behavior5824// :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'
5842// :151:21: error: use of undefined value here causes illegal behavior5826// :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'
5844// :151:21: error: use of undefined value here causes illegal behavior5828// :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'
5846// :151:21: error: use of undefined value here causes illegal behavior5830// :151:21: error: use of undefined value here causes illegal behavior
5831// :151:21: note: when computing vector element at index '1'
5847// :151:21: error: use of undefined value here causes illegal behavior5832// :151:21: error: use of undefined value here causes illegal behavior
5833// :151:21: note: when computing vector element at index '1'
5848// :151:21: error: use of undefined value here causes illegal behavior5834// :151:21: error: use of undefined value here causes illegal behavior
5835// :151:21: note: when computing vector element at index '1'
5849// :151:21: error: use of undefined value here causes illegal behavior5836// :151:21: error: use of undefined value here causes illegal behavior
5837// :151:21: note: when computing vector element at index '1'
5850// :151:21: error: use of undefined value here causes illegal behavior5838// :151:21: error: use of undefined value here causes illegal behavior
5839// :151:21: note: when computing vector element at index '1'
5851// :151:21: error: use of undefined value here causes illegal behavior5840// :151:21: error: use of undefined value here causes illegal behavior
5841// :151:21: note: when computing vector element at index '1'
5852// :151:21: error: use of undefined value here causes illegal behavior5842// :151:21: error: use of undefined value here causes illegal behavior
5853// :151:21: note: when computing vector element at index '1'5843// :151:21: note: when computing vector element at index '1'
5854// :151:21: error: use of undefined value here causes illegal behavior5844// :151:21: error: use of undefined value here causes illegal behavior
...@@ -5858,19 +5848,25 @@ const std = @import("std");...@@ -5858,19 +5848,25 @@ const std = @import("std");
5858// :151:21: error: use of undefined value here causes illegal behavior5848// :151:21: error: use of undefined value here causes illegal behavior
5859// :151:21: note: when computing vector element at index '1'5849// :151:21: note: when computing vector element at index '1'
5860// :151:21: error: use of undefined value here causes illegal behavior5850// :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'
5862// :151:21: error: use of undefined value here causes illegal behavior5852// :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'
5864// :151:21: error: use of undefined value here causes illegal behavior5854// :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'
5866// :151:21: error: use of undefined value here causes illegal behavior5856// :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'
5868// :151:21: error: use of undefined value here causes illegal behavior5858// :151:21: error: use of undefined value here causes illegal behavior
5859// :151:21: note: when computing vector element at index '1'
5869// :151:21: error: use of undefined value here causes illegal behavior5860// :151:21: error: use of undefined value here causes illegal behavior
5861// :151:21: note: when computing vector element at index '1'
5870// :151:21: error: use of undefined value here causes illegal behavior5862// :151:21: error: use of undefined value here causes illegal behavior
5863// :151:21: note: when computing vector element at index '1'
5871// :151:21: error: use of undefined value here causes illegal behavior5864// :151:21: error: use of undefined value here causes illegal behavior
5865// :151:21: note: when computing vector element at index '1'
5872// :151:21: error: use of undefined value here causes illegal behavior5866// :151:21: error: use of undefined value here causes illegal behavior
5867// :151:21: note: when computing vector element at index '1'
5873// :151:21: error: use of undefined value here causes illegal behavior5868// :151:21: error: use of undefined value here causes illegal behavior
5869// :151:21: note: when computing vector element at index '1'
5874// :151:21: error: use of undefined value here causes illegal behavior5870// :151:21: error: use of undefined value here causes illegal behavior
5875// :151:21: note: when computing vector element at index '1'5871// :151:21: note: when computing vector element at index '1'
5876// :151:21: error: use of undefined value here causes illegal behavior5872// :151:21: error: use of undefined value here causes illegal behavior
...@@ -5880,13 +5876,17 @@ const std = @import("std");...@@ -5880,13 +5876,17 @@ const std = @import("std");
5880// :151:21: error: use of undefined value here causes illegal behavior5876// :151:21: error: use of undefined value here causes illegal behavior
5881// :151:21: note: when computing vector element at index '1'5877// :151:21: note: when computing vector element at index '1'
5882// :151:21: error: use of undefined value here causes illegal behavior5878// :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'
5884// :151:21: error: use of undefined value here causes illegal behavior5880// :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'
5886// :151:21: error: use of undefined value here causes illegal behavior5882// :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'
5888// :151:21: error: use of undefined value here causes illegal behavior5884// :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'
5890// :155:30: error: use of undefined value here causes illegal behavior5890// :155:30: error: use of undefined value here causes illegal behavior
5891// :155:30: error: use of undefined value here causes illegal behavior5891// :155:30: error: use of undefined value here causes illegal behavior
5892// :155:30: error: use of undefined value here causes illegal behavior5892// :155:30: error: use of undefined value here causes illegal behavior
...@@ -5894,21 +5894,13 @@ const std = @import("std");...@@ -5894,21 +5894,13 @@ const std = @import("std");
5894// :155:30: error: use of undefined value here causes illegal behavior5894// :155:30: error: use of undefined value here causes illegal behavior
5895// :155:30: error: use of undefined value here causes illegal behavior5895// :155:30: error: use of undefined value here causes illegal behavior
5896// :155:30: error: use of undefined value here causes illegal behavior5896// :155:30: error: use of undefined value here causes illegal behavior
5897// :155:30: note: when computing vector element at index '1'
5898// :155:30: error: use of undefined value here causes illegal behavior5897// :155:30: error: use of undefined value here causes illegal behavior
5899// :155:30: note: when computing vector element at index '1'
5900// :155:30: error: use of undefined value here causes illegal behavior5898// :155:30: error: use of undefined value here causes illegal behavior
5901// :155:30: note: when computing vector element at index '1'
5902// :155:30: error: use of undefined value here causes illegal behavior5899// :155:30: error: use of undefined value here causes illegal behavior
5903// :155:30: note: when computing vector element at index '1'
5904// :155:30: error: use of undefined value here causes illegal behavior5900// :155:30: error: use of undefined value here causes illegal behavior
5905// :155:30: note: when computing vector element at index '0'
5906// :155:30: error: use of undefined value here causes illegal behavior5901// :155:30: error: use of undefined value here causes illegal behavior
5907// :155:30: note: when computing vector element at index '0'
5908// :155:30: error: use of undefined value here causes illegal behavior5902// :155:30: error: use of undefined value here causes illegal behavior
5909// :155:30: note: when computing vector element at index '0'
5910// :155:30: error: use of undefined value here causes illegal behavior5903// :155:30: error: use of undefined value here causes illegal behavior
5911// :155:30: note: when computing vector element at index '0'
5912// :155:30: error: use of undefined value here causes illegal behavior5904// :155:30: error: use of undefined value here causes illegal behavior
5913// :155:30: error: use of undefined value here causes illegal behavior5905// :155:30: error: use of undefined value here causes illegal behavior
5914// :155:30: error: use of undefined value here causes illegal behavior5906// :155:30: error: use of undefined value here causes illegal behavior
...@@ -5916,21 +5908,13 @@ const std = @import("std");...@@ -5916,21 +5908,13 @@ const std = @import("std");
5916// :155:30: error: use of undefined value here causes illegal behavior5908// :155:30: error: use of undefined value here causes illegal behavior
5917// :155:30: error: use of undefined value here causes illegal behavior5909// :155:30: error: use of undefined value here causes illegal behavior
5918// :155:30: error: use of undefined value here causes illegal behavior5910// :155:30: error: use of undefined value here causes illegal behavior
5919// :155:30: note: when computing vector element at index '1'
5920// :155:30: error: use of undefined value here causes illegal behavior5911// :155:30: error: use of undefined value here causes illegal behavior
5921// :155:30: note: when computing vector element at index '1'
5922// :155:30: error: use of undefined value here causes illegal behavior5912// :155:30: error: use of undefined value here causes illegal behavior
5923// :155:30: note: when computing vector element at index '1'
5924// :155:30: error: use of undefined value here causes illegal behavior5913// :155:30: error: use of undefined value here causes illegal behavior
5925// :155:30: note: when computing vector element at index '1'
5926// :155:30: error: use of undefined value here causes illegal behavior5914// :155:30: error: use of undefined value here causes illegal behavior
5927// :155:30: note: when computing vector element at index '0'
5928// :155:30: error: use of undefined value here causes illegal behavior5915// :155:30: error: use of undefined value here causes illegal behavior
5929// :155:30: note: when computing vector element at index '0'
5930// :155:30: error: use of undefined value here causes illegal behavior5916// :155:30: error: use of undefined value here causes illegal behavior
5931// :155:30: note: when computing vector element at index '0'
5932// :155:30: error: use of undefined value here causes illegal behavior5917// :155:30: error: use of undefined value here causes illegal behavior
5933// :155:30: note: when computing vector element at index '0'
5934// :155:30: error: use of undefined value here causes illegal behavior5918// :155:30: error: use of undefined value here causes illegal behavior
5935// :155:30: error: use of undefined value here causes illegal behavior5919// :155:30: error: use of undefined value here causes illegal behavior
5936// :155:30: error: use of undefined value here causes illegal behavior5920// :155:30: error: use of undefined value here causes illegal behavior
...@@ -5938,21 +5922,13 @@ const std = @import("std");...@@ -5938,21 +5922,13 @@ const std = @import("std");
5938// :155:30: error: use of undefined value here causes illegal behavior5922// :155:30: error: use of undefined value here causes illegal behavior
5939// :155:30: error: use of undefined value here causes illegal behavior5923// :155:30: error: use of undefined value here causes illegal behavior
5940// :155:30: error: use of undefined value here causes illegal behavior5924// :155:30: error: use of undefined value here causes illegal behavior
5941// :155:30: note: when computing vector element at index '1'
5942// :155:30: error: use of undefined value here causes illegal behavior5925// :155:30: error: use of undefined value here causes illegal behavior
5943// :155:30: note: when computing vector element at index '1'
5944// :155:30: error: use of undefined value here causes illegal behavior5926// :155:30: error: use of undefined value here causes illegal behavior
5945// :155:30: note: when computing vector element at index '1'
5946// :155:30: error: use of undefined value here causes illegal behavior5927// :155:30: error: use of undefined value here causes illegal behavior
5947// :155:30: note: when computing vector element at index '1'
5948// :155:30: error: use of undefined value here causes illegal behavior5928// :155:30: error: use of undefined value here causes illegal behavior
5949// :155:30: note: when computing vector element at index '0'
5950// :155:30: error: use of undefined value here causes illegal behavior5929// :155:30: error: use of undefined value here causes illegal behavior
5951// :155:30: note: when computing vector element at index '0'
5952// :155:30: error: use of undefined value here causes illegal behavior5930// :155:30: error: use of undefined value here causes illegal behavior
5953// :155:30: note: when computing vector element at index '0'
5954// :155:30: error: use of undefined value here causes illegal behavior5931// :155:30: error: use of undefined value here causes illegal behavior
5955// :155:30: note: when computing vector element at index '0'
5956// :155:30: error: use of undefined value here causes illegal behavior5932// :155:30: error: use of undefined value here causes illegal behavior
5957// :155:30: error: use of undefined value here causes illegal behavior5933// :155:30: error: use of undefined value here causes illegal behavior
5958// :155:30: error: use of undefined value here causes illegal behavior5934// :155:30: error: use of undefined value here causes illegal behavior
...@@ -5960,21 +5936,13 @@ const std = @import("std");...@@ -5960,21 +5936,13 @@ const std = @import("std");
5960// :155:30: error: use of undefined value here causes illegal behavior5936// :155:30: error: use of undefined value here causes illegal behavior
5961// :155:30: error: use of undefined value here causes illegal behavior5937// :155:30: error: use of undefined value here causes illegal behavior
5962// :155:30: error: use of undefined value here causes illegal behavior5938// :155:30: error: use of undefined value here causes illegal behavior
5963// :155:30: note: when computing vector element at index '1'
5964// :155:30: error: use of undefined value here causes illegal behavior5939// :155:30: error: use of undefined value here causes illegal behavior
5965// :155:30: note: when computing vector element at index '1'
5966// :155:30: error: use of undefined value here causes illegal behavior5940// :155:30: error: use of undefined value here causes illegal behavior
5967// :155:30: note: when computing vector element at index '1'
5968// :155:30: error: use of undefined value here causes illegal behavior5941// :155:30: error: use of undefined value here causes illegal behavior
5969// :155:30: note: when computing vector element at index '1'
5970// :155:30: error: use of undefined value here causes illegal behavior5942// :155:30: error: use of undefined value here causes illegal behavior
5971// :155:30: note: when computing vector element at index '0'
5972// :155:30: error: use of undefined value here causes illegal behavior5943// :155:30: error: use of undefined value here causes illegal behavior
5973// :155:30: note: when computing vector element at index '0'
5974// :155:30: error: use of undefined value here causes illegal behavior5944// :155:30: error: use of undefined value here causes illegal behavior
5975// :155:30: note: when computing vector element at index '0'
5976// :155:30: error: use of undefined value here causes illegal behavior5945// :155:30: error: use of undefined value here causes illegal behavior
5977// :155:30: note: when computing vector element at index '0'
5978// :155:30: error: use of undefined value here causes illegal behavior5946// :155:30: error: use of undefined value here causes illegal behavior
5979// :155:30: error: use of undefined value here causes illegal behavior5947// :155:30: error: use of undefined value here causes illegal behavior
5980// :155:30: error: use of undefined value here causes illegal behavior5948// :155:30: error: use of undefined value here causes illegal behavior
...@@ -5982,13 +5950,9 @@ const std = @import("std");...@@ -5982,13 +5950,9 @@ const std = @import("std");
5982// :155:30: error: use of undefined value here causes illegal behavior5950// :155:30: error: use of undefined value here causes illegal behavior
5983// :155:30: error: use of undefined value here causes illegal behavior5951// :155:30: error: use of undefined value here causes illegal behavior
5984// :155:30: error: use of undefined value here causes illegal behavior5952// :155:30: error: use of undefined value here causes illegal behavior
5985// :155:30: note: when computing vector element at index '1'
5986// :155:30: error: use of undefined value here causes illegal behavior5953// :155:30: error: use of undefined value here causes illegal behavior
5987// :155:30: note: when computing vector element at index '1'
5988// :155:30: error: use of undefined value here causes illegal behavior5954// :155:30: error: use of undefined value here causes illegal behavior
5989// :155:30: note: when computing vector element at index '1'
5990// :155:30: error: use of undefined value here causes illegal behavior5955// :155:30: error: use of undefined value here causes illegal behavior
5991// :155:30: note: when computing vector element at index '1'
5992// :155:30: error: use of undefined value here causes illegal behavior5956// :155:30: error: use of undefined value here causes illegal behavior
5993// :155:30: note: when computing vector element at index '0'5957// :155:30: note: when computing vector element at index '0'
5994// :155:30: error: use of undefined value here causes illegal behavior5958// :155:30: error: use of undefined value here causes illegal behavior
...@@ -5998,19 +5962,21 @@ const std = @import("std");...@@ -5998,19 +5962,21 @@ const std = @import("std");
5998// :155:30: error: use of undefined value here causes illegal behavior5962// :155:30: error: use of undefined value here causes illegal behavior
5999// :155:30: note: when computing vector element at index '0'5963// :155:30: note: when computing vector element at index '0'
6000// :155:30: error: use of undefined value here causes illegal behavior5964// :155:30: error: use of undefined value here causes illegal behavior
5965// :155:30: note: when computing vector element at index '0'
6001// :155:30: error: use of undefined value here causes illegal behavior5966// :155:30: error: use of undefined value here causes illegal behavior
5967// :155:30: note: when computing vector element at index '0'
6002// :155:30: error: use of undefined value here causes illegal behavior5968// :155:30: error: use of undefined value here causes illegal behavior
5969// :155:30: note: when computing vector element at index '0'
6003// :155:30: error: use of undefined value here causes illegal behavior5970// :155:30: error: use of undefined value here causes illegal behavior
5971// :155:30: note: when computing vector element at index '0'
6004// :155:30: error: use of undefined value here causes illegal behavior5972// :155:30: error: use of undefined value here causes illegal behavior
5973// :155:30: note: when computing vector element at index '0'
6005// :155:30: error: use of undefined value here causes illegal behavior5974// :155:30: error: use of undefined value here causes illegal behavior
5975// :155:30: note: when computing vector element at index '0'
6006// :155:30: error: use of undefined value here causes illegal behavior5976// :155:30: error: use of undefined value here causes illegal behavior
6007// :155:30: note: when computing vector element at index '1'5977// :155:30: note: when computing vector element at index '0'
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'
6012// :155:30: error: use of undefined value here causes illegal behavior5978// :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'
6014// :155:30: error: use of undefined value here causes illegal behavior5980// :155:30: error: use of undefined value here causes illegal behavior
6015// :155:30: note: when computing vector element at index '0'5981// :155:30: note: when computing vector element at index '0'
6016// :155:30: error: use of undefined value here causes illegal behavior5982// :155:30: error: use of undefined value here causes illegal behavior
...@@ -6020,19 +5986,25 @@ const std = @import("std");...@@ -6020,19 +5986,25 @@ const std = @import("std");
6020// :155:30: error: use of undefined value here causes illegal behavior5986// :155:30: error: use of undefined value here causes illegal behavior
6021// :155:30: note: when computing vector element at index '0'5987// :155:30: note: when computing vector element at index '0'
6022// :155:30: error: use of undefined value here causes illegal behavior5988// :155:30: error: use of undefined value here causes illegal behavior
5989// :155:30: note: when computing vector element at index '0'
6023// :155:30: error: use of undefined value here causes illegal behavior5990// :155:30: error: use of undefined value here causes illegal behavior
5991// :155:30: note: when computing vector element at index '0'
6024// :155:30: error: use of undefined value here causes illegal behavior5992// :155:30: error: use of undefined value here causes illegal behavior
5993// :155:30: note: when computing vector element at index '0'
6025// :155:30: error: use of undefined value here causes illegal behavior5994// :155:30: error: use of undefined value here causes illegal behavior
5995// :155:30: note: when computing vector element at index '0'
6026// :155:30: error: use of undefined value here causes illegal behavior5996// :155:30: error: use of undefined value here causes illegal behavior
5997// :155:30: note: when computing vector element at index '0'
6027// :155:30: error: use of undefined value here causes illegal behavior5998// :155:30: error: use of undefined value here causes illegal behavior
5999// :155:30: note: when computing vector element at index '0'
6028// :155:30: error: use of undefined value here causes illegal behavior6000// :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'
6030// :155:30: error: use of undefined value here causes illegal behavior6002// :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'
6032// :155:30: error: use of undefined value here causes illegal behavior6004// :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'
6034// :155:30: error: use of undefined value here causes illegal behavior6006// :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'
6036// :155:30: error: use of undefined value here causes illegal behavior6008// :155:30: error: use of undefined value here causes illegal behavior
6037// :155:30: note: when computing vector element at index '0'6009// :155:30: note: when computing vector element at index '0'
6038// :155:30: error: use of undefined value here causes illegal behavior6010// :155:30: error: use of undefined value here causes illegal behavior
...@@ -6042,19 +6014,25 @@ const std = @import("std");...@@ -6042,19 +6014,25 @@ const std = @import("std");
6042// :155:30: error: use of undefined value here causes illegal behavior6014// :155:30: error: use of undefined value here causes illegal behavior
6043// :155:30: note: when computing vector element at index '0'6015// :155:30: note: when computing vector element at index '0'
6044// :155:30: error: use of undefined value here causes illegal behavior6016// :155:30: error: use of undefined value here causes illegal behavior
6017// :155:30: note: when computing vector element at index '0'
6045// :155:30: error: use of undefined value here causes illegal behavior6018// :155:30: error: use of undefined value here causes illegal behavior
6019// :155:30: note: when computing vector element at index '0'
6046// :155:30: error: use of undefined value here causes illegal behavior6020// :155:30: error: use of undefined value here causes illegal behavior
6021// :155:30: note: when computing vector element at index '0'
6047// :155:30: error: use of undefined value here causes illegal behavior6022// :155:30: error: use of undefined value here causes illegal behavior
6023// :155:30: note: when computing vector element at index '0'
6048// :155:30: error: use of undefined value here causes illegal behavior6024// :155:30: error: use of undefined value here causes illegal behavior
6025// :155:30: note: when computing vector element at index '0'
6049// :155:30: error: use of undefined value here causes illegal behavior6026// :155:30: error: use of undefined value here causes illegal behavior
6027// :155:30: note: when computing vector element at index '0'
6050// :155:30: error: use of undefined value here causes illegal behavior6028// :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'
6052// :155:30: error: use of undefined value here causes illegal behavior6030// :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'
6054// :155:30: error: use of undefined value here causes illegal behavior6032// :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'
6056// :155:30: error: use of undefined value here causes illegal behavior6034// :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'
6058// :155:30: error: use of undefined value here causes illegal behavior6036// :155:30: error: use of undefined value here causes illegal behavior
6059// :155:30: note: when computing vector element at index '0'6037// :155:30: note: when computing vector element at index '0'
6060// :155:30: error: use of undefined value here causes illegal behavior6038// :155:30: error: use of undefined value here causes illegal behavior
...@@ -6064,11 +6042,17 @@ const std = @import("std");...@@ -6064,11 +6042,17 @@ const std = @import("std");
6064// :155:30: error: use of undefined value here causes illegal behavior6042// :155:30: error: use of undefined value here causes illegal behavior
6065// :155:30: note: when computing vector element at index '0'6043// :155:30: note: when computing vector element at index '0'
6066// :155:30: error: use of undefined value here causes illegal behavior6044// :155:30: error: use of undefined value here causes illegal behavior
6045// :155:30: note: when computing vector element at index '1'
6067// :155:30: error: use of undefined value here causes illegal behavior6046// :155:30: error: use of undefined value here causes illegal behavior
6047// :155:30: note: when computing vector element at index '1'
6068// :155:30: error: use of undefined value here causes illegal behavior6048// :155:30: error: use of undefined value here causes illegal behavior
6049// :155:30: note: when computing vector element at index '1'
6069// :155:30: error: use of undefined value here causes illegal behavior6050// :155:30: error: use of undefined value here causes illegal behavior
6051// :155:30: note: when computing vector element at index '1'
6070// :155:30: error: use of undefined value here causes illegal behavior6052// :155:30: error: use of undefined value here causes illegal behavior
6053// :155:30: note: when computing vector element at index '1'
6071// :155:30: error: use of undefined value here causes illegal behavior6054// :155:30: error: use of undefined value here causes illegal behavior
6055// :155:30: note: when computing vector element at index '1'
6072// :155:30: error: use of undefined value here causes illegal behavior6056// :155:30: error: use of undefined value here causes illegal behavior
6073// :155:30: note: when computing vector element at index '1'6057// :155:30: note: when computing vector element at index '1'
6074// :155:30: error: use of undefined value here causes illegal behavior6058// :155:30: error: use of undefined value here causes illegal behavior
...@@ -6078,19 +6062,25 @@ const std = @import("std");...@@ -6078,19 +6062,25 @@ const std = @import("std");
6078// :155:30: error: use of undefined value here causes illegal behavior6062// :155:30: error: use of undefined value here causes illegal behavior
6079// :155:30: note: when computing vector element at index '1'6063// :155:30: note: when computing vector element at index '1'
6080// :155:30: error: use of undefined value here causes illegal behavior6064// :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'
6082// :155:30: error: use of undefined value here causes illegal behavior6066// :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'
6084// :155:30: error: use of undefined value here causes illegal behavior6068// :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'
6086// :155:30: error: use of undefined value here causes illegal behavior6070// :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'
6088// :155:30: error: use of undefined value here causes illegal behavior6072// :155:30: error: use of undefined value here causes illegal behavior
6073// :155:30: note: when computing vector element at index '1'
6089// :155:30: error: use of undefined value here causes illegal behavior6074// :155:30: error: use of undefined value here causes illegal behavior
6075// :155:30: note: when computing vector element at index '1'
6090// :155:30: error: use of undefined value here causes illegal behavior6076// :155:30: error: use of undefined value here causes illegal behavior
6077// :155:30: note: when computing vector element at index '1'
6091// :155:30: error: use of undefined value here causes illegal behavior6078// :155:30: error: use of undefined value here causes illegal behavior
6079// :155:30: note: when computing vector element at index '1'
6092// :155:30: error: use of undefined value here causes illegal behavior6080// :155:30: error: use of undefined value here causes illegal behavior
6081// :155:30: note: when computing vector element at index '1'
6093// :155:30: error: use of undefined value here causes illegal behavior6082// :155:30: error: use of undefined value here causes illegal behavior
6083// :155:30: note: when computing vector element at index '1'
6094// :155:30: error: use of undefined value here causes illegal behavior6084// :155:30: error: use of undefined value here causes illegal behavior
6095// :155:30: note: when computing vector element at index '1'6085// :155:30: note: when computing vector element at index '1'
6096// :155:30: error: use of undefined value here causes illegal behavior6086// :155:30: error: use of undefined value here causes illegal behavior
...@@ -6100,19 +6090,25 @@ const std = @import("std");...@@ -6100,19 +6090,25 @@ const std = @import("std");
6100// :155:30: error: use of undefined value here causes illegal behavior6090// :155:30: error: use of undefined value here causes illegal behavior
6101// :155:30: note: when computing vector element at index '1'6091// :155:30: note: when computing vector element at index '1'
6102// :155:30: error: use of undefined value here causes illegal behavior6092// :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'
6104// :155:30: error: use of undefined value here causes illegal behavior6094// :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'
6106// :155:30: error: use of undefined value here causes illegal behavior6096// :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'
6108// :155:30: error: use of undefined value here causes illegal behavior6098// :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'
6110// :155:30: error: use of undefined value here causes illegal behavior6100// :155:30: error: use of undefined value here causes illegal behavior
6101// :155:30: note: when computing vector element at index '1'
6111// :155:30: error: use of undefined value here causes illegal behavior6102// :155:30: error: use of undefined value here causes illegal behavior
6103// :155:30: note: when computing vector element at index '1'
6112// :155:30: error: use of undefined value here causes illegal behavior6104// :155:30: error: use of undefined value here causes illegal behavior
6105// :155:30: note: when computing vector element at index '1'
6113// :155:30: error: use of undefined value here causes illegal behavior6106// :155:30: error: use of undefined value here causes illegal behavior
6107// :155:30: note: when computing vector element at index '1'
6114// :155:30: error: use of undefined value here causes illegal behavior6108// :155:30: error: use of undefined value here causes illegal behavior
6109// :155:30: note: when computing vector element at index '1'
6115// :155:30: error: use of undefined value here causes illegal behavior6110// :155:30: error: use of undefined value here causes illegal behavior
6111// :155:30: note: when computing vector element at index '1'
6116// :155:30: error: use of undefined value here causes illegal behavior6112// :155:30: error: use of undefined value here causes illegal behavior
6117// :155:30: note: when computing vector element at index '1'6113// :155:30: note: when computing vector element at index '1'
6118// :155:30: error: use of undefined value here causes illegal behavior6114// :155:30: error: use of undefined value here causes illegal behavior
...@@ -6122,13 +6118,17 @@ const std = @import("std");...@@ -6122,13 +6118,17 @@ const std = @import("std");
6122// :155:30: error: use of undefined value here causes illegal behavior6118// :155:30: error: use of undefined value here causes illegal behavior
6123// :155:30: note: when computing vector element at index '1'6119// :155:30: note: when computing vector element at index '1'
6124// :155:30: error: use of undefined value here causes illegal behavior6120// :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'
6126// :155:30: error: use of undefined value here causes illegal behavior6122// :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'
6128// :155:30: error: use of undefined value here causes illegal behavior6124// :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'
6130// :155:30: error: use of undefined value here causes illegal behavior6126// :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'
6132// :159:30: error: use of undefined value here causes illegal behavior6132// :159:30: error: use of undefined value here causes illegal behavior
6133// :159:30: error: use of undefined value here causes illegal behavior6133// :159:30: error: use of undefined value here causes illegal behavior
6134// :159:30: error: use of undefined value here causes illegal behavior6134// :159:30: error: use of undefined value here causes illegal behavior
...@@ -6136,21 +6136,13 @@ const std = @import("std");...@@ -6136,21 +6136,13 @@ const std = @import("std");
6136// :159:30: error: use of undefined value here causes illegal behavior6136// :159:30: error: use of undefined value here causes illegal behavior
6137// :159:30: error: use of undefined value here causes illegal behavior6137// :159:30: error: use of undefined value here causes illegal behavior
6138// :159:30: error: use of undefined value here causes illegal behavior6138// :159:30: error: use of undefined value here causes illegal behavior
6139// :159:30: note: when computing vector element at index '1'
6140// :159:30: error: use of undefined value here causes illegal behavior6139// :159:30: error: use of undefined value here causes illegal behavior
6141// :159:30: note: when computing vector element at index '1'
6142// :159:30: error: use of undefined value here causes illegal behavior6140// :159:30: error: use of undefined value here causes illegal behavior
6143// :159:30: note: when computing vector element at index '1'
6144// :159:30: error: use of undefined value here causes illegal behavior6141// :159:30: error: use of undefined value here causes illegal behavior
6145// :159:30: note: when computing vector element at index '1'
6146// :159:30: error: use of undefined value here causes illegal behavior6142// :159:30: error: use of undefined value here causes illegal behavior
6147// :159:30: note: when computing vector element at index '0'
6148// :159:30: error: use of undefined value here causes illegal behavior6143// :159:30: error: use of undefined value here causes illegal behavior
6149// :159:30: note: when computing vector element at index '0'
6150// :159:30: error: use of undefined value here causes illegal behavior6144// :159:30: error: use of undefined value here causes illegal behavior
6151// :159:30: note: when computing vector element at index '0'
6152// :159:30: error: use of undefined value here causes illegal behavior6145// :159:30: error: use of undefined value here causes illegal behavior
6153// :159:30: note: when computing vector element at index '0'
6154// :159:30: error: use of undefined value here causes illegal behavior6146// :159:30: error: use of undefined value here causes illegal behavior
6155// :159:30: error: use of undefined value here causes illegal behavior6147// :159:30: error: use of undefined value here causes illegal behavior
6156// :159:30: error: use of undefined value here causes illegal behavior6148// :159:30: error: use of undefined value here causes illegal behavior
...@@ -6158,21 +6150,13 @@ const std = @import("std");...@@ -6158,21 +6150,13 @@ const std = @import("std");
6158// :159:30: error: use of undefined value here causes illegal behavior6150// :159:30: error: use of undefined value here causes illegal behavior
6159// :159:30: error: use of undefined value here causes illegal behavior6151// :159:30: error: use of undefined value here causes illegal behavior
6160// :159:30: error: use of undefined value here causes illegal behavior6152// :159:30: error: use of undefined value here causes illegal behavior
6161// :159:30: note: when computing vector element at index '1'
6162// :159:30: error: use of undefined value here causes illegal behavior6153// :159:30: error: use of undefined value here causes illegal behavior
6163// :159:30: note: when computing vector element at index '1'
6164// :159:30: error: use of undefined value here causes illegal behavior6154// :159:30: error: use of undefined value here causes illegal behavior
6165// :159:30: note: when computing vector element at index '1'
6166// :159:30: error: use of undefined value here causes illegal behavior6155// :159:30: error: use of undefined value here causes illegal behavior
6167// :159:30: note: when computing vector element at index '1'
6168// :159:30: error: use of undefined value here causes illegal behavior6156// :159:30: error: use of undefined value here causes illegal behavior
6169// :159:30: note: when computing vector element at index '0'
6170// :159:30: error: use of undefined value here causes illegal behavior6157// :159:30: error: use of undefined value here causes illegal behavior
6171// :159:30: note: when computing vector element at index '0'
6172// :159:30: error: use of undefined value here causes illegal behavior6158// :159:30: error: use of undefined value here causes illegal behavior
6173// :159:30: note: when computing vector element at index '0'
6174// :159:30: error: use of undefined value here causes illegal behavior6159// :159:30: error: use of undefined value here causes illegal behavior
6175// :159:30: note: when computing vector element at index '0'
6176// :159:30: error: use of undefined value here causes illegal behavior6160// :159:30: error: use of undefined value here causes illegal behavior
6177// :159:30: error: use of undefined value here causes illegal behavior6161// :159:30: error: use of undefined value here causes illegal behavior
6178// :159:30: error: use of undefined value here causes illegal behavior6162// :159:30: error: use of undefined value here causes illegal behavior
...@@ -6180,21 +6164,13 @@ const std = @import("std");...@@ -6180,21 +6164,13 @@ const std = @import("std");
6180// :159:30: error: use of undefined value here causes illegal behavior6164// :159:30: error: use of undefined value here causes illegal behavior
6181// :159:30: error: use of undefined value here causes illegal behavior6165// :159:30: error: use of undefined value here causes illegal behavior
6182// :159:30: error: use of undefined value here causes illegal behavior6166// :159:30: error: use of undefined value here causes illegal behavior
6183// :159:30: note: when computing vector element at index '1'
6184// :159:30: error: use of undefined value here causes illegal behavior6167// :159:30: error: use of undefined value here causes illegal behavior
6185// :159:30: note: when computing vector element at index '1'
6186// :159:30: error: use of undefined value here causes illegal behavior6168// :159:30: error: use of undefined value here causes illegal behavior
6187// :159:30: note: when computing vector element at index '1'
6188// :159:30: error: use of undefined value here causes illegal behavior6169// :159:30: error: use of undefined value here causes illegal behavior
6189// :159:30: note: when computing vector element at index '1'
6190// :159:30: error: use of undefined value here causes illegal behavior6170// :159:30: error: use of undefined value here causes illegal behavior
6191// :159:30: note: when computing vector element at index '0'
6192// :159:30: error: use of undefined value here causes illegal behavior6171// :159:30: error: use of undefined value here causes illegal behavior
6193// :159:30: note: when computing vector element at index '0'
6194// :159:30: error: use of undefined value here causes illegal behavior6172// :159:30: error: use of undefined value here causes illegal behavior
6195// :159:30: note: when computing vector element at index '0'
6196// :159:30: error: use of undefined value here causes illegal behavior6173// :159:30: error: use of undefined value here causes illegal behavior
6197// :159:30: note: when computing vector element at index '0'
6198// :159:30: error: use of undefined value here causes illegal behavior6174// :159:30: error: use of undefined value here causes illegal behavior
6199// :159:30: error: use of undefined value here causes illegal behavior6175// :159:30: error: use of undefined value here causes illegal behavior
6200// :159:30: error: use of undefined value here causes illegal behavior6176// :159:30: error: use of undefined value here causes illegal behavior
...@@ -6202,21 +6178,13 @@ const std = @import("std");...@@ -6202,21 +6178,13 @@ const std = @import("std");
6202// :159:30: error: use of undefined value here causes illegal behavior6178// :159:30: error: use of undefined value here causes illegal behavior
6203// :159:30: error: use of undefined value here causes illegal behavior6179// :159:30: error: use of undefined value here causes illegal behavior
6204// :159:30: error: use of undefined value here causes illegal behavior6180// :159:30: error: use of undefined value here causes illegal behavior
6205// :159:30: note: when computing vector element at index '1'
6206// :159:30: error: use of undefined value here causes illegal behavior6181// :159:30: error: use of undefined value here causes illegal behavior
6207// :159:30: note: when computing vector element at index '1'
6208// :159:30: error: use of undefined value here causes illegal behavior6182// :159:30: error: use of undefined value here causes illegal behavior
6209// :159:30: note: when computing vector element at index '1'
6210// :159:30: error: use of undefined value here causes illegal behavior6183// :159:30: error: use of undefined value here causes illegal behavior
6211// :159:30: note: when computing vector element at index '1'
6212// :159:30: error: use of undefined value here causes illegal behavior6184// :159:30: error: use of undefined value here causes illegal behavior
6213// :159:30: note: when computing vector element at index '0'
6214// :159:30: error: use of undefined value here causes illegal behavior6185// :159:30: error: use of undefined value here causes illegal behavior
6215// :159:30: note: when computing vector element at index '0'
6216// :159:30: error: use of undefined value here causes illegal behavior6186// :159:30: error: use of undefined value here causes illegal behavior
6217// :159:30: note: when computing vector element at index '0'
6218// :159:30: error: use of undefined value here causes illegal behavior6187// :159:30: error: use of undefined value here causes illegal behavior
6219// :159:30: note: when computing vector element at index '0'
6220// :159:30: error: use of undefined value here causes illegal behavior6188// :159:30: error: use of undefined value here causes illegal behavior
6221// :159:30: error: use of undefined value here causes illegal behavior6189// :159:30: error: use of undefined value here causes illegal behavior
6222// :159:30: error: use of undefined value here causes illegal behavior6190// :159:30: error: use of undefined value here causes illegal behavior
...@@ -6224,13 +6192,9 @@ const std = @import("std");...@@ -6224,13 +6192,9 @@ const std = @import("std");
6224// :159:30: error: use of undefined value here causes illegal behavior6192// :159:30: error: use of undefined value here causes illegal behavior
6225// :159:30: error: use of undefined value here causes illegal behavior6193// :159:30: error: use of undefined value here causes illegal behavior
6226// :159:30: error: use of undefined value here causes illegal behavior6194// :159:30: error: use of undefined value here causes illegal behavior
6227// :159:30: note: when computing vector element at index '1'
6228// :159:30: error: use of undefined value here causes illegal behavior6195// :159:30: error: use of undefined value here causes illegal behavior
6229// :159:30: note: when computing vector element at index '1'
6230// :159:30: error: use of undefined value here causes illegal behavior6196// :159:30: error: use of undefined value here causes illegal behavior
6231// :159:30: note: when computing vector element at index '1'
6232// :159:30: error: use of undefined value here causes illegal behavior6197// :159:30: error: use of undefined value here causes illegal behavior
6233// :159:30: note: when computing vector element at index '1'
6234// :159:30: error: use of undefined value here causes illegal behavior6198// :159:30: error: use of undefined value here causes illegal behavior
6235// :159:30: note: when computing vector element at index '0'6199// :159:30: note: when computing vector element at index '0'
6236// :159:30: error: use of undefined value here causes illegal behavior6200// :159:30: error: use of undefined value here causes illegal behavior
...@@ -6240,19 +6204,21 @@ const std = @import("std");...@@ -6240,19 +6204,21 @@ const std = @import("std");
6240// :159:30: error: use of undefined value here causes illegal behavior6204// :159:30: error: use of undefined value here causes illegal behavior
6241// :159:30: note: when computing vector element at index '0'6205// :159:30: note: when computing vector element at index '0'
6242// :159:30: error: use of undefined value here causes illegal behavior6206// :159:30: error: use of undefined value here causes illegal behavior
6207// :159:30: note: when computing vector element at index '0'
6243// :159:30: error: use of undefined value here causes illegal behavior6208// :159:30: error: use of undefined value here causes illegal behavior
6209// :159:30: note: when computing vector element at index '0'
6244// :159:30: error: use of undefined value here causes illegal behavior6210// :159:30: error: use of undefined value here causes illegal behavior
6211// :159:30: note: when computing vector element at index '0'
6245// :159:30: error: use of undefined value here causes illegal behavior6212// :159:30: error: use of undefined value here causes illegal behavior
6213// :159:30: note: when computing vector element at index '0'
6246// :159:30: error: use of undefined value here causes illegal behavior6214// :159:30: error: use of undefined value here causes illegal behavior
6215// :159:30: note: when computing vector element at index '0'
6247// :159:30: error: use of undefined value here causes illegal behavior6216// :159:30: error: use of undefined value here causes illegal behavior
6217// :159:30: note: when computing vector element at index '0'
6248// :159:30: error: use of undefined value here causes illegal behavior6218// :159:30: error: use of undefined value here causes illegal behavior
6249// :159:30: note: when computing vector element at index '1'6219// :159:30: note: when computing vector element at index '0'
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'
6254// :159:30: error: use of undefined value here causes illegal behavior6220// :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'
6256// :159:30: error: use of undefined value here causes illegal behavior6222// :159:30: error: use of undefined value here causes illegal behavior
6257// :159:30: note: when computing vector element at index '0'6223// :159:30: note: when computing vector element at index '0'
6258// :159:30: error: use of undefined value here causes illegal behavior6224// :159:30: error: use of undefined value here causes illegal behavior
...@@ -6262,19 +6228,25 @@ const std = @import("std");...@@ -6262,19 +6228,25 @@ const std = @import("std");
6262// :159:30: error: use of undefined value here causes illegal behavior6228// :159:30: error: use of undefined value here causes illegal behavior
6263// :159:30: note: when computing vector element at index '0'6229// :159:30: note: when computing vector element at index '0'
6264// :159:30: error: use of undefined value here causes illegal behavior6230// :159:30: error: use of undefined value here causes illegal behavior
6231// :159:30: note: when computing vector element at index '0'
6265// :159:30: error: use of undefined value here causes illegal behavior6232// :159:30: error: use of undefined value here causes illegal behavior
6233// :159:30: note: when computing vector element at index '0'
6266// :159:30: error: use of undefined value here causes illegal behavior6234// :159:30: error: use of undefined value here causes illegal behavior
6235// :159:30: note: when computing vector element at index '0'
6267// :159:30: error: use of undefined value here causes illegal behavior6236// :159:30: error: use of undefined value here causes illegal behavior
6237// :159:30: note: when computing vector element at index '0'
6268// :159:30: error: use of undefined value here causes illegal behavior6238// :159:30: error: use of undefined value here causes illegal behavior
6239// :159:30: note: when computing vector element at index '0'
6269// :159:30: error: use of undefined value here causes illegal behavior6240// :159:30: error: use of undefined value here causes illegal behavior
6241// :159:30: note: when computing vector element at index '0'
6270// :159:30: error: use of undefined value here causes illegal behavior6242// :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'
6272// :159:30: error: use of undefined value here causes illegal behavior6244// :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'
6274// :159:30: error: use of undefined value here causes illegal behavior6246// :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'
6276// :159:30: error: use of undefined value here causes illegal behavior6248// :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'
6278// :159:30: error: use of undefined value here causes illegal behavior6250// :159:30: error: use of undefined value here causes illegal behavior
6279// :159:30: note: when computing vector element at index '0'6251// :159:30: note: when computing vector element at index '0'
6280// :159:30: error: use of undefined value here causes illegal behavior6252// :159:30: error: use of undefined value here causes illegal behavior
...@@ -6284,19 +6256,25 @@ const std = @import("std");...@@ -6284,19 +6256,25 @@ const std = @import("std");
6284// :159:30: error: use of undefined value here causes illegal behavior6256// :159:30: error: use of undefined value here causes illegal behavior
6285// :159:30: note: when computing vector element at index '0'6257// :159:30: note: when computing vector element at index '0'
6286// :159:30: error: use of undefined value here causes illegal behavior6258// :159:30: error: use of undefined value here causes illegal behavior
6259// :159:30: note: when computing vector element at index '0'
6287// :159:30: error: use of undefined value here causes illegal behavior6260// :159:30: error: use of undefined value here causes illegal behavior
6261// :159:30: note: when computing vector element at index '0'
6288// :159:30: error: use of undefined value here causes illegal behavior6262// :159:30: error: use of undefined value here causes illegal behavior
6263// :159:30: note: when computing vector element at index '0'
6289// :159:30: error: use of undefined value here causes illegal behavior6264// :159:30: error: use of undefined value here causes illegal behavior
6265// :159:30: note: when computing vector element at index '0'
6290// :159:30: error: use of undefined value here causes illegal behavior6266// :159:30: error: use of undefined value here causes illegal behavior
6267// :159:30: note: when computing vector element at index '0'
6291// :159:30: error: use of undefined value here causes illegal behavior6268// :159:30: error: use of undefined value here causes illegal behavior
6269// :159:30: note: when computing vector element at index '0'
6292// :159:30: error: use of undefined value here causes illegal behavior6270// :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'
6294// :159:30: error: use of undefined value here causes illegal behavior6272// :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'
6296// :159:30: error: use of undefined value here causes illegal behavior6274// :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'
6298// :159:30: error: use of undefined value here causes illegal behavior6276// :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'
6300// :159:30: error: use of undefined value here causes illegal behavior6278// :159:30: error: use of undefined value here causes illegal behavior
6301// :159:30: note: when computing vector element at index '0'6279// :159:30: note: when computing vector element at index '0'
6302// :159:30: error: use of undefined value here causes illegal behavior6280// :159:30: error: use of undefined value here causes illegal behavior
...@@ -6306,11 +6284,17 @@ const std = @import("std");...@@ -6306,11 +6284,17 @@ const std = @import("std");
6306// :159:30: error: use of undefined value here causes illegal behavior6284// :159:30: error: use of undefined value here causes illegal behavior
6307// :159:30: note: when computing vector element at index '0'6285// :159:30: note: when computing vector element at index '0'
6308// :159:30: error: use of undefined value here causes illegal behavior6286// :159:30: error: use of undefined value here causes illegal behavior
6287// :159:30: note: when computing vector element at index '1'
6309// :159:30: error: use of undefined value here causes illegal behavior6288// :159:30: error: use of undefined value here causes illegal behavior
6289// :159:30: note: when computing vector element at index '1'
6310// :159:30: error: use of undefined value here causes illegal behavior6290// :159:30: error: use of undefined value here causes illegal behavior
6291// :159:30: note: when computing vector element at index '1'
6311// :159:30: error: use of undefined value here causes illegal behavior6292// :159:30: error: use of undefined value here causes illegal behavior
6293// :159:30: note: when computing vector element at index '1'
6312// :159:30: error: use of undefined value here causes illegal behavior6294// :159:30: error: use of undefined value here causes illegal behavior
6295// :159:30: note: when computing vector element at index '1'
6313// :159:30: error: use of undefined value here causes illegal behavior6296// :159:30: error: use of undefined value here causes illegal behavior
6297// :159:30: note: when computing vector element at index '1'
6314// :159:30: error: use of undefined value here causes illegal behavior6298// :159:30: error: use of undefined value here causes illegal behavior
6315// :159:30: note: when computing vector element at index '1'6299// :159:30: note: when computing vector element at index '1'
6316// :159:30: error: use of undefined value here causes illegal behavior6300// :159:30: error: use of undefined value here causes illegal behavior
...@@ -6320,19 +6304,25 @@ const std = @import("std");...@@ -6320,19 +6304,25 @@ const std = @import("std");
6320// :159:30: error: use of undefined value here causes illegal behavior6304// :159:30: error: use of undefined value here causes illegal behavior
6321// :159:30: note: when computing vector element at index '1'6305// :159:30: note: when computing vector element at index '1'
6322// :159:30: error: use of undefined value here causes illegal behavior6306// :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'
6324// :159:30: error: use of undefined value here causes illegal behavior6308// :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'
6326// :159:30: error: use of undefined value here causes illegal behavior6310// :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'
6328// :159:30: error: use of undefined value here causes illegal behavior6312// :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'
6330// :159:30: error: use of undefined value here causes illegal behavior6314// :159:30: error: use of undefined value here causes illegal behavior
6315// :159:30: note: when computing vector element at index '1'
6331// :159:30: error: use of undefined value here causes illegal behavior6316// :159:30: error: use of undefined value here causes illegal behavior
6317// :159:30: note: when computing vector element at index '1'
6332// :159:30: error: use of undefined value here causes illegal behavior6318// :159:30: error: use of undefined value here causes illegal behavior
6319// :159:30: note: when computing vector element at index '1'
6333// :159:30: error: use of undefined value here causes illegal behavior6320// :159:30: error: use of undefined value here causes illegal behavior
6321// :159:30: note: when computing vector element at index '1'
6334// :159:30: error: use of undefined value here causes illegal behavior6322// :159:30: error: use of undefined value here causes illegal behavior
6323// :159:30: note: when computing vector element at index '1'
6335// :159:30: error: use of undefined value here causes illegal behavior6324// :159:30: error: use of undefined value here causes illegal behavior
6325// :159:30: note: when computing vector element at index '1'
6336// :159:30: error: use of undefined value here causes illegal behavior6326// :159:30: error: use of undefined value here causes illegal behavior
6337// :159:30: note: when computing vector element at index '1'6327// :159:30: note: when computing vector element at index '1'
6338// :159:30: error: use of undefined value here causes illegal behavior6328// :159:30: error: use of undefined value here causes illegal behavior
...@@ -6342,19 +6332,27 @@ const std = @import("std");...@@ -6342,19 +6332,27 @@ const std = @import("std");
6342// :159:30: error: use of undefined value here causes illegal behavior6332// :159:30: error: use of undefined value here causes illegal behavior
6343// :159:30: note: when computing vector element at index '1'6333// :159:30: note: when computing vector element at index '1'
6344// :159:30: error: use of undefined value here causes illegal behavior6334// :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'
6346// :159:30: error: use of undefined value here causes illegal behavior6336// :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'
6348// :159:30: error: use of undefined value here causes illegal behavior6338// :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'
6350// :159:30: error: use of undefined value here causes illegal behavior6340// :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'
6352// :159:30: error: use of undefined value here causes illegal behavior6344// :159:30: error: use of undefined value here causes illegal behavior
6345// :159:30: note: when computing vector element at index '1'
6353// :159:30: error: use of undefined value here causes illegal behavior6346// :159:30: error: use of undefined value here causes illegal behavior
6347// :159:30: note: when computing vector element at index '1'
6354// :159:30: error: use of undefined value here causes illegal behavior6348// :159:30: error: use of undefined value here causes illegal behavior
6349// :159:30: note: when computing vector element at index '1'
6355// :159:30: error: use of undefined value here causes illegal behavior6350// :159:30: error: use of undefined value here causes illegal behavior
6351// :159:30: note: when computing vector element at index '1'
6356// :159:30: error: use of undefined value here causes illegal behavior6352// :159:30: error: use of undefined value here causes illegal behavior
6353// :159:30: note: when computing vector element at index '1'
6357// :159:30: error: use of undefined value here causes illegal behavior6354// :159:30: error: use of undefined value here causes illegal behavior
6355// :159:30: note: when computing vector element at index '1'
6358// :159:30: error: use of undefined value here causes illegal behavior6356// :159:30: error: use of undefined value here causes illegal behavior
6359// :159:30: note: when computing vector element at index '1'6357// :159:30: note: when computing vector element at index '1'
6360// :159:30: error: use of undefined value here causes illegal behavior6358// :159:30: error: use of undefined value here causes illegal behavior
...@@ -6364,13 +6362,15 @@ const std = @import("std");...@@ -6364,13 +6362,15 @@ const std = @import("std");
6364// :159:30: error: use of undefined value here causes illegal behavior6362// :159:30: error: use of undefined value here causes illegal behavior
6365// :159:30: note: when computing vector element at index '1'6363// :159:30: note: when computing vector element at index '1'
6366// :159:30: error: use of undefined value here causes illegal behavior6364// :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'
6368// :159:30: error: use of undefined value here causes illegal behavior6366// :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'
6370// :159:30: error: use of undefined value here causes illegal behavior6368// :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'
6372// :159:30: error: use of undefined value here causes illegal behavior6370// :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'
6374// :163:30: error: use of undefined value here causes illegal behavior6374// :163:30: error: use of undefined value here causes illegal behavior
6375// :163:30: error: use of undefined value here causes illegal behavior6375// :163:30: error: use of undefined value here causes illegal behavior
6376// :163:30: error: use of undefined value here causes illegal behavior6376// :163:30: error: use of undefined value here causes illegal behavior
...@@ -6378,21 +6378,13 @@ const std = @import("std");...@@ -6378,21 +6378,13 @@ const std = @import("std");
6378// :163:30: error: use of undefined value here causes illegal behavior6378// :163:30: error: use of undefined value here causes illegal behavior
6379// :163:30: error: use of undefined value here causes illegal behavior6379// :163:30: error: use of undefined value here causes illegal behavior
6380// :163:30: error: use of undefined value here causes illegal behavior6380// :163:30: error: use of undefined value here causes illegal behavior
6381// :163:30: note: when computing vector element at index '1'
6382// :163:30: error: use of undefined value here causes illegal behavior6381// :163:30: error: use of undefined value here causes illegal behavior
6383// :163:30: note: when computing vector element at index '1'
6384// :163:30: error: use of undefined value here causes illegal behavior6382// :163:30: error: use of undefined value here causes illegal behavior
6385// :163:30: note: when computing vector element at index '1'
6386// :163:30: error: use of undefined value here causes illegal behavior6383// :163:30: error: use of undefined value here causes illegal behavior
6387// :163:30: note: when computing vector element at index '1'
6388// :163:30: error: use of undefined value here causes illegal behavior6384// :163:30: error: use of undefined value here causes illegal behavior
6389// :163:30: note: when computing vector element at index '0'
6390// :163:30: error: use of undefined value here causes illegal behavior6385// :163:30: error: use of undefined value here causes illegal behavior
6391// :163:30: note: when computing vector element at index '0'
6392// :163:30: error: use of undefined value here causes illegal behavior6386// :163:30: error: use of undefined value here causes illegal behavior
6393// :163:30: note: when computing vector element at index '0'
6394// :163:30: error: use of undefined value here causes illegal behavior6387// :163:30: error: use of undefined value here causes illegal behavior
6395// :163:30: note: when computing vector element at index '0'
6396// :163:30: error: use of undefined value here causes illegal behavior6388// :163:30: error: use of undefined value here causes illegal behavior
6397// :163:30: error: use of undefined value here causes illegal behavior6389// :163:30: error: use of undefined value here causes illegal behavior
6398// :163:30: error: use of undefined value here causes illegal behavior6390// :163:30: error: use of undefined value here causes illegal behavior
...@@ -6400,21 +6392,13 @@ const std = @import("std");...@@ -6400,21 +6392,13 @@ const std = @import("std");
6400// :163:30: error: use of undefined value here causes illegal behavior6392// :163:30: error: use of undefined value here causes illegal behavior
6401// :163:30: error: use of undefined value here causes illegal behavior6393// :163:30: error: use of undefined value here causes illegal behavior
6402// :163:30: error: use of undefined value here causes illegal behavior6394// :163:30: error: use of undefined value here causes illegal behavior
6403// :163:30: note: when computing vector element at index '1'
6404// :163:30: error: use of undefined value here causes illegal behavior6395// :163:30: error: use of undefined value here causes illegal behavior
6405// :163:30: note: when computing vector element at index '1'
6406// :163:30: error: use of undefined value here causes illegal behavior6396// :163:30: error: use of undefined value here causes illegal behavior
6407// :163:30: note: when computing vector element at index '1'
6408// :163:30: error: use of undefined value here causes illegal behavior6397// :163:30: error: use of undefined value here causes illegal behavior
6409// :163:30: note: when computing vector element at index '1'
6410// :163:30: error: use of undefined value here causes illegal behavior6398// :163:30: error: use of undefined value here causes illegal behavior
6411// :163:30: note: when computing vector element at index '0'
6412// :163:30: error: use of undefined value here causes illegal behavior6399// :163:30: error: use of undefined value here causes illegal behavior
6413// :163:30: note: when computing vector element at index '0'
6414// :163:30: error: use of undefined value here causes illegal behavior6400// :163:30: error: use of undefined value here causes illegal behavior
6415// :163:30: note: when computing vector element at index '0'
6416// :163:30: error: use of undefined value here causes illegal behavior6401// :163:30: error: use of undefined value here causes illegal behavior
6417// :163:30: note: when computing vector element at index '0'
6418// :163:30: error: use of undefined value here causes illegal behavior6402// :163:30: error: use of undefined value here causes illegal behavior
6419// :163:30: error: use of undefined value here causes illegal behavior6403// :163:30: error: use of undefined value here causes illegal behavior
6420// :163:30: error: use of undefined value here causes illegal behavior6404// :163:30: error: use of undefined value here causes illegal behavior
...@@ -6422,21 +6406,13 @@ const std = @import("std");...@@ -6422,21 +6406,13 @@ const std = @import("std");
6422// :163:30: error: use of undefined value here causes illegal behavior6406// :163:30: error: use of undefined value here causes illegal behavior
6423// :163:30: error: use of undefined value here causes illegal behavior6407// :163:30: error: use of undefined value here causes illegal behavior
6424// :163:30: error: use of undefined value here causes illegal behavior6408// :163:30: error: use of undefined value here causes illegal behavior
6425// :163:30: note: when computing vector element at index '1'
6426// :163:30: error: use of undefined value here causes illegal behavior6409// :163:30: error: use of undefined value here causes illegal behavior
6427// :163:30: note: when computing vector element at index '1'
6428// :163:30: error: use of undefined value here causes illegal behavior6410// :163:30: error: use of undefined value here causes illegal behavior
6429// :163:30: note: when computing vector element at index '1'
6430// :163:30: error: use of undefined value here causes illegal behavior6411// :163:30: error: use of undefined value here causes illegal behavior
6431// :163:30: note: when computing vector element at index '1'
6432// :163:30: error: use of undefined value here causes illegal behavior6412// :163:30: error: use of undefined value here causes illegal behavior
6433// :163:30: note: when computing vector element at index '0'
6434// :163:30: error: use of undefined value here causes illegal behavior6413// :163:30: error: use of undefined value here causes illegal behavior
6435// :163:30: note: when computing vector element at index '0'
6436// :163:30: error: use of undefined value here causes illegal behavior6414// :163:30: error: use of undefined value here causes illegal behavior
6437// :163:30: note: when computing vector element at index '0'
6438// :163:30: error: use of undefined value here causes illegal behavior6415// :163:30: error: use of undefined value here causes illegal behavior
6439// :163:30: note: when computing vector element at index '0'
6440// :163:30: error: use of undefined value here causes illegal behavior6416// :163:30: error: use of undefined value here causes illegal behavior
6441// :163:30: error: use of undefined value here causes illegal behavior6417// :163:30: error: use of undefined value here causes illegal behavior
6442// :163:30: error: use of undefined value here causes illegal behavior6418// :163:30: error: use of undefined value here causes illegal behavior
...@@ -6444,21 +6420,13 @@ const std = @import("std");...@@ -6444,21 +6420,13 @@ const std = @import("std");
6444// :163:30: error: use of undefined value here causes illegal behavior6420// :163:30: error: use of undefined value here causes illegal behavior
6445// :163:30: error: use of undefined value here causes illegal behavior6421// :163:30: error: use of undefined value here causes illegal behavior
6446// :163:30: error: use of undefined value here causes illegal behavior6422// :163:30: error: use of undefined value here causes illegal behavior
6447// :163:30: note: when computing vector element at index '1'
6448// :163:30: error: use of undefined value here causes illegal behavior6423// :163:30: error: use of undefined value here causes illegal behavior
6449// :163:30: note: when computing vector element at index '1'
6450// :163:30: error: use of undefined value here causes illegal behavior6424// :163:30: error: use of undefined value here causes illegal behavior
6451// :163:30: note: when computing vector element at index '1'
6452// :163:30: error: use of undefined value here causes illegal behavior6425// :163:30: error: use of undefined value here causes illegal behavior
6453// :163:30: note: when computing vector element at index '1'
6454// :163:30: error: use of undefined value here causes illegal behavior6426// :163:30: error: use of undefined value here causes illegal behavior
6455// :163:30: note: when computing vector element at index '0'
6456// :163:30: error: use of undefined value here causes illegal behavior6427// :163:30: error: use of undefined value here causes illegal behavior
6457// :163:30: note: when computing vector element at index '0'
6458// :163:30: error: use of undefined value here causes illegal behavior6428// :163:30: error: use of undefined value here causes illegal behavior
6459// :163:30: note: when computing vector element at index '0'
6460// :163:30: error: use of undefined value here causes illegal behavior6429// :163:30: error: use of undefined value here causes illegal behavior
6461// :163:30: note: when computing vector element at index '0'
6462// :163:30: error: use of undefined value here causes illegal behavior6430// :163:30: error: use of undefined value here causes illegal behavior
6463// :163:30: error: use of undefined value here causes illegal behavior6431// :163:30: error: use of undefined value here causes illegal behavior
6464// :163:30: error: use of undefined value here causes illegal behavior6432// :163:30: error: use of undefined value here causes illegal behavior
...@@ -6466,13 +6434,9 @@ const std = @import("std");...@@ -6466,13 +6434,9 @@ const std = @import("std");
6466// :163:30: error: use of undefined value here causes illegal behavior6434// :163:30: error: use of undefined value here causes illegal behavior
6467// :163:30: error: use of undefined value here causes illegal behavior6435// :163:30: error: use of undefined value here causes illegal behavior
6468// :163:30: error: use of undefined value here causes illegal behavior6436// :163:30: error: use of undefined value here causes illegal behavior
6469// :163:30: note: when computing vector element at index '1'
6470// :163:30: error: use of undefined value here causes illegal behavior6437// :163:30: error: use of undefined value here causes illegal behavior
6471// :163:30: note: when computing vector element at index '1'
6472// :163:30: error: use of undefined value here causes illegal behavior6438// :163:30: error: use of undefined value here causes illegal behavior
6473// :163:30: note: when computing vector element at index '1'
6474// :163:30: error: use of undefined value here causes illegal behavior6439// :163:30: error: use of undefined value here causes illegal behavior
6475// :163:30: note: when computing vector element at index '1'
6476// :163:30: error: use of undefined value here causes illegal behavior6440// :163:30: error: use of undefined value here causes illegal behavior
6477// :163:30: note: when computing vector element at index '0'6441// :163:30: note: when computing vector element at index '0'
6478// :163:30: error: use of undefined value here causes illegal behavior6442// :163:30: error: use of undefined value here causes illegal behavior
...@@ -6482,19 +6446,21 @@ const std = @import("std");...@@ -6482,19 +6446,21 @@ const std = @import("std");
6482// :163:30: error: use of undefined value here causes illegal behavior6446// :163:30: error: use of undefined value here causes illegal behavior
6483// :163:30: note: when computing vector element at index '0'6447// :163:30: note: when computing vector element at index '0'
6484// :163:30: error: use of undefined value here causes illegal behavior6448// :163:30: error: use of undefined value here causes illegal behavior
6449// :163:30: note: when computing vector element at index '0'
6485// :163:30: error: use of undefined value here causes illegal behavior6450// :163:30: error: use of undefined value here causes illegal behavior
6451// :163:30: note: when computing vector element at index '0'
6486// :163:30: error: use of undefined value here causes illegal behavior6452// :163:30: error: use of undefined value here causes illegal behavior
6453// :163:30: note: when computing vector element at index '0'
6487// :163:30: error: use of undefined value here causes illegal behavior6454// :163:30: error: use of undefined value here causes illegal behavior
6455// :163:30: note: when computing vector element at index '0'
6488// :163:30: error: use of undefined value here causes illegal behavior6456// :163:30: error: use of undefined value here causes illegal behavior
6457// :163:30: note: when computing vector element at index '0'
6489// :163:30: error: use of undefined value here causes illegal behavior6458// :163:30: error: use of undefined value here causes illegal behavior
6459// :163:30: note: when computing vector element at index '0'
6490// :163:30: error: use of undefined value here causes illegal behavior6460// :163:30: error: use of undefined value here causes illegal behavior
6491// :163:30: note: when computing vector element at index '1'6461// :163:30: note: when computing vector element at index '0'
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'
6496// :163:30: error: use of undefined value here causes illegal behavior6462// :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'
6498// :163:30: error: use of undefined value here causes illegal behavior6464// :163:30: error: use of undefined value here causes illegal behavior
6499// :163:30: note: when computing vector element at index '0'6465// :163:30: note: when computing vector element at index '0'
6500// :163:30: error: use of undefined value here causes illegal behavior6466// :163:30: error: use of undefined value here causes illegal behavior
...@@ -6504,19 +6470,25 @@ const std = @import("std");...@@ -6504,19 +6470,25 @@ const std = @import("std");
6504// :163:30: error: use of undefined value here causes illegal behavior6470// :163:30: error: use of undefined value here causes illegal behavior
6505// :163:30: note: when computing vector element at index '0'6471// :163:30: note: when computing vector element at index '0'
6506// :163:30: error: use of undefined value here causes illegal behavior6472// :163:30: error: use of undefined value here causes illegal behavior
6473// :163:30: note: when computing vector element at index '0'
6507// :163:30: error: use of undefined value here causes illegal behavior6474// :163:30: error: use of undefined value here causes illegal behavior
6475// :163:30: note: when computing vector element at index '0'
6508// :163:30: error: use of undefined value here causes illegal behavior6476// :163:30: error: use of undefined value here causes illegal behavior
6477// :163:30: note: when computing vector element at index '0'
6509// :163:30: error: use of undefined value here causes illegal behavior6478// :163:30: error: use of undefined value here causes illegal behavior
6479// :163:30: note: when computing vector element at index '0'
6510// :163:30: error: use of undefined value here causes illegal behavior6480// :163:30: error: use of undefined value here causes illegal behavior
6481// :163:30: note: when computing vector element at index '0'
6511// :163:30: error: use of undefined value here causes illegal behavior6482// :163:30: error: use of undefined value here causes illegal behavior
6483// :163:30: note: when computing vector element at index '0'
6512// :163:30: error: use of undefined value here causes illegal behavior6484// :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'
6514// :163:30: error: use of undefined value here causes illegal behavior6486// :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'
6516// :163:30: error: use of undefined value here causes illegal behavior6488// :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'
6518// :163:30: error: use of undefined value here causes illegal behavior6490// :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'
6520// :163:30: error: use of undefined value here causes illegal behavior6492// :163:30: error: use of undefined value here causes illegal behavior
6521// :163:30: note: when computing vector element at index '0'6493// :163:30: note: when computing vector element at index '0'
6522// :163:30: error: use of undefined value here causes illegal behavior6494// :163:30: error: use of undefined value here causes illegal behavior
...@@ -6526,19 +6498,25 @@ const std = @import("std");...@@ -6526,19 +6498,25 @@ const std = @import("std");
6526// :163:30: error: use of undefined value here causes illegal behavior6498// :163:30: error: use of undefined value here causes illegal behavior
6527// :163:30: note: when computing vector element at index '0'6499// :163:30: note: when computing vector element at index '0'
6528// :163:30: error: use of undefined value here causes illegal behavior6500// :163:30: error: use of undefined value here causes illegal behavior
6501// :163:30: note: when computing vector element at index '0'
6529// :163:30: error: use of undefined value here causes illegal behavior6502// :163:30: error: use of undefined value here causes illegal behavior
6503// :163:30: note: when computing vector element at index '0'
6530// :163:30: error: use of undefined value here causes illegal behavior6504// :163:30: error: use of undefined value here causes illegal behavior
6505// :163:30: note: when computing vector element at index '0'
6531// :163:30: error: use of undefined value here causes illegal behavior6506// :163:30: error: use of undefined value here causes illegal behavior
6507// :163:30: note: when computing vector element at index '0'
6532// :163:30: error: use of undefined value here causes illegal behavior6508// :163:30: error: use of undefined value here causes illegal behavior
6509// :163:30: note: when computing vector element at index '0'
6533// :163:30: error: use of undefined value here causes illegal behavior6510// :163:30: error: use of undefined value here causes illegal behavior
6511// :163:30: note: when computing vector element at index '0'
6534// :163:30: error: use of undefined value here causes illegal behavior6512// :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'
6536// :163:30: error: use of undefined value here causes illegal behavior6514// :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'
6538// :163:30: error: use of undefined value here causes illegal behavior6516// :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'
6540// :163:30: error: use of undefined value here causes illegal behavior6518// :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'
6542// :163:30: error: use of undefined value here causes illegal behavior6520// :163:30: error: use of undefined value here causes illegal behavior
6543// :163:30: note: when computing vector element at index '0'6521// :163:30: note: when computing vector element at index '0'
6544// :163:30: error: use of undefined value here causes illegal behavior6522// :163:30: error: use of undefined value here causes illegal behavior
...@@ -6548,11 +6526,19 @@ const std = @import("std");...@@ -6548,11 +6526,19 @@ const std = @import("std");
6548// :163:30: error: use of undefined value here causes illegal behavior6526// :163:30: error: use of undefined value here causes illegal behavior
6549// :163:30: note: when computing vector element at index '0'6527// :163:30: note: when computing vector element at index '0'
6550// :163:30: error: use of undefined value here causes illegal behavior6528// :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'
6551// :163:30: error: use of undefined value here causes illegal behavior6532// :163:30: error: use of undefined value here causes illegal behavior
6533// :163:30: note: when computing vector element at index '1'
6552// :163:30: error: use of undefined value here causes illegal behavior6534// :163:30: error: use of undefined value here causes illegal behavior
6535// :163:30: note: when computing vector element at index '1'
6553// :163:30: error: use of undefined value here causes illegal behavior6536// :163:30: error: use of undefined value here causes illegal behavior
6537// :163:30: note: when computing vector element at index '1'
6554// :163:30: error: use of undefined value here causes illegal behavior6538// :163:30: error: use of undefined value here causes illegal behavior
6539// :163:30: note: when computing vector element at index '1'
6555// :163:30: error: use of undefined value here causes illegal behavior6540// :163:30: error: use of undefined value here causes illegal behavior
6541// :163:30: note: when computing vector element at index '1'
6556// :163:30: error: use of undefined value here causes illegal behavior6542// :163:30: error: use of undefined value here causes illegal behavior
6557// :163:30: note: when computing vector element at index '1'6543// :163:30: note: when computing vector element at index '1'
6558// :163:30: error: use of undefined value here causes illegal behavior6544// :163:30: error: use of undefined value here causes illegal behavior
...@@ -6562,19 +6548,27 @@ const std = @import("std");...@@ -6562,19 +6548,27 @@ const std = @import("std");
6562// :163:30: error: use of undefined value here causes illegal behavior6548// :163:30: error: use of undefined value here causes illegal behavior
6563// :163:30: note: when computing vector element at index '1'6549// :163:30: note: when computing vector element at index '1'
6564// :163:30: error: use of undefined value here causes illegal behavior6550// :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'
6566// :163:30: error: use of undefined value here causes illegal behavior6552// :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'
6568// :163:30: error: use of undefined value here causes illegal behavior6554// :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'
6570// :163:30: error: use of undefined value here causes illegal behavior6556// :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'
6572// :163:30: error: use of undefined value here causes illegal behavior6560// :163:30: error: use of undefined value here causes illegal behavior
6561// :163:30: note: when computing vector element at index '1'
6573// :163:30: error: use of undefined value here causes illegal behavior6562// :163:30: error: use of undefined value here causes illegal behavior
6563// :163:30: note: when computing vector element at index '1'
6574// :163:30: error: use of undefined value here causes illegal behavior6564// :163:30: error: use of undefined value here causes illegal behavior
6565// :163:30: note: when computing vector element at index '1'
6575// :163:30: error: use of undefined value here causes illegal behavior6566// :163:30: error: use of undefined value here causes illegal behavior
6567// :163:30: note: when computing vector element at index '1'
6576// :163:30: error: use of undefined value here causes illegal behavior6568// :163:30: error: use of undefined value here causes illegal behavior
6569// :163:30: note: when computing vector element at index '1'
6577// :163:30: error: use of undefined value here causes illegal behavior6570// :163:30: error: use of undefined value here causes illegal behavior
6571// :163:30: note: when computing vector element at index '1'
6578// :163:30: error: use of undefined value here causes illegal behavior6572// :163:30: error: use of undefined value here causes illegal behavior
6579// :163:30: note: when computing vector element at index '1'6573// :163:30: note: when computing vector element at index '1'
6580// :163:30: error: use of undefined value here causes illegal behavior6574// :163:30: error: use of undefined value here causes illegal behavior
...@@ -6584,19 +6578,25 @@ const std = @import("std");...@@ -6584,19 +6578,25 @@ const std = @import("std");
6584// :163:30: error: use of undefined value here causes illegal behavior6578// :163:30: error: use of undefined value here causes illegal behavior
6585// :163:30: note: when computing vector element at index '1'6579// :163:30: note: when computing vector element at index '1'
6586// :163:30: error: use of undefined value here causes illegal behavior6580// :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'
6588// :163:30: error: use of undefined value here causes illegal behavior6582// :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'
6590// :163:30: error: use of undefined value here causes illegal behavior6584// :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'
6592// :163:30: error: use of undefined value here causes illegal behavior6586// :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'
6594// :163:30: error: use of undefined value here causes illegal behavior6588// :163:30: error: use of undefined value here causes illegal behavior
6589// :163:30: note: when computing vector element at index '1'
6595// :163:30: error: use of undefined value here causes illegal behavior6590// :163:30: error: use of undefined value here causes illegal behavior
6591// :163:30: note: when computing vector element at index '1'
6596// :163:30: error: use of undefined value here causes illegal behavior6592// :163:30: error: use of undefined value here causes illegal behavior
6593// :163:30: note: when computing vector element at index '1'
6597// :163:30: error: use of undefined value here causes illegal behavior6594// :163:30: error: use of undefined value here causes illegal behavior
6595// :163:30: note: when computing vector element at index '1'
6598// :163:30: error: use of undefined value here causes illegal behavior6596// :163:30: error: use of undefined value here causes illegal behavior
6597// :163:30: note: when computing vector element at index '1'
6599// :163:30: error: use of undefined value here causes illegal behavior6598// :163:30: error: use of undefined value here causes illegal behavior
6599// :163:30: note: when computing vector element at index '1'
6600// :163:30: error: use of undefined value here causes illegal behavior6600// :163:30: error: use of undefined value here causes illegal behavior
6601// :163:30: note: when computing vector element at index '1'6601// :163:30: note: when computing vector element at index '1'
6602// :163:30: error: use of undefined value here causes illegal behavior6602// :163:30: error: use of undefined value here causes illegal behavior
...@@ -6606,13 +6606,13 @@ const std = @import("std");...@@ -6606,13 +6606,13 @@ const std = @import("std");
6606// :163:30: error: use of undefined value here causes illegal behavior6606// :163:30: error: use of undefined value here causes illegal behavior
6607// :163:30: note: when computing vector element at index '1'6607// :163:30: note: when computing vector element at index '1'
6608// :163:30: error: use of undefined value here causes illegal behavior6608// :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'
6610// :163:30: error: use of undefined value here causes illegal behavior6610// :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'
6612// :163:30: error: use of undefined value here causes illegal behavior6612// :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'
6614// :163:30: error: use of undefined value here causes illegal behavior6614// :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'
6616// :167:25: error: use of undefined value here causes illegal behavior6616// :167:25: error: use of undefined value here causes illegal behavior
6617// :167:25: error: use of undefined value here causes illegal behavior6617// :167:25: error: use of undefined value here causes illegal behavior
6618// :167:25: error: use of undefined value here causes illegal behavior6618// :167:25: error: use of undefined value here causes illegal behavior
...@@ -6620,21 +6620,13 @@ const std = @import("std");...@@ -6620,21 +6620,13 @@ const std = @import("std");
6620// :167:25: error: use of undefined value here causes illegal behavior6620// :167:25: error: use of undefined value here causes illegal behavior
6621// :167:25: error: use of undefined value here causes illegal behavior6621// :167:25: error: use of undefined value here causes illegal behavior
6622// :167:25: error: use of undefined value here causes illegal behavior6622// :167:25: error: use of undefined value here causes illegal behavior
6623// :167:25: note: when computing vector element at index '1'
6624// :167:25: error: use of undefined value here causes illegal behavior6623// :167:25: error: use of undefined value here causes illegal behavior
6625// :167:25: note: when computing vector element at index '1'
6626// :167:25: error: use of undefined value here causes illegal behavior6624// :167:25: error: use of undefined value here causes illegal behavior
6627// :167:25: note: when computing vector element at index '1'
6628// :167:25: error: use of undefined value here causes illegal behavior6625// :167:25: error: use of undefined value here causes illegal behavior
6629// :167:25: note: when computing vector element at index '1'
6630// :167:25: error: use of undefined value here causes illegal behavior6626// :167:25: error: use of undefined value here causes illegal behavior
6631// :167:25: note: when computing vector element at index '0'
6632// :167:25: error: use of undefined value here causes illegal behavior6627// :167:25: error: use of undefined value here causes illegal behavior
6633// :167:25: note: when computing vector element at index '0'
6634// :167:25: error: use of undefined value here causes illegal behavior6628// :167:25: error: use of undefined value here causes illegal behavior
6635// :167:25: note: when computing vector element at index '0'
6636// :167:25: error: use of undefined value here causes illegal behavior6629// :167:25: error: use of undefined value here causes illegal behavior
6637// :167:25: note: when computing vector element at index '0'
6638// :167:25: error: use of undefined value here causes illegal behavior6630// :167:25: error: use of undefined value here causes illegal behavior
6639// :167:25: error: use of undefined value here causes illegal behavior6631// :167:25: error: use of undefined value here causes illegal behavior
6640// :167:25: error: use of undefined value here causes illegal behavior6632// :167:25: error: use of undefined value here causes illegal behavior
...@@ -6642,21 +6634,13 @@ const std = @import("std");...@@ -6642,21 +6634,13 @@ const std = @import("std");
6642// :167:25: error: use of undefined value here causes illegal behavior6634// :167:25: error: use of undefined value here causes illegal behavior
6643// :167:25: error: use of undefined value here causes illegal behavior6635// :167:25: error: use of undefined value here causes illegal behavior
6644// :167:25: error: use of undefined value here causes illegal behavior6636// :167:25: error: use of undefined value here causes illegal behavior
6645// :167:25: note: when computing vector element at index '1'
6646// :167:25: error: use of undefined value here causes illegal behavior6637// :167:25: error: use of undefined value here causes illegal behavior
6647// :167:25: note: when computing vector element at index '1'
6648// :167:25: error: use of undefined value here causes illegal behavior6638// :167:25: error: use of undefined value here causes illegal behavior
6649// :167:25: note: when computing vector element at index '1'
6650// :167:25: error: use of undefined value here causes illegal behavior6639// :167:25: error: use of undefined value here causes illegal behavior
6651// :167:25: note: when computing vector element at index '1'
6652// :167:25: error: use of undefined value here causes illegal behavior6640// :167:25: error: use of undefined value here causes illegal behavior
6653// :167:25: note: when computing vector element at index '0'
6654// :167:25: error: use of undefined value here causes illegal behavior6641// :167:25: error: use of undefined value here causes illegal behavior
6655// :167:25: note: when computing vector element at index '0'
6656// :167:25: error: use of undefined value here causes illegal behavior6642// :167:25: error: use of undefined value here causes illegal behavior
6657// :167:25: note: when computing vector element at index '0'
6658// :167:25: error: use of undefined value here causes illegal behavior6643// :167:25: error: use of undefined value here causes illegal behavior
6659// :167:25: note: when computing vector element at index '0'
6660// :167:25: error: use of undefined value here causes illegal behavior6644// :167:25: error: use of undefined value here causes illegal behavior
6661// :167:25: error: use of undefined value here causes illegal behavior6645// :167:25: error: use of undefined value here causes illegal behavior
6662// :167:25: error: use of undefined value here causes illegal behavior6646// :167:25: error: use of undefined value here causes illegal behavior
...@@ -6664,21 +6648,13 @@ const std = @import("std");...@@ -6664,21 +6648,13 @@ const std = @import("std");
6664// :167:25: error: use of undefined value here causes illegal behavior6648// :167:25: error: use of undefined value here causes illegal behavior
6665// :167:25: error: use of undefined value here causes illegal behavior6649// :167:25: error: use of undefined value here causes illegal behavior
6666// :167:25: error: use of undefined value here causes illegal behavior6650// :167:25: error: use of undefined value here causes illegal behavior
6667// :167:25: note: when computing vector element at index '1'
6668// :167:25: error: use of undefined value here causes illegal behavior6651// :167:25: error: use of undefined value here causes illegal behavior
6669// :167:25: note: when computing vector element at index '1'
6670// :167:25: error: use of undefined value here causes illegal behavior6652// :167:25: error: use of undefined value here causes illegal behavior
6671// :167:25: note: when computing vector element at index '1'
6672// :167:25: error: use of undefined value here causes illegal behavior6653// :167:25: error: use of undefined value here causes illegal behavior
6673// :167:25: note: when computing vector element at index '1'
6674// :167:25: error: use of undefined value here causes illegal behavior6654// :167:25: error: use of undefined value here causes illegal behavior
6675// :167:25: note: when computing vector element at index '0'
6676// :167:25: error: use of undefined value here causes illegal behavior6655// :167:25: error: use of undefined value here causes illegal behavior
6677// :167:25: note: when computing vector element at index '0'
6678// :167:25: error: use of undefined value here causes illegal behavior6656// :167:25: error: use of undefined value here causes illegal behavior
6679// :167:25: note: when computing vector element at index '0'
6680// :167:25: error: use of undefined value here causes illegal behavior6657// :167:25: error: use of undefined value here causes illegal behavior
6681// :167:25: note: when computing vector element at index '0'
6682// :167:25: error: use of undefined value here causes illegal behavior6658// :167:25: error: use of undefined value here causes illegal behavior
6683// :167:25: error: use of undefined value here causes illegal behavior6659// :167:25: error: use of undefined value here causes illegal behavior
6684// :167:25: error: use of undefined value here causes illegal behavior6660// :167:25: error: use of undefined value here causes illegal behavior
...@@ -6686,21 +6662,13 @@ const std = @import("std");...@@ -6686,21 +6662,13 @@ const std = @import("std");
6686// :167:25: error: use of undefined value here causes illegal behavior6662// :167:25: error: use of undefined value here causes illegal behavior
6687// :167:25: error: use of undefined value here causes illegal behavior6663// :167:25: error: use of undefined value here causes illegal behavior
6688// :167:25: error: use of undefined value here causes illegal behavior6664// :167:25: error: use of undefined value here causes illegal behavior
6689// :167:25: note: when computing vector element at index '1'
6690// :167:25: error: use of undefined value here causes illegal behavior6665// :167:25: error: use of undefined value here causes illegal behavior
6691// :167:25: note: when computing vector element at index '1'
6692// :167:25: error: use of undefined value here causes illegal behavior6666// :167:25: error: use of undefined value here causes illegal behavior
6693// :167:25: note: when computing vector element at index '1'
6694// :167:25: error: use of undefined value here causes illegal behavior6667// :167:25: error: use of undefined value here causes illegal behavior
6695// :167:25: note: when computing vector element at index '1'
6696// :167:25: error: use of undefined value here causes illegal behavior6668// :167:25: error: use of undefined value here causes illegal behavior
6697// :167:25: note: when computing vector element at index '0'
6698// :167:25: error: use of undefined value here causes illegal behavior6669// :167:25: error: use of undefined value here causes illegal behavior
6699// :167:25: note: when computing vector element at index '0'
6700// :167:25: error: use of undefined value here causes illegal behavior6670// :167:25: error: use of undefined value here causes illegal behavior
6701// :167:25: note: when computing vector element at index '0'
6702// :167:25: error: use of undefined value here causes illegal behavior6671// :167:25: error: use of undefined value here causes illegal behavior
6703// :167:25: note: when computing vector element at index '0'
6704// :167:25: error: use of undefined value here causes illegal behavior6672// :167:25: error: use of undefined value here causes illegal behavior
6705// :167:25: error: use of undefined value here causes illegal behavior6673// :167:25: error: use of undefined value here causes illegal behavior
6706// :167:25: error: use of undefined value here causes illegal behavior6674// :167:25: error: use of undefined value here causes illegal behavior
...@@ -6708,13 +6676,9 @@ const std = @import("std");...@@ -6708,13 +6676,9 @@ const std = @import("std");
6708// :167:25: error: use of undefined value here causes illegal behavior6676// :167:25: error: use of undefined value here causes illegal behavior
6709// :167:25: error: use of undefined value here causes illegal behavior6677// :167:25: error: use of undefined value here causes illegal behavior
6710// :167:25: error: use of undefined value here causes illegal behavior6678// :167:25: error: use of undefined value here causes illegal behavior
6711// :167:25: note: when computing vector element at index '1'
6712// :167:25: error: use of undefined value here causes illegal behavior6679// :167:25: error: use of undefined value here causes illegal behavior
6713// :167:25: note: when computing vector element at index '1'
6714// :167:25: error: use of undefined value here causes illegal behavior6680// :167:25: error: use of undefined value here causes illegal behavior
6715// :167:25: note: when computing vector element at index '1'
6716// :167:25: error: use of undefined value here causes illegal behavior6681// :167:25: error: use of undefined value here causes illegal behavior
6717// :167:25: note: when computing vector element at index '1'
6718// :167:25: error: use of undefined value here causes illegal behavior6682// :167:25: error: use of undefined value here causes illegal behavior
6719// :167:25: note: when computing vector element at index '0'6683// :167:25: note: when computing vector element at index '0'
6720// :167:25: error: use of undefined value here causes illegal behavior6684// :167:25: error: use of undefined value here causes illegal behavior
...@@ -6724,19 +6688,21 @@ const std = @import("std");...@@ -6724,19 +6688,21 @@ const std = @import("std");
6724// :167:25: error: use of undefined value here causes illegal behavior6688// :167:25: error: use of undefined value here causes illegal behavior
6725// :167:25: note: when computing vector element at index '0'6689// :167:25: note: when computing vector element at index '0'
6726// :167:25: error: use of undefined value here causes illegal behavior6690// :167:25: error: use of undefined value here causes illegal behavior
6691// :167:25: note: when computing vector element at index '0'
6727// :167:25: error: use of undefined value here causes illegal behavior6692// :167:25: error: use of undefined value here causes illegal behavior
6693// :167:25: note: when computing vector element at index '0'
6728// :167:25: error: use of undefined value here causes illegal behavior6694// :167:25: error: use of undefined value here causes illegal behavior
6695// :167:25: note: when computing vector element at index '0'
6729// :167:25: error: use of undefined value here causes illegal behavior6696// :167:25: error: use of undefined value here causes illegal behavior
6697// :167:25: note: when computing vector element at index '0'
6730// :167:25: error: use of undefined value here causes illegal behavior6698// :167:25: error: use of undefined value here causes illegal behavior
6699// :167:25: note: when computing vector element at index '0'
6731// :167:25: error: use of undefined value here causes illegal behavior6700// :167:25: error: use of undefined value here causes illegal behavior
6701// :167:25: note: when computing vector element at index '0'
6732// :167:25: error: use of undefined value here causes illegal behavior6702// :167:25: error: use of undefined value here causes illegal behavior
6733// :167:25: note: when computing vector element at index '1'6703// :167:25: note: when computing vector element at index '0'
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'
6738// :167:25: error: use of undefined value here causes illegal behavior6704// :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'
6740// :167:25: error: use of undefined value here causes illegal behavior6706// :167:25: error: use of undefined value here causes illegal behavior
6741// :167:25: note: when computing vector element at index '0'6707// :167:25: note: when computing vector element at index '0'
6742// :167:25: error: use of undefined value here causes illegal behavior6708// :167:25: error: use of undefined value here causes illegal behavior
...@@ -6746,19 +6712,25 @@ const std = @import("std");...@@ -6746,19 +6712,25 @@ const std = @import("std");
6746// :167:25: error: use of undefined value here causes illegal behavior6712// :167:25: error: use of undefined value here causes illegal behavior
6747// :167:25: note: when computing vector element at index '0'6713// :167:25: note: when computing vector element at index '0'
6748// :167:25: error: use of undefined value here causes illegal behavior6714// :167:25: error: use of undefined value here causes illegal behavior
6715// :167:25: note: when computing vector element at index '0'
6749// :167:25: error: use of undefined value here causes illegal behavior6716// :167:25: error: use of undefined value here causes illegal behavior
6717// :167:25: note: when computing vector element at index '0'
6750// :167:25: error: use of undefined value here causes illegal behavior6718// :167:25: error: use of undefined value here causes illegal behavior
6719// :167:25: note: when computing vector element at index '0'
6751// :167:25: error: use of undefined value here causes illegal behavior6720// :167:25: error: use of undefined value here causes illegal behavior
6721// :167:25: note: when computing vector element at index '0'
6752// :167:25: error: use of undefined value here causes illegal behavior6722// :167:25: error: use of undefined value here causes illegal behavior
6723// :167:25: note: when computing vector element at index '0'
6753// :167:25: error: use of undefined value here causes illegal behavior6724// :167:25: error: use of undefined value here causes illegal behavior
6725// :167:25: note: when computing vector element at index '0'
6754// :167:25: error: use of undefined value here causes illegal behavior6726// :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'
6756// :167:25: error: use of undefined value here causes illegal behavior6728// :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'
6758// :167:25: error: use of undefined value here causes illegal behavior6730// :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'
6760// :167:25: error: use of undefined value here causes illegal behavior6732// :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'
6762// :167:25: error: use of undefined value here causes illegal behavior6734// :167:25: error: use of undefined value here causes illegal behavior
6763// :167:25: note: when computing vector element at index '0'6735// :167:25: note: when computing vector element at index '0'
6764// :167:25: error: use of undefined value here causes illegal behavior6736// :167:25: error: use of undefined value here causes illegal behavior
...@@ -6768,19 +6740,25 @@ const std = @import("std");...@@ -6768,19 +6740,25 @@ const std = @import("std");
6768// :167:25: error: use of undefined value here causes illegal behavior6740// :167:25: error: use of undefined value here causes illegal behavior
6769// :167:25: note: when computing vector element at index '0'6741// :167:25: note: when computing vector element at index '0'
6770// :167:25: error: use of undefined value here causes illegal behavior6742// :167:25: error: use of undefined value here causes illegal behavior
6743// :167:25: note: when computing vector element at index '0'
6771// :167:25: error: use of undefined value here causes illegal behavior6744// :167:25: error: use of undefined value here causes illegal behavior
6745// :167:25: note: when computing vector element at index '0'
6772// :167:25: error: use of undefined value here causes illegal behavior6746// :167:25: error: use of undefined value here causes illegal behavior
6747// :167:25: note: when computing vector element at index '0'
6773// :167:25: error: use of undefined value here causes illegal behavior6748// :167:25: error: use of undefined value here causes illegal behavior
6749// :167:25: note: when computing vector element at index '0'
6774// :167:25: error: use of undefined value here causes illegal behavior6750// :167:25: error: use of undefined value here causes illegal behavior
6751// :167:25: note: when computing vector element at index '0'
6775// :167:25: error: use of undefined value here causes illegal behavior6752// :167:25: error: use of undefined value here causes illegal behavior
6753// :167:25: note: when computing vector element at index '0'
6776// :167:25: error: use of undefined value here causes illegal behavior6754// :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'
6778// :167:25: error: use of undefined value here causes illegal behavior6756// :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'
6780// :167:25: error: use of undefined value here causes illegal behavior6758// :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'
6782// :167:25: error: use of undefined value here causes illegal behavior6760// :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'
6784// :167:25: error: use of undefined value here causes illegal behavior6762// :167:25: error: use of undefined value here causes illegal behavior
6785// :167:25: note: when computing vector element at index '0'6763// :167:25: note: when computing vector element at index '0'
6786// :167:25: error: use of undefined value here causes illegal behavior6764// :167:25: error: use of undefined value here causes illegal behavior
...@@ -6790,11 +6768,21 @@ const std = @import("std");...@@ -6790,11 +6768,21 @@ const std = @import("std");
6790// :167:25: error: use of undefined value here causes illegal behavior6768// :167:25: error: use of undefined value here causes illegal behavior
6791// :167:25: note: when computing vector element at index '0'6769// :167:25: note: when computing vector element at index '0'
6792// :167:25: error: use of undefined value here causes illegal behavior6770// :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'
6793// :167:25: error: use of undefined value here causes illegal behavior6776// :167:25: error: use of undefined value here causes illegal behavior
6777// :167:25: note: when computing vector element at index '1'
6794// :167:25: error: use of undefined value here causes illegal behavior6778// :167:25: error: use of undefined value here causes illegal behavior
6779// :167:25: note: when computing vector element at index '1'
6795// :167:25: error: use of undefined value here causes illegal behavior6780// :167:25: error: use of undefined value here causes illegal behavior
6781// :167:25: note: when computing vector element at index '1'
6796// :167:25: error: use of undefined value here causes illegal behavior6782// :167:25: error: use of undefined value here causes illegal behavior
6783// :167:25: note: when computing vector element at index '1'
6797// :167:25: error: use of undefined value here causes illegal behavior6784// :167:25: error: use of undefined value here causes illegal behavior
6785// :167:25: note: when computing vector element at index '1'
6798// :167:25: error: use of undefined value here causes illegal behavior6786// :167:25: error: use of undefined value here causes illegal behavior
6799// :167:25: note: when computing vector element at index '1'6787// :167:25: note: when computing vector element at index '1'
6800// :167:25: error: use of undefined value here causes illegal behavior6788// :167:25: error: use of undefined value here causes illegal behavior
...@@ -6804,19 +6792,25 @@ const std = @import("std");...@@ -6804,19 +6792,25 @@ const std = @import("std");
6804// :167:25: error: use of undefined value here causes illegal behavior6792// :167:25: error: use of undefined value here causes illegal behavior
6805// :167:25: note: when computing vector element at index '1'6793// :167:25: note: when computing vector element at index '1'
6806// :167:25: error: use of undefined value here causes illegal behavior6794// :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'
6808// :167:25: error: use of undefined value here causes illegal behavior6796// :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'
6810// :167:25: error: use of undefined value here causes illegal behavior6798// :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'
6812// :167:25: error: use of undefined value here causes illegal behavior6800// :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'
6814// :167:25: error: use of undefined value here causes illegal behavior6802// :167:25: error: use of undefined value here causes illegal behavior
6803// :167:25: note: when computing vector element at index '1'
6815// :167:25: error: use of undefined value here causes illegal behavior6804// :167:25: error: use of undefined value here causes illegal behavior
6805// :167:25: note: when computing vector element at index '1'
6816// :167:25: error: use of undefined value here causes illegal behavior6806// :167:25: error: use of undefined value here causes illegal behavior
6807// :167:25: note: when computing vector element at index '1'
6817// :167:25: error: use of undefined value here causes illegal behavior6808// :167:25: error: use of undefined value here causes illegal behavior
6809// :167:25: note: when computing vector element at index '1'
6818// :167:25: error: use of undefined value here causes illegal behavior6810// :167:25: error: use of undefined value here causes illegal behavior
6811// :167:25: note: when computing vector element at index '1'
6819// :167:25: error: use of undefined value here causes illegal behavior6812// :167:25: error: use of undefined value here causes illegal behavior
6813// :167:25: note: when computing vector element at index '1'
6820// :167:25: error: use of undefined value here causes illegal behavior6814// :167:25: error: use of undefined value here causes illegal behavior
6821// :167:25: note: when computing vector element at index '1'6815// :167:25: note: when computing vector element at index '1'
6822// :167:25: error: use of undefined value here causes illegal behavior6816// :167:25: error: use of undefined value here causes illegal behavior
...@@ -6826,19 +6820,25 @@ const std = @import("std");...@@ -6826,19 +6820,25 @@ const std = @import("std");
6826// :167:25: error: use of undefined value here causes illegal behavior6820// :167:25: error: use of undefined value here causes illegal behavior
6827// :167:25: note: when computing vector element at index '1'6821// :167:25: note: when computing vector element at index '1'
6828// :167:25: error: use of undefined value here causes illegal behavior6822// :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'
6830// :167:25: error: use of undefined value here causes illegal behavior6824// :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'
6832// :167:25: error: use of undefined value here causes illegal behavior6826// :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'
6834// :167:25: error: use of undefined value here causes illegal behavior6828// :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'
6836// :167:25: error: use of undefined value here causes illegal behavior6830// :167:25: error: use of undefined value here causes illegal behavior
6831// :167:25: note: when computing vector element at index '1'
6837// :167:25: error: use of undefined value here causes illegal behavior6832// :167:25: error: use of undefined value here causes illegal behavior
6833// :167:25: note: when computing vector element at index '1'
6838// :167:25: error: use of undefined value here causes illegal behavior6834// :167:25: error: use of undefined value here causes illegal behavior
6835// :167:25: note: when computing vector element at index '1'
6839// :167:25: error: use of undefined value here causes illegal behavior6836// :167:25: error: use of undefined value here causes illegal behavior
6837// :167:25: note: when computing vector element at index '1'
6840// :167:25: error: use of undefined value here causes illegal behavior6838// :167:25: error: use of undefined value here causes illegal behavior
6839// :167:25: note: when computing vector element at index '1'
6841// :167:25: error: use of undefined value here causes illegal behavior6840// :167:25: error: use of undefined value here causes illegal behavior
6841// :167:25: note: when computing vector element at index '1'
6842// :167:25: error: use of undefined value here causes illegal behavior6842// :167:25: error: use of undefined value here causes illegal behavior
6843// :167:25: note: when computing vector element at index '1'6843// :167:25: note: when computing vector element at index '1'
6844// :167:25: error: use of undefined value here causes illegal behavior6844// :167:25: error: use of undefined value here causes illegal behavior
...@@ -6848,13 +6848,13 @@ const std = @import("std");...@@ -6848,13 +6848,13 @@ const std = @import("std");
6848// :167:25: error: use of undefined value here causes illegal behavior6848// :167:25: error: use of undefined value here causes illegal behavior
6849// :167:25: note: when computing vector element at index '1'6849// :167:25: note: when computing vector element at index '1'
6850// :167:25: error: use of undefined value here causes illegal behavior6850// :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'
6852// :167:25: error: use of undefined value here causes illegal behavior6852// :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'
6854// :167:25: error: use of undefined value here causes illegal behavior6854// :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'
6856// :167:25: error: use of undefined value here causes illegal behavior6856// :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'
6858// :171:25: error: use of undefined value here causes illegal behavior6858// :171:25: error: use of undefined value here causes illegal behavior
6859// :171:25: error: use of undefined value here causes illegal behavior6859// :171:25: error: use of undefined value here causes illegal behavior
6860// :171:25: error: use of undefined value here causes illegal behavior6860// :171:25: error: use of undefined value here causes illegal behavior
...@@ -6862,21 +6862,13 @@ const std = @import("std");...@@ -6862,21 +6862,13 @@ const std = @import("std");
6862// :171:25: error: use of undefined value here causes illegal behavior6862// :171:25: error: use of undefined value here causes illegal behavior
6863// :171:25: error: use of undefined value here causes illegal behavior6863// :171:25: error: use of undefined value here causes illegal behavior
6864// :171:25: error: use of undefined value here causes illegal behavior6864// :171:25: error: use of undefined value here causes illegal behavior
6865// :171:25: note: when computing vector element at index '1'
6866// :171:25: error: use of undefined value here causes illegal behavior6865// :171:25: error: use of undefined value here causes illegal behavior
6867// :171:25: note: when computing vector element at index '1'
6868// :171:25: error: use of undefined value here causes illegal behavior6866// :171:25: error: use of undefined value here causes illegal behavior
6869// :171:25: note: when computing vector element at index '1'
6870// :171:25: error: use of undefined value here causes illegal behavior6867// :171:25: error: use of undefined value here causes illegal behavior
6871// :171:25: note: when computing vector element at index '1'
6872// :171:25: error: use of undefined value here causes illegal behavior6868// :171:25: error: use of undefined value here causes illegal behavior
6873// :171:25: note: when computing vector element at index '0'
6874// :171:25: error: use of undefined value here causes illegal behavior6869// :171:25: error: use of undefined value here causes illegal behavior
6875// :171:25: note: when computing vector element at index '0'
6876// :171:25: error: use of undefined value here causes illegal behavior6870// :171:25: error: use of undefined value here causes illegal behavior
6877// :171:25: note: when computing vector element at index '0'
6878// :171:25: error: use of undefined value here causes illegal behavior6871// :171:25: error: use of undefined value here causes illegal behavior
6879// :171:25: note: when computing vector element at index '0'
6880// :171:25: error: use of undefined value here causes illegal behavior6872// :171:25: error: use of undefined value here causes illegal behavior
6881// :171:25: error: use of undefined value here causes illegal behavior6873// :171:25: error: use of undefined value here causes illegal behavior
6882// :171:25: error: use of undefined value here causes illegal behavior6874// :171:25: error: use of undefined value here causes illegal behavior
...@@ -6884,21 +6876,13 @@ const std = @import("std");...@@ -6884,21 +6876,13 @@ const std = @import("std");
6884// :171:25: error: use of undefined value here causes illegal behavior6876// :171:25: error: use of undefined value here causes illegal behavior
6885// :171:25: error: use of undefined value here causes illegal behavior6877// :171:25: error: use of undefined value here causes illegal behavior
6886// :171:25: error: use of undefined value here causes illegal behavior6878// :171:25: error: use of undefined value here causes illegal behavior
6887// :171:25: note: when computing vector element at index '1'
6888// :171:25: error: use of undefined value here causes illegal behavior6879// :171:25: error: use of undefined value here causes illegal behavior
6889// :171:25: note: when computing vector element at index '1'
6890// :171:25: error: use of undefined value here causes illegal behavior6880// :171:25: error: use of undefined value here causes illegal behavior
6891// :171:25: note: when computing vector element at index '1'
6892// :171:25: error: use of undefined value here causes illegal behavior6881// :171:25: error: use of undefined value here causes illegal behavior
6893// :171:25: note: when computing vector element at index '1'
6894// :171:25: error: use of undefined value here causes illegal behavior6882// :171:25: error: use of undefined value here causes illegal behavior
6895// :171:25: note: when computing vector element at index '0'
6896// :171:25: error: use of undefined value here causes illegal behavior6883// :171:25: error: use of undefined value here causes illegal behavior
6897// :171:25: note: when computing vector element at index '0'
6898// :171:25: error: use of undefined value here causes illegal behavior6884// :171:25: error: use of undefined value here causes illegal behavior
6899// :171:25: note: when computing vector element at index '0'
6900// :171:25: error: use of undefined value here causes illegal behavior6885// :171:25: error: use of undefined value here causes illegal behavior
6901// :171:25: note: when computing vector element at index '0'
6902// :171:25: error: use of undefined value here causes illegal behavior6886// :171:25: error: use of undefined value here causes illegal behavior
6903// :171:25: error: use of undefined value here causes illegal behavior6887// :171:25: error: use of undefined value here causes illegal behavior
6904// :171:25: error: use of undefined value here causes illegal behavior6888// :171:25: error: use of undefined value here causes illegal behavior
...@@ -6906,21 +6890,13 @@ const std = @import("std");...@@ -6906,21 +6890,13 @@ const std = @import("std");
6906// :171:25: error: use of undefined value here causes illegal behavior6890// :171:25: error: use of undefined value here causes illegal behavior
6907// :171:25: error: use of undefined value here causes illegal behavior6891// :171:25: error: use of undefined value here causes illegal behavior
6908// :171:25: error: use of undefined value here causes illegal behavior6892// :171:25: error: use of undefined value here causes illegal behavior
6909// :171:25: note: when computing vector element at index '1'
6910// :171:25: error: use of undefined value here causes illegal behavior6893// :171:25: error: use of undefined value here causes illegal behavior
6911// :171:25: note: when computing vector element at index '1'
6912// :171:25: error: use of undefined value here causes illegal behavior6894// :171:25: error: use of undefined value here causes illegal behavior
6913// :171:25: note: when computing vector element at index '1'
6914// :171:25: error: use of undefined value here causes illegal behavior6895// :171:25: error: use of undefined value here causes illegal behavior
6915// :171:25: note: when computing vector element at index '1'
6916// :171:25: error: use of undefined value here causes illegal behavior6896// :171:25: error: use of undefined value here causes illegal behavior
6917// :171:25: note: when computing vector element at index '0'
6918// :171:25: error: use of undefined value here causes illegal behavior6897// :171:25: error: use of undefined value here causes illegal behavior
6919// :171:25: note: when computing vector element at index '0'
6920// :171:25: error: use of undefined value here causes illegal behavior6898// :171:25: error: use of undefined value here causes illegal behavior
6921// :171:25: note: when computing vector element at index '0'
6922// :171:25: error: use of undefined value here causes illegal behavior6899// :171:25: error: use of undefined value here causes illegal behavior
6923// :171:25: note: when computing vector element at index '0'
6924// :171:25: error: use of undefined value here causes illegal behavior6900// :171:25: error: use of undefined value here causes illegal behavior
6925// :171:25: error: use of undefined value here causes illegal behavior6901// :171:25: error: use of undefined value here causes illegal behavior
6926// :171:25: error: use of undefined value here causes illegal behavior6902// :171:25: error: use of undefined value here causes illegal behavior
...@@ -6928,21 +6904,13 @@ const std = @import("std");...@@ -6928,21 +6904,13 @@ const std = @import("std");
6928// :171:25: error: use of undefined value here causes illegal behavior6904// :171:25: error: use of undefined value here causes illegal behavior
6929// :171:25: error: use of undefined value here causes illegal behavior6905// :171:25: error: use of undefined value here causes illegal behavior
6930// :171:25: error: use of undefined value here causes illegal behavior6906// :171:25: error: use of undefined value here causes illegal behavior
6931// :171:25: note: when computing vector element at index '1'
6932// :171:25: error: use of undefined value here causes illegal behavior6907// :171:25: error: use of undefined value here causes illegal behavior
6933// :171:25: note: when computing vector element at index '1'
6934// :171:25: error: use of undefined value here causes illegal behavior6908// :171:25: error: use of undefined value here causes illegal behavior
6935// :171:25: note: when computing vector element at index '1'
6936// :171:25: error: use of undefined value here causes illegal behavior6909// :171:25: error: use of undefined value here causes illegal behavior
6937// :171:25: note: when computing vector element at index '1'
6938// :171:25: error: use of undefined value here causes illegal behavior6910// :171:25: error: use of undefined value here causes illegal behavior
6939// :171:25: note: when computing vector element at index '0'
6940// :171:25: error: use of undefined value here causes illegal behavior6911// :171:25: error: use of undefined value here causes illegal behavior
6941// :171:25: note: when computing vector element at index '0'
6942// :171:25: error: use of undefined value here causes illegal behavior6912// :171:25: error: use of undefined value here causes illegal behavior
6943// :171:25: note: when computing vector element at index '0'
6944// :171:25: error: use of undefined value here causes illegal behavior6913// :171:25: error: use of undefined value here causes illegal behavior
6945// :171:25: note: when computing vector element at index '0'
6946// :171:25: error: use of undefined value here causes illegal behavior6914// :171:25: error: use of undefined value here causes illegal behavior
6947// :171:25: error: use of undefined value here causes illegal behavior6915// :171:25: error: use of undefined value here causes illegal behavior
6948// :171:25: error: use of undefined value here causes illegal behavior6916// :171:25: error: use of undefined value here causes illegal behavior
...@@ -6950,13 +6918,9 @@ const std = @import("std");...@@ -6950,13 +6918,9 @@ const std = @import("std");
6950// :171:25: error: use of undefined value here causes illegal behavior6918// :171:25: error: use of undefined value here causes illegal behavior
6951// :171:25: error: use of undefined value here causes illegal behavior6919// :171:25: error: use of undefined value here causes illegal behavior
6952// :171:25: error: use of undefined value here causes illegal behavior6920// :171:25: error: use of undefined value here causes illegal behavior
6953// :171:25: note: when computing vector element at index '1'
6954// :171:25: error: use of undefined value here causes illegal behavior6921// :171:25: error: use of undefined value here causes illegal behavior
6955// :171:25: note: when computing vector element at index '1'
6956// :171:25: error: use of undefined value here causes illegal behavior6922// :171:25: error: use of undefined value here causes illegal behavior
6957// :171:25: note: when computing vector element at index '1'
6958// :171:25: error: use of undefined value here causes illegal behavior6923// :171:25: error: use of undefined value here causes illegal behavior
6959// :171:25: note: when computing vector element at index '1'
6960// :171:25: error: use of undefined value here causes illegal behavior6924// :171:25: error: use of undefined value here causes illegal behavior
6961// :171:25: note: when computing vector element at index '0'6925// :171:25: note: when computing vector element at index '0'
6962// :171:25: error: use of undefined value here causes illegal behavior6926// :171:25: error: use of undefined value here causes illegal behavior
...@@ -6966,19 +6930,21 @@ const std = @import("std");...@@ -6966,19 +6930,21 @@ const std = @import("std");
6966// :171:25: error: use of undefined value here causes illegal behavior6930// :171:25: error: use of undefined value here causes illegal behavior
6967// :171:25: note: when computing vector element at index '0'6931// :171:25: note: when computing vector element at index '0'
6968// :171:25: error: use of undefined value here causes illegal behavior6932// :171:25: error: use of undefined value here causes illegal behavior
6933// :171:25: note: when computing vector element at index '0'
6969// :171:25: error: use of undefined value here causes illegal behavior6934// :171:25: error: use of undefined value here causes illegal behavior
6935// :171:25: note: when computing vector element at index '0'
6970// :171:25: error: use of undefined value here causes illegal behavior6936// :171:25: error: use of undefined value here causes illegal behavior
6937// :171:25: note: when computing vector element at index '0'
6971// :171:25: error: use of undefined value here causes illegal behavior6938// :171:25: error: use of undefined value here causes illegal behavior
6939// :171:25: note: when computing vector element at index '0'
6972// :171:25: error: use of undefined value here causes illegal behavior6940// :171:25: error: use of undefined value here causes illegal behavior
6941// :171:25: note: when computing vector element at index '0'
6973// :171:25: error: use of undefined value here causes illegal behavior6942// :171:25: error: use of undefined value here causes illegal behavior
6943// :171:25: note: when computing vector element at index '0'
6974// :171:25: error: use of undefined value here causes illegal behavior6944// :171:25: error: use of undefined value here causes illegal behavior
6975// :171:25: note: when computing vector element at index '1'6945// :171:25: note: when computing vector element at index '0'
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'
6980// :171:25: error: use of undefined value here causes illegal behavior6946// :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'
6982// :171:25: error: use of undefined value here causes illegal behavior6948// :171:25: error: use of undefined value here causes illegal behavior
6983// :171:25: note: when computing vector element at index '0'6949// :171:25: note: when computing vector element at index '0'
6984// :171:25: error: use of undefined value here causes illegal behavior6950// :171:25: error: use of undefined value here causes illegal behavior
...@@ -6988,19 +6954,25 @@ const std = @import("std");...@@ -6988,19 +6954,25 @@ const std = @import("std");
6988// :171:25: error: use of undefined value here causes illegal behavior6954// :171:25: error: use of undefined value here causes illegal behavior
6989// :171:25: note: when computing vector element at index '0'6955// :171:25: note: when computing vector element at index '0'
6990// :171:25: error: use of undefined value here causes illegal behavior6956// :171:25: error: use of undefined value here causes illegal behavior
6957// :171:25: note: when computing vector element at index '0'
6991// :171:25: error: use of undefined value here causes illegal behavior6958// :171:25: error: use of undefined value here causes illegal behavior
6959// :171:25: note: when computing vector element at index '0'
6992// :171:25: error: use of undefined value here causes illegal behavior6960// :171:25: error: use of undefined value here causes illegal behavior
6961// :171:25: note: when computing vector element at index '0'
6993// :171:25: error: use of undefined value here causes illegal behavior6962// :171:25: error: use of undefined value here causes illegal behavior
6963// :171:25: note: when computing vector element at index '0'
6994// :171:25: error: use of undefined value here causes illegal behavior6964// :171:25: error: use of undefined value here causes illegal behavior
6965// :171:25: note: when computing vector element at index '0'
6995// :171:25: error: use of undefined value here causes illegal behavior6966// :171:25: error: use of undefined value here causes illegal behavior
6967// :171:25: note: when computing vector element at index '0'
6996// :171:25: error: use of undefined value here causes illegal behavior6968// :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'
6998// :171:25: error: use of undefined value here causes illegal behavior6970// :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'
7000// :171:25: error: use of undefined value here causes illegal behavior6972// :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'
7002// :171:25: error: use of undefined value here causes illegal behavior6974// :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'
7004// :171:25: error: use of undefined value here causes illegal behavior6976// :171:25: error: use of undefined value here causes illegal behavior
7005// :171:25: note: when computing vector element at index '0'6977// :171:25: note: when computing vector element at index '0'
7006// :171:25: error: use of undefined value here causes illegal behavior6978// :171:25: error: use of undefined value here causes illegal behavior
...@@ -7010,19 +6982,25 @@ const std = @import("std");...@@ -7010,19 +6982,25 @@ const std = @import("std");
7010// :171:25: error: use of undefined value here causes illegal behavior6982// :171:25: error: use of undefined value here causes illegal behavior
7011// :171:25: note: when computing vector element at index '0'6983// :171:25: note: when computing vector element at index '0'
7012// :171:25: error: use of undefined value here causes illegal behavior6984// :171:25: error: use of undefined value here causes illegal behavior
6985// :171:25: note: when computing vector element at index '0'
7013// :171:25: error: use of undefined value here causes illegal behavior6986// :171:25: error: use of undefined value here causes illegal behavior
6987// :171:25: note: when computing vector element at index '0'
7014// :171:25: error: use of undefined value here causes illegal behavior6988// :171:25: error: use of undefined value here causes illegal behavior
6989// :171:25: note: when computing vector element at index '0'
7015// :171:25: error: use of undefined value here causes illegal behavior6990// :171:25: error: use of undefined value here causes illegal behavior
6991// :171:25: note: when computing vector element at index '0'
7016// :171:25: error: use of undefined value here causes illegal behavior6992// :171:25: error: use of undefined value here causes illegal behavior
6993// :171:25: note: when computing vector element at index '0'
7017// :171:25: error: use of undefined value here causes illegal behavior6994// :171:25: error: use of undefined value here causes illegal behavior
6995// :171:25: note: when computing vector element at index '0'
7018// :171:25: error: use of undefined value here causes illegal behavior6996// :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'
7020// :171:25: error: use of undefined value here causes illegal behavior6998// :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'
7022// :171:25: error: use of undefined value here causes illegal behavior7000// :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'
7024// :171:25: error: use of undefined value here causes illegal behavior7002// :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'
7026// :171:25: error: use of undefined value here causes illegal behavior7004// :171:25: error: use of undefined value here causes illegal behavior
7027// :171:25: note: when computing vector element at index '0'7005// :171:25: note: when computing vector element at index '0'
7028// :171:25: error: use of undefined value here causes illegal behavior7006// :171:25: error: use of undefined value here causes illegal behavior
...@@ -7032,11 +7010,17 @@ const std = @import("std");...@@ -7032,11 +7010,17 @@ const std = @import("std");
7032// :171:25: error: use of undefined value here causes illegal behavior7010// :171:25: error: use of undefined value here causes illegal behavior
7033// :171:25: note: when computing vector element at index '0'7011// :171:25: note: when computing vector element at index '0'
7034// :171:25: error: use of undefined value here causes illegal behavior7012// :171:25: error: use of undefined value here causes illegal behavior
7013// :171:25: note: when computing vector element at index '1'
7035// :171:25: error: use of undefined value here causes illegal behavior7014// :171:25: error: use of undefined value here causes illegal behavior
7015// :171:25: note: when computing vector element at index '1'
7036// :171:25: error: use of undefined value here causes illegal behavior7016// :171:25: error: use of undefined value here causes illegal behavior
7017// :171:25: note: when computing vector element at index '1'
7037// :171:25: error: use of undefined value here causes illegal behavior7018// :171:25: error: use of undefined value here causes illegal behavior
7019// :171:25: note: when computing vector element at index '1'
7038// :171:25: error: use of undefined value here causes illegal behavior7020// :171:25: error: use of undefined value here causes illegal behavior
7021// :171:25: note: when computing vector element at index '1'
7039// :171:25: error: use of undefined value here causes illegal behavior7022// :171:25: error: use of undefined value here causes illegal behavior
7023// :171:25: note: when computing vector element at index '1'
7040// :171:25: error: use of undefined value here causes illegal behavior7024// :171:25: error: use of undefined value here causes illegal behavior
7041// :171:25: note: when computing vector element at index '1'7025// :171:25: note: when computing vector element at index '1'
7042// :171:25: error: use of undefined value here causes illegal behavior7026// :171:25: error: use of undefined value here causes illegal behavior
...@@ -7046,19 +7030,25 @@ const std = @import("std");...@@ -7046,19 +7030,25 @@ const std = @import("std");
7046// :171:25: error: use of undefined value here causes illegal behavior7030// :171:25: error: use of undefined value here causes illegal behavior
7047// :171:25: note: when computing vector element at index '1'7031// :171:25: note: when computing vector element at index '1'
7048// :171:25: error: use of undefined value here causes illegal behavior7032// :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'
7050// :171:25: error: use of undefined value here causes illegal behavior7034// :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'
7052// :171:25: error: use of undefined value here causes illegal behavior7036// :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'
7054// :171:25: error: use of undefined value here causes illegal behavior7038// :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'
7056// :171:25: error: use of undefined value here causes illegal behavior7040// :171:25: error: use of undefined value here causes illegal behavior
7041// :171:25: note: when computing vector element at index '1'
7057// :171:25: error: use of undefined value here causes illegal behavior7042// :171:25: error: use of undefined value here causes illegal behavior
7043// :171:25: note: when computing vector element at index '1'
7058// :171:25: error: use of undefined value here causes illegal behavior7044// :171:25: error: use of undefined value here causes illegal behavior
7045// :171:25: note: when computing vector element at index '1'
7059// :171:25: error: use of undefined value here causes illegal behavior7046// :171:25: error: use of undefined value here causes illegal behavior
7047// :171:25: note: when computing vector element at index '1'
7060// :171:25: error: use of undefined value here causes illegal behavior7048// :171:25: error: use of undefined value here causes illegal behavior
7049// :171:25: note: when computing vector element at index '1'
7061// :171:25: error: use of undefined value here causes illegal behavior7050// :171:25: error: use of undefined value here causes illegal behavior
7051// :171:25: note: when computing vector element at index '1'
7062// :171:25: error: use of undefined value here causes illegal behavior7052// :171:25: error: use of undefined value here causes illegal behavior
7063// :171:25: note: when computing vector element at index '1'7053// :171:25: note: when computing vector element at index '1'
7064// :171:25: error: use of undefined value here causes illegal behavior7054// :171:25: error: use of undefined value here causes illegal behavior
...@@ -7068,19 +7058,25 @@ const std = @import("std");...@@ -7068,19 +7058,25 @@ const std = @import("std");
7068// :171:25: error: use of undefined value here causes illegal behavior7058// :171:25: error: use of undefined value here causes illegal behavior
7069// :171:25: note: when computing vector element at index '1'7059// :171:25: note: when computing vector element at index '1'
7070// :171:25: error: use of undefined value here causes illegal behavior7060// :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'
7072// :171:25: error: use of undefined value here causes illegal behavior7062// :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'
7074// :171:25: error: use of undefined value here causes illegal behavior7064// :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'
7076// :171:25: error: use of undefined value here causes illegal behavior7066// :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'
7078// :171:25: error: use of undefined value here causes illegal behavior7068// :171:25: error: use of undefined value here causes illegal behavior
7069// :171:25: note: when computing vector element at index '1'
7079// :171:25: error: use of undefined value here causes illegal behavior7070// :171:25: error: use of undefined value here causes illegal behavior
7071// :171:25: note: when computing vector element at index '1'
7080// :171:25: error: use of undefined value here causes illegal behavior7072// :171:25: error: use of undefined value here causes illegal behavior
7073// :171:25: note: when computing vector element at index '1'
7081// :171:25: error: use of undefined value here causes illegal behavior7074// :171:25: error: use of undefined value here causes illegal behavior
7075// :171:25: note: when computing vector element at index '1'
7082// :171:25: error: use of undefined value here causes illegal behavior7076// :171:25: error: use of undefined value here causes illegal behavior
7077// :171:25: note: when computing vector element at index '1'
7083// :171:25: error: use of undefined value here causes illegal behavior7078// :171:25: error: use of undefined value here causes illegal behavior
7079// :171:25: note: when computing vector element at index '1'
7084// :171:25: error: use of undefined value here causes illegal behavior7080// :171:25: error: use of undefined value here causes illegal behavior
7085// :171:25: note: when computing vector element at index '1'7081// :171:25: note: when computing vector element at index '1'
7086// :171:25: error: use of undefined value here causes illegal behavior7082// :171:25: error: use of undefined value here causes illegal behavior
...@@ -7090,37 +7086,33 @@ const std = @import("std");...@@ -7090,37 +7086,33 @@ const std = @import("std");
7090// :171:25: error: use of undefined value here causes illegal behavior7086// :171:25: error: use of undefined value here causes illegal behavior
7091// :171:25: note: when computing vector element at index '1'7087// :171:25: note: when computing vector element at index '1'
7092// :171:25: error: use of undefined value here causes illegal behavior7088// :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'
7094// :171:25: error: use of undefined value here causes illegal behavior7090// :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'
7096// :171:25: error: use of undefined value here causes illegal behavior7092// :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'
7098// :171:25: error: use of undefined value here causes illegal behavior7094// :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'
7100// :177:17: error: use of undefined value here causes illegal behavior7100// :177:17: error: use of undefined value here causes illegal behavior
7101// :177:17: error: use of undefined value here causes illegal behavior7101// :177:17: error: use of undefined value here causes illegal behavior
7102// :177:17: error: use of undefined value here causes illegal behavior7102// :177:17: error: use of undefined value here causes illegal behavior
7103// :177:17: note: when computing vector element at index '0'
7104// :177:17: error: use of undefined value here causes illegal behavior7103// :177:17: error: use of undefined value here causes illegal behavior
7105// :177:17: note: when computing vector element at index '0'
7106// :177:17: error: use of undefined value here causes illegal behavior7104// :177:17: error: use of undefined value here causes illegal behavior
7107// :177:17: note: when computing vector element at index '0'
7108// :177:17: error: use of undefined value here causes illegal behavior7105// :177:17: error: use of undefined value here causes illegal behavior
7109// :177:17: note: when computing vector element at index '0'
7110// :177:17: error: use of undefined value here causes illegal behavior7106// :177:17: error: use of undefined value here causes illegal behavior
7111// :177:17: note: when computing vector element at index '1'
7112// :177:17: error: use of undefined value here causes illegal behavior7107// :177:17: error: use of undefined value here causes illegal behavior
7113// :177:17: note: when computing vector element at index '1'
7114// :177:17: error: use of undefined value here causes illegal behavior7108// :177:17: error: use of undefined value here causes illegal behavior
7115// :177:17: note: when computing vector element at index '0'
7116// :177:17: error: use of undefined value here causes illegal behavior7109// :177:17: error: use of undefined value here causes illegal behavior
7117// :177:17: note: when computing vector element at index '0'
7118// :177:17: error: use of undefined value here causes illegal behavior7110// :177:17: error: use of undefined value here causes illegal behavior
7119// :177:17: note: when computing vector element at index '0'
7120// :177:17: error: use of undefined value here causes illegal behavior7111// :177:17: error: use of undefined value here causes illegal behavior
7121// :177:17: note: when computing vector element at index '0'
7122// :177:17: error: use of undefined value here causes illegal behavior7112// :177:17: error: use of undefined value here causes illegal behavior
7113// :177:17: note: when computing vector element at index '0'
7123// :177:17: error: use of undefined value here causes illegal behavior7114// :177:17: error: use of undefined value here causes illegal behavior
7115// :177:17: note: when computing vector element at index '0'
7124// :177:17: error: use of undefined value here causes illegal behavior7116// :177:17: error: use of undefined value here causes illegal behavior
7125// :177:17: note: when computing vector element at index '0'7117// :177:17: note: when computing vector element at index '0'
7126// :177:17: error: use of undefined value here causes illegal behavior7118// :177:17: error: use of undefined value here causes illegal behavior
...@@ -7130,9 +7122,9 @@ const std = @import("std");...@@ -7130,9 +7122,9 @@ const std = @import("std");
7130// :177:17: error: use of undefined value here causes illegal behavior7122// :177:17: error: use of undefined value here causes illegal behavior
7131// :177:17: note: when computing vector element at index '0'7123// :177:17: note: when computing vector element at index '0'
7132// :177:17: error: use of undefined value here causes illegal behavior7124// :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'
7134// :177:17: error: use of undefined value here causes illegal behavior7126// :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'
7136// :177:17: error: use of undefined value here causes illegal behavior7128// :177:17: error: use of undefined value here causes illegal behavior
7137// :177:17: note: when computing vector element at index '0'7129// :177:17: note: when computing vector element at index '0'
7138// :177:17: error: use of undefined value here causes illegal behavior7130// :177:17: error: use of undefined value here causes illegal behavior
...@@ -7142,7 +7134,9 @@ const std = @import("std");...@@ -7142,7 +7134,9 @@ const std = @import("std");
7142// :177:17: error: use of undefined value here causes illegal behavior7134// :177:17: error: use of undefined value here causes illegal behavior
7143// :177:17: note: when computing vector element at index '0'7135// :177:17: note: when computing vector element at index '0'
7144// :177:17: error: use of undefined value here causes illegal behavior7136// :177:17: error: use of undefined value here causes illegal behavior
7137// :177:17: note: when computing vector element at index '0'
7145// :177:17: error: use of undefined value here causes illegal behavior7138// :177:17: error: use of undefined value here causes illegal behavior
7139// :177:17: note: when computing vector element at index '0'
7146// :177:17: error: use of undefined value here causes illegal behavior7140// :177:17: error: use of undefined value here causes illegal behavior
7147// :177:17: note: when computing vector element at index '0'7141// :177:17: note: when computing vector element at index '0'
7148// :177:17: error: use of undefined value here causes illegal behavior7142// :177:17: error: use of undefined value here causes illegal behavior
...@@ -7152,9 +7146,9 @@ const std = @import("std");...@@ -7152,9 +7146,9 @@ const std = @import("std");
7152// :177:17: error: use of undefined value here causes illegal behavior7146// :177:17: error: use of undefined value here causes illegal behavior
7153// :177:17: note: when computing vector element at index '0'7147// :177:17: note: when computing vector element at index '0'
7154// :177:17: error: use of undefined value here causes illegal behavior7148// :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'
7156// :177:17: error: use of undefined value here causes illegal behavior7150// :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'
7158// :177:17: error: use of undefined value here causes illegal behavior7152// :177:17: error: use of undefined value here causes illegal behavior
7159// :177:17: note: when computing vector element at index '0'7153// :177:17: note: when computing vector element at index '0'
7160// :177:17: error: use of undefined value here causes illegal behavior7154// :177:17: error: use of undefined value here causes illegal behavior
...@@ -7164,7 +7158,9 @@ const std = @import("std");...@@ -7164,7 +7158,9 @@ const std = @import("std");
7164// :177:17: error: use of undefined value here causes illegal behavior7158// :177:17: error: use of undefined value here causes illegal behavior
7165// :177:17: note: when computing vector element at index '0'7159// :177:17: note: when computing vector element at index '0'
7166// :177:17: error: use of undefined value here causes illegal behavior7160// :177:17: error: use of undefined value here causes illegal behavior
7161// :177:17: note: when computing vector element at index '0'
7167// :177:17: error: use of undefined value here causes illegal behavior7162// :177:17: error: use of undefined value here causes illegal behavior
7163// :177:17: note: when computing vector element at index '0'
7168// :177:17: error: use of undefined value here causes illegal behavior7164// :177:17: error: use of undefined value here causes illegal behavior
7169// :177:17: note: when computing vector element at index '0'7165// :177:17: note: when computing vector element at index '0'
7170// :177:17: error: use of undefined value here causes illegal behavior7166// :177:17: error: use of undefined value here causes illegal behavior
...@@ -7174,9 +7170,9 @@ const std = @import("std");...@@ -7174,9 +7170,9 @@ const std = @import("std");
7174// :177:17: error: use of undefined value here causes illegal behavior7170// :177:17: error: use of undefined value here causes illegal behavior
7175// :177:17: note: when computing vector element at index '0'7171// :177:17: note: when computing vector element at index '0'
7176// :177:17: error: use of undefined value here causes illegal behavior7172// :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'
7178// :177:17: error: use of undefined value here causes illegal behavior7174// :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'
7180// :177:17: error: use of undefined value here causes illegal behavior7176// :177:17: error: use of undefined value here causes illegal behavior
7181// :177:17: note: when computing vector element at index '0'7177// :177:17: note: when computing vector element at index '0'
7182// :177:17: error: use of undefined value here causes illegal behavior7178// :177:17: error: use of undefined value here causes illegal behavior
...@@ -7186,7 +7182,9 @@ const std = @import("std");...@@ -7186,7 +7182,9 @@ const std = @import("std");
7186// :177:17: error: use of undefined value here causes illegal behavior7182// :177:17: error: use of undefined value here causes illegal behavior
7187// :177:17: note: when computing vector element at index '0'7183// :177:17: note: when computing vector element at index '0'
7188// :177:17: error: use of undefined value here causes illegal behavior7184// :177:17: error: use of undefined value here causes illegal behavior
7185// :177:17: note: when computing vector element at index '0'
7189// :177:17: error: use of undefined value here causes illegal behavior7186// :177:17: error: use of undefined value here causes illegal behavior
7187// :177:17: note: when computing vector element at index '0'
7190// :177:17: error: use of undefined value here causes illegal behavior7188// :177:17: error: use of undefined value here causes illegal behavior
7191// :177:17: note: when computing vector element at index '0'7189// :177:17: note: when computing vector element at index '0'
7192// :177:17: error: use of undefined value here causes illegal behavior7190// :177:17: error: use of undefined value here causes illegal behavior
...@@ -7196,9 +7194,9 @@ const std = @import("std");...@@ -7196,9 +7194,9 @@ const std = @import("std");
7196// :177:17: error: use of undefined value here causes illegal behavior7194// :177:17: error: use of undefined value here causes illegal behavior
7197// :177:17: note: when computing vector element at index '0'7195// :177:17: note: when computing vector element at index '0'
7198// :177:17: error: use of undefined value here causes illegal behavior7196// :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'
7200// :177:17: error: use of undefined value here causes illegal behavior7198// :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'
7202// :177:17: error: use of undefined value here causes illegal behavior7200// :177:17: error: use of undefined value here causes illegal behavior
7203// :177:17: note: when computing vector element at index '0'7201// :177:17: note: when computing vector element at index '0'
7204// :177:17: error: use of undefined value here causes illegal behavior7202// :177:17: error: use of undefined value here causes illegal behavior
...@@ -7208,27 +7206,29 @@ const std = @import("std");...@@ -7208,27 +7206,29 @@ const std = @import("std");
7208// :177:17: error: use of undefined value here causes illegal behavior7206// :177:17: error: use of undefined value here causes illegal behavior
7209// :177:17: note: when computing vector element at index '0'7207// :177:17: note: when computing vector element at index '0'
7210// :177:17: error: use of undefined value here causes illegal behavior7208// :177:17: error: use of undefined value here causes illegal behavior
7209// :177:17: note: when computing vector element at index '1'
7211// :177:17: error: use of undefined value here causes illegal behavior7210// :177:17: error: use of undefined value here causes illegal behavior
7211// :177:17: note: when computing vector element at index '1'
7212// :177:17: error: use of undefined value here causes illegal behavior7212// :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'
7214// :177:17: error: use of undefined value here causes illegal behavior7214// :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'
7216// :177:17: error: use of undefined value here causes illegal behavior7216// :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'
7218// :177:17: error: use of undefined value here causes illegal behavior7218// :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'
7220// :177:17: error: use of undefined value here causes illegal behavior7220// :177:17: error: use of undefined value here causes illegal behavior
7221// :177:17: note: when computing vector element at index '1'7221// :177:17: note: when computing vector element at index '1'
7222// :177:17: error: use of undefined value here causes illegal behavior7222// :177:17: error: use of undefined value here causes illegal behavior
7223// :177:17: note: when computing vector element at index '1'7223// :177:17: note: when computing vector element at index '1'
7224// :177:17: error: use of undefined value here causes illegal behavior7224// :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'
7226// :177:17: error: use of undefined value here causes illegal behavior7226// :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'
7228// :177:17: error: use of undefined value here causes illegal behavior7228// :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'
7230// :177:17: error: use of undefined value here causes illegal behavior7230// :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'
7232// :177:21: error: use of undefined value here causes illegal behavior7232// :177:21: error: use of undefined value here causes illegal behavior
7233// :177:21: note: when computing vector element at index '0'7233// :177:21: note: when computing vector element at index '0'
7234// :177:21: error: use of undefined value here causes illegal behavior7234// :177:21: error: use of undefined value here causes illegal behavior
...@@ -7256,27 +7256,19 @@ const std = @import("std");...@@ -7256,27 +7256,19 @@ const std = @import("std");
7256// :180:17: error: use of undefined value here causes illegal behavior7256// :180:17: error: use of undefined value here causes illegal behavior
7257// :180:17: error: use of undefined value here causes illegal behavior7257// :180:17: error: use of undefined value here causes illegal behavior
7258// :180:17: error: use of undefined value here causes illegal behavior7258// :180:17: error: use of undefined value here causes illegal behavior
7259// :180:17: note: when computing vector element at index '0'
7260// :180:17: error: use of undefined value here causes illegal behavior7259// :180:17: error: use of undefined value here causes illegal behavior
7261// :180:17: note: when computing vector element at index '0'
7262// :180:17: error: use of undefined value here causes illegal behavior7260// :180:17: error: use of undefined value here causes illegal behavior
7263// :180:17: note: when computing vector element at index '0'
7264// :180:17: error: use of undefined value here causes illegal behavior7261// :180:17: error: use of undefined value here causes illegal behavior
7265// :180:17: note: when computing vector element at index '0'
7266// :180:17: error: use of undefined value here causes illegal behavior7262// :180:17: error: use of undefined value here causes illegal behavior
7267// :180:17: note: when computing vector element at index '1'
7268// :180:17: error: use of undefined value here causes illegal behavior7263// :180:17: error: use of undefined value here causes illegal behavior
7269// :180:17: note: when computing vector element at index '1'
7270// :180:17: error: use of undefined value here causes illegal behavior7264// :180:17: error: use of undefined value here causes illegal behavior
7271// :180:17: note: when computing vector element at index '0'
7272// :180:17: error: use of undefined value here causes illegal behavior7265// :180:17: error: use of undefined value here causes illegal behavior
7273// :180:17: note: when computing vector element at index '0'
7274// :180:17: error: use of undefined value here causes illegal behavior7266// :180:17: error: use of undefined value here causes illegal behavior
7275// :180:17: note: when computing vector element at index '0'
7276// :180:17: error: use of undefined value here causes illegal behavior7267// :180:17: error: use of undefined value here causes illegal behavior
7277// :180:17: note: when computing vector element at index '0'
7278// :180:17: error: use of undefined value here causes illegal behavior7268// :180:17: error: use of undefined value here causes illegal behavior
7269// :180:17: note: when computing vector element at index '0'
7279// :180:17: error: use of undefined value here causes illegal behavior7270// :180:17: error: use of undefined value here causes illegal behavior
7271// :180:17: note: when computing vector element at index '0'
7280// :180:17: error: use of undefined value here causes illegal behavior7272// :180:17: error: use of undefined value here causes illegal behavior
7281// :180:17: note: when computing vector element at index '0'7273// :180:17: note: when computing vector element at index '0'
7282// :180:17: error: use of undefined value here causes illegal behavior7274// :180:17: error: use of undefined value here causes illegal behavior
...@@ -7286,9 +7278,9 @@ const std = @import("std");...@@ -7286,9 +7278,9 @@ const std = @import("std");
7286// :180:17: error: use of undefined value here causes illegal behavior7278// :180:17: error: use of undefined value here causes illegal behavior
7287// :180:17: note: when computing vector element at index '0'7279// :180:17: note: when computing vector element at index '0'
7288// :180:17: error: use of undefined value here causes illegal behavior7280// :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'
7290// :180:17: error: use of undefined value here causes illegal behavior7282// :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'
7292// :180:17: error: use of undefined value here causes illegal behavior7284// :180:17: error: use of undefined value here causes illegal behavior
7293// :180:17: note: when computing vector element at index '0'7285// :180:17: note: when computing vector element at index '0'
7294// :180:17: error: use of undefined value here causes illegal behavior7286// :180:17: error: use of undefined value here causes illegal behavior
...@@ -7298,7 +7290,9 @@ const std = @import("std");...@@ -7298,7 +7290,9 @@ const std = @import("std");
7298// :180:17: error: use of undefined value here causes illegal behavior7290// :180:17: error: use of undefined value here causes illegal behavior
7299// :180:17: note: when computing vector element at index '0'7291// :180:17: note: when computing vector element at index '0'
7300// :180:17: error: use of undefined value here causes illegal behavior7292// :180:17: error: use of undefined value here causes illegal behavior
7293// :180:17: note: when computing vector element at index '0'
7301// :180:17: error: use of undefined value here causes illegal behavior7294// :180:17: error: use of undefined value here causes illegal behavior
7295// :180:17: note: when computing vector element at index '0'
7302// :180:17: error: use of undefined value here causes illegal behavior7296// :180:17: error: use of undefined value here causes illegal behavior
7303// :180:17: note: when computing vector element at index '0'7297// :180:17: note: when computing vector element at index '0'
7304// :180:17: error: use of undefined value here causes illegal behavior7298// :180:17: error: use of undefined value here causes illegal behavior
...@@ -7308,9 +7302,9 @@ const std = @import("std");...@@ -7308,9 +7302,9 @@ const std = @import("std");
7308// :180:17: error: use of undefined value here causes illegal behavior7302// :180:17: error: use of undefined value here causes illegal behavior
7309// :180:17: note: when computing vector element at index '0'7303// :180:17: note: when computing vector element at index '0'
7310// :180:17: error: use of undefined value here causes illegal behavior7304// :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'
7312// :180:17: error: use of undefined value here causes illegal behavior7306// :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'
7314// :180:17: error: use of undefined value here causes illegal behavior7308// :180:17: error: use of undefined value here causes illegal behavior
7315// :180:17: note: when computing vector element at index '0'7309// :180:17: note: when computing vector element at index '0'
7316// :180:17: error: use of undefined value here causes illegal behavior7310// :180:17: error: use of undefined value here causes illegal behavior
...@@ -7320,7 +7314,9 @@ const std = @import("std");...@@ -7320,7 +7314,9 @@ const std = @import("std");
7320// :180:17: error: use of undefined value here causes illegal behavior7314// :180:17: error: use of undefined value here causes illegal behavior
7321// :180:17: note: when computing vector element at index '0'7315// :180:17: note: when computing vector element at index '0'
7322// :180:17: error: use of undefined value here causes illegal behavior7316// :180:17: error: use of undefined value here causes illegal behavior
7317// :180:17: note: when computing vector element at index '0'
7323// :180:17: error: use of undefined value here causes illegal behavior7318// :180:17: error: use of undefined value here causes illegal behavior
7319// :180:17: note: when computing vector element at index '0'
7324// :180:17: error: use of undefined value here causes illegal behavior7320// :180:17: error: use of undefined value here causes illegal behavior
7325// :180:17: note: when computing vector element at index '0'7321// :180:17: note: when computing vector element at index '0'
7326// :180:17: error: use of undefined value here causes illegal behavior7322// :180:17: error: use of undefined value here causes illegal behavior
...@@ -7330,9 +7326,9 @@ const std = @import("std");...@@ -7330,9 +7326,9 @@ const std = @import("std");
7330// :180:17: error: use of undefined value here causes illegal behavior7326// :180:17: error: use of undefined value here causes illegal behavior
7331// :180:17: note: when computing vector element at index '0'7327// :180:17: note: when computing vector element at index '0'
7332// :180:17: error: use of undefined value here causes illegal behavior7328// :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'
7334// :180:17: error: use of undefined value here causes illegal behavior7330// :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'
7336// :180:17: error: use of undefined value here causes illegal behavior7332// :180:17: error: use of undefined value here causes illegal behavior
7337// :180:17: note: when computing vector element at index '0'7333// :180:17: note: when computing vector element at index '0'
7338// :180:17: error: use of undefined value here causes illegal behavior7334// :180:17: error: use of undefined value here causes illegal behavior
...@@ -7342,7 +7338,9 @@ const std = @import("std");...@@ -7342,7 +7338,9 @@ const std = @import("std");
7342// :180:17: error: use of undefined value here causes illegal behavior7338// :180:17: error: use of undefined value here causes illegal behavior
7343// :180:17: note: when computing vector element at index '0'7339// :180:17: note: when computing vector element at index '0'
7344// :180:17: error: use of undefined value here causes illegal behavior7340// :180:17: error: use of undefined value here causes illegal behavior
7341// :180:17: note: when computing vector element at index '0'
7345// :180:17: error: use of undefined value here causes illegal behavior7342// :180:17: error: use of undefined value here causes illegal behavior
7343// :180:17: note: when computing vector element at index '0'
7346// :180:17: error: use of undefined value here causes illegal behavior7344// :180:17: error: use of undefined value here causes illegal behavior
7347// :180:17: note: when computing vector element at index '0'7345// :180:17: note: when computing vector element at index '0'
7348// :180:17: error: use of undefined value here causes illegal behavior7346// :180:17: error: use of undefined value here causes illegal behavior
...@@ -7352,9 +7350,9 @@ const std = @import("std");...@@ -7352,9 +7350,9 @@ const std = @import("std");
7352// :180:17: error: use of undefined value here causes illegal behavior7350// :180:17: error: use of undefined value here causes illegal behavior
7353// :180:17: note: when computing vector element at index '0'7351// :180:17: note: when computing vector element at index '0'
7354// :180:17: error: use of undefined value here causes illegal behavior7352// :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'
7356// :180:17: error: use of undefined value here causes illegal behavior7354// :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'
7358// :180:17: error: use of undefined value here causes illegal behavior7356// :180:17: error: use of undefined value here causes illegal behavior
7359// :180:17: note: when computing vector element at index '0'7357// :180:17: note: when computing vector element at index '0'
7360// :180:17: error: use of undefined value here causes illegal behavior7358// :180:17: error: use of undefined value here causes illegal behavior
...@@ -7364,27 +7362,29 @@ const std = @import("std");...@@ -7364,27 +7362,29 @@ const std = @import("std");
7364// :180:17: error: use of undefined value here causes illegal behavior7362// :180:17: error: use of undefined value here causes illegal behavior
7365// :180:17: note: when computing vector element at index '0'7363// :180:17: note: when computing vector element at index '0'
7366// :180:17: error: use of undefined value here causes illegal behavior7364// :180:17: error: use of undefined value here causes illegal behavior
7365// :180:17: note: when computing vector element at index '1'
7367// :180:17: error: use of undefined value here causes illegal behavior7366// :180:17: error: use of undefined value here causes illegal behavior
7367// :180:17: note: when computing vector element at index '1'
7368// :180:17: error: use of undefined value here causes illegal behavior7368// :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'
7370// :180:17: error: use of undefined value here causes illegal behavior7370// :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'
7372// :180:17: error: use of undefined value here causes illegal behavior7372// :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'
7374// :180:17: error: use of undefined value here causes illegal behavior7374// :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'
7376// :180:17: error: use of undefined value here causes illegal behavior7376// :180:17: error: use of undefined value here causes illegal behavior
7377// :180:17: note: when computing vector element at index '1'7377// :180:17: note: when computing vector element at index '1'
7378// :180:17: error: use of undefined value here causes illegal behavior7378// :180:17: error: use of undefined value here causes illegal behavior
7379// :180:17: note: when computing vector element at index '1'7379// :180:17: note: when computing vector element at index '1'
7380// :180:17: error: use of undefined value here causes illegal behavior7380// :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'
7382// :180:17: error: use of undefined value here causes illegal behavior7382// :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'
7384// :180:17: error: use of undefined value here causes illegal behavior7384// :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'
7386// :180:17: error: use of undefined value here causes illegal behavior7386// :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'
7388// :180:21: error: use of undefined value here causes illegal behavior7388// :180:21: error: use of undefined value here causes illegal behavior
7389// :180:21: note: when computing vector element at index '0'7389// :180:21: note: when computing vector element at index '0'
7390// :180:21: error: use of undefined value here causes illegal behavior7390// :180:21: error: use of undefined value here causes illegal behavior
...@@ -7412,27 +7412,19 @@ const std = @import("std");...@@ -7412,27 +7412,19 @@ const std = @import("std");
7412// :183:17: error: use of undefined value here causes illegal behavior7412// :183:17: error: use of undefined value here causes illegal behavior
7413// :183:17: error: use of undefined value here causes illegal behavior7413// :183:17: error: use of undefined value here causes illegal behavior
7414// :183:17: error: use of undefined value here causes illegal behavior7414// :183:17: error: use of undefined value here causes illegal behavior
7415// :183:17: note: when computing vector element at index '0'
7416// :183:17: error: use of undefined value here causes illegal behavior7415// :183:17: error: use of undefined value here causes illegal behavior
7417// :183:17: note: when computing vector element at index '0'
7418// :183:17: error: use of undefined value here causes illegal behavior7416// :183:17: error: use of undefined value here causes illegal behavior
7419// :183:17: note: when computing vector element at index '0'
7420// :183:17: error: use of undefined value here causes illegal behavior7417// :183:17: error: use of undefined value here causes illegal behavior
7421// :183:17: note: when computing vector element at index '0'
7422// :183:17: error: use of undefined value here causes illegal behavior7418// :183:17: error: use of undefined value here causes illegal behavior
7423// :183:17: note: when computing vector element at index '1'
7424// :183:17: error: use of undefined value here causes illegal behavior7419// :183:17: error: use of undefined value here causes illegal behavior
7425// :183:17: note: when computing vector element at index '1'
7426// :183:17: error: use of undefined value here causes illegal behavior7420// :183:17: error: use of undefined value here causes illegal behavior
7427// :183:17: note: when computing vector element at index '0'
7428// :183:17: error: use of undefined value here causes illegal behavior7421// :183:17: error: use of undefined value here causes illegal behavior
7429// :183:17: note: when computing vector element at index '0'
7430// :183:17: error: use of undefined value here causes illegal behavior7422// :183:17: error: use of undefined value here causes illegal behavior
7431// :183:17: note: when computing vector element at index '0'
7432// :183:17: error: use of undefined value here causes illegal behavior7423// :183:17: error: use of undefined value here causes illegal behavior
7433// :183:17: note: when computing vector element at index '0'
7434// :183:17: error: use of undefined value here causes illegal behavior7424// :183:17: error: use of undefined value here causes illegal behavior
7425// :183:17: note: when computing vector element at index '0'
7435// :183:17: error: use of undefined value here causes illegal behavior7426// :183:17: error: use of undefined value here causes illegal behavior
7427// :183:17: note: when computing vector element at index '0'
7436// :183:17: error: use of undefined value here causes illegal behavior7428// :183:17: error: use of undefined value here causes illegal behavior
7437// :183:17: note: when computing vector element at index '0'7429// :183:17: note: when computing vector element at index '0'
7438// :183:17: error: use of undefined value here causes illegal behavior7430// :183:17: error: use of undefined value here causes illegal behavior
...@@ -7442,9 +7434,9 @@ const std = @import("std");...@@ -7442,9 +7434,9 @@ const std = @import("std");
7442// :183:17: error: use of undefined value here causes illegal behavior7434// :183:17: error: use of undefined value here causes illegal behavior
7443// :183:17: note: when computing vector element at index '0'7435// :183:17: note: when computing vector element at index '0'
7444// :183:17: error: use of undefined value here causes illegal behavior7436// :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'
7446// :183:17: error: use of undefined value here causes illegal behavior7438// :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'
7448// :183:17: error: use of undefined value here causes illegal behavior7440// :183:17: error: use of undefined value here causes illegal behavior
7449// :183:17: note: when computing vector element at index '0'7441// :183:17: note: when computing vector element at index '0'
7450// :183:17: error: use of undefined value here causes illegal behavior7442// :183:17: error: use of undefined value here causes illegal behavior
...@@ -7454,7 +7446,9 @@ const std = @import("std");...@@ -7454,7 +7446,9 @@ const std = @import("std");
7454// :183:17: error: use of undefined value here causes illegal behavior7446// :183:17: error: use of undefined value here causes illegal behavior
7455// :183:17: note: when computing vector element at index '0'7447// :183:17: note: when computing vector element at index '0'
7456// :183:17: error: use of undefined value here causes illegal behavior7448// :183:17: error: use of undefined value here causes illegal behavior
7449// :183:17: note: when computing vector element at index '0'
7457// :183:17: error: use of undefined value here causes illegal behavior7450// :183:17: error: use of undefined value here causes illegal behavior
7451// :183:17: note: when computing vector element at index '0'
7458// :183:17: error: use of undefined value here causes illegal behavior7452// :183:17: error: use of undefined value here causes illegal behavior
7459// :183:17: note: when computing vector element at index '0'7453// :183:17: note: when computing vector element at index '0'
7460// :183:17: error: use of undefined value here causes illegal behavior7454// :183:17: error: use of undefined value here causes illegal behavior
...@@ -7464,9 +7458,9 @@ const std = @import("std");...@@ -7464,9 +7458,9 @@ const std = @import("std");
7464// :183:17: error: use of undefined value here causes illegal behavior7458// :183:17: error: use of undefined value here causes illegal behavior
7465// :183:17: note: when computing vector element at index '0'7459// :183:17: note: when computing vector element at index '0'
7466// :183:17: error: use of undefined value here causes illegal behavior7460// :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'
7468// :183:17: error: use of undefined value here causes illegal behavior7462// :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'
7470// :183:17: error: use of undefined value here causes illegal behavior7464// :183:17: error: use of undefined value here causes illegal behavior
7471// :183:17: note: when computing vector element at index '0'7465// :183:17: note: when computing vector element at index '0'
7472// :183:17: error: use of undefined value here causes illegal behavior7466// :183:17: error: use of undefined value here causes illegal behavior
...@@ -7476,7 +7470,9 @@ const std = @import("std");...@@ -7476,7 +7470,9 @@ const std = @import("std");
7476// :183:17: error: use of undefined value here causes illegal behavior7470// :183:17: error: use of undefined value here causes illegal behavior
7477// :183:17: note: when computing vector element at index '0'7471// :183:17: note: when computing vector element at index '0'
7478// :183:17: error: use of undefined value here causes illegal behavior7472// :183:17: error: use of undefined value here causes illegal behavior
7473// :183:17: note: when computing vector element at index '0'
7479// :183:17: error: use of undefined value here causes illegal behavior7474// :183:17: error: use of undefined value here causes illegal behavior
7475// :183:17: note: when computing vector element at index '0'
7480// :183:17: error: use of undefined value here causes illegal behavior7476// :183:17: error: use of undefined value here causes illegal behavior
7481// :183:17: note: when computing vector element at index '0'7477// :183:17: note: when computing vector element at index '0'
7482// :183:17: error: use of undefined value here causes illegal behavior7478// :183:17: error: use of undefined value here causes illegal behavior
...@@ -7486,9 +7482,9 @@ const std = @import("std");...@@ -7486,9 +7482,9 @@ const std = @import("std");
7486// :183:17: error: use of undefined value here causes illegal behavior7482// :183:17: error: use of undefined value here causes illegal behavior
7487// :183:17: note: when computing vector element at index '0'7483// :183:17: note: when computing vector element at index '0'
7488// :183:17: error: use of undefined value here causes illegal behavior7484// :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'
7490// :183:17: error: use of undefined value here causes illegal behavior7486// :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'
7492// :183:17: error: use of undefined value here causes illegal behavior7488// :183:17: error: use of undefined value here causes illegal behavior
7493// :183:17: note: when computing vector element at index '0'7489// :183:17: note: when computing vector element at index '0'
7494// :183:17: error: use of undefined value here causes illegal behavior7490// :183:17: error: use of undefined value here causes illegal behavior
...@@ -7498,7 +7494,9 @@ const std = @import("std");...@@ -7498,7 +7494,9 @@ const std = @import("std");
7498// :183:17: error: use of undefined value here causes illegal behavior7494// :183:17: error: use of undefined value here causes illegal behavior
7499// :183:17: note: when computing vector element at index '0'7495// :183:17: note: when computing vector element at index '0'
7500// :183:17: error: use of undefined value here causes illegal behavior7496// :183:17: error: use of undefined value here causes illegal behavior
7497// :183:17: note: when computing vector element at index '0'
7501// :183:17: error: use of undefined value here causes illegal behavior7498// :183:17: error: use of undefined value here causes illegal behavior
7499// :183:17: note: when computing vector element at index '0'
7502// :183:17: error: use of undefined value here causes illegal behavior7500// :183:17: error: use of undefined value here causes illegal behavior
7503// :183:17: note: when computing vector element at index '0'7501// :183:17: note: when computing vector element at index '0'
7504// :183:17: error: use of undefined value here causes illegal behavior7502// :183:17: error: use of undefined value here causes illegal behavior
...@@ -7508,9 +7506,9 @@ const std = @import("std");...@@ -7508,9 +7506,9 @@ const std = @import("std");
7508// :183:17: error: use of undefined value here causes illegal behavior7506// :183:17: error: use of undefined value here causes illegal behavior
7509// :183:17: note: when computing vector element at index '0'7507// :183:17: note: when computing vector element at index '0'
7510// :183:17: error: use of undefined value here causes illegal behavior7508// :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'
7512// :183:17: error: use of undefined value here causes illegal behavior7510// :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'
7514// :183:17: error: use of undefined value here causes illegal behavior7512// :183:17: error: use of undefined value here causes illegal behavior
7515// :183:17: note: when computing vector element at index '0'7513// :183:17: note: when computing vector element at index '0'
7516// :183:17: error: use of undefined value here causes illegal behavior7514// :183:17: error: use of undefined value here causes illegal behavior
...@@ -7520,27 +7518,29 @@ const std = @import("std");...@@ -7520,27 +7518,29 @@ const std = @import("std");
7520// :183:17: error: use of undefined value here causes illegal behavior7518// :183:17: error: use of undefined value here causes illegal behavior
7521// :183:17: note: when computing vector element at index '0'7519// :183:17: note: when computing vector element at index '0'
7522// :183:17: error: use of undefined value here causes illegal behavior7520// :183:17: error: use of undefined value here causes illegal behavior
7521// :183:17: note: when computing vector element at index '1'
7523// :183:17: error: use of undefined value here causes illegal behavior7522// :183:17: error: use of undefined value here causes illegal behavior
7523// :183:17: note: when computing vector element at index '1'
7524// :183:17: error: use of undefined value here causes illegal behavior7524// :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'
7526// :183:17: error: use of undefined value here causes illegal behavior7526// :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'
7528// :183:17: error: use of undefined value here causes illegal behavior7528// :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'
7530// :183:17: error: use of undefined value here causes illegal behavior7530// :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'
7532// :183:17: error: use of undefined value here causes illegal behavior7532// :183:17: error: use of undefined value here causes illegal behavior
7533// :183:17: note: when computing vector element at index '1'7533// :183:17: note: when computing vector element at index '1'
7534// :183:17: error: use of undefined value here causes illegal behavior7534// :183:17: error: use of undefined value here causes illegal behavior
7535// :183:17: note: when computing vector element at index '1'7535// :183:17: note: when computing vector element at index '1'
7536// :183:17: error: use of undefined value here causes illegal behavior7536// :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'
7538// :183:17: error: use of undefined value here causes illegal behavior7538// :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'
7540// :183:17: error: use of undefined value here causes illegal behavior7540// :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'
7542// :183:17: error: use of undefined value here causes illegal behavior7542// :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'
7544// :183:21: error: use of undefined value here causes illegal behavior7544// :183:21: error: use of undefined value here causes illegal behavior
7545// :183:21: note: when computing vector element at index '0'7545// :183:21: note: when computing vector element at index '0'
7546// :183:21: error: use of undefined value here causes illegal behavior7546// :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 {...@@ -681,1800 +681,1360 @@ inline fn testFloatWithValue(comptime Float: type, x: Float) void {
681// @as(@Vector(2, u8), undefined)681// @as(@Vector(2, u8), undefined)
682// @as(@Vector(2, u8), [runtime value])682// @as(@Vector(2, u8), [runtime value])
683// @as(@Vector(2, u8), [runtime value])683// @as(@Vector(2, u8), [runtime value])
684// @as(i8, undefined)684// @as(i500, undefined)
685// @as(i8, undefined)685// @as(i500, undefined)
686// @as(@Vector(2, i8), .{ 6, undefined })686// @as(@Vector(2, i500), .{ 6, undefined })
687// @as(@Vector(2, i8), .{ undefined, 6 })687// @as(@Vector(2, i500), .{ undefined, 6 })
688// @as(@Vector(2, i8), undefined)688// @as(@Vector(2, i500), undefined)
689// @as(@Vector(2, i8), .{ 6, undefined })689// @as(@Vector(2, i500), .{ 6, undefined })
690// @as(@Vector(2, i8), .{ 6, undefined })690// @as(@Vector(2, i500), .{ 6, undefined })
691// @as(@Vector(2, i8), undefined)691// @as(@Vector(2, i500), undefined)
692// @as(@Vector(2, i8), undefined)692// @as(@Vector(2, i500), undefined)
693// @as(@Vector(2, i8), .{ undefined, 6 })693// @as(@Vector(2, i500), .{ undefined, 6 })
694// @as(@Vector(2, i8), undefined)694// @as(@Vector(2, i500), undefined)
695// @as(@Vector(2, i8), .{ undefined, 6 })695// @as(@Vector(2, i500), .{ undefined, 6 })
696// @as(@Vector(2, i8), undefined)696// @as(@Vector(2, i500), undefined)
697// @as(@Vector(2, i8), undefined)697// @as(@Vector(2, i500), undefined)
698// @as(@Vector(2, i8), undefined)698// @as(@Vector(2, i500), undefined)
699// @as(@Vector(2, i8), undefined)699// @as(@Vector(2, i500), undefined)
700// @as(@Vector(2, i8), undefined)700// @as(@Vector(2, i500), undefined)
701// @as(i8, undefined)701// @as(i500, undefined)
702// @as(i8, undefined)702// @as(i500, undefined)
703// @as(@Vector(2, i8), .{ 6, undefined })703// @as(@Vector(2, i500), .{ 6, undefined })
704// @as(@Vector(2, i8), .{ undefined, 6 })704// @as(@Vector(2, i500), .{ undefined, 6 })
705// @as(@Vector(2, i8), undefined)705// @as(@Vector(2, i500), undefined)
706// @as(@Vector(2, i8), .{ 6, undefined })706// @as(@Vector(2, i500), .{ 6, undefined })
707// @as(@Vector(2, i8), .{ 6, undefined })707// @as(@Vector(2, i500), .{ 6, undefined })
708// @as(@Vector(2, i8), undefined)708// @as(@Vector(2, i500), undefined)
709// @as(@Vector(2, i8), undefined)709// @as(@Vector(2, i500), undefined)
710// @as(@Vector(2, i8), .{ undefined, 6 })710// @as(@Vector(2, i500), .{ undefined, 6 })
711// @as(@Vector(2, i8), undefined)711// @as(@Vector(2, i500), undefined)
712// @as(@Vector(2, i8), .{ undefined, 6 })712// @as(@Vector(2, i500), .{ undefined, 6 })
713// @as(@Vector(2, i8), undefined)713// @as(@Vector(2, i500), undefined)
714// @as(@Vector(2, i8), undefined)714// @as(@Vector(2, i500), undefined)
715// @as(@Vector(2, i8), undefined)715// @as(@Vector(2, i500), undefined)
716// @as(@Vector(2, i8), undefined)716// @as(@Vector(2, i500), undefined)
717// @as(@Vector(2, i8), undefined)717// @as(@Vector(2, i500), undefined)
718// @as(i8, undefined)718// @as(i500, undefined)
719// @as(i8, undefined)719// @as(i500, undefined)
720// @as(@Vector(2, i8), .{ 0, undefined })720// @as(@Vector(2, i500), .{ 0, undefined })
721// @as(@Vector(2, i8), .{ undefined, 0 })721// @as(@Vector(2, i500), .{ undefined, 0 })
722// @as(@Vector(2, i8), undefined)722// @as(@Vector(2, i500), undefined)
723// @as(@Vector(2, i8), .{ 0, undefined })723// @as(@Vector(2, i500), .{ 0, undefined })
724// @as(@Vector(2, i8), .{ 0, undefined })724// @as(@Vector(2, i500), .{ 0, undefined })
725// @as(@Vector(2, i8), undefined)725// @as(@Vector(2, i500), undefined)
726// @as(@Vector(2, i8), undefined)726// @as(@Vector(2, i500), undefined)
727// @as(@Vector(2, i8), .{ undefined, 0 })727// @as(@Vector(2, i500), .{ undefined, 0 })
728// @as(@Vector(2, i8), undefined)728// @as(@Vector(2, i500), undefined)
729// @as(@Vector(2, i8), .{ undefined, 0 })729// @as(@Vector(2, i500), .{ undefined, 0 })
730// @as(@Vector(2, i8), undefined)730// @as(@Vector(2, i500), undefined)
731// @as(@Vector(2, i8), undefined)731// @as(@Vector(2, i500), undefined)
732// @as(@Vector(2, i8), undefined)732// @as(@Vector(2, i500), undefined)
733// @as(@Vector(2, i8), undefined)733// @as(@Vector(2, i500), undefined)
734// @as(@Vector(2, i8), undefined)734// @as(@Vector(2, i500), undefined)
735// @as(i8, undefined)735// @as(i500, undefined)
736// @as(i8, undefined)736// @as(i500, undefined)
737// @as(@Vector(2, i8), .{ 0, undefined })737// @as(@Vector(2, i500), .{ 0, undefined })
738// @as(@Vector(2, i8), .{ undefined, 0 })738// @as(@Vector(2, i500), .{ undefined, 0 })
739// @as(@Vector(2, i8), undefined)739// @as(@Vector(2, i500), undefined)
740// @as(@Vector(2, i8), .{ 0, undefined })740// @as(@Vector(2, i500), .{ 0, undefined })
741// @as(@Vector(2, i8), .{ 0, undefined })741// @as(@Vector(2, i500), .{ 0, undefined })
742// @as(@Vector(2, i8), undefined)742// @as(@Vector(2, i500), undefined)
743// @as(@Vector(2, i8), undefined)743// @as(@Vector(2, i500), undefined)
744// @as(@Vector(2, i8), .{ undefined, 0 })744// @as(@Vector(2, i500), .{ undefined, 0 })
745// @as(@Vector(2, i8), undefined)745// @as(@Vector(2, i500), undefined)
746// @as(@Vector(2, i8), .{ undefined, 0 })746// @as(@Vector(2, i500), .{ undefined, 0 })
747// @as(@Vector(2, i8), undefined)747// @as(@Vector(2, i500), undefined)
748// @as(@Vector(2, i8), undefined)748// @as(@Vector(2, i500), undefined)
749// @as(@Vector(2, i8), undefined)749// @as(@Vector(2, i500), undefined)
750// @as(@Vector(2, i8), undefined)750// @as(@Vector(2, i500), undefined)
751// @as(@Vector(2, i8), undefined)751// @as(@Vector(2, i500), undefined)
752// @as(i8, undefined)752// @as(i500, undefined)
753// @as(i8, undefined)753// @as(i500, undefined)
754// @as(@Vector(2, i8), .{ 9, undefined })754// @as(@Vector(2, i500), .{ 9, undefined })
755// @as(@Vector(2, i8), .{ undefined, 9 })755// @as(@Vector(2, i500), .{ undefined, 9 })
756// @as(@Vector(2, i8), undefined)756// @as(@Vector(2, i500), undefined)
757// @as(@Vector(2, i8), .{ 9, undefined })757// @as(@Vector(2, i500), .{ 9, undefined })
758// @as(@Vector(2, i8), .{ 9, undefined })758// @as(@Vector(2, i500), .{ 9, undefined })
759// @as(@Vector(2, i8), undefined)759// @as(@Vector(2, i500), undefined)
760// @as(@Vector(2, i8), undefined)760// @as(@Vector(2, i500), undefined)
761// @as(@Vector(2, i8), .{ undefined, 9 })761// @as(@Vector(2, i500), .{ undefined, 9 })
762// @as(@Vector(2, i8), undefined)762// @as(@Vector(2, i500), undefined)
763// @as(@Vector(2, i8), .{ undefined, 9 })763// @as(@Vector(2, i500), .{ undefined, 9 })
764// @as(@Vector(2, i8), undefined)764// @as(@Vector(2, i500), undefined)
765// @as(@Vector(2, i8), undefined)765// @as(@Vector(2, i500), undefined)
766// @as(@Vector(2, i8), undefined)766// @as(@Vector(2, i500), undefined)
767// @as(@Vector(2, i8), undefined)767// @as(@Vector(2, i500), undefined)
768// @as(@Vector(2, i8), undefined)768// @as(@Vector(2, i500), undefined)
769// @as(i8, undefined)769// @as(i500, undefined)
770// @as(i8, undefined)770// @as(i500, undefined)
771// @as(@Vector(2, i8), .{ 9, undefined })771// @as(@Vector(2, i500), .{ 9, undefined })
772// @as(@Vector(2, i8), .{ undefined, 9 })772// @as(@Vector(2, i500), .{ undefined, 9 })
773// @as(@Vector(2, i8), undefined)773// @as(@Vector(2, i500), undefined)
774// @as(@Vector(2, i8), .{ 9, undefined })774// @as(@Vector(2, i500), .{ 9, undefined })
775// @as(@Vector(2, i8), .{ 9, undefined })775// @as(@Vector(2, i500), .{ 9, undefined })
776// @as(@Vector(2, i8), undefined)776// @as(@Vector(2, i500), undefined)
777// @as(@Vector(2, i8), undefined)777// @as(@Vector(2, i500), undefined)
778// @as(@Vector(2, i8), .{ undefined, 9 })778// @as(@Vector(2, i500), .{ undefined, 9 })
779// @as(@Vector(2, i8), undefined)779// @as(@Vector(2, i500), undefined)
780// @as(@Vector(2, i8), .{ undefined, 9 })780// @as(@Vector(2, i500), .{ undefined, 9 })
781// @as(@Vector(2, i8), undefined)781// @as(@Vector(2, i500), undefined)
782// @as(@Vector(2, i8), undefined)782// @as(@Vector(2, i500), undefined)
783// @as(@Vector(2, i8), undefined)783// @as(@Vector(2, i500), undefined)
784// @as(@Vector(2, i8), undefined)784// @as(@Vector(2, i500), undefined)
785// @as(@Vector(2, i8), undefined)785// @as(@Vector(2, i500), undefined)
786// @as(i8, undefined)786// @as(i500, undefined)
787// @as(i8, undefined)787// @as(i500, undefined)
788// @as(@Vector(2, i8), .{ 0, undefined })788// @as(@Vector(2, i500), .{ 0, undefined })
789// @as(@Vector(2, i8), .{ undefined, 0 })789// @as(@Vector(2, i500), .{ undefined, 0 })
790// @as(@Vector(2, i8), undefined)790// @as(@Vector(2, i500), undefined)
791// @as(@Vector(2, i8), .{ 0, undefined })791// @as(@Vector(2, i500), .{ 0, undefined })
792// @as(@Vector(2, i8), .{ 0, undefined })792// @as(@Vector(2, i500), .{ 0, undefined })
793// @as(@Vector(2, i8), undefined)793// @as(@Vector(2, i500), undefined)
794// @as(@Vector(2, i8), undefined)794// @as(@Vector(2, i500), undefined)
795// @as(@Vector(2, i8), .{ undefined, 0 })795// @as(@Vector(2, i500), .{ undefined, 0 })
796// @as(@Vector(2, i8), undefined)796// @as(@Vector(2, i500), undefined)
797// @as(@Vector(2, i8), .{ undefined, 0 })797// @as(@Vector(2, i500), .{ undefined, 0 })
798// @as(@Vector(2, i8), undefined)798// @as(@Vector(2, i500), undefined)
799// @as(@Vector(2, i8), undefined)799// @as(@Vector(2, i500), undefined)
800// @as(@Vector(2, i8), undefined)800// @as(@Vector(2, i500), undefined)
801// @as(@Vector(2, i8), undefined)801// @as(@Vector(2, i500), undefined)
802// @as(@Vector(2, i8), undefined)802// @as(@Vector(2, i500), undefined)
803// @as(i8, undefined)803// @as(i500, undefined)
804// @as(@Vector(2, i8), undefined)804// @as(@Vector(2, i500), undefined)
805// @as(i8, undefined)805// @as(i500, undefined)
806// @as(i8, undefined)806// @as(i500, undefined)
807// @as(@Vector(2, i8), undefined)807// @as(@Vector(2, i500), undefined)
808// @as(@Vector(2, i8), undefined)808// @as(@Vector(2, i500), undefined)
809// @as(i8, undefined)809// @as(i500, undefined)
810// @as(@Vector(2, i8), undefined)810// @as(@Vector(2, i500), undefined)
811// @as(i8, undefined)811// @as(i500, undefined)
812// @as(i8, undefined)812// @as(i500, undefined)
813// @as(@Vector(2, i8), [runtime value])813// @as(@Vector(2, i500), [runtime value])
814// @as(@Vector(2, i8), [runtime value])814// @as(@Vector(2, i500), [runtime value])
815// @as(@Vector(2, i8), undefined)815// @as(@Vector(2, i500), undefined)
816// @as(@Vector(2, i8), [runtime value])816// @as(@Vector(2, i500), [runtime value])
817// @as(@Vector(2, i8), [runtime value])817// @as(@Vector(2, i500), [runtime value])
818// @as(@Vector(2, i8), [runtime value])818// @as(@Vector(2, i500), [runtime value])
819// @as(@Vector(2, i8), undefined)819// @as(@Vector(2, i500), undefined)
820// @as(@Vector(2, i8), [runtime value])820// @as(@Vector(2, i500), [runtime value])
821// @as(@Vector(2, i8), [runtime value])821// @as(@Vector(2, i500), [runtime value])
822// @as(@Vector(2, i8), [runtime value])822// @as(@Vector(2, i500), [runtime value])
823// @as(@Vector(2, i8), undefined)823// @as(@Vector(2, i500), undefined)
824// @as(@Vector(2, i8), undefined)824// @as(@Vector(2, i500), undefined)
825// @as(@Vector(2, i8), undefined)825// @as(@Vector(2, i500), undefined)
826// @as(@Vector(2, i8), undefined)826// @as(@Vector(2, i500), undefined)
827// @as(@Vector(2, i8), undefined)827// @as(@Vector(2, i500), undefined)
828// @as(i8, undefined)828// @as(i500, undefined)
829// @as(i8, undefined)829// @as(i500, undefined)
830// @as(@Vector(2, i8), [runtime value])830// @as(@Vector(2, i500), [runtime value])
831// @as(@Vector(2, i8), [runtime value])831// @as(@Vector(2, i500), [runtime value])
832// @as(@Vector(2, i8), undefined)832// @as(@Vector(2, i500), undefined)
833// @as(@Vector(2, i8), [runtime value])833// @as(@Vector(2, i500), [runtime value])
834// @as(@Vector(2, i8), [runtime value])834// @as(@Vector(2, i500), [runtime value])
835// @as(@Vector(2, i8), [runtime value])835// @as(@Vector(2, i500), [runtime value])
836// @as(@Vector(2, i8), undefined)836// @as(@Vector(2, i500), undefined)
837// @as(@Vector(2, i8), [runtime value])837// @as(@Vector(2, i500), [runtime value])
838// @as(@Vector(2, i8), [runtime value])838// @as(@Vector(2, i500), [runtime value])
839// @as(@Vector(2, i8), [runtime value])839// @as(@Vector(2, i500), [runtime value])
840// @as(@Vector(2, i8), undefined)840// @as(@Vector(2, i500), undefined)
841// @as(@Vector(2, i8), undefined)841// @as(@Vector(2, i500), undefined)
842// @as(@Vector(2, i8), undefined)842// @as(@Vector(2, i500), undefined)
843// @as(@Vector(2, i8), undefined)843// @as(@Vector(2, i500), undefined)
844// @as(@Vector(2, i8), undefined)844// @as(@Vector(2, i500), undefined)
845// @as(i8, undefined)845// @as(i500, undefined)
846// @as(i8, undefined)846// @as(i500, undefined)
847// @as(@Vector(2, i8), [runtime value])847// @as(@Vector(2, i500), [runtime value])
848// @as(@Vector(2, i8), [runtime value])848// @as(@Vector(2, i500), [runtime value])
849// @as(@Vector(2, i8), undefined)849// @as(@Vector(2, i500), undefined)
850// @as(@Vector(2, i8), [runtime value])850// @as(@Vector(2, i500), [runtime value])
851// @as(@Vector(2, i8), [runtime value])851// @as(@Vector(2, i500), [runtime value])
852// @as(@Vector(2, i8), [runtime value])852// @as(@Vector(2, i500), [runtime value])
853// @as(@Vector(2, i8), undefined)853// @as(@Vector(2, i500), undefined)
854// @as(@Vector(2, i8), [runtime value])854// @as(@Vector(2, i500), [runtime value])
855// @as(@Vector(2, i8), [runtime value])855// @as(@Vector(2, i500), [runtime value])
856// @as(@Vector(2, i8), [runtime value])856// @as(@Vector(2, i500), [runtime value])
857// @as(@Vector(2, i8), undefined)857// @as(@Vector(2, i500), undefined)
858// @as(@Vector(2, i8), undefined)858// @as(@Vector(2, i500), undefined)
859// @as(@Vector(2, i8), undefined)859// @as(@Vector(2, i500), undefined)
860// @as(@Vector(2, i8), undefined)860// @as(@Vector(2, i500), undefined)
861// @as(@Vector(2, i8), undefined)861// @as(@Vector(2, i500), undefined)
862// @as(i8, undefined)862// @as(i500, undefined)
863// @as(i8, undefined)863// @as(i500, undefined)
864// @as(@Vector(2, i8), [runtime value])864// @as(@Vector(2, i500), [runtime value])
865// @as(@Vector(2, i8), [runtime value])865// @as(@Vector(2, i500), [runtime value])
866// @as(@Vector(2, i8), undefined)866// @as(@Vector(2, i500), undefined)
867// @as(@Vector(2, i8), [runtime value])867// @as(@Vector(2, i500), [runtime value])
868// @as(@Vector(2, i8), [runtime value])868// @as(@Vector(2, i500), [runtime value])
869// @as(@Vector(2, i8), [runtime value])869// @as(@Vector(2, i500), [runtime value])
870// @as(@Vector(2, i8), undefined)870// @as(@Vector(2, i500), undefined)
871// @as(@Vector(2, i8), [runtime value])871// @as(@Vector(2, i500), [runtime value])
872// @as(@Vector(2, i8), [runtime value])872// @as(@Vector(2, i500), [runtime value])
873// @as(@Vector(2, i8), [runtime value])873// @as(@Vector(2, i500), [runtime value])
874// @as(@Vector(2, i8), undefined)874// @as(@Vector(2, i500), undefined)
875// @as(@Vector(2, i8), undefined)875// @as(@Vector(2, i500), undefined)
876// @as(@Vector(2, i8), undefined)876// @as(@Vector(2, i500), undefined)
877// @as(@Vector(2, i8), undefined)877// @as(@Vector(2, i500), undefined)
878// @as(@Vector(2, i8), undefined)878// @as(@Vector(2, i500), undefined)
879// @as(i8, undefined)879// @as(i500, undefined)
880// @as(i8, undefined)880// @as(i500, undefined)
881// @as(@Vector(2, i8), [runtime value])881// @as(@Vector(2, i500), [runtime value])
882// @as(@Vector(2, i8), [runtime value])882// @as(@Vector(2, i500), [runtime value])
883// @as(@Vector(2, i8), undefined)883// @as(@Vector(2, i500), undefined)
884// @as(@Vector(2, i8), [runtime value])884// @as(@Vector(2, i500), [runtime value])
885// @as(@Vector(2, i8), [runtime value])885// @as(@Vector(2, i500), [runtime value])
886// @as(@Vector(2, i8), [runtime value])886// @as(@Vector(2, i500), [runtime value])
887// @as(@Vector(2, i8), undefined)887// @as(@Vector(2, i500), undefined)
888// @as(@Vector(2, i8), [runtime value])888// @as(@Vector(2, i500), [runtime value])
889// @as(@Vector(2, i8), [runtime value])889// @as(@Vector(2, i500), [runtime value])
890// @as(@Vector(2, i8), [runtime value])890// @as(@Vector(2, i500), [runtime value])
891// @as(@Vector(2, i8), undefined)891// @as(@Vector(2, i500), undefined)
892// @as(@Vector(2, i8), undefined)892// @as(@Vector(2, i500), undefined)
893// @as(@Vector(2, i8), undefined)893// @as(@Vector(2, i500), undefined)
894// @as(@Vector(2, i8), undefined)894// @as(@Vector(2, i500), undefined)
895// @as(@Vector(2, i8), undefined)895// @as(@Vector(2, i500), undefined)
896// @as(i8, undefined)896// @as(i500, undefined)
897// @as(i8, undefined)897// @as(i500, undefined)
898// @as(@Vector(2, i8), [runtime value])898// @as(@Vector(2, i500), [runtime value])
899// @as(@Vector(2, i8), [runtime value])899// @as(@Vector(2, i500), [runtime value])
900// @as(@Vector(2, i8), undefined)900// @as(@Vector(2, i500), undefined)
901// @as(@Vector(2, i8), [runtime value])901// @as(@Vector(2, i500), [runtime value])
902// @as(@Vector(2, i8), [runtime value])902// @as(@Vector(2, i500), [runtime value])
903// @as(@Vector(2, i8), [runtime value])903// @as(@Vector(2, i500), [runtime value])
904// @as(@Vector(2, i8), undefined)904// @as(@Vector(2, i500), undefined)
905// @as(@Vector(2, i8), [runtime value])905// @as(@Vector(2, i500), [runtime value])
906// @as(@Vector(2, i8), [runtime value])906// @as(@Vector(2, i500), [runtime value])
907// @as(@Vector(2, i8), [runtime value])907// @as(@Vector(2, i500), [runtime value])
908// @as(@Vector(2, i8), undefined)908// @as(@Vector(2, i500), undefined)
909// @as(@Vector(2, i8), undefined)909// @as(@Vector(2, i500), undefined)
910// @as(@Vector(2, i8), undefined)910// @as(@Vector(2, i500), undefined)
911// @as(@Vector(2, i8), undefined)911// @as(@Vector(2, i500), undefined)
912// @as(@Vector(2, i8), undefined)912// @as(@Vector(2, i500), undefined)
913// @as(i8, [runtime value])913// @as(i500, [runtime value])
914// @as(i8, [runtime value])914// @as(i500, [runtime value])
915// @as(@Vector(2, i8), [runtime value])915// @as(@Vector(2, i500), [runtime value])
916// @as(@Vector(2, i8), [runtime value])916// @as(@Vector(2, i500), [runtime value])
917// @as(@Vector(2, i8), [runtime value])917// @as(@Vector(2, i500), [runtime value])
918// @as(@Vector(2, i8), [runtime value])918// @as(@Vector(2, i500), [runtime value])
919// @as(@Vector(2, i8), [runtime value])919// @as(@Vector(2, i500), [runtime value])
920// @as(@Vector(2, i8), [runtime value])920// @as(@Vector(2, i500), [runtime value])
921// @as(@Vector(2, i8), [runtime value])921// @as(@Vector(2, i500), [runtime value])
922// @as(@Vector(2, i8), [runtime value])922// @as(@Vector(2, i500), [runtime value])
923// @as(@Vector(2, i8), [runtime value])923// @as(@Vector(2, i500), [runtime value])
924// @as(@Vector(2, i8), [runtime value])924// @as(@Vector(2, i500), [runtime value])
925// @as(@Vector(2, i8), [runtime value])925// @as(@Vector(2, i500), [runtime value])
926// @as(@Vector(2, i8), [runtime value])926// @as(@Vector(2, i500), [runtime value])
927// @as(@Vector(2, i8), [runtime value])927// @as(@Vector(2, i500), [runtime value])
928// @as(@Vector(2, i8), [runtime value])928// @as(@Vector(2, i500), [runtime value])
929// @as(@Vector(2, i8), undefined)929// @as(@Vector(2, i500), undefined)
930// @as(i8, undefined)930// @as(i500, undefined)
931// @as(@Vector(2, i8), undefined)931// @as(@Vector(2, i500), undefined)
932// @as(i8, undefined)932// @as(i500, undefined)
933// @as(i8, undefined)933// @as(i500, undefined)
934// @as(@Vector(2, i8), undefined)934// @as(@Vector(2, i500), undefined)
935// @as(@Vector(2, i8), undefined)935// @as(@Vector(2, i500), undefined)
936// @as(i8, undefined)936// @as(i500, undefined)
937// @as(@Vector(2, i8), undefined)937// @as(@Vector(2, i500), undefined)
938// @as(u32, undefined)938// @as(u500, undefined)
939// @as(u32, undefined)939// @as(u500, undefined)
940// @as(@Vector(2, u32), .{ 6, undefined })940// @as(@Vector(2, u500), .{ 6, undefined })
941// @as(@Vector(2, u32), .{ undefined, 6 })941// @as(@Vector(2, u500), .{ undefined, 6 })
942// @as(@Vector(2, u32), undefined)942// @as(@Vector(2, u500), undefined)
943// @as(@Vector(2, u32), .{ 6, undefined })943// @as(@Vector(2, u500), .{ 6, undefined })
944// @as(@Vector(2, u32), .{ 6, undefined })944// @as(@Vector(2, u500), .{ 6, undefined })
945// @as(@Vector(2, u32), undefined)945// @as(@Vector(2, u500), undefined)
946// @as(@Vector(2, u32), undefined)946// @as(@Vector(2, u500), undefined)
947// @as(@Vector(2, u32), .{ undefined, 6 })947// @as(@Vector(2, u500), .{ undefined, 6 })
948// @as(@Vector(2, u32), undefined)948// @as(@Vector(2, u500), undefined)
949// @as(@Vector(2, u32), .{ undefined, 6 })949// @as(@Vector(2, u500), .{ undefined, 6 })
950// @as(@Vector(2, u32), undefined)950// @as(@Vector(2, u500), undefined)
951// @as(@Vector(2, u32), undefined)951// @as(@Vector(2, u500), undefined)
952// @as(@Vector(2, u32), undefined)952// @as(@Vector(2, u500), undefined)
953// @as(@Vector(2, u32), undefined)953// @as(@Vector(2, u500), undefined)
954// @as(@Vector(2, u32), undefined)954// @as(@Vector(2, u500), undefined)
955// @as(u32, undefined)955// @as(u500, undefined)
956// @as(u32, undefined)956// @as(u500, undefined)
957// @as(@Vector(2, u32), .{ 6, undefined })957// @as(@Vector(2, u500), .{ 6, undefined })
958// @as(@Vector(2, u32), .{ undefined, 6 })958// @as(@Vector(2, u500), .{ undefined, 6 })
959// @as(@Vector(2, u32), undefined)959// @as(@Vector(2, u500), undefined)
960// @as(@Vector(2, u32), .{ 6, undefined })960// @as(@Vector(2, u500), .{ 6, undefined })
961// @as(@Vector(2, u32), .{ 6, undefined })961// @as(@Vector(2, u500), .{ 6, undefined })
962// @as(@Vector(2, u32), undefined)962// @as(@Vector(2, u500), undefined)
963// @as(@Vector(2, u32), undefined)963// @as(@Vector(2, u500), undefined)
964// @as(@Vector(2, u32), .{ undefined, 6 })964// @as(@Vector(2, u500), .{ undefined, 6 })
965// @as(@Vector(2, u32), undefined)965// @as(@Vector(2, u500), undefined)
966// @as(@Vector(2, u32), .{ undefined, 6 })966// @as(@Vector(2, u500), .{ undefined, 6 })
967// @as(@Vector(2, u32), undefined)967// @as(@Vector(2, u500), undefined)
968// @as(@Vector(2, u32), undefined)968// @as(@Vector(2, u500), undefined)
969// @as(@Vector(2, u32), undefined)969// @as(@Vector(2, u500), undefined)
970// @as(@Vector(2, u32), undefined)970// @as(@Vector(2, u500), undefined)
971// @as(@Vector(2, u32), undefined)971// @as(@Vector(2, u500), undefined)
972// @as(u32, undefined)972// @as(u500, undefined)
973// @as(u32, undefined)973// @as(u500, undefined)
974// @as(@Vector(2, u32), .{ 0, undefined })974// @as(@Vector(2, u500), .{ 0, undefined })
975// @as(@Vector(2, u32), .{ undefined, 0 })975// @as(@Vector(2, u500), .{ undefined, 0 })
976// @as(@Vector(2, u32), undefined)976// @as(@Vector(2, u500), undefined)
977// @as(@Vector(2, u32), .{ 0, undefined })977// @as(@Vector(2, u500), .{ 0, undefined })
978// @as(@Vector(2, u32), .{ 0, undefined })978// @as(@Vector(2, u500), .{ 0, undefined })
979// @as(@Vector(2, u32), undefined)979// @as(@Vector(2, u500), undefined)
980// @as(@Vector(2, u32), undefined)980// @as(@Vector(2, u500), undefined)
981// @as(@Vector(2, u32), .{ undefined, 0 })981// @as(@Vector(2, u500), .{ undefined, 0 })
982// @as(@Vector(2, u32), undefined)982// @as(@Vector(2, u500), undefined)
983// @as(@Vector(2, u32), .{ undefined, 0 })983// @as(@Vector(2, u500), .{ undefined, 0 })
984// @as(@Vector(2, u32), undefined)984// @as(@Vector(2, u500), undefined)
985// @as(@Vector(2, u32), undefined)985// @as(@Vector(2, u500), undefined)
986// @as(@Vector(2, u32), undefined)986// @as(@Vector(2, u500), undefined)
987// @as(@Vector(2, u32), undefined)987// @as(@Vector(2, u500), undefined)
988// @as(@Vector(2, u32), undefined)988// @as(@Vector(2, u500), undefined)
989// @as(u32, undefined)989// @as(u500, undefined)
990// @as(u32, undefined)990// @as(u500, undefined)
991// @as(@Vector(2, u32), .{ 0, undefined })991// @as(@Vector(2, u500), .{ 0, undefined })
992// @as(@Vector(2, u32), .{ undefined, 0 })992// @as(@Vector(2, u500), .{ undefined, 0 })
993// @as(@Vector(2, u32), undefined)993// @as(@Vector(2, u500), undefined)
994// @as(@Vector(2, u32), .{ 0, undefined })994// @as(@Vector(2, u500), .{ 0, undefined })
995// @as(@Vector(2, u32), .{ 0, undefined })995// @as(@Vector(2, u500), .{ 0, undefined })
996// @as(@Vector(2, u32), undefined)996// @as(@Vector(2, u500), undefined)
997// @as(@Vector(2, u32), undefined)997// @as(@Vector(2, u500), undefined)
998// @as(@Vector(2, u32), .{ undefined, 0 })998// @as(@Vector(2, u500), .{ undefined, 0 })
999// @as(@Vector(2, u32), undefined)999// @as(@Vector(2, u500), undefined)
1000// @as(@Vector(2, u32), .{ undefined, 0 })1000// @as(@Vector(2, u500), .{ undefined, 0 })
1001// @as(@Vector(2, u32), undefined)1001// @as(@Vector(2, u500), undefined)
1002// @as(@Vector(2, u32), undefined)1002// @as(@Vector(2, u500), undefined)
1003// @as(@Vector(2, u32), undefined)1003// @as(@Vector(2, u500), undefined)
1004// @as(@Vector(2, u32), undefined)1004// @as(@Vector(2, u500), undefined)
1005// @as(@Vector(2, u32), undefined)1005// @as(@Vector(2, u500), undefined)
1006// @as(u32, undefined)1006// @as(u500, undefined)
1007// @as(u32, undefined)1007// @as(u500, undefined)
1008// @as(@Vector(2, u32), .{ 9, undefined })1008// @as(@Vector(2, u500), .{ 9, undefined })
1009// @as(@Vector(2, u32), .{ undefined, 9 })1009// @as(@Vector(2, u500), .{ undefined, 9 })
1010// @as(@Vector(2, u32), undefined)1010// @as(@Vector(2, u500), undefined)
1011// @as(@Vector(2, u32), .{ 9, undefined })1011// @as(@Vector(2, u500), .{ 9, undefined })
1012// @as(@Vector(2, u32), .{ 9, undefined })1012// @as(@Vector(2, u500), .{ 9, undefined })
1013// @as(@Vector(2, u32), undefined)1013// @as(@Vector(2, u500), undefined)
1014// @as(@Vector(2, u32), undefined)1014// @as(@Vector(2, u500), undefined)
1015// @as(@Vector(2, u32), .{ undefined, 9 })1015// @as(@Vector(2, u500), .{ undefined, 9 })
1016// @as(@Vector(2, u32), undefined)1016// @as(@Vector(2, u500), undefined)
1017// @as(@Vector(2, u32), .{ undefined, 9 })1017// @as(@Vector(2, u500), .{ undefined, 9 })
1018// @as(@Vector(2, u32), undefined)1018// @as(@Vector(2, u500), undefined)
1019// @as(@Vector(2, u32), undefined)1019// @as(@Vector(2, u500), undefined)
1020// @as(@Vector(2, u32), undefined)1020// @as(@Vector(2, u500), undefined)
1021// @as(@Vector(2, u32), undefined)1021// @as(@Vector(2, u500), undefined)
1022// @as(@Vector(2, u32), undefined)1022// @as(@Vector(2, u500), undefined)
1023// @as(u32, undefined)1023// @as(u500, undefined)
1024// @as(u32, undefined)1024// @as(u500, undefined)
1025// @as(@Vector(2, u32), .{ 9, undefined })1025// @as(@Vector(2, u500), .{ 9, undefined })
1026// @as(@Vector(2, u32), .{ undefined, 9 })1026// @as(@Vector(2, u500), .{ undefined, 9 })
1027// @as(@Vector(2, u32), undefined)1027// @as(@Vector(2, u500), undefined)
1028// @as(@Vector(2, u32), .{ 9, undefined })1028// @as(@Vector(2, u500), .{ 9, undefined })
1029// @as(@Vector(2, u32), .{ 9, undefined })1029// @as(@Vector(2, u500), .{ 9, undefined })
1030// @as(@Vector(2, u32), undefined)1030// @as(@Vector(2, u500), undefined)
1031// @as(@Vector(2, u32), undefined)1031// @as(@Vector(2, u500), undefined)
1032// @as(@Vector(2, u32), .{ undefined, 9 })1032// @as(@Vector(2, u500), .{ undefined, 9 })
1033// @as(@Vector(2, u32), undefined)1033// @as(@Vector(2, u500), undefined)
1034// @as(@Vector(2, u32), .{ undefined, 9 })1034// @as(@Vector(2, u500), .{ undefined, 9 })
1035// @as(@Vector(2, u32), undefined)1035// @as(@Vector(2, u500), undefined)
1036// @as(@Vector(2, u32), undefined)1036// @as(@Vector(2, u500), undefined)
1037// @as(@Vector(2, u32), undefined)1037// @as(@Vector(2, u500), undefined)
1038// @as(@Vector(2, u32), undefined)1038// @as(@Vector(2, u500), undefined)
1039// @as(@Vector(2, u32), undefined)1039// @as(@Vector(2, u500), undefined)
1040// @as(u32, undefined)1040// @as(u500, undefined)
1041// @as(u32, undefined)1041// @as(u500, undefined)
1042// @as(@Vector(2, u32), .{ 24, undefined })1042// @as(@Vector(2, u500), .{ 24, undefined })
1043// @as(@Vector(2, u32), .{ undefined, 24 })1043// @as(@Vector(2, u500), .{ undefined, 24 })
1044// @as(@Vector(2, u32), undefined)1044// @as(@Vector(2, u500), undefined)
1045// @as(@Vector(2, u32), .{ 24, undefined })1045// @as(@Vector(2, u500), .{ 24, undefined })
1046// @as(@Vector(2, u32), .{ 24, undefined })1046// @as(@Vector(2, u500), .{ 24, undefined })
1047// @as(@Vector(2, u32), undefined)1047// @as(@Vector(2, u500), undefined)
1048// @as(@Vector(2, u32), undefined)1048// @as(@Vector(2, u500), undefined)
1049// @as(@Vector(2, u32), .{ undefined, 24 })1049// @as(@Vector(2, u500), .{ undefined, 24 })
1050// @as(@Vector(2, u32), undefined)1050// @as(@Vector(2, u500), undefined)
1051// @as(@Vector(2, u32), .{ undefined, 24 })1051// @as(@Vector(2, u500), .{ undefined, 24 })
1052// @as(@Vector(2, u32), undefined)1052// @as(@Vector(2, u500), undefined)
1053// @as(@Vector(2, u32), undefined)1053// @as(@Vector(2, u500), undefined)
1054// @as(@Vector(2, u32), undefined)1054// @as(@Vector(2, u500), undefined)
1055// @as(@Vector(2, u32), undefined)1055// @as(@Vector(2, u500), undefined)
1056// @as(@Vector(2, u32), undefined)1056// @as(@Vector(2, u500), undefined)
1057// @as(u32, undefined)1057// @as(u500, undefined)
1058// @as(u32, undefined)1058// @as(u500, undefined)
1059// @as(@Vector(2, u32), .{ 0, undefined })1059// @as(@Vector(2, u500), .{ 0, undefined })
1060// @as(@Vector(2, u32), .{ undefined, 0 })1060// @as(@Vector(2, u500), .{ undefined, 0 })
1061// @as(@Vector(2, u32), undefined)1061// @as(@Vector(2, u500), undefined)
1062// @as(@Vector(2, u32), .{ 0, undefined })1062// @as(@Vector(2, u500), .{ 0, undefined })
1063// @as(@Vector(2, u32), .{ 0, undefined })1063// @as(@Vector(2, u500), .{ 0, undefined })
1064// @as(@Vector(2, u32), undefined)1064// @as(@Vector(2, u500), undefined)
1065// @as(@Vector(2, u32), undefined)1065// @as(@Vector(2, u500), undefined)
1066// @as(@Vector(2, u32), .{ undefined, 0 })1066// @as(@Vector(2, u500), .{ undefined, 0 })
1067// @as(@Vector(2, u32), undefined)1067// @as(@Vector(2, u500), undefined)
1068// @as(@Vector(2, u32), .{ undefined, 0 })1068// @as(@Vector(2, u500), .{ undefined, 0 })
1069// @as(@Vector(2, u32), undefined)1069// @as(@Vector(2, u500), undefined)
1070// @as(@Vector(2, u32), undefined)1070// @as(@Vector(2, u500), undefined)
1071// @as(@Vector(2, u32), undefined)1071// @as(@Vector(2, u500), undefined)
1072// @as(@Vector(2, u32), undefined)1072// @as(@Vector(2, u500), undefined)
1073// @as(@Vector(2, u32), undefined)1073// @as(@Vector(2, u500), undefined)
1074// @as(u32, undefined)1074// @as(u500, undefined)
1075// @as(@Vector(2, u32), undefined)1075// @as(@Vector(2, u500), undefined)
1076// @as(u32, undefined)1076// @as(u500, undefined)
1077// @as(u32, undefined)1077// @as(u500, undefined)
1078// @as(@Vector(2, u32), undefined)1078// @as(@Vector(2, u500), undefined)
1079// @as(@Vector(2, u32), undefined)1079// @as(@Vector(2, u500), undefined)
1080// @as(u1, undefined)1080// @as(u1, undefined)
1081// @as(@Vector(2, u1), .{ 1, undefined })1081// @as(@Vector(2, u1), .{ 1, undefined })
1082// @as(@Vector(2, u1), .{ undefined, 1 })1082// @as(@Vector(2, u1), .{ undefined, 1 })
1083// @as(@Vector(2, u1), undefined)1083// @as(@Vector(2, u1), undefined)
1084// @as(u32, undefined)1084// @as(u500, undefined)
1085// @as(@Vector(2, u32), undefined)1085// @as(@Vector(2, u500), undefined)
1086// @as(u32, undefined)1086// @as(u500, undefined)
1087// @as(u32, undefined)1087// @as(u500, undefined)
1088// @as(@Vector(2, u32), [runtime value])1088// @as(@Vector(2, u500), [runtime value])
1089// @as(@Vector(2, u32), [runtime value])1089// @as(@Vector(2, u500), [runtime value])
1090// @as(@Vector(2, u32), undefined)1090// @as(@Vector(2, u500), undefined)
1091// @as(@Vector(2, u32), [runtime value])1091// @as(@Vector(2, u500), [runtime value])
1092// @as(@Vector(2, u32), [runtime value])1092// @as(@Vector(2, u500), [runtime value])
1093// @as(@Vector(2, u32), [runtime value])1093// @as(@Vector(2, u500), [runtime value])
1094// @as(@Vector(2, u32), undefined)1094// @as(@Vector(2, u500), undefined)
1095// @as(@Vector(2, u32), [runtime value])1095// @as(@Vector(2, u500), [runtime value])
1096// @as(@Vector(2, u32), [runtime value])1096// @as(@Vector(2, u500), [runtime value])
1097// @as(@Vector(2, u32), [runtime value])1097// @as(@Vector(2, u500), [runtime value])
1098// @as(@Vector(2, u32), undefined)1098// @as(@Vector(2, u500), undefined)
1099// @as(@Vector(2, u32), undefined)1099// @as(@Vector(2, u500), undefined)
1100// @as(@Vector(2, u32), undefined)1100// @as(@Vector(2, u500), undefined)
1101// @as(@Vector(2, u32), undefined)1101// @as(@Vector(2, u500), undefined)
1102// @as(@Vector(2, u32), undefined)1102// @as(@Vector(2, u500), undefined)
1103// @as(u32, undefined)1103// @as(u500, undefined)
1104// @as(u32, undefined)1104// @as(u500, undefined)
1105// @as(@Vector(2, u32), [runtime value])1105// @as(@Vector(2, u500), [runtime value])
1106// @as(@Vector(2, u32), [runtime value])1106// @as(@Vector(2, u500), [runtime value])
1107// @as(@Vector(2, u32), undefined)1107// @as(@Vector(2, u500), undefined)
1108// @as(@Vector(2, u32), [runtime value])1108// @as(@Vector(2, u500), [runtime value])
1109// @as(@Vector(2, u32), [runtime value])1109// @as(@Vector(2, u500), [runtime value])
1110// @as(@Vector(2, u32), [runtime value])1110// @as(@Vector(2, u500), [runtime value])
1111// @as(@Vector(2, u32), undefined)1111// @as(@Vector(2, u500), undefined)
1112// @as(@Vector(2, u32), [runtime value])1112// @as(@Vector(2, u500), [runtime value])
1113// @as(@Vector(2, u32), [runtime value])1113// @as(@Vector(2, u500), [runtime value])
1114// @as(@Vector(2, u32), [runtime value])1114// @as(@Vector(2, u500), [runtime value])
1115// @as(@Vector(2, u32), undefined)1115// @as(@Vector(2, u500), undefined)
1116// @as(@Vector(2, u32), undefined)1116// @as(@Vector(2, u500), undefined)
1117// @as(@Vector(2, u32), undefined)1117// @as(@Vector(2, u500), undefined)
1118// @as(@Vector(2, u32), undefined)1118// @as(@Vector(2, u500), undefined)
1119// @as(@Vector(2, u32), undefined)1119// @as(@Vector(2, u500), undefined)
1120// @as(u32, undefined)1120// @as(u500, undefined)
1121// @as(u32, undefined)1121// @as(u500, undefined)
1122// @as(@Vector(2, u32), [runtime value])1122// @as(@Vector(2, u500), [runtime value])
1123// @as(@Vector(2, u32), [runtime value])1123// @as(@Vector(2, u500), [runtime value])
1124// @as(@Vector(2, u32), undefined)1124// @as(@Vector(2, u500), undefined)
1125// @as(@Vector(2, u32), [runtime value])1125// @as(@Vector(2, u500), [runtime value])
1126// @as(@Vector(2, u32), [runtime value])1126// @as(@Vector(2, u500), [runtime value])
1127// @as(@Vector(2, u32), [runtime value])1127// @as(@Vector(2, u500), [runtime value])
1128// @as(@Vector(2, u32), undefined)1128// @as(@Vector(2, u500), undefined)
1129// @as(@Vector(2, u32), [runtime value])1129// @as(@Vector(2, u500), [runtime value])
1130// @as(@Vector(2, u32), [runtime value])1130// @as(@Vector(2, u500), [runtime value])
1131// @as(@Vector(2, u32), [runtime value])1131// @as(@Vector(2, u500), [runtime value])
1132// @as(@Vector(2, u32), undefined)1132// @as(@Vector(2, u500), undefined)
1133// @as(@Vector(2, u32), undefined)1133// @as(@Vector(2, u500), undefined)
1134// @as(@Vector(2, u32), undefined)1134// @as(@Vector(2, u500), undefined)
1135// @as(@Vector(2, u32), undefined)1135// @as(@Vector(2, u500), undefined)
1136// @as(@Vector(2, u32), undefined)1136// @as(@Vector(2, u500), undefined)
1137// @as(u32, undefined)1137// @as(u500, undefined)
1138// @as(u32, undefined)1138// @as(u500, undefined)
1139// @as(@Vector(2, u32), [runtime value])1139// @as(@Vector(2, u500), [runtime value])
1140// @as(@Vector(2, u32), [runtime value])1140// @as(@Vector(2, u500), [runtime value])
1141// @as(@Vector(2, u32), undefined)1141// @as(@Vector(2, u500), undefined)
1142// @as(@Vector(2, u32), [runtime value])1142// @as(@Vector(2, u500), [runtime value])
1143// @as(@Vector(2, u32), [runtime value])1143// @as(@Vector(2, u500), [runtime value])
1144// @as(@Vector(2, u32), [runtime value])1144// @as(@Vector(2, u500), [runtime value])
1145// @as(@Vector(2, u32), undefined)1145// @as(@Vector(2, u500), undefined)
1146// @as(@Vector(2, u32), [runtime value])1146// @as(@Vector(2, u500), [runtime value])
1147// @as(@Vector(2, u32), [runtime value])1147// @as(@Vector(2, u500), [runtime value])
1148// @as(@Vector(2, u32), [runtime value])1148// @as(@Vector(2, u500), [runtime value])
1149// @as(@Vector(2, u32), undefined)1149// @as(@Vector(2, u500), undefined)
1150// @as(@Vector(2, u32), undefined)1150// @as(@Vector(2, u500), undefined)
1151// @as(@Vector(2, u32), undefined)1151// @as(@Vector(2, u500), undefined)
1152// @as(@Vector(2, u32), undefined)1152// @as(@Vector(2, u500), undefined)
1153// @as(@Vector(2, u32), undefined)1153// @as(@Vector(2, u500), undefined)
1154// @as(u32, undefined)1154// @as(u500, undefined)
1155// @as(u32, undefined)1155// @as(u500, undefined)
1156// @as(@Vector(2, u32), [runtime value])1156// @as(@Vector(2, u500), [runtime value])
1157// @as(@Vector(2, u32), [runtime value])1157// @as(@Vector(2, u500), [runtime value])
1158// @as(@Vector(2, u32), undefined)1158// @as(@Vector(2, u500), undefined)
1159// @as(@Vector(2, u32), [runtime value])1159// @as(@Vector(2, u500), [runtime value])
1160// @as(@Vector(2, u32), [runtime value])1160// @as(@Vector(2, u500), [runtime value])
1161// @as(@Vector(2, u32), [runtime value])1161// @as(@Vector(2, u500), [runtime value])
1162// @as(@Vector(2, u32), undefined)1162// @as(@Vector(2, u500), undefined)
1163// @as(@Vector(2, u32), [runtime value])1163// @as(@Vector(2, u500), [runtime value])
1164// @as(@Vector(2, u32), [runtime value])1164// @as(@Vector(2, u500), [runtime value])
1165// @as(@Vector(2, u32), [runtime value])1165// @as(@Vector(2, u500), [runtime value])
1166// @as(@Vector(2, u32), undefined)1166// @as(@Vector(2, u500), undefined)
1167// @as(@Vector(2, u32), undefined)1167// @as(@Vector(2, u500), undefined)
1168// @as(@Vector(2, u32), undefined)1168// @as(@Vector(2, u500), undefined)
1169// @as(@Vector(2, u32), undefined)1169// @as(@Vector(2, u500), undefined)
1170// @as(@Vector(2, u32), undefined)1170// @as(@Vector(2, u500), undefined)
1171// @as(u32, undefined)1171// @as(u500, undefined)
1172// @as(u32, undefined)1172// @as(u500, undefined)
1173// @as(@Vector(2, u32), [runtime value])1173// @as(@Vector(2, u500), [runtime value])
1174// @as(@Vector(2, u32), [runtime value])1174// @as(@Vector(2, u500), [runtime value])
1175// @as(@Vector(2, u32), undefined)1175// @as(@Vector(2, u500), undefined)
1176// @as(@Vector(2, u32), [runtime value])1176// @as(@Vector(2, u500), [runtime value])
1177// @as(@Vector(2, u32), [runtime value])1177// @as(@Vector(2, u500), [runtime value])
1178// @as(@Vector(2, u32), [runtime value])1178// @as(@Vector(2, u500), [runtime value])
1179// @as(@Vector(2, u32), undefined)1179// @as(@Vector(2, u500), undefined)
1180// @as(@Vector(2, u32), [runtime value])1180// @as(@Vector(2, u500), [runtime value])
1181// @as(@Vector(2, u32), [runtime value])1181// @as(@Vector(2, u500), [runtime value])
1182// @as(@Vector(2, u32), [runtime value])1182// @as(@Vector(2, u500), [runtime value])
1183// @as(@Vector(2, u32), undefined)1183// @as(@Vector(2, u500), undefined)
1184// @as(@Vector(2, u32), undefined)1184// @as(@Vector(2, u500), undefined)
1185// @as(@Vector(2, u32), undefined)1185// @as(@Vector(2, u500), undefined)
1186// @as(@Vector(2, u32), undefined)1186// @as(@Vector(2, u500), undefined)
1187// @as(@Vector(2, u32), undefined)1187// @as(@Vector(2, u500), undefined)
1188// @as(u32, undefined)1188// @as(u500, undefined)
1189// @as(u32, undefined)1189// @as(u500, undefined)
1190// @as(@Vector(2, u32), [runtime value])1190// @as(@Vector(2, u500), [runtime value])
1191// @as(@Vector(2, u32), [runtime value])1191// @as(@Vector(2, u500), [runtime value])
1192// @as(@Vector(2, u32), undefined)1192// @as(@Vector(2, u500), undefined)
1193// @as(@Vector(2, u32), [runtime value])1193// @as(@Vector(2, u500), [runtime value])
1194// @as(@Vector(2, u32), [runtime value])1194// @as(@Vector(2, u500), [runtime value])
1195// @as(@Vector(2, u32), [runtime value])1195// @as(@Vector(2, u500), [runtime value])
1196// @as(@Vector(2, u32), undefined)1196// @as(@Vector(2, u500), undefined)
1197// @as(@Vector(2, u32), [runtime value])1197// @as(@Vector(2, u500), [runtime value])
1198// @as(@Vector(2, u32), [runtime value])1198// @as(@Vector(2, u500), [runtime value])
1199// @as(@Vector(2, u32), [runtime value])1199// @as(@Vector(2, u500), [runtime value])
1200// @as(@Vector(2, u32), undefined)1200// @as(@Vector(2, u500), undefined)
1201// @as(@Vector(2, u32), undefined)1201// @as(@Vector(2, u500), undefined)
1202// @as(@Vector(2, u32), undefined)1202// @as(@Vector(2, u500), undefined)
1203// @as(@Vector(2, u32), undefined)1203// @as(@Vector(2, u500), undefined)
1204// @as(@Vector(2, u32), undefined)1204// @as(@Vector(2, u500), undefined)
1205// @as(u32, [runtime value])1205// @as(u500, [runtime value])
1206// @as(u32, [runtime value])1206// @as(u500, [runtime value])
1207// @as(@Vector(2, u32), [runtime value])1207// @as(@Vector(2, u500), [runtime value])
1208// @as(@Vector(2, u32), [runtime value])1208// @as(@Vector(2, u500), [runtime value])
1209// @as(@Vector(2, u32), [runtime value])1209// @as(@Vector(2, u500), [runtime value])
1210// @as(@Vector(2, u32), [runtime value])1210// @as(@Vector(2, u500), [runtime value])
1211// @as(@Vector(2, u32), [runtime value])1211// @as(@Vector(2, u500), [runtime value])
1212// @as(@Vector(2, u32), [runtime value])1212// @as(@Vector(2, u500), [runtime value])
1213// @as(@Vector(2, u32), [runtime value])1213// @as(@Vector(2, u500), [runtime value])
1214// @as(@Vector(2, u32), [runtime value])1214// @as(@Vector(2, u500), [runtime value])
1215// @as(@Vector(2, u32), [runtime value])1215// @as(@Vector(2, u500), [runtime value])
1216// @as(@Vector(2, u32), [runtime value])1216// @as(@Vector(2, u500), [runtime value])
1217// @as(@Vector(2, u32), [runtime value])1217// @as(@Vector(2, u500), [runtime value])
1218// @as(@Vector(2, u32), [runtime value])1218// @as(@Vector(2, u500), [runtime value])
1219// @as(@Vector(2, u32), [runtime value])1219// @as(@Vector(2, u500), [runtime value])
1220// @as(@Vector(2, u32), [runtime value])1220// @as(@Vector(2, u500), [runtime value])
1221// @as(@Vector(2, u32), undefined)1221// @as(@Vector(2, u500), undefined)
1222// @as(u32, undefined)1222// @as(u500, undefined)
1223// @as(@Vector(2, u32), undefined)1223// @as(@Vector(2, u500), undefined)
1224// @as(u32, undefined)1224// @as(u500, undefined)
1225// @as(u32, undefined)1225// @as(u500, undefined)
1226// @as(@Vector(2, u32), undefined)1226// @as(@Vector(2, u500), undefined)
1227// @as(@Vector(2, u32), undefined)1227// @as(@Vector(2, u500), undefined)
1228// @as(u1, undefined)1228// @as(u1, undefined)
1229// @as(@Vector(2, u1), [runtime value])1229// @as(@Vector(2, u1), [runtime value])
1230// @as(@Vector(2, u1), [runtime value])1230// @as(@Vector(2, u1), [runtime value])
1231// @as(@Vector(2, u1), undefined)1231// @as(@Vector(2, u1), undefined)
1232// @as(u32, undefined)1232// @as(u500, undefined)
1233// @as(@Vector(2, u32), undefined)1233// @as(@Vector(2, u500), undefined)
1234// @as(i32, undefined)1234// @as(i32, undefined)
1235// @as(i32, undefined)1235// @as(i32, undefined)
1236// @as(@Vector(2, i32), .{ 6, undefined })1236// @as(@Vector(2, i32), .{ 6, undefined })
1237// @as(@Vector(2, i32), .{ undefined, 6 })1237// @as(@Vector(2, i32), .{ undefined, 6 })
1238// @as(@Vector(2, i32), undefined)1238// @as(@Vector(2, i32), undefined)
1239// @as(@Vector(2, i32), .{ 6, undefined })1239// @as(@Vector(2, i32), .{ 6, undefined })
1240// @as(@Vector(2, i32), .{ 6, undefined })1240// @as(@Vector(2, i32), .{ 6, undefined })
1241// @as(@Vector(2, i32), undefined)1241// @as(@Vector(2, i32), undefined)
1242// @as(@Vector(2, i32), undefined)1242// @as(@Vector(2, i32), undefined)
1243// @as(@Vector(2, i32), .{ undefined, 6 })1243// @as(@Vector(2, i32), .{ undefined, 6 })
1244// @as(@Vector(2, i32), undefined)1244// @as(@Vector(2, i32), undefined)
1245// @as(@Vector(2, i32), .{ undefined, 6 })1245// @as(@Vector(2, i32), .{ undefined, 6 })
1246// @as(@Vector(2, i32), undefined)1246// @as(@Vector(2, i32), undefined)
1247// @as(@Vector(2, i32), undefined)1247// @as(@Vector(2, i32), undefined)
1248// @as(@Vector(2, i32), undefined)1248// @as(@Vector(2, i32), undefined)
1249// @as(@Vector(2, i32), undefined)1249// @as(@Vector(2, i32), undefined)
1250// @as(@Vector(2, i32), undefined)1250// @as(@Vector(2, i32), undefined)
1251// @as(i32, undefined)1251// @as(i32, undefined)
1252// @as(i32, undefined)1252// @as(i32, undefined)
1253// @as(@Vector(2, i32), .{ 6, undefined })1253// @as(@Vector(2, i32), .{ 6, undefined })
1254// @as(@Vector(2, i32), .{ undefined, 6 })1254// @as(@Vector(2, i32), .{ undefined, 6 })
1255// @as(@Vector(2, i32), undefined)1255// @as(@Vector(2, i32), undefined)
1256// @as(@Vector(2, i32), .{ 6, undefined })1256// @as(@Vector(2, i32), .{ 6, undefined })
1257// @as(@Vector(2, i32), .{ 6, undefined })1257// @as(@Vector(2, i32), .{ 6, undefined })
1258// @as(@Vector(2, i32), undefined)1258// @as(@Vector(2, i32), undefined)
1259// @as(@Vector(2, i32), undefined)1259// @as(@Vector(2, i32), undefined)
1260// @as(@Vector(2, i32), .{ undefined, 6 })1260// @as(@Vector(2, i32), .{ undefined, 6 })
1261// @as(@Vector(2, i32), undefined)1261// @as(@Vector(2, i32), undefined)
1262// @as(@Vector(2, i32), .{ undefined, 6 })1262// @as(@Vector(2, i32), .{ undefined, 6 })
1263// @as(@Vector(2, i32), undefined)1263// @as(@Vector(2, i32), undefined)
1264// @as(@Vector(2, i32), undefined)1264// @as(@Vector(2, i32), undefined)
1265// @as(@Vector(2, i32), undefined)1265// @as(@Vector(2, i32), undefined)
1266// @as(@Vector(2, i32), undefined)1266// @as(@Vector(2, i32), undefined)
1267// @as(@Vector(2, i32), undefined)1267// @as(@Vector(2, i32), undefined)
1268// @as(i32, undefined)1268// @as(i32, undefined)
1269// @as(i32, undefined)1269// @as(i32, undefined)
1270// @as(@Vector(2, i32), .{ 0, undefined })1270// @as(@Vector(2, i32), .{ 0, undefined })
1271// @as(@Vector(2, i32), .{ undefined, 0 })1271// @as(@Vector(2, i32), .{ undefined, 0 })
1272// @as(@Vector(2, i32), undefined)1272// @as(@Vector(2, i32), undefined)
1273// @as(@Vector(2, i32), .{ 0, undefined })1273// @as(@Vector(2, i32), .{ 0, undefined })
1274// @as(@Vector(2, i32), .{ 0, undefined })1274// @as(@Vector(2, i32), .{ 0, undefined })
1275// @as(@Vector(2, i32), undefined)1275// @as(@Vector(2, i32), undefined)
1276// @as(@Vector(2, i32), undefined)1276// @as(@Vector(2, i32), undefined)
1277// @as(@Vector(2, i32), .{ undefined, 0 })1277// @as(@Vector(2, i32), .{ undefined, 0 })
1278// @as(@Vector(2, i32), undefined)1278// @as(@Vector(2, i32), undefined)
1279// @as(@Vector(2, i32), .{ undefined, 0 })1279// @as(@Vector(2, i32), .{ undefined, 0 })
1280// @as(@Vector(2, i32), undefined)1280// @as(@Vector(2, i32), undefined)
1281// @as(@Vector(2, i32), undefined)1281// @as(@Vector(2, i32), undefined)
1282// @as(@Vector(2, i32), undefined)1282// @as(@Vector(2, i32), undefined)
1283// @as(@Vector(2, i32), undefined)1283// @as(@Vector(2, i32), undefined)
1284// @as(@Vector(2, i32), undefined)1284// @as(@Vector(2, i32), undefined)
1285// @as(i32, undefined)1285// @as(i32, undefined)
1286// @as(i32, undefined)1286// @as(i32, undefined)
1287// @as(@Vector(2, i32), .{ 0, undefined })1287// @as(@Vector(2, i32), .{ 0, undefined })
1288// @as(@Vector(2, i32), .{ undefined, 0 })1288// @as(@Vector(2, i32), .{ undefined, 0 })
1289// @as(@Vector(2, i32), undefined)1289// @as(@Vector(2, i32), undefined)
1290// @as(@Vector(2, i32), .{ 0, undefined })1290// @as(@Vector(2, i32), .{ 0, undefined })
1291// @as(@Vector(2, i32), .{ 0, undefined })1291// @as(@Vector(2, i32), .{ 0, undefined })
1292// @as(@Vector(2, i32), undefined)1292// @as(@Vector(2, i32), undefined)
1293// @as(@Vector(2, i32), undefined)1293// @as(@Vector(2, i32), undefined)
1294// @as(@Vector(2, i32), .{ undefined, 0 })1294// @as(@Vector(2, i32), .{ undefined, 0 })
1295// @as(@Vector(2, i32), undefined)1295// @as(@Vector(2, i32), undefined)
1296// @as(@Vector(2, i32), .{ undefined, 0 })1296// @as(@Vector(2, i32), .{ undefined, 0 })
1297// @as(@Vector(2, i32), undefined)1297// @as(@Vector(2, i32), undefined)
1298// @as(@Vector(2, i32), undefined)1298// @as(@Vector(2, i32), undefined)
1299// @as(@Vector(2, i32), undefined)1299// @as(@Vector(2, i32), undefined)
1300// @as(@Vector(2, i32), undefined)1300// @as(@Vector(2, i32), undefined)
1301// @as(@Vector(2, i32), undefined)1301// @as(@Vector(2, i32), undefined)
1302// @as(i32, undefined)1302// @as(i32, undefined)
1303// @as(i32, undefined)1303// @as(i32, undefined)
1304// @as(@Vector(2, i32), .{ 9, undefined })1304// @as(@Vector(2, i32), .{ 9, undefined })
1305// @as(@Vector(2, i32), .{ undefined, 9 })1305// @as(@Vector(2, i32), .{ undefined, 9 })
1306// @as(@Vector(2, i32), undefined)1306// @as(@Vector(2, i32), undefined)
1307// @as(@Vector(2, i32), .{ 9, undefined })1307// @as(@Vector(2, i32), .{ 9, undefined })
1308// @as(@Vector(2, i32), .{ 9, undefined })1308// @as(@Vector(2, i32), .{ 9, undefined })
1309// @as(@Vector(2, i32), undefined)1309// @as(@Vector(2, i32), undefined)
1310// @as(@Vector(2, i32), undefined)1310// @as(@Vector(2, i32), undefined)
1311// @as(@Vector(2, i32), .{ undefined, 9 })1311// @as(@Vector(2, i32), .{ undefined, 9 })
1312// @as(@Vector(2, i32), undefined)1312// @as(@Vector(2, i32), undefined)
1313// @as(@Vector(2, i32), .{ undefined, 9 })1313// @as(@Vector(2, i32), .{ undefined, 9 })
1314// @as(@Vector(2, i32), undefined)1314// @as(@Vector(2, i32), undefined)
1315// @as(@Vector(2, i32), undefined)1315// @as(@Vector(2, i32), undefined)
1316// @as(@Vector(2, i32), undefined)1316// @as(@Vector(2, i32), undefined)
1317// @as(@Vector(2, i32), undefined)1317// @as(@Vector(2, i32), undefined)
1318// @as(@Vector(2, i32), undefined)1318// @as(@Vector(2, i32), undefined)
1319// @as(i32, undefined)1319// @as(i32, undefined)
1320// @as(i32, undefined)1320// @as(i32, undefined)
1321// @as(@Vector(2, i32), .{ 9, undefined })1321// @as(@Vector(2, i32), .{ 9, undefined })
1322// @as(@Vector(2, i32), .{ undefined, 9 })1322// @as(@Vector(2, i32), .{ undefined, 9 })
1323// @as(@Vector(2, i32), undefined)1323// @as(@Vector(2, i32), undefined)
1324// @as(@Vector(2, i32), .{ 9, undefined })1324// @as(@Vector(2, i32), .{ 9, undefined })
1325// @as(@Vector(2, i32), .{ 9, undefined })1325// @as(@Vector(2, i32), .{ 9, undefined })
1326// @as(@Vector(2, i32), undefined)1326// @as(@Vector(2, i32), undefined)
1327// @as(@Vector(2, i32), undefined)1327// @as(@Vector(2, i32), undefined)
1328// @as(@Vector(2, i32), .{ undefined, 9 })1328// @as(@Vector(2, i32), .{ undefined, 9 })
1329// @as(@Vector(2, i32), undefined)1329// @as(@Vector(2, i32), undefined)
1330// @as(@Vector(2, i32), .{ undefined, 9 })1330// @as(@Vector(2, i32), .{ undefined, 9 })
1331// @as(@Vector(2, i32), undefined)1331// @as(@Vector(2, i32), undefined)
1332// @as(@Vector(2, i32), undefined)1332// @as(@Vector(2, i32), undefined)
1333// @as(@Vector(2, i32), undefined)1333// @as(@Vector(2, i32), undefined)
1334// @as(@Vector(2, i32), undefined)1334// @as(@Vector(2, i32), undefined)
1335// @as(@Vector(2, i32), undefined)1335// @as(@Vector(2, i32), undefined)
1336// @as(i32, undefined)1336// @as(i32, undefined)
1337// @as(i32, undefined)1337// @as(i32, undefined)
1338// @as(@Vector(2, i32), .{ 0, undefined })1338// @as(@Vector(2, i32), .{ 0, undefined })
1339// @as(@Vector(2, i32), .{ undefined, 0 })1339// @as(@Vector(2, i32), .{ undefined, 0 })
1340// @as(@Vector(2, i32), undefined)1340// @as(@Vector(2, i32), undefined)
1341// @as(@Vector(2, i32), .{ 0, undefined })1341// @as(@Vector(2, i32), .{ 0, undefined })
1342// @as(@Vector(2, i32), .{ 0, undefined })1342// @as(@Vector(2, i32), .{ 0, undefined })
1343// @as(@Vector(2, i32), undefined)1343// @as(@Vector(2, i32), undefined)
1344// @as(@Vector(2, i32), undefined)1344// @as(@Vector(2, i32), undefined)
1345// @as(@Vector(2, i32), .{ undefined, 0 })1345// @as(@Vector(2, i32), .{ undefined, 0 })
1346// @as(@Vector(2, i32), undefined)1346// @as(@Vector(2, i32), undefined)
1347// @as(@Vector(2, i32), .{ undefined, 0 })1347// @as(@Vector(2, i32), .{ undefined, 0 })
1348// @as(@Vector(2, i32), undefined)1348// @as(@Vector(2, i32), undefined)
1349// @as(@Vector(2, i32), undefined)1349// @as(@Vector(2, i32), undefined)
1350// @as(@Vector(2, i32), undefined)1350// @as(@Vector(2, i32), undefined)
1351// @as(@Vector(2, i32), undefined)1351// @as(@Vector(2, i32), undefined)
1352// @as(@Vector(2, i32), undefined)1352// @as(@Vector(2, i32), undefined)
1353// @as(i32, undefined)1353// @as(i32, undefined)
1354// @as(@Vector(2, i32), undefined)1354// @as(@Vector(2, i32), undefined)
1355// @as(i32, undefined)1355// @as(i32, undefined)
1356// @as(i32, undefined)1356// @as(i32, undefined)
1357// @as(@Vector(2, i32), undefined)1357// @as(@Vector(2, i32), undefined)
1358// @as(@Vector(2, i32), undefined)1358// @as(@Vector(2, i32), undefined)
1359// @as(i32, undefined)1359// @as(i32, undefined)
1360// @as(@Vector(2, i32), undefined)1360// @as(@Vector(2, i32), undefined)
1361// @as(i32, undefined)1361// @as(i32, undefined)
1362// @as(i32, undefined)1362// @as(i32, undefined)
1363// @as(@Vector(2, i32), [runtime value])1363// @as(@Vector(2, i32), [runtime value])
1364// @as(@Vector(2, i32), [runtime value])1364// @as(@Vector(2, i32), [runtime value])
1365// @as(@Vector(2, i32), undefined)1365// @as(@Vector(2, i32), undefined)
1366// @as(@Vector(2, i32), [runtime value])1366// @as(@Vector(2, i32), [runtime value])
1367// @as(@Vector(2, i32), [runtime value])1367// @as(@Vector(2, i32), [runtime value])
1368// @as(@Vector(2, i32), [runtime value])1368// @as(@Vector(2, i32), [runtime value])
1369// @as(@Vector(2, i32), undefined)1369// @as(@Vector(2, i32), undefined)
1370// @as(@Vector(2, i32), [runtime value])1370// @as(@Vector(2, i32), [runtime value])
1371// @as(@Vector(2, i32), [runtime value])1371// @as(@Vector(2, i32), [runtime value])
1372// @as(@Vector(2, i32), [runtime value])1372// @as(@Vector(2, i32), [runtime value])
1373// @as(@Vector(2, i32), undefined)1373// @as(@Vector(2, i32), undefined)
1374// @as(@Vector(2, i32), undefined)1374// @as(@Vector(2, i32), undefined)
1375// @as(@Vector(2, i32), undefined)1375// @as(@Vector(2, i32), undefined)
1376// @as(@Vector(2, i32), undefined)1376// @as(@Vector(2, i32), undefined)
1377// @as(@Vector(2, i32), undefined)1377// @as(@Vector(2, i32), undefined)
1378// @as(i32, undefined)1378// @as(i32, undefined)
1379// @as(i32, undefined)1379// @as(i32, undefined)
1380// @as(@Vector(2, i32), [runtime value])1380// @as(@Vector(2, i32), [runtime value])
1381// @as(@Vector(2, i32), [runtime value])1381// @as(@Vector(2, i32), [runtime value])
1382// @as(@Vector(2, i32), undefined)1382// @as(@Vector(2, i32), undefined)
1383// @as(@Vector(2, i32), [runtime value])1383// @as(@Vector(2, i32), [runtime value])
1384// @as(@Vector(2, i32), [runtime value])1384// @as(@Vector(2, i32), [runtime value])
1385// @as(@Vector(2, i32), [runtime value])1385// @as(@Vector(2, i32), [runtime value])
1386// @as(@Vector(2, i32), undefined)1386// @as(@Vector(2, i32), undefined)
1387// @as(@Vector(2, i32), [runtime value])1387// @as(@Vector(2, i32), [runtime value])
1388// @as(@Vector(2, i32), [runtime value])1388// @as(@Vector(2, i32), [runtime value])
1389// @as(@Vector(2, i32), [runtime value])1389// @as(@Vector(2, i32), [runtime value])
1390// @as(@Vector(2, i32), undefined)1390// @as(@Vector(2, i32), undefined)
1391// @as(@Vector(2, i32), undefined)1391// @as(@Vector(2, i32), undefined)
1392// @as(@Vector(2, i32), undefined)1392// @as(@Vector(2, i32), undefined)
1393// @as(@Vector(2, i32), undefined)1393// @as(@Vector(2, i32), undefined)
1394// @as(@Vector(2, i32), undefined)1394// @as(@Vector(2, i32), undefined)
1395// @as(i32, undefined)1395// @as(i32, undefined)
1396// @as(i32, undefined)1396// @as(i32, undefined)
1397// @as(@Vector(2, i32), [runtime value])1397// @as(@Vector(2, i32), [runtime value])
1398// @as(@Vector(2, i32), [runtime value])1398// @as(@Vector(2, i32), [runtime value])
1399// @as(@Vector(2, i32), undefined)1399// @as(@Vector(2, i32), undefined)
1400// @as(@Vector(2, i32), [runtime value])1400// @as(@Vector(2, i32), [runtime value])
1401// @as(@Vector(2, i32), [runtime value])1401// @as(@Vector(2, i32), [runtime value])
1402// @as(@Vector(2, i32), [runtime value])1402// @as(@Vector(2, i32), [runtime value])
1403// @as(@Vector(2, i32), undefined)1403// @as(@Vector(2, i32), undefined)
1404// @as(@Vector(2, i32), [runtime value])1404// @as(@Vector(2, i32), [runtime value])
1405// @as(@Vector(2, i32), [runtime value])1405// @as(@Vector(2, i32), [runtime value])
1406// @as(@Vector(2, i32), [runtime value])1406// @as(@Vector(2, i32), [runtime value])
1407// @as(@Vector(2, i32), undefined)1407// @as(@Vector(2, i32), undefined)
1408// @as(@Vector(2, i32), undefined)1408// @as(@Vector(2, i32), undefined)
1409// @as(@Vector(2, i32), undefined)1409// @as(@Vector(2, i32), undefined)
1410// @as(@Vector(2, i32), undefined)1410// @as(@Vector(2, i32), undefined)
1411// @as(@Vector(2, i32), undefined)1411// @as(@Vector(2, i32), undefined)
1412// @as(i32, undefined)1412// @as(i32, undefined)
1413// @as(i32, undefined)1413// @as(i32, undefined)
1414// @as(@Vector(2, i32), [runtime value])1414// @as(@Vector(2, i32), [runtime value])
1415// @as(@Vector(2, i32), [runtime value])1415// @as(@Vector(2, i32), [runtime value])
1416// @as(@Vector(2, i32), undefined)1416// @as(@Vector(2, i32), undefined)
1417// @as(@Vector(2, i32), [runtime value])1417// @as(@Vector(2, i32), [runtime value])
1418// @as(@Vector(2, i32), [runtime value])1418// @as(@Vector(2, i32), [runtime value])
1419// @as(@Vector(2, i32), [runtime value])1419// @as(@Vector(2, i32), [runtime value])
1420// @as(@Vector(2, i32), undefined)1420// @as(@Vector(2, i32), undefined)
1421// @as(@Vector(2, i32), [runtime value])1421// @as(@Vector(2, i32), [runtime value])
1422// @as(@Vector(2, i32), [runtime value])1422// @as(@Vector(2, i32), [runtime value])
1423// @as(@Vector(2, i32), [runtime value])1423// @as(@Vector(2, i32), [runtime value])
1424// @as(@Vector(2, i32), undefined)1424// @as(@Vector(2, i32), undefined)
1425// @as(@Vector(2, i32), undefined)1425// @as(@Vector(2, i32), undefined)
1426// @as(@Vector(2, i32), undefined)1426// @as(@Vector(2, i32), undefined)
1427// @as(@Vector(2, i32), undefined)1427// @as(@Vector(2, i32), undefined)
1428// @as(@Vector(2, i32), undefined)1428// @as(@Vector(2, i32), undefined)
1429// @as(i32, undefined)1429// @as(i32, undefined)
1430// @as(i32, undefined)1430// @as(i32, undefined)
1431// @as(@Vector(2, i32), [runtime value])1431// @as(@Vector(2, i32), [runtime value])
1432// @as(@Vector(2, i32), [runtime value])1432// @as(@Vector(2, i32), [runtime value])
1433// @as(@Vector(2, i32), undefined)1433// @as(@Vector(2, i32), undefined)
1434// @as(@Vector(2, i32), [runtime value])1434// @as(@Vector(2, i32), [runtime value])
1435// @as(@Vector(2, i32), [runtime value])1435// @as(@Vector(2, i32), [runtime value])
1436// @as(@Vector(2, i32), [runtime value])1436// @as(@Vector(2, i32), [runtime value])
1437// @as(@Vector(2, i32), undefined)1437// @as(@Vector(2, i32), undefined)
1438// @as(@Vector(2, i32), [runtime value])1438// @as(@Vector(2, i32), [runtime value])
1439// @as(@Vector(2, i32), [runtime value])1439// @as(@Vector(2, i32), [runtime value])
1440// @as(@Vector(2, i32), [runtime value])1440// @as(@Vector(2, i32), [runtime value])
1441// @as(@Vector(2, i32), undefined)1441// @as(@Vector(2, i32), undefined)
1442// @as(@Vector(2, i32), undefined)1442// @as(@Vector(2, i32), undefined)
1443// @as(@Vector(2, i32), undefined)1443// @as(@Vector(2, i32), undefined)
1444// @as(@Vector(2, i32), undefined)1444// @as(@Vector(2, i32), undefined)
1445// @as(@Vector(2, i32), undefined)1445// @as(@Vector(2, i32), undefined)
1446// @as(i32, undefined)1446// @as(i32, undefined)
1447// @as(i32, undefined)1447// @as(i32, undefined)
1448// @as(@Vector(2, i32), [runtime value])1448// @as(@Vector(2, i32), [runtime value])
1449// @as(@Vector(2, i32), [runtime value])1449// @as(@Vector(2, i32), [runtime value])
1450// @as(@Vector(2, i32), undefined)1450// @as(@Vector(2, i32), undefined)
1451// @as(@Vector(2, i32), [runtime value])1451// @as(@Vector(2, i32), [runtime value])
1452// @as(@Vector(2, i32), [runtime value])1452// @as(@Vector(2, i32), [runtime value])
1453// @as(@Vector(2, i32), [runtime value])1453// @as(@Vector(2, i32), [runtime value])
1454// @as(@Vector(2, i32), undefined)1454// @as(@Vector(2, i32), undefined)
1455// @as(@Vector(2, i32), [runtime value])1455// @as(@Vector(2, i32), [runtime value])
1456// @as(@Vector(2, i32), [runtime value])1456// @as(@Vector(2, i32), [runtime value])
1457// @as(@Vector(2, i32), [runtime value])1457// @as(@Vector(2, i32), [runtime value])
1458// @as(@Vector(2, i32), undefined)1458// @as(@Vector(2, i32), undefined)
1459// @as(@Vector(2, i32), undefined)1459// @as(@Vector(2, i32), undefined)
1460// @as(@Vector(2, i32), undefined)1460// @as(@Vector(2, i32), undefined)
1461// @as(@Vector(2, i32), undefined)1461// @as(@Vector(2, i32), undefined)
1462// @as(@Vector(2, i32), undefined)1462// @as(@Vector(2, i32), undefined)
1463// @as(i32, [runtime value])1463// @as(i32, [runtime value])
1464// @as(i32, [runtime value])1464// @as(i32, [runtime value])
1465// @as(@Vector(2, i32), [runtime value])1465// @as(@Vector(2, i32), [runtime value])
1466// @as(@Vector(2, i32), [runtime value])1466// @as(@Vector(2, i32), [runtime value])
1467// @as(@Vector(2, i32), [runtime value])1467// @as(@Vector(2, i32), [runtime value])
1468// @as(@Vector(2, i32), [runtime value])1468// @as(@Vector(2, i32), [runtime value])
1469// @as(@Vector(2, i32), [runtime value])1469// @as(@Vector(2, i32), [runtime value])
1470// @as(@Vector(2, i32), [runtime value])1470// @as(@Vector(2, i32), [runtime value])
1471// @as(@Vector(2, i32), [runtime value])1471// @as(@Vector(2, i32), [runtime value])
1472// @as(@Vector(2, i32), [runtime value])1472// @as(@Vector(2, i32), [runtime value])
1473// @as(@Vector(2, i32), [runtime value])1473// @as(@Vector(2, i32), [runtime value])
1474// @as(@Vector(2, i32), [runtime value])1474// @as(@Vector(2, i32), [runtime value])
1475// @as(@Vector(2, i32), [runtime value])1475// @as(@Vector(2, i32), [runtime value])
1476// @as(@Vector(2, i32), [runtime value])1476// @as(@Vector(2, i32), [runtime value])
1477// @as(@Vector(2, i32), [runtime value])1477// @as(@Vector(2, i32), [runtime value])
1478// @as(@Vector(2, i32), [runtime value])1478// @as(@Vector(2, i32), [runtime value])
1479// @as(@Vector(2, i32), undefined)1479// @as(@Vector(2, i32), undefined)
1480// @as(i32, undefined)1480// @as(i32, undefined)
1481// @as(@Vector(2, i32), undefined)1481// @as(@Vector(2, i32), undefined)
1482// @as(i32, undefined)1482// @as(i32, undefined)
1483// @as(i32, undefined)1483// @as(i32, undefined)
1484// @as(@Vector(2, i32), undefined)1484// @as(@Vector(2, i32), undefined)
1485// @as(@Vector(2, i32), undefined)1485// @as(@Vector(2, i32), undefined)
1486// @as(i32, undefined)1486// @as(i32, undefined)
1487// @as(@Vector(2, i32), undefined)1487// @as(@Vector(2, i32), undefined)
1488// @as(u500, undefined)1488// @as(u32, undefined)
1489// @as(u500, undefined)1489// @as(u32, undefined)
1490// @as(@Vector(2, u500), .{ 6, undefined })1490// @as(@Vector(2, u32), .{ 6, undefined })
1491// @as(@Vector(2, u500), .{ undefined, 6 })1491// @as(@Vector(2, u32), .{ undefined, 6 })
1492// @as(@Vector(2, u500), undefined)1492// @as(@Vector(2, u32), undefined)
1493// @as(@Vector(2, u500), .{ 6, undefined })1493// @as(@Vector(2, u32), .{ 6, undefined })
1494// @as(@Vector(2, u500), .{ 6, undefined })1494// @as(@Vector(2, u32), .{ 6, undefined })
1495// @as(@Vector(2, u500), undefined)1495// @as(@Vector(2, u32), undefined)
1496// @as(@Vector(2, u500), undefined)1496// @as(@Vector(2, u32), undefined)
1497// @as(@Vector(2, u500), .{ undefined, 6 })1497// @as(@Vector(2, u32), .{ undefined, 6 })
1498// @as(@Vector(2, u500), undefined)1498// @as(@Vector(2, u32), undefined)
1499// @as(@Vector(2, u500), .{ undefined, 6 })1499// @as(@Vector(2, u32), .{ undefined, 6 })
1500// @as(@Vector(2, u500), undefined)1500// @as(@Vector(2, u32), undefined)
1501// @as(@Vector(2, u500), undefined)1501// @as(@Vector(2, u32), undefined)
1502// @as(@Vector(2, u500), undefined)1502// @as(@Vector(2, u32), undefined)
1503// @as(@Vector(2, u500), undefined)1503// @as(@Vector(2, u32), undefined)
1504// @as(@Vector(2, u500), undefined)1504// @as(@Vector(2, u32), undefined)
1505// @as(u500, undefined)1505// @as(u32, undefined)
1506// @as(u500, undefined)1506// @as(u32, undefined)
1507// @as(@Vector(2, u500), .{ 6, undefined })1507// @as(@Vector(2, u32), .{ 6, undefined })
1508// @as(@Vector(2, u500), .{ undefined, 6 })1508// @as(@Vector(2, u32), .{ undefined, 6 })
1509// @as(@Vector(2, u500), undefined)1509// @as(@Vector(2, u32), undefined)
1510// @as(@Vector(2, u500), .{ 6, undefined })1510// @as(@Vector(2, u32), .{ 6, undefined })
1511// @as(@Vector(2, u500), .{ 6, undefined })1511// @as(@Vector(2, u32), .{ 6, undefined })
1512// @as(@Vector(2, u500), undefined)1512// @as(@Vector(2, u32), undefined)
1513// @as(@Vector(2, u500), undefined)1513// @as(@Vector(2, u32), undefined)
1514// @as(@Vector(2, u500), .{ undefined, 6 })1514// @as(@Vector(2, u32), .{ undefined, 6 })
1515// @as(@Vector(2, u500), undefined)1515// @as(@Vector(2, u32), undefined)
1516// @as(@Vector(2, u500), .{ undefined, 6 })1516// @as(@Vector(2, u32), .{ undefined, 6 })
1517// @as(@Vector(2, u500), undefined)1517// @as(@Vector(2, u32), undefined)
1518// @as(@Vector(2, u500), undefined)1518// @as(@Vector(2, u32), undefined)
1519// @as(@Vector(2, u500), undefined)1519// @as(@Vector(2, u32), undefined)
1520// @as(@Vector(2, u500), undefined)1520// @as(@Vector(2, u32), undefined)
1521// @as(@Vector(2, u500), undefined)1521// @as(@Vector(2, u32), undefined)
1522// @as(u500, undefined)1522// @as(u32, undefined)
1523// @as(u500, undefined)1523// @as(u32, undefined)
1524// @as(@Vector(2, u500), .{ 0, undefined })1524// @as(@Vector(2, u32), .{ 0, undefined })
1525// @as(@Vector(2, u500), .{ undefined, 0 })1525// @as(@Vector(2, u32), .{ undefined, 0 })
1526// @as(@Vector(2, u500), undefined)1526// @as(@Vector(2, u32), undefined)
1527// @as(@Vector(2, u500), .{ 0, undefined })1527// @as(@Vector(2, u32), .{ 0, undefined })
1528// @as(@Vector(2, u500), .{ 0, undefined })1528// @as(@Vector(2, u32), .{ 0, undefined })
1529// @as(@Vector(2, u500), undefined)1529// @as(@Vector(2, u32), undefined)
1530// @as(@Vector(2, u500), undefined)1530// @as(@Vector(2, u32), undefined)
1531// @as(@Vector(2, u500), .{ undefined, 0 })1531// @as(@Vector(2, u32), .{ undefined, 0 })
1532// @as(@Vector(2, u500), undefined)1532// @as(@Vector(2, u32), undefined)
1533// @as(@Vector(2, u500), .{ undefined, 0 })1533// @as(@Vector(2, u32), .{ undefined, 0 })
1534// @as(@Vector(2, u500), undefined)1534// @as(@Vector(2, u32), undefined)
1535// @as(@Vector(2, u500), undefined)1535// @as(@Vector(2, u32), undefined)
1536// @as(@Vector(2, u500), undefined)1536// @as(@Vector(2, u32), undefined)
1537// @as(@Vector(2, u500), undefined)1537// @as(@Vector(2, u32), undefined)
1538// @as(@Vector(2, u500), undefined)1538// @as(@Vector(2, u32), undefined)
1539// @as(u500, undefined)1539// @as(u32, undefined)
1540// @as(u500, undefined)1540// @as(u32, undefined)
1541// @as(@Vector(2, u500), .{ 0, undefined })1541// @as(@Vector(2, u32), .{ 0, undefined })
1542// @as(@Vector(2, u500), .{ undefined, 0 })1542// @as(@Vector(2, u32), .{ undefined, 0 })
1543// @as(@Vector(2, u500), undefined)1543// @as(@Vector(2, u32), undefined)
1544// @as(@Vector(2, u500), .{ 0, undefined })1544// @as(@Vector(2, u32), .{ 0, undefined })
1545// @as(@Vector(2, u500), .{ 0, undefined })1545// @as(@Vector(2, u32), .{ 0, undefined })
1546// @as(@Vector(2, u500), undefined)1546// @as(@Vector(2, u32), undefined)
1547// @as(@Vector(2, u500), undefined)1547// @as(@Vector(2, u32), undefined)
1548// @as(@Vector(2, u500), .{ undefined, 0 })1548// @as(@Vector(2, u32), .{ undefined, 0 })
1549// @as(@Vector(2, u500), undefined)1549// @as(@Vector(2, u32), undefined)
1550// @as(@Vector(2, u500), .{ undefined, 0 })1550// @as(@Vector(2, u32), .{ undefined, 0 })
1551// @as(@Vector(2, u500), undefined)1551// @as(@Vector(2, u32), undefined)
1552// @as(@Vector(2, u500), undefined)1552// @as(@Vector(2, u32), undefined)
1553// @as(@Vector(2, u500), undefined)1553// @as(@Vector(2, u32), undefined)
1554// @as(@Vector(2, u500), undefined)1554// @as(@Vector(2, u32), undefined)
1555// @as(@Vector(2, u500), undefined)1555// @as(@Vector(2, u32), undefined)
1556// @as(u500, undefined)1556// @as(u32, undefined)
1557// @as(u500, undefined)1557// @as(u32, undefined)
1558// @as(@Vector(2, u500), .{ 9, undefined })1558// @as(@Vector(2, u32), .{ 9, undefined })
1559// @as(@Vector(2, u500), .{ undefined, 9 })1559// @as(@Vector(2, u32), .{ undefined, 9 })
1560// @as(@Vector(2, u500), undefined)1560// @as(@Vector(2, u32), undefined)
1561// @as(@Vector(2, u500), .{ 9, undefined })1561// @as(@Vector(2, u32), .{ 9, undefined })
1562// @as(@Vector(2, u500), .{ 9, undefined })1562// @as(@Vector(2, u32), .{ 9, undefined })
1563// @as(@Vector(2, u500), undefined)1563// @as(@Vector(2, u32), undefined)
1564// @as(@Vector(2, u500), undefined)1564// @as(@Vector(2, u32), undefined)
1565// @as(@Vector(2, u500), .{ undefined, 9 })1565// @as(@Vector(2, u32), .{ undefined, 9 })
1566// @as(@Vector(2, u500), undefined)1566// @as(@Vector(2, u32), undefined)
1567// @as(@Vector(2, u500), .{ undefined, 9 })1567// @as(@Vector(2, u32), .{ undefined, 9 })
1568// @as(@Vector(2, u500), undefined)1568// @as(@Vector(2, u32), undefined)
1569// @as(@Vector(2, u500), undefined)1569// @as(@Vector(2, u32), undefined)
1570// @as(@Vector(2, u500), undefined)1570// @as(@Vector(2, u32), undefined)
1571// @as(@Vector(2, u500), undefined)1571// @as(@Vector(2, u32), undefined)
1572// @as(@Vector(2, u500), undefined)1572// @as(@Vector(2, u32), undefined)
1573// @as(u500, undefined)1573// @as(u32, undefined)
1574// @as(u500, undefined)1574// @as(u32, undefined)
1575// @as(@Vector(2, u500), .{ 9, undefined })1575// @as(@Vector(2, u32), .{ 9, undefined })
1576// @as(@Vector(2, u500), .{ undefined, 9 })1576// @as(@Vector(2, u32), .{ undefined, 9 })
1577// @as(@Vector(2, u500), undefined)1577// @as(@Vector(2, u32), undefined)
1578// @as(@Vector(2, u500), .{ 9, undefined })1578// @as(@Vector(2, u32), .{ 9, undefined })
1579// @as(@Vector(2, u500), .{ 9, undefined })1579// @as(@Vector(2, u32), .{ 9, undefined })
1580// @as(@Vector(2, u500), undefined)1580// @as(@Vector(2, u32), undefined)
1581// @as(@Vector(2, u500), undefined)1581// @as(@Vector(2, u32), undefined)
1582// @as(@Vector(2, u500), .{ undefined, 9 })1582// @as(@Vector(2, u32), .{ undefined, 9 })
1583// @as(@Vector(2, u500), undefined)1583// @as(@Vector(2, u32), undefined)
1584// @as(@Vector(2, u500), .{ undefined, 9 })1584// @as(@Vector(2, u32), .{ undefined, 9 })
1585// @as(@Vector(2, u500), undefined)1585// @as(@Vector(2, u32), undefined)
1586// @as(@Vector(2, u500), undefined)1586// @as(@Vector(2, u32), undefined)
1587// @as(@Vector(2, u500), undefined)1587// @as(@Vector(2, u32), undefined)
1588// @as(@Vector(2, u500), undefined)1588// @as(@Vector(2, u32), undefined)
1589// @as(@Vector(2, u500), undefined)1589// @as(@Vector(2, u32), undefined)
1590// @as(u500, undefined)1590// @as(u32, undefined)
1591// @as(u500, undefined)1591// @as(u32, undefined)
1592// @as(@Vector(2, u500), .{ 24, undefined })1592// @as(@Vector(2, u32), .{ 24, undefined })
1593// @as(@Vector(2, u500), .{ undefined, 24 })1593// @as(@Vector(2, u32), .{ undefined, 24 })
1594// @as(@Vector(2, u500), undefined)1594// @as(@Vector(2, u32), undefined)
1595// @as(@Vector(2, u500), .{ 24, undefined })1595// @as(@Vector(2, u32), .{ 24, undefined })
1596// @as(@Vector(2, u500), .{ 24, undefined })1596// @as(@Vector(2, u32), .{ 24, undefined })
1597// @as(@Vector(2, u500), undefined)1597// @as(@Vector(2, u32), undefined)
1598// @as(@Vector(2, u500), undefined)1598// @as(@Vector(2, u32), undefined)
1599// @as(@Vector(2, u500), .{ undefined, 24 })1599// @as(@Vector(2, u32), .{ undefined, 24 })
1600// @as(@Vector(2, u500), undefined)1600// @as(@Vector(2, u32), undefined)
1601// @as(@Vector(2, u500), .{ undefined, 24 })1601// @as(@Vector(2, u32), .{ undefined, 24 })
1602// @as(@Vector(2, u500), undefined)1602// @as(@Vector(2, u32), undefined)
1603// @as(@Vector(2, u500), undefined)1603// @as(@Vector(2, u32), undefined)
1604// @as(@Vector(2, u500), undefined)1604// @as(@Vector(2, u32), undefined)
1605// @as(@Vector(2, u500), undefined)1605// @as(@Vector(2, u32), undefined)
1606// @as(@Vector(2, u500), undefined)1606// @as(@Vector(2, u32), undefined)
1607// @as(u500, undefined)1607// @as(u32, undefined)
1608// @as(u500, undefined)1608// @as(u32, undefined)
1609// @as(@Vector(2, u500), .{ 0, undefined })1609// @as(@Vector(2, u32), .{ 0, undefined })
1610// @as(@Vector(2, u500), .{ undefined, 0 })1610// @as(@Vector(2, u32), .{ undefined, 0 })
1611// @as(@Vector(2, u500), undefined)1611// @as(@Vector(2, u32), undefined)
1612// @as(@Vector(2, u500), .{ 0, undefined })1612// @as(@Vector(2, u32), .{ 0, undefined })
1613// @as(@Vector(2, u500), .{ 0, undefined })1613// @as(@Vector(2, u32), .{ 0, undefined })
1614// @as(@Vector(2, u500), undefined)1614// @as(@Vector(2, u32), undefined)
1615// @as(@Vector(2, u500), undefined)1615// @as(@Vector(2, u32), undefined)
1616// @as(@Vector(2, u500), .{ undefined, 0 })1616// @as(@Vector(2, u32), .{ undefined, 0 })
1617// @as(@Vector(2, u500), undefined)1617// @as(@Vector(2, u32), undefined)
1618// @as(@Vector(2, u500), .{ undefined, 0 })1618// @as(@Vector(2, u32), .{ undefined, 0 })
1619// @as(@Vector(2, u500), undefined)1619// @as(@Vector(2, u32), undefined)
1620// @as(@Vector(2, u500), undefined)1620// @as(@Vector(2, u32), undefined)
1621// @as(@Vector(2, u500), undefined)1621// @as(@Vector(2, u32), undefined)
1622// @as(@Vector(2, u500), undefined)1622// @as(@Vector(2, u32), undefined)
1623// @as(@Vector(2, u500), undefined)1623// @as(@Vector(2, u32), undefined)
1624// @as(u500, undefined)1624// @as(u32, undefined)
1625// @as(@Vector(2, u500), undefined)1625// @as(@Vector(2, u32), undefined)
1626// @as(u500, undefined)1626// @as(u32, undefined)
1627// @as(u500, undefined)1627// @as(u32, undefined)
1628// @as(@Vector(2, u500), undefined)1628// @as(@Vector(2, u32), undefined)
1629// @as(@Vector(2, u500), undefined)1629// @as(@Vector(2, u32), undefined)
1630// @as(u1, undefined)1630// @as(u1, undefined)
1631// @as(@Vector(2, u1), .{ 1, undefined })1631// @as(@Vector(2, u1), .{ 1, undefined })
1632// @as(@Vector(2, u1), .{ undefined, 1 })1632// @as(@Vector(2, u1), .{ undefined, 1 })
1633// @as(@Vector(2, u1), undefined)1633// @as(@Vector(2, u1), undefined)
1634// @as(u500, undefined)1634// @as(u32, undefined)
1635// @as(@Vector(2, u500), undefined)1635// @as(@Vector(2, u32), undefined)
1636// @as(u500, undefined)1636// @as(u32, undefined)
1637// @as(u500, undefined)1637// @as(u32, undefined)
1638// @as(@Vector(2, u500), [runtime value])1638// @as(@Vector(2, u32), [runtime value])
1639// @as(@Vector(2, u500), [runtime value])1639// @as(@Vector(2, u32), [runtime value])
1640// @as(@Vector(2, u500), undefined)1640// @as(@Vector(2, u32), undefined)
1641// @as(@Vector(2, u500), [runtime value])1641// @as(@Vector(2, u32), [runtime value])
1642// @as(@Vector(2, u500), [runtime value])1642// @as(@Vector(2, u32), [runtime value])
1643// @as(@Vector(2, u500), [runtime value])1643// @as(@Vector(2, u32), [runtime value])
1644// @as(@Vector(2, u500), undefined)1644// @as(@Vector(2, u32), undefined)
1645// @as(@Vector(2, u500), [runtime value])1645// @as(@Vector(2, u32), [runtime value])
1646// @as(@Vector(2, u500), [runtime value])1646// @as(@Vector(2, u32), [runtime value])
1647// @as(@Vector(2, u500), [runtime value])1647// @as(@Vector(2, u32), [runtime value])
1648// @as(@Vector(2, u500), undefined)1648// @as(@Vector(2, u32), undefined)
1649// @as(@Vector(2, u500), undefined)1649// @as(@Vector(2, u32), undefined)
1650// @as(@Vector(2, u500), undefined)1650// @as(@Vector(2, u32), undefined)
1651// @as(@Vector(2, u500), undefined)1651// @as(@Vector(2, u32), undefined)
1652// @as(@Vector(2, u500), undefined)1652// @as(@Vector(2, u32), undefined)
1653// @as(u500, undefined)1653// @as(u32, undefined)
1654// @as(u500, undefined)1654// @as(u32, undefined)
1655// @as(@Vector(2, u500), [runtime value])1655// @as(@Vector(2, u32), [runtime value])
1656// @as(@Vector(2, u500), [runtime value])1656// @as(@Vector(2, u32), [runtime value])
1657// @as(@Vector(2, u500), undefined)1657// @as(@Vector(2, u32), undefined)
1658// @as(@Vector(2, u500), [runtime value])1658// @as(@Vector(2, u32), [runtime value])
1659// @as(@Vector(2, u500), [runtime value])1659// @as(@Vector(2, u32), [runtime value])
1660// @as(@Vector(2, u500), [runtime value])1660// @as(@Vector(2, u32), [runtime value])
1661// @as(@Vector(2, u500), undefined)1661// @as(@Vector(2, u32), undefined)
1662// @as(@Vector(2, u500), [runtime value])1662// @as(@Vector(2, u32), [runtime value])
1663// @as(@Vector(2, u500), [runtime value])1663// @as(@Vector(2, u32), [runtime value])
1664// @as(@Vector(2, u500), [runtime value])1664// @as(@Vector(2, u32), [runtime value])
1665// @as(@Vector(2, u500), undefined)1665// @as(@Vector(2, u32), undefined)
1666// @as(@Vector(2, u500), undefined)1666// @as(@Vector(2, u32), undefined)
1667// @as(@Vector(2, u500), undefined)1667// @as(@Vector(2, u32), undefined)
1668// @as(@Vector(2, u500), undefined)1668// @as(@Vector(2, u32), undefined)
1669// @as(@Vector(2, u500), undefined)1669// @as(@Vector(2, u32), undefined)
1670// @as(u500, undefined)1670// @as(u32, undefined)
1671// @as(u500, undefined)1671// @as(u32, undefined)
1672// @as(@Vector(2, u500), [runtime value])1672// @as(@Vector(2, u32), [runtime value])
1673// @as(@Vector(2, u500), [runtime value])1673// @as(@Vector(2, u32), [runtime value])
1674// @as(@Vector(2, u500), undefined)1674// @as(@Vector(2, u32), undefined)
1675// @as(@Vector(2, u500), [runtime value])1675// @as(@Vector(2, u32), [runtime value])
1676// @as(@Vector(2, u500), [runtime value])1676// @as(@Vector(2, u32), [runtime value])
1677// @as(@Vector(2, u500), [runtime value])1677// @as(@Vector(2, u32), [runtime value])
1678// @as(@Vector(2, u500), undefined)1678// @as(@Vector(2, u32), undefined)
1679// @as(@Vector(2, u500), [runtime value])1679// @as(@Vector(2, u32), [runtime value])
1680// @as(@Vector(2, u500), [runtime value])1680// @as(@Vector(2, u32), [runtime value])
1681// @as(@Vector(2, u500), [runtime value])1681// @as(@Vector(2, u32), [runtime value])
1682// @as(@Vector(2, u500), undefined)1682// @as(@Vector(2, u32), undefined)
1683// @as(@Vector(2, u500), undefined)1683// @as(@Vector(2, u32), undefined)
1684// @as(@Vector(2, u500), undefined)1684// @as(@Vector(2, u32), undefined)
1685// @as(@Vector(2, u500), undefined)1685// @as(@Vector(2, u32), undefined)
1686// @as(@Vector(2, u500), undefined)1686// @as(@Vector(2, u32), undefined)
1687// @as(u500, undefined)1687// @as(u32, undefined)
1688// @as(u500, undefined)1688// @as(u32, undefined)
1689// @as(@Vector(2, u500), [runtime value])1689// @as(@Vector(2, u32), [runtime value])
1690// @as(@Vector(2, u500), [runtime value])1690// @as(@Vector(2, u32), [runtime value])
1691// @as(@Vector(2, u500), undefined)1691// @as(@Vector(2, u32), undefined)
1692// @as(@Vector(2, u500), [runtime value])1692// @as(@Vector(2, u32), [runtime value])
1693// @as(@Vector(2, u500), [runtime value])1693// @as(@Vector(2, u32), [runtime value])
1694// @as(@Vector(2, u500), [runtime value])1694// @as(@Vector(2, u32), [runtime value])
1695// @as(@Vector(2, u500), undefined)1695// @as(@Vector(2, u32), undefined)
1696// @as(@Vector(2, u500), [runtime value])1696// @as(@Vector(2, u32), [runtime value])
1697// @as(@Vector(2, u500), [runtime value])1697// @as(@Vector(2, u32), [runtime value])
1698// @as(@Vector(2, u500), [runtime value])1698// @as(@Vector(2, u32), [runtime value])
1699// @as(@Vector(2, u500), undefined)1699// @as(@Vector(2, u32), undefined)
1700// @as(@Vector(2, u500), undefined)1700// @as(@Vector(2, u32), undefined)
1701// @as(@Vector(2, u500), undefined)1701// @as(@Vector(2, u32), undefined)
1702// @as(@Vector(2, u500), undefined)1702// @as(@Vector(2, u32), undefined)
1703// @as(@Vector(2, u500), undefined)1703// @as(@Vector(2, u32), undefined)
1704// @as(u500, undefined)1704// @as(u32, undefined)
1705// @as(u500, undefined)1705// @as(u32, undefined)
1706// @as(@Vector(2, u500), [runtime value])1706// @as(@Vector(2, u32), [runtime value])
1707// @as(@Vector(2, u500), [runtime value])1707// @as(@Vector(2, u32), [runtime value])
1708// @as(@Vector(2, u500), undefined)1708// @as(@Vector(2, u32), undefined)
1709// @as(@Vector(2, u500), [runtime value])1709// @as(@Vector(2, u32), [runtime value])
1710// @as(@Vector(2, u500), [runtime value])1710// @as(@Vector(2, u32), [runtime value])
1711// @as(@Vector(2, u500), [runtime value])1711// @as(@Vector(2, u32), [runtime value])
1712// @as(@Vector(2, u500), undefined)1712// @as(@Vector(2, u32), undefined)
1713// @as(@Vector(2, u500), [runtime value])1713// @as(@Vector(2, u32), [runtime value])
1714// @as(@Vector(2, u500), [runtime value])1714// @as(@Vector(2, u32), [runtime value])
1715// @as(@Vector(2, u500), [runtime value])1715// @as(@Vector(2, u32), [runtime value])
1716// @as(@Vector(2, u500), undefined)1716// @as(@Vector(2, u32), undefined)
1717// @as(@Vector(2, u500), undefined)1717// @as(@Vector(2, u32), undefined)
1718// @as(@Vector(2, u500), undefined)1718// @as(@Vector(2, u32), undefined)
1719// @as(@Vector(2, u500), undefined)1719// @as(@Vector(2, u32), undefined)
1720// @as(@Vector(2, u500), undefined)1720// @as(@Vector(2, u32), undefined)
1721// @as(u500, undefined)1721// @as(u32, undefined)
1722// @as(u500, undefined)1722// @as(u32, undefined)
1723// @as(@Vector(2, u500), [runtime value])1723// @as(@Vector(2, u32), [runtime value])
1724// @as(@Vector(2, u500), [runtime value])1724// @as(@Vector(2, u32), [runtime value])
1725// @as(@Vector(2, u500), undefined)1725// @as(@Vector(2, u32), undefined)
1726// @as(@Vector(2, u500), [runtime value])1726// @as(@Vector(2, u32), [runtime value])
1727// @as(@Vector(2, u500), [runtime value])1727// @as(@Vector(2, u32), [runtime value])
1728// @as(@Vector(2, u500), [runtime value])1728// @as(@Vector(2, u32), [runtime value])
1729// @as(@Vector(2, u500), undefined)1729// @as(@Vector(2, u32), undefined)
1730// @as(@Vector(2, u500), [runtime value])1730// @as(@Vector(2, u32), [runtime value])
1731// @as(@Vector(2, u500), [runtime value])1731// @as(@Vector(2, u32), [runtime value])
1732// @as(@Vector(2, u500), [runtime value])1732// @as(@Vector(2, u32), [runtime value])
1733// @as(@Vector(2, u500), undefined)1733// @as(@Vector(2, u32), undefined)
1734// @as(@Vector(2, u500), undefined)1734// @as(@Vector(2, u32), undefined)
1735// @as(@Vector(2, u500), undefined)1735// @as(@Vector(2, u32), undefined)
1736// @as(@Vector(2, u500), undefined)1736// @as(@Vector(2, u32), undefined)
1737// @as(@Vector(2, u500), undefined)1737// @as(@Vector(2, u32), undefined)
1738// @as(u500, undefined)1738// @as(u32, undefined)
1739// @as(u500, undefined)1739// @as(u32, undefined)
1740// @as(@Vector(2, u500), [runtime value])1740// @as(@Vector(2, u32), [runtime value])
1741// @as(@Vector(2, u500), [runtime value])1741// @as(@Vector(2, u32), [runtime value])
1742// @as(@Vector(2, u500), undefined)1742// @as(@Vector(2, u32), undefined)
1743// @as(@Vector(2, u500), [runtime value])1743// @as(@Vector(2, u32), [runtime value])
1744// @as(@Vector(2, u500), [runtime value])1744// @as(@Vector(2, u32), [runtime value])
1745// @as(@Vector(2, u500), [runtime value])1745// @as(@Vector(2, u32), [runtime value])
1746// @as(@Vector(2, u500), undefined)1746// @as(@Vector(2, u32), undefined)
1747// @as(@Vector(2, u500), [runtime value])1747// @as(@Vector(2, u32), [runtime value])
1748// @as(@Vector(2, u500), [runtime value])1748// @as(@Vector(2, u32), [runtime value])
1749// @as(@Vector(2, u500), [runtime value])1749// @as(@Vector(2, u32), [runtime value])
1750// @as(@Vector(2, u500), undefined)1750// @as(@Vector(2, u32), undefined)
1751// @as(@Vector(2, u500), undefined)1751// @as(@Vector(2, u32), undefined)
1752// @as(@Vector(2, u500), undefined)1752// @as(@Vector(2, u32), undefined)
1753// @as(@Vector(2, u500), undefined)1753// @as(@Vector(2, u32), undefined)
1754// @as(@Vector(2, u500), undefined)1754// @as(@Vector(2, u32), undefined)
1755// @as(u500, [runtime value])1755// @as(u32, [runtime value])
1756// @as(u500, [runtime value])1756// @as(u32, [runtime value])
1757// @as(@Vector(2, u500), [runtime value])1757// @as(@Vector(2, u32), [runtime value])
1758// @as(@Vector(2, u500), [runtime value])1758// @as(@Vector(2, u32), [runtime value])
1759// @as(@Vector(2, u500), [runtime value])1759// @as(@Vector(2, u32), [runtime value])
1760// @as(@Vector(2, u500), [runtime value])1760// @as(@Vector(2, u32), [runtime value])
1761// @as(@Vector(2, u500), [runtime value])1761// @as(@Vector(2, u32), [runtime value])
1762// @as(@Vector(2, u500), [runtime value])1762// @as(@Vector(2, u32), [runtime value])
1763// @as(@Vector(2, u500), [runtime value])1763// @as(@Vector(2, u32), [runtime value])
1764// @as(@Vector(2, u500), [runtime value])1764// @as(@Vector(2, u32), [runtime value])
1765// @as(@Vector(2, u500), [runtime value])1765// @as(@Vector(2, u32), [runtime value])
1766// @as(@Vector(2, u500), [runtime value])1766// @as(@Vector(2, u32), [runtime value])
1767// @as(@Vector(2, u500), [runtime value])1767// @as(@Vector(2, u32), [runtime value])
1768// @as(@Vector(2, u500), [runtime value])1768// @as(@Vector(2, u32), [runtime value])
1769// @as(@Vector(2, u500), [runtime value])1769// @as(@Vector(2, u32), [runtime value])
1770// @as(@Vector(2, u500), [runtime value])1770// @as(@Vector(2, u32), [runtime value])
1771// @as(@Vector(2, u500), undefined)1771// @as(@Vector(2, u32), undefined)
1772// @as(u500, undefined)1772// @as(u32, undefined)
1773// @as(@Vector(2, u500), undefined)1773// @as(@Vector(2, u32), undefined)
1774// @as(u500, undefined)1774// @as(u32, undefined)
1775// @as(u500, undefined)1775// @as(u32, undefined)
1776// @as(@Vector(2, u500), undefined)1776// @as(@Vector(2, u32), undefined)
1777// @as(@Vector(2, u500), undefined)1777// @as(@Vector(2, u32), undefined)
1778// @as(u1, undefined)1778// @as(u1, undefined)
1779// @as(@Vector(2, u1), [runtime value])1779// @as(@Vector(2, u1), [runtime value])
1780// @as(@Vector(2, u1), [runtime value])1780// @as(@Vector(2, u1), [runtime value])
1781// @as(@Vector(2, u1), undefined)1781// @as(@Vector(2, u1), undefined)
1782// @as(u500, undefined)1782// @as(u32, undefined)
1783// @as(@Vector(2, u500), undefined)1783// @as(@Vector(2, u32), undefined)
1784// @as(i500, undefined)1784// @as(i8, undefined)
1785// @as(i500, undefined)1785// @as(i8, undefined)
1786// @as(@Vector(2, i500), .{ 6, undefined })1786// @as(@Vector(2, i8), .{ 6, undefined })
1787// @as(@Vector(2, i500), .{ undefined, 6 })1787// @as(@Vector(2, i8), .{ undefined, 6 })
1788// @as(@Vector(2, i500), undefined)1788// @as(@Vector(2, i8), undefined)
1789// @as(@Vector(2, i500), .{ 6, undefined })1789// @as(@Vector(2, i8), .{ 6, undefined })
1790// @as(@Vector(2, i500), .{ 6, undefined })1790// @as(@Vector(2, i8), .{ 6, undefined })
1791// @as(@Vector(2, i500), undefined)1791// @as(@Vector(2, i8), undefined)
1792// @as(@Vector(2, i500), undefined)1792// @as(@Vector(2, i8), undefined)
1793// @as(@Vector(2, i500), .{ undefined, 6 })1793// @as(@Vector(2, i8), .{ undefined, 6 })
1794// @as(@Vector(2, i500), undefined)1794// @as(@Vector(2, i8), undefined)
1795// @as(@Vector(2, i500), .{ undefined, 6 })1795// @as(@Vector(2, i8), .{ undefined, 6 })
1796// @as(@Vector(2, i500), undefined)1796// @as(@Vector(2, i8), undefined)
1797// @as(@Vector(2, i500), undefined)1797// @as(@Vector(2, i8), undefined)
1798// @as(@Vector(2, i500), undefined)1798// @as(@Vector(2, i8), undefined)
1799// @as(@Vector(2, i500), undefined)1799// @as(@Vector(2, i8), undefined)
1800// @as(@Vector(2, i500), undefined)1800// @as(@Vector(2, i8), undefined)
1801// @as(i500, undefined)1801// @as(i8, undefined)
1802// @as(i500, undefined)1802// @as(i8, undefined)
1803// @as(@Vector(2, i500), .{ 6, undefined })1803// @as(@Vector(2, i8), .{ 6, undefined })
1804// @as(@Vector(2, i500), .{ undefined, 6 })1804// @as(@Vector(2, i8), .{ undefined, 6 })
1805// @as(@Vector(2, i500), undefined)1805// @as(@Vector(2, i8), undefined)
1806// @as(@Vector(2, i500), .{ 6, undefined })1806// @as(@Vector(2, i8), .{ 6, undefined })
1807// @as(@Vector(2, i500), .{ 6, undefined })1807// @as(@Vector(2, i8), .{ 6, undefined })
1808// @as(@Vector(2, i500), undefined)1808// @as(@Vector(2, i8), undefined)
1809// @as(@Vector(2, i500), undefined)1809// @as(@Vector(2, i8), undefined)
1810// @as(@Vector(2, i500), .{ undefined, 6 })1810// @as(@Vector(2, i8), .{ undefined, 6 })
1811// @as(@Vector(2, i500), undefined)1811// @as(@Vector(2, i8), undefined)
1812// @as(@Vector(2, i500), .{ undefined, 6 })1812// @as(@Vector(2, i8), .{ undefined, 6 })
1813// @as(@Vector(2, i500), undefined)1813// @as(@Vector(2, i8), undefined)
1814// @as(@Vector(2, i500), undefined)1814// @as(@Vector(2, i8), undefined)
1815// @as(@Vector(2, i500), undefined)1815// @as(@Vector(2, i8), undefined)
1816// @as(@Vector(2, i500), undefined)1816// @as(@Vector(2, i8), undefined)
1817// @as(@Vector(2, i500), undefined)1817// @as(@Vector(2, i8), undefined)
1818// @as(i500, undefined)1818// @as(i8, undefined)
1819// @as(i500, undefined)1819// @as(i8, undefined)
1820// @as(@Vector(2, i500), .{ 0, undefined })1820// @as(@Vector(2, i8), .{ 0, undefined })
1821// @as(@Vector(2, i500), .{ undefined, 0 })1821// @as(@Vector(2, i8), .{ undefined, 0 })
1822// @as(@Vector(2, i500), undefined)1822// @as(@Vector(2, i8), undefined)
1823// @as(@Vector(2, i500), .{ 0, undefined })1823// @as(@Vector(2, i8), .{ 0, undefined })
1824// @as(@Vector(2, i500), .{ 0, undefined })1824// @as(@Vector(2, i8), .{ 0, undefined })
1825// @as(@Vector(2, i500), undefined)1825// @as(@Vector(2, i8), undefined)
1826// @as(@Vector(2, i500), undefined)1826// @as(@Vector(2, i8), undefined)
1827// @as(@Vector(2, i500), .{ undefined, 0 })1827// @as(@Vector(2, i8), .{ undefined, 0 })
1828// @as(@Vector(2, i500), undefined)1828// @as(@Vector(2, i8), undefined)
1829// @as(@Vector(2, i500), .{ undefined, 0 })1829// @as(@Vector(2, i8), .{ undefined, 0 })
1830// @as(@Vector(2, i500), undefined)1830// @as(@Vector(2, i8), undefined)
1831// @as(@Vector(2, i500), undefined)1831// @as(@Vector(2, i8), undefined)
1832// @as(@Vector(2, i500), undefined)1832// @as(@Vector(2, i8), undefined)
1833// @as(@Vector(2, i500), undefined)1833// @as(@Vector(2, i8), undefined)
1834// @as(@Vector(2, i500), undefined)1834// @as(@Vector(2, i8), undefined)
1835// @as(i500, undefined)1835// @as(i8, undefined)
1836// @as(i500, undefined)1836// @as(i8, undefined)
1837// @as(@Vector(2, i500), .{ 0, undefined })1837// @as(@Vector(2, i8), .{ 0, undefined })
1838// @as(@Vector(2, i500), .{ undefined, 0 })1838// @as(@Vector(2, i8), .{ undefined, 0 })
1839// @as(@Vector(2, i500), undefined)1839// @as(@Vector(2, i8), undefined)
1840// @as(@Vector(2, i500), .{ 0, undefined })1840// @as(@Vector(2, i8), .{ 0, undefined })
1841// @as(@Vector(2, i500), .{ 0, undefined })1841// @as(@Vector(2, i8), .{ 0, undefined })
1842// @as(@Vector(2, i500), undefined)1842// @as(@Vector(2, i8), undefined)
1843// @as(@Vector(2, i500), undefined)1843// @as(@Vector(2, i8), undefined)
1844// @as(@Vector(2, i500), .{ undefined, 0 })1844// @as(@Vector(2, i8), .{ undefined, 0 })
1845// @as(@Vector(2, i500), undefined)1845// @as(@Vector(2, i8), undefined)
1846// @as(@Vector(2, i500), .{ undefined, 0 })1846// @as(@Vector(2, i8), .{ undefined, 0 })
1847// @as(@Vector(2, i500), undefined)1847// @as(@Vector(2, i8), undefined)
1848// @as(@Vector(2, i500), undefined)1848// @as(@Vector(2, i8), undefined)
1849// @as(@Vector(2, i500), undefined)1849// @as(@Vector(2, i8), undefined)
1850// @as(@Vector(2, i500), undefined)1850// @as(@Vector(2, i8), undefined)
1851// @as(@Vector(2, i500), undefined)1851// @as(@Vector(2, i8), undefined)
1852// @as(i500, undefined)1852// @as(i8, undefined)
1853// @as(i500, undefined)1853// @as(i8, undefined)
1854// @as(@Vector(2, i500), .{ 9, undefined })1854// @as(@Vector(2, i8), .{ 9, undefined })
1855// @as(@Vector(2, i500), .{ undefined, 9 })1855// @as(@Vector(2, i8), .{ undefined, 9 })
1856// @as(@Vector(2, i500), undefined)1856// @as(@Vector(2, i8), undefined)
1857// @as(@Vector(2, i500), .{ 9, undefined })1857// @as(@Vector(2, i8), .{ 9, undefined })
1858// @as(@Vector(2, i500), .{ 9, undefined })1858// @as(@Vector(2, i8), .{ 9, undefined })
1859// @as(@Vector(2, i500), undefined)1859// @as(@Vector(2, i8), undefined)
1860// @as(@Vector(2, i500), undefined)1860// @as(@Vector(2, i8), undefined)
1861// @as(@Vector(2, i500), .{ undefined, 9 })1861// @as(@Vector(2, i8), .{ undefined, 9 })
1862// @as(@Vector(2, i500), undefined)1862// @as(@Vector(2, i8), undefined)
1863// @as(@Vector(2, i500), .{ undefined, 9 })1863// @as(@Vector(2, i8), .{ undefined, 9 })
1864// @as(@Vector(2, i500), undefined)1864// @as(@Vector(2, i8), undefined)
1865// @as(@Vector(2, i500), undefined)1865// @as(@Vector(2, i8), undefined)
1866// @as(@Vector(2, i500), undefined)1866// @as(@Vector(2, i8), undefined)
1867// @as(@Vector(2, i500), undefined)1867// @as(@Vector(2, i8), undefined)
1868// @as(@Vector(2, i500), undefined)1868// @as(@Vector(2, i8), undefined)
1869// @as(i500, undefined)1869// @as(i8, undefined)
1870// @as(i500, undefined)1870// @as(i8, undefined)
1871// @as(@Vector(2, i500), .{ 9, undefined })1871// @as(@Vector(2, i8), .{ 9, undefined })
1872// @as(@Vector(2, i500), .{ undefined, 9 })1872// @as(@Vector(2, i8), .{ undefined, 9 })
1873// @as(@Vector(2, i500), undefined)1873// @as(@Vector(2, i8), undefined)
1874// @as(@Vector(2, i500), .{ 9, undefined })1874// @as(@Vector(2, i8), .{ 9, undefined })
1875// @as(@Vector(2, i500), .{ 9, undefined })1875// @as(@Vector(2, i8), .{ 9, undefined })
1876// @as(@Vector(2, i500), undefined)1876// @as(@Vector(2, i8), undefined)
1877// @as(@Vector(2, i500), undefined)1877// @as(@Vector(2, i8), undefined)
1878// @as(@Vector(2, i500), .{ undefined, 9 })1878// @as(@Vector(2, i8), .{ undefined, 9 })
1879// @as(@Vector(2, i500), undefined)1879// @as(@Vector(2, i8), undefined)
1880// @as(@Vector(2, i500), .{ undefined, 9 })1880// @as(@Vector(2, i8), .{ undefined, 9 })
1881// @as(@Vector(2, i500), undefined)1881// @as(@Vector(2, i8), undefined)
1882// @as(@Vector(2, i500), undefined)1882// @as(@Vector(2, i8), undefined)
1883// @as(@Vector(2, i500), undefined)1883// @as(@Vector(2, i8), undefined)
1884// @as(@Vector(2, i500), undefined)1884// @as(@Vector(2, i8), undefined)
1885// @as(@Vector(2, i500), undefined)1885// @as(@Vector(2, i8), undefined)
1886// @as(i500, undefined)1886// @as(i8, undefined)
1887// @as(i500, undefined)1887// @as(i8, undefined)
1888// @as(@Vector(2, i500), .{ 0, undefined })1888// @as(@Vector(2, i8), .{ 0, undefined })
1889// @as(@Vector(2, i500), .{ undefined, 0 })1889// @as(@Vector(2, i8), .{ undefined, 0 })
1890// @as(@Vector(2, i500), undefined)1890// @as(@Vector(2, i8), undefined)
1891// @as(@Vector(2, i500), .{ 0, undefined })1891// @as(@Vector(2, i8), .{ 0, undefined })
1892// @as(@Vector(2, i500), .{ 0, undefined })1892// @as(@Vector(2, i8), .{ 0, undefined })
1893// @as(@Vector(2, i500), undefined)1893// @as(@Vector(2, i8), undefined)
1894// @as(@Vector(2, i500), undefined)1894// @as(@Vector(2, i8), undefined)
1895// @as(@Vector(2, i500), .{ undefined, 0 })1895// @as(@Vector(2, i8), .{ undefined, 0 })
1896// @as(@Vector(2, i500), undefined)1896// @as(@Vector(2, i8), undefined)
1897// @as(@Vector(2, i500), .{ undefined, 0 })1897// @as(@Vector(2, i8), .{ undefined, 0 })
1898// @as(@Vector(2, i500), undefined)1898// @as(@Vector(2, i8), undefined)
1899// @as(@Vector(2, i500), undefined)1899// @as(@Vector(2, i8), undefined)
1900// @as(@Vector(2, i500), undefined)1900// @as(@Vector(2, i8), undefined)
1901// @as(@Vector(2, i500), undefined)1901// @as(@Vector(2, i8), undefined)
1902// @as(@Vector(2, i500), undefined)1902// @as(@Vector(2, i8), undefined)
1903// @as(i500, undefined)1903// @as(i8, undefined)
1904// @as(@Vector(2, i500), undefined)1904// @as(@Vector(2, i8), undefined)
1905// @as(i500, undefined)1905// @as(i8, undefined)
1906// @as(i500, undefined)1906// @as(i8, undefined)
1907// @as(@Vector(2, i500), undefined)1907// @as(@Vector(2, i8), undefined)
1908// @as(@Vector(2, i500), undefined)1908// @as(@Vector(2, i8), undefined)
1909// @as(i500, undefined)1909// @as(i8, undefined)
1910// @as(@Vector(2, i500), undefined)1910// @as(@Vector(2, i8), undefined)
1911// @as(i500, undefined)1911// @as(i8, undefined)
1912// @as(i500, undefined)1912// @as(i8, undefined)
1913// @as(@Vector(2, i500), [runtime value])1913// @as(@Vector(2, i8), [runtime value])
1914// @as(@Vector(2, i500), [runtime value])1914// @as(@Vector(2, i8), [runtime value])
1915// @as(@Vector(2, i500), undefined)1915// @as(@Vector(2, i8), undefined)
1916// @as(@Vector(2, i500), [runtime value])1916// @as(@Vector(2, i8), [runtime value])
1917// @as(@Vector(2, i500), [runtime value])1917// @as(@Vector(2, i8), [runtime value])
1918// @as(@Vector(2, i500), [runtime value])1918// @as(@Vector(2, i8), [runtime value])
1919// @as(@Vector(2, i500), undefined)1919// @as(@Vector(2, i8), undefined)
1920// @as(@Vector(2, i500), [runtime value])1920// @as(@Vector(2, i8), [runtime value])
1921// @as(@Vector(2, i500), [runtime value])1921// @as(@Vector(2, i8), [runtime value])
1922// @as(@Vector(2, i500), [runtime value])1922// @as(@Vector(2, i8), [runtime value])
1923// @as(@Vector(2, i500), undefined)1923// @as(@Vector(2, i8), undefined)
1924// @as(@Vector(2, i500), undefined)1924// @as(@Vector(2, i8), undefined)
1925// @as(@Vector(2, i500), undefined)1925// @as(@Vector(2, i8), undefined)
1926// @as(@Vector(2, i500), undefined)1926// @as(@Vector(2, i8), undefined)
1927// @as(@Vector(2, i500), undefined)1927// @as(@Vector(2, i8), undefined)
1928// @as(i500, undefined)1928// @as(i8, undefined)
1929// @as(i500, undefined)1929// @as(i8, undefined)
1930// @as(@Vector(2, i500), [runtime value])1930// @as(@Vector(2, i8), [runtime value])
1931// @as(@Vector(2, i500), [runtime value])1931// @as(@Vector(2, i8), [runtime value])
1932// @as(@Vector(2, i500), undefined)1932// @as(@Vector(2, i8), undefined)
1933// @as(@Vector(2, i500), [runtime value])1933// @as(@Vector(2, i8), [runtime value])
1934// @as(@Vector(2, i500), [runtime value])1934// @as(@Vector(2, i8), [runtime value])
1935// @as(@Vector(2, i500), [runtime value])1935// @as(@Vector(2, i8), [runtime value])
1936// @as(@Vector(2, i500), undefined)1936// @as(@Vector(2, i8), undefined)
1937// @as(@Vector(2, i500), [runtime value])1937// @as(@Vector(2, i8), [runtime value])
1938// @as(@Vector(2, i500), [runtime value])1938// @as(@Vector(2, i8), [runtime value])
1939// @as(@Vector(2, i500), [runtime value])1939// @as(@Vector(2, i8), [runtime value])
1940// @as(@Vector(2, i500), undefined)1940// @as(@Vector(2, i8), undefined)
1941// @as(@Vector(2, i500), undefined)1941// @as(@Vector(2, i8), undefined)
1942// @as(@Vector(2, i500), undefined)1942// @as(@Vector(2, i8), undefined)
1943// @as(@Vector(2, i500), undefined)1943// @as(@Vector(2, i8), undefined)
1944// @as(@Vector(2, i500), undefined)1944// @as(@Vector(2, i8), undefined)
1945// @as(i500, undefined)1945// @as(i8, undefined)
1946// @as(i500, undefined)1946// @as(i8, undefined)
1947// @as(@Vector(2, i500), [runtime value])1947// @as(@Vector(2, i8), [runtime value])
1948// @as(@Vector(2, i500), [runtime value])1948// @as(@Vector(2, i8), [runtime value])
1949// @as(@Vector(2, i500), undefined)1949// @as(@Vector(2, i8), undefined)
1950// @as(@Vector(2, i500), [runtime value])1950// @as(@Vector(2, i8), [runtime value])
1951// @as(@Vector(2, i500), [runtime value])1951// @as(@Vector(2, i8), [runtime value])
1952// @as(@Vector(2, i500), [runtime value])1952// @as(@Vector(2, i8), [runtime value])
1953// @as(@Vector(2, i500), undefined)1953// @as(@Vector(2, i8), undefined)
1954// @as(@Vector(2, i500), [runtime value])1954// @as(@Vector(2, i8), [runtime value])
1955// @as(@Vector(2, i500), [runtime value])1955// @as(@Vector(2, i8), [runtime value])
1956// @as(@Vector(2, i500), [runtime value])1956// @as(@Vector(2, i8), [runtime value])
1957// @as(@Vector(2, i500), undefined)1957// @as(@Vector(2, i8), undefined)
1958// @as(@Vector(2, i500), undefined)1958// @as(@Vector(2, i8), undefined)
1959// @as(@Vector(2, i500), undefined)1959// @as(@Vector(2, i8), undefined)
1960// @as(@Vector(2, i500), undefined)1960// @as(@Vector(2, i8), undefined)
1961// @as(@Vector(2, i500), undefined)1961// @as(@Vector(2, i8), undefined)
1962// @as(i500, undefined)1962// @as(i8, undefined)
1963// @as(i500, undefined)1963// @as(i8, undefined)
1964// @as(@Vector(2, i500), [runtime value])1964// @as(@Vector(2, i8), [runtime value])
1965// @as(@Vector(2, i500), [runtime value])1965// @as(@Vector(2, i8), [runtime value])
1966// @as(@Vector(2, i500), undefined)1966// @as(@Vector(2, i8), undefined)
1967// @as(@Vector(2, i500), [runtime value])1967// @as(@Vector(2, i8), [runtime value])
1968// @as(@Vector(2, i500), [runtime value])1968// @as(@Vector(2, i8), [runtime value])
1969// @as(@Vector(2, i500), [runtime value])1969// @as(@Vector(2, i8), [runtime value])
1970// @as(@Vector(2, i500), undefined)1970// @as(@Vector(2, i8), undefined)
1971// @as(@Vector(2, i500), [runtime value])1971// @as(@Vector(2, i8), [runtime value])
1972// @as(@Vector(2, i500), [runtime value])1972// @as(@Vector(2, i8), [runtime value])
1973// @as(@Vector(2, i500), [runtime value])1973// @as(@Vector(2, i8), [runtime value])
1974// @as(@Vector(2, i500), undefined)1974// @as(@Vector(2, i8), undefined)
1975// @as(@Vector(2, i500), undefined)1975// @as(@Vector(2, i8), undefined)
1976// @as(@Vector(2, i500), undefined)1976// @as(@Vector(2, i8), undefined)
1977// @as(@Vector(2, i500), undefined)1977// @as(@Vector(2, i8), undefined)
1978// @as(@Vector(2, i500), undefined)1978// @as(@Vector(2, i8), undefined)
1979// @as(i500, undefined)1979// @as(i8, undefined)
1980// @as(i500, undefined)1980// @as(i8, undefined)
1981// @as(@Vector(2, i500), [runtime value])1981// @as(@Vector(2, i8), [runtime value])
1982// @as(@Vector(2, i500), [runtime value])1982// @as(@Vector(2, i8), [runtime value])
1983// @as(@Vector(2, i500), undefined)1983// @as(@Vector(2, i8), undefined)
1984// @as(@Vector(2, i500), [runtime value])1984// @as(@Vector(2, i8), [runtime value])
1985// @as(@Vector(2, i500), [runtime value])1985// @as(@Vector(2, i8), [runtime value])
1986// @as(@Vector(2, i500), [runtime value])1986// @as(@Vector(2, i8), [runtime value])
1987// @as(@Vector(2, i500), undefined)1987// @as(@Vector(2, i8), undefined)
1988// @as(@Vector(2, i500), [runtime value])1988// @as(@Vector(2, i8), [runtime value])
1989// @as(@Vector(2, i500), [runtime value])1989// @as(@Vector(2, i8), [runtime value])
1990// @as(@Vector(2, i500), [runtime value])1990// @as(@Vector(2, i8), [runtime value])
1991// @as(@Vector(2, i500), undefined)1991// @as(@Vector(2, i8), undefined)
1992// @as(@Vector(2, i500), undefined)1992// @as(@Vector(2, i8), undefined)
1993// @as(@Vector(2, i500), undefined)1993// @as(@Vector(2, i8), undefined)
1994// @as(@Vector(2, i500), undefined)1994// @as(@Vector(2, i8), undefined)
1995// @as(@Vector(2, i500), undefined)1995// @as(@Vector(2, i8), undefined)
1996// @as(i500, undefined)1996// @as(i8, undefined)
1997// @as(i500, undefined)1997// @as(i8, undefined)
1998// @as(@Vector(2, i500), [runtime value])1998// @as(@Vector(2, i8), [runtime value])
1999// @as(@Vector(2, i500), [runtime value])1999// @as(@Vector(2, i8), [runtime value])
2000// @as(@Vector(2, i500), undefined)2000// @as(@Vector(2, i8), undefined)
2001// @as(@Vector(2, i500), [runtime value])2001// @as(@Vector(2, i8), [runtime value])
2002// @as(@Vector(2, i500), [runtime value])2002// @as(@Vector(2, i8), [runtime value])
2003// @as(@Vector(2, i500), [runtime value])2003// @as(@Vector(2, i8), [runtime value])
2004// @as(@Vector(2, i500), undefined)2004// @as(@Vector(2, i8), undefined)
2005// @as(@Vector(2, i500), [runtime value])2005// @as(@Vector(2, i8), [runtime value])
2006// @as(@Vector(2, i500), [runtime value])2006// @as(@Vector(2, i8), [runtime value])
2007// @as(@Vector(2, i500), [runtime value])2007// @as(@Vector(2, i8), [runtime value])
2008// @as(@Vector(2, i500), undefined)2008// @as(@Vector(2, i8), undefined)
2009// @as(@Vector(2, i500), undefined)2009// @as(@Vector(2, i8), undefined)
2010// @as(@Vector(2, i500), undefined)2010// @as(@Vector(2, i8), undefined)
2011// @as(@Vector(2, i500), undefined)2011// @as(@Vector(2, i8), undefined)
2012// @as(@Vector(2, i500), undefined)2012// @as(@Vector(2, i8), undefined)
2013// @as(i500, [runtime value])2013// @as(i8, [runtime value])
2014// @as(i500, [runtime value])2014// @as(i8, [runtime value])
2015// @as(@Vector(2, i500), [runtime value])2015// @as(@Vector(2, i8), [runtime value])
2016// @as(@Vector(2, i500), [runtime value])2016// @as(@Vector(2, i8), [runtime value])
2017// @as(@Vector(2, i500), [runtime value])2017// @as(@Vector(2, i8), [runtime value])
2018// @as(@Vector(2, i500), [runtime value])2018// @as(@Vector(2, i8), [runtime value])
2019// @as(@Vector(2, i500), [runtime value])2019// @as(@Vector(2, i8), [runtime value])
2020// @as(@Vector(2, i500), [runtime value])2020// @as(@Vector(2, i8), [runtime value])
2021// @as(@Vector(2, i500), [runtime value])2021// @as(@Vector(2, i8), [runtime value])
2022// @as(@Vector(2, i500), [runtime value])2022// @as(@Vector(2, i8), [runtime value])
2023// @as(@Vector(2, i500), [runtime value])2023// @as(@Vector(2, i8), [runtime value])
2024// @as(@Vector(2, i500), [runtime value])2024// @as(@Vector(2, i8), [runtime value])
2025// @as(@Vector(2, i500), [runtime value])2025// @as(@Vector(2, i8), [runtime value])
2026// @as(@Vector(2, i500), [runtime value])2026// @as(@Vector(2, i8), [runtime value])
2027// @as(@Vector(2, i500), [runtime value])2027// @as(@Vector(2, i8), [runtime value])
2028// @as(@Vector(2, i500), [runtime value])2028// @as(@Vector(2, i8), [runtime value])
2029// @as(@Vector(2, i500), undefined)2029// @as(@Vector(2, i8), undefined)
2030// @as(i500, undefined)2030// @as(i8, undefined)
2031// @as(@Vector(2, i500), undefined)2031// @as(@Vector(2, i8), undefined)
2032// @as(i500, undefined)2032// @as(i8, undefined)
2033// @as(i500, undefined)2033// @as(i8, undefined)
2034// @as(@Vector(2, i500), undefined)2034// @as(@Vector(2, i8), undefined)
2035// @as(@Vector(2, i500), undefined)2035// @as(@Vector(2, i8), undefined)
2036// @as(i500, undefined)2036// @as(i8, undefined)
2037// @as(@Vector(2, i500), undefined)2037// @as(@Vector(2, i8), 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)
2478// @as(f128, undefined)2038// @as(f128, undefined)
2479// @as(f128, undefined)2039// @as(f128, undefined)
2480// @as(@Vector(2, f128), .{ 6, undefined })2040// @as(@Vector(2, f128), .{ 6, undefined })
...@@ -2585,3 +2145,443 @@ inline fn testFloatWithValue(comptime Float: type, x: Float) void {...@@ -2585,3 +2145,443 @@ inline fn testFloatWithValue(comptime Float: type, x: Float) void {
2585// @as(@Vector(2, f128), [runtime value])2145// @as(@Vector(2, f128), [runtime value])
2586// @as(@Vector(2, f128), [runtime value])2146// @as(@Vector(2, f128), [runtime value])
2587// @as(@Vector(2, f128), undefined)2147// @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");...@@ -125,27 +125,19 @@ const std = @import("std");
125// :53:17: error: use of undefined value here causes illegal behavior125// :53:17: error: use of undefined value here causes illegal behavior
126// :53:17: error: use of undefined value here causes illegal behavior126// :53:17: error: use of undefined value here causes illegal behavior
127// :53:17: error: use of undefined value here causes illegal behavior127// :53:17: error: use of undefined value here causes illegal behavior
128// :53:17: note: when computing vector element at index '0'
129// :53:17: error: use of undefined value here causes illegal behavior128// :53:17: error: use of undefined value here causes illegal behavior
130// :53:17: note: when computing vector element at index '0'
131// :53:17: error: use of undefined value here causes illegal behavior129// :53:17: error: use of undefined value here causes illegal behavior
132// :53:17: note: when computing vector element at index '0'
133// :53:17: error: use of undefined value here causes illegal behavior130// :53:17: error: use of undefined value here causes illegal behavior
134// :53:17: note: when computing vector element at index '0'
135// :53:17: error: use of undefined value here causes illegal behavior131// :53:17: error: use of undefined value here causes illegal behavior
136// :53:17: note: when computing vector element at index '1'
137// :53:17: error: use of undefined value here causes illegal behavior132// :53:17: error: use of undefined value here causes illegal behavior
138// :53:17: note: when computing vector element at index '1'
139// :53:17: error: use of undefined value here causes illegal behavior133// :53:17: error: use of undefined value here causes illegal behavior
140// :53:17: note: when computing vector element at index '0'
141// :53:17: error: use of undefined value here causes illegal behavior134// :53:17: error: use of undefined value here causes illegal behavior
142// :53:17: note: when computing vector element at index '0'
143// :53:17: error: use of undefined value here causes illegal behavior135// :53:17: error: use of undefined value here causes illegal behavior
144// :53:17: note: when computing vector element at index '0'
145// :53:17: error: use of undefined value here causes illegal behavior136// :53:17: error: use of undefined value here causes illegal behavior
146// :53:17: note: when computing vector element at index '0'
147// :53:17: error: use of undefined value here causes illegal behavior137// :53:17: error: use of undefined value here causes illegal behavior
138// :53:17: note: when computing vector element at index '0'
148// :53:17: error: use of undefined value here causes illegal behavior139// :53:17: error: use of undefined value here causes illegal behavior
140// :53:17: note: when computing vector element at index '0'
149// :53:17: error: use of undefined value here causes illegal behavior141// :53:17: error: use of undefined value here causes illegal behavior
150// :53:17: note: when computing vector element at index '0'142// :53:17: note: when computing vector element at index '0'
151// :53:17: error: use of undefined value here causes illegal behavior143// :53:17: error: use of undefined value here causes illegal behavior
...@@ -155,9 +147,9 @@ const std = @import("std");...@@ -155,9 +147,9 @@ const std = @import("std");
155// :53:17: error: use of undefined value here causes illegal behavior147// :53:17: error: use of undefined value here causes illegal behavior
156// :53:17: note: when computing vector element at index '0'148// :53:17: note: when computing vector element at index '0'
157// :53:17: error: use of undefined value here causes illegal behavior149// :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'
159// :53:17: error: use of undefined value here causes illegal behavior151// :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'
161// :53:17: error: use of undefined value here causes illegal behavior153// :53:17: error: use of undefined value here causes illegal behavior
162// :53:17: note: when computing vector element at index '0'154// :53:17: note: when computing vector element at index '0'
163// :53:17: error: use of undefined value here causes illegal behavior155// :53:17: error: use of undefined value here causes illegal behavior
...@@ -167,7 +159,9 @@ const std = @import("std");...@@ -167,7 +159,9 @@ const std = @import("std");
167// :53:17: error: use of undefined value here causes illegal behavior159// :53:17: error: use of undefined value here causes illegal behavior
168// :53:17: note: when computing vector element at index '0'160// :53:17: note: when computing vector element at index '0'
169// :53:17: error: use of undefined value here causes illegal behavior161// :53:17: error: use of undefined value here causes illegal behavior
162// :53:17: note: when computing vector element at index '0'
170// :53:17: error: use of undefined value here causes illegal behavior163// :53:17: error: use of undefined value here causes illegal behavior
164// :53:17: note: when computing vector element at index '0'
171// :53:17: error: use of undefined value here causes illegal behavior165// :53:17: error: use of undefined value here causes illegal behavior
172// :53:17: note: when computing vector element at index '0'166// :53:17: note: when computing vector element at index '0'
173// :53:17: error: use of undefined value here causes illegal behavior167// :53:17: error: use of undefined value here causes illegal behavior
...@@ -177,9 +171,9 @@ const std = @import("std");...@@ -177,9 +171,9 @@ const std = @import("std");
177// :53:17: error: use of undefined value here causes illegal behavior171// :53:17: error: use of undefined value here causes illegal behavior
178// :53:17: note: when computing vector element at index '0'172// :53:17: note: when computing vector element at index '0'
179// :53:17: error: use of undefined value here causes illegal behavior173// :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'
181// :53:17: error: use of undefined value here causes illegal behavior175// :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'
183// :53:17: error: use of undefined value here causes illegal behavior177// :53:17: error: use of undefined value here causes illegal behavior
184// :53:17: note: when computing vector element at index '0'178// :53:17: note: when computing vector element at index '0'
185// :53:17: error: use of undefined value here causes illegal behavior179// :53:17: error: use of undefined value here causes illegal behavior
...@@ -189,7 +183,9 @@ const std = @import("std");...@@ -189,7 +183,9 @@ const std = @import("std");
189// :53:17: error: use of undefined value here causes illegal behavior183// :53:17: error: use of undefined value here causes illegal behavior
190// :53:17: note: when computing vector element at index '0'184// :53:17: note: when computing vector element at index '0'
191// :53:17: error: use of undefined value here causes illegal behavior185// :53:17: error: use of undefined value here causes illegal behavior
186// :53:17: note: when computing vector element at index '0'
192// :53:17: error: use of undefined value here causes illegal behavior187// :53:17: error: use of undefined value here causes illegal behavior
188// :53:17: note: when computing vector element at index '0'
193// :53:17: error: use of undefined value here causes illegal behavior189// :53:17: error: use of undefined value here causes illegal behavior
194// :53:17: note: when computing vector element at index '0'190// :53:17: note: when computing vector element at index '0'
195// :53:17: error: use of undefined value here causes illegal behavior191// :53:17: error: use of undefined value here causes illegal behavior
...@@ -199,9 +195,9 @@ const std = @import("std");...@@ -199,9 +195,9 @@ const std = @import("std");
199// :53:17: error: use of undefined value here causes illegal behavior195// :53:17: error: use of undefined value here causes illegal behavior
200// :53:17: note: when computing vector element at index '0'196// :53:17: note: when computing vector element at index '0'
201// :53:17: error: use of undefined value here causes illegal behavior197// :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'
203// :53:17: error: use of undefined value here causes illegal behavior199// :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'
205// :53:17: error: use of undefined value here causes illegal behavior201// :53:17: error: use of undefined value here causes illegal behavior
206// :53:17: note: when computing vector element at index '0'202// :53:17: note: when computing vector element at index '0'
207// :53:17: error: use of undefined value here causes illegal behavior203// :53:17: error: use of undefined value here causes illegal behavior
...@@ -211,7 +207,9 @@ const std = @import("std");...@@ -211,7 +207,9 @@ const std = @import("std");
211// :53:17: error: use of undefined value here causes illegal behavior207// :53:17: error: use of undefined value here causes illegal behavior
212// :53:17: note: when computing vector element at index '0'208// :53:17: note: when computing vector element at index '0'
213// :53:17: error: use of undefined value here causes illegal behavior209// :53:17: error: use of undefined value here causes illegal behavior
210// :53:17: note: when computing vector element at index '0'
214// :53:17: error: use of undefined value here causes illegal behavior211// :53:17: error: use of undefined value here causes illegal behavior
212// :53:17: note: when computing vector element at index '0'
215// :53:17: error: use of undefined value here causes illegal behavior213// :53:17: error: use of undefined value here causes illegal behavior
216// :53:17: note: when computing vector element at index '0'214// :53:17: note: when computing vector element at index '0'
217// :53:17: error: use of undefined value here causes illegal behavior215// :53:17: error: use of undefined value here causes illegal behavior
...@@ -221,9 +219,9 @@ const std = @import("std");...@@ -221,9 +219,9 @@ const std = @import("std");
221// :53:17: error: use of undefined value here causes illegal behavior219// :53:17: error: use of undefined value here causes illegal behavior
222// :53:17: note: when computing vector element at index '0'220// :53:17: note: when computing vector element at index '0'
223// :53:17: error: use of undefined value here causes illegal behavior221// :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'
225// :53:17: error: use of undefined value here causes illegal behavior223// :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'
227// :53:17: error: use of undefined value here causes illegal behavior225// :53:17: error: use of undefined value here causes illegal behavior
228// :53:17: note: when computing vector element at index '0'226// :53:17: note: when computing vector element at index '0'
229// :53:17: error: use of undefined value here causes illegal behavior227// :53:17: error: use of undefined value here causes illegal behavior
...@@ -233,27 +231,29 @@ const std = @import("std");...@@ -233,27 +231,29 @@ const std = @import("std");
233// :53:17: error: use of undefined value here causes illegal behavior231// :53:17: error: use of undefined value here causes illegal behavior
234// :53:17: note: when computing vector element at index '0'232// :53:17: note: when computing vector element at index '0'
235// :53:17: error: use of undefined value here causes illegal behavior233// :53:17: error: use of undefined value here causes illegal behavior
234// :53:17: note: when computing vector element at index '1'
236// :53:17: error: use of undefined value here causes illegal behavior235// :53:17: error: use of undefined value here causes illegal behavior
236// :53:17: note: when computing vector element at index '1'
237// :53:17: error: use of undefined value here causes illegal behavior237// :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'
239// :53:17: error: use of undefined value here causes illegal behavior239// :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'
241// :53:17: error: use of undefined value here causes illegal behavior241// :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'
243// :53:17: error: use of undefined value here causes illegal behavior243// :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'
245// :53:17: error: use of undefined value here causes illegal behavior245// :53:17: error: use of undefined value here causes illegal behavior
246// :53:17: note: when computing vector element at index '1'246// :53:17: note: when computing vector element at index '1'
247// :53:17: error: use of undefined value here causes illegal behavior247// :53:17: error: use of undefined value here causes illegal behavior
248// :53:17: note: when computing vector element at index '1'248// :53:17: note: when computing vector element at index '1'
249// :53:17: error: use of undefined value here causes illegal behavior249// :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'
251// :53:17: error: use of undefined value here causes illegal behavior251// :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'
253// :53:17: error: use of undefined value here causes illegal behavior253// :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'
255// :53:17: error: use of undefined value here causes illegal behavior255// :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'
257// :53:22: error: use of undefined value here causes illegal behavior257// :53:22: error: use of undefined value here causes illegal behavior
258// :53:22: note: when computing vector element at index '0'258// :53:22: note: when computing vector element at index '0'
259// :53:22: error: use of undefined value here causes illegal behavior259// :53:22: error: use of undefined value here causes illegal behavior
...@@ -281,27 +281,19 @@ const std = @import("std");...@@ -281,27 +281,19 @@ const std = @import("std");
281// :56:27: error: use of undefined value here causes illegal behavior281// :56:27: error: use of undefined value here causes illegal behavior
282// :56:27: error: use of undefined value here causes illegal behavior282// :56:27: error: use of undefined value here causes illegal behavior
283// :56:27: error: use of undefined value here causes illegal behavior283// :56:27: error: use of undefined value here causes illegal behavior
284// :56:27: note: when computing vector element at index '0'
285// :56:27: error: use of undefined value here causes illegal behavior284// :56:27: error: use of undefined value here causes illegal behavior
286// :56:27: note: when computing vector element at index '0'
287// :56:27: error: use of undefined value here causes illegal behavior285// :56:27: error: use of undefined value here causes illegal behavior
288// :56:27: note: when computing vector element at index '0'
289// :56:27: error: use of undefined value here causes illegal behavior286// :56:27: error: use of undefined value here causes illegal behavior
290// :56:27: note: when computing vector element at index '0'
291// :56:27: error: use of undefined value here causes illegal behavior287// :56:27: error: use of undefined value here causes illegal behavior
292// :56:27: note: when computing vector element at index '1'
293// :56:27: error: use of undefined value here causes illegal behavior288// :56:27: error: use of undefined value here causes illegal behavior
294// :56:27: note: when computing vector element at index '1'
295// :56:27: error: use of undefined value here causes illegal behavior289// :56:27: error: use of undefined value here causes illegal behavior
296// :56:27: note: when computing vector element at index '0'
297// :56:27: error: use of undefined value here causes illegal behavior290// :56:27: error: use of undefined value here causes illegal behavior
298// :56:27: note: when computing vector element at index '0'
299// :56:27: error: use of undefined value here causes illegal behavior291// :56:27: error: use of undefined value here causes illegal behavior
300// :56:27: note: when computing vector element at index '0'
301// :56:27: error: use of undefined value here causes illegal behavior292// :56:27: error: use of undefined value here causes illegal behavior
302// :56:27: note: when computing vector element at index '0'
303// :56:27: error: use of undefined value here causes illegal behavior293// :56:27: error: use of undefined value here causes illegal behavior
294// :56:27: note: when computing vector element at index '0'
304// :56:27: error: use of undefined value here causes illegal behavior295// :56:27: error: use of undefined value here causes illegal behavior
296// :56:27: note: when computing vector element at index '0'
305// :56:27: error: use of undefined value here causes illegal behavior297// :56:27: error: use of undefined value here causes illegal behavior
306// :56:27: note: when computing vector element at index '0'298// :56:27: note: when computing vector element at index '0'
307// :56:27: error: use of undefined value here causes illegal behavior299// :56:27: error: use of undefined value here causes illegal behavior
...@@ -311,9 +303,9 @@ const std = @import("std");...@@ -311,9 +303,9 @@ const std = @import("std");
311// :56:27: error: use of undefined value here causes illegal behavior303// :56:27: error: use of undefined value here causes illegal behavior
312// :56:27: note: when computing vector element at index '0'304// :56:27: note: when computing vector element at index '0'
313// :56:27: error: use of undefined value here causes illegal behavior305// :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'
315// :56:27: error: use of undefined value here causes illegal behavior307// :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'
317// :56:27: error: use of undefined value here causes illegal behavior309// :56:27: error: use of undefined value here causes illegal behavior
318// :56:27: note: when computing vector element at index '0'310// :56:27: note: when computing vector element at index '0'
319// :56:27: error: use of undefined value here causes illegal behavior311// :56:27: error: use of undefined value here causes illegal behavior
...@@ -323,7 +315,9 @@ const std = @import("std");...@@ -323,7 +315,9 @@ const std = @import("std");
323// :56:27: error: use of undefined value here causes illegal behavior315// :56:27: error: use of undefined value here causes illegal behavior
324// :56:27: note: when computing vector element at index '0'316// :56:27: note: when computing vector element at index '0'
325// :56:27: error: use of undefined value here causes illegal behavior317// :56:27: error: use of undefined value here causes illegal behavior
318// :56:27: note: when computing vector element at index '0'
326// :56:27: error: use of undefined value here causes illegal behavior319// :56:27: error: use of undefined value here causes illegal behavior
320// :56:27: note: when computing vector element at index '0'
327// :56:27: error: use of undefined value here causes illegal behavior321// :56:27: error: use of undefined value here causes illegal behavior
328// :56:27: note: when computing vector element at index '0'322// :56:27: note: when computing vector element at index '0'
329// :56:27: error: use of undefined value here causes illegal behavior323// :56:27: error: use of undefined value here causes illegal behavior
...@@ -333,9 +327,9 @@ const std = @import("std");...@@ -333,9 +327,9 @@ const std = @import("std");
333// :56:27: error: use of undefined value here causes illegal behavior327// :56:27: error: use of undefined value here causes illegal behavior
334// :56:27: note: when computing vector element at index '0'328// :56:27: note: when computing vector element at index '0'
335// :56:27: error: use of undefined value here causes illegal behavior329// :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'
337// :56:27: error: use of undefined value here causes illegal behavior331// :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'
339// :56:27: error: use of undefined value here causes illegal behavior333// :56:27: error: use of undefined value here causes illegal behavior
340// :56:27: note: when computing vector element at index '0'334// :56:27: note: when computing vector element at index '0'
341// :56:27: error: use of undefined value here causes illegal behavior335// :56:27: error: use of undefined value here causes illegal behavior
...@@ -345,7 +339,9 @@ const std = @import("std");...@@ -345,7 +339,9 @@ const std = @import("std");
345// :56:27: error: use of undefined value here causes illegal behavior339// :56:27: error: use of undefined value here causes illegal behavior
346// :56:27: note: when computing vector element at index '0'340// :56:27: note: when computing vector element at index '0'
347// :56:27: error: use of undefined value here causes illegal behavior341// :56:27: error: use of undefined value here causes illegal behavior
342// :56:27: note: when computing vector element at index '0'
348// :56:27: error: use of undefined value here causes illegal behavior343// :56:27: error: use of undefined value here causes illegal behavior
344// :56:27: note: when computing vector element at index '0'
349// :56:27: error: use of undefined value here causes illegal behavior345// :56:27: error: use of undefined value here causes illegal behavior
350// :56:27: note: when computing vector element at index '0'346// :56:27: note: when computing vector element at index '0'
351// :56:27: error: use of undefined value here causes illegal behavior347// :56:27: error: use of undefined value here causes illegal behavior
...@@ -355,9 +351,9 @@ const std = @import("std");...@@ -355,9 +351,9 @@ const std = @import("std");
355// :56:27: error: use of undefined value here causes illegal behavior351// :56:27: error: use of undefined value here causes illegal behavior
356// :56:27: note: when computing vector element at index '0'352// :56:27: note: when computing vector element at index '0'
357// :56:27: error: use of undefined value here causes illegal behavior353// :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'
359// :56:27: error: use of undefined value here causes illegal behavior355// :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'
361// :56:27: error: use of undefined value here causes illegal behavior357// :56:27: error: use of undefined value here causes illegal behavior
362// :56:27: note: when computing vector element at index '0'358// :56:27: note: when computing vector element at index '0'
363// :56:27: error: use of undefined value here causes illegal behavior359// :56:27: error: use of undefined value here causes illegal behavior
...@@ -367,7 +363,9 @@ const std = @import("std");...@@ -367,7 +363,9 @@ const std = @import("std");
367// :56:27: error: use of undefined value here causes illegal behavior363// :56:27: error: use of undefined value here causes illegal behavior
368// :56:27: note: when computing vector element at index '0'364// :56:27: note: when computing vector element at index '0'
369// :56:27: error: use of undefined value here causes illegal behavior365// :56:27: error: use of undefined value here causes illegal behavior
366// :56:27: note: when computing vector element at index '0'
370// :56:27: error: use of undefined value here causes illegal behavior367// :56:27: error: use of undefined value here causes illegal behavior
368// :56:27: note: when computing vector element at index '0'
371// :56:27: error: use of undefined value here causes illegal behavior369// :56:27: error: use of undefined value here causes illegal behavior
372// :56:27: note: when computing vector element at index '0'370// :56:27: note: when computing vector element at index '0'
373// :56:27: error: use of undefined value here causes illegal behavior371// :56:27: error: use of undefined value here causes illegal behavior
...@@ -377,9 +375,9 @@ const std = @import("std");...@@ -377,9 +375,9 @@ const std = @import("std");
377// :56:27: error: use of undefined value here causes illegal behavior375// :56:27: error: use of undefined value here causes illegal behavior
378// :56:27: note: when computing vector element at index '0'376// :56:27: note: when computing vector element at index '0'
379// :56:27: error: use of undefined value here causes illegal behavior377// :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'
381// :56:27: error: use of undefined value here causes illegal behavior379// :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'
383// :56:27: error: use of undefined value here causes illegal behavior381// :56:27: error: use of undefined value here causes illegal behavior
384// :56:27: note: when computing vector element at index '0'382// :56:27: note: when computing vector element at index '0'
385// :56:27: error: use of undefined value here causes illegal behavior383// :56:27: error: use of undefined value here causes illegal behavior
...@@ -389,27 +387,29 @@ const std = @import("std");...@@ -389,27 +387,29 @@ const std = @import("std");
389// :56:27: error: use of undefined value here causes illegal behavior387// :56:27: error: use of undefined value here causes illegal behavior
390// :56:27: note: when computing vector element at index '0'388// :56:27: note: when computing vector element at index '0'
391// :56:27: error: use of undefined value here causes illegal behavior389// :56:27: error: use of undefined value here causes illegal behavior
390// :56:27: note: when computing vector element at index '1'
392// :56:27: error: use of undefined value here causes illegal behavior391// :56:27: error: use of undefined value here causes illegal behavior
392// :56:27: note: when computing vector element at index '1'
393// :56:27: error: use of undefined value here causes illegal behavior393// :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'
395// :56:27: error: use of undefined value here causes illegal behavior395// :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'
397// :56:27: error: use of undefined value here causes illegal behavior397// :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'
399// :56:27: error: use of undefined value here causes illegal behavior399// :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'
401// :56:27: error: use of undefined value here causes illegal behavior401// :56:27: error: use of undefined value here causes illegal behavior
402// :56:27: note: when computing vector element at index '1'402// :56:27: note: when computing vector element at index '1'
403// :56:27: error: use of undefined value here causes illegal behavior403// :56:27: error: use of undefined value here causes illegal behavior
404// :56:27: note: when computing vector element at index '1'404// :56:27: note: when computing vector element at index '1'
405// :56:27: error: use of undefined value here causes illegal behavior405// :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'
407// :56:27: error: use of undefined value here causes illegal behavior407// :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'
409// :56:27: error: use of undefined value here causes illegal behavior409// :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'
411// :56:27: error: use of undefined value here causes illegal behavior411// :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'
413// :56:30: error: use of undefined value here causes illegal behavior413// :56:30: error: use of undefined value here causes illegal behavior
414// :56:30: note: when computing vector element at index '0'414// :56:30: note: when computing vector element at index '0'
415// :56:30: error: use of undefined value here causes illegal behavior415// :56:30: error: use of undefined value here causes illegal behavior
...@@ -437,27 +437,19 @@ const std = @import("std");...@@ -437,27 +437,19 @@ const std = @import("std");
437// :59:34: error: use of undefined value here causes illegal behavior437// :59:34: error: use of undefined value here causes illegal behavior
438// :59:34: error: use of undefined value here causes illegal behavior438// :59:34: error: use of undefined value here causes illegal behavior
439// :59:34: error: use of undefined value here causes illegal behavior439// :59:34: error: use of undefined value here causes illegal behavior
440// :59:34: note: when computing vector element at index '0'
441// :59:34: error: use of undefined value here causes illegal behavior440// :59:34: error: use of undefined value here causes illegal behavior
442// :59:34: note: when computing vector element at index '0'
443// :59:34: error: use of undefined value here causes illegal behavior441// :59:34: error: use of undefined value here causes illegal behavior
444// :59:34: note: when computing vector element at index '0'
445// :59:34: error: use of undefined value here causes illegal behavior442// :59:34: error: use of undefined value here causes illegal behavior
446// :59:34: note: when computing vector element at index '0'
447// :59:34: error: use of undefined value here causes illegal behavior443// :59:34: error: use of undefined value here causes illegal behavior
448// :59:34: note: when computing vector element at index '1'
449// :59:34: error: use of undefined value here causes illegal behavior444// :59:34: error: use of undefined value here causes illegal behavior
450// :59:34: note: when computing vector element at index '1'
451// :59:34: error: use of undefined value here causes illegal behavior445// :59:34: error: use of undefined value here causes illegal behavior
452// :59:34: note: when computing vector element at index '0'
453// :59:34: error: use of undefined value here causes illegal behavior446// :59:34: error: use of undefined value here causes illegal behavior
454// :59:34: note: when computing vector element at index '0'
455// :59:34: error: use of undefined value here causes illegal behavior447// :59:34: error: use of undefined value here causes illegal behavior
456// :59:34: note: when computing vector element at index '0'
457// :59:34: error: use of undefined value here causes illegal behavior448// :59:34: error: use of undefined value here causes illegal behavior
458// :59:34: note: when computing vector element at index '0'
459// :59:34: error: use of undefined value here causes illegal behavior449// :59:34: error: use of undefined value here causes illegal behavior
450// :59:34: note: when computing vector element at index '0'
460// :59:34: error: use of undefined value here causes illegal behavior451// :59:34: error: use of undefined value here causes illegal behavior
452// :59:34: note: when computing vector element at index '0'
461// :59:34: error: use of undefined value here causes illegal behavior453// :59:34: error: use of undefined value here causes illegal behavior
462// :59:34: note: when computing vector element at index '0'454// :59:34: note: when computing vector element at index '0'
463// :59:34: error: use of undefined value here causes illegal behavior455// :59:34: error: use of undefined value here causes illegal behavior
...@@ -467,9 +459,9 @@ const std = @import("std");...@@ -467,9 +459,9 @@ const std = @import("std");
467// :59:34: error: use of undefined value here causes illegal behavior459// :59:34: error: use of undefined value here causes illegal behavior
468// :59:34: note: when computing vector element at index '0'460// :59:34: note: when computing vector element at index '0'
469// :59:34: error: use of undefined value here causes illegal behavior461// :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'
471// :59:34: error: use of undefined value here causes illegal behavior463// :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'
473// :59:34: error: use of undefined value here causes illegal behavior465// :59:34: error: use of undefined value here causes illegal behavior
474// :59:34: note: when computing vector element at index '0'466// :59:34: note: when computing vector element at index '0'
475// :59:34: error: use of undefined value here causes illegal behavior467// :59:34: error: use of undefined value here causes illegal behavior
...@@ -479,7 +471,9 @@ const std = @import("std");...@@ -479,7 +471,9 @@ const std = @import("std");
479// :59:34: error: use of undefined value here causes illegal behavior471// :59:34: error: use of undefined value here causes illegal behavior
480// :59:34: note: when computing vector element at index '0'472// :59:34: note: when computing vector element at index '0'
481// :59:34: error: use of undefined value here causes illegal behavior473// :59:34: error: use of undefined value here causes illegal behavior
474// :59:34: note: when computing vector element at index '0'
482// :59:34: error: use of undefined value here causes illegal behavior475// :59:34: error: use of undefined value here causes illegal behavior
476// :59:34: note: when computing vector element at index '0'
483// :59:34: error: use of undefined value here causes illegal behavior477// :59:34: error: use of undefined value here causes illegal behavior
484// :59:34: note: when computing vector element at index '0'478// :59:34: note: when computing vector element at index '0'
485// :59:34: error: use of undefined value here causes illegal behavior479// :59:34: error: use of undefined value here causes illegal behavior
...@@ -489,9 +483,9 @@ const std = @import("std");...@@ -489,9 +483,9 @@ const std = @import("std");
489// :59:34: error: use of undefined value here causes illegal behavior483// :59:34: error: use of undefined value here causes illegal behavior
490// :59:34: note: when computing vector element at index '0'484// :59:34: note: when computing vector element at index '0'
491// :59:34: error: use of undefined value here causes illegal behavior485// :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'
493// :59:34: error: use of undefined value here causes illegal behavior487// :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'
495// :59:34: error: use of undefined value here causes illegal behavior489// :59:34: error: use of undefined value here causes illegal behavior
496// :59:34: note: when computing vector element at index '0'490// :59:34: note: when computing vector element at index '0'
497// :59:34: error: use of undefined value here causes illegal behavior491// :59:34: error: use of undefined value here causes illegal behavior
...@@ -501,7 +495,9 @@ const std = @import("std");...@@ -501,7 +495,9 @@ const std = @import("std");
501// :59:34: error: use of undefined value here causes illegal behavior495// :59:34: error: use of undefined value here causes illegal behavior
502// :59:34: note: when computing vector element at index '0'496// :59:34: note: when computing vector element at index '0'
503// :59:34: error: use of undefined value here causes illegal behavior497// :59:34: error: use of undefined value here causes illegal behavior
498// :59:34: note: when computing vector element at index '0'
504// :59:34: error: use of undefined value here causes illegal behavior499// :59:34: error: use of undefined value here causes illegal behavior
500// :59:34: note: when computing vector element at index '0'
505// :59:34: error: use of undefined value here causes illegal behavior501// :59:34: error: use of undefined value here causes illegal behavior
506// :59:34: note: when computing vector element at index '0'502// :59:34: note: when computing vector element at index '0'
507// :59:34: error: use of undefined value here causes illegal behavior503// :59:34: error: use of undefined value here causes illegal behavior
...@@ -511,9 +507,9 @@ const std = @import("std");...@@ -511,9 +507,9 @@ const std = @import("std");
511// :59:34: error: use of undefined value here causes illegal behavior507// :59:34: error: use of undefined value here causes illegal behavior
512// :59:34: note: when computing vector element at index '0'508// :59:34: note: when computing vector element at index '0'
513// :59:34: error: use of undefined value here causes illegal behavior509// :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'
515// :59:34: error: use of undefined value here causes illegal behavior511// :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'
517// :59:34: error: use of undefined value here causes illegal behavior513// :59:34: error: use of undefined value here causes illegal behavior
518// :59:34: note: when computing vector element at index '0'514// :59:34: note: when computing vector element at index '0'
519// :59:34: error: use of undefined value here causes illegal behavior515// :59:34: error: use of undefined value here causes illegal behavior
...@@ -523,7 +519,9 @@ const std = @import("std");...@@ -523,7 +519,9 @@ const std = @import("std");
523// :59:34: error: use of undefined value here causes illegal behavior519// :59:34: error: use of undefined value here causes illegal behavior
524// :59:34: note: when computing vector element at index '0'520// :59:34: note: when computing vector element at index '0'
525// :59:34: error: use of undefined value here causes illegal behavior521// :59:34: error: use of undefined value here causes illegal behavior
522// :59:34: note: when computing vector element at index '0'
526// :59:34: error: use of undefined value here causes illegal behavior523// :59:34: error: use of undefined value here causes illegal behavior
524// :59:34: note: when computing vector element at index '0'
527// :59:34: error: use of undefined value here causes illegal behavior525// :59:34: error: use of undefined value here causes illegal behavior
528// :59:34: note: when computing vector element at index '0'526// :59:34: note: when computing vector element at index '0'
529// :59:34: error: use of undefined value here causes illegal behavior527// :59:34: error: use of undefined value here causes illegal behavior
...@@ -533,9 +531,9 @@ const std = @import("std");...@@ -533,9 +531,9 @@ const std = @import("std");
533// :59:34: error: use of undefined value here causes illegal behavior531// :59:34: error: use of undefined value here causes illegal behavior
534// :59:34: note: when computing vector element at index '0'532// :59:34: note: when computing vector element at index '0'
535// :59:34: error: use of undefined value here causes illegal behavior533// :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'
537// :59:34: error: use of undefined value here causes illegal behavior535// :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'
539// :59:34: error: use of undefined value here causes illegal behavior537// :59:34: error: use of undefined value here causes illegal behavior
540// :59:34: note: when computing vector element at index '0'538// :59:34: note: when computing vector element at index '0'
541// :59:34: error: use of undefined value here causes illegal behavior539// :59:34: error: use of undefined value here causes illegal behavior
...@@ -545,27 +543,29 @@ const std = @import("std");...@@ -545,27 +543,29 @@ const std = @import("std");
545// :59:34: error: use of undefined value here causes illegal behavior543// :59:34: error: use of undefined value here causes illegal behavior
546// :59:34: note: when computing vector element at index '0'544// :59:34: note: when computing vector element at index '0'
547// :59:34: error: use of undefined value here causes illegal behavior545// :59:34: error: use of undefined value here causes illegal behavior
546// :59:34: note: when computing vector element at index '1'
548// :59:34: error: use of undefined value here causes illegal behavior547// :59:34: error: use of undefined value here causes illegal behavior
548// :59:34: note: when computing vector element at index '1'
549// :59:34: error: use of undefined value here causes illegal behavior549// :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'
551// :59:34: error: use of undefined value here causes illegal behavior551// :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'
553// :59:34: error: use of undefined value here causes illegal behavior553// :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'
555// :59:34: error: use of undefined value here causes illegal behavior555// :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'
557// :59:34: error: use of undefined value here causes illegal behavior557// :59:34: error: use of undefined value here causes illegal behavior
558// :59:34: note: when computing vector element at index '1'558// :59:34: note: when computing vector element at index '1'
559// :59:34: error: use of undefined value here causes illegal behavior559// :59:34: error: use of undefined value here causes illegal behavior
560// :59:34: note: when computing vector element at index '1'560// :59:34: note: when computing vector element at index '1'
561// :59:34: error: use of undefined value here causes illegal behavior561// :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'
563// :59:34: error: use of undefined value here causes illegal behavior563// :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'
565// :59:34: error: use of undefined value here causes illegal behavior565// :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'
567// :59:34: error: use of undefined value here causes illegal behavior567// :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'
569// :59:37: error: use of undefined value here causes illegal behavior569// :59:37: error: use of undefined value here causes illegal behavior
570// :59:37: note: when computing vector element at index '0'570// :59:37: note: when computing vector element at index '0'
571// :59:37: error: use of undefined value here causes illegal behavior571// :59:37: error: use of undefined value here causes illegal behavior
...@@ -593,27 +593,19 @@ const std = @import("std");...@@ -593,27 +593,19 @@ const std = @import("std");
593// :62:17: error: use of undefined value here causes illegal behavior593// :62:17: error: use of undefined value here causes illegal behavior
594// :62:17: error: use of undefined value here causes illegal behavior594// :62:17: error: use of undefined value here causes illegal behavior
595// :62:17: error: use of undefined value here causes illegal behavior595// :62:17: error: use of undefined value here causes illegal behavior
596// :62:17: note: when computing vector element at index '0'
597// :62:17: error: use of undefined value here causes illegal behavior596// :62:17: error: use of undefined value here causes illegal behavior
598// :62:17: note: when computing vector element at index '0'
599// :62:17: error: use of undefined value here causes illegal behavior597// :62:17: error: use of undefined value here causes illegal behavior
600// :62:17: note: when computing vector element at index '0'
601// :62:17: error: use of undefined value here causes illegal behavior598// :62:17: error: use of undefined value here causes illegal behavior
602// :62:17: note: when computing vector element at index '0'
603// :62:17: error: use of undefined value here causes illegal behavior599// :62:17: error: use of undefined value here causes illegal behavior
604// :62:17: note: when computing vector element at index '1'
605// :62:17: error: use of undefined value here causes illegal behavior600// :62:17: error: use of undefined value here causes illegal behavior
606// :62:17: note: when computing vector element at index '1'
607// :62:17: error: use of undefined value here causes illegal behavior601// :62:17: error: use of undefined value here causes illegal behavior
608// :62:17: note: when computing vector element at index '0'
609// :62:17: error: use of undefined value here causes illegal behavior602// :62:17: error: use of undefined value here causes illegal behavior
610// :62:17: note: when computing vector element at index '0'
611// :62:17: error: use of undefined value here causes illegal behavior603// :62:17: error: use of undefined value here causes illegal behavior
612// :62:17: note: when computing vector element at index '0'
613// :62:17: error: use of undefined value here causes illegal behavior604// :62:17: error: use of undefined value here causes illegal behavior
614// :62:17: note: when computing vector element at index '0'
615// :62:17: error: use of undefined value here causes illegal behavior605// :62:17: error: use of undefined value here causes illegal behavior
606// :62:17: note: when computing vector element at index '0'
616// :62:17: error: use of undefined value here causes illegal behavior607// :62:17: error: use of undefined value here causes illegal behavior
608// :62:17: note: when computing vector element at index '0'
617// :62:17: error: use of undefined value here causes illegal behavior609// :62:17: error: use of undefined value here causes illegal behavior
618// :62:17: note: when computing vector element at index '0'610// :62:17: note: when computing vector element at index '0'
619// :62:17: error: use of undefined value here causes illegal behavior611// :62:17: error: use of undefined value here causes illegal behavior
...@@ -623,9 +615,9 @@ const std = @import("std");...@@ -623,9 +615,9 @@ const std = @import("std");
623// :62:17: error: use of undefined value here causes illegal behavior615// :62:17: error: use of undefined value here causes illegal behavior
624// :62:17: note: when computing vector element at index '0'616// :62:17: note: when computing vector element at index '0'
625// :62:17: error: use of undefined value here causes illegal behavior617// :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'
627// :62:17: error: use of undefined value here causes illegal behavior619// :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'
629// :62:17: error: use of undefined value here causes illegal behavior621// :62:17: error: use of undefined value here causes illegal behavior
630// :62:17: note: when computing vector element at index '0'622// :62:17: note: when computing vector element at index '0'
631// :62:17: error: use of undefined value here causes illegal behavior623// :62:17: error: use of undefined value here causes illegal behavior
...@@ -635,7 +627,9 @@ const std = @import("std");...@@ -635,7 +627,9 @@ const std = @import("std");
635// :62:17: error: use of undefined value here causes illegal behavior627// :62:17: error: use of undefined value here causes illegal behavior
636// :62:17: note: when computing vector element at index '0'628// :62:17: note: when computing vector element at index '0'
637// :62:17: error: use of undefined value here causes illegal behavior629// :62:17: error: use of undefined value here causes illegal behavior
630// :62:17: note: when computing vector element at index '0'
638// :62:17: error: use of undefined value here causes illegal behavior631// :62:17: error: use of undefined value here causes illegal behavior
632// :62:17: note: when computing vector element at index '0'
639// :62:17: error: use of undefined value here causes illegal behavior633// :62:17: error: use of undefined value here causes illegal behavior
640// :62:17: note: when computing vector element at index '0'634// :62:17: note: when computing vector element at index '0'
641// :62:17: error: use of undefined value here causes illegal behavior635// :62:17: error: use of undefined value here causes illegal behavior
...@@ -645,9 +639,9 @@ const std = @import("std");...@@ -645,9 +639,9 @@ const std = @import("std");
645// :62:17: error: use of undefined value here causes illegal behavior639// :62:17: error: use of undefined value here causes illegal behavior
646// :62:17: note: when computing vector element at index '0'640// :62:17: note: when computing vector element at index '0'
647// :62:17: error: use of undefined value here causes illegal behavior641// :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'
649// :62:17: error: use of undefined value here causes illegal behavior643// :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'
651// :62:17: error: use of undefined value here causes illegal behavior645// :62:17: error: use of undefined value here causes illegal behavior
652// :62:17: note: when computing vector element at index '0'646// :62:17: note: when computing vector element at index '0'
653// :62:17: error: use of undefined value here causes illegal behavior647// :62:17: error: use of undefined value here causes illegal behavior
...@@ -657,7 +651,9 @@ const std = @import("std");...@@ -657,7 +651,9 @@ const std = @import("std");
657// :62:17: error: use of undefined value here causes illegal behavior651// :62:17: error: use of undefined value here causes illegal behavior
658// :62:17: note: when computing vector element at index '0'652// :62:17: note: when computing vector element at index '0'
659// :62:17: error: use of undefined value here causes illegal behavior653// :62:17: error: use of undefined value here causes illegal behavior
654// :62:17: note: when computing vector element at index '0'
660// :62:17: error: use of undefined value here causes illegal behavior655// :62:17: error: use of undefined value here causes illegal behavior
656// :62:17: note: when computing vector element at index '0'
661// :62:17: error: use of undefined value here causes illegal behavior657// :62:17: error: use of undefined value here causes illegal behavior
662// :62:17: note: when computing vector element at index '0'658// :62:17: note: when computing vector element at index '0'
663// :62:17: error: use of undefined value here causes illegal behavior659// :62:17: error: use of undefined value here causes illegal behavior
...@@ -667,9 +663,9 @@ const std = @import("std");...@@ -667,9 +663,9 @@ const std = @import("std");
667// :62:17: error: use of undefined value here causes illegal behavior663// :62:17: error: use of undefined value here causes illegal behavior
668// :62:17: note: when computing vector element at index '0'664// :62:17: note: when computing vector element at index '0'
669// :62:17: error: use of undefined value here causes illegal behavior665// :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'
671// :62:17: error: use of undefined value here causes illegal behavior667// :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'
673// :62:17: error: use of undefined value here causes illegal behavior669// :62:17: error: use of undefined value here causes illegal behavior
674// :62:17: note: when computing vector element at index '0'670// :62:17: note: when computing vector element at index '0'
675// :62:17: error: use of undefined value here causes illegal behavior671// :62:17: error: use of undefined value here causes illegal behavior
...@@ -679,7 +675,9 @@ const std = @import("std");...@@ -679,7 +675,9 @@ const std = @import("std");
679// :62:17: error: use of undefined value here causes illegal behavior675// :62:17: error: use of undefined value here causes illegal behavior
680// :62:17: note: when computing vector element at index '0'676// :62:17: note: when computing vector element at index '0'
681// :62:17: error: use of undefined value here causes illegal behavior677// :62:17: error: use of undefined value here causes illegal behavior
678// :62:17: note: when computing vector element at index '0'
682// :62:17: error: use of undefined value here causes illegal behavior679// :62:17: error: use of undefined value here causes illegal behavior
680// :62:17: note: when computing vector element at index '0'
683// :62:17: error: use of undefined value here causes illegal behavior681// :62:17: error: use of undefined value here causes illegal behavior
684// :62:17: note: when computing vector element at index '0'682// :62:17: note: when computing vector element at index '0'
685// :62:17: error: use of undefined value here causes illegal behavior683// :62:17: error: use of undefined value here causes illegal behavior
...@@ -689,9 +687,9 @@ const std = @import("std");...@@ -689,9 +687,9 @@ const std = @import("std");
689// :62:17: error: use of undefined value here causes illegal behavior687// :62:17: error: use of undefined value here causes illegal behavior
690// :62:17: note: when computing vector element at index '0'688// :62:17: note: when computing vector element at index '0'
691// :62:17: error: use of undefined value here causes illegal behavior689// :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'
693// :62:17: error: use of undefined value here causes illegal behavior691// :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'
695// :62:17: error: use of undefined value here causes illegal behavior693// :62:17: error: use of undefined value here causes illegal behavior
696// :62:17: note: when computing vector element at index '0'694// :62:17: note: when computing vector element at index '0'
697// :62:17: error: use of undefined value here causes illegal behavior695// :62:17: error: use of undefined value here causes illegal behavior
...@@ -701,27 +699,29 @@ const std = @import("std");...@@ -701,27 +699,29 @@ const std = @import("std");
701// :62:17: error: use of undefined value here causes illegal behavior699// :62:17: error: use of undefined value here causes illegal behavior
702// :62:17: note: when computing vector element at index '0'700// :62:17: note: when computing vector element at index '0'
703// :62:17: error: use of undefined value here causes illegal behavior701// :62:17: error: use of undefined value here causes illegal behavior
702// :62:17: note: when computing vector element at index '1'
704// :62:17: error: use of undefined value here causes illegal behavior703// :62:17: error: use of undefined value here causes illegal behavior
704// :62:17: note: when computing vector element at index '1'
705// :62:17: error: use of undefined value here causes illegal behavior705// :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'
707// :62:17: error: use of undefined value here causes illegal behavior707// :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'
709// :62:17: error: use of undefined value here causes illegal behavior709// :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'
711// :62:17: error: use of undefined value here causes illegal behavior711// :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'
713// :62:17: error: use of undefined value here causes illegal behavior713// :62:17: error: use of undefined value here causes illegal behavior
714// :62:17: note: when computing vector element at index '1'714// :62:17: note: when computing vector element at index '1'
715// :62:17: error: use of undefined value here causes illegal behavior715// :62:17: error: use of undefined value here causes illegal behavior
716// :62:17: note: when computing vector element at index '1'716// :62:17: note: when computing vector element at index '1'
717// :62:17: error: use of undefined value here causes illegal behavior717// :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'
719// :62:17: error: use of undefined value here causes illegal behavior719// :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'
721// :62:17: error: use of undefined value here causes illegal behavior721// :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'
723// :62:17: error: use of undefined value here causes illegal behavior723// :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'
725// :62:22: error: use of undefined value here causes illegal behavior725// :62:22: error: use of undefined value here causes illegal behavior
726// :62:22: note: when computing vector element at index '0'726// :62:22: note: when computing vector element at index '0'
727// :62:22: error: use of undefined value here causes illegal behavior727// :62:22: error: use of undefined value here causes illegal behavior
...@@ -749,27 +749,19 @@ const std = @import("std");...@@ -749,27 +749,19 @@ const std = @import("std");
749// :65:27: error: use of undefined value here causes illegal behavior749// :65:27: error: use of undefined value here causes illegal behavior
750// :65:27: error: use of undefined value here causes illegal behavior750// :65:27: error: use of undefined value here causes illegal behavior
751// :65:27: error: use of undefined value here causes illegal behavior751// :65:27: error: use of undefined value here causes illegal behavior
752// :65:27: note: when computing vector element at index '0'
753// :65:27: error: use of undefined value here causes illegal behavior752// :65:27: error: use of undefined value here causes illegal behavior
754// :65:27: note: when computing vector element at index '0'
755// :65:27: error: use of undefined value here causes illegal behavior753// :65:27: error: use of undefined value here causes illegal behavior
756// :65:27: note: when computing vector element at index '0'
757// :65:27: error: use of undefined value here causes illegal behavior754// :65:27: error: use of undefined value here causes illegal behavior
758// :65:27: note: when computing vector element at index '0'
759// :65:27: error: use of undefined value here causes illegal behavior755// :65:27: error: use of undefined value here causes illegal behavior
760// :65:27: note: when computing vector element at index '1'
761// :65:27: error: use of undefined value here causes illegal behavior756// :65:27: error: use of undefined value here causes illegal behavior
762// :65:27: note: when computing vector element at index '1'
763// :65:27: error: use of undefined value here causes illegal behavior757// :65:27: error: use of undefined value here causes illegal behavior
764// :65:27: note: when computing vector element at index '0'
765// :65:27: error: use of undefined value here causes illegal behavior758// :65:27: error: use of undefined value here causes illegal behavior
766// :65:27: note: when computing vector element at index '0'
767// :65:27: error: use of undefined value here causes illegal behavior759// :65:27: error: use of undefined value here causes illegal behavior
768// :65:27: note: when computing vector element at index '0'
769// :65:27: error: use of undefined value here causes illegal behavior760// :65:27: error: use of undefined value here causes illegal behavior
770// :65:27: note: when computing vector element at index '0'
771// :65:27: error: use of undefined value here causes illegal behavior761// :65:27: error: use of undefined value here causes illegal behavior
762// :65:27: note: when computing vector element at index '0'
772// :65:27: error: use of undefined value here causes illegal behavior763// :65:27: error: use of undefined value here causes illegal behavior
764// :65:27: note: when computing vector element at index '0'
773// :65:27: error: use of undefined value here causes illegal behavior765// :65:27: error: use of undefined value here causes illegal behavior
774// :65:27: note: when computing vector element at index '0'766// :65:27: note: when computing vector element at index '0'
775// :65:27: error: use of undefined value here causes illegal behavior767// :65:27: error: use of undefined value here causes illegal behavior
...@@ -779,9 +771,9 @@ const std = @import("std");...@@ -779,9 +771,9 @@ const std = @import("std");
779// :65:27: error: use of undefined value here causes illegal behavior771// :65:27: error: use of undefined value here causes illegal behavior
780// :65:27: note: when computing vector element at index '0'772// :65:27: note: when computing vector element at index '0'
781// :65:27: error: use of undefined value here causes illegal behavior773// :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'
783// :65:27: error: use of undefined value here causes illegal behavior775// :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'
785// :65:27: error: use of undefined value here causes illegal behavior777// :65:27: error: use of undefined value here causes illegal behavior
786// :65:27: note: when computing vector element at index '0'778// :65:27: note: when computing vector element at index '0'
787// :65:27: error: use of undefined value here causes illegal behavior779// :65:27: error: use of undefined value here causes illegal behavior
...@@ -791,7 +783,9 @@ const std = @import("std");...@@ -791,7 +783,9 @@ const std = @import("std");
791// :65:27: error: use of undefined value here causes illegal behavior783// :65:27: error: use of undefined value here causes illegal behavior
792// :65:27: note: when computing vector element at index '0'784// :65:27: note: when computing vector element at index '0'
793// :65:27: error: use of undefined value here causes illegal behavior785// :65:27: error: use of undefined value here causes illegal behavior
786// :65:27: note: when computing vector element at index '0'
794// :65:27: error: use of undefined value here causes illegal behavior787// :65:27: error: use of undefined value here causes illegal behavior
788// :65:27: note: when computing vector element at index '0'
795// :65:27: error: use of undefined value here causes illegal behavior789// :65:27: error: use of undefined value here causes illegal behavior
796// :65:27: note: when computing vector element at index '0'790// :65:27: note: when computing vector element at index '0'
797// :65:27: error: use of undefined value here causes illegal behavior791// :65:27: error: use of undefined value here causes illegal behavior
...@@ -801,9 +795,9 @@ const std = @import("std");...@@ -801,9 +795,9 @@ const std = @import("std");
801// :65:27: error: use of undefined value here causes illegal behavior795// :65:27: error: use of undefined value here causes illegal behavior
802// :65:27: note: when computing vector element at index '0'796// :65:27: note: when computing vector element at index '0'
803// :65:27: error: use of undefined value here causes illegal behavior797// :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'
805// :65:27: error: use of undefined value here causes illegal behavior799// :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'
807// :65:27: error: use of undefined value here causes illegal behavior801// :65:27: error: use of undefined value here causes illegal behavior
808// :65:27: note: when computing vector element at index '0'802// :65:27: note: when computing vector element at index '0'
809// :65:27: error: use of undefined value here causes illegal behavior803// :65:27: error: use of undefined value here causes illegal behavior
...@@ -813,7 +807,9 @@ const std = @import("std");...@@ -813,7 +807,9 @@ const std = @import("std");
813// :65:27: error: use of undefined value here causes illegal behavior807// :65:27: error: use of undefined value here causes illegal behavior
814// :65:27: note: when computing vector element at index '0'808// :65:27: note: when computing vector element at index '0'
815// :65:27: error: use of undefined value here causes illegal behavior809// :65:27: error: use of undefined value here causes illegal behavior
810// :65:27: note: when computing vector element at index '0'
816// :65:27: error: use of undefined value here causes illegal behavior811// :65:27: error: use of undefined value here causes illegal behavior
812// :65:27: note: when computing vector element at index '0'
817// :65:27: error: use of undefined value here causes illegal behavior813// :65:27: error: use of undefined value here causes illegal behavior
818// :65:27: note: when computing vector element at index '0'814// :65:27: note: when computing vector element at index '0'
819// :65:27: error: use of undefined value here causes illegal behavior815// :65:27: error: use of undefined value here causes illegal behavior
...@@ -823,9 +819,9 @@ const std = @import("std");...@@ -823,9 +819,9 @@ const std = @import("std");
823// :65:27: error: use of undefined value here causes illegal behavior819// :65:27: error: use of undefined value here causes illegal behavior
824// :65:27: note: when computing vector element at index '0'820// :65:27: note: when computing vector element at index '0'
825// :65:27: error: use of undefined value here causes illegal behavior821// :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'
827// :65:27: error: use of undefined value here causes illegal behavior823// :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'
829// :65:27: error: use of undefined value here causes illegal behavior825// :65:27: error: use of undefined value here causes illegal behavior
830// :65:27: note: when computing vector element at index '0'826// :65:27: note: when computing vector element at index '0'
831// :65:27: error: use of undefined value here causes illegal behavior827// :65:27: error: use of undefined value here causes illegal behavior
...@@ -835,7 +831,9 @@ const std = @import("std");...@@ -835,7 +831,9 @@ const std = @import("std");
835// :65:27: error: use of undefined value here causes illegal behavior831// :65:27: error: use of undefined value here causes illegal behavior
836// :65:27: note: when computing vector element at index '0'832// :65:27: note: when computing vector element at index '0'
837// :65:27: error: use of undefined value here causes illegal behavior833// :65:27: error: use of undefined value here causes illegal behavior
834// :65:27: note: when computing vector element at index '0'
838// :65:27: error: use of undefined value here causes illegal behavior835// :65:27: error: use of undefined value here causes illegal behavior
836// :65:27: note: when computing vector element at index '0'
839// :65:27: error: use of undefined value here causes illegal behavior837// :65:27: error: use of undefined value here causes illegal behavior
840// :65:27: note: when computing vector element at index '0'838// :65:27: note: when computing vector element at index '0'
841// :65:27: error: use of undefined value here causes illegal behavior839// :65:27: error: use of undefined value here causes illegal behavior
...@@ -845,9 +843,9 @@ const std = @import("std");...@@ -845,9 +843,9 @@ const std = @import("std");
845// :65:27: error: use of undefined value here causes illegal behavior843// :65:27: error: use of undefined value here causes illegal behavior
846// :65:27: note: when computing vector element at index '0'844// :65:27: note: when computing vector element at index '0'
847// :65:27: error: use of undefined value here causes illegal behavior845// :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'
849// :65:27: error: use of undefined value here causes illegal behavior847// :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'
851// :65:27: error: use of undefined value here causes illegal behavior849// :65:27: error: use of undefined value here causes illegal behavior
852// :65:27: note: when computing vector element at index '0'850// :65:27: note: when computing vector element at index '0'
853// :65:27: error: use of undefined value here causes illegal behavior851// :65:27: error: use of undefined value here causes illegal behavior
...@@ -857,27 +855,29 @@ const std = @import("std");...@@ -857,27 +855,29 @@ const std = @import("std");
857// :65:27: error: use of undefined value here causes illegal behavior855// :65:27: error: use of undefined value here causes illegal behavior
858// :65:27: note: when computing vector element at index '0'856// :65:27: note: when computing vector element at index '0'
859// :65:27: error: use of undefined value here causes illegal behavior857// :65:27: error: use of undefined value here causes illegal behavior
858// :65:27: note: when computing vector element at index '1'
860// :65:27: error: use of undefined value here causes illegal behavior859// :65:27: error: use of undefined value here causes illegal behavior
860// :65:27: note: when computing vector element at index '1'
861// :65:27: error: use of undefined value here causes illegal behavior861// :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'
863// :65:27: error: use of undefined value here causes illegal behavior863// :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'
865// :65:27: error: use of undefined value here causes illegal behavior865// :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'
867// :65:27: error: use of undefined value here causes illegal behavior867// :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'
869// :65:27: error: use of undefined value here causes illegal behavior869// :65:27: error: use of undefined value here causes illegal behavior
870// :65:27: note: when computing vector element at index '1'870// :65:27: note: when computing vector element at index '1'
871// :65:27: error: use of undefined value here causes illegal behavior871// :65:27: error: use of undefined value here causes illegal behavior
872// :65:27: note: when computing vector element at index '1'872// :65:27: note: when computing vector element at index '1'
873// :65:27: error: use of undefined value here causes illegal behavior873// :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'
875// :65:27: error: use of undefined value here causes illegal behavior875// :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'
877// :65:27: error: use of undefined value here causes illegal behavior877// :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'
879// :65:27: error: use of undefined value here causes illegal behavior879// :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'
881// :65:30: error: use of undefined value here causes illegal behavior881// :65:30: error: use of undefined value here causes illegal behavior
882// :65:30: note: when computing vector element at index '0'882// :65:30: note: when computing vector element at index '0'
883// :65:30: error: use of undefined value here causes illegal behavior883// :65:30: error: use of undefined value here causes illegal behavior
...@@ -909,21 +909,13 @@ const std = @import("std");...@@ -909,21 +909,13 @@ const std = @import("std");
909// :70:17: error: use of undefined value here causes illegal behavior909// :70:17: error: use of undefined value here causes illegal behavior
910// :70:17: error: use of undefined value here causes illegal behavior910// :70:17: error: use of undefined value here causes illegal behavior
911// :70:17: error: use of undefined value here causes illegal behavior911// :70:17: error: use of undefined value here causes illegal behavior
912// :70:17: note: when computing vector element at index '1'
913// :70:17: error: use of undefined value here causes illegal behavior912// :70:17: error: use of undefined value here causes illegal behavior
914// :70:17: note: when computing vector element at index '1'
915// :70:17: error: use of undefined value here causes illegal behavior913// :70:17: error: use of undefined value here causes illegal behavior
916// :70:17: note: when computing vector element at index '1'
917// :70:17: error: use of undefined value here causes illegal behavior914// :70:17: error: use of undefined value here causes illegal behavior
918// :70:17: note: when computing vector element at index '1'
919// :70:17: error: use of undefined value here causes illegal behavior915// :70:17: error: use of undefined value here causes illegal behavior
920// :70:17: note: when computing vector element at index '0'
921// :70:17: error: use of undefined value here causes illegal behavior916// :70:17: error: use of undefined value here causes illegal behavior
922// :70:17: note: when computing vector element at index '0'
923// :70:17: error: use of undefined value here causes illegal behavior917// :70:17: error: use of undefined value here causes illegal behavior
924// :70:17: note: when computing vector element at index '0'
925// :70:17: error: use of undefined value here causes illegal behavior918// :70:17: error: use of undefined value here causes illegal behavior
926// :70:17: note: when computing vector element at index '0'
927// :70:17: error: use of undefined value here causes illegal behavior919// :70:17: error: use of undefined value here causes illegal behavior
928// :70:17: error: use of undefined value here causes illegal behavior920// :70:17: error: use of undefined value here causes illegal behavior
929// :70:17: error: use of undefined value here causes illegal behavior921// :70:17: error: use of undefined value here causes illegal behavior
...@@ -931,21 +923,13 @@ const std = @import("std");...@@ -931,21 +923,13 @@ const std = @import("std");
931// :70:17: error: use of undefined value here causes illegal behavior923// :70:17: error: use of undefined value here causes illegal behavior
932// :70:17: error: use of undefined value here causes illegal behavior924// :70:17: error: use of undefined value here causes illegal behavior
933// :70:17: error: use of undefined value here causes illegal behavior925// :70:17: error: use of undefined value here causes illegal behavior
934// :70:17: note: when computing vector element at index '1'
935// :70:17: error: use of undefined value here causes illegal behavior926// :70:17: error: use of undefined value here causes illegal behavior
936// :70:17: note: when computing vector element at index '1'
937// :70:17: error: use of undefined value here causes illegal behavior927// :70:17: error: use of undefined value here causes illegal behavior
938// :70:17: note: when computing vector element at index '1'
939// :70:17: error: use of undefined value here causes illegal behavior928// :70:17: error: use of undefined value here causes illegal behavior
940// :70:17: note: when computing vector element at index '1'
941// :70:17: error: use of undefined value here causes illegal behavior929// :70:17: error: use of undefined value here causes illegal behavior
942// :70:17: note: when computing vector element at index '0'
943// :70:17: error: use of undefined value here causes illegal behavior930// :70:17: error: use of undefined value here causes illegal behavior
944// :70:17: note: when computing vector element at index '0'
945// :70:17: error: use of undefined value here causes illegal behavior931// :70:17: error: use of undefined value here causes illegal behavior
946// :70:17: note: when computing vector element at index '0'
947// :70:17: error: use of undefined value here causes illegal behavior932// :70:17: error: use of undefined value here causes illegal behavior
948// :70:17: note: when computing vector element at index '0'
949// :70:17: error: use of undefined value here causes illegal behavior933// :70:17: error: use of undefined value here causes illegal behavior
950// :70:17: error: use of undefined value here causes illegal behavior934// :70:17: error: use of undefined value here causes illegal behavior
951// :70:17: error: use of undefined value here causes illegal behavior935// :70:17: error: use of undefined value here causes illegal behavior
...@@ -953,13 +937,11 @@ const std = @import("std");...@@ -953,13 +937,11 @@ const std = @import("std");
953// :70:17: error: use of undefined value here causes illegal behavior937// :70:17: error: use of undefined value here causes illegal behavior
954// :70:17: error: use of undefined value here causes illegal behavior938// :70:17: error: use of undefined value here causes illegal behavior
955// :70:17: error: use of undefined value here causes illegal behavior939// :70:17: error: use of undefined value here causes illegal behavior
956// :70:17: note: when computing vector element at index '1'
957// :70:17: error: use of undefined value here causes illegal behavior940// :70:17: error: use of undefined value here causes illegal behavior
958// :70:17: note: when computing vector element at index '1'
959// :70:17: error: use of undefined value here causes illegal behavior941// :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'
961// :70:17: error: use of undefined value here causes illegal behavior943// :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'
963// :70:17: error: use of undefined value here causes illegal behavior945// :70:17: error: use of undefined value here causes illegal behavior
964// :70:17: note: when computing vector element at index '0'946// :70:17: note: when computing vector element at index '0'
965// :70:17: error: use of undefined value here causes illegal behavior947// :70:17: error: use of undefined value here causes illegal behavior
...@@ -969,19 +951,25 @@ const std = @import("std");...@@ -969,19 +951,25 @@ const std = @import("std");
969// :70:17: error: use of undefined value here causes illegal behavior951// :70:17: error: use of undefined value here causes illegal behavior
970// :70:17: note: when computing vector element at index '0'952// :70:17: note: when computing vector element at index '0'
971// :70:17: error: use of undefined value here causes illegal behavior953// :70:17: error: use of undefined value here causes illegal behavior
954// :70:17: note: when computing vector element at index '0'
972// :70:17: error: use of undefined value here causes illegal behavior955// :70:17: error: use of undefined value here causes illegal behavior
956// :70:17: note: when computing vector element at index '0'
973// :70:17: error: use of undefined value here causes illegal behavior957// :70:17: error: use of undefined value here causes illegal behavior
958// :70:17: note: when computing vector element at index '0'
974// :70:17: error: use of undefined value here causes illegal behavior959// :70:17: error: use of undefined value here causes illegal behavior
960// :70:17: note: when computing vector element at index '0'
975// :70:17: error: use of undefined value here causes illegal behavior961// :70:17: error: use of undefined value here causes illegal behavior
962// :70:17: note: when computing vector element at index '0'
976// :70:17: error: use of undefined value here causes illegal behavior963// :70:17: error: use of undefined value here causes illegal behavior
964// :70:17: note: when computing vector element at index '0'
977// :70:17: error: use of undefined value here causes illegal behavior965// :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'
979// :70:17: error: use of undefined value here causes illegal behavior967// :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'
981// :70:17: error: use of undefined value here causes illegal behavior969// :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'
983// :70:17: error: use of undefined value here causes illegal behavior971// :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'
985// :70:17: error: use of undefined value here causes illegal behavior973// :70:17: error: use of undefined value here causes illegal behavior
986// :70:17: note: when computing vector element at index '0'974// :70:17: note: when computing vector element at index '0'
987// :70:17: error: use of undefined value here causes illegal behavior975// :70:17: error: use of undefined value here causes illegal behavior
...@@ -991,11 +979,17 @@ const std = @import("std");...@@ -991,11 +979,17 @@ const std = @import("std");
991// :70:17: error: use of undefined value here causes illegal behavior979// :70:17: error: use of undefined value here causes illegal behavior
992// :70:17: note: when computing vector element at index '0'980// :70:17: note: when computing vector element at index '0'
993// :70:17: error: use of undefined value here causes illegal behavior981// :70:17: error: use of undefined value here causes illegal behavior
982// :70:17: note: when computing vector element at index '0'
994// :70:17: error: use of undefined value here causes illegal behavior983// :70:17: error: use of undefined value here causes illegal behavior
984// :70:17: note: when computing vector element at index '0'
995// :70:17: error: use of undefined value here causes illegal behavior985// :70:17: error: use of undefined value here causes illegal behavior
986// :70:17: note: when computing vector element at index '0'
996// :70:17: error: use of undefined value here causes illegal behavior987// :70:17: error: use of undefined value here causes illegal behavior
988// :70:17: note: when computing vector element at index '0'
997// :70:17: error: use of undefined value here causes illegal behavior989// :70:17: error: use of undefined value here causes illegal behavior
990// :70:17: note: when computing vector element at index '1'
998// :70:17: error: use of undefined value here causes illegal behavior991// :70:17: error: use of undefined value here causes illegal behavior
992// :70:17: note: when computing vector element at index '1'
999// :70:17: error: use of undefined value here causes illegal behavior993// :70:17: error: use of undefined value here causes illegal behavior
1000// :70:17: note: when computing vector element at index '1'994// :70:17: note: when computing vector element at index '1'
1001// :70:17: error: use of undefined value here causes illegal behavior995// :70:17: error: use of undefined value here causes illegal behavior
...@@ -1005,19 +999,25 @@ const std = @import("std");...@@ -1005,19 +999,25 @@ const std = @import("std");
1005// :70:17: error: use of undefined value here causes illegal behavior999// :70:17: error: use of undefined value here causes illegal behavior
1006// :70:17: note: when computing vector element at index '1'1000// :70:17: note: when computing vector element at index '1'
1007// :70:17: error: use of undefined value here causes illegal behavior1001// :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'
1009// :70:17: error: use of undefined value here causes illegal behavior1003// :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'
1011// :70:17: error: use of undefined value here causes illegal behavior1005// :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'
1013// :70:17: error: use of undefined value here causes illegal behavior1007// :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'
1015// :70:17: error: use of undefined value here causes illegal behavior1009// :70:17: error: use of undefined value here causes illegal behavior
1010// :70:17: note: when computing vector element at index '1'
1016// :70:17: error: use of undefined value here causes illegal behavior1011// :70:17: error: use of undefined value here causes illegal behavior
1012// :70:17: note: when computing vector element at index '1'
1017// :70:17: error: use of undefined value here causes illegal behavior1013// :70:17: error: use of undefined value here causes illegal behavior
1014// :70:17: note: when computing vector element at index '1'
1018// :70:17: error: use of undefined value here causes illegal behavior1015// :70:17: error: use of undefined value here causes illegal behavior
1016// :70:17: note: when computing vector element at index '1'
1019// :70:17: error: use of undefined value here causes illegal behavior1017// :70:17: error: use of undefined value here causes illegal behavior
1018// :70:17: note: when computing vector element at index '1'
1020// :70:17: error: use of undefined value here causes illegal behavior1019// :70:17: error: use of undefined value here causes illegal behavior
1020// :70:17: note: when computing vector element at index '1'
1021// :70:17: error: use of undefined value here causes illegal behavior1021// :70:17: error: use of undefined value here causes illegal behavior
1022// :70:17: note: when computing vector element at index '1'1022// :70:17: note: when computing vector element at index '1'
1023// :70:17: error: use of undefined value here causes illegal behavior1023// :70:17: error: use of undefined value here causes illegal behavior
...@@ -1027,13 +1027,13 @@ const std = @import("std");...@@ -1027,13 +1027,13 @@ const std = @import("std");
1027// :70:17: error: use of undefined value here causes illegal behavior1027// :70:17: error: use of undefined value here causes illegal behavior
1028// :70:17: note: when computing vector element at index '1'1028// :70:17: note: when computing vector element at index '1'
1029// :70:17: error: use of undefined value here causes illegal behavior1029// :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'
1031// :70:17: error: use of undefined value here causes illegal behavior1031// :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'
1033// :70:17: error: use of undefined value here causes illegal behavior1033// :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'
1035// :70:17: error: use of undefined value here causes illegal behavior1035// :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'
1037// :73:27: error: use of undefined value here causes illegal behavior1037// :73:27: error: use of undefined value here causes illegal behavior
1038// :73:27: error: use of undefined value here causes illegal behavior1038// :73:27: error: use of undefined value here causes illegal behavior
1039// :73:27: error: use of undefined value here causes illegal behavior1039// :73:27: error: use of undefined value here causes illegal behavior
...@@ -1041,21 +1041,13 @@ const std = @import("std");...@@ -1041,21 +1041,13 @@ const std = @import("std");
1041// :73:27: error: use of undefined value here causes illegal behavior1041// :73:27: error: use of undefined value here causes illegal behavior
1042// :73:27: error: use of undefined value here causes illegal behavior1042// :73:27: error: use of undefined value here causes illegal behavior
1043// :73:27: error: use of undefined value here causes illegal behavior1043// :73:27: error: use of undefined value here causes illegal behavior
1044// :73:27: note: when computing vector element at index '1'
1045// :73:27: error: use of undefined value here causes illegal behavior1044// :73:27: error: use of undefined value here causes illegal behavior
1046// :73:27: note: when computing vector element at index '1'
1047// :73:27: error: use of undefined value here causes illegal behavior1045// :73:27: error: use of undefined value here causes illegal behavior
1048// :73:27: note: when computing vector element at index '1'
1049// :73:27: error: use of undefined value here causes illegal behavior1046// :73:27: error: use of undefined value here causes illegal behavior
1050// :73:27: note: when computing vector element at index '1'
1051// :73:27: error: use of undefined value here causes illegal behavior1047// :73:27: error: use of undefined value here causes illegal behavior
1052// :73:27: note: when computing vector element at index '0'
1053// :73:27: error: use of undefined value here causes illegal behavior1048// :73:27: error: use of undefined value here causes illegal behavior
1054// :73:27: note: when computing vector element at index '0'
1055// :73:27: error: use of undefined value here causes illegal behavior1049// :73:27: error: use of undefined value here causes illegal behavior
1056// :73:27: note: when computing vector element at index '0'
1057// :73:27: error: use of undefined value here causes illegal behavior1050// :73:27: error: use of undefined value here causes illegal behavior
1058// :73:27: note: when computing vector element at index '0'
1059// :73:27: error: use of undefined value here causes illegal behavior1051// :73:27: error: use of undefined value here causes illegal behavior
1060// :73:27: error: use of undefined value here causes illegal behavior1052// :73:27: error: use of undefined value here causes illegal behavior
1061// :73:27: error: use of undefined value here causes illegal behavior1053// :73:27: error: use of undefined value here causes illegal behavior
...@@ -1063,21 +1055,13 @@ const std = @import("std");...@@ -1063,21 +1055,13 @@ const std = @import("std");
1063// :73:27: error: use of undefined value here causes illegal behavior1055// :73:27: error: use of undefined value here causes illegal behavior
1064// :73:27: error: use of undefined value here causes illegal behavior1056// :73:27: error: use of undefined value here causes illegal behavior
1065// :73:27: error: use of undefined value here causes illegal behavior1057// :73:27: error: use of undefined value here causes illegal behavior
1066// :73:27: note: when computing vector element at index '1'
1067// :73:27: error: use of undefined value here causes illegal behavior1058// :73:27: error: use of undefined value here causes illegal behavior
1068// :73:27: note: when computing vector element at index '1'
1069// :73:27: error: use of undefined value here causes illegal behavior1059// :73:27: error: use of undefined value here causes illegal behavior
1070// :73:27: note: when computing vector element at index '1'
1071// :73:27: error: use of undefined value here causes illegal behavior1060// :73:27: error: use of undefined value here causes illegal behavior
1072// :73:27: note: when computing vector element at index '1'
1073// :73:27: error: use of undefined value here causes illegal behavior1061// :73:27: error: use of undefined value here causes illegal behavior
1074// :73:27: note: when computing vector element at index '0'
1075// :73:27: error: use of undefined value here causes illegal behavior1062// :73:27: error: use of undefined value here causes illegal behavior
1076// :73:27: note: when computing vector element at index '0'
1077// :73:27: error: use of undefined value here causes illegal behavior1063// :73:27: error: use of undefined value here causes illegal behavior
1078// :73:27: note: when computing vector element at index '0'
1079// :73:27: error: use of undefined value here causes illegal behavior1064// :73:27: error: use of undefined value here causes illegal behavior
1080// :73:27: note: when computing vector element at index '0'
1081// :73:27: error: use of undefined value here causes illegal behavior1065// :73:27: error: use of undefined value here causes illegal behavior
1082// :73:27: error: use of undefined value here causes illegal behavior1066// :73:27: error: use of undefined value here causes illegal behavior
1083// :73:27: error: use of undefined value here causes illegal behavior1067// :73:27: error: use of undefined value here causes illegal behavior
...@@ -1085,13 +1069,11 @@ const std = @import("std");...@@ -1085,13 +1069,11 @@ const std = @import("std");
1085// :73:27: error: use of undefined value here causes illegal behavior1069// :73:27: error: use of undefined value here causes illegal behavior
1086// :73:27: error: use of undefined value here causes illegal behavior1070// :73:27: error: use of undefined value here causes illegal behavior
1087// :73:27: error: use of undefined value here causes illegal behavior1071// :73:27: error: use of undefined value here causes illegal behavior
1088// :73:27: note: when computing vector element at index '1'
1089// :73:27: error: use of undefined value here causes illegal behavior1072// :73:27: error: use of undefined value here causes illegal behavior
1090// :73:27: note: when computing vector element at index '1'
1091// :73:27: error: use of undefined value here causes illegal behavior1073// :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'
1093// :73:27: error: use of undefined value here causes illegal behavior1075// :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'
1095// :73:27: error: use of undefined value here causes illegal behavior1077// :73:27: error: use of undefined value here causes illegal behavior
1096// :73:27: note: when computing vector element at index '0'1078// :73:27: note: when computing vector element at index '0'
1097// :73:27: error: use of undefined value here causes illegal behavior1079// :73:27: error: use of undefined value here causes illegal behavior
...@@ -1101,19 +1083,25 @@ const std = @import("std");...@@ -1101,19 +1083,25 @@ const std = @import("std");
1101// :73:27: error: use of undefined value here causes illegal behavior1083// :73:27: error: use of undefined value here causes illegal behavior
1102// :73:27: note: when computing vector element at index '0'1084// :73:27: note: when computing vector element at index '0'
1103// :73:27: error: use of undefined value here causes illegal behavior1085// :73:27: error: use of undefined value here causes illegal behavior
1086// :73:27: note: when computing vector element at index '0'
1104// :73:27: error: use of undefined value here causes illegal behavior1087// :73:27: error: use of undefined value here causes illegal behavior
1088// :73:27: note: when computing vector element at index '0'
1105// :73:27: error: use of undefined value here causes illegal behavior1089// :73:27: error: use of undefined value here causes illegal behavior
1090// :73:27: note: when computing vector element at index '0'
1106// :73:27: error: use of undefined value here causes illegal behavior1091// :73:27: error: use of undefined value here causes illegal behavior
1092// :73:27: note: when computing vector element at index '0'
1107// :73:27: error: use of undefined value here causes illegal behavior1093// :73:27: error: use of undefined value here causes illegal behavior
1094// :73:27: note: when computing vector element at index '0'
1108// :73:27: error: use of undefined value here causes illegal behavior1095// :73:27: error: use of undefined value here causes illegal behavior
1096// :73:27: note: when computing vector element at index '0'
1109// :73:27: error: use of undefined value here causes illegal behavior1097// :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'
1111// :73:27: error: use of undefined value here causes illegal behavior1099// :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'
1113// :73:27: error: use of undefined value here causes illegal behavior1101// :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'
1115// :73:27: error: use of undefined value here causes illegal behavior1103// :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'
1117// :73:27: error: use of undefined value here causes illegal behavior1105// :73:27: error: use of undefined value here causes illegal behavior
1118// :73:27: note: when computing vector element at index '0'1106// :73:27: note: when computing vector element at index '0'
1119// :73:27: error: use of undefined value here causes illegal behavior1107// :73:27: error: use of undefined value here causes illegal behavior
...@@ -1123,11 +1111,17 @@ const std = @import("std");...@@ -1123,11 +1111,17 @@ const std = @import("std");
1123// :73:27: error: use of undefined value here causes illegal behavior1111// :73:27: error: use of undefined value here causes illegal behavior
1124// :73:27: note: when computing vector element at index '0'1112// :73:27: note: when computing vector element at index '0'
1125// :73:27: error: use of undefined value here causes illegal behavior1113// :73:27: error: use of undefined value here causes illegal behavior
1114// :73:27: note: when computing vector element at index '0'
1126// :73:27: error: use of undefined value here causes illegal behavior1115// :73:27: error: use of undefined value here causes illegal behavior
1116// :73:27: note: when computing vector element at index '0'
1127// :73:27: error: use of undefined value here causes illegal behavior1117// :73:27: error: use of undefined value here causes illegal behavior
1118// :73:27: note: when computing vector element at index '0'
1128// :73:27: error: use of undefined value here causes illegal behavior1119// :73:27: error: use of undefined value here causes illegal behavior
1120// :73:27: note: when computing vector element at index '0'
1129// :73:27: error: use of undefined value here causes illegal behavior1121// :73:27: error: use of undefined value here causes illegal behavior
1122// :73:27: note: when computing vector element at index '1'
1130// :73:27: error: use of undefined value here causes illegal behavior1123// :73:27: error: use of undefined value here causes illegal behavior
1124// :73:27: note: when computing vector element at index '1'
1131// :73:27: error: use of undefined value here causes illegal behavior1125// :73:27: error: use of undefined value here causes illegal behavior
1132// :73:27: note: when computing vector element at index '1'1126// :73:27: note: when computing vector element at index '1'
1133// :73:27: error: use of undefined value here causes illegal behavior1127// :73:27: error: use of undefined value here causes illegal behavior
...@@ -1137,19 +1131,25 @@ const std = @import("std");...@@ -1137,19 +1131,25 @@ const std = @import("std");
1137// :73:27: error: use of undefined value here causes illegal behavior1131// :73:27: error: use of undefined value here causes illegal behavior
1138// :73:27: note: when computing vector element at index '1'1132// :73:27: note: when computing vector element at index '1'
1139// :73:27: error: use of undefined value here causes illegal behavior1133// :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'
1141// :73:27: error: use of undefined value here causes illegal behavior1135// :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'
1143// :73:27: error: use of undefined value here causes illegal behavior1137// :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'
1145// :73:27: error: use of undefined value here causes illegal behavior1139// :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'
1147// :73:27: error: use of undefined value here causes illegal behavior1141// :73:27: error: use of undefined value here causes illegal behavior
1142// :73:27: note: when computing vector element at index '1'
1148// :73:27: error: use of undefined value here causes illegal behavior1143// :73:27: error: use of undefined value here causes illegal behavior
1144// :73:27: note: when computing vector element at index '1'
1149// :73:27: error: use of undefined value here causes illegal behavior1145// :73:27: error: use of undefined value here causes illegal behavior
1146// :73:27: note: when computing vector element at index '1'
1150// :73:27: error: use of undefined value here causes illegal behavior1147// :73:27: error: use of undefined value here causes illegal behavior
1148// :73:27: note: when computing vector element at index '1'
1151// :73:27: error: use of undefined value here causes illegal behavior1149// :73:27: error: use of undefined value here causes illegal behavior
1150// :73:27: note: when computing vector element at index '1'
1152// :73:27: error: use of undefined value here causes illegal behavior1151// :73:27: error: use of undefined value here causes illegal behavior
1152// :73:27: note: when computing vector element at index '1'
1153// :73:27: error: use of undefined value here causes illegal behavior1153// :73:27: error: use of undefined value here causes illegal behavior
1154// :73:27: note: when computing vector element at index '1'1154// :73:27: note: when computing vector element at index '1'
1155// :73:27: error: use of undefined value here causes illegal behavior1155// :73:27: error: use of undefined value here causes illegal behavior
...@@ -1159,13 +1159,13 @@ const std = @import("std");...@@ -1159,13 +1159,13 @@ const std = @import("std");
1159// :73:27: error: use of undefined value here causes illegal behavior1159// :73:27: error: use of undefined value here causes illegal behavior
1160// :73:27: note: when computing vector element at index '1'1160// :73:27: note: when computing vector element at index '1'
1161// :73:27: error: use of undefined value here causes illegal behavior1161// :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'
1163// :73:27: error: use of undefined value here causes illegal behavior1163// :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'
1165// :73:27: error: use of undefined value here causes illegal behavior1165// :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'
1167// :73:27: error: use of undefined value here causes illegal behavior1167// :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'
1169// :76:34: error: use of undefined value here causes illegal behavior1169// :76:34: error: use of undefined value here causes illegal behavior
1170// :76:34: error: use of undefined value here causes illegal behavior1170// :76:34: error: use of undefined value here causes illegal behavior
1171// :76:34: error: use of undefined value here causes illegal behavior1171// :76:34: error: use of undefined value here causes illegal behavior
...@@ -1173,21 +1173,13 @@ const std = @import("std");...@@ -1173,21 +1173,13 @@ const std = @import("std");
1173// :76:34: error: use of undefined value here causes illegal behavior1173// :76:34: error: use of undefined value here causes illegal behavior
1174// :76:34: error: use of undefined value here causes illegal behavior1174// :76:34: error: use of undefined value here causes illegal behavior
1175// :76:34: error: use of undefined value here causes illegal behavior1175// :76:34: error: use of undefined value here causes illegal behavior
1176// :76:34: note: when computing vector element at index '1'
1177// :76:34: error: use of undefined value here causes illegal behavior1176// :76:34: error: use of undefined value here causes illegal behavior
1178// :76:34: note: when computing vector element at index '1'
1179// :76:34: error: use of undefined value here causes illegal behavior1177// :76:34: error: use of undefined value here causes illegal behavior
1180// :76:34: note: when computing vector element at index '1'
1181// :76:34: error: use of undefined value here causes illegal behavior1178// :76:34: error: use of undefined value here causes illegal behavior
1182// :76:34: note: when computing vector element at index '1'
1183// :76:34: error: use of undefined value here causes illegal behavior1179// :76:34: error: use of undefined value here causes illegal behavior
1184// :76:34: note: when computing vector element at index '0'
1185// :76:34: error: use of undefined value here causes illegal behavior1180// :76:34: error: use of undefined value here causes illegal behavior
1186// :76:34: note: when computing vector element at index '0'
1187// :76:34: error: use of undefined value here causes illegal behavior1181// :76:34: error: use of undefined value here causes illegal behavior
1188// :76:34: note: when computing vector element at index '0'
1189// :76:34: error: use of undefined value here causes illegal behavior1182// :76:34: error: use of undefined value here causes illegal behavior
1190// :76:34: note: when computing vector element at index '0'
1191// :76:34: error: use of undefined value here causes illegal behavior1183// :76:34: error: use of undefined value here causes illegal behavior
1192// :76:34: error: use of undefined value here causes illegal behavior1184// :76:34: error: use of undefined value here causes illegal behavior
1193// :76:34: error: use of undefined value here causes illegal behavior1185// :76:34: error: use of undefined value here causes illegal behavior
...@@ -1195,21 +1187,13 @@ const std = @import("std");...@@ -1195,21 +1187,13 @@ const std = @import("std");
1195// :76:34: error: use of undefined value here causes illegal behavior1187// :76:34: error: use of undefined value here causes illegal behavior
1196// :76:34: error: use of undefined value here causes illegal behavior1188// :76:34: error: use of undefined value here causes illegal behavior
1197// :76:34: error: use of undefined value here causes illegal behavior1189// :76:34: error: use of undefined value here causes illegal behavior
1198// :76:34: note: when computing vector element at index '1'
1199// :76:34: error: use of undefined value here causes illegal behavior1190// :76:34: error: use of undefined value here causes illegal behavior
1200// :76:34: note: when computing vector element at index '1'
1201// :76:34: error: use of undefined value here causes illegal behavior1191// :76:34: error: use of undefined value here causes illegal behavior
1202// :76:34: note: when computing vector element at index '1'
1203// :76:34: error: use of undefined value here causes illegal behavior1192// :76:34: error: use of undefined value here causes illegal behavior
1204// :76:34: note: when computing vector element at index '1'
1205// :76:34: error: use of undefined value here causes illegal behavior1193// :76:34: error: use of undefined value here causes illegal behavior
1206// :76:34: note: when computing vector element at index '0'
1207// :76:34: error: use of undefined value here causes illegal behavior1194// :76:34: error: use of undefined value here causes illegal behavior
1208// :76:34: note: when computing vector element at index '0'
1209// :76:34: error: use of undefined value here causes illegal behavior1195// :76:34: error: use of undefined value here causes illegal behavior
1210// :76:34: note: when computing vector element at index '0'
1211// :76:34: error: use of undefined value here causes illegal behavior1196// :76:34: error: use of undefined value here causes illegal behavior
1212// :76:34: note: when computing vector element at index '0'
1213// :76:34: error: use of undefined value here causes illegal behavior1197// :76:34: error: use of undefined value here causes illegal behavior
1214// :76:34: error: use of undefined value here causes illegal behavior1198// :76:34: error: use of undefined value here causes illegal behavior
1215// :76:34: error: use of undefined value here causes illegal behavior1199// :76:34: error: use of undefined value here causes illegal behavior
...@@ -1217,13 +1201,11 @@ const std = @import("std");...@@ -1217,13 +1201,11 @@ const std = @import("std");
1217// :76:34: error: use of undefined value here causes illegal behavior1201// :76:34: error: use of undefined value here causes illegal behavior
1218// :76:34: error: use of undefined value here causes illegal behavior1202// :76:34: error: use of undefined value here causes illegal behavior
1219// :76:34: error: use of undefined value here causes illegal behavior1203// :76:34: error: use of undefined value here causes illegal behavior
1220// :76:34: note: when computing vector element at index '1'
1221// :76:34: error: use of undefined value here causes illegal behavior1204// :76:34: error: use of undefined value here causes illegal behavior
1222// :76:34: note: when computing vector element at index '1'
1223// :76:34: error: use of undefined value here causes illegal behavior1205// :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'
1225// :76:34: error: use of undefined value here causes illegal behavior1207// :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'
1227// :76:34: error: use of undefined value here causes illegal behavior1209// :76:34: error: use of undefined value here causes illegal behavior
1228// :76:34: note: when computing vector element at index '0'1210// :76:34: note: when computing vector element at index '0'
1229// :76:34: error: use of undefined value here causes illegal behavior1211// :76:34: error: use of undefined value here causes illegal behavior
...@@ -1233,19 +1215,25 @@ const std = @import("std");...@@ -1233,19 +1215,25 @@ const std = @import("std");
1233// :76:34: error: use of undefined value here causes illegal behavior1215// :76:34: error: use of undefined value here causes illegal behavior
1234// :76:34: note: when computing vector element at index '0'1216// :76:34: note: when computing vector element at index '0'
1235// :76:34: error: use of undefined value here causes illegal behavior1217// :76:34: error: use of undefined value here causes illegal behavior
1218// :76:34: note: when computing vector element at index '0'
1236// :76:34: error: use of undefined value here causes illegal behavior1219// :76:34: error: use of undefined value here causes illegal behavior
1220// :76:34: note: when computing vector element at index '0'
1237// :76:34: error: use of undefined value here causes illegal behavior1221// :76:34: error: use of undefined value here causes illegal behavior
1222// :76:34: note: when computing vector element at index '0'
1238// :76:34: error: use of undefined value here causes illegal behavior1223// :76:34: error: use of undefined value here causes illegal behavior
1224// :76:34: note: when computing vector element at index '0'
1239// :76:34: error: use of undefined value here causes illegal behavior1225// :76:34: error: use of undefined value here causes illegal behavior
1226// :76:34: note: when computing vector element at index '0'
1240// :76:34: error: use of undefined value here causes illegal behavior1227// :76:34: error: use of undefined value here causes illegal behavior
1228// :76:34: note: when computing vector element at index '0'
1241// :76:34: error: use of undefined value here causes illegal behavior1229// :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'
1243// :76:34: error: use of undefined value here causes illegal behavior1231// :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'
1245// :76:34: error: use of undefined value here causes illegal behavior1233// :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'
1247// :76:34: error: use of undefined value here causes illegal behavior1235// :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'
1249// :76:34: error: use of undefined value here causes illegal behavior1237// :76:34: error: use of undefined value here causes illegal behavior
1250// :76:34: note: when computing vector element at index '0'1238// :76:34: note: when computing vector element at index '0'
1251// :76:34: error: use of undefined value here causes illegal behavior1239// :76:34: error: use of undefined value here causes illegal behavior
...@@ -1255,11 +1243,17 @@ const std = @import("std");...@@ -1255,11 +1243,17 @@ const std = @import("std");
1255// :76:34: error: use of undefined value here causes illegal behavior1243// :76:34: error: use of undefined value here causes illegal behavior
1256// :76:34: note: when computing vector element at index '0'1244// :76:34: note: when computing vector element at index '0'
1257// :76:34: error: use of undefined value here causes illegal behavior1245// :76:34: error: use of undefined value here causes illegal behavior
1246// :76:34: note: when computing vector element at index '0'
1258// :76:34: error: use of undefined value here causes illegal behavior1247// :76:34: error: use of undefined value here causes illegal behavior
1248// :76:34: note: when computing vector element at index '0'
1259// :76:34: error: use of undefined value here causes illegal behavior1249// :76:34: error: use of undefined value here causes illegal behavior
1250// :76:34: note: when computing vector element at index '0'
1260// :76:34: error: use of undefined value here causes illegal behavior1251// :76:34: error: use of undefined value here causes illegal behavior
1252// :76:34: note: when computing vector element at index '0'
1261// :76:34: error: use of undefined value here causes illegal behavior1253// :76:34: error: use of undefined value here causes illegal behavior
1254// :76:34: note: when computing vector element at index '1'
1262// :76:34: error: use of undefined value here causes illegal behavior1255// :76:34: error: use of undefined value here causes illegal behavior
1256// :76:34: note: when computing vector element at index '1'
1263// :76:34: error: use of undefined value here causes illegal behavior1257// :76:34: error: use of undefined value here causes illegal behavior
1264// :76:34: note: when computing vector element at index '1'1258// :76:34: note: when computing vector element at index '1'
1265// :76:34: error: use of undefined value here causes illegal behavior1259// :76:34: error: use of undefined value here causes illegal behavior
...@@ -1269,19 +1263,25 @@ const std = @import("std");...@@ -1269,19 +1263,25 @@ const std = @import("std");
1269// :76:34: error: use of undefined value here causes illegal behavior1263// :76:34: error: use of undefined value here causes illegal behavior
1270// :76:34: note: when computing vector element at index '1'1264// :76:34: note: when computing vector element at index '1'
1271// :76:34: error: use of undefined value here causes illegal behavior1265// :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'
1273// :76:34: error: use of undefined value here causes illegal behavior1267// :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'
1275// :76:34: error: use of undefined value here causes illegal behavior1269// :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'
1277// :76:34: error: use of undefined value here causes illegal behavior1271// :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'
1279// :76:34: error: use of undefined value here causes illegal behavior1273// :76:34: error: use of undefined value here causes illegal behavior
1274// :76:34: note: when computing vector element at index '1'
1280// :76:34: error: use of undefined value here causes illegal behavior1275// :76:34: error: use of undefined value here causes illegal behavior
1276// :76:34: note: when computing vector element at index '1'
1281// :76:34: error: use of undefined value here causes illegal behavior1277// :76:34: error: use of undefined value here causes illegal behavior
1278// :76:34: note: when computing vector element at index '1'
1282// :76:34: error: use of undefined value here causes illegal behavior1279// :76:34: error: use of undefined value here causes illegal behavior
1280// :76:34: note: when computing vector element at index '1'
1283// :76:34: error: use of undefined value here causes illegal behavior1281// :76:34: error: use of undefined value here causes illegal behavior
1282// :76:34: note: when computing vector element at index '1'
1284// :76:34: error: use of undefined value here causes illegal behavior1283// :76:34: error: use of undefined value here causes illegal behavior
1284// :76:34: note: when computing vector element at index '1'
1285// :76:34: error: use of undefined value here causes illegal behavior1285// :76:34: error: use of undefined value here causes illegal behavior
1286// :76:34: note: when computing vector element at index '1'1286// :76:34: note: when computing vector element at index '1'
1287// :76:34: error: use of undefined value here causes illegal behavior1287// :76:34: error: use of undefined value here causes illegal behavior
...@@ -1291,13 +1291,13 @@ const std = @import("std");...@@ -1291,13 +1291,13 @@ const std = @import("std");
1291// :76:34: error: use of undefined value here causes illegal behavior1291// :76:34: error: use of undefined value here causes illegal behavior
1292// :76:34: note: when computing vector element at index '1'1292// :76:34: note: when computing vector element at index '1'
1293// :76:34: error: use of undefined value here causes illegal behavior1293// :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'
1295// :76:34: error: use of undefined value here causes illegal behavior1295// :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'
1297// :76:34: error: use of undefined value here causes illegal behavior1297// :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'
1299// :76:34: error: use of undefined value here causes illegal behavior1299// :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'
1301// :79:17: error: use of undefined value here causes illegal behavior1301// :79:17: error: use of undefined value here causes illegal behavior
1302// :79:17: error: use of undefined value here causes illegal behavior1302// :79:17: error: use of undefined value here causes illegal behavior
1303// :79:17: error: use of undefined value here causes illegal behavior1303// :79:17: error: use of undefined value here causes illegal behavior
...@@ -1305,21 +1305,13 @@ const std = @import("std");...@@ -1305,21 +1305,13 @@ const std = @import("std");
1305// :79:17: error: use of undefined value here causes illegal behavior1305// :79:17: error: use of undefined value here causes illegal behavior
1306// :79:17: error: use of undefined value here causes illegal behavior1306// :79:17: error: use of undefined value here causes illegal behavior
1307// :79:17: error: use of undefined value here causes illegal behavior1307// :79:17: error: use of undefined value here causes illegal behavior
1308// :79:17: note: when computing vector element at index '1'
1309// :79:17: error: use of undefined value here causes illegal behavior1308// :79:17: error: use of undefined value here causes illegal behavior
1310// :79:17: note: when computing vector element at index '1'
1311// :79:17: error: use of undefined value here causes illegal behavior1309// :79:17: error: use of undefined value here causes illegal behavior
1312// :79:17: note: when computing vector element at index '1'
1313// :79:17: error: use of undefined value here causes illegal behavior1310// :79:17: error: use of undefined value here causes illegal behavior
1314// :79:17: note: when computing vector element at index '1'
1315// :79:17: error: use of undefined value here causes illegal behavior1311// :79:17: error: use of undefined value here causes illegal behavior
1316// :79:17: note: when computing vector element at index '0'
1317// :79:17: error: use of undefined value here causes illegal behavior1312// :79:17: error: use of undefined value here causes illegal behavior
1318// :79:17: note: when computing vector element at index '0'
1319// :79:17: error: use of undefined value here causes illegal behavior1313// :79:17: error: use of undefined value here causes illegal behavior
1320// :79:17: note: when computing vector element at index '0'
1321// :79:17: error: use of undefined value here causes illegal behavior1314// :79:17: error: use of undefined value here causes illegal behavior
1322// :79:17: note: when computing vector element at index '0'
1323// :79:17: error: use of undefined value here causes illegal behavior1315// :79:17: error: use of undefined value here causes illegal behavior
1324// :79:17: error: use of undefined value here causes illegal behavior1316// :79:17: error: use of undefined value here causes illegal behavior
1325// :79:17: error: use of undefined value here causes illegal behavior1317// :79:17: error: use of undefined value here causes illegal behavior
...@@ -1327,21 +1319,13 @@ const std = @import("std");...@@ -1327,21 +1319,13 @@ const std = @import("std");
1327// :79:17: error: use of undefined value here causes illegal behavior1319// :79:17: error: use of undefined value here causes illegal behavior
1328// :79:17: error: use of undefined value here causes illegal behavior1320// :79:17: error: use of undefined value here causes illegal behavior
1329// :79:17: error: use of undefined value here causes illegal behavior1321// :79:17: error: use of undefined value here causes illegal behavior
1330// :79:17: note: when computing vector element at index '1'
1331// :79:17: error: use of undefined value here causes illegal behavior1322// :79:17: error: use of undefined value here causes illegal behavior
1332// :79:17: note: when computing vector element at index '1'
1333// :79:17: error: use of undefined value here causes illegal behavior1323// :79:17: error: use of undefined value here causes illegal behavior
1334// :79:17: note: when computing vector element at index '1'
1335// :79:17: error: use of undefined value here causes illegal behavior1324// :79:17: error: use of undefined value here causes illegal behavior
1336// :79:17: note: when computing vector element at index '1'
1337// :79:17: error: use of undefined value here causes illegal behavior1325// :79:17: error: use of undefined value here causes illegal behavior
1338// :79:17: note: when computing vector element at index '0'
1339// :79:17: error: use of undefined value here causes illegal behavior1326// :79:17: error: use of undefined value here causes illegal behavior
1340// :79:17: note: when computing vector element at index '0'
1341// :79:17: error: use of undefined value here causes illegal behavior1327// :79:17: error: use of undefined value here causes illegal behavior
1342// :79:17: note: when computing vector element at index '0'
1343// :79:17: error: use of undefined value here causes illegal behavior1328// :79:17: error: use of undefined value here causes illegal behavior
1344// :79:17: note: when computing vector element at index '0'
1345// :79:17: error: use of undefined value here causes illegal behavior1329// :79:17: error: use of undefined value here causes illegal behavior
1346// :79:17: error: use of undefined value here causes illegal behavior1330// :79:17: error: use of undefined value here causes illegal behavior
1347// :79:17: error: use of undefined value here causes illegal behavior1331// :79:17: error: use of undefined value here causes illegal behavior
...@@ -1349,13 +1333,11 @@ const std = @import("std");...@@ -1349,13 +1333,11 @@ const std = @import("std");
1349// :79:17: error: use of undefined value here causes illegal behavior1333// :79:17: error: use of undefined value here causes illegal behavior
1350// :79:17: error: use of undefined value here causes illegal behavior1334// :79:17: error: use of undefined value here causes illegal behavior
1351// :79:17: error: use of undefined value here causes illegal behavior1335// :79:17: error: use of undefined value here causes illegal behavior
1352// :79:17: note: when computing vector element at index '1'
1353// :79:17: error: use of undefined value here causes illegal behavior1336// :79:17: error: use of undefined value here causes illegal behavior
1354// :79:17: note: when computing vector element at index '1'
1355// :79:17: error: use of undefined value here causes illegal behavior1337// :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'
1357// :79:17: error: use of undefined value here causes illegal behavior1339// :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'
1359// :79:17: error: use of undefined value here causes illegal behavior1341// :79:17: error: use of undefined value here causes illegal behavior
1360// :79:17: note: when computing vector element at index '0'1342// :79:17: note: when computing vector element at index '0'
1361// :79:17: error: use of undefined value here causes illegal behavior1343// :79:17: error: use of undefined value here causes illegal behavior
...@@ -1365,19 +1347,25 @@ const std = @import("std");...@@ -1365,19 +1347,25 @@ const std = @import("std");
1365// :79:17: error: use of undefined value here causes illegal behavior1347// :79:17: error: use of undefined value here causes illegal behavior
1366// :79:17: note: when computing vector element at index '0'1348// :79:17: note: when computing vector element at index '0'
1367// :79:17: error: use of undefined value here causes illegal behavior1349// :79:17: error: use of undefined value here causes illegal behavior
1350// :79:17: note: when computing vector element at index '0'
1368// :79:17: error: use of undefined value here causes illegal behavior1351// :79:17: error: use of undefined value here causes illegal behavior
1352// :79:17: note: when computing vector element at index '0'
1369// :79:17: error: use of undefined value here causes illegal behavior1353// :79:17: error: use of undefined value here causes illegal behavior
1354// :79:17: note: when computing vector element at index '0'
1370// :79:17: error: use of undefined value here causes illegal behavior1355// :79:17: error: use of undefined value here causes illegal behavior
1356// :79:17: note: when computing vector element at index '0'
1371// :79:17: error: use of undefined value here causes illegal behavior1357// :79:17: error: use of undefined value here causes illegal behavior
1358// :79:17: note: when computing vector element at index '0'
1372// :79:17: error: use of undefined value here causes illegal behavior1359// :79:17: error: use of undefined value here causes illegal behavior
1360// :79:17: note: when computing vector element at index '0'
1373// :79:17: error: use of undefined value here causes illegal behavior1361// :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'
1375// :79:17: error: use of undefined value here causes illegal behavior1363// :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'
1377// :79:17: error: use of undefined value here causes illegal behavior1365// :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'
1379// :79:17: error: use of undefined value here causes illegal behavior1367// :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'
1381// :79:17: error: use of undefined value here causes illegal behavior1369// :79:17: error: use of undefined value here causes illegal behavior
1382// :79:17: note: when computing vector element at index '0'1370// :79:17: note: when computing vector element at index '0'
1383// :79:17: error: use of undefined value here causes illegal behavior1371// :79:17: error: use of undefined value here causes illegal behavior
...@@ -1387,11 +1375,17 @@ const std = @import("std");...@@ -1387,11 +1375,17 @@ const std = @import("std");
1387// :79:17: error: use of undefined value here causes illegal behavior1375// :79:17: error: use of undefined value here causes illegal behavior
1388// :79:17: note: when computing vector element at index '0'1376// :79:17: note: when computing vector element at index '0'
1389// :79:17: error: use of undefined value here causes illegal behavior1377// :79:17: error: use of undefined value here causes illegal behavior
1378// :79:17: note: when computing vector element at index '0'
1390// :79:17: error: use of undefined value here causes illegal behavior1379// :79:17: error: use of undefined value here causes illegal behavior
1380// :79:17: note: when computing vector element at index '0'
1391// :79:17: error: use of undefined value here causes illegal behavior1381// :79:17: error: use of undefined value here causes illegal behavior
1382// :79:17: note: when computing vector element at index '0'
1392// :79:17: error: use of undefined value here causes illegal behavior1383// :79:17: error: use of undefined value here causes illegal behavior
1384// :79:17: note: when computing vector element at index '0'
1393// :79:17: error: use of undefined value here causes illegal behavior1385// :79:17: error: use of undefined value here causes illegal behavior
1386// :79:17: note: when computing vector element at index '1'
1394// :79:17: error: use of undefined value here causes illegal behavior1387// :79:17: error: use of undefined value here causes illegal behavior
1388// :79:17: note: when computing vector element at index '1'
1395// :79:17: error: use of undefined value here causes illegal behavior1389// :79:17: error: use of undefined value here causes illegal behavior
1396// :79:17: note: when computing vector element at index '1'1390// :79:17: note: when computing vector element at index '1'
1397// :79:17: error: use of undefined value here causes illegal behavior1391// :79:17: error: use of undefined value here causes illegal behavior
...@@ -1401,19 +1395,25 @@ const std = @import("std");...@@ -1401,19 +1395,25 @@ const std = @import("std");
1401// :79:17: error: use of undefined value here causes illegal behavior1395// :79:17: error: use of undefined value here causes illegal behavior
1402// :79:17: note: when computing vector element at index '1'1396// :79:17: note: when computing vector element at index '1'
1403// :79:17: error: use of undefined value here causes illegal behavior1397// :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'
1405// :79:17: error: use of undefined value here causes illegal behavior1399// :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'
1407// :79:17: error: use of undefined value here causes illegal behavior1401// :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'
1409// :79:17: error: use of undefined value here causes illegal behavior1403// :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'
1411// :79:17: error: use of undefined value here causes illegal behavior1405// :79:17: error: use of undefined value here causes illegal behavior
1406// :79:17: note: when computing vector element at index '1'
1412// :79:17: error: use of undefined value here causes illegal behavior1407// :79:17: error: use of undefined value here causes illegal behavior
1408// :79:17: note: when computing vector element at index '1'
1413// :79:17: error: use of undefined value here causes illegal behavior1409// :79:17: error: use of undefined value here causes illegal behavior
1410// :79:17: note: when computing vector element at index '1'
1414// :79:17: error: use of undefined value here causes illegal behavior1411// :79:17: error: use of undefined value here causes illegal behavior
1412// :79:17: note: when computing vector element at index '1'
1415// :79:17: error: use of undefined value here causes illegal behavior1413// :79:17: error: use of undefined value here causes illegal behavior
1414// :79:17: note: when computing vector element at index '1'
1416// :79:17: error: use of undefined value here causes illegal behavior1415// :79:17: error: use of undefined value here causes illegal behavior
1416// :79:17: note: when computing vector element at index '1'
1417// :79:17: error: use of undefined value here causes illegal behavior1417// :79:17: error: use of undefined value here causes illegal behavior
1418// :79:17: note: when computing vector element at index '1'1418// :79:17: note: when computing vector element at index '1'
1419// :79:17: error: use of undefined value here causes illegal behavior1419// :79:17: error: use of undefined value here causes illegal behavior
...@@ -1423,13 +1423,13 @@ const std = @import("std");...@@ -1423,13 +1423,13 @@ const std = @import("std");
1423// :79:17: error: use of undefined value here causes illegal behavior1423// :79:17: error: use of undefined value here causes illegal behavior
1424// :79:17: note: when computing vector element at index '1'1424// :79:17: note: when computing vector element at index '1'
1425// :79:17: error: use of undefined value here causes illegal behavior1425// :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'
1427// :79:17: error: use of undefined value here causes illegal behavior1427// :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'
1429// :79:17: error: use of undefined value here causes illegal behavior1429// :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'
1431// :79:17: error: use of undefined value here causes illegal behavior1431// :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'
1433// :82:27: error: use of undefined value here causes illegal behavior1433// :82:27: error: use of undefined value here causes illegal behavior
1434// :82:27: error: use of undefined value here causes illegal behavior1434// :82:27: error: use of undefined value here causes illegal behavior
1435// :82:27: error: use of undefined value here causes illegal behavior1435// :82:27: error: use of undefined value here causes illegal behavior
...@@ -1437,21 +1437,13 @@ const std = @import("std");...@@ -1437,21 +1437,13 @@ const std = @import("std");
1437// :82:27: error: use of undefined value here causes illegal behavior1437// :82:27: error: use of undefined value here causes illegal behavior
1438// :82:27: error: use of undefined value here causes illegal behavior1438// :82:27: error: use of undefined value here causes illegal behavior
1439// :82:27: error: use of undefined value here causes illegal behavior1439// :82:27: error: use of undefined value here causes illegal behavior
1440// :82:27: note: when computing vector element at index '1'
1441// :82:27: error: use of undefined value here causes illegal behavior1440// :82:27: error: use of undefined value here causes illegal behavior
1442// :82:27: note: when computing vector element at index '1'
1443// :82:27: error: use of undefined value here causes illegal behavior1441// :82:27: error: use of undefined value here causes illegal behavior
1444// :82:27: note: when computing vector element at index '1'
1445// :82:27: error: use of undefined value here causes illegal behavior1442// :82:27: error: use of undefined value here causes illegal behavior
1446// :82:27: note: when computing vector element at index '1'
1447// :82:27: error: use of undefined value here causes illegal behavior1443// :82:27: error: use of undefined value here causes illegal behavior
1448// :82:27: note: when computing vector element at index '0'
1449// :82:27: error: use of undefined value here causes illegal behavior1444// :82:27: error: use of undefined value here causes illegal behavior
1450// :82:27: note: when computing vector element at index '0'
1451// :82:27: error: use of undefined value here causes illegal behavior1445// :82:27: error: use of undefined value here causes illegal behavior
1452// :82:27: note: when computing vector element at index '0'
1453// :82:27: error: use of undefined value here causes illegal behavior1446// :82:27: error: use of undefined value here causes illegal behavior
1454// :82:27: note: when computing vector element at index '0'
1455// :82:27: error: use of undefined value here causes illegal behavior1447// :82:27: error: use of undefined value here causes illegal behavior
1456// :82:27: error: use of undefined value here causes illegal behavior1448// :82:27: error: use of undefined value here causes illegal behavior
1457// :82:27: error: use of undefined value here causes illegal behavior1449// :82:27: error: use of undefined value here causes illegal behavior
...@@ -1459,21 +1451,13 @@ const std = @import("std");...@@ -1459,21 +1451,13 @@ const std = @import("std");
1459// :82:27: error: use of undefined value here causes illegal behavior1451// :82:27: error: use of undefined value here causes illegal behavior
1460// :82:27: error: use of undefined value here causes illegal behavior1452// :82:27: error: use of undefined value here causes illegal behavior
1461// :82:27: error: use of undefined value here causes illegal behavior1453// :82:27: error: use of undefined value here causes illegal behavior
1462// :82:27: note: when computing vector element at index '1'
1463// :82:27: error: use of undefined value here causes illegal behavior1454// :82:27: error: use of undefined value here causes illegal behavior
1464// :82:27: note: when computing vector element at index '1'
1465// :82:27: error: use of undefined value here causes illegal behavior1455// :82:27: error: use of undefined value here causes illegal behavior
1466// :82:27: note: when computing vector element at index '1'
1467// :82:27: error: use of undefined value here causes illegal behavior1456// :82:27: error: use of undefined value here causes illegal behavior
1468// :82:27: note: when computing vector element at index '1'
1469// :82:27: error: use of undefined value here causes illegal behavior1457// :82:27: error: use of undefined value here causes illegal behavior
1470// :82:27: note: when computing vector element at index '0'
1471// :82:27: error: use of undefined value here causes illegal behavior1458// :82:27: error: use of undefined value here causes illegal behavior
1472// :82:27: note: when computing vector element at index '0'
1473// :82:27: error: use of undefined value here causes illegal behavior1459// :82:27: error: use of undefined value here causes illegal behavior
1474// :82:27: note: when computing vector element at index '0'
1475// :82:27: error: use of undefined value here causes illegal behavior1460// :82:27: error: use of undefined value here causes illegal behavior
1476// :82:27: note: when computing vector element at index '0'
1477// :82:27: error: use of undefined value here causes illegal behavior1461// :82:27: error: use of undefined value here causes illegal behavior
1478// :82:27: error: use of undefined value here causes illegal behavior1462// :82:27: error: use of undefined value here causes illegal behavior
1479// :82:27: error: use of undefined value here causes illegal behavior1463// :82:27: error: use of undefined value here causes illegal behavior
...@@ -1481,13 +1465,11 @@ const std = @import("std");...@@ -1481,13 +1465,11 @@ const std = @import("std");
1481// :82:27: error: use of undefined value here causes illegal behavior1465// :82:27: error: use of undefined value here causes illegal behavior
1482// :82:27: error: use of undefined value here causes illegal behavior1466// :82:27: error: use of undefined value here causes illegal behavior
1483// :82:27: error: use of undefined value here causes illegal behavior1467// :82:27: error: use of undefined value here causes illegal behavior
1484// :82:27: note: when computing vector element at index '1'
1485// :82:27: error: use of undefined value here causes illegal behavior1468// :82:27: error: use of undefined value here causes illegal behavior
1486// :82:27: note: when computing vector element at index '1'
1487// :82:27: error: use of undefined value here causes illegal behavior1469// :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'
1489// :82:27: error: use of undefined value here causes illegal behavior1471// :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'
1491// :82:27: error: use of undefined value here causes illegal behavior1473// :82:27: error: use of undefined value here causes illegal behavior
1492// :82:27: note: when computing vector element at index '0'1474// :82:27: note: when computing vector element at index '0'
1493// :82:27: error: use of undefined value here causes illegal behavior1475// :82:27: error: use of undefined value here causes illegal behavior
...@@ -1497,19 +1479,25 @@ const std = @import("std");...@@ -1497,19 +1479,25 @@ const std = @import("std");
1497// :82:27: error: use of undefined value here causes illegal behavior1479// :82:27: error: use of undefined value here causes illegal behavior
1498// :82:27: note: when computing vector element at index '0'1480// :82:27: note: when computing vector element at index '0'
1499// :82:27: error: use of undefined value here causes illegal behavior1481// :82:27: error: use of undefined value here causes illegal behavior
1482// :82:27: note: when computing vector element at index '0'
1500// :82:27: error: use of undefined value here causes illegal behavior1483// :82:27: error: use of undefined value here causes illegal behavior
1484// :82:27: note: when computing vector element at index '0'
1501// :82:27: error: use of undefined value here causes illegal behavior1485// :82:27: error: use of undefined value here causes illegal behavior
1486// :82:27: note: when computing vector element at index '0'
1502// :82:27: error: use of undefined value here causes illegal behavior1487// :82:27: error: use of undefined value here causes illegal behavior
1488// :82:27: note: when computing vector element at index '0'
1503// :82:27: error: use of undefined value here causes illegal behavior1489// :82:27: error: use of undefined value here causes illegal behavior
1490// :82:27: note: when computing vector element at index '0'
1504// :82:27: error: use of undefined value here causes illegal behavior1491// :82:27: error: use of undefined value here causes illegal behavior
1492// :82:27: note: when computing vector element at index '0'
1505// :82:27: error: use of undefined value here causes illegal behavior1493// :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'
1507// :82:27: error: use of undefined value here causes illegal behavior1495// :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'
1509// :82:27: error: use of undefined value here causes illegal behavior1497// :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'
1511// :82:27: error: use of undefined value here causes illegal behavior1499// :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'
1513// :82:27: error: use of undefined value here causes illegal behavior1501// :82:27: error: use of undefined value here causes illegal behavior
1514// :82:27: note: when computing vector element at index '0'1502// :82:27: note: when computing vector element at index '0'
1515// :82:27: error: use of undefined value here causes illegal behavior1503// :82:27: error: use of undefined value here causes illegal behavior
...@@ -1519,11 +1507,17 @@ const std = @import("std");...@@ -1519,11 +1507,17 @@ const std = @import("std");
1519// :82:27: error: use of undefined value here causes illegal behavior1507// :82:27: error: use of undefined value here causes illegal behavior
1520// :82:27: note: when computing vector element at index '0'1508// :82:27: note: when computing vector element at index '0'
1521// :82:27: error: use of undefined value here causes illegal behavior1509// :82:27: error: use of undefined value here causes illegal behavior
1510// :82:27: note: when computing vector element at index '0'
1522// :82:27: error: use of undefined value here causes illegal behavior1511// :82:27: error: use of undefined value here causes illegal behavior
1512// :82:27: note: when computing vector element at index '0'
1523// :82:27: error: use of undefined value here causes illegal behavior1513// :82:27: error: use of undefined value here causes illegal behavior
1514// :82:27: note: when computing vector element at index '0'
1524// :82:27: error: use of undefined value here causes illegal behavior1515// :82:27: error: use of undefined value here causes illegal behavior
1516// :82:27: note: when computing vector element at index '0'
1525// :82:27: error: use of undefined value here causes illegal behavior1517// :82:27: error: use of undefined value here causes illegal behavior
1518// :82:27: note: when computing vector element at index '1'
1526// :82:27: error: use of undefined value here causes illegal behavior1519// :82:27: error: use of undefined value here causes illegal behavior
1520// :82:27: note: when computing vector element at index '1'
1527// :82:27: error: use of undefined value here causes illegal behavior1521// :82:27: error: use of undefined value here causes illegal behavior
1528// :82:27: note: when computing vector element at index '1'1522// :82:27: note: when computing vector element at index '1'
1529// :82:27: error: use of undefined value here causes illegal behavior1523// :82:27: error: use of undefined value here causes illegal behavior
...@@ -1533,19 +1527,25 @@ const std = @import("std");...@@ -1533,19 +1527,25 @@ const std = @import("std");
1533// :82:27: error: use of undefined value here causes illegal behavior1527// :82:27: error: use of undefined value here causes illegal behavior
1534// :82:27: note: when computing vector element at index '1'1528// :82:27: note: when computing vector element at index '1'
1535// :82:27: error: use of undefined value here causes illegal behavior1529// :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'
1537// :82:27: error: use of undefined value here causes illegal behavior1531// :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'
1539// :82:27: error: use of undefined value here causes illegal behavior1533// :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'
1541// :82:27: error: use of undefined value here causes illegal behavior1535// :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'
1543// :82:27: error: use of undefined value here causes illegal behavior1537// :82:27: error: use of undefined value here causes illegal behavior
1538// :82:27: note: when computing vector element at index '1'
1544// :82:27: error: use of undefined value here causes illegal behavior1539// :82:27: error: use of undefined value here causes illegal behavior
1540// :82:27: note: when computing vector element at index '1'
1545// :82:27: error: use of undefined value here causes illegal behavior1541// :82:27: error: use of undefined value here causes illegal behavior
1542// :82:27: note: when computing vector element at index '1'
1546// :82:27: error: use of undefined value here causes illegal behavior1543// :82:27: error: use of undefined value here causes illegal behavior
1544// :82:27: note: when computing vector element at index '1'
1547// :82:27: error: use of undefined value here causes illegal behavior1545// :82:27: error: use of undefined value here causes illegal behavior
1546// :82:27: note: when computing vector element at index '1'
1548// :82:27: error: use of undefined value here causes illegal behavior1547// :82:27: error: use of undefined value here causes illegal behavior
1548// :82:27: note: when computing vector element at index '1'
1549// :82:27: error: use of undefined value here causes illegal behavior1549// :82:27: error: use of undefined value here causes illegal behavior
1550// :82:27: note: when computing vector element at index '1'1550// :82:27: note: when computing vector element at index '1'
1551// :82:27: error: use of undefined value here causes illegal behavior1551// :82:27: error: use of undefined value here causes illegal behavior
...@@ -1555,44 +1555,37 @@ const std = @import("std");...@@ -1555,44 +1555,37 @@ const std = @import("std");
1555// :82:27: error: use of undefined value here causes illegal behavior1555// :82:27: error: use of undefined value here causes illegal behavior
1556// :82:27: note: when computing vector element at index '1'1556// :82:27: note: when computing vector element at index '1'
1557// :82:27: error: use of undefined value here causes illegal behavior1557// :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'
1559// :82:27: error: use of undefined value here causes illegal behavior1559// :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'
1561// :82:27: error: use of undefined value here causes illegal behavior1561// :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'
1563// :82:27: error: use of undefined value here causes illegal behavior1563// :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'
1565// :87:17: error: use of undefined value here causes illegal behavior1565// :87:17: error: use of undefined value here causes illegal behavior
1566// :87:17: error: use of undefined value here causes illegal behavior1566// :87:17: error: use of undefined value here causes illegal behavior
1567// :87:17: note: when computing vector element at index '0'
1568// :87:17: error: use of undefined value here causes illegal behavior1567// :87:17: error: use of undefined value here causes illegal behavior
1569// :87:17: note: when computing vector element at index '0'
1570// :87:17: error: use of undefined value here causes illegal behavior1568// :87:17: error: use of undefined value here causes illegal behavior
1571// :87:17: note: when computing vector element at index '0'
1572// :87:17: error: use of undefined value here causes illegal behavior1569// :87:17: error: use of undefined value here causes illegal behavior
1573// :87:17: note: when computing vector element at index '1'
1574// :87:17: error: use of undefined value here causes illegal behavior1570// :87:17: error: use of undefined value here causes illegal behavior
1575// :87:17: note: when computing vector element at index '0'
1576// :87:17: error: use of undefined value here causes illegal behavior1571// :87:17: error: use of undefined value here causes illegal behavior
1577// :87:17: note: when computing vector element at index '0'1572// :87:17: note: when computing vector element at index '0'
1578// :87:17: error: use of undefined value here causes illegal behavior1573// :87:17: error: use of undefined value here causes illegal behavior
1579// :87:17: note: when computing vector element at index '0'1574// :87:17: note: when computing vector element at index '0'
1580// :87:17: error: use of undefined value here causes illegal behavior1575// :87:17: error: use of undefined value here causes illegal behavior
1581// :87:17: error: use of undefined value here causes illegal behavior
1582// :87:17: note: when computing vector element at index '0'1576// :87:17: note: when computing vector element at index '0'
1583// :87:17: error: use of undefined value here causes illegal behavior1577// :87:17: error: use of undefined value here causes illegal behavior
1584// :87:17: note: when computing vector element at index '0'1578// :87:17: note: when computing vector element at index '0'
1585// :87:17: error: use of undefined value here causes illegal behavior1579// :87:17: error: use of undefined value here causes illegal behavior
1586// :87:17: note: when computing vector element at index '0'1580// :87:17: note: when computing vector element at index '0'
1587// :87:17: error: use of undefined value here causes illegal behavior1581// :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
1590// :87:17: note: when computing vector element at index '0'1582// :87:17: note: when computing vector element at index '0'
1591// :87:17: error: use of undefined value here causes illegal behavior1583// :87:17: error: use of undefined value here causes illegal behavior
1592// :87:17: note: when computing vector element at index '0'1584// :87:17: note: when computing vector element at index '0'
1593// :87:17: error: use of undefined value here causes illegal behavior1585// :87:17: error: use of undefined value here causes illegal behavior
1594// :87:17: note: when computing vector element at index '0'1586// :87:17: note: when computing vector element at index '0'
1595// :87:17: error: use of undefined value here causes illegal behavior1587// :87:17: error: use of undefined value here causes illegal behavior
1588// :87:17: note: when computing vector element at index '0'
1596// :87:17: error: use of undefined value here causes illegal behavior1589// :87:17: error: use of undefined value here causes illegal behavior
1597// :87:17: note: when computing vector element at index '0'1590// :87:17: note: when computing vector element at index '0'
1598// :87:17: error: use of undefined value here causes illegal behavior1591// :87:17: error: use of undefined value here causes illegal behavior
...@@ -1600,7 +1593,7 @@ const std = @import("std");...@@ -1600,7 +1593,7 @@ const std = @import("std");
1600// :87:17: error: use of undefined value here causes illegal behavior1593// :87:17: error: use of undefined value here causes illegal behavior
1601// :87:17: note: when computing vector element at index '0'1594// :87:17: note: when computing vector element at index '0'
1602// :87:17: error: use of undefined value here causes illegal behavior1595// :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'
1604// :87:17: error: use of undefined value here causes illegal behavior1597// :87:17: error: use of undefined value here causes illegal behavior
1605// :87:17: note: when computing vector element at index '0'1598// :87:17: note: when computing vector element at index '0'
1606// :87:17: error: use of undefined value here causes illegal behavior1599// :87:17: error: use of undefined value here causes illegal behavior
...@@ -1608,6 +1601,7 @@ const std = @import("std");...@@ -1608,6 +1601,7 @@ const std = @import("std");
1608// :87:17: error: use of undefined value here causes illegal behavior1601// :87:17: error: use of undefined value here causes illegal behavior
1609// :87:17: note: when computing vector element at index '0'1602// :87:17: note: when computing vector element at index '0'
1610// :87:17: error: use of undefined value here causes illegal behavior1603// :87:17: error: use of undefined value here causes illegal behavior
1604// :87:17: note: when computing vector element at index '0'
1611// :87:17: error: use of undefined value here causes illegal behavior1605// :87:17: error: use of undefined value here causes illegal behavior
1612// :87:17: note: when computing vector element at index '0'1606// :87:17: note: when computing vector element at index '0'
1613// :87:17: error: use of undefined value here causes illegal behavior1607// :87:17: error: use of undefined value here causes illegal behavior
...@@ -1615,7 +1609,7 @@ const std = @import("std");...@@ -1615,7 +1609,7 @@ const std = @import("std");
1615// :87:17: error: use of undefined value here causes illegal behavior1609// :87:17: error: use of undefined value here causes illegal behavior
1616// :87:17: note: when computing vector element at index '0'1610// :87:17: note: when computing vector element at index '0'
1617// :87:17: error: use of undefined value here causes illegal behavior1611// :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'
1619// :87:17: error: use of undefined value here causes illegal behavior1613// :87:17: error: use of undefined value here causes illegal behavior
1620// :87:17: note: when computing vector element at index '0'1614// :87:17: note: when computing vector element at index '0'
1621// :87:17: error: use of undefined value here causes illegal behavior1615// :87:17: error: use of undefined value here causes illegal behavior
...@@ -1623,6 +1617,7 @@ const std = @import("std");...@@ -1623,6 +1617,7 @@ const std = @import("std");
1623// :87:17: error: use of undefined value here causes illegal behavior1617// :87:17: error: use of undefined value here causes illegal behavior
1624// :87:17: note: when computing vector element at index '0'1618// :87:17: note: when computing vector element at index '0'
1625// :87:17: error: use of undefined value here causes illegal behavior1619// :87:17: error: use of undefined value here causes illegal behavior
1620// :87:17: note: when computing vector element at index '0'
1626// :87:17: error: use of undefined value here causes illegal behavior1621// :87:17: error: use of undefined value here causes illegal behavior
1627// :87:17: note: when computing vector element at index '0'1622// :87:17: note: when computing vector element at index '0'
1628// :87:17: error: use of undefined value here causes illegal behavior1623// :87:17: error: use of undefined value here causes illegal behavior
...@@ -1630,7 +1625,7 @@ const std = @import("std");...@@ -1630,7 +1625,7 @@ const std = @import("std");
1630// :87:17: error: use of undefined value here causes illegal behavior1625// :87:17: error: use of undefined value here causes illegal behavior
1631// :87:17: note: when computing vector element at index '0'1626// :87:17: note: when computing vector element at index '0'
1632// :87:17: error: use of undefined value here causes illegal behavior1627// :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'
1634// :87:17: error: use of undefined value here causes illegal behavior1629// :87:17: error: use of undefined value here causes illegal behavior
1635// :87:17: note: when computing vector element at index '0'1630// :87:17: note: when computing vector element at index '0'
1636// :87:17: error: use of undefined value here causes illegal behavior1631// :87:17: error: use of undefined value here causes illegal behavior
...@@ -1638,6 +1633,7 @@ const std = @import("std");...@@ -1638,6 +1633,7 @@ const std = @import("std");
1638// :87:17: error: use of undefined value here causes illegal behavior1633// :87:17: error: use of undefined value here causes illegal behavior
1639// :87:17: note: when computing vector element at index '0'1634// :87:17: note: when computing vector element at index '0'
1640// :87:17: error: use of undefined value here causes illegal behavior1635// :87:17: error: use of undefined value here causes illegal behavior
1636// :87:17: note: when computing vector element at index '0'
1641// :87:17: error: use of undefined value here causes illegal behavior1637// :87:17: error: use of undefined value here causes illegal behavior
1642// :87:17: note: when computing vector element at index '0'1638// :87:17: note: when computing vector element at index '0'
1643// :87:17: error: use of undefined value here causes illegal behavior1639// :87:17: error: use of undefined value here causes illegal behavior
...@@ -1647,108 +1643,105 @@ const std = @import("std");...@@ -1647,108 +1643,105 @@ const std = @import("std");
1647// :87:17: error: use of undefined value here causes illegal behavior1643// :87:17: error: use of undefined value here causes illegal behavior
1648// :87:17: note: when computing vector element at index '1'1644// :87:17: note: when computing vector element at index '1'
1649// :87:17: error: use of undefined value here causes illegal behavior1645// :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'
1651// :87:17: error: use of undefined value here causes illegal behavior1647// :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'
1653// :87:17: error: use of undefined value here causes illegal behavior1649// :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'
1655// :87:22: error: use of undefined value here causes illegal behavior1655// :87:22: error: use of undefined value here causes illegal behavior
1656// :87:22: error: use of undefined value here causes illegal behavior1656// :87:22: error: use of undefined value here causes illegal behavior
1657// :87:22: note: when computing vector element at index '0'
1658// :87:22: error: use of undefined value here causes illegal behavior1657// :87:22: error: use of undefined value here causes illegal behavior
1659// :87:22: note: when computing vector element at index '0'
1660// :87:22: error: use of undefined value here causes illegal behavior1658// :87:22: error: use of undefined value here causes illegal behavior
1661// :87:22: note: when computing vector element at index '1'
1662// :87:22: error: use of undefined value here causes illegal behavior1659// :87:22: error: use of undefined value here causes illegal behavior
1663// :87:22: note: when computing vector element at index '0'
1664// :87:22: error: use of undefined value here causes illegal behavior1660// :87:22: error: use of undefined value here causes illegal behavior
1665// :87:22: note: when computing vector element at index '0'
1666// :87:22: error: use of undefined value here causes illegal behavior1661// :87:22: error: use of undefined value here causes illegal behavior
1662// :87:22: note: when computing vector element at index '0'
1667// :87:22: error: use of undefined value here causes illegal behavior1663// :87:22: error: use of undefined value here causes illegal behavior
1668// :87:22: note: when computing vector element at index '0'1664// :87:22: note: when computing vector element at index '0'
1669// :87:22: error: use of undefined value here causes illegal behavior1665// :87:22: error: use of undefined value here causes illegal behavior
1670// :87:22: note: when computing vector element at index '0'1666// :87:22: note: when computing vector element at index '0'
1671// :87:22: error: use of undefined value here causes illegal behavior1667// :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'
1673// :87:22: error: use of undefined value here causes illegal behavior1669// :87:22: error: use of undefined value here causes illegal behavior
1674// :87:22: note: when computing vector element at index '0'1670// :87:22: note: when computing vector element at index '0'
1675// :87:22: error: use of undefined value here causes illegal behavior1671// :87:22: error: use of undefined value here causes illegal behavior
1676// :87:22: note: when computing vector element at index '0'1672// :87:22: note: when computing vector element at index '0'
1677// :87:22: error: use of undefined value here causes illegal behavior1673// :87:22: error: use of undefined value here causes illegal behavior
1674// :87:22: note: when computing vector element at index '0'
1678// :87:22: error: use of undefined value here causes illegal behavior1675// :87:22: error: use of undefined value here causes illegal behavior
1679// :87:22: note: when computing vector element at index '0'1676// :87:22: note: when computing vector element at index '0'
1680// :87:22: error: use of undefined value here causes illegal behavior1677// :87:22: error: use of undefined value here causes illegal behavior
1681// :87:22: note: when computing vector element at index '0'1678// :87:22: note: when computing vector element at index '0'
1682// :87:22: error: use of undefined value here causes illegal behavior1679// :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'
1684// :87:22: error: use of undefined value here causes illegal behavior1681// :87:22: error: use of undefined value here causes illegal behavior
1685// :87:22: note: when computing vector element at index '0'1682// :87:22: note: when computing vector element at index '0'
1686// :87:22: error: use of undefined value here causes illegal behavior1683// :87:22: error: use of undefined value here causes illegal behavior
1687// :87:22: note: when computing vector element at index '0'1684// :87:22: note: when computing vector element at index '0'
1688// :87:22: error: use of undefined value here causes illegal behavior1685// :87:22: error: use of undefined value here causes illegal behavior
1686// :87:22: note: when computing vector element at index '0'
1689// :87:22: error: use of undefined value here causes illegal behavior1687// :87:22: error: use of undefined value here causes illegal behavior
1690// :87:22: note: when computing vector element at index '0'1688// :87:22: note: when computing vector element at index '0'
1691// :87:22: error: use of undefined value here causes illegal behavior1689// :87:22: error: use of undefined value here causes illegal behavior
1692// :87:22: note: when computing vector element at index '0'1690// :87:22: note: when computing vector element at index '0'
1693// :87:22: error: use of undefined value here causes illegal behavior1691// :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'
1695// :87:22: error: use of undefined value here causes illegal behavior1693// :87:22: error: use of undefined value here causes illegal behavior
1696// :87:22: note: when computing vector element at index '0'1694// :87:22: note: when computing vector element at index '0'
1697// :87:22: error: use of undefined value here causes illegal behavior1695// :87:22: error: use of undefined value here causes illegal behavior
1698// :87:22: note: when computing vector element at index '0'1696// :87:22: note: when computing vector element at index '0'
1699// :87:22: error: use of undefined value here causes illegal behavior1697// :87:22: error: use of undefined value here causes illegal behavior
1698// :87:22: note: when computing vector element at index '0'
1700// :87:22: error: use of undefined value here causes illegal behavior1699// :87:22: error: use of undefined value here causes illegal behavior
1701// :87:22: note: when computing vector element at index '0'1700// :87:22: note: when computing vector element at index '0'
1702// :87:22: error: use of undefined value here causes illegal behavior1701// :87:22: error: use of undefined value here causes illegal behavior
1703// :87:22: note: when computing vector element at index '0'1702// :87:22: note: when computing vector element at index '0'
1704// :87:22: error: use of undefined value here causes illegal behavior1703// :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'
1706// :87:22: error: use of undefined value here causes illegal behavior1705// :87:22: error: use of undefined value here causes illegal behavior
1707// :87:22: note: when computing vector element at index '0'1706// :87:22: note: when computing vector element at index '0'
1708// :87:22: error: use of undefined value here causes illegal behavior1707// :87:22: error: use of undefined value here causes illegal behavior
1709// :87:22: note: when computing vector element at index '0'1708// :87:22: note: when computing vector element at index '0'
1710// :87:22: error: use of undefined value here causes illegal behavior1709// :87:22: error: use of undefined value here causes illegal behavior
1710// :87:22: note: when computing vector element at index '1'
1711// :87:22: error: use of undefined value here causes illegal behavior1711// :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'
1713// :87:22: error: use of undefined value here causes illegal behavior1713// :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'
1715// :87:22: error: use of undefined value here causes illegal behavior1715// :87:22: error: use of undefined value here causes illegal behavior
1716// :87:22: note: when computing vector element at index '1'1716// :87:22: note: when computing vector element at index '1'
1717// :87:22: error: use of undefined value here causes illegal behavior1717// :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'
1719// :87:22: error: use of undefined value here causes illegal behavior1719// :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'
1721// :90:27: error: use of undefined value here causes illegal behavior1721// :90:27: error: use of undefined value here causes illegal behavior
1722// :90:27: error: use of undefined value here causes illegal behavior1722// :90:27: error: use of undefined value here causes illegal behavior
1723// :90:27: note: when computing vector element at index '0'
1724// :90:27: error: use of undefined value here causes illegal behavior1723// :90:27: error: use of undefined value here causes illegal behavior
1725// :90:27: note: when computing vector element at index '0'
1726// :90:27: error: use of undefined value here causes illegal behavior1724// :90:27: error: use of undefined value here causes illegal behavior
1727// :90:27: note: when computing vector element at index '0'
1728// :90:27: error: use of undefined value here causes illegal behavior1725// :90:27: error: use of undefined value here causes illegal behavior
1729// :90:27: note: when computing vector element at index '1'
1730// :90:27: error: use of undefined value here causes illegal behavior1726// :90:27: error: use of undefined value here causes illegal behavior
1731// :90:27: note: when computing vector element at index '0'
1732// :90:27: error: use of undefined value here causes illegal behavior1727// :90:27: error: use of undefined value here causes illegal behavior
1733// :90:27: note: when computing vector element at index '0'1728// :90:27: note: when computing vector element at index '0'
1734// :90:27: error: use of undefined value here causes illegal behavior1729// :90:27: error: use of undefined value here causes illegal behavior
1735// :90:27: note: when computing vector element at index '0'1730// :90:27: note: when computing vector element at index '0'
1736// :90:27: error: use of undefined value here causes illegal behavior1731// :90:27: error: use of undefined value here causes illegal behavior
1737// :90:27: error: use of undefined value here causes illegal behavior
1738// :90:27: note: when computing vector element at index '0'1732// :90:27: note: when computing vector element at index '0'
1739// :90:27: error: use of undefined value here causes illegal behavior1733// :90:27: error: use of undefined value here causes illegal behavior
1740// :90:27: note: when computing vector element at index '0'1734// :90:27: note: when computing vector element at index '0'
1741// :90:27: error: use of undefined value here causes illegal behavior1735// :90:27: error: use of undefined value here causes illegal behavior
1742// :90:27: note: when computing vector element at index '0'1736// :90:27: note: when computing vector element at index '0'
1743// :90:27: error: use of undefined value here causes illegal behavior1737// :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
1746// :90:27: note: when computing vector element at index '0'1738// :90:27: note: when computing vector element at index '0'
1747// :90:27: error: use of undefined value here causes illegal behavior1739// :90:27: error: use of undefined value here causes illegal behavior
1748// :90:27: note: when computing vector element at index '0'1740// :90:27: note: when computing vector element at index '0'
1749// :90:27: error: use of undefined value here causes illegal behavior1741// :90:27: error: use of undefined value here causes illegal behavior
1750// :90:27: note: when computing vector element at index '0'1742// :90:27: note: when computing vector element at index '0'
1751// :90:27: error: use of undefined value here causes illegal behavior1743// :90:27: error: use of undefined value here causes illegal behavior
1744// :90:27: note: when computing vector element at index '0'
1752// :90:27: error: use of undefined value here causes illegal behavior1745// :90:27: error: use of undefined value here causes illegal behavior
1753// :90:27: note: when computing vector element at index '0'1746// :90:27: note: when computing vector element at index '0'
1754// :90:27: error: use of undefined value here causes illegal behavior1747// :90:27: error: use of undefined value here causes illegal behavior
...@@ -1756,7 +1749,7 @@ const std = @import("std");...@@ -1756,7 +1749,7 @@ const std = @import("std");
1756// :90:27: error: use of undefined value here causes illegal behavior1749// :90:27: error: use of undefined value here causes illegal behavior
1757// :90:27: note: when computing vector element at index '0'1750// :90:27: note: when computing vector element at index '0'
1758// :90:27: error: use of undefined value here causes illegal behavior1751// :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'
1760// :90:27: error: use of undefined value here causes illegal behavior1753// :90:27: error: use of undefined value here causes illegal behavior
1761// :90:27: note: when computing vector element at index '0'1754// :90:27: note: when computing vector element at index '0'
1762// :90:27: error: use of undefined value here causes illegal behavior1755// :90:27: error: use of undefined value here causes illegal behavior
...@@ -1764,6 +1757,7 @@ const std = @import("std");...@@ -1764,6 +1757,7 @@ const std = @import("std");
1764// :90:27: error: use of undefined value here causes illegal behavior1757// :90:27: error: use of undefined value here causes illegal behavior
1765// :90:27: note: when computing vector element at index '0'1758// :90:27: note: when computing vector element at index '0'
1766// :90:27: error: use of undefined value here causes illegal behavior1759// :90:27: error: use of undefined value here causes illegal behavior
1760// :90:27: note: when computing vector element at index '0'
1767// :90:27: error: use of undefined value here causes illegal behavior1761// :90:27: error: use of undefined value here causes illegal behavior
1768// :90:27: note: when computing vector element at index '0'1762// :90:27: note: when computing vector element at index '0'
1769// :90:27: error: use of undefined value here causes illegal behavior1763// :90:27: error: use of undefined value here causes illegal behavior
...@@ -1771,7 +1765,7 @@ const std = @import("std");...@@ -1771,7 +1765,7 @@ const std = @import("std");
1771// :90:27: error: use of undefined value here causes illegal behavior1765// :90:27: error: use of undefined value here causes illegal behavior
1772// :90:27: note: when computing vector element at index '0'1766// :90:27: note: when computing vector element at index '0'
1773// :90:27: error: use of undefined value here causes illegal behavior1767// :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'
1775// :90:27: error: use of undefined value here causes illegal behavior1769// :90:27: error: use of undefined value here causes illegal behavior
1776// :90:27: note: when computing vector element at index '0'1770// :90:27: note: when computing vector element at index '0'
1777// :90:27: error: use of undefined value here causes illegal behavior1771// :90:27: error: use of undefined value here causes illegal behavior
...@@ -1779,6 +1773,7 @@ const std = @import("std");...@@ -1779,6 +1773,7 @@ const std = @import("std");
1779// :90:27: error: use of undefined value here causes illegal behavior1773// :90:27: error: use of undefined value here causes illegal behavior
1780// :90:27: note: when computing vector element at index '0'1774// :90:27: note: when computing vector element at index '0'
1781// :90:27: error: use of undefined value here causes illegal behavior1775// :90:27: error: use of undefined value here causes illegal behavior
1776// :90:27: note: when computing vector element at index '0'
1782// :90:27: error: use of undefined value here causes illegal behavior1777// :90:27: error: use of undefined value here causes illegal behavior
1783// :90:27: note: when computing vector element at index '0'1778// :90:27: note: when computing vector element at index '0'
1784// :90:27: error: use of undefined value here causes illegal behavior1779// :90:27: error: use of undefined value here causes illegal behavior
...@@ -1786,7 +1781,7 @@ const std = @import("std");...@@ -1786,7 +1781,7 @@ const std = @import("std");
1786// :90:27: error: use of undefined value here causes illegal behavior1781// :90:27: error: use of undefined value here causes illegal behavior
1787// :90:27: note: when computing vector element at index '0'1782// :90:27: note: when computing vector element at index '0'
1788// :90:27: error: use of undefined value here causes illegal behavior1783// :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'
1790// :90:27: error: use of undefined value here causes illegal behavior1785// :90:27: error: use of undefined value here causes illegal behavior
1791// :90:27: note: when computing vector element at index '0'1786// :90:27: note: when computing vector element at index '0'
1792// :90:27: error: use of undefined value here causes illegal behavior1787// :90:27: error: use of undefined value here causes illegal behavior
...@@ -1794,6 +1789,7 @@ const std = @import("std");...@@ -1794,6 +1789,7 @@ const std = @import("std");
1794// :90:27: error: use of undefined value here causes illegal behavior1789// :90:27: error: use of undefined value here causes illegal behavior
1795// :90:27: note: when computing vector element at index '0'1790// :90:27: note: when computing vector element at index '0'
1796// :90:27: error: use of undefined value here causes illegal behavior1791// :90:27: error: use of undefined value here causes illegal behavior
1792// :90:27: note: when computing vector element at index '0'
1797// :90:27: error: use of undefined value here causes illegal behavior1793// :90:27: error: use of undefined value here causes illegal behavior
1798// :90:27: note: when computing vector element at index '0'1794// :90:27: note: when computing vector element at index '0'
1799// :90:27: error: use of undefined value here causes illegal behavior1795// :90:27: error: use of undefined value here causes illegal behavior
...@@ -1803,108 +1799,105 @@ const std = @import("std");...@@ -1803,108 +1799,105 @@ const std = @import("std");
1803// :90:27: error: use of undefined value here causes illegal behavior1799// :90:27: error: use of undefined value here causes illegal behavior
1804// :90:27: note: when computing vector element at index '1'1800// :90:27: note: when computing vector element at index '1'
1805// :90:27: error: use of undefined value here causes illegal behavior1801// :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'
1807// :90:27: error: use of undefined value here causes illegal behavior1803// :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'
1809// :90:27: error: use of undefined value here causes illegal behavior1805// :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'
1811// :90:30: error: use of undefined value here causes illegal behavior1811// :90:30: error: use of undefined value here causes illegal behavior
1812// :90:30: error: use of undefined value here causes illegal behavior1812// :90:30: error: use of undefined value here causes illegal behavior
1813// :90:30: note: when computing vector element at index '0'
1814// :90:30: error: use of undefined value here causes illegal behavior1813// :90:30: error: use of undefined value here causes illegal behavior
1815// :90:30: note: when computing vector element at index '0'
1816// :90:30: error: use of undefined value here causes illegal behavior1814// :90:30: error: use of undefined value here causes illegal behavior
1817// :90:30: note: when computing vector element at index '1'
1818// :90:30: error: use of undefined value here causes illegal behavior1815// :90:30: error: use of undefined value here causes illegal behavior
1819// :90:30: note: when computing vector element at index '0'
1820// :90:30: error: use of undefined value here causes illegal behavior1816// :90:30: error: use of undefined value here causes illegal behavior
1821// :90:30: note: when computing vector element at index '0'
1822// :90:30: error: use of undefined value here causes illegal behavior1817// :90:30: error: use of undefined value here causes illegal behavior
1818// :90:30: note: when computing vector element at index '0'
1823// :90:30: error: use of undefined value here causes illegal behavior1819// :90:30: error: use of undefined value here causes illegal behavior
1824// :90:30: note: when computing vector element at index '0'1820// :90:30: note: when computing vector element at index '0'
1825// :90:30: error: use of undefined value here causes illegal behavior1821// :90:30: error: use of undefined value here causes illegal behavior
1826// :90:30: note: when computing vector element at index '0'1822// :90:30: note: when computing vector element at index '0'
1827// :90:30: error: use of undefined value here causes illegal behavior1823// :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'
1829// :90:30: error: use of undefined value here causes illegal behavior1825// :90:30: error: use of undefined value here causes illegal behavior
1830// :90:30: note: when computing vector element at index '0'1826// :90:30: note: when computing vector element at index '0'
1831// :90:30: error: use of undefined value here causes illegal behavior1827// :90:30: error: use of undefined value here causes illegal behavior
1832// :90:30: note: when computing vector element at index '0'1828// :90:30: note: when computing vector element at index '0'
1833// :90:30: error: use of undefined value here causes illegal behavior1829// :90:30: error: use of undefined value here causes illegal behavior
1830// :90:30: note: when computing vector element at index '0'
1834// :90:30: error: use of undefined value here causes illegal behavior1831// :90:30: error: use of undefined value here causes illegal behavior
1835// :90:30: note: when computing vector element at index '0'1832// :90:30: note: when computing vector element at index '0'
1836// :90:30: error: use of undefined value here causes illegal behavior1833// :90:30: error: use of undefined value here causes illegal behavior
1837// :90:30: note: when computing vector element at index '0'1834// :90:30: note: when computing vector element at index '0'
1838// :90:30: error: use of undefined value here causes illegal behavior1835// :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'
1840// :90:30: error: use of undefined value here causes illegal behavior1837// :90:30: error: use of undefined value here causes illegal behavior
1841// :90:30: note: when computing vector element at index '0'1838// :90:30: note: when computing vector element at index '0'
1842// :90:30: error: use of undefined value here causes illegal behavior1839// :90:30: error: use of undefined value here causes illegal behavior
1843// :90:30: note: when computing vector element at index '0'1840// :90:30: note: when computing vector element at index '0'
1844// :90:30: error: use of undefined value here causes illegal behavior1841// :90:30: error: use of undefined value here causes illegal behavior
1842// :90:30: note: when computing vector element at index '0'
1845// :90:30: error: use of undefined value here causes illegal behavior1843// :90:30: error: use of undefined value here causes illegal behavior
1846// :90:30: note: when computing vector element at index '0'1844// :90:30: note: when computing vector element at index '0'
1847// :90:30: error: use of undefined value here causes illegal behavior1845// :90:30: error: use of undefined value here causes illegal behavior
1848// :90:30: note: when computing vector element at index '0'1846// :90:30: note: when computing vector element at index '0'
1849// :90:30: error: use of undefined value here causes illegal behavior1847// :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'
1851// :90:30: error: use of undefined value here causes illegal behavior1849// :90:30: error: use of undefined value here causes illegal behavior
1852// :90:30: note: when computing vector element at index '0'1850// :90:30: note: when computing vector element at index '0'
1853// :90:30: error: use of undefined value here causes illegal behavior1851// :90:30: error: use of undefined value here causes illegal behavior
1854// :90:30: note: when computing vector element at index '0'1852// :90:30: note: when computing vector element at index '0'
1855// :90:30: error: use of undefined value here causes illegal behavior1853// :90:30: error: use of undefined value here causes illegal behavior
1854// :90:30: note: when computing vector element at index '0'
1856// :90:30: error: use of undefined value here causes illegal behavior1855// :90:30: error: use of undefined value here causes illegal behavior
1857// :90:30: note: when computing vector element at index '0'1856// :90:30: note: when computing vector element at index '0'
1858// :90:30: error: use of undefined value here causes illegal behavior1857// :90:30: error: use of undefined value here causes illegal behavior
1859// :90:30: note: when computing vector element at index '0'1858// :90:30: note: when computing vector element at index '0'
1860// :90:30: error: use of undefined value here causes illegal behavior1859// :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'
1862// :90:30: error: use of undefined value here causes illegal behavior1861// :90:30: error: use of undefined value here causes illegal behavior
1863// :90:30: note: when computing vector element at index '0'1862// :90:30: note: when computing vector element at index '0'
1864// :90:30: error: use of undefined value here causes illegal behavior1863// :90:30: error: use of undefined value here causes illegal behavior
1865// :90:30: note: when computing vector element at index '0'1864// :90:30: note: when computing vector element at index '0'
1866// :90:30: error: use of undefined value here causes illegal behavior1865// :90:30: error: use of undefined value here causes illegal behavior
1866// :90:30: note: when computing vector element at index '1'
1867// :90:30: error: use of undefined value here causes illegal behavior1867// :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'
1869// :90:30: error: use of undefined value here causes illegal behavior1869// :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'
1871// :90:30: error: use of undefined value here causes illegal behavior1871// :90:30: error: use of undefined value here causes illegal behavior
1872// :90:30: note: when computing vector element at index '1'1872// :90:30: note: when computing vector element at index '1'
1873// :90:30: error: use of undefined value here causes illegal behavior1873// :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'
1875// :90:30: error: use of undefined value here causes illegal behavior1875// :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'
1877// :93:34: error: use of undefined value here causes illegal behavior1877// :93:34: error: use of undefined value here causes illegal behavior
1878// :93:34: error: use of undefined value here causes illegal behavior1878// :93:34: error: use of undefined value here causes illegal behavior
1879// :93:34: note: when computing vector element at index '0'
1880// :93:34: error: use of undefined value here causes illegal behavior1879// :93:34: error: use of undefined value here causes illegal behavior
1881// :93:34: note: when computing vector element at index '0'
1882// :93:34: error: use of undefined value here causes illegal behavior1880// :93:34: error: use of undefined value here causes illegal behavior
1883// :93:34: note: when computing vector element at index '0'
1884// :93:34: error: use of undefined value here causes illegal behavior1881// :93:34: error: use of undefined value here causes illegal behavior
1885// :93:34: note: when computing vector element at index '1'
1886// :93:34: error: use of undefined value here causes illegal behavior1882// :93:34: error: use of undefined value here causes illegal behavior
1887// :93:34: note: when computing vector element at index '0'
1888// :93:34: error: use of undefined value here causes illegal behavior1883// :93:34: error: use of undefined value here causes illegal behavior
1889// :93:34: note: when computing vector element at index '0'1884// :93:34: note: when computing vector element at index '0'
1890// :93:34: error: use of undefined value here causes illegal behavior1885// :93:34: error: use of undefined value here causes illegal behavior
1891// :93:34: note: when computing vector element at index '0'1886// :93:34: note: when computing vector element at index '0'
1892// :93:34: error: use of undefined value here causes illegal behavior1887// :93:34: error: use of undefined value here causes illegal behavior
1893// :93:34: error: use of undefined value here causes illegal behavior
1894// :93:34: note: when computing vector element at index '0'1888// :93:34: note: when computing vector element at index '0'
1895// :93:34: error: use of undefined value here causes illegal behavior1889// :93:34: error: use of undefined value here causes illegal behavior
1896// :93:34: note: when computing vector element at index '0'1890// :93:34: note: when computing vector element at index '0'
1897// :93:34: error: use of undefined value here causes illegal behavior1891// :93:34: error: use of undefined value here causes illegal behavior
1898// :93:34: note: when computing vector element at index '0'1892// :93:34: note: when computing vector element at index '0'
1899// :93:34: error: use of undefined value here causes illegal behavior1893// :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
1902// :93:34: note: when computing vector element at index '0'1894// :93:34: note: when computing vector element at index '0'
1903// :93:34: error: use of undefined value here causes illegal behavior1895// :93:34: error: use of undefined value here causes illegal behavior
1904// :93:34: note: when computing vector element at index '0'1896// :93:34: note: when computing vector element at index '0'
1905// :93:34: error: use of undefined value here causes illegal behavior1897// :93:34: error: use of undefined value here causes illegal behavior
1906// :93:34: note: when computing vector element at index '0'1898// :93:34: note: when computing vector element at index '0'
1907// :93:34: error: use of undefined value here causes illegal behavior1899// :93:34: error: use of undefined value here causes illegal behavior
1900// :93:34: note: when computing vector element at index '0'
1908// :93:34: error: use of undefined value here causes illegal behavior1901// :93:34: error: use of undefined value here causes illegal behavior
1909// :93:34: note: when computing vector element at index '0'1902// :93:34: note: when computing vector element at index '0'
1910// :93:34: error: use of undefined value here causes illegal behavior1903// :93:34: error: use of undefined value here causes illegal behavior
...@@ -1912,7 +1905,7 @@ const std = @import("std");...@@ -1912,7 +1905,7 @@ const std = @import("std");
1912// :93:34: error: use of undefined value here causes illegal behavior1905// :93:34: error: use of undefined value here causes illegal behavior
1913// :93:34: note: when computing vector element at index '0'1906// :93:34: note: when computing vector element at index '0'
1914// :93:34: error: use of undefined value here causes illegal behavior1907// :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'
1916// :93:34: error: use of undefined value here causes illegal behavior1909// :93:34: error: use of undefined value here causes illegal behavior
1917// :93:34: note: when computing vector element at index '0'1910// :93:34: note: when computing vector element at index '0'
1918// :93:34: error: use of undefined value here causes illegal behavior1911// :93:34: error: use of undefined value here causes illegal behavior
...@@ -1920,6 +1913,7 @@ const std = @import("std");...@@ -1920,6 +1913,7 @@ const std = @import("std");
1920// :93:34: error: use of undefined value here causes illegal behavior1913// :93:34: error: use of undefined value here causes illegal behavior
1921// :93:34: note: when computing vector element at index '0'1914// :93:34: note: when computing vector element at index '0'
1922// :93:34: error: use of undefined value here causes illegal behavior1915// :93:34: error: use of undefined value here causes illegal behavior
1916// :93:34: note: when computing vector element at index '0'
1923// :93:34: error: use of undefined value here causes illegal behavior1917// :93:34: error: use of undefined value here causes illegal behavior
1924// :93:34: note: when computing vector element at index '0'1918// :93:34: note: when computing vector element at index '0'
1925// :93:34: error: use of undefined value here causes illegal behavior1919// :93:34: error: use of undefined value here causes illegal behavior
...@@ -1927,7 +1921,7 @@ const std = @import("std");...@@ -1927,7 +1921,7 @@ const std = @import("std");
1927// :93:34: error: use of undefined value here causes illegal behavior1921// :93:34: error: use of undefined value here causes illegal behavior
1928// :93:34: note: when computing vector element at index '0'1922// :93:34: note: when computing vector element at index '0'
1929// :93:34: error: use of undefined value here causes illegal behavior1923// :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'
1931// :93:34: error: use of undefined value here causes illegal behavior1925// :93:34: error: use of undefined value here causes illegal behavior
1932// :93:34: note: when computing vector element at index '0'1926// :93:34: note: when computing vector element at index '0'
1933// :93:34: error: use of undefined value here causes illegal behavior1927// :93:34: error: use of undefined value here causes illegal behavior
...@@ -1935,6 +1929,7 @@ const std = @import("std");...@@ -1935,6 +1929,7 @@ const std = @import("std");
1935// :93:34: error: use of undefined value here causes illegal behavior1929// :93:34: error: use of undefined value here causes illegal behavior
1936// :93:34: note: when computing vector element at index '0'1930// :93:34: note: when computing vector element at index '0'
1937// :93:34: error: use of undefined value here causes illegal behavior1931// :93:34: error: use of undefined value here causes illegal behavior
1932// :93:34: note: when computing vector element at index '0'
1938// :93:34: error: use of undefined value here causes illegal behavior1933// :93:34: error: use of undefined value here causes illegal behavior
1939// :93:34: note: when computing vector element at index '0'1934// :93:34: note: when computing vector element at index '0'
1940// :93:34: error: use of undefined value here causes illegal behavior1935// :93:34: error: use of undefined value here causes illegal behavior
...@@ -1942,7 +1937,7 @@ const std = @import("std");...@@ -1942,7 +1937,7 @@ const std = @import("std");
1942// :93:34: error: use of undefined value here causes illegal behavior1937// :93:34: error: use of undefined value here causes illegal behavior
1943// :93:34: note: when computing vector element at index '0'1938// :93:34: note: when computing vector element at index '0'
1944// :93:34: error: use of undefined value here causes illegal behavior1939// :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'
1946// :93:34: error: use of undefined value here causes illegal behavior1941// :93:34: error: use of undefined value here causes illegal behavior
1947// :93:34: note: when computing vector element at index '0'1942// :93:34: note: when computing vector element at index '0'
1948// :93:34: error: use of undefined value here causes illegal behavior1943// :93:34: error: use of undefined value here causes illegal behavior
...@@ -1950,6 +1945,7 @@ const std = @import("std");...@@ -1950,6 +1945,7 @@ const std = @import("std");
1950// :93:34: error: use of undefined value here causes illegal behavior1945// :93:34: error: use of undefined value here causes illegal behavior
1951// :93:34: note: when computing vector element at index '0'1946// :93:34: note: when computing vector element at index '0'
1952// :93:34: error: use of undefined value here causes illegal behavior1947// :93:34: error: use of undefined value here causes illegal behavior
1948// :93:34: note: when computing vector element at index '0'
1953// :93:34: error: use of undefined value here causes illegal behavior1949// :93:34: error: use of undefined value here causes illegal behavior
1954// :93:34: note: when computing vector element at index '0'1950// :93:34: note: when computing vector element at index '0'
1955// :93:34: error: use of undefined value here causes illegal behavior1951// :93:34: error: use of undefined value here causes illegal behavior
...@@ -1959,108 +1955,105 @@ const std = @import("std");...@@ -1959,108 +1955,105 @@ const std = @import("std");
1959// :93:34: error: use of undefined value here causes illegal behavior1955// :93:34: error: use of undefined value here causes illegal behavior
1960// :93:34: note: when computing vector element at index '1'1956// :93:34: note: when computing vector element at index '1'
1961// :93:34: error: use of undefined value here causes illegal behavior1957// :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'
1963// :93:34: error: use of undefined value here causes illegal behavior1959// :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'
1965// :93:34: error: use of undefined value here causes illegal behavior1961// :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'
1967// :93:37: error: use of undefined value here causes illegal behavior1967// :93:37: error: use of undefined value here causes illegal behavior
1968// :93:37: error: use of undefined value here causes illegal behavior1968// :93:37: error: use of undefined value here causes illegal behavior
1969// :93:37: note: when computing vector element at index '0'
1970// :93:37: error: use of undefined value here causes illegal behavior1969// :93:37: error: use of undefined value here causes illegal behavior
1971// :93:37: note: when computing vector element at index '0'
1972// :93:37: error: use of undefined value here causes illegal behavior1970// :93:37: error: use of undefined value here causes illegal behavior
1973// :93:37: note: when computing vector element at index '1'
1974// :93:37: error: use of undefined value here causes illegal behavior1971// :93:37: error: use of undefined value here causes illegal behavior
1975// :93:37: note: when computing vector element at index '0'
1976// :93:37: error: use of undefined value here causes illegal behavior1972// :93:37: error: use of undefined value here causes illegal behavior
1977// :93:37: note: when computing vector element at index '0'
1978// :93:37: error: use of undefined value here causes illegal behavior1973// :93:37: error: use of undefined value here causes illegal behavior
1974// :93:37: note: when computing vector element at index '0'
1979// :93:37: error: use of undefined value here causes illegal behavior1975// :93:37: error: use of undefined value here causes illegal behavior
1980// :93:37: note: when computing vector element at index '0'1976// :93:37: note: when computing vector element at index '0'
1981// :93:37: error: use of undefined value here causes illegal behavior1977// :93:37: error: use of undefined value here causes illegal behavior
1982// :93:37: note: when computing vector element at index '0'1978// :93:37: note: when computing vector element at index '0'
1983// :93:37: error: use of undefined value here causes illegal behavior1979// :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'
1985// :93:37: error: use of undefined value here causes illegal behavior1981// :93:37: error: use of undefined value here causes illegal behavior
1986// :93:37: note: when computing vector element at index '0'1982// :93:37: note: when computing vector element at index '0'
1987// :93:37: error: use of undefined value here causes illegal behavior1983// :93:37: error: use of undefined value here causes illegal behavior
1988// :93:37: note: when computing vector element at index '0'1984// :93:37: note: when computing vector element at index '0'
1989// :93:37: error: use of undefined value here causes illegal behavior1985// :93:37: error: use of undefined value here causes illegal behavior
1986// :93:37: note: when computing vector element at index '0'
1990// :93:37: error: use of undefined value here causes illegal behavior1987// :93:37: error: use of undefined value here causes illegal behavior
1991// :93:37: note: when computing vector element at index '0'1988// :93:37: note: when computing vector element at index '0'
1992// :93:37: error: use of undefined value here causes illegal behavior1989// :93:37: error: use of undefined value here causes illegal behavior
1993// :93:37: note: when computing vector element at index '0'1990// :93:37: note: when computing vector element at index '0'
1994// :93:37: error: use of undefined value here causes illegal behavior1991// :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'
1996// :93:37: error: use of undefined value here causes illegal behavior1993// :93:37: error: use of undefined value here causes illegal behavior
1997// :93:37: note: when computing vector element at index '0'1994// :93:37: note: when computing vector element at index '0'
1998// :93:37: error: use of undefined value here causes illegal behavior1995// :93:37: error: use of undefined value here causes illegal behavior
1999// :93:37: note: when computing vector element at index '0'1996// :93:37: note: when computing vector element at index '0'
2000// :93:37: error: use of undefined value here causes illegal behavior1997// :93:37: error: use of undefined value here causes illegal behavior
1998// :93:37: note: when computing vector element at index '0'
2001// :93:37: error: use of undefined value here causes illegal behavior1999// :93:37: error: use of undefined value here causes illegal behavior
2002// :93:37: note: when computing vector element at index '0'2000// :93:37: note: when computing vector element at index '0'
2003// :93:37: error: use of undefined value here causes illegal behavior2001// :93:37: error: use of undefined value here causes illegal behavior
2004// :93:37: note: when computing vector element at index '0'2002// :93:37: note: when computing vector element at index '0'
2005// :93:37: error: use of undefined value here causes illegal behavior2003// :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'
2007// :93:37: error: use of undefined value here causes illegal behavior2005// :93:37: error: use of undefined value here causes illegal behavior
2008// :93:37: note: when computing vector element at index '0'2006// :93:37: note: when computing vector element at index '0'
2009// :93:37: error: use of undefined value here causes illegal behavior2007// :93:37: error: use of undefined value here causes illegal behavior
2010// :93:37: note: when computing vector element at index '0'2008// :93:37: note: when computing vector element at index '0'
2011// :93:37: error: use of undefined value here causes illegal behavior2009// :93:37: error: use of undefined value here causes illegal behavior
2010// :93:37: note: when computing vector element at index '0'
2012// :93:37: error: use of undefined value here causes illegal behavior2011// :93:37: error: use of undefined value here causes illegal behavior
2013// :93:37: note: when computing vector element at index '0'2012// :93:37: note: when computing vector element at index '0'
2014// :93:37: error: use of undefined value here causes illegal behavior2013// :93:37: error: use of undefined value here causes illegal behavior
2015// :93:37: note: when computing vector element at index '0'2014// :93:37: note: when computing vector element at index '0'
2016// :93:37: error: use of undefined value here causes illegal behavior2015// :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'
2018// :93:37: error: use of undefined value here causes illegal behavior2017// :93:37: error: use of undefined value here causes illegal behavior
2019// :93:37: note: when computing vector element at index '0'2018// :93:37: note: when computing vector element at index '0'
2020// :93:37: error: use of undefined value here causes illegal behavior2019// :93:37: error: use of undefined value here causes illegal behavior
2021// :93:37: note: when computing vector element at index '0'2020// :93:37: note: when computing vector element at index '0'
2022// :93:37: error: use of undefined value here causes illegal behavior2021// :93:37: error: use of undefined value here causes illegal behavior
2022// :93:37: note: when computing vector element at index '1'
2023// :93:37: error: use of undefined value here causes illegal behavior2023// :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'
2025// :93:37: error: use of undefined value here causes illegal behavior2025// :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'
2027// :93:37: error: use of undefined value here causes illegal behavior2027// :93:37: error: use of undefined value here causes illegal behavior
2028// :93:37: note: when computing vector element at index '1'2028// :93:37: note: when computing vector element at index '1'
2029// :93:37: error: use of undefined value here causes illegal behavior2029// :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'
2031// :93:37: error: use of undefined value here causes illegal behavior2031// :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'
2033// :96:17: error: use of undefined value here causes illegal behavior2033// :96:17: error: use of undefined value here causes illegal behavior
2034// :96:17: error: use of undefined value here causes illegal behavior2034// :96:17: error: use of undefined value here causes illegal behavior
2035// :96:17: note: when computing vector element at index '0'
2036// :96:17: error: use of undefined value here causes illegal behavior2035// :96:17: error: use of undefined value here causes illegal behavior
2037// :96:17: note: when computing vector element at index '0'
2038// :96:17: error: use of undefined value here causes illegal behavior2036// :96:17: error: use of undefined value here causes illegal behavior
2039// :96:17: note: when computing vector element at index '0'
2040// :96:17: error: use of undefined value here causes illegal behavior2037// :96:17: error: use of undefined value here causes illegal behavior
2041// :96:17: note: when computing vector element at index '1'
2042// :96:17: error: use of undefined value here causes illegal behavior2038// :96:17: error: use of undefined value here causes illegal behavior
2043// :96:17: note: when computing vector element at index '0'
2044// :96:17: error: use of undefined value here causes illegal behavior2039// :96:17: error: use of undefined value here causes illegal behavior
2045// :96:17: note: when computing vector element at index '0'2040// :96:17: note: when computing vector element at index '0'
2046// :96:17: error: use of undefined value here causes illegal behavior2041// :96:17: error: use of undefined value here causes illegal behavior
2047// :96:17: note: when computing vector element at index '0'2042// :96:17: note: when computing vector element at index '0'
2048// :96:17: error: use of undefined value here causes illegal behavior2043// :96:17: error: use of undefined value here causes illegal behavior
2049// :96:17: error: use of undefined value here causes illegal behavior
2050// :96:17: note: when computing vector element at index '0'2044// :96:17: note: when computing vector element at index '0'
2051// :96:17: error: use of undefined value here causes illegal behavior2045// :96:17: error: use of undefined value here causes illegal behavior
2052// :96:17: note: when computing vector element at index '0'2046// :96:17: note: when computing vector element at index '0'
2053// :96:17: error: use of undefined value here causes illegal behavior2047// :96:17: error: use of undefined value here causes illegal behavior
2054// :96:17: note: when computing vector element at index '0'2048// :96:17: note: when computing vector element at index '0'
2055// :96:17: error: use of undefined value here causes illegal behavior2049// :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
2058// :96:17: note: when computing vector element at index '0'2050// :96:17: note: when computing vector element at index '0'
2059// :96:17: error: use of undefined value here causes illegal behavior2051// :96:17: error: use of undefined value here causes illegal behavior
2060// :96:17: note: when computing vector element at index '0'2052// :96:17: note: when computing vector element at index '0'
2061// :96:17: error: use of undefined value here causes illegal behavior2053// :96:17: error: use of undefined value here causes illegal behavior
2062// :96:17: note: when computing vector element at index '0'2054// :96:17: note: when computing vector element at index '0'
2063// :96:17: error: use of undefined value here causes illegal behavior2055// :96:17: error: use of undefined value here causes illegal behavior
2056// :96:17: note: when computing vector element at index '0'
2064// :96:17: error: use of undefined value here causes illegal behavior2057// :96:17: error: use of undefined value here causes illegal behavior
2065// :96:17: note: when computing vector element at index '0'2058// :96:17: note: when computing vector element at index '0'
2066// :96:17: error: use of undefined value here causes illegal behavior2059// :96:17: error: use of undefined value here causes illegal behavior
...@@ -2068,7 +2061,7 @@ const std = @import("std");...@@ -2068,7 +2061,7 @@ const std = @import("std");
2068// :96:17: error: use of undefined value here causes illegal behavior2061// :96:17: error: use of undefined value here causes illegal behavior
2069// :96:17: note: when computing vector element at index '0'2062// :96:17: note: when computing vector element at index '0'
2070// :96:17: error: use of undefined value here causes illegal behavior2063// :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'
2072// :96:17: error: use of undefined value here causes illegal behavior2065// :96:17: error: use of undefined value here causes illegal behavior
2073// :96:17: note: when computing vector element at index '0'2066// :96:17: note: when computing vector element at index '0'
2074// :96:17: error: use of undefined value here causes illegal behavior2067// :96:17: error: use of undefined value here causes illegal behavior
...@@ -2076,6 +2069,7 @@ const std = @import("std");...@@ -2076,6 +2069,7 @@ const std = @import("std");
2076// :96:17: error: use of undefined value here causes illegal behavior2069// :96:17: error: use of undefined value here causes illegal behavior
2077// :96:17: note: when computing vector element at index '0'2070// :96:17: note: when computing vector element at index '0'
2078// :96:17: error: use of undefined value here causes illegal behavior2071// :96:17: error: use of undefined value here causes illegal behavior
2072// :96:17: note: when computing vector element at index '0'
2079// :96:17: error: use of undefined value here causes illegal behavior2073// :96:17: error: use of undefined value here causes illegal behavior
2080// :96:17: note: when computing vector element at index '0'2074// :96:17: note: when computing vector element at index '0'
2081// :96:17: error: use of undefined value here causes illegal behavior2075// :96:17: error: use of undefined value here causes illegal behavior
...@@ -2083,7 +2077,7 @@ const std = @import("std");...@@ -2083,7 +2077,7 @@ const std = @import("std");
2083// :96:17: error: use of undefined value here causes illegal behavior2077// :96:17: error: use of undefined value here causes illegal behavior
2084// :96:17: note: when computing vector element at index '0'2078// :96:17: note: when computing vector element at index '0'
2085// :96:17: error: use of undefined value here causes illegal behavior2079// :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'
2087// :96:17: error: use of undefined value here causes illegal behavior2081// :96:17: error: use of undefined value here causes illegal behavior
2088// :96:17: note: when computing vector element at index '0'2082// :96:17: note: when computing vector element at index '0'
2089// :96:17: error: use of undefined value here causes illegal behavior2083// :96:17: error: use of undefined value here causes illegal behavior
...@@ -2091,6 +2085,7 @@ const std = @import("std");...@@ -2091,6 +2085,7 @@ const std = @import("std");
2091// :96:17: error: use of undefined value here causes illegal behavior2085// :96:17: error: use of undefined value here causes illegal behavior
2092// :96:17: note: when computing vector element at index '0'2086// :96:17: note: when computing vector element at index '0'
2093// :96:17: error: use of undefined value here causes illegal behavior2087// :96:17: error: use of undefined value here causes illegal behavior
2088// :96:17: note: when computing vector element at index '0'
2094// :96:17: error: use of undefined value here causes illegal behavior2089// :96:17: error: use of undefined value here causes illegal behavior
2095// :96:17: note: when computing vector element at index '0'2090// :96:17: note: when computing vector element at index '0'
2096// :96:17: error: use of undefined value here causes illegal behavior2091// :96:17: error: use of undefined value here causes illegal behavior
...@@ -2098,7 +2093,7 @@ const std = @import("std");...@@ -2098,7 +2093,7 @@ const std = @import("std");
2098// :96:17: error: use of undefined value here causes illegal behavior2093// :96:17: error: use of undefined value here causes illegal behavior
2099// :96:17: note: when computing vector element at index '0'2094// :96:17: note: when computing vector element at index '0'
2100// :96:17: error: use of undefined value here causes illegal behavior2095// :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'
2102// :96:17: error: use of undefined value here causes illegal behavior2097// :96:17: error: use of undefined value here causes illegal behavior
2103// :96:17: note: when computing vector element at index '0'2098// :96:17: note: when computing vector element at index '0'
2104// :96:17: error: use of undefined value here causes illegal behavior2099// :96:17: error: use of undefined value here causes illegal behavior
...@@ -2106,6 +2101,7 @@ const std = @import("std");...@@ -2106,6 +2101,7 @@ const std = @import("std");
2106// :96:17: error: use of undefined value here causes illegal behavior2101// :96:17: error: use of undefined value here causes illegal behavior
2107// :96:17: note: when computing vector element at index '0'2102// :96:17: note: when computing vector element at index '0'
2108// :96:17: error: use of undefined value here causes illegal behavior2103// :96:17: error: use of undefined value here causes illegal behavior
2104// :96:17: note: when computing vector element at index '0'
2109// :96:17: error: use of undefined value here causes illegal behavior2105// :96:17: error: use of undefined value here causes illegal behavior
2110// :96:17: note: when computing vector element at index '0'2106// :96:17: note: when computing vector element at index '0'
2111// :96:17: error: use of undefined value here causes illegal behavior2107// :96:17: error: use of undefined value here causes illegal behavior
...@@ -2115,67 +2111,65 @@ const std = @import("std");...@@ -2115,67 +2111,65 @@ const std = @import("std");
2115// :96:17: error: use of undefined value here causes illegal behavior2111// :96:17: error: use of undefined value here causes illegal behavior
2116// :96:17: note: when computing vector element at index '1'2112// :96:17: note: when computing vector element at index '1'
2117// :96:17: error: use of undefined value here causes illegal behavior2113// :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'
2119// :96:17: error: use of undefined value here causes illegal behavior2115// :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'
2121// :96:17: error: use of undefined value here causes illegal behavior2117// :96:17: error: use of undefined value here causes illegal behavior
2122// :96:17: note: when computing vector element at index '0'2118// :96:17: note: when computing vector element at index '1'
2123// :96:22: error: use of undefined value here causes illegal behavior2119// :96:17: error: use of undefined value here causes illegal behavior
2124// :96:22: error: use of undefined value here causes illegal behavior2120// :96:17: note: when computing vector element at index '1'
2125// :96:22: note: when computing vector element at index '0'2121// :96:17: error: use of undefined value here causes illegal behavior
2122// :96:17: note: when computing vector element at index '1'
2126// :96:22: error: use of undefined value here causes illegal behavior2123// :96:22: error: use of undefined value here causes illegal behavior
2127// :96:22: note: when computing vector element at index '0'
2128// :96:22: error: use of undefined value here causes illegal behavior2124// :96:22: error: use of undefined value here causes illegal behavior
2129// :96:22: note: when computing vector element at index '1'
2130// :96:22: error: use of undefined value here causes illegal behavior2125// :96:22: error: use of undefined value here causes illegal behavior
2131// :96:22: note: when computing vector element at index '0'
2132// :96:22: error: use of undefined value here causes illegal behavior2126// :96:22: error: use of undefined value here causes illegal behavior
2133// :96:22: note: when computing vector element at index '0'
2134// :96:22: error: use of undefined value here causes illegal behavior2127// :96:22: error: use of undefined value here causes illegal behavior
2135// :96:22: error: use of undefined value here causes illegal behavior2128// :96:22: error: use of undefined value here causes illegal behavior
2136// :96:22: note: when computing vector element at index '0'
2137// :96:22: error: use of undefined value here causes illegal behavior2129// :96:22: error: use of undefined value here causes illegal behavior
2138// :96:22: note: when computing vector element at index '0'2130// :96:22: note: when computing vector element at index '0'
2139// :96:22: error: use of undefined value here causes illegal behavior2131// :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
2142// :96:22: note: when computing vector element at index '0'2132// :96:22: note: when computing vector element at index '0'
2143// :96:22: error: use of undefined value here causes illegal behavior2133// :96:22: error: use of undefined value here causes illegal behavior
2144// :96:22: note: when computing vector element at index '0'2134// :96:22: note: when computing vector element at index '0'
2145// :96:22: error: use of undefined value here causes illegal behavior2135// :96:22: error: use of undefined value here causes illegal behavior
2136// :96:22: note: when computing vector element at index '0'
2146// :96:22: error: use of undefined value here causes illegal behavior2137// :96:22: error: use of undefined value here causes illegal behavior
2147// :96:22: note: when computing vector element at index '0'2138// :96:22: note: when computing vector element at index '0'
2148// :96:22: error: use of undefined value here causes illegal behavior2139// :96:22: error: use of undefined value here causes illegal behavior
2149// :96:22: note: when computing vector element at index '0'2140// :96:22: note: when computing vector element at index '0'
2150// :96:22: error: use of undefined value here causes illegal behavior2141// :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'
2152// :96:22: error: use of undefined value here causes illegal behavior2143// :96:22: error: use of undefined value here causes illegal behavior
2153// :96:22: note: when computing vector element at index '0'2144// :96:22: note: when computing vector element at index '0'
2154// :96:22: error: use of undefined value here causes illegal behavior2145// :96:22: error: use of undefined value here causes illegal behavior
2155// :96:22: note: when computing vector element at index '0'2146// :96:22: note: when computing vector element at index '0'
2156// :96:22: error: use of undefined value here causes illegal behavior2147// :96:22: error: use of undefined value here causes illegal behavior
2148// :96:22: note: when computing vector element at index '0'
2157// :96:22: error: use of undefined value here causes illegal behavior2149// :96:22: error: use of undefined value here causes illegal behavior
2158// :96:22: note: when computing vector element at index '0'2150// :96:22: note: when computing vector element at index '0'
2159// :96:22: error: use of undefined value here causes illegal behavior2151// :96:22: error: use of undefined value here causes illegal behavior
2160// :96:22: note: when computing vector element at index '0'2152// :96:22: note: when computing vector element at index '0'
2161// :96:22: error: use of undefined value here causes illegal behavior2153// :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'
2163// :96:22: error: use of undefined value here causes illegal behavior2155// :96:22: error: use of undefined value here causes illegal behavior
2164// :96:22: note: when computing vector element at index '0'2156// :96:22: note: when computing vector element at index '0'
2165// :96:22: error: use of undefined value here causes illegal behavior2157// :96:22: error: use of undefined value here causes illegal behavior
2166// :96:22: note: when computing vector element at index '0'2158// :96:22: note: when computing vector element at index '0'
2167// :96:22: error: use of undefined value here causes illegal behavior2159// :96:22: error: use of undefined value here causes illegal behavior
2160// :96:22: note: when computing vector element at index '0'
2168// :96:22: error: use of undefined value here causes illegal behavior2161// :96:22: error: use of undefined value here causes illegal behavior
2169// :96:22: note: when computing vector element at index '0'2162// :96:22: note: when computing vector element at index '0'
2170// :96:22: error: use of undefined value here causes illegal behavior2163// :96:22: error: use of undefined value here causes illegal behavior
2171// :96:22: note: when computing vector element at index '0'2164// :96:22: note: when computing vector element at index '0'
2172// :96:22: error: use of undefined value here causes illegal behavior2165// :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'
2174// :96:22: error: use of undefined value here causes illegal behavior2167// :96:22: error: use of undefined value here causes illegal behavior
2175// :96:22: note: when computing vector element at index '0'2168// :96:22: note: when computing vector element at index '0'
2176// :96:22: error: use of undefined value here causes illegal behavior2169// :96:22: error: use of undefined value here causes illegal behavior
2177// :96:22: note: when computing vector element at index '0'2170// :96:22: note: when computing vector element at index '0'
2178// :96:22: error: use of undefined value here causes illegal behavior2171// :96:22: error: use of undefined value here causes illegal behavior
2172// :96:22: note: when computing vector element at index '0'
2179// :96:22: error: use of undefined value here causes illegal behavior2173// :96:22: error: use of undefined value here causes illegal behavior
2180// :96:22: note: when computing vector element at index '0'2174// :96:22: note: when computing vector element at index '0'
2181// :96:22: error: use of undefined value here causes illegal behavior2175// :96:22: error: use of undefined value here causes illegal behavior
...@@ -2183,40 +2177,39 @@ const std = @import("std");...@@ -2183,40 +2177,39 @@ const std = @import("std");
2183// :96:22: error: use of undefined value here causes illegal behavior2177// :96:22: error: use of undefined value here causes illegal behavior
2184// :96:22: note: when computing vector element at index '1'2178// :96:22: note: when computing vector element at index '1'
2185// :96:22: error: use of undefined value here causes illegal behavior2179// :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'
2187// :96:22: error: use of undefined value here causes illegal behavior2181// :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'
2189// :99:27: error: use of undefined value here causes illegal behavior2189// :99:27: error: use of undefined value here causes illegal behavior
2190// :99:27: error: use of undefined value here causes illegal behavior2190// :99:27: error: use of undefined value here causes illegal behavior
2191// :99:27: note: when computing vector element at index '0'
2192// :99:27: error: use of undefined value here causes illegal behavior2191// :99:27: error: use of undefined value here causes illegal behavior
2193// :99:27: note: when computing vector element at index '0'
2194// :99:27: error: use of undefined value here causes illegal behavior2192// :99:27: error: use of undefined value here causes illegal behavior
2195// :99:27: note: when computing vector element at index '0'
2196// :99:27: error: use of undefined value here causes illegal behavior2193// :99:27: error: use of undefined value here causes illegal behavior
2197// :99:27: note: when computing vector element at index '1'
2198// :99:27: error: use of undefined value here causes illegal behavior2194// :99:27: error: use of undefined value here causes illegal behavior
2199// :99:27: note: when computing vector element at index '0'
2200// :99:27: error: use of undefined value here causes illegal behavior2195// :99:27: error: use of undefined value here causes illegal behavior
2201// :99:27: note: when computing vector element at index '0'2196// :99:27: note: when computing vector element at index '0'
2202// :99:27: error: use of undefined value here causes illegal behavior2197// :99:27: error: use of undefined value here causes illegal behavior
2203// :99:27: note: when computing vector element at index '0'2198// :99:27: note: when computing vector element at index '0'
2204// :99:27: error: use of undefined value here causes illegal behavior2199// :99:27: error: use of undefined value here causes illegal behavior
2205// :99:27: error: use of undefined value here causes illegal behavior
2206// :99:27: note: when computing vector element at index '0'2200// :99:27: note: when computing vector element at index '0'
2207// :99:27: error: use of undefined value here causes illegal behavior2201// :99:27: error: use of undefined value here causes illegal behavior
2208// :99:27: note: when computing vector element at index '0'2202// :99:27: note: when computing vector element at index '0'
2209// :99:27: error: use of undefined value here causes illegal behavior2203// :99:27: error: use of undefined value here causes illegal behavior
2210// :99:27: note: when computing vector element at index '0'2204// :99:27: note: when computing vector element at index '0'
2211// :99:27: error: use of undefined value here causes illegal behavior2205// :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
2214// :99:27: note: when computing vector element at index '0'2206// :99:27: note: when computing vector element at index '0'
2215// :99:27: error: use of undefined value here causes illegal behavior2207// :99:27: error: use of undefined value here causes illegal behavior
2216// :99:27: note: when computing vector element at index '0'2208// :99:27: note: when computing vector element at index '0'
2217// :99:27: error: use of undefined value here causes illegal behavior2209// :99:27: error: use of undefined value here causes illegal behavior
2218// :99:27: note: when computing vector element at index '0'2210// :99:27: note: when computing vector element at index '0'
2219// :99:27: error: use of undefined value here causes illegal behavior2211// :99:27: error: use of undefined value here causes illegal behavior
2212// :99:27: note: when computing vector element at index '0'
2220// :99:27: error: use of undefined value here causes illegal behavior2213// :99:27: error: use of undefined value here causes illegal behavior
2221// :99:27: note: when computing vector element at index '0'2214// :99:27: note: when computing vector element at index '0'
2222// :99:27: error: use of undefined value here causes illegal behavior2215// :99:27: error: use of undefined value here causes illegal behavior
...@@ -2224,7 +2217,7 @@ const std = @import("std");...@@ -2224,7 +2217,7 @@ const std = @import("std");
2224// :99:27: error: use of undefined value here causes illegal behavior2217// :99:27: error: use of undefined value here causes illegal behavior
2225// :99:27: note: when computing vector element at index '0'2218// :99:27: note: when computing vector element at index '0'
2226// :99:27: error: use of undefined value here causes illegal behavior2219// :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'
2228// :99:27: error: use of undefined value here causes illegal behavior2221// :99:27: error: use of undefined value here causes illegal behavior
2229// :99:27: note: when computing vector element at index '0'2222// :99:27: note: when computing vector element at index '0'
2230// :99:27: error: use of undefined value here causes illegal behavior2223// :99:27: error: use of undefined value here causes illegal behavior
...@@ -2232,6 +2225,7 @@ const std = @import("std");...@@ -2232,6 +2225,7 @@ const std = @import("std");
2232// :99:27: error: use of undefined value here causes illegal behavior2225// :99:27: error: use of undefined value here causes illegal behavior
2233// :99:27: note: when computing vector element at index '0'2226// :99:27: note: when computing vector element at index '0'
2234// :99:27: error: use of undefined value here causes illegal behavior2227// :99:27: error: use of undefined value here causes illegal behavior
2228// :99:27: note: when computing vector element at index '0'
2235// :99:27: error: use of undefined value here causes illegal behavior2229// :99:27: error: use of undefined value here causes illegal behavior
2236// :99:27: note: when computing vector element at index '0'2230// :99:27: note: when computing vector element at index '0'
2237// :99:27: error: use of undefined value here causes illegal behavior2231// :99:27: error: use of undefined value here causes illegal behavior
...@@ -2239,7 +2233,7 @@ const std = @import("std");...@@ -2239,7 +2233,7 @@ const std = @import("std");
2239// :99:27: error: use of undefined value here causes illegal behavior2233// :99:27: error: use of undefined value here causes illegal behavior
2240// :99:27: note: when computing vector element at index '0'2234// :99:27: note: when computing vector element at index '0'
2241// :99:27: error: use of undefined value here causes illegal behavior2235// :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'
2243// :99:27: error: use of undefined value here causes illegal behavior2237// :99:27: error: use of undefined value here causes illegal behavior
2244// :99:27: note: when computing vector element at index '0'2238// :99:27: note: when computing vector element at index '0'
2245// :99:27: error: use of undefined value here causes illegal behavior2239// :99:27: error: use of undefined value here causes illegal behavior
...@@ -2247,6 +2241,7 @@ const std = @import("std");...@@ -2247,6 +2241,7 @@ const std = @import("std");
2247// :99:27: error: use of undefined value here causes illegal behavior2241// :99:27: error: use of undefined value here causes illegal behavior
2248// :99:27: note: when computing vector element at index '0'2242// :99:27: note: when computing vector element at index '0'
2249// :99:27: error: use of undefined value here causes illegal behavior2243// :99:27: error: use of undefined value here causes illegal behavior
2244// :99:27: note: when computing vector element at index '0'
2250// :99:27: error: use of undefined value here causes illegal behavior2245// :99:27: error: use of undefined value here causes illegal behavior
2251// :99:27: note: when computing vector element at index '0'2246// :99:27: note: when computing vector element at index '0'
2252// :99:27: error: use of undefined value here causes illegal behavior2247// :99:27: error: use of undefined value here causes illegal behavior
...@@ -2254,7 +2249,7 @@ const std = @import("std");...@@ -2254,7 +2249,7 @@ const std = @import("std");
2254// :99:27: error: use of undefined value here causes illegal behavior2249// :99:27: error: use of undefined value here causes illegal behavior
2255// :99:27: note: when computing vector element at index '0'2250// :99:27: note: when computing vector element at index '0'
2256// :99:27: error: use of undefined value here causes illegal behavior2251// :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'
2258// :99:27: error: use of undefined value here causes illegal behavior2253// :99:27: error: use of undefined value here causes illegal behavior
2259// :99:27: note: when computing vector element at index '0'2254// :99:27: note: when computing vector element at index '0'
2260// :99:27: error: use of undefined value here causes illegal behavior2255// :99:27: error: use of undefined value here causes illegal behavior
...@@ -2262,6 +2257,7 @@ const std = @import("std");...@@ -2262,6 +2257,7 @@ const std = @import("std");
2262// :99:27: error: use of undefined value here causes illegal behavior2257// :99:27: error: use of undefined value here causes illegal behavior
2263// :99:27: note: when computing vector element at index '0'2258// :99:27: note: when computing vector element at index '0'
2264// :99:27: error: use of undefined value here causes illegal behavior2259// :99:27: error: use of undefined value here causes illegal behavior
2260// :99:27: note: when computing vector element at index '0'
2265// :99:27: error: use of undefined value here causes illegal behavior2261// :99:27: error: use of undefined value here causes illegal behavior
2266// :99:27: note: when computing vector element at index '0'2262// :99:27: note: when computing vector element at index '0'
2267// :99:27: error: use of undefined value here causes illegal behavior2263// :99:27: error: use of undefined value here causes illegal behavior
...@@ -2271,77 +2267,81 @@ const std = @import("std");...@@ -2271,77 +2267,81 @@ const std = @import("std");
2271// :99:27: error: use of undefined value here causes illegal behavior2267// :99:27: error: use of undefined value here causes illegal behavior
2272// :99:27: note: when computing vector element at index '1'2268// :99:27: note: when computing vector element at index '1'
2273// :99:27: error: use of undefined value here causes illegal behavior2269// :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'
2275// :99:27: error: use of undefined value here causes illegal behavior2271// :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'
2277// :99:27: error: use of undefined value here causes illegal behavior2273// :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'
2279// :99:30: error: use of undefined value here causes illegal behavior2279// :99:30: error: use of undefined value here causes illegal behavior
2280// :99:30: error: use of undefined value here causes illegal behavior2280// :99:30: error: use of undefined value here causes illegal behavior
2281// :99:30: note: when computing vector element at index '0'
2282// :99:30: error: use of undefined value here causes illegal behavior2281// :99:30: error: use of undefined value here causes illegal behavior
2283// :99:30: note: when computing vector element at index '0'
2284// :99:30: error: use of undefined value here causes illegal behavior2282// :99:30: error: use of undefined value here causes illegal behavior
2285// :99:30: note: when computing vector element at index '1'
2286// :99:30: error: use of undefined value here causes illegal behavior2283// :99:30: error: use of undefined value here causes illegal behavior
2287// :99:30: note: when computing vector element at index '0'
2288// :99:30: error: use of undefined value here causes illegal behavior2284// :99:30: error: use of undefined value here causes illegal behavior
2289// :99:30: note: when computing vector element at index '0'
2290// :99:30: error: use of undefined value here causes illegal behavior2285// :99:30: error: use of undefined value here causes illegal behavior
2286// :99:30: note: when computing vector element at index '0'
2291// :99:30: error: use of undefined value here causes illegal behavior2287// :99:30: error: use of undefined value here causes illegal behavior
2292// :99:30: note: when computing vector element at index '0'2288// :99:30: note: when computing vector element at index '0'
2293// :99:30: error: use of undefined value here causes illegal behavior2289// :99:30: error: use of undefined value here causes illegal behavior
2294// :99:30: note: when computing vector element at index '0'2290// :99:30: note: when computing vector element at index '0'
2295// :99:30: error: use of undefined value here causes illegal behavior2291// :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'
2297// :99:30: error: use of undefined value here causes illegal behavior2293// :99:30: error: use of undefined value here causes illegal behavior
2298// :99:30: note: when computing vector element at index '0'2294// :99:30: note: when computing vector element at index '0'
2299// :99:30: error: use of undefined value here causes illegal behavior2295// :99:30: error: use of undefined value here causes illegal behavior
2300// :99:30: note: when computing vector element at index '0'2296// :99:30: note: when computing vector element at index '0'
2301// :99:30: error: use of undefined value here causes illegal behavior2297// :99:30: error: use of undefined value here causes illegal behavior
2298// :99:30: note: when computing vector element at index '0'
2302// :99:30: error: use of undefined value here causes illegal behavior2299// :99:30: error: use of undefined value here causes illegal behavior
2303// :99:30: note: when computing vector element at index '0'2300// :99:30: note: when computing vector element at index '0'
2304// :99:30: error: use of undefined value here causes illegal behavior2301// :99:30: error: use of undefined value here causes illegal behavior
2305// :99:30: note: when computing vector element at index '0'2302// :99:30: note: when computing vector element at index '0'
2306// :99:30: error: use of undefined value here causes illegal behavior2303// :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'
2308// :99:30: error: use of undefined value here causes illegal behavior2305// :99:30: error: use of undefined value here causes illegal behavior
2309// :99:30: note: when computing vector element at index '0'2306// :99:30: note: when computing vector element at index '0'
2310// :99:30: error: use of undefined value here causes illegal behavior2307// :99:30: error: use of undefined value here causes illegal behavior
2311// :99:30: note: when computing vector element at index '0'2308// :99:30: note: when computing vector element at index '0'
2312// :99:30: error: use of undefined value here causes illegal behavior2309// :99:30: error: use of undefined value here causes illegal behavior
2310// :99:30: note: when computing vector element at index '0'
2313// :99:30: error: use of undefined value here causes illegal behavior2311// :99:30: error: use of undefined value here causes illegal behavior
2314// :99:30: note: when computing vector element at index '0'2312// :99:30: note: when computing vector element at index '0'
2315// :99:30: error: use of undefined value here causes illegal behavior2313// :99:30: error: use of undefined value here causes illegal behavior
2316// :99:30: note: when computing vector element at index '0'2314// :99:30: note: when computing vector element at index '0'
2317// :99:30: error: use of undefined value here causes illegal behavior2315// :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'
2319// :99:30: error: use of undefined value here causes illegal behavior2317// :99:30: error: use of undefined value here causes illegal behavior
2320// :99:30: note: when computing vector element at index '0'2318// :99:30: note: when computing vector element at index '0'
2321// :99:30: error: use of undefined value here causes illegal behavior2319// :99:30: error: use of undefined value here causes illegal behavior
2322// :99:30: note: when computing vector element at index '0'2320// :99:30: note: when computing vector element at index '0'
2323// :99:30: error: use of undefined value here causes illegal behavior2321// :99:30: error: use of undefined value here causes illegal behavior
2322// :99:30: note: when computing vector element at index '0'
2324// :99:30: error: use of undefined value here causes illegal behavior2323// :99:30: error: use of undefined value here causes illegal behavior
2325// :99:30: note: when computing vector element at index '0'2324// :99:30: note: when computing vector element at index '0'
2326// :99:30: error: use of undefined value here causes illegal behavior2325// :99:30: error: use of undefined value here causes illegal behavior
2327// :99:30: note: when computing vector element at index '0'2326// :99:30: note: when computing vector element at index '0'
2328// :99:30: error: use of undefined value here causes illegal behavior2327// :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'
2330// :99:30: error: use of undefined value here causes illegal behavior2329// :99:30: error: use of undefined value here causes illegal behavior
2331// :99:30: note: when computing vector element at index '0'2330// :99:30: note: when computing vector element at index '0'
2332// :99:30: error: use of undefined value here causes illegal behavior2331// :99:30: error: use of undefined value here causes illegal behavior
2333// :99:30: note: when computing vector element at index '0'2332// :99:30: note: when computing vector element at index '0'
2334// :99:30: error: use of undefined value here causes illegal behavior2333// :99:30: error: use of undefined value here causes illegal behavior
2334// :99:30: note: when computing vector element at index '1'
2335// :99:30: error: use of undefined value here causes illegal behavior2335// :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'
2337// :99:30: error: use of undefined value here causes illegal behavior2337// :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'
2339// :99:30: error: use of undefined value here causes illegal behavior2339// :99:30: error: use of undefined value here causes illegal behavior
2340// :99:30: note: when computing vector element at index '1'2340// :99:30: note: when computing vector element at index '1'
2341// :99:30: error: use of undefined value here causes illegal behavior2341// :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'
2343// :99:30: error: use of undefined value here causes illegal behavior2343// :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'
2345// :104:22: error: use of undefined value here causes illegal behavior2345// :104:22: error: use of undefined value here causes illegal behavior
2346// :104:22: error: use of undefined value here causes illegal behavior2346// :104:22: error: use of undefined value here causes illegal behavior
2347// :104:22: error: use of undefined value here causes illegal behavior2347// :104:22: error: use of undefined value here causes illegal behavior
...@@ -2349,21 +2349,13 @@ const std = @import("std");...@@ -2349,21 +2349,13 @@ const std = @import("std");
2349// :104:22: error: use of undefined value here causes illegal behavior2349// :104:22: error: use of undefined value here causes illegal behavior
2350// :104:22: error: use of undefined value here causes illegal behavior2350// :104:22: error: use of undefined value here causes illegal behavior
2351// :104:22: error: use of undefined value here causes illegal behavior2351// :104:22: error: use of undefined value here causes illegal behavior
2352// :104:22: note: when computing vector element at index '1'
2353// :104:22: error: use of undefined value here causes illegal behavior2352// :104:22: error: use of undefined value here causes illegal behavior
2354// :104:22: note: when computing vector element at index '1'
2355// :104:22: error: use of undefined value here causes illegal behavior2353// :104:22: error: use of undefined value here causes illegal behavior
2356// :104:22: note: when computing vector element at index '1'
2357// :104:22: error: use of undefined value here causes illegal behavior2354// :104:22: error: use of undefined value here causes illegal behavior
2358// :104:22: note: when computing vector element at index '1'
2359// :104:22: error: use of undefined value here causes illegal behavior2355// :104:22: error: use of undefined value here causes illegal behavior
2360// :104:22: note: when computing vector element at index '0'
2361// :104:22: error: use of undefined value here causes illegal behavior2356// :104:22: error: use of undefined value here causes illegal behavior
2362// :104:22: note: when computing vector element at index '0'
2363// :104:22: error: use of undefined value here causes illegal behavior2357// :104:22: error: use of undefined value here causes illegal behavior
2364// :104:22: note: when computing vector element at index '0'
2365// :104:22: error: use of undefined value here causes illegal behavior2358// :104:22: error: use of undefined value here causes illegal behavior
2366// :104:22: note: when computing vector element at index '0'
2367// :104:22: error: use of undefined value here causes illegal behavior2359// :104:22: error: use of undefined value here causes illegal behavior
2368// :104:22: error: use of undefined value here causes illegal behavior2360// :104:22: error: use of undefined value here causes illegal behavior
2369// :104:22: error: use of undefined value here causes illegal behavior2361// :104:22: error: use of undefined value here causes illegal behavior
...@@ -2371,21 +2363,13 @@ const std = @import("std");...@@ -2371,21 +2363,13 @@ const std = @import("std");
2371// :104:22: error: use of undefined value here causes illegal behavior2363// :104:22: error: use of undefined value here causes illegal behavior
2372// :104:22: error: use of undefined value here causes illegal behavior2364// :104:22: error: use of undefined value here causes illegal behavior
2373// :104:22: error: use of undefined value here causes illegal behavior2365// :104:22: error: use of undefined value here causes illegal behavior
2374// :104:22: note: when computing vector element at index '1'
2375// :104:22: error: use of undefined value here causes illegal behavior2366// :104:22: error: use of undefined value here causes illegal behavior
2376// :104:22: note: when computing vector element at index '1'
2377// :104:22: error: use of undefined value here causes illegal behavior2367// :104:22: error: use of undefined value here causes illegal behavior
2378// :104:22: note: when computing vector element at index '1'
2379// :104:22: error: use of undefined value here causes illegal behavior2368// :104:22: error: use of undefined value here causes illegal behavior
2380// :104:22: note: when computing vector element at index '1'
2381// :104:22: error: use of undefined value here causes illegal behavior2369// :104:22: error: use of undefined value here causes illegal behavior
2382// :104:22: note: when computing vector element at index '0'
2383// :104:22: error: use of undefined value here causes illegal behavior2370// :104:22: error: use of undefined value here causes illegal behavior
2384// :104:22: note: when computing vector element at index '0'
2385// :104:22: error: use of undefined value here causes illegal behavior2371// :104:22: error: use of undefined value here causes illegal behavior
2386// :104:22: note: when computing vector element at index '0'
2387// :104:22: error: use of undefined value here causes illegal behavior2372// :104:22: error: use of undefined value here causes illegal behavior
2388// :104:22: note: when computing vector element at index '0'
2389// :104:22: error: use of undefined value here causes illegal behavior2373// :104:22: error: use of undefined value here causes illegal behavior
2390// :104:22: error: use of undefined value here causes illegal behavior2374// :104:22: error: use of undefined value here causes illegal behavior
2391// :104:22: error: use of undefined value here causes illegal behavior2375// :104:22: error: use of undefined value here causes illegal behavior
...@@ -2393,13 +2377,11 @@ const std = @import("std");...@@ -2393,13 +2377,11 @@ const std = @import("std");
2393// :104:22: error: use of undefined value here causes illegal behavior2377// :104:22: error: use of undefined value here causes illegal behavior
2394// :104:22: error: use of undefined value here causes illegal behavior2378// :104:22: error: use of undefined value here causes illegal behavior
2395// :104:22: error: use of undefined value here causes illegal behavior2379// :104:22: error: use of undefined value here causes illegal behavior
2396// :104:22: note: when computing vector element at index '1'
2397// :104:22: error: use of undefined value here causes illegal behavior2380// :104:22: error: use of undefined value here causes illegal behavior
2398// :104:22: note: when computing vector element at index '1'
2399// :104:22: error: use of undefined value here causes illegal behavior2381// :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'
2401// :104:22: error: use of undefined value here causes illegal behavior2383// :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'
2403// :104:22: error: use of undefined value here causes illegal behavior2385// :104:22: error: use of undefined value here causes illegal behavior
2404// :104:22: note: when computing vector element at index '0'2386// :104:22: note: when computing vector element at index '0'
2405// :104:22: error: use of undefined value here causes illegal behavior2387// :104:22: error: use of undefined value here causes illegal behavior
...@@ -2409,19 +2391,25 @@ const std = @import("std");...@@ -2409,19 +2391,25 @@ const std = @import("std");
2409// :104:22: error: use of undefined value here causes illegal behavior2391// :104:22: error: use of undefined value here causes illegal behavior
2410// :104:22: note: when computing vector element at index '0'2392// :104:22: note: when computing vector element at index '0'
2411// :104:22: error: use of undefined value here causes illegal behavior2393// :104:22: error: use of undefined value here causes illegal behavior
2394// :104:22: note: when computing vector element at index '0'
2412// :104:22: error: use of undefined value here causes illegal behavior2395// :104:22: error: use of undefined value here causes illegal behavior
2396// :104:22: note: when computing vector element at index '0'
2413// :104:22: error: use of undefined value here causes illegal behavior2397// :104:22: error: use of undefined value here causes illegal behavior
2398// :104:22: note: when computing vector element at index '0'
2414// :104:22: error: use of undefined value here causes illegal behavior2399// :104:22: error: use of undefined value here causes illegal behavior
2400// :104:22: note: when computing vector element at index '0'
2415// :104:22: error: use of undefined value here causes illegal behavior2401// :104:22: error: use of undefined value here causes illegal behavior
2402// :104:22: note: when computing vector element at index '0'
2416// :104:22: error: use of undefined value here causes illegal behavior2403// :104:22: error: use of undefined value here causes illegal behavior
2404// :104:22: note: when computing vector element at index '0'
2417// :104:22: error: use of undefined value here causes illegal behavior2405// :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'
2419// :104:22: error: use of undefined value here causes illegal behavior2407// :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'
2421// :104:22: error: use of undefined value here causes illegal behavior2409// :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'
2423// :104:22: error: use of undefined value here causes illegal behavior2411// :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'
2425// :104:22: error: use of undefined value here causes illegal behavior2413// :104:22: error: use of undefined value here causes illegal behavior
2426// :104:22: note: when computing vector element at index '0'2414// :104:22: note: when computing vector element at index '0'
2427// :104:22: error: use of undefined value here causes illegal behavior2415// :104:22: error: use of undefined value here causes illegal behavior
...@@ -2431,11 +2419,17 @@ const std = @import("std");...@@ -2431,11 +2419,17 @@ const std = @import("std");
2431// :104:22: error: use of undefined value here causes illegal behavior2419// :104:22: error: use of undefined value here causes illegal behavior
2432// :104:22: note: when computing vector element at index '0'2420// :104:22: note: when computing vector element at index '0'
2433// :104:22: error: use of undefined value here causes illegal behavior2421// :104:22: error: use of undefined value here causes illegal behavior
2422// :104:22: note: when computing vector element at index '0'
2434// :104:22: error: use of undefined value here causes illegal behavior2423// :104:22: error: use of undefined value here causes illegal behavior
2424// :104:22: note: when computing vector element at index '0'
2435// :104:22: error: use of undefined value here causes illegal behavior2425// :104:22: error: use of undefined value here causes illegal behavior
2426// :104:22: note: when computing vector element at index '0'
2436// :104:22: error: use of undefined value here causes illegal behavior2427// :104:22: error: use of undefined value here causes illegal behavior
2428// :104:22: note: when computing vector element at index '0'
2437// :104:22: error: use of undefined value here causes illegal behavior2429// :104:22: error: use of undefined value here causes illegal behavior
2430// :104:22: note: when computing vector element at index '1'
2438// :104:22: error: use of undefined value here causes illegal behavior2431// :104:22: error: use of undefined value here causes illegal behavior
2432// :104:22: note: when computing vector element at index '1'
2439// :104:22: error: use of undefined value here causes illegal behavior2433// :104:22: error: use of undefined value here causes illegal behavior
2440// :104:22: note: when computing vector element at index '1'2434// :104:22: note: when computing vector element at index '1'
2441// :104:22: error: use of undefined value here causes illegal behavior2435// :104:22: error: use of undefined value here causes illegal behavior
...@@ -2445,19 +2439,25 @@ const std = @import("std");...@@ -2445,19 +2439,25 @@ const std = @import("std");
2445// :104:22: error: use of undefined value here causes illegal behavior2439// :104:22: error: use of undefined value here causes illegal behavior
2446// :104:22: note: when computing vector element at index '1'2440// :104:22: note: when computing vector element at index '1'
2447// :104:22: error: use of undefined value here causes illegal behavior2441// :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'
2449// :104:22: error: use of undefined value here causes illegal behavior2443// :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'
2451// :104:22: error: use of undefined value here causes illegal behavior2445// :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'
2453// :104:22: error: use of undefined value here causes illegal behavior2447// :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'
2455// :104:22: error: use of undefined value here causes illegal behavior2449// :104:22: error: use of undefined value here causes illegal behavior
2450// :104:22: note: when computing vector element at index '1'
2456// :104:22: error: use of undefined value here causes illegal behavior2451// :104:22: error: use of undefined value here causes illegal behavior
2452// :104:22: note: when computing vector element at index '1'
2457// :104:22: error: use of undefined value here causes illegal behavior2453// :104:22: error: use of undefined value here causes illegal behavior
2454// :104:22: note: when computing vector element at index '1'
2458// :104:22: error: use of undefined value here causes illegal behavior2455// :104:22: error: use of undefined value here causes illegal behavior
2456// :104:22: note: when computing vector element at index '1'
2459// :104:22: error: use of undefined value here causes illegal behavior2457// :104:22: error: use of undefined value here causes illegal behavior
2458// :104:22: note: when computing vector element at index '1'
2460// :104:22: error: use of undefined value here causes illegal behavior2459// :104:22: error: use of undefined value here causes illegal behavior
2460// :104:22: note: when computing vector element at index '1'
2461// :104:22: error: use of undefined value here causes illegal behavior2461// :104:22: error: use of undefined value here causes illegal behavior
2462// :104:22: note: when computing vector element at index '1'2462// :104:22: note: when computing vector element at index '1'
2463// :104:22: error: use of undefined value here causes illegal behavior2463// :104:22: error: use of undefined value here causes illegal behavior
...@@ -2467,13 +2467,13 @@ const std = @import("std");...@@ -2467,13 +2467,13 @@ const std = @import("std");
2467// :104:22: error: use of undefined value here causes illegal behavior2467// :104:22: error: use of undefined value here causes illegal behavior
2468// :104:22: note: when computing vector element at index '1'2468// :104:22: note: when computing vector element at index '1'
2469// :104:22: error: use of undefined value here causes illegal behavior2469// :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'
2471// :104:22: error: use of undefined value here causes illegal behavior2471// :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'
2473// :104:22: error: use of undefined value here causes illegal behavior2473// :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'
2475// :104:22: error: use of undefined value here causes illegal behavior2475// :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'
2477// :107:30: error: use of undefined value here causes illegal behavior2477// :107:30: error: use of undefined value here causes illegal behavior
2478// :107:30: error: use of undefined value here causes illegal behavior2478// :107:30: error: use of undefined value here causes illegal behavior
2479// :107:30: error: use of undefined value here causes illegal behavior2479// :107:30: error: use of undefined value here causes illegal behavior
...@@ -2481,21 +2481,13 @@ const std = @import("std");...@@ -2481,21 +2481,13 @@ const std = @import("std");
2481// :107:30: error: use of undefined value here causes illegal behavior2481// :107:30: error: use of undefined value here causes illegal behavior
2482// :107:30: error: use of undefined value here causes illegal behavior2482// :107:30: error: use of undefined value here causes illegal behavior
2483// :107:30: error: use of undefined value here causes illegal behavior2483// :107:30: error: use of undefined value here causes illegal behavior
2484// :107:30: note: when computing vector element at index '1'
2485// :107:30: error: use of undefined value here causes illegal behavior2484// :107:30: error: use of undefined value here causes illegal behavior
2486// :107:30: note: when computing vector element at index '1'
2487// :107:30: error: use of undefined value here causes illegal behavior2485// :107:30: error: use of undefined value here causes illegal behavior
2488// :107:30: note: when computing vector element at index '1'
2489// :107:30: error: use of undefined value here causes illegal behavior2486// :107:30: error: use of undefined value here causes illegal behavior
2490// :107:30: note: when computing vector element at index '1'
2491// :107:30: error: use of undefined value here causes illegal behavior2487// :107:30: error: use of undefined value here causes illegal behavior
2492// :107:30: note: when computing vector element at index '0'
2493// :107:30: error: use of undefined value here causes illegal behavior2488// :107:30: error: use of undefined value here causes illegal behavior
2494// :107:30: note: when computing vector element at index '0'
2495// :107:30: error: use of undefined value here causes illegal behavior2489// :107:30: error: use of undefined value here causes illegal behavior
2496// :107:30: note: when computing vector element at index '0'
2497// :107:30: error: use of undefined value here causes illegal behavior2490// :107:30: error: use of undefined value here causes illegal behavior
2498// :107:30: note: when computing vector element at index '0'
2499// :107:30: error: use of undefined value here causes illegal behavior2491// :107:30: error: use of undefined value here causes illegal behavior
2500// :107:30: error: use of undefined value here causes illegal behavior2492// :107:30: error: use of undefined value here causes illegal behavior
2501// :107:30: error: use of undefined value here causes illegal behavior2493// :107:30: error: use of undefined value here causes illegal behavior
...@@ -2503,21 +2495,13 @@ const std = @import("std");...@@ -2503,21 +2495,13 @@ const std = @import("std");
2503// :107:30: error: use of undefined value here causes illegal behavior2495// :107:30: error: use of undefined value here causes illegal behavior
2504// :107:30: error: use of undefined value here causes illegal behavior2496// :107:30: error: use of undefined value here causes illegal behavior
2505// :107:30: error: use of undefined value here causes illegal behavior2497// :107:30: error: use of undefined value here causes illegal behavior
2506// :107:30: note: when computing vector element at index '1'
2507// :107:30: error: use of undefined value here causes illegal behavior2498// :107:30: error: use of undefined value here causes illegal behavior
2508// :107:30: note: when computing vector element at index '1'
2509// :107:30: error: use of undefined value here causes illegal behavior2499// :107:30: error: use of undefined value here causes illegal behavior
2510// :107:30: note: when computing vector element at index '1'
2511// :107:30: error: use of undefined value here causes illegal behavior2500// :107:30: error: use of undefined value here causes illegal behavior
2512// :107:30: note: when computing vector element at index '1'
2513// :107:30: error: use of undefined value here causes illegal behavior2501// :107:30: error: use of undefined value here causes illegal behavior
2514// :107:30: note: when computing vector element at index '0'
2515// :107:30: error: use of undefined value here causes illegal behavior2502// :107:30: error: use of undefined value here causes illegal behavior
2516// :107:30: note: when computing vector element at index '0'
2517// :107:30: error: use of undefined value here causes illegal behavior2503// :107:30: error: use of undefined value here causes illegal behavior
2518// :107:30: note: when computing vector element at index '0'
2519// :107:30: error: use of undefined value here causes illegal behavior2504// :107:30: error: use of undefined value here causes illegal behavior
2520// :107:30: note: when computing vector element at index '0'
2521// :107:30: error: use of undefined value here causes illegal behavior2505// :107:30: error: use of undefined value here causes illegal behavior
2522// :107:30: error: use of undefined value here causes illegal behavior2506// :107:30: error: use of undefined value here causes illegal behavior
2523// :107:30: error: use of undefined value here causes illegal behavior2507// :107:30: error: use of undefined value here causes illegal behavior
...@@ -2525,13 +2509,11 @@ const std = @import("std");...@@ -2525,13 +2509,11 @@ const std = @import("std");
2525// :107:30: error: use of undefined value here causes illegal behavior2509// :107:30: error: use of undefined value here causes illegal behavior
2526// :107:30: error: use of undefined value here causes illegal behavior2510// :107:30: error: use of undefined value here causes illegal behavior
2527// :107:30: error: use of undefined value here causes illegal behavior2511// :107:30: error: use of undefined value here causes illegal behavior
2528// :107:30: note: when computing vector element at index '1'
2529// :107:30: error: use of undefined value here causes illegal behavior2512// :107:30: error: use of undefined value here causes illegal behavior
2530// :107:30: note: when computing vector element at index '1'
2531// :107:30: error: use of undefined value here causes illegal behavior2513// :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'
2533// :107:30: error: use of undefined value here causes illegal behavior2515// :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'
2535// :107:30: error: use of undefined value here causes illegal behavior2517// :107:30: error: use of undefined value here causes illegal behavior
2536// :107:30: note: when computing vector element at index '0'2518// :107:30: note: when computing vector element at index '0'
2537// :107:30: error: use of undefined value here causes illegal behavior2519// :107:30: error: use of undefined value here causes illegal behavior
...@@ -2541,19 +2523,25 @@ const std = @import("std");...@@ -2541,19 +2523,25 @@ const std = @import("std");
2541// :107:30: error: use of undefined value here causes illegal behavior2523// :107:30: error: use of undefined value here causes illegal behavior
2542// :107:30: note: when computing vector element at index '0'2524// :107:30: note: when computing vector element at index '0'
2543// :107:30: error: use of undefined value here causes illegal behavior2525// :107:30: error: use of undefined value here causes illegal behavior
2526// :107:30: note: when computing vector element at index '0'
2544// :107:30: error: use of undefined value here causes illegal behavior2527// :107:30: error: use of undefined value here causes illegal behavior
2528// :107:30: note: when computing vector element at index '0'
2545// :107:30: error: use of undefined value here causes illegal behavior2529// :107:30: error: use of undefined value here causes illegal behavior
2530// :107:30: note: when computing vector element at index '0'
2546// :107:30: error: use of undefined value here causes illegal behavior2531// :107:30: error: use of undefined value here causes illegal behavior
2532// :107:30: note: when computing vector element at index '0'
2547// :107:30: error: use of undefined value here causes illegal behavior2533// :107:30: error: use of undefined value here causes illegal behavior
2534// :107:30: note: when computing vector element at index '0'
2548// :107:30: error: use of undefined value here causes illegal behavior2535// :107:30: error: use of undefined value here causes illegal behavior
2536// :107:30: note: when computing vector element at index '0'
2549// :107:30: error: use of undefined value here causes illegal behavior2537// :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'
2551// :107:30: error: use of undefined value here causes illegal behavior2539// :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'
2553// :107:30: error: use of undefined value here causes illegal behavior2541// :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'
2555// :107:30: error: use of undefined value here causes illegal behavior2543// :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'
2557// :107:30: error: use of undefined value here causes illegal behavior2545// :107:30: error: use of undefined value here causes illegal behavior
2558// :107:30: note: when computing vector element at index '0'2546// :107:30: note: when computing vector element at index '0'
2559// :107:30: error: use of undefined value here causes illegal behavior2547// :107:30: error: use of undefined value here causes illegal behavior
...@@ -2563,11 +2551,17 @@ const std = @import("std");...@@ -2563,11 +2551,17 @@ const std = @import("std");
2563// :107:30: error: use of undefined value here causes illegal behavior2551// :107:30: error: use of undefined value here causes illegal behavior
2564// :107:30: note: when computing vector element at index '0'2552// :107:30: note: when computing vector element at index '0'
2565// :107:30: error: use of undefined value here causes illegal behavior2553// :107:30: error: use of undefined value here causes illegal behavior
2554// :107:30: note: when computing vector element at index '0'
2566// :107:30: error: use of undefined value here causes illegal behavior2555// :107:30: error: use of undefined value here causes illegal behavior
2556// :107:30: note: when computing vector element at index '0'
2567// :107:30: error: use of undefined value here causes illegal behavior2557// :107:30: error: use of undefined value here causes illegal behavior
2558// :107:30: note: when computing vector element at index '0'
2568// :107:30: error: use of undefined value here causes illegal behavior2559// :107:30: error: use of undefined value here causes illegal behavior
2560// :107:30: note: when computing vector element at index '0'
2569// :107:30: error: use of undefined value here causes illegal behavior2561// :107:30: error: use of undefined value here causes illegal behavior
2562// :107:30: note: when computing vector element at index '1'
2570// :107:30: error: use of undefined value here causes illegal behavior2563// :107:30: error: use of undefined value here causes illegal behavior
2564// :107:30: note: when computing vector element at index '1'
2571// :107:30: error: use of undefined value here causes illegal behavior2565// :107:30: error: use of undefined value here causes illegal behavior
2572// :107:30: note: when computing vector element at index '1'2566// :107:30: note: when computing vector element at index '1'
2573// :107:30: error: use of undefined value here causes illegal behavior2567// :107:30: error: use of undefined value here causes illegal behavior
...@@ -2577,19 +2571,25 @@ const std = @import("std");...@@ -2577,19 +2571,25 @@ const std = @import("std");
2577// :107:30: error: use of undefined value here causes illegal behavior2571// :107:30: error: use of undefined value here causes illegal behavior
2578// :107:30: note: when computing vector element at index '1'2572// :107:30: note: when computing vector element at index '1'
2579// :107:30: error: use of undefined value here causes illegal behavior2573// :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'
2581// :107:30: error: use of undefined value here causes illegal behavior2575// :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'
2583// :107:30: error: use of undefined value here causes illegal behavior2577// :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'
2585// :107:30: error: use of undefined value here causes illegal behavior2579// :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'
2587// :107:30: error: use of undefined value here causes illegal behavior2581// :107:30: error: use of undefined value here causes illegal behavior
2582// :107:30: note: when computing vector element at index '1'
2588// :107:30: error: use of undefined value here causes illegal behavior2583// :107:30: error: use of undefined value here causes illegal behavior
2584// :107:30: note: when computing vector element at index '1'
2589// :107:30: error: use of undefined value here causes illegal behavior2585// :107:30: error: use of undefined value here causes illegal behavior
2586// :107:30: note: when computing vector element at index '1'
2590// :107:30: error: use of undefined value here causes illegal behavior2587// :107:30: error: use of undefined value here causes illegal behavior
2588// :107:30: note: when computing vector element at index '1'
2591// :107:30: error: use of undefined value here causes illegal behavior2589// :107:30: error: use of undefined value here causes illegal behavior
2590// :107:30: note: when computing vector element at index '1'
2592// :107:30: error: use of undefined value here causes illegal behavior2591// :107:30: error: use of undefined value here causes illegal behavior
2592// :107:30: note: when computing vector element at index '1'
2593// :107:30: error: use of undefined value here causes illegal behavior2593// :107:30: error: use of undefined value here causes illegal behavior
2594// :107:30: note: when computing vector element at index '1'2594// :107:30: note: when computing vector element at index '1'
2595// :107:30: error: use of undefined value here causes illegal behavior2595// :107:30: error: use of undefined value here causes illegal behavior
...@@ -2599,13 +2599,13 @@ const std = @import("std");...@@ -2599,13 +2599,13 @@ const std = @import("std");
2599// :107:30: error: use of undefined value here causes illegal behavior2599// :107:30: error: use of undefined value here causes illegal behavior
2600// :107:30: note: when computing vector element at index '1'2600// :107:30: note: when computing vector element at index '1'
2601// :107:30: error: use of undefined value here causes illegal behavior2601// :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'
2603// :107:30: error: use of undefined value here causes illegal behavior2603// :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'
2605// :107:30: error: use of undefined value here causes illegal behavior2605// :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'
2607// :107:30: error: use of undefined value here causes illegal behavior2607// :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'
2609// :110:37: error: use of undefined value here causes illegal behavior2609// :110:37: error: use of undefined value here causes illegal behavior
2610// :110:37: error: use of undefined value here causes illegal behavior2610// :110:37: error: use of undefined value here causes illegal behavior
2611// :110:37: error: use of undefined value here causes illegal behavior2611// :110:37: error: use of undefined value here causes illegal behavior
...@@ -2613,21 +2613,13 @@ const std = @import("std");...@@ -2613,21 +2613,13 @@ const std = @import("std");
2613// :110:37: error: use of undefined value here causes illegal behavior2613// :110:37: error: use of undefined value here causes illegal behavior
2614// :110:37: error: use of undefined value here causes illegal behavior2614// :110:37: error: use of undefined value here causes illegal behavior
2615// :110:37: error: use of undefined value here causes illegal behavior2615// :110:37: error: use of undefined value here causes illegal behavior
2616// :110:37: note: when computing vector element at index '1'
2617// :110:37: error: use of undefined value here causes illegal behavior2616// :110:37: error: use of undefined value here causes illegal behavior
2618// :110:37: note: when computing vector element at index '1'
2619// :110:37: error: use of undefined value here causes illegal behavior2617// :110:37: error: use of undefined value here causes illegal behavior
2620// :110:37: note: when computing vector element at index '1'
2621// :110:37: error: use of undefined value here causes illegal behavior2618// :110:37: error: use of undefined value here causes illegal behavior
2622// :110:37: note: when computing vector element at index '1'
2623// :110:37: error: use of undefined value here causes illegal behavior2619// :110:37: error: use of undefined value here causes illegal behavior
2624// :110:37: note: when computing vector element at index '0'
2625// :110:37: error: use of undefined value here causes illegal behavior2620// :110:37: error: use of undefined value here causes illegal behavior
2626// :110:37: note: when computing vector element at index '0'
2627// :110:37: error: use of undefined value here causes illegal behavior2621// :110:37: error: use of undefined value here causes illegal behavior
2628// :110:37: note: when computing vector element at index '0'
2629// :110:37: error: use of undefined value here causes illegal behavior2622// :110:37: error: use of undefined value here causes illegal behavior
2630// :110:37: note: when computing vector element at index '0'
2631// :110:37: error: use of undefined value here causes illegal behavior2623// :110:37: error: use of undefined value here causes illegal behavior
2632// :110:37: error: use of undefined value here causes illegal behavior2624// :110:37: error: use of undefined value here causes illegal behavior
2633// :110:37: error: use of undefined value here causes illegal behavior2625// :110:37: error: use of undefined value here causes illegal behavior
...@@ -2635,21 +2627,13 @@ const std = @import("std");...@@ -2635,21 +2627,13 @@ const std = @import("std");
2635// :110:37: error: use of undefined value here causes illegal behavior2627// :110:37: error: use of undefined value here causes illegal behavior
2636// :110:37: error: use of undefined value here causes illegal behavior2628// :110:37: error: use of undefined value here causes illegal behavior
2637// :110:37: error: use of undefined value here causes illegal behavior2629// :110:37: error: use of undefined value here causes illegal behavior
2638// :110:37: note: when computing vector element at index '1'
2639// :110:37: error: use of undefined value here causes illegal behavior2630// :110:37: error: use of undefined value here causes illegal behavior
2640// :110:37: note: when computing vector element at index '1'
2641// :110:37: error: use of undefined value here causes illegal behavior2631// :110:37: error: use of undefined value here causes illegal behavior
2642// :110:37: note: when computing vector element at index '1'
2643// :110:37: error: use of undefined value here causes illegal behavior2632// :110:37: error: use of undefined value here causes illegal behavior
2644// :110:37: note: when computing vector element at index '1'
2645// :110:37: error: use of undefined value here causes illegal behavior2633// :110:37: error: use of undefined value here causes illegal behavior
2646// :110:37: note: when computing vector element at index '0'
2647// :110:37: error: use of undefined value here causes illegal behavior2634// :110:37: error: use of undefined value here causes illegal behavior
2648// :110:37: note: when computing vector element at index '0'
2649// :110:37: error: use of undefined value here causes illegal behavior2635// :110:37: error: use of undefined value here causes illegal behavior
2650// :110:37: note: when computing vector element at index '0'
2651// :110:37: error: use of undefined value here causes illegal behavior2636// :110:37: error: use of undefined value here causes illegal behavior
2652// :110:37: note: when computing vector element at index '0'
2653// :110:37: error: use of undefined value here causes illegal behavior2637// :110:37: error: use of undefined value here causes illegal behavior
2654// :110:37: error: use of undefined value here causes illegal behavior2638// :110:37: error: use of undefined value here causes illegal behavior
2655// :110:37: error: use of undefined value here causes illegal behavior2639// :110:37: error: use of undefined value here causes illegal behavior
...@@ -2657,13 +2641,11 @@ const std = @import("std");...@@ -2657,13 +2641,11 @@ const std = @import("std");
2657// :110:37: error: use of undefined value here causes illegal behavior2641// :110:37: error: use of undefined value here causes illegal behavior
2658// :110:37: error: use of undefined value here causes illegal behavior2642// :110:37: error: use of undefined value here causes illegal behavior
2659// :110:37: error: use of undefined value here causes illegal behavior2643// :110:37: error: use of undefined value here causes illegal behavior
2660// :110:37: note: when computing vector element at index '1'
2661// :110:37: error: use of undefined value here causes illegal behavior2644// :110:37: error: use of undefined value here causes illegal behavior
2662// :110:37: note: when computing vector element at index '1'
2663// :110:37: error: use of undefined value here causes illegal behavior2645// :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'
2665// :110:37: error: use of undefined value here causes illegal behavior2647// :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'
2667// :110:37: error: use of undefined value here causes illegal behavior2649// :110:37: error: use of undefined value here causes illegal behavior
2668// :110:37: note: when computing vector element at index '0'2650// :110:37: note: when computing vector element at index '0'
2669// :110:37: error: use of undefined value here causes illegal behavior2651// :110:37: error: use of undefined value here causes illegal behavior
...@@ -2673,19 +2655,25 @@ const std = @import("std");...@@ -2673,19 +2655,25 @@ const std = @import("std");
2673// :110:37: error: use of undefined value here causes illegal behavior2655// :110:37: error: use of undefined value here causes illegal behavior
2674// :110:37: note: when computing vector element at index '0'2656// :110:37: note: when computing vector element at index '0'
2675// :110:37: error: use of undefined value here causes illegal behavior2657// :110:37: error: use of undefined value here causes illegal behavior
2658// :110:37: note: when computing vector element at index '0'
2676// :110:37: error: use of undefined value here causes illegal behavior2659// :110:37: error: use of undefined value here causes illegal behavior
2660// :110:37: note: when computing vector element at index '0'
2677// :110:37: error: use of undefined value here causes illegal behavior2661// :110:37: error: use of undefined value here causes illegal behavior
2662// :110:37: note: when computing vector element at index '0'
2678// :110:37: error: use of undefined value here causes illegal behavior2663// :110:37: error: use of undefined value here causes illegal behavior
2664// :110:37: note: when computing vector element at index '0'
2679// :110:37: error: use of undefined value here causes illegal behavior2665// :110:37: error: use of undefined value here causes illegal behavior
2666// :110:37: note: when computing vector element at index '0'
2680// :110:37: error: use of undefined value here causes illegal behavior2667// :110:37: error: use of undefined value here causes illegal behavior
2668// :110:37: note: when computing vector element at index '0'
2681// :110:37: error: use of undefined value here causes illegal behavior2669// :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'
2683// :110:37: error: use of undefined value here causes illegal behavior2671// :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'
2685// :110:37: error: use of undefined value here causes illegal behavior2673// :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'
2687// :110:37: error: use of undefined value here causes illegal behavior2675// :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'
2689// :110:37: error: use of undefined value here causes illegal behavior2677// :110:37: error: use of undefined value here causes illegal behavior
2690// :110:37: note: when computing vector element at index '0'2678// :110:37: note: when computing vector element at index '0'
2691// :110:37: error: use of undefined value here causes illegal behavior2679// :110:37: error: use of undefined value here causes illegal behavior
...@@ -2695,11 +2683,17 @@ const std = @import("std");...@@ -2695,11 +2683,17 @@ const std = @import("std");
2695// :110:37: error: use of undefined value here causes illegal behavior2683// :110:37: error: use of undefined value here causes illegal behavior
2696// :110:37: note: when computing vector element at index '0'2684// :110:37: note: when computing vector element at index '0'
2697// :110:37: error: use of undefined value here causes illegal behavior2685// :110:37: error: use of undefined value here causes illegal behavior
2686// :110:37: note: when computing vector element at index '0'
2698// :110:37: error: use of undefined value here causes illegal behavior2687// :110:37: error: use of undefined value here causes illegal behavior
2688// :110:37: note: when computing vector element at index '0'
2699// :110:37: error: use of undefined value here causes illegal behavior2689// :110:37: error: use of undefined value here causes illegal behavior
2690// :110:37: note: when computing vector element at index '0'
2700// :110:37: error: use of undefined value here causes illegal behavior2691// :110:37: error: use of undefined value here causes illegal behavior
2692// :110:37: note: when computing vector element at index '0'
2701// :110:37: error: use of undefined value here causes illegal behavior2693// :110:37: error: use of undefined value here causes illegal behavior
2694// :110:37: note: when computing vector element at index '1'
2702// :110:37: error: use of undefined value here causes illegal behavior2695// :110:37: error: use of undefined value here causes illegal behavior
2696// :110:37: note: when computing vector element at index '1'
2703// :110:37: error: use of undefined value here causes illegal behavior2697// :110:37: error: use of undefined value here causes illegal behavior
2704// :110:37: note: when computing vector element at index '1'2698// :110:37: note: when computing vector element at index '1'
2705// :110:37: error: use of undefined value here causes illegal behavior2699// :110:37: error: use of undefined value here causes illegal behavior
...@@ -2709,19 +2703,25 @@ const std = @import("std");...@@ -2709,19 +2703,25 @@ const std = @import("std");
2709// :110:37: error: use of undefined value here causes illegal behavior2703// :110:37: error: use of undefined value here causes illegal behavior
2710// :110:37: note: when computing vector element at index '1'2704// :110:37: note: when computing vector element at index '1'
2711// :110:37: error: use of undefined value here causes illegal behavior2705// :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'
2713// :110:37: error: use of undefined value here causes illegal behavior2707// :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'
2715// :110:37: error: use of undefined value here causes illegal behavior2709// :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'
2717// :110:37: error: use of undefined value here causes illegal behavior2711// :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'
2719// :110:37: error: use of undefined value here causes illegal behavior2713// :110:37: error: use of undefined value here causes illegal behavior
2714// :110:37: note: when computing vector element at index '1'
2720// :110:37: error: use of undefined value here causes illegal behavior2715// :110:37: error: use of undefined value here causes illegal behavior
2716// :110:37: note: when computing vector element at index '1'
2721// :110:37: error: use of undefined value here causes illegal behavior2717// :110:37: error: use of undefined value here causes illegal behavior
2718// :110:37: note: when computing vector element at index '1'
2722// :110:37: error: use of undefined value here causes illegal behavior2719// :110:37: error: use of undefined value here causes illegal behavior
2720// :110:37: note: when computing vector element at index '1'
2723// :110:37: error: use of undefined value here causes illegal behavior2721// :110:37: error: use of undefined value here causes illegal behavior
2722// :110:37: note: when computing vector element at index '1'
2724// :110:37: error: use of undefined value here causes illegal behavior2723// :110:37: error: use of undefined value here causes illegal behavior
2724// :110:37: note: when computing vector element at index '1'
2725// :110:37: error: use of undefined value here causes illegal behavior2725// :110:37: error: use of undefined value here causes illegal behavior
2726// :110:37: note: when computing vector element at index '1'2726// :110:37: note: when computing vector element at index '1'
2727// :110:37: error: use of undefined value here causes illegal behavior2727// :110:37: error: use of undefined value here causes illegal behavior
...@@ -2731,13 +2731,13 @@ const std = @import("std");...@@ -2731,13 +2731,13 @@ const std = @import("std");
2731// :110:37: error: use of undefined value here causes illegal behavior2731// :110:37: error: use of undefined value here causes illegal behavior
2732// :110:37: note: when computing vector element at index '1'2732// :110:37: note: when computing vector element at index '1'
2733// :110:37: error: use of undefined value here causes illegal behavior2733// :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'
2735// :110:37: error: use of undefined value here causes illegal behavior2735// :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'
2737// :110:37: error: use of undefined value here causes illegal behavior2737// :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'
2739// :110:37: error: use of undefined value here causes illegal behavior2739// :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'
2741// :113:22: error: use of undefined value here causes illegal behavior2741// :113:22: error: use of undefined value here causes illegal behavior
2742// :113:22: error: use of undefined value here causes illegal behavior2742// :113:22: error: use of undefined value here causes illegal behavior
2743// :113:22: error: use of undefined value here causes illegal behavior2743// :113:22: error: use of undefined value here causes illegal behavior
...@@ -2745,21 +2745,13 @@ const std = @import("std");...@@ -2745,21 +2745,13 @@ const std = @import("std");
2745// :113:22: error: use of undefined value here causes illegal behavior2745// :113:22: error: use of undefined value here causes illegal behavior
2746// :113:22: error: use of undefined value here causes illegal behavior2746// :113:22: error: use of undefined value here causes illegal behavior
2747// :113:22: error: use of undefined value here causes illegal behavior2747// :113:22: error: use of undefined value here causes illegal behavior
2748// :113:22: note: when computing vector element at index '1'
2749// :113:22: error: use of undefined value here causes illegal behavior2748// :113:22: error: use of undefined value here causes illegal behavior
2750// :113:22: note: when computing vector element at index '1'
2751// :113:22: error: use of undefined value here causes illegal behavior2749// :113:22: error: use of undefined value here causes illegal behavior
2752// :113:22: note: when computing vector element at index '1'
2753// :113:22: error: use of undefined value here causes illegal behavior2750// :113:22: error: use of undefined value here causes illegal behavior
2754// :113:22: note: when computing vector element at index '1'
2755// :113:22: error: use of undefined value here causes illegal behavior2751// :113:22: error: use of undefined value here causes illegal behavior
2756// :113:22: note: when computing vector element at index '0'
2757// :113:22: error: use of undefined value here causes illegal behavior2752// :113:22: error: use of undefined value here causes illegal behavior
2758// :113:22: note: when computing vector element at index '0'
2759// :113:22: error: use of undefined value here causes illegal behavior2753// :113:22: error: use of undefined value here causes illegal behavior
2760// :113:22: note: when computing vector element at index '0'
2761// :113:22: error: use of undefined value here causes illegal behavior2754// :113:22: error: use of undefined value here causes illegal behavior
2762// :113:22: note: when computing vector element at index '0'
2763// :113:22: error: use of undefined value here causes illegal behavior2755// :113:22: error: use of undefined value here causes illegal behavior
2764// :113:22: error: use of undefined value here causes illegal behavior2756// :113:22: error: use of undefined value here causes illegal behavior
2765// :113:22: error: use of undefined value here causes illegal behavior2757// :113:22: error: use of undefined value here causes illegal behavior
...@@ -2767,21 +2759,13 @@ const std = @import("std");...@@ -2767,21 +2759,13 @@ const std = @import("std");
2767// :113:22: error: use of undefined value here causes illegal behavior2759// :113:22: error: use of undefined value here causes illegal behavior
2768// :113:22: error: use of undefined value here causes illegal behavior2760// :113:22: error: use of undefined value here causes illegal behavior
2769// :113:22: error: use of undefined value here causes illegal behavior2761// :113:22: error: use of undefined value here causes illegal behavior
2770// :113:22: note: when computing vector element at index '1'
2771// :113:22: error: use of undefined value here causes illegal behavior2762// :113:22: error: use of undefined value here causes illegal behavior
2772// :113:22: note: when computing vector element at index '1'
2773// :113:22: error: use of undefined value here causes illegal behavior2763// :113:22: error: use of undefined value here causes illegal behavior
2774// :113:22: note: when computing vector element at index '1'
2775// :113:22: error: use of undefined value here causes illegal behavior2764// :113:22: error: use of undefined value here causes illegal behavior
2776// :113:22: note: when computing vector element at index '1'
2777// :113:22: error: use of undefined value here causes illegal behavior2765// :113:22: error: use of undefined value here causes illegal behavior
2778// :113:22: note: when computing vector element at index '0'
2779// :113:22: error: use of undefined value here causes illegal behavior2766// :113:22: error: use of undefined value here causes illegal behavior
2780// :113:22: note: when computing vector element at index '0'
2781// :113:22: error: use of undefined value here causes illegal behavior2767// :113:22: error: use of undefined value here causes illegal behavior
2782// :113:22: note: when computing vector element at index '0'
2783// :113:22: error: use of undefined value here causes illegal behavior2768// :113:22: error: use of undefined value here causes illegal behavior
2784// :113:22: note: when computing vector element at index '0'
2785// :113:22: error: use of undefined value here causes illegal behavior2769// :113:22: error: use of undefined value here causes illegal behavior
2786// :113:22: error: use of undefined value here causes illegal behavior2770// :113:22: error: use of undefined value here causes illegal behavior
2787// :113:22: error: use of undefined value here causes illegal behavior2771// :113:22: error: use of undefined value here causes illegal behavior
...@@ -2789,13 +2773,11 @@ const std = @import("std");...@@ -2789,13 +2773,11 @@ const std = @import("std");
2789// :113:22: error: use of undefined value here causes illegal behavior2773// :113:22: error: use of undefined value here causes illegal behavior
2790// :113:22: error: use of undefined value here causes illegal behavior2774// :113:22: error: use of undefined value here causes illegal behavior
2791// :113:22: error: use of undefined value here causes illegal behavior2775// :113:22: error: use of undefined value here causes illegal behavior
2792// :113:22: note: when computing vector element at index '1'
2793// :113:22: error: use of undefined value here causes illegal behavior2776// :113:22: error: use of undefined value here causes illegal behavior
2794// :113:22: note: when computing vector element at index '1'
2795// :113:22: error: use of undefined value here causes illegal behavior2777// :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'
2797// :113:22: error: use of undefined value here causes illegal behavior2779// :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'
2799// :113:22: error: use of undefined value here causes illegal behavior2781// :113:22: error: use of undefined value here causes illegal behavior
2800// :113:22: note: when computing vector element at index '0'2782// :113:22: note: when computing vector element at index '0'
2801// :113:22: error: use of undefined value here causes illegal behavior2783// :113:22: error: use of undefined value here causes illegal behavior
...@@ -2805,19 +2787,25 @@ const std = @import("std");...@@ -2805,19 +2787,25 @@ const std = @import("std");
2805// :113:22: error: use of undefined value here causes illegal behavior2787// :113:22: error: use of undefined value here causes illegal behavior
2806// :113:22: note: when computing vector element at index '0'2788// :113:22: note: when computing vector element at index '0'
2807// :113:22: error: use of undefined value here causes illegal behavior2789// :113:22: error: use of undefined value here causes illegal behavior
2790// :113:22: note: when computing vector element at index '0'
2808// :113:22: error: use of undefined value here causes illegal behavior2791// :113:22: error: use of undefined value here causes illegal behavior
2792// :113:22: note: when computing vector element at index '0'
2809// :113:22: error: use of undefined value here causes illegal behavior2793// :113:22: error: use of undefined value here causes illegal behavior
2794// :113:22: note: when computing vector element at index '0'
2810// :113:22: error: use of undefined value here causes illegal behavior2795// :113:22: error: use of undefined value here causes illegal behavior
2796// :113:22: note: when computing vector element at index '0'
2811// :113:22: error: use of undefined value here causes illegal behavior2797// :113:22: error: use of undefined value here causes illegal behavior
2798// :113:22: note: when computing vector element at index '0'
2812// :113:22: error: use of undefined value here causes illegal behavior2799// :113:22: error: use of undefined value here causes illegal behavior
2800// :113:22: note: when computing vector element at index '0'
2813// :113:22: error: use of undefined value here causes illegal behavior2801// :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'
2815// :113:22: error: use of undefined value here causes illegal behavior2803// :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'
2817// :113:22: error: use of undefined value here causes illegal behavior2805// :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'
2819// :113:22: error: use of undefined value here causes illegal behavior2807// :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'
2821// :113:22: error: use of undefined value here causes illegal behavior2809// :113:22: error: use of undefined value here causes illegal behavior
2822// :113:22: note: when computing vector element at index '0'2810// :113:22: note: when computing vector element at index '0'
2823// :113:22: error: use of undefined value here causes illegal behavior2811// :113:22: error: use of undefined value here causes illegal behavior
...@@ -2827,11 +2815,17 @@ const std = @import("std");...@@ -2827,11 +2815,17 @@ const std = @import("std");
2827// :113:22: error: use of undefined value here causes illegal behavior2815// :113:22: error: use of undefined value here causes illegal behavior
2828// :113:22: note: when computing vector element at index '0'2816// :113:22: note: when computing vector element at index '0'
2829// :113:22: error: use of undefined value here causes illegal behavior2817// :113:22: error: use of undefined value here causes illegal behavior
2818// :113:22: note: when computing vector element at index '0'
2830// :113:22: error: use of undefined value here causes illegal behavior2819// :113:22: error: use of undefined value here causes illegal behavior
2820// :113:22: note: when computing vector element at index '0'
2831// :113:22: error: use of undefined value here causes illegal behavior2821// :113:22: error: use of undefined value here causes illegal behavior
2822// :113:22: note: when computing vector element at index '0'
2832// :113:22: error: use of undefined value here causes illegal behavior2823// :113:22: error: use of undefined value here causes illegal behavior
2824// :113:22: note: when computing vector element at index '0'
2833// :113:22: error: use of undefined value here causes illegal behavior2825// :113:22: error: use of undefined value here causes illegal behavior
2826// :113:22: note: when computing vector element at index '1'
2834// :113:22: error: use of undefined value here causes illegal behavior2827// :113:22: error: use of undefined value here causes illegal behavior
2828// :113:22: note: when computing vector element at index '1'
2835// :113:22: error: use of undefined value here causes illegal behavior2829// :113:22: error: use of undefined value here causes illegal behavior
2836// :113:22: note: when computing vector element at index '1'2830// :113:22: note: when computing vector element at index '1'
2837// :113:22: error: use of undefined value here causes illegal behavior2831// :113:22: error: use of undefined value here causes illegal behavior
...@@ -2841,19 +2835,25 @@ const std = @import("std");...@@ -2841,19 +2835,25 @@ const std = @import("std");
2841// :113:22: error: use of undefined value here causes illegal behavior2835// :113:22: error: use of undefined value here causes illegal behavior
2842// :113:22: note: when computing vector element at index '1'2836// :113:22: note: when computing vector element at index '1'
2843// :113:22: error: use of undefined value here causes illegal behavior2837// :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'
2845// :113:22: error: use of undefined value here causes illegal behavior2839// :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'
2847// :113:22: error: use of undefined value here causes illegal behavior2841// :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'
2849// :113:22: error: use of undefined value here causes illegal behavior2843// :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'
2851// :113:22: error: use of undefined value here causes illegal behavior2845// :113:22: error: use of undefined value here causes illegal behavior
2846// :113:22: note: when computing vector element at index '1'
2852// :113:22: error: use of undefined value here causes illegal behavior2847// :113:22: error: use of undefined value here causes illegal behavior
2848// :113:22: note: when computing vector element at index '1'
2853// :113:22: error: use of undefined value here causes illegal behavior2849// :113:22: error: use of undefined value here causes illegal behavior
2850// :113:22: note: when computing vector element at index '1'
2854// :113:22: error: use of undefined value here causes illegal behavior2851// :113:22: error: use of undefined value here causes illegal behavior
2852// :113:22: note: when computing vector element at index '1'
2855// :113:22: error: use of undefined value here causes illegal behavior2853// :113:22: error: use of undefined value here causes illegal behavior
2854// :113:22: note: when computing vector element at index '1'
2856// :113:22: error: use of undefined value here causes illegal behavior2855// :113:22: error: use of undefined value here causes illegal behavior
2856// :113:22: note: when computing vector element at index '1'
2857// :113:22: error: use of undefined value here causes illegal behavior2857// :113:22: error: use of undefined value here causes illegal behavior
2858// :113:22: note: when computing vector element at index '1'2858// :113:22: note: when computing vector element at index '1'
2859// :113:22: error: use of undefined value here causes illegal behavior2859// :113:22: error: use of undefined value here causes illegal behavior
...@@ -2863,13 +2863,13 @@ const std = @import("std");...@@ -2863,13 +2863,13 @@ const std = @import("std");
2863// :113:22: error: use of undefined value here causes illegal behavior2863// :113:22: error: use of undefined value here causes illegal behavior
2864// :113:22: note: when computing vector element at index '1'2864// :113:22: note: when computing vector element at index '1'
2865// :113:22: error: use of undefined value here causes illegal behavior2865// :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'
2867// :113:22: error: use of undefined value here causes illegal behavior2867// :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'
2869// :113:22: error: use of undefined value here causes illegal behavior2869// :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'
2871// :113:22: error: use of undefined value here causes illegal behavior2871// :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'
2873// :116:30: error: use of undefined value here causes illegal behavior2873// :116:30: error: use of undefined value here causes illegal behavior
2874// :116:30: error: use of undefined value here causes illegal behavior2874// :116:30: error: use of undefined value here causes illegal behavior
2875// :116:30: error: use of undefined value here causes illegal behavior2875// :116:30: error: use of undefined value here causes illegal behavior
...@@ -2877,21 +2877,13 @@ const std = @import("std");...@@ -2877,21 +2877,13 @@ const std = @import("std");
2877// :116:30: error: use of undefined value here causes illegal behavior2877// :116:30: error: use of undefined value here causes illegal behavior
2878// :116:30: error: use of undefined value here causes illegal behavior2878// :116:30: error: use of undefined value here causes illegal behavior
2879// :116:30: error: use of undefined value here causes illegal behavior2879// :116:30: error: use of undefined value here causes illegal behavior
2880// :116:30: note: when computing vector element at index '1'
2881// :116:30: error: use of undefined value here causes illegal behavior2880// :116:30: error: use of undefined value here causes illegal behavior
2882// :116:30: note: when computing vector element at index '1'
2883// :116:30: error: use of undefined value here causes illegal behavior2881// :116:30: error: use of undefined value here causes illegal behavior
2884// :116:30: note: when computing vector element at index '1'
2885// :116:30: error: use of undefined value here causes illegal behavior2882// :116:30: error: use of undefined value here causes illegal behavior
2886// :116:30: note: when computing vector element at index '1'
2887// :116:30: error: use of undefined value here causes illegal behavior2883// :116:30: error: use of undefined value here causes illegal behavior
2888// :116:30: note: when computing vector element at index '0'
2889// :116:30: error: use of undefined value here causes illegal behavior2884// :116:30: error: use of undefined value here causes illegal behavior
2890// :116:30: note: when computing vector element at index '0'
2891// :116:30: error: use of undefined value here causes illegal behavior2885// :116:30: error: use of undefined value here causes illegal behavior
2892// :116:30: note: when computing vector element at index '0'
2893// :116:30: error: use of undefined value here causes illegal behavior2886// :116:30: error: use of undefined value here causes illegal behavior
2894// :116:30: note: when computing vector element at index '0'
2895// :116:30: error: use of undefined value here causes illegal behavior2887// :116:30: error: use of undefined value here causes illegal behavior
2896// :116:30: error: use of undefined value here causes illegal behavior2888// :116:30: error: use of undefined value here causes illegal behavior
2897// :116:30: error: use of undefined value here causes illegal behavior2889// :116:30: error: use of undefined value here causes illegal behavior
...@@ -2899,21 +2891,13 @@ const std = @import("std");...@@ -2899,21 +2891,13 @@ const std = @import("std");
2899// :116:30: error: use of undefined value here causes illegal behavior2891// :116:30: error: use of undefined value here causes illegal behavior
2900// :116:30: error: use of undefined value here causes illegal behavior2892// :116:30: error: use of undefined value here causes illegal behavior
2901// :116:30: error: use of undefined value here causes illegal behavior2893// :116:30: error: use of undefined value here causes illegal behavior
2902// :116:30: note: when computing vector element at index '1'
2903// :116:30: error: use of undefined value here causes illegal behavior2894// :116:30: error: use of undefined value here causes illegal behavior
2904// :116:30: note: when computing vector element at index '1'
2905// :116:30: error: use of undefined value here causes illegal behavior2895// :116:30: error: use of undefined value here causes illegal behavior
2906// :116:30: note: when computing vector element at index '1'
2907// :116:30: error: use of undefined value here causes illegal behavior2896// :116:30: error: use of undefined value here causes illegal behavior
2908// :116:30: note: when computing vector element at index '1'
2909// :116:30: error: use of undefined value here causes illegal behavior2897// :116:30: error: use of undefined value here causes illegal behavior
2910// :116:30: note: when computing vector element at index '0'
2911// :116:30: error: use of undefined value here causes illegal behavior2898// :116:30: error: use of undefined value here causes illegal behavior
2912// :116:30: note: when computing vector element at index '0'
2913// :116:30: error: use of undefined value here causes illegal behavior2899// :116:30: error: use of undefined value here causes illegal behavior
2914// :116:30: note: when computing vector element at index '0'
2915// :116:30: error: use of undefined value here causes illegal behavior2900// :116:30: error: use of undefined value here causes illegal behavior
2916// :116:30: note: when computing vector element at index '0'
2917// :116:30: error: use of undefined value here causes illegal behavior2901// :116:30: error: use of undefined value here causes illegal behavior
2918// :116:30: error: use of undefined value here causes illegal behavior2902// :116:30: error: use of undefined value here causes illegal behavior
2919// :116:30: error: use of undefined value here causes illegal behavior2903// :116:30: error: use of undefined value here causes illegal behavior
...@@ -2921,13 +2905,11 @@ const std = @import("std");...@@ -2921,13 +2905,11 @@ const std = @import("std");
2921// :116:30: error: use of undefined value here causes illegal behavior2905// :116:30: error: use of undefined value here causes illegal behavior
2922// :116:30: error: use of undefined value here causes illegal behavior2906// :116:30: error: use of undefined value here causes illegal behavior
2923// :116:30: error: use of undefined value here causes illegal behavior2907// :116:30: error: use of undefined value here causes illegal behavior
2924// :116:30: note: when computing vector element at index '1'
2925// :116:30: error: use of undefined value here causes illegal behavior2908// :116:30: error: use of undefined value here causes illegal behavior
2926// :116:30: note: when computing vector element at index '1'
2927// :116:30: error: use of undefined value here causes illegal behavior2909// :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'
2929// :116:30: error: use of undefined value here causes illegal behavior2911// :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'
2931// :116:30: error: use of undefined value here causes illegal behavior2913// :116:30: error: use of undefined value here causes illegal behavior
2932// :116:30: note: when computing vector element at index '0'2914// :116:30: note: when computing vector element at index '0'
2933// :116:30: error: use of undefined value here causes illegal behavior2915// :116:30: error: use of undefined value here causes illegal behavior
...@@ -2937,19 +2919,25 @@ const std = @import("std");...@@ -2937,19 +2919,25 @@ const std = @import("std");
2937// :116:30: error: use of undefined value here causes illegal behavior2919// :116:30: error: use of undefined value here causes illegal behavior
2938// :116:30: note: when computing vector element at index '0'2920// :116:30: note: when computing vector element at index '0'
2939// :116:30: error: use of undefined value here causes illegal behavior2921// :116:30: error: use of undefined value here causes illegal behavior
2922// :116:30: note: when computing vector element at index '0'
2940// :116:30: error: use of undefined value here causes illegal behavior2923// :116:30: error: use of undefined value here causes illegal behavior
2924// :116:30: note: when computing vector element at index '0'
2941// :116:30: error: use of undefined value here causes illegal behavior2925// :116:30: error: use of undefined value here causes illegal behavior
2926// :116:30: note: when computing vector element at index '0'
2942// :116:30: error: use of undefined value here causes illegal behavior2927// :116:30: error: use of undefined value here causes illegal behavior
2928// :116:30: note: when computing vector element at index '0'
2943// :116:30: error: use of undefined value here causes illegal behavior2929// :116:30: error: use of undefined value here causes illegal behavior
2930// :116:30: note: when computing vector element at index '0'
2944// :116:30: error: use of undefined value here causes illegal behavior2931// :116:30: error: use of undefined value here causes illegal behavior
2932// :116:30: note: when computing vector element at index '0'
2945// :116:30: error: use of undefined value here causes illegal behavior2933// :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'
2947// :116:30: error: use of undefined value here causes illegal behavior2935// :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'
2949// :116:30: error: use of undefined value here causes illegal behavior2937// :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'
2951// :116:30: error: use of undefined value here causes illegal behavior2939// :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'
2953// :116:30: error: use of undefined value here causes illegal behavior2941// :116:30: error: use of undefined value here causes illegal behavior
2954// :116:30: note: when computing vector element at index '0'2942// :116:30: note: when computing vector element at index '0'
2955// :116:30: error: use of undefined value here causes illegal behavior2943// :116:30: error: use of undefined value here causes illegal behavior
...@@ -2959,11 +2947,17 @@ const std = @import("std");...@@ -2959,11 +2947,17 @@ const std = @import("std");
2959// :116:30: error: use of undefined value here causes illegal behavior2947// :116:30: error: use of undefined value here causes illegal behavior
2960// :116:30: note: when computing vector element at index '0'2948// :116:30: note: when computing vector element at index '0'
2961// :116:30: error: use of undefined value here causes illegal behavior2949// :116:30: error: use of undefined value here causes illegal behavior
2950// :116:30: note: when computing vector element at index '0'
2962// :116:30: error: use of undefined value here causes illegal behavior2951// :116:30: error: use of undefined value here causes illegal behavior
2952// :116:30: note: when computing vector element at index '0'
2963// :116:30: error: use of undefined value here causes illegal behavior2953// :116:30: error: use of undefined value here causes illegal behavior
2954// :116:30: note: when computing vector element at index '0'
2964// :116:30: error: use of undefined value here causes illegal behavior2955// :116:30: error: use of undefined value here causes illegal behavior
2956// :116:30: note: when computing vector element at index '0'
2965// :116:30: error: use of undefined value here causes illegal behavior2957// :116:30: error: use of undefined value here causes illegal behavior
2958// :116:30: note: when computing vector element at index '1'
2966// :116:30: error: use of undefined value here causes illegal behavior2959// :116:30: error: use of undefined value here causes illegal behavior
2960// :116:30: note: when computing vector element at index '1'
2967// :116:30: error: use of undefined value here causes illegal behavior2961// :116:30: error: use of undefined value here causes illegal behavior
2968// :116:30: note: when computing vector element at index '1'2962// :116:30: note: when computing vector element at index '1'
2969// :116:30: error: use of undefined value here causes illegal behavior2963// :116:30: error: use of undefined value here causes illegal behavior
...@@ -2973,19 +2967,25 @@ const std = @import("std");...@@ -2973,19 +2967,25 @@ const std = @import("std");
2973// :116:30: error: use of undefined value here causes illegal behavior2967// :116:30: error: use of undefined value here causes illegal behavior
2974// :116:30: note: when computing vector element at index '1'2968// :116:30: note: when computing vector element at index '1'
2975// :116:30: error: use of undefined value here causes illegal behavior2969// :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'
2977// :116:30: error: use of undefined value here causes illegal behavior2971// :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'
2979// :116:30: error: use of undefined value here causes illegal behavior2973// :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'
2981// :116:30: error: use of undefined value here causes illegal behavior2975// :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'
2983// :116:30: error: use of undefined value here causes illegal behavior2977// :116:30: error: use of undefined value here causes illegal behavior
2978// :116:30: note: when computing vector element at index '1'
2984// :116:30: error: use of undefined value here causes illegal behavior2979// :116:30: error: use of undefined value here causes illegal behavior
2980// :116:30: note: when computing vector element at index '1'
2985// :116:30: error: use of undefined value here causes illegal behavior2981// :116:30: error: use of undefined value here causes illegal behavior
2982// :116:30: note: when computing vector element at index '1'
2986// :116:30: error: use of undefined value here causes illegal behavior2983// :116:30: error: use of undefined value here causes illegal behavior
2984// :116:30: note: when computing vector element at index '1'
2987// :116:30: error: use of undefined value here causes illegal behavior2985// :116:30: error: use of undefined value here causes illegal behavior
2986// :116:30: note: when computing vector element at index '1'
2988// :116:30: error: use of undefined value here causes illegal behavior2987// :116:30: error: use of undefined value here causes illegal behavior
2988// :116:30: note: when computing vector element at index '1'
2989// :116:30: error: use of undefined value here causes illegal behavior2989// :116:30: error: use of undefined value here causes illegal behavior
2990// :116:30: note: when computing vector element at index '1'2990// :116:30: note: when computing vector element at index '1'
2991// :116:30: error: use of undefined value here causes illegal behavior2991// :116:30: error: use of undefined value here causes illegal behavior
...@@ -2995,10 +2995,10 @@ const std = @import("std");...@@ -2995,10 +2995,10 @@ const std = @import("std");
2995// :116:30: error: use of undefined value here causes illegal behavior2995// :116:30: error: use of undefined value here causes illegal behavior
2996// :116:30: note: when computing vector element at index '1'2996// :116:30: note: when computing vector element at index '1'
2997// :116:30: error: use of undefined value here causes illegal behavior2997// :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'
2999// :116:30: error: use of undefined value here causes illegal behavior2999// :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'
3001// :116:30: error: use of undefined value here causes illegal behavior3001// :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'
3003// :116:30: error: use of undefined value here causes illegal behavior3003// :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 {...@@ -12,5 +12,5 @@ export fn entry() void {
1212
13// error13// error
14//14//
15// :6:9: error: enum tag value 60 already taken15// :6:9: error: enum tag value '60' for field 'E' already taken
16// :4:9: note: other occurrence here16// :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 {...@@ -15,6 +15,5 @@ export fn entry() usize {
1515
16// error16// error
17//17//
18// :7:11: error: enum field(s) missing in union18// :7:11: error: enum field 'c' missing from union
19// :4:5: note: field 'c' missing, declared here19// :4:5: note: enum field here
20// :1:11: note: enum declared here
test/cases/compile_errors/union_field_ordered_differently_than_enum.zig+3-4
...@@ -21,7 +21,6 @@ export fn entry() usize {...@@ -21,7 +21,6 @@ export fn entry() usize {
2121
22// error22// error
23//23//
24// :4:5: error: union field 'b' ordered differently than corresponding enum field24// :3:15: error: union field order does not match tag enum field order
25// :1:23: note: enum field here25// :5:5: note: union field 'a' is index 1
26// :14:5: error: union field 'b' ordered differently than corresponding enum field26// :1:20: note: enum field 'a' is index 0
27// :10:5: note: enum field here
test/cases/compile_errors/union_noreturn_field_initialized.zig+6-6
...@@ -15,8 +15,8 @@ pub export fn entry2() void {...@@ -15,8 +15,8 @@ pub export fn entry2() void {
15 const U = union(enum) {15 const U = union(enum) {
16 a: noreturn,16 a: noreturn,
17 };17 };
18 var u: U = undefined;18 const u: U = .a;
19 u = .a;19 _ = u;
20}20}
21pub export fn entry3() void {21pub export fn entry3() void {
22 const U = union(enum) {22 const U = union(enum) {
...@@ -30,12 +30,12 @@ pub export fn entry3() void {...@@ -30,12 +30,12 @@ pub export fn entry3() void {
3030
31// error31// error
32//32//
33// :11:14: error: cannot initialize 'noreturn' field of union33// :11:14: error: cannot initialize union field with uninstantiable type 'noreturn'
34// :4:9: note: field 'b' declared here34// :4:9: note: field 'b' declared here
35// :2:15: note: union declared here35// :2:15: note: union declared here
36// :19:10: error: cannot initialize 'noreturn' field of union36// :18:19: error: cannot initialize union field with uninstantiable type 'noreturn'
37// :16:9: note: field 'a' declared here37// :16:9: note: field 'a' declared here
38// :15:15: note: union declared here38// :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' field39// :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: 'noreturn' field here40// :23:9: note: field 'a' has uninstantiable type 'noreturn'
41// :22:15: note: union declared here41// :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 {...@@ -13,6 +13,5 @@ export fn entry() usize {
1313
14// error14// error
15//15//
16// :6:17: error: enum field(s) missing in union16// :6:17: error: enum field 'C' missing from union
17// :4:5: note: field 'C' missing, declared here17// :4:5: note: enum field here
18// :1:16: note: enum declared here
test/cases/compile_errors/union_with_too_small_explicit_signed_tag_type.zig+1-2
...@@ -10,5 +10,4 @@ export fn entry() void {...@@ -10,5 +10,4 @@ export fn entry() void {
1010
11// error11// error
12//12//
13// :1:22: error: specified integer tag type cannot represent every field13// :4:5: error: enum tag value '2' too large for type 'i2'
14// :1:22: note: type 'i2' cannot fit values in range 0...3
test/cases/compile_errors/union_with_too_small_explicit_unsigned_tag_type.zig+1-2
...@@ -11,5 +11,4 @@ export fn entry() void {...@@ -11,5 +11,4 @@ export fn entry() void {
1111
12// error12// error
13//13//
14// :1:22: error: specified integer tag type cannot represent every field14// :6:5: error: enum tag value '4' too large for type 'u2'
15// :1:22: note: type 'u2' cannot fit values in range 0...4
test/cases/compile_errors/untagged_union_integer_conversion.zig+1-1
...@@ -1,4 +1,4 @@...@@ -1,4 +1,4 @@
1const UntaggedUnion = union {};1const UntaggedUnion = union { a: void };
2comptime {2comptime {
3 @intFromEnum(@as(UntaggedUnion, undefined));3 @intFromEnum(@as(UntaggedUnion, undefined));
4}4}
test/cases/compile_errors/variadic_arg_validation.zig+1-1
...@@ -25,4 +25,4 @@ pub export fn entry3() void {...@@ -25,4 +25,4 @@ pub export fn entry3() void {
25// :14:24: error: cannot pass 'u48' to variadic function25// :14:24: error: cannot pass 'u48' to variadic function
26// :14:24: note: only integers with 0 or power of two bits are extern compatible26// :14:24: note: only integers with 0 or power of two bits are extern compatible
27// :18:24: error: cannot pass 'void' to variadic function27// :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 @@...@@ -1,17 +1,20 @@
1comptime {1comptime {
2 _ = enum(i0) { a, _ };2 const E = enum(i0) { a, _ };
3 _ = @as(E, undefined);
3}4}
45
5comptime {6comptime {
6 _ = enum(u0) { a, _ };7 const E = enum(u0) { a, _ };
8 _ = @as(E, undefined);
7}9}
810
9comptime {11comptime {
10 _ = enum(u0) { a, b, _ };12 const E = enum(u0) { a, b, _ };
13 _ = @as(E, undefined);
11}14}
1215
13// error16// error
14//17//
15// :2:9: error: non-exhaustive enum specifies every value18// :2:15: error: non-exhaustive enum specifies every value
16// :6:9: error: non-exhaustive enum specifies every value19// :7:15: error: non-exhaustive enum specifies every value
17// :10:23: error: enumeration value '1' too large for type 'u0'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 {...@@ -44,7 +44,7 @@ comptime {
44}44}
45const std = @import("std");45const std = @import("std");
46const io = std.Io.Threaded.global_single_threaded.io();46const 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'
48#update=increase tag size48#update=increase tag size
49#file=main.zig49#file=main.zig
50const Tag = u3;50const Tag = u3;