authorgravatar for justus@klausecker.deJustus Klausecker <justus@klausecker.de> 2025-08-08 15:16:34+02:00
committergravatar for justus@klausecker.deJustus Klausecker <justus@klausecker.de> 2025-08-12 16:33:58+02:00
log79756e681d50d85576c890e4dd5c967f10d2e8ec
tree5fd93821ffca230ffe817b69eb0e0163446b313b
parent76d2782149bef0214526a36a888c00adc5f2f897

remove redundant test cases


3 files changed, 7244 insertions(+), 7250 deletions(-)

src/Sema.zig+4-4
...@@ -14859,7 +14859,7 @@ fn zirDiv(sema: *Sema, block: *Block, inst: Zir.Inst.Index) CompileError!Air.Ins...@@ -14859,7 +14859,7 @@ fn zirDiv(sema: *Sema, block: *Block, inst: Zir.Inst.Index) CompileError!Air.Ins
14859 try sema.addDivByZeroSafety(block, src, resolved_type, maybe_rhs_val, casted_rhs, is_int);14859 try sema.addDivByZeroSafety(block, src, resolved_type, maybe_rhs_val, casted_rhs, is_int);
14860 }14860 }
1486114861
14862 const air_tag = if (is_int) blk: {14862 const air_tag: Air.Inst.Tag = if (is_int) blk: {
14863 if (lhs_ty.isSignedInt(zcu) or rhs_ty.isSignedInt(zcu)) {14863 if (lhs_ty.isSignedInt(zcu) or rhs_ty.isSignedInt(zcu)) {
14864 return sema.fail(14864 return sema.fail(
14865 block,14865 block,
...@@ -14868,10 +14868,10 @@ fn zirDiv(sema: *Sema, block: *Block, inst: Zir.Inst.Index) CompileError!Air.Ins...@@ -14868,10 +14868,10 @@ fn zirDiv(sema: *Sema, block: *Block, inst: Zir.Inst.Index) CompileError!Air.Ins
14868 .{ lhs_ty.fmt(pt), rhs_ty.fmt(pt) },14868 .{ lhs_ty.fmt(pt), rhs_ty.fmt(pt) },
14869 );14869 );
14870 }14870 }
14871 break :blk Air.Inst.Tag.div_trunc;14871 break :blk .div_trunc;
14872 } else switch (block.float_mode) {14872 } else switch (block.float_mode) {
14873 .optimized => Air.Inst.Tag.div_float_optimized,14873 .optimized => .div_float_optimized,
14874 .strict => Air.Inst.Tag.div_float,14874 .strict => .div_float,
14875 };14875 };
14876 return block.addBinOp(air_tag, casted_lhs, casted_rhs);14876 return block.addBinOp(air_tag, casted_lhs, casted_rhs);
14877}14877}
src/Zcu/PerThread.zig+2-2
...@@ -3668,8 +3668,8 @@ pub fn unionValue(pt: Zcu.PerThread, union_ty: Type, tag: Value, val: Value) All...@@ -3668,8 +3668,8 @@ pub fn unionValue(pt: Zcu.PerThread, union_ty: Type, tag: Value, val: Value) All
3668pub fn aggregateValue(pt: Zcu.PerThread, ty: Type, elems: []const InternPool.Index) Allocator.Error!Value {3668pub fn aggregateValue(pt: Zcu.PerThread, ty: Type, elems: []const InternPool.Index) Allocator.Error!Value {
3669 for (elems) |elem| {3669 for (elems) |elem| {
3670 if (!Value.fromInterned(elem).isUndef(pt.zcu)) break;3670 if (!Value.fromInterned(elem).isUndef(pt.zcu)) break;
3671 } else if (elems.len > 0) { // all-undef3671 } else if (elems.len > 0) {
3672 return pt.undefValue(ty);3672 return pt.undefValue(ty); // all-undef
3673 }3673 }
3674 return .fromInterned(try pt.intern(.{ .aggregate = .{3674 return .fromInterned(try pt.intern(.{ .aggregate = .{
3675 .ty = ty.toIntern(),3675 .ty = ty.toIntern(),
test/cases/compile_errors/undef_arith_is_illegal.zig+7238-7244
...@@ -4,7 +4,7 @@...@@ -4,7 +4,7 @@
44
5comptime {5comptime {
6 // Total expected errors:6 // Total expected errors:
7 // 29*22*6 + 26*22*5 = 66887 // 29*15*6 + 26*14*5 = 4256
88
9 testType(u8);9 testType(u8);
10 testType(i8);10 testType(i8);
...@@ -21,28 +21,22 @@ comptime {...@@ -21,28 +21,22 @@ comptime {
21}21}
2222
23fn testType(comptime Scalar: type) void {23fn testType(comptime Scalar: type) void {
24 testInner(Scalar, undefined, 1);24 // zig fmt: off
25 testInner(Scalar, undefined, undefined);25 testInner(Scalar, undefined, 1 );
26 testInner(@Vector(2, Scalar), undefined, undefined);26 testInner(Scalar, undefined, undefined );
27 testInner(@Vector(2, Scalar), undefined, .{ 1, 2 });
28 testInner(@Vector(2, Scalar), undefined, .{ 1, undefined });
29 testInner(@Vector(2, Scalar), undefined, .{ undefined, 2 });
30 testInner(@Vector(2, Scalar), undefined, .{ undefined, undefined });
31 testInner(@Vector(2, Scalar), .{ 1, undefined }, undefined);
32 testInner(@Vector(2, Scalar), .{ 1, undefined }, .{ 1, 2 });
33 testInner(@Vector(2, Scalar), .{ 1, undefined }, .{ 1, undefined });
34 testInner(@Vector(2, Scalar), .{ 1, undefined }, .{ undefined, 2 });
35 testInner(@Vector(2, Scalar), .{ 1, undefined }, .{ undefined, undefined });
36 testInner(@Vector(2, Scalar), .{ undefined, 2 }, undefined);
37 testInner(@Vector(2, Scalar), .{ undefined, 2 }, .{ 1, 2 });
38 testInner(@Vector(2, Scalar), .{ undefined, 2 }, .{ 1, undefined });
39 testInner(@Vector(2, Scalar), .{ undefined, 2 }, .{ undefined, 2 });
40 testInner(@Vector(2, Scalar), .{ undefined, 2 }, .{ undefined, undefined });
41 testInner(@Vector(2, Scalar), .{ undefined, undefined }, undefined);
42 testInner(@Vector(2, Scalar), .{ undefined, undefined }, .{ 1, 2 });
43 testInner(@Vector(2, Scalar), .{ undefined, undefined }, .{ 1, undefined });
44 testInner(@Vector(2, Scalar), .{ undefined, undefined }, .{ undefined, 2 });
45 testInner(@Vector(2, Scalar), .{ undefined, undefined }, .{ undefined, undefined });27 testInner(@Vector(2, Scalar), .{ undefined, undefined }, .{ undefined, undefined });
28 testInner(@Vector(2, Scalar), .{ undefined, undefined }, .{ 1, 2 });
29 testInner(@Vector(2, Scalar), .{ undefined, undefined }, .{ 1, undefined });
30 testInner(@Vector(2, Scalar), .{ undefined, undefined }, .{ undefined, 2 });
31 testInner(@Vector(2, Scalar), .{ 1, undefined }, .{ undefined, undefined });
32 testInner(@Vector(2, Scalar), .{ 1, undefined }, .{ 1, 2 });
33 testInner(@Vector(2, Scalar), .{ 1, undefined }, .{ 1, undefined });
34 testInner(@Vector(2, Scalar), .{ 1, undefined }, .{ undefined, 2 });
35 testInner(@Vector(2, Scalar), .{ undefined, 2 }, .{ undefined, undefined });
36 testInner(@Vector(2, Scalar), .{ undefined, 2 }, .{ 1, 2 });
37 testInner(@Vector(2, Scalar), .{ undefined, 2 }, .{ 1, undefined });
38 testInner(@Vector(2, Scalar), .{ undefined, 2 }, .{ undefined, 2 });
39 // zig fmt: on
46}40}
4741
48/// At the time of writing, this is expected to trigger:42/// At the time of writing, this is expected to trigger:
...@@ -65,7 +59,7 @@ fn testInner(comptime T: type, comptime u: T, comptime maybe_defined: T) void {...@@ -65,7 +59,7 @@ fn testInner(comptime T: type, comptime u: T, comptime maybe_defined: T) void {
65 const a: T = maybe_defined;59 const a: T = maybe_defined;
66 var b: T = maybe_defined;60 var b: T = maybe_defined;
6761
68 // undef LHS, comptime-known LHS62 // undef LHS, comptime-known RHS
69 comptime {63 comptime {
70 @setFloatMode(mode);64 @setFloatMode(mode);
71 _ = u / a;65 _ = u / a;
...@@ -95,7 +89,7 @@ fn testInner(comptime T: type, comptime u: T, comptime maybe_defined: T) void {...@@ -95,7 +89,7 @@ fn testInner(comptime T: type, comptime u: T, comptime maybe_defined: T) void {
95 _ = @rem(u, a);89 _ = @rem(u, a);
96 }90 }
9791
98 // undef LHS, runtime-known LHS92 // undef LHS, runtime-known RHS
99 comptime {93 comptime {
100 @setFloatMode(mode);94 @setFloatMode(mode);
101 _ = u / b;95 _ = u / b;
...@@ -195,6914 +189,7226 @@ const std = @import("std");...@@ -195,6914 +189,7226 @@ const std = @import("std");
195189
196// error190// error
197//191//
198// :71:17: error: use of undefined value here causes illegal behavior192// :65:17: error: use of undefined value here causes illegal behavior
199// :71:17: error: use of undefined value here causes illegal behavior193// :65:17: error: use of undefined value here causes illegal behavior
200// :71:17: error: use of undefined value here causes illegal behavior194// :65:17: error: use of undefined value here causes illegal behavior
201// :71:17: note: when computing vector element at index '0'195// :65:17: note: when computing vector element at index '0'
202// :71:17: error: use of undefined value here causes illegal behavior196// :65:17: error: use of undefined value here causes illegal behavior
203// :71:17: note: when computing vector element at index '0'197// :65:17: note: when computing vector element at index '0'
204// :71:17: error: use of undefined value here causes illegal behavior198// :65:17: error: use of undefined value here causes illegal behavior
205// :71:17: note: when computing vector element at index '0'199// :65:17: note: when computing vector element at index '0'
206// :71:17: error: use of undefined value here causes illegal behavior200// :65:17: error: use of undefined value here causes illegal behavior
207// :71:17: note: when computing vector element at index '0'201// :65:17: note: when computing vector element at index '0'
208// :71:17: error: use of undefined value here causes illegal behavior202// :65:17: error: use of undefined value here causes illegal behavior
209// :71:17: note: when computing vector element at index '1'203// :65:17: note: when computing vector element at index '1'
210// :71:17: error: use of undefined value here causes illegal behavior204// :65:17: error: use of undefined value here causes illegal behavior
211// :71:17: note: when computing vector element at index '1'205// :65:17: note: when computing vector element at index '1'
212// :71:17: error: use of undefined value here causes illegal behavior206// :65:17: error: use of undefined value here causes illegal behavior
213// :71:17: note: when computing vector element at index '0'207// :65:17: note: when computing vector element at index '0'
214// :71:17: error: use of undefined value here causes illegal behavior208// :65:17: error: use of undefined value here causes illegal behavior
215// :71:17: note: when computing vector element at index '0'209// :65:17: note: when computing vector element at index '0'
216// :71:17: error: use of undefined value here causes illegal behavior210// :65:17: error: use of undefined value here causes illegal behavior
217// :71:17: note: when computing vector element at index '0'211// :65:17: note: when computing vector element at index '0'
218// :71:17: error: use of undefined value here causes illegal behavior212// :65:17: error: use of undefined value here causes illegal behavior
219// :71:17: note: when computing vector element at index '0'213// :65:17: note: when computing vector element at index '0'
220// :71:17: error: use of undefined value here causes illegal behavior214// :65:17: error: use of undefined value here causes illegal behavior
221// :71:17: error: use of undefined value here causes illegal behavior215// :65:17: error: use of undefined value here causes illegal behavior
222// :71:17: error: use of undefined value here causes illegal behavior216// :65:17: error: use of undefined value here causes illegal behavior
223// :71:17: note: when computing vector element at index '0'217// :65:17: note: when computing vector element at index '0'
224// :71:17: error: use of undefined value here causes illegal behavior218// :65:17: error: use of undefined value here causes illegal behavior
225// :71:17: note: when computing vector element at index '0'219// :65:17: note: when computing vector element at index '0'
226// :71:17: error: use of undefined value here causes illegal behavior220// :65:17: error: use of undefined value here causes illegal behavior
227// :71:17: note: when computing vector element at index '0'221// :65:17: note: when computing vector element at index '0'
228// :71:17: error: use of undefined value here causes illegal behavior222// :65:17: error: use of undefined value here causes illegal behavior
229// :71:17: note: when computing vector element at index '0'223// :65:17: note: when computing vector element at index '0'
230// :71:17: error: use of undefined value here causes illegal behavior224// :65:17: error: use of undefined value here causes illegal behavior
231// :71:17: note: when computing vector element at index '1'225// :65:17: note: when computing vector element at index '1'
232// :71:17: error: use of undefined value here causes illegal behavior226// :65:17: error: use of undefined value here causes illegal behavior
233// :71:17: note: when computing vector element at index '1'227// :65:17: note: when computing vector element at index '1'
234// :71:17: error: use of undefined value here causes illegal behavior228// :65:17: error: use of undefined value here causes illegal behavior
235// :71:17: note: when computing vector element at index '0'229// :65:17: note: when computing vector element at index '0'
236// :71:17: error: use of undefined value here causes illegal behavior230// :65:17: error: use of undefined value here causes illegal behavior
237// :71:17: note: when computing vector element at index '0'231// :65:17: note: when computing vector element at index '0'
238// :71:17: error: use of undefined value here causes illegal behavior232// :65:17: error: use of undefined value here causes illegal behavior
239// :71:17: note: when computing vector element at index '0'233// :65:17: note: when computing vector element at index '0'
240// :71:17: error: use of undefined value here causes illegal behavior234// :65:17: error: use of undefined value here causes illegal behavior
241// :71:17: note: when computing vector element at index '0'235// :65:17: note: when computing vector element at index '0'
242// :71:17: error: use of undefined value here causes illegal behavior236// :65:17: error: use of undefined value here causes illegal behavior
243// :71:17: error: use of undefined value here causes illegal behavior237// :65:17: error: use of undefined value here causes illegal behavior
244// :71:17: error: use of undefined value here causes illegal behavior238// :65:17: error: use of undefined value here causes illegal behavior
245// :71:17: note: when computing vector element at index '0'239// :65:17: note: when computing vector element at index '0'
246// :71:17: error: use of undefined value here causes illegal behavior240// :65:17: error: use of undefined value here causes illegal behavior
247// :71:17: note: when computing vector element at index '0'241// :65:17: note: when computing vector element at index '0'
248// :71:17: error: use of undefined value here causes illegal behavior242// :65:17: error: use of undefined value here causes illegal behavior
249// :71:17: note: when computing vector element at index '0'243// :65:17: note: when computing vector element at index '0'
250// :71:17: error: use of undefined value here causes illegal behavior244// :65:17: error: use of undefined value here causes illegal behavior
251// :71:17: note: when computing vector element at index '0'245// :65:17: note: when computing vector element at index '0'
252// :71:17: error: use of undefined value here causes illegal behavior246// :65:17: error: use of undefined value here causes illegal behavior
253// :71:17: note: when computing vector element at index '1'247// :65:17: note: when computing vector element at index '1'
254// :71:17: error: use of undefined value here causes illegal behavior248// :65:17: error: use of undefined value here causes illegal behavior
255// :71:17: note: when computing vector element at index '1'249// :65:17: note: when computing vector element at index '1'
256// :71:17: error: use of undefined value here causes illegal behavior250// :65:17: error: use of undefined value here causes illegal behavior
257// :71:17: note: when computing vector element at index '0'251// :65:17: note: when computing vector element at index '0'
258// :71:17: error: use of undefined value here causes illegal behavior252// :65:17: error: use of undefined value here causes illegal behavior
259// :71:17: note: when computing vector element at index '0'253// :65:17: note: when computing vector element at index '0'
260// :71:17: error: use of undefined value here causes illegal behavior254// :65:17: error: use of undefined value here causes illegal behavior
261// :71:17: note: when computing vector element at index '0'255// :65:17: note: when computing vector element at index '0'
262// :71:17: error: use of undefined value here causes illegal behavior256// :65:17: error: use of undefined value here causes illegal behavior
263// :71:17: note: when computing vector element at index '0'257// :65:17: note: when computing vector element at index '0'
264// :71:17: error: use of undefined value here causes illegal behavior258// :65:17: error: use of undefined value here causes illegal behavior
265// :71:17: error: use of undefined value here causes illegal behavior259// :65:17: error: use of undefined value here causes illegal behavior
266// :71:17: error: use of undefined value here causes illegal behavior260// :65:17: error: use of undefined value here causes illegal behavior
267// :71:17: note: when computing vector element at index '0'261// :65:17: note: when computing vector element at index '0'
268// :71:17: error: use of undefined value here causes illegal behavior262// :65:17: error: use of undefined value here causes illegal behavior
269// :71:17: note: when computing vector element at index '0'263// :65:17: note: when computing vector element at index '0'
270// :71:17: error: use of undefined value here causes illegal behavior264// :65:17: error: use of undefined value here causes illegal behavior
271// :71:17: note: when computing vector element at index '0'265// :65:17: note: when computing vector element at index '0'
272// :71:17: error: use of undefined value here causes illegal behavior266// :65:17: error: use of undefined value here causes illegal behavior
273// :71:17: note: when computing vector element at index '0'267// :65:17: note: when computing vector element at index '0'
274// :71:17: error: use of undefined value here causes illegal behavior268// :65:17: error: use of undefined value here causes illegal behavior
275// :71:17: note: when computing vector element at index '1'269// :65:17: note: when computing vector element at index '1'
276// :71:17: error: use of undefined value here causes illegal behavior270// :65:17: error: use of undefined value here causes illegal behavior
277// :71:17: note: when computing vector element at index '1'271// :65:17: note: when computing vector element at index '1'
278// :71:17: error: use of undefined value here causes illegal behavior272// :65:17: error: use of undefined value here causes illegal behavior
279// :71:17: note: when computing vector element at index '0'273// :65:17: note: when computing vector element at index '0'
280// :71:17: error: use of undefined value here causes illegal behavior274// :65:17: error: use of undefined value here causes illegal behavior
281// :71:17: note: when computing vector element at index '0'275// :65:17: note: when computing vector element at index '0'
282// :71:17: error: use of undefined value here causes illegal behavior276// :65:17: error: use of undefined value here causes illegal behavior
283// :71:17: note: when computing vector element at index '0'277// :65:17: note: when computing vector element at index '0'
284// :71:17: error: use of undefined value here causes illegal behavior278// :65:17: error: use of undefined value here causes illegal behavior
285// :71:17: note: when computing vector element at index '0'279// :65:17: note: when computing vector element at index '0'
286// :71:17: error: use of undefined value here causes illegal behavior280// :65:17: error: use of undefined value here causes illegal behavior
287// :71:17: error: use of undefined value here causes illegal behavior281// :65:17: error: use of undefined value here causes illegal behavior
288// :71:17: error: use of undefined value here causes illegal behavior282// :65:17: error: use of undefined value here causes illegal behavior
289// :71:17: note: when computing vector element at index '0'283// :65:17: note: when computing vector element at index '0'
290// :71:17: error: use of undefined value here causes illegal behavior284// :65:17: error: use of undefined value here causes illegal behavior
291// :71:17: note: when computing vector element at index '0'285// :65:17: note: when computing vector element at index '0'
292// :71:17: error: use of undefined value here causes illegal behavior286// :65:17: error: use of undefined value here causes illegal behavior
293// :71:17: note: when computing vector element at index '0'287// :65:17: note: when computing vector element at index '0'
294// :71:17: error: use of undefined value here causes illegal behavior288// :65:17: error: use of undefined value here causes illegal behavior
295// :71:17: note: when computing vector element at index '0'289// :65:17: note: when computing vector element at index '0'
296// :71:17: error: use of undefined value here causes illegal behavior290// :65:17: error: use of undefined value here causes illegal behavior
297// :71:17: note: when computing vector element at index '1'291// :65:17: note: when computing vector element at index '1'
298// :71:17: error: use of undefined value here causes illegal behavior292// :65:17: error: use of undefined value here causes illegal behavior
299// :71:17: note: when computing vector element at index '1'293// :65:17: note: when computing vector element at index '1'
300// :71:17: error: use of undefined value here causes illegal behavior294// :65:17: error: use of undefined value here causes illegal behavior
301// :71:17: note: when computing vector element at index '0'295// :65:17: note: when computing vector element at index '0'
302// :71:17: error: use of undefined value here causes illegal behavior296// :65:17: error: use of undefined value here causes illegal behavior
303// :71:17: note: when computing vector element at index '0'297// :65:17: note: when computing vector element at index '0'
304// :71:17: error: use of undefined value here causes illegal behavior298// :65:17: error: use of undefined value here causes illegal behavior
305// :71:17: note: when computing vector element at index '0'299// :65:17: note: when computing vector element at index '0'
306// :71:17: error: use of undefined value here causes illegal behavior300// :65:17: error: use of undefined value here causes illegal behavior
307// :71:17: note: when computing vector element at index '0'301// :65:17: note: when computing vector element at index '0'
308// :71:17: error: use of undefined value here causes illegal behavior302// :65:17: error: use of undefined value here causes illegal behavior
309// :71:17: error: use of undefined value here causes illegal behavior303// :65:17: error: use of undefined value here causes illegal behavior
310// :71:17: error: use of undefined value here causes illegal behavior304// :65:17: error: use of undefined value here causes illegal behavior
311// :71:17: note: when computing vector element at index '0'305// :65:17: note: when computing vector element at index '0'
312// :71:17: error: use of undefined value here causes illegal behavior306// :65:17: error: use of undefined value here causes illegal behavior
313// :71:17: note: when computing vector element at index '0'307// :65:17: note: when computing vector element at index '0'
314// :71:17: error: use of undefined value here causes illegal behavior308// :65:17: error: use of undefined value here causes illegal behavior
315// :71:17: note: when computing vector element at index '0'309// :65:17: note: when computing vector element at index '0'
316// :71:17: error: use of undefined value here causes illegal behavior310// :65:17: error: use of undefined value here causes illegal behavior
317// :71:17: note: when computing vector element at index '0'311// :65:17: note: when computing vector element at index '0'
318// :71:17: error: use of undefined value here causes illegal behavior312// :65:17: error: use of undefined value here causes illegal behavior
319// :71:17: note: when computing vector element at index '1'313// :65:17: note: when computing vector element at index '1'
320// :71:17: error: use of undefined value here causes illegal behavior314// :65:17: error: use of undefined value here causes illegal behavior
321// :71:17: note: when computing vector element at index '1'315// :65:17: note: when computing vector element at index '1'
322// :71:17: error: use of undefined value here causes illegal behavior316// :65:17: error: use of undefined value here causes illegal behavior
323// :71:17: note: when computing vector element at index '0'317// :65:17: note: when computing vector element at index '0'
324// :71:17: error: use of undefined value here causes illegal behavior318// :65:17: error: use of undefined value here causes illegal behavior
325// :71:17: note: when computing vector element at index '0'319// :65:17: note: when computing vector element at index '0'
326// :71:17: error: use of undefined value here causes illegal behavior320// :65:17: error: use of undefined value here causes illegal behavior
327// :71:17: note: when computing vector element at index '0'321// :65:17: note: when computing vector element at index '0'
328// :71:17: error: use of undefined value here causes illegal behavior322// :65:17: error: use of undefined value here causes illegal behavior
329// :71:17: note: when computing vector element at index '0'323// :65:17: note: when computing vector element at index '0'
330// :71:17: error: use of undefined value here causes illegal behavior324// :65:17: error: use of undefined value here causes illegal behavior
331// :71:17: error: use of undefined value here causes illegal behavior325// :65:17: error: use of undefined value here causes illegal behavior
332// :71:17: error: use of undefined value here causes illegal behavior326// :65:17: error: use of undefined value here causes illegal behavior
333// :71:17: note: when computing vector element at index '0'327// :65:17: note: when computing vector element at index '0'
334// :71:17: error: use of undefined value here causes illegal behavior328// :65:17: error: use of undefined value here causes illegal behavior
335// :71:17: note: when computing vector element at index '0'329// :65:17: note: when computing vector element at index '0'
336// :71:17: error: use of undefined value here causes illegal behavior330// :65:17: error: use of undefined value here causes illegal behavior
337// :71:17: note: when computing vector element at index '0'331// :65:17: note: when computing vector element at index '0'
338// :71:17: error: use of undefined value here causes illegal behavior332// :65:17: error: use of undefined value here causes illegal behavior
339// :71:17: note: when computing vector element at index '0'333// :65:17: note: when computing vector element at index '0'
340// :71:17: error: use of undefined value here causes illegal behavior334// :65:17: error: use of undefined value here causes illegal behavior
341// :71:17: note: when computing vector element at index '1'335// :65:17: note: when computing vector element at index '1'
342// :71:17: error: use of undefined value here causes illegal behavior336// :65:17: error: use of undefined value here causes illegal behavior
343// :71:17: note: when computing vector element at index '1'337// :65:17: note: when computing vector element at index '1'
344// :71:17: error: use of undefined value here causes illegal behavior338// :65:17: error: use of undefined value here causes illegal behavior
345// :71:17: note: when computing vector element at index '0'339// :65:17: note: when computing vector element at index '0'
346// :71:17: error: use of undefined value here causes illegal behavior340// :65:17: error: use of undefined value here causes illegal behavior
347// :71:17: note: when computing vector element at index '0'341// :65:17: note: when computing vector element at index '0'
348// :71:17: error: use of undefined value here causes illegal behavior342// :65:17: error: use of undefined value here causes illegal behavior
349// :71:17: note: when computing vector element at index '0'343// :65:17: note: when computing vector element at index '0'
350// :71:17: error: use of undefined value here causes illegal behavior344// :65:17: error: use of undefined value here causes illegal behavior
351// :71:17: note: when computing vector element at index '0'345// :65:17: note: when computing vector element at index '0'
352// :71:17: error: use of undefined value here causes illegal behavior346// :65:17: error: use of undefined value here causes illegal behavior
353// :71:17: error: use of undefined value here causes illegal behavior347// :65:17: error: use of undefined value here causes illegal behavior
354// :71:17: error: use of undefined value here causes illegal behavior348// :65:17: error: use of undefined value here causes illegal behavior
355// :71:17: note: when computing vector element at index '0'349// :65:17: note: when computing vector element at index '0'
356// :71:17: error: use of undefined value here causes illegal behavior350// :65:17: error: use of undefined value here causes illegal behavior
357// :71:17: note: when computing vector element at index '0'351// :65:17: note: when computing vector element at index '0'
358// :71:17: error: use of undefined value here causes illegal behavior352// :65:17: error: use of undefined value here causes illegal behavior
359// :71:17: note: when computing vector element at index '0'353// :65:17: note: when computing vector element at index '0'
360// :71:17: error: use of undefined value here causes illegal behavior354// :65:17: error: use of undefined value here causes illegal behavior
361// :71:17: note: when computing vector element at index '0'355// :65:17: note: when computing vector element at index '0'
362// :71:17: error: use of undefined value here causes illegal behavior356// :65:17: error: use of undefined value here causes illegal behavior
363// :71:17: note: when computing vector element at index '1'357// :65:17: note: when computing vector element at index '1'
364// :71:17: error: use of undefined value here causes illegal behavior358// :65:17: error: use of undefined value here causes illegal behavior
365// :71:17: note: when computing vector element at index '1'359// :65:17: note: when computing vector element at index '1'
366// :71:17: error: use of undefined value here causes illegal behavior360// :65:17: error: use of undefined value here causes illegal behavior
367// :71:17: note: when computing vector element at index '0'361// :65:17: note: when computing vector element at index '0'
368// :71:17: error: use of undefined value here causes illegal behavior362// :65:17: error: use of undefined value here causes illegal behavior
369// :71:17: note: when computing vector element at index '0'363// :65:17: note: when computing vector element at index '0'
370// :71:17: error: use of undefined value here causes illegal behavior364// :65:17: error: use of undefined value here causes illegal behavior
371// :71:17: note: when computing vector element at index '0'365// :65:17: note: when computing vector element at index '0'
372// :71:17: error: use of undefined value here causes illegal behavior366// :65:17: error: use of undefined value here causes illegal behavior
373// :71:17: note: when computing vector element at index '0'367// :65:17: note: when computing vector element at index '0'
374// :71:17: error: use of undefined value here causes illegal behavior368// :65:17: error: use of undefined value here causes illegal behavior
375// :71:17: error: use of undefined value here causes illegal behavior369// :65:17: error: use of undefined value here causes illegal behavior
376// :71:17: error: use of undefined value here causes illegal behavior370// :65:17: error: use of undefined value here causes illegal behavior
377// :71:17: note: when computing vector element at index '0'371// :65:17: note: when computing vector element at index '0'
378// :71:17: error: use of undefined value here causes illegal behavior372// :65:17: error: use of undefined value here causes illegal behavior
379// :71:17: note: when computing vector element at index '0'373// :65:17: note: when computing vector element at index '0'
380// :71:17: error: use of undefined value here causes illegal behavior374// :65:17: error: use of undefined value here causes illegal behavior
381// :71:17: note: when computing vector element at index '0'375// :65:17: note: when computing vector element at index '0'
382// :71:17: error: use of undefined value here causes illegal behavior376// :65:17: error: use of undefined value here causes illegal behavior
383// :71:17: note: when computing vector element at index '0'377// :65:17: note: when computing vector element at index '0'
384// :71:17: error: use of undefined value here causes illegal behavior378// :65:17: error: use of undefined value here causes illegal behavior
385// :71:17: note: when computing vector element at index '1'379// :65:17: note: when computing vector element at index '1'
386// :71:17: error: use of undefined value here causes illegal behavior380// :65:17: error: use of undefined value here causes illegal behavior
387// :71:17: note: when computing vector element at index '1'381// :65:17: note: when computing vector element at index '1'
388// :71:17: error: use of undefined value here causes illegal behavior382// :65:17: error: use of undefined value here causes illegal behavior
389// :71:17: note: when computing vector element at index '0'383// :65:17: note: when computing vector element at index '0'
390// :71:17: error: use of undefined value here causes illegal behavior384// :65:17: error: use of undefined value here causes illegal behavior
391// :71:17: note: when computing vector element at index '0'385// :65:17: note: when computing vector element at index '0'
392// :71:17: error: use of undefined value here causes illegal behavior386// :65:17: error: use of undefined value here causes illegal behavior
393// :71:17: note: when computing vector element at index '0'387// :65:17: note: when computing vector element at index '0'
394// :71:17: error: use of undefined value here causes illegal behavior388// :65:17: error: use of undefined value here causes illegal behavior
395// :71:17: note: when computing vector element at index '0'389// :65:17: note: when computing vector element at index '0'
396// :71:17: error: use of undefined value here causes illegal behavior390// :65:17: error: use of undefined value here causes illegal behavior
397// :71:17: error: use of undefined value here causes illegal behavior391// :65:17: error: use of undefined value here causes illegal behavior
398// :71:17: error: use of undefined value here causes illegal behavior392// :65:17: error: use of undefined value here causes illegal behavior
399// :71:17: note: when computing vector element at index '0'393// :65:17: note: when computing vector element at index '0'
400// :71:17: error: use of undefined value here causes illegal behavior394// :65:17: error: use of undefined value here causes illegal behavior
401// :71:17: note: when computing vector element at index '0'395// :65:17: note: when computing vector element at index '0'
402// :71:17: error: use of undefined value here causes illegal behavior396// :65:17: error: use of undefined value here causes illegal behavior
403// :71:17: note: when computing vector element at index '0'397// :65:17: note: when computing vector element at index '0'
404// :71:17: error: use of undefined value here causes illegal behavior398// :65:17: error: use of undefined value here causes illegal behavior
405// :71:17: note: when computing vector element at index '0'399// :65:17: note: when computing vector element at index '0'
406// :71:17: error: use of undefined value here causes illegal behavior400// :65:17: error: use of undefined value here causes illegal behavior
407// :71:17: note: when computing vector element at index '1'401// :65:17: note: when computing vector element at index '1'
408// :71:17: error: use of undefined value here causes illegal behavior402// :65:17: error: use of undefined value here causes illegal behavior
409// :71:17: note: when computing vector element at index '1'403// :65:17: note: when computing vector element at index '1'
410// :71:17: error: use of undefined value here causes illegal behavior404// :65:17: error: use of undefined value here causes illegal behavior
411// :71:17: note: when computing vector element at index '0'405// :65:17: note: when computing vector element at index '0'
412// :71:17: error: use of undefined value here causes illegal behavior406// :65:17: error: use of undefined value here causes illegal behavior
413// :71:17: note: when computing vector element at index '0'407// :65:17: note: when computing vector element at index '0'
414// :71:17: error: use of undefined value here causes illegal behavior408// :65:17: error: use of undefined value here causes illegal behavior
415// :71:17: note: when computing vector element at index '0'409// :65:17: note: when computing vector element at index '0'
416// :71:17: error: use of undefined value here causes illegal behavior410// :65:17: error: use of undefined value here causes illegal behavior
417// :71:17: note: when computing vector element at index '0'411// :65:17: note: when computing vector element at index '0'
418// :71:17: error: use of undefined value here causes illegal behavior412// :65:17: error: use of undefined value here causes illegal behavior
419// :71:17: error: use of undefined value here causes illegal behavior413// :65:17: error: use of undefined value here causes illegal behavior
420// :71:17: error: use of undefined value here causes illegal behavior414// :65:17: error: use of undefined value here causes illegal behavior
421// :71:17: note: when computing vector element at index '0'415// :65:17: note: when computing vector element at index '0'
422// :71:17: error: use of undefined value here causes illegal behavior416// :65:17: error: use of undefined value here causes illegal behavior
423// :71:17: note: when computing vector element at index '0'417// :65:17: note: when computing vector element at index '0'
424// :71:17: error: use of undefined value here causes illegal behavior418// :65:17: error: use of undefined value here causes illegal behavior
425// :71:17: note: when computing vector element at index '0'419// :65:17: note: when computing vector element at index '0'
426// :71:17: error: use of undefined value here causes illegal behavior420// :65:17: error: use of undefined value here causes illegal behavior
427// :71:17: note: when computing vector element at index '0'421// :65:17: note: when computing vector element at index '0'
428// :71:17: error: use of undefined value here causes illegal behavior422// :65:17: error: use of undefined value here causes illegal behavior
429// :71:17: note: when computing vector element at index '1'423// :65:17: note: when computing vector element at index '1'
430// :71:17: error: use of undefined value here causes illegal behavior424// :65:17: error: use of undefined value here causes illegal behavior
431// :71:17: note: when computing vector element at index '1'425// :65:17: note: when computing vector element at index '1'
432// :71:17: error: use of undefined value here causes illegal behavior426// :65:17: error: use of undefined value here causes illegal behavior
433// :71:17: note: when computing vector element at index '0'427// :65:17: note: when computing vector element at index '0'
434// :71:17: error: use of undefined value here causes illegal behavior428// :65:17: error: use of undefined value here causes illegal behavior
435// :71:17: note: when computing vector element at index '0'429// :65:17: note: when computing vector element at index '0'
436// :71:17: error: use of undefined value here causes illegal behavior430// :65:17: error: use of undefined value here causes illegal behavior
437// :71:17: note: when computing vector element at index '0'431// :65:17: note: when computing vector element at index '0'
438// :71:17: error: use of undefined value here causes illegal behavior432// :65:17: error: use of undefined value here causes illegal behavior
439// :71:17: note: when computing vector element at index '0'433// :65:17: note: when computing vector element at index '0'
440// :71:21: error: use of undefined value here causes illegal behavior434// :65:21: error: use of undefined value here causes illegal behavior
441// :71:21: note: when computing vector element at index '0'435// :65:21: note: when computing vector element at index '0'
442// :71:21: error: use of undefined value here causes illegal behavior436// :65:21: error: use of undefined value here causes illegal behavior
443// :71:21: note: when computing vector element at index '0'437// :65:21: note: when computing vector element at index '0'
444// :71:21: error: use of undefined value here causes illegal behavior438// :65:21: error: use of undefined value here causes illegal behavior
445// :71:21: note: when computing vector element at index '0'439// :65:21: note: when computing vector element at index '0'
446// :71:21: error: use of undefined value here causes illegal behavior440// :65:21: error: use of undefined value here causes illegal behavior
447// :71:21: note: when computing vector element at index '0'441// :65:21: note: when computing vector element at index '0'
448// :71:21: error: use of undefined value here causes illegal behavior442// :65:21: error: use of undefined value here causes illegal behavior
449// :71:21: note: when computing vector element at index '0'443// :65:21: note: when computing vector element at index '0'
450// :71:21: error: use of undefined value here causes illegal behavior444// :65:21: error: use of undefined value here causes illegal behavior
451// :71:21: note: when computing vector element at index '0'445// :65:21: note: when computing vector element at index '0'
452// :71:21: error: use of undefined value here causes illegal behavior446// :65:21: error: use of undefined value here causes illegal behavior
453// :71:21: note: when computing vector element at index '0'447// :65:21: note: when computing vector element at index '0'
454// :71:21: error: use of undefined value here causes illegal behavior448// :65:21: error: use of undefined value here causes illegal behavior
455// :71:21: note: when computing vector element at index '0'449// :65:21: note: when computing vector element at index '0'
456// :71:21: error: use of undefined value here causes illegal behavior450// :65:21: error: use of undefined value here causes illegal behavior
457// :71:21: note: when computing vector element at index '0'451// :65:21: note: when computing vector element at index '0'
458// :71:21: error: use of undefined value here causes illegal behavior452// :65:21: error: use of undefined value here causes illegal behavior
459// :71:21: note: when computing vector element at index '0'453// :65:21: note: when computing vector element at index '0'
460// :71:21: error: use of undefined value here causes illegal behavior454// :65:21: error: use of undefined value here causes illegal behavior
461// :71:21: note: when computing vector element at index '0'455// :65:21: note: when computing vector element at index '0'
462// :71:21: error: use of undefined value here causes illegal behavior456// :65:21: error: use of undefined value here causes illegal behavior
463// :71:21: note: when computing vector element at index '0'457// :65:21: note: when computing vector element at index '0'
464// :71:21: error: use of undefined value here causes illegal behavior458// :65:21: error: use of undefined value here causes illegal behavior
465// :71:21: note: when computing vector element at index '0'459// :65:21: note: when computing vector element at index '0'
466// :71:21: error: use of undefined value here causes illegal behavior460// :65:21: error: use of undefined value here causes illegal behavior
467// :71:21: note: when computing vector element at index '0'461// :65:21: note: when computing vector element at index '0'
468// :71:21: error: use of undefined value here causes illegal behavior462// :65:21: error: use of undefined value here causes illegal behavior
469// :71:21: note: when computing vector element at index '0'463// :65:21: note: when computing vector element at index '0'
470// :71:21: error: use of undefined value here causes illegal behavior464// :65:21: error: use of undefined value here causes illegal behavior
471// :71:21: note: when computing vector element at index '0'465// :65:21: note: when computing vector element at index '0'
472// :71:21: error: use of undefined value here causes illegal behavior466// :65:21: error: use of undefined value here causes illegal behavior
473// :71:21: note: when computing vector element at index '0'467// :65:21: note: when computing vector element at index '0'
474// :71:21: error: use of undefined value here causes illegal behavior468// :65:21: error: use of undefined value here causes illegal behavior
475// :71:21: note: when computing vector element at index '0'469// :65:21: note: when computing vector element at index '0'
476// :71:21: error: use of undefined value here causes illegal behavior470// :65:21: error: use of undefined value here causes illegal behavior
477// :71:21: note: when computing vector element at index '0'471// :65:21: note: when computing vector element at index '0'
478// :71:21: error: use of undefined value here causes illegal behavior472// :65:21: error: use of undefined value here causes illegal behavior
479// :71:21: note: when computing vector element at index '0'473// :65:21: note: when computing vector element at index '0'
480// :71:21: error: use of undefined value here causes illegal behavior474// :65:21: error: use of undefined value here causes illegal behavior
481// :71:21: note: when computing vector element at index '0'475// :65:21: note: when computing vector element at index '0'
482// :71:21: error: use of undefined value here causes illegal behavior476// :65:21: error: use of undefined value here causes illegal behavior
483// :71:21: note: when computing vector element at index '0'477// :65:21: note: when computing vector element at index '0'
484// :75:27: error: use of undefined value here causes illegal behavior478// :69:27: error: use of undefined value here causes illegal behavior
485// :75:27: error: use of undefined value here causes illegal behavior479// :69:27: error: use of undefined value here causes illegal behavior
486// :75:27: error: use of undefined value here causes illegal behavior480// :69:27: error: use of undefined value here causes illegal behavior
487// :75:27: note: when computing vector element at index '0'481// :69:27: note: when computing vector element at index '0'
488// :75:27: error: use of undefined value here causes illegal behavior482// :69:27: error: use of undefined value here causes illegal behavior
489// :75:27: note: when computing vector element at index '0'483// :69:27: note: when computing vector element at index '0'
490// :75:27: error: use of undefined value here causes illegal behavior484// :69:27: error: use of undefined value here causes illegal behavior
491// :75:27: note: when computing vector element at index '0'485// :69:27: note: when computing vector element at index '0'
492// :75:27: error: use of undefined value here causes illegal behavior486// :69:27: error: use of undefined value here causes illegal behavior
493// :75:27: note: when computing vector element at index '0'487// :69:27: note: when computing vector element at index '0'
494// :75:27: error: use of undefined value here causes illegal behavior488// :69:27: error: use of undefined value here causes illegal behavior
495// :75:27: note: when computing vector element at index '1'489// :69:27: note: when computing vector element at index '1'
496// :75:27: error: use of undefined value here causes illegal behavior490// :69:27: error: use of undefined value here causes illegal behavior
497// :75:27: note: when computing vector element at index '1'491// :69:27: note: when computing vector element at index '1'
498// :75:27: error: use of undefined value here causes illegal behavior492// :69:27: error: use of undefined value here causes illegal behavior
499// :75:27: note: when computing vector element at index '0'493// :69:27: note: when computing vector element at index '0'
500// :75:27: error: use of undefined value here causes illegal behavior494// :69:27: error: use of undefined value here causes illegal behavior
501// :75:27: note: when computing vector element at index '0'495// :69:27: note: when computing vector element at index '0'
502// :75:27: error: use of undefined value here causes illegal behavior496// :69:27: error: use of undefined value here causes illegal behavior
503// :75:27: note: when computing vector element at index '0'497// :69:27: note: when computing vector element at index '0'
504// :75:27: error: use of undefined value here causes illegal behavior498// :69:27: error: use of undefined value here causes illegal behavior
505// :75:27: note: when computing vector element at index '0'499// :69:27: note: when computing vector element at index '0'
506// :75:27: error: use of undefined value here causes illegal behavior500// :69:27: error: use of undefined value here causes illegal behavior
507// :75:27: error: use of undefined value here causes illegal behavior501// :69:27: error: use of undefined value here causes illegal behavior
508// :75:27: error: use of undefined value here causes illegal behavior502// :69:27: error: use of undefined value here causes illegal behavior
509// :75:27: note: when computing vector element at index '0'503// :69:27: note: when computing vector element at index '0'
510// :75:27: error: use of undefined value here causes illegal behavior504// :69:27: error: use of undefined value here causes illegal behavior
511// :75:27: note: when computing vector element at index '0'505// :69:27: note: when computing vector element at index '0'
512// :75:27: error: use of undefined value here causes illegal behavior506// :69:27: error: use of undefined value here causes illegal behavior
513// :75:27: note: when computing vector element at index '0'507// :69:27: note: when computing vector element at index '0'
514// :75:27: error: use of undefined value here causes illegal behavior508// :69:27: error: use of undefined value here causes illegal behavior
515// :75:27: note: when computing vector element at index '0'509// :69:27: note: when computing vector element at index '0'
516// :75:27: error: use of undefined value here causes illegal behavior510// :69:27: error: use of undefined value here causes illegal behavior
517// :75:27: note: when computing vector element at index '1'511// :69:27: note: when computing vector element at index '1'
518// :75:27: error: use of undefined value here causes illegal behavior512// :69:27: error: use of undefined value here causes illegal behavior
519// :75:27: note: when computing vector element at index '1'513// :69:27: note: when computing vector element at index '1'
520// :75:27: error: use of undefined value here causes illegal behavior514// :69:27: error: use of undefined value here causes illegal behavior
521// :75:27: note: when computing vector element at index '0'515// :69:27: note: when computing vector element at index '0'
522// :75:27: error: use of undefined value here causes illegal behavior516// :69:27: error: use of undefined value here causes illegal behavior
523// :75:27: note: when computing vector element at index '0'517// :69:27: note: when computing vector element at index '0'
524// :75:27: error: use of undefined value here causes illegal behavior518// :69:27: error: use of undefined value here causes illegal behavior
525// :75:27: note: when computing vector element at index '0'519// :69:27: note: when computing vector element at index '0'
526// :75:27: error: use of undefined value here causes illegal behavior520// :69:27: error: use of undefined value here causes illegal behavior
527// :75:27: note: when computing vector element at index '0'521// :69:27: note: when computing vector element at index '0'
528// :75:27: error: use of undefined value here causes illegal behavior522// :69:27: error: use of undefined value here causes illegal behavior
529// :75:27: error: use of undefined value here causes illegal behavior523// :69:27: error: use of undefined value here causes illegal behavior
530// :75:27: error: use of undefined value here causes illegal behavior524// :69:27: error: use of undefined value here causes illegal behavior
531// :75:27: note: when computing vector element at index '0'525// :69:27: note: when computing vector element at index '0'
532// :75:27: error: use of undefined value here causes illegal behavior526// :69:27: error: use of undefined value here causes illegal behavior
533// :75:27: note: when computing vector element at index '0'527// :69:27: note: when computing vector element at index '0'
534// :75:27: error: use of undefined value here causes illegal behavior528// :69:27: error: use of undefined value here causes illegal behavior
535// :75:27: note: when computing vector element at index '0'529// :69:27: note: when computing vector element at index '0'
536// :75:27: error: use of undefined value here causes illegal behavior530// :69:27: error: use of undefined value here causes illegal behavior
537// :75:27: note: when computing vector element at index '0'531// :69:27: note: when computing vector element at index '0'
538// :75:27: error: use of undefined value here causes illegal behavior532// :69:27: error: use of undefined value here causes illegal behavior
539// :75:27: note: when computing vector element at index '1'533// :69:27: note: when computing vector element at index '1'
540// :75:27: error: use of undefined value here causes illegal behavior534// :69:27: error: use of undefined value here causes illegal behavior
541// :75:27: note: when computing vector element at index '1'535// :69:27: note: when computing vector element at index '1'
542// :75:27: error: use of undefined value here causes illegal behavior536// :69:27: error: use of undefined value here causes illegal behavior
543// :75:27: note: when computing vector element at index '0'537// :69:27: note: when computing vector element at index '0'
544// :75:27: error: use of undefined value here causes illegal behavior538// :69:27: error: use of undefined value here causes illegal behavior
545// :75:27: note: when computing vector element at index '0'539// :69:27: note: when computing vector element at index '0'
546// :75:27: error: use of undefined value here causes illegal behavior540// :69:27: error: use of undefined value here causes illegal behavior
547// :75:27: note: when computing vector element at index '0'541// :69:27: note: when computing vector element at index '0'
548// :75:27: error: use of undefined value here causes illegal behavior542// :69:27: error: use of undefined value here causes illegal behavior
549// :75:27: note: when computing vector element at index '0'543// :69:27: note: when computing vector element at index '0'
550// :75:27: error: use of undefined value here causes illegal behavior544// :69:27: error: use of undefined value here causes illegal behavior
551// :75:27: error: use of undefined value here causes illegal behavior545// :69:27: error: use of undefined value here causes illegal behavior
552// :75:27: error: use of undefined value here causes illegal behavior546// :69:27: error: use of undefined value here causes illegal behavior
553// :75:27: note: when computing vector element at index '0'547// :69:27: note: when computing vector element at index '0'
554// :75:27: error: use of undefined value here causes illegal behavior548// :69:27: error: use of undefined value here causes illegal behavior
555// :75:27: note: when computing vector element at index '0'549// :69:27: note: when computing vector element at index '0'
556// :75:27: error: use of undefined value here causes illegal behavior550// :69:27: error: use of undefined value here causes illegal behavior
557// :75:27: note: when computing vector element at index '0'551// :69:27: note: when computing vector element at index '0'
558// :75:27: error: use of undefined value here causes illegal behavior552// :69:27: error: use of undefined value here causes illegal behavior
559// :75:27: note: when computing vector element at index '0'553// :69:27: note: when computing vector element at index '0'
560// :75:27: error: use of undefined value here causes illegal behavior554// :69:27: error: use of undefined value here causes illegal behavior
561// :75:27: note: when computing vector element at index '1'555// :69:27: note: when computing vector element at index '1'
562// :75:27: error: use of undefined value here causes illegal behavior556// :69:27: error: use of undefined value here causes illegal behavior
563// :75:27: note: when computing vector element at index '1'557// :69:27: note: when computing vector element at index '1'
564// :75:27: error: use of undefined value here causes illegal behavior558// :69:27: error: use of undefined value here causes illegal behavior
565// :75:27: note: when computing vector element at index '0'559// :69:27: note: when computing vector element at index '0'
566// :75:27: error: use of undefined value here causes illegal behavior560// :69:27: error: use of undefined value here causes illegal behavior
567// :75:27: note: when computing vector element at index '0'561// :69:27: note: when computing vector element at index '0'
568// :75:27: error: use of undefined value here causes illegal behavior562// :69:27: error: use of undefined value here causes illegal behavior
569// :75:27: note: when computing vector element at index '0'563// :69:27: note: when computing vector element at index '0'
570// :75:27: error: use of undefined value here causes illegal behavior564// :69:27: error: use of undefined value here causes illegal behavior
571// :75:27: note: when computing vector element at index '0'565// :69:27: note: when computing vector element at index '0'
572// :75:27: error: use of undefined value here causes illegal behavior566// :69:27: error: use of undefined value here causes illegal behavior
573// :75:27: error: use of undefined value here causes illegal behavior567// :69:27: error: use of undefined value here causes illegal behavior
574// :75:27: error: use of undefined value here causes illegal behavior568// :69:27: error: use of undefined value here causes illegal behavior
575// :75:27: note: when computing vector element at index '0'569// :69:27: note: when computing vector element at index '0'
576// :75:27: error: use of undefined value here causes illegal behavior570// :69:27: error: use of undefined value here causes illegal behavior
577// :75:27: note: when computing vector element at index '0'571// :69:27: note: when computing vector element at index '0'
578// :75:27: error: use of undefined value here causes illegal behavior572// :69:27: error: use of undefined value here causes illegal behavior
579// :75:27: note: when computing vector element at index '0'573// :69:27: note: when computing vector element at index '0'
580// :75:27: error: use of undefined value here causes illegal behavior574// :69:27: error: use of undefined value here causes illegal behavior
581// :75:27: note: when computing vector element at index '0'575// :69:27: note: when computing vector element at index '0'
582// :75:27: error: use of undefined value here causes illegal behavior576// :69:27: error: use of undefined value here causes illegal behavior
583// :75:27: note: when computing vector element at index '1'577// :69:27: note: when computing vector element at index '1'
584// :75:27: error: use of undefined value here causes illegal behavior578// :69:27: error: use of undefined value here causes illegal behavior
585// :75:27: note: when computing vector element at index '1'579// :69:27: note: when computing vector element at index '1'
586// :75:27: error: use of undefined value here causes illegal behavior580// :69:27: error: use of undefined value here causes illegal behavior
587// :75:27: note: when computing vector element at index '0'581// :69:27: note: when computing vector element at index '0'
588// :75:27: error: use of undefined value here causes illegal behavior582// :69:27: error: use of undefined value here causes illegal behavior
589// :75:27: note: when computing vector element at index '0'583// :69:27: note: when computing vector element at index '0'
590// :75:27: error: use of undefined value here causes illegal behavior584// :69:27: error: use of undefined value here causes illegal behavior
591// :75:27: note: when computing vector element at index '0'585// :69:27: note: when computing vector element at index '0'
592// :75:27: error: use of undefined value here causes illegal behavior586// :69:27: error: use of undefined value here causes illegal behavior
593// :75:27: note: when computing vector element at index '0'587// :69:27: note: when computing vector element at index '0'
594// :75:27: error: use of undefined value here causes illegal behavior588// :69:27: error: use of undefined value here causes illegal behavior
595// :75:27: error: use of undefined value here causes illegal behavior589// :69:27: error: use of undefined value here causes illegal behavior
596// :75:27: error: use of undefined value here causes illegal behavior590// :69:27: error: use of undefined value here causes illegal behavior
597// :75:27: note: when computing vector element at index '0'591// :69:27: note: when computing vector element at index '0'
598// :75:27: error: use of undefined value here causes illegal behavior592// :69:27: error: use of undefined value here causes illegal behavior
599// :75:27: note: when computing vector element at index '0'593// :69:27: note: when computing vector element at index '0'
600// :75:27: error: use of undefined value here causes illegal behavior594// :69:27: error: use of undefined value here causes illegal behavior
601// :75:27: note: when computing vector element at index '0'595// :69:27: note: when computing vector element at index '0'
602// :75:27: error: use of undefined value here causes illegal behavior596// :69:27: error: use of undefined value here causes illegal behavior
603// :75:27: note: when computing vector element at index '0'597// :69:27: note: when computing vector element at index '0'
604// :75:27: error: use of undefined value here causes illegal behavior598// :69:27: error: use of undefined value here causes illegal behavior
605// :75:27: note: when computing vector element at index '1'599// :69:27: note: when computing vector element at index '1'
606// :75:27: error: use of undefined value here causes illegal behavior600// :69:27: error: use of undefined value here causes illegal behavior
607// :75:27: note: when computing vector element at index '1'601// :69:27: note: when computing vector element at index '1'
608// :75:27: error: use of undefined value here causes illegal behavior602// :69:27: error: use of undefined value here causes illegal behavior
609// :75:27: note: when computing vector element at index '0'603// :69:27: note: when computing vector element at index '0'
610// :75:27: error: use of undefined value here causes illegal behavior604// :69:27: error: use of undefined value here causes illegal behavior
611// :75:27: note: when computing vector element at index '0'605// :69:27: note: when computing vector element at index '0'
612// :75:27: error: use of undefined value here causes illegal behavior606// :69:27: error: use of undefined value here causes illegal behavior
613// :75:27: note: when computing vector element at index '0'607// :69:27: note: when computing vector element at index '0'
614// :75:27: error: use of undefined value here causes illegal behavior608// :69:27: error: use of undefined value here causes illegal behavior
615// :75:27: note: when computing vector element at index '0'609// :69:27: note: when computing vector element at index '0'
616// :75:27: error: use of undefined value here causes illegal behavior610// :69:27: error: use of undefined value here causes illegal behavior
617// :75:27: error: use of undefined value here causes illegal behavior611// :69:27: error: use of undefined value here causes illegal behavior
618// :75:27: error: use of undefined value here causes illegal behavior612// :69:27: error: use of undefined value here causes illegal behavior
619// :75:27: note: when computing vector element at index '0'613// :69:27: note: when computing vector element at index '0'
620// :75:27: error: use of undefined value here causes illegal behavior614// :69:27: error: use of undefined value here causes illegal behavior
621// :75:27: note: when computing vector element at index '0'615// :69:27: note: when computing vector element at index '0'
622// :75:27: error: use of undefined value here causes illegal behavior616// :69:27: error: use of undefined value here causes illegal behavior
623// :75:27: note: when computing vector element at index '0'617// :69:27: note: when computing vector element at index '0'
624// :75:27: error: use of undefined value here causes illegal behavior618// :69:27: error: use of undefined value here causes illegal behavior
625// :75:27: note: when computing vector element at index '0'619// :69:27: note: when computing vector element at index '0'
626// :75:27: error: use of undefined value here causes illegal behavior620// :69:27: error: use of undefined value here causes illegal behavior
627// :75:27: note: when computing vector element at index '1'621// :69:27: note: when computing vector element at index '1'
628// :75:27: error: use of undefined value here causes illegal behavior622// :69:27: error: use of undefined value here causes illegal behavior
629// :75:27: note: when computing vector element at index '1'623// :69:27: note: when computing vector element at index '1'
630// :75:27: error: use of undefined value here causes illegal behavior624// :69:27: error: use of undefined value here causes illegal behavior
631// :75:27: note: when computing vector element at index '0'625// :69:27: note: when computing vector element at index '0'
632// :75:27: error: use of undefined value here causes illegal behavior626// :69:27: error: use of undefined value here causes illegal behavior
633// :75:27: note: when computing vector element at index '0'627// :69:27: note: when computing vector element at index '0'
634// :75:27: error: use of undefined value here causes illegal behavior628// :69:27: error: use of undefined value here causes illegal behavior
635// :75:27: note: when computing vector element at index '0'629// :69:27: note: when computing vector element at index '0'
636// :75:27: error: use of undefined value here causes illegal behavior630// :69:27: error: use of undefined value here causes illegal behavior
637// :75:27: note: when computing vector element at index '0'631// :69:27: note: when computing vector element at index '0'
638// :75:27: error: use of undefined value here causes illegal behavior632// :69:27: error: use of undefined value here causes illegal behavior
639// :75:27: error: use of undefined value here causes illegal behavior633// :69:27: error: use of undefined value here causes illegal behavior
640// :75:27: error: use of undefined value here causes illegal behavior634// :69:27: error: use of undefined value here causes illegal behavior
641// :75:27: note: when computing vector element at index '0'635// :69:27: note: when computing vector element at index '0'
642// :75:27: error: use of undefined value here causes illegal behavior636// :69:27: error: use of undefined value here causes illegal behavior
643// :75:27: note: when computing vector element at index '0'637// :69:27: note: when computing vector element at index '0'
644// :75:27: error: use of undefined value here causes illegal behavior638// :69:27: error: use of undefined value here causes illegal behavior
645// :75:27: note: when computing vector element at index '0'639// :69:27: note: when computing vector element at index '0'
646// :75:27: error: use of undefined value here causes illegal behavior640// :69:27: error: use of undefined value here causes illegal behavior
647// :75:27: note: when computing vector element at index '0'641// :69:27: note: when computing vector element at index '0'
648// :75:27: error: use of undefined value here causes illegal behavior642// :69:27: error: use of undefined value here causes illegal behavior
649// :75:27: note: when computing vector element at index '1'643// :69:27: note: when computing vector element at index '1'
650// :75:27: error: use of undefined value here causes illegal behavior644// :69:27: error: use of undefined value here causes illegal behavior
651// :75:27: note: when computing vector element at index '1'645// :69:27: note: when computing vector element at index '1'
652// :75:27: error: use of undefined value here causes illegal behavior646// :69:27: error: use of undefined value here causes illegal behavior
653// :75:27: note: when computing vector element at index '0'647// :69:27: note: when computing vector element at index '0'
654// :75:27: error: use of undefined value here causes illegal behavior648// :69:27: error: use of undefined value here causes illegal behavior
655// :75:27: note: when computing vector element at index '0'649// :69:27: note: when computing vector element at index '0'
656// :75:27: error: use of undefined value here causes illegal behavior650// :69:27: error: use of undefined value here causes illegal behavior
657// :75:27: note: when computing vector element at index '0'651// :69:27: note: when computing vector element at index '0'
658// :75:27: error: use of undefined value here causes illegal behavior652// :69:27: error: use of undefined value here causes illegal behavior
659// :75:27: note: when computing vector element at index '0'653// :69:27: note: when computing vector element at index '0'
660// :75:27: error: use of undefined value here causes illegal behavior654// :69:27: error: use of undefined value here causes illegal behavior
661// :75:27: error: use of undefined value here causes illegal behavior655// :69:27: error: use of undefined value here causes illegal behavior
662// :75:27: error: use of undefined value here causes illegal behavior656// :69:27: error: use of undefined value here causes illegal behavior
663// :75:27: note: when computing vector element at index '0'657// :69:27: note: when computing vector element at index '0'
664// :75:27: error: use of undefined value here causes illegal behavior658// :69:27: error: use of undefined value here causes illegal behavior
665// :75:27: note: when computing vector element at index '0'659// :69:27: note: when computing vector element at index '0'
666// :75:27: error: use of undefined value here causes illegal behavior660// :69:27: error: use of undefined value here causes illegal behavior
667// :75:27: note: when computing vector element at index '0'661// :69:27: note: when computing vector element at index '0'
668// :75:27: error: use of undefined value here causes illegal behavior662// :69:27: error: use of undefined value here causes illegal behavior
669// :75:27: note: when computing vector element at index '0'663// :69:27: note: when computing vector element at index '0'
670// :75:27: error: use of undefined value here causes illegal behavior664// :69:27: error: use of undefined value here causes illegal behavior
671// :75:27: note: when computing vector element at index '1'665// :69:27: note: when computing vector element at index '1'
672// :75:27: error: use of undefined value here causes illegal behavior666// :69:27: error: use of undefined value here causes illegal behavior
673// :75:27: note: when computing vector element at index '1'667// :69:27: note: when computing vector element at index '1'
674// :75:27: error: use of undefined value here causes illegal behavior668// :69:27: error: use of undefined value here causes illegal behavior
675// :75:27: note: when computing vector element at index '0'669// :69:27: note: when computing vector element at index '0'
676// :75:27: error: use of undefined value here causes illegal behavior670// :69:27: error: use of undefined value here causes illegal behavior
677// :75:27: note: when computing vector element at index '0'671// :69:27: note: when computing vector element at index '0'
678// :75:27: error: use of undefined value here causes illegal behavior672// :69:27: error: use of undefined value here causes illegal behavior
679// :75:27: note: when computing vector element at index '0'673// :69:27: note: when computing vector element at index '0'
680// :75:27: error: use of undefined value here causes illegal behavior674// :69:27: error: use of undefined value here causes illegal behavior
681// :75:27: note: when computing vector element at index '0'675// :69:27: note: when computing vector element at index '0'
682// :75:27: error: use of undefined value here causes illegal behavior676// :69:27: error: use of undefined value here causes illegal behavior
683// :75:27: error: use of undefined value here causes illegal behavior677// :69:27: error: use of undefined value here causes illegal behavior
684// :75:27: error: use of undefined value here causes illegal behavior678// :69:27: error: use of undefined value here causes illegal behavior
685// :75:27: note: when computing vector element at index '0'679// :69:27: note: when computing vector element at index '0'
686// :75:27: error: use of undefined value here causes illegal behavior680// :69:27: error: use of undefined value here causes illegal behavior
687// :75:27: note: when computing vector element at index '0'681// :69:27: note: when computing vector element at index '0'
688// :75:27: error: use of undefined value here causes illegal behavior682// :69:27: error: use of undefined value here causes illegal behavior
689// :75:27: note: when computing vector element at index '0'683// :69:27: note: when computing vector element at index '0'
690// :75:27: error: use of undefined value here causes illegal behavior684// :69:27: error: use of undefined value here causes illegal behavior
691// :75:27: note: when computing vector element at index '0'685// :69:27: note: when computing vector element at index '0'
692// :75:27: error: use of undefined value here causes illegal behavior686// :69:27: error: use of undefined value here causes illegal behavior
693// :75:27: note: when computing vector element at index '1'687// :69:27: note: when computing vector element at index '1'
694// :75:27: error: use of undefined value here causes illegal behavior688// :69:27: error: use of undefined value here causes illegal behavior
695// :75:27: note: when computing vector element at index '1'689// :69:27: note: when computing vector element at index '1'
696// :75:27: error: use of undefined value here causes illegal behavior690// :69:27: error: use of undefined value here causes illegal behavior
697// :75:27: note: when computing vector element at index '0'691// :69:27: note: when computing vector element at index '0'
698// :75:27: error: use of undefined value here causes illegal behavior692// :69:27: error: use of undefined value here causes illegal behavior
699// :75:27: note: when computing vector element at index '0'693// :69:27: note: when computing vector element at index '0'
700// :75:27: error: use of undefined value here causes illegal behavior694// :69:27: error: use of undefined value here causes illegal behavior
701// :75:27: note: when computing vector element at index '0'695// :69:27: note: when computing vector element at index '0'
702// :75:27: error: use of undefined value here causes illegal behavior696// :69:27: error: use of undefined value here causes illegal behavior
703// :75:27: note: when computing vector element at index '0'697// :69:27: note: when computing vector element at index '0'
704// :75:27: error: use of undefined value here causes illegal behavior698// :69:27: error: use of undefined value here causes illegal behavior
705// :75:27: error: use of undefined value here causes illegal behavior699// :69:27: error: use of undefined value here causes illegal behavior
706// :75:27: error: use of undefined value here causes illegal behavior700// :69:27: error: use of undefined value here causes illegal behavior
707// :75:27: note: when computing vector element at index '0'701// :69:27: note: when computing vector element at index '0'
708// :75:27: error: use of undefined value here causes illegal behavior702// :69:27: error: use of undefined value here causes illegal behavior
709// :75:27: note: when computing vector element at index '0'703// :69:27: note: when computing vector element at index '0'
710// :75:27: error: use of undefined value here causes illegal behavior704// :69:27: error: use of undefined value here causes illegal behavior
711// :75:27: note: when computing vector element at index '0'705// :69:27: note: when computing vector element at index '0'
712// :75:27: error: use of undefined value here causes illegal behavior706// :69:27: error: use of undefined value here causes illegal behavior
713// :75:27: note: when computing vector element at index '0'707// :69:27: note: when computing vector element at index '0'
714// :75:27: error: use of undefined value here causes illegal behavior708// :69:27: error: use of undefined value here causes illegal behavior
715// :75:27: note: when computing vector element at index '1'709// :69:27: note: when computing vector element at index '1'
716// :75:27: error: use of undefined value here causes illegal behavior710// :69:27: error: use of undefined value here causes illegal behavior
717// :75:27: note: when computing vector element at index '1'711// :69:27: note: when computing vector element at index '1'
718// :75:27: error: use of undefined value here causes illegal behavior712// :69:27: error: use of undefined value here causes illegal behavior
719// :75:27: note: when computing vector element at index '0'713// :69:27: note: when computing vector element at index '0'
720// :75:27: error: use of undefined value here causes illegal behavior714// :69:27: error: use of undefined value here causes illegal behavior
721// :75:27: note: when computing vector element at index '0'715// :69:27: note: when computing vector element at index '0'
722// :75:27: error: use of undefined value here causes illegal behavior716// :69:27: error: use of undefined value here causes illegal behavior
723// :75:27: note: when computing vector element at index '0'717// :69:27: note: when computing vector element at index '0'
724// :75:27: error: use of undefined value here causes illegal behavior718// :69:27: error: use of undefined value here causes illegal behavior
725// :75:27: note: when computing vector element at index '0'719// :69:27: note: when computing vector element at index '0'
726// :75:30: error: use of undefined value here causes illegal behavior720// :69:30: error: use of undefined value here causes illegal behavior
727// :75:30: note: when computing vector element at index '0'721// :69:30: note: when computing vector element at index '0'
728// :75:30: error: use of undefined value here causes illegal behavior722// :69:30: error: use of undefined value here causes illegal behavior
729// :75:30: note: when computing vector element at index '0'723// :69:30: note: when computing vector element at index '0'
730// :75:30: error: use of undefined value here causes illegal behavior724// :69:30: error: use of undefined value here causes illegal behavior
731// :75:30: note: when computing vector element at index '0'725// :69:30: note: when computing vector element at index '0'
732// :75:30: error: use of undefined value here causes illegal behavior726// :69:30: error: use of undefined value here causes illegal behavior
733// :75:30: note: when computing vector element at index '0'727// :69:30: note: when computing vector element at index '0'
734// :75:30: error: use of undefined value here causes illegal behavior728// :69:30: error: use of undefined value here causes illegal behavior
735// :75:30: note: when computing vector element at index '0'729// :69:30: note: when computing vector element at index '0'
736// :75:30: error: use of undefined value here causes illegal behavior730// :69:30: error: use of undefined value here causes illegal behavior
737// :75:30: note: when computing vector element at index '0'731// :69:30: note: when computing vector element at index '0'
738// :75:30: error: use of undefined value here causes illegal behavior732// :69:30: error: use of undefined value here causes illegal behavior
739// :75:30: note: when computing vector element at index '0'733// :69:30: note: when computing vector element at index '0'
740// :75:30: error: use of undefined value here causes illegal behavior734// :69:30: error: use of undefined value here causes illegal behavior
741// :75:30: note: when computing vector element at index '0'735// :69:30: note: when computing vector element at index '0'
742// :75:30: error: use of undefined value here causes illegal behavior736// :69:30: error: use of undefined value here causes illegal behavior
743// :75:30: note: when computing vector element at index '0'737// :69:30: note: when computing vector element at index '0'
744// :75:30: error: use of undefined value here causes illegal behavior738// :69:30: error: use of undefined value here causes illegal behavior
745// :75:30: note: when computing vector element at index '0'739// :69:30: note: when computing vector element at index '0'
746// :75:30: error: use of undefined value here causes illegal behavior740// :69:30: error: use of undefined value here causes illegal behavior
747// :75:30: note: when computing vector element at index '0'741// :69:30: note: when computing vector element at index '0'
748// :75:30: error: use of undefined value here causes illegal behavior742// :69:30: error: use of undefined value here causes illegal behavior
749// :75:30: note: when computing vector element at index '0'743// :69:30: note: when computing vector element at index '0'
750// :75:30: error: use of undefined value here causes illegal behavior744// :69:30: error: use of undefined value here causes illegal behavior
751// :75:30: note: when computing vector element at index '0'745// :69:30: note: when computing vector element at index '0'
752// :75:30: error: use of undefined value here causes illegal behavior746// :69:30: error: use of undefined value here causes illegal behavior
753// :75:30: note: when computing vector element at index '0'747// :69:30: note: when computing vector element at index '0'
754// :75:30: error: use of undefined value here causes illegal behavior748// :69:30: error: use of undefined value here causes illegal behavior
755// :75:30: note: when computing vector element at index '0'749// :69:30: note: when computing vector element at index '0'
756// :75:30: error: use of undefined value here causes illegal behavior750// :69:30: error: use of undefined value here causes illegal behavior
757// :75:30: note: when computing vector element at index '0'751// :69:30: note: when computing vector element at index '0'
758// :75:30: error: use of undefined value here causes illegal behavior752// :69:30: error: use of undefined value here causes illegal behavior
759// :75:30: note: when computing vector element at index '0'753// :69:30: note: when computing vector element at index '0'
760// :75:30: error: use of undefined value here causes illegal behavior754// :69:30: error: use of undefined value here causes illegal behavior
761// :75:30: note: when computing vector element at index '0'755// :69:30: note: when computing vector element at index '0'
762// :75:30: error: use of undefined value here causes illegal behavior756// :69:30: error: use of undefined value here causes illegal behavior
763// :75:30: note: when computing vector element at index '0'757// :69:30: note: when computing vector element at index '0'
764// :75:30: error: use of undefined value here causes illegal behavior758// :69:30: error: use of undefined value here causes illegal behavior
765// :75:30: note: when computing vector element at index '0'759// :69:30: note: when computing vector element at index '0'
766// :75:30: error: use of undefined value here causes illegal behavior760// :69:30: error: use of undefined value here causes illegal behavior
767// :75:30: note: when computing vector element at index '0'761// :69:30: note: when computing vector element at index '0'
768// :75:30: error: use of undefined value here causes illegal behavior762// :69:30: error: use of undefined value here causes illegal behavior
769// :75:30: note: when computing vector element at index '0'763// :69:30: note: when computing vector element at index '0'
770// :79:27: error: use of undefined value here causes illegal behavior764// :73:27: error: use of undefined value here causes illegal behavior
771// :79:27: error: use of undefined value here causes illegal behavior765// :73:27: error: use of undefined value here causes illegal behavior
772// :79:27: error: use of undefined value here causes illegal behavior766// :73:27: error: use of undefined value here causes illegal behavior
773// :79:27: note: when computing vector element at index '0'767// :73:27: note: when computing vector element at index '0'
774// :79:27: error: use of undefined value here causes illegal behavior768// :73:27: error: use of undefined value here causes illegal behavior
775// :79:27: note: when computing vector element at index '0'769// :73:27: note: when computing vector element at index '0'
776// :79:27: error: use of undefined value here causes illegal behavior770// :73:27: error: use of undefined value here causes illegal behavior
777// :79:27: note: when computing vector element at index '0'771// :73:27: note: when computing vector element at index '0'
778// :79:27: error: use of undefined value here causes illegal behavior772// :73:27: error: use of undefined value here causes illegal behavior
779// :79:27: note: when computing vector element at index '0'773// :73:27: note: when computing vector element at index '0'
780// :79:27: error: use of undefined value here causes illegal behavior774// :73:27: error: use of undefined value here causes illegal behavior
781// :79:27: note: when computing vector element at index '1'775// :73:27: note: when computing vector element at index '1'
782// :79:27: error: use of undefined value here causes illegal behavior776// :73:27: error: use of undefined value here causes illegal behavior
783// :79:27: note: when computing vector element at index '1'777// :73:27: note: when computing vector element at index '1'
784// :79:27: error: use of undefined value here causes illegal behavior778// :73:27: error: use of undefined value here causes illegal behavior
785// :79:27: note: when computing vector element at index '0'779// :73:27: note: when computing vector element at index '0'
786// :79:27: error: use of undefined value here causes illegal behavior780// :73:27: error: use of undefined value here causes illegal behavior
787// :79:27: note: when computing vector element at index '0'781// :73:27: note: when computing vector element at index '0'
788// :79:27: error: use of undefined value here causes illegal behavior782// :73:27: error: use of undefined value here causes illegal behavior
789// :79:27: note: when computing vector element at index '0'783// :73:27: note: when computing vector element at index '0'
790// :79:27: error: use of undefined value here causes illegal behavior784// :73:27: error: use of undefined value here causes illegal behavior
791// :79:27: note: when computing vector element at index '0'785// :73:27: note: when computing vector element at index '0'
792// :79:27: error: use of undefined value here causes illegal behavior786// :73:27: error: use of undefined value here causes illegal behavior
793// :79:27: error: use of undefined value here causes illegal behavior787// :73:27: error: use of undefined value here causes illegal behavior
794// :79:27: error: use of undefined value here causes illegal behavior788// :73:27: error: use of undefined value here causes illegal behavior
795// :79:27: note: when computing vector element at index '0'789// :73:27: note: when computing vector element at index '0'
796// :79:27: error: use of undefined value here causes illegal behavior790// :73:27: error: use of undefined value here causes illegal behavior
797// :79:27: note: when computing vector element at index '0'791// :73:27: note: when computing vector element at index '0'
798// :79:27: error: use of undefined value here causes illegal behavior792// :73:27: error: use of undefined value here causes illegal behavior
799// :79:27: note: when computing vector element at index '0'793// :73:27: note: when computing vector element at index '0'
800// :79:27: error: use of undefined value here causes illegal behavior794// :73:27: error: use of undefined value here causes illegal behavior
801// :79:27: note: when computing vector element at index '0'795// :73:27: note: when computing vector element at index '0'
802// :79:27: error: use of undefined value here causes illegal behavior796// :73:27: error: use of undefined value here causes illegal behavior
803// :79:27: note: when computing vector element at index '1'797// :73:27: note: when computing vector element at index '1'
804// :79:27: error: use of undefined value here causes illegal behavior798// :73:27: error: use of undefined value here causes illegal behavior
805// :79:27: note: when computing vector element at index '1'799// :73:27: note: when computing vector element at index '1'
806// :79:27: error: use of undefined value here causes illegal behavior800// :73:27: error: use of undefined value here causes illegal behavior
807// :79:27: note: when computing vector element at index '0'801// :73:27: note: when computing vector element at index '0'
808// :79:27: error: use of undefined value here causes illegal behavior802// :73:27: error: use of undefined value here causes illegal behavior
809// :79:27: note: when computing vector element at index '0'803// :73:27: note: when computing vector element at index '0'
810// :79:27: error: use of undefined value here causes illegal behavior804// :73:27: error: use of undefined value here causes illegal behavior
811// :79:27: note: when computing vector element at index '0'805// :73:27: note: when computing vector element at index '0'
812// :79:27: error: use of undefined value here causes illegal behavior806// :73:27: error: use of undefined value here causes illegal behavior
813// :79:27: note: when computing vector element at index '0'807// :73:27: note: when computing vector element at index '0'
814// :79:27: error: use of undefined value here causes illegal behavior808// :73:27: error: use of undefined value here causes illegal behavior
815// :79:27: error: use of undefined value here causes illegal behavior809// :73:27: error: use of undefined value here causes illegal behavior
816// :79:27: error: use of undefined value here causes illegal behavior810// :73:27: error: use of undefined value here causes illegal behavior
817// :79:27: note: when computing vector element at index '0'811// :73:27: note: when computing vector element at index '0'
818// :79:27: error: use of undefined value here causes illegal behavior812// :73:27: error: use of undefined value here causes illegal behavior
819// :79:27: note: when computing vector element at index '0'813// :73:27: note: when computing vector element at index '0'
820// :79:27: error: use of undefined value here causes illegal behavior814// :73:27: error: use of undefined value here causes illegal behavior
821// :79:27: note: when computing vector element at index '0'815// :73:27: note: when computing vector element at index '0'
822// :79:27: error: use of undefined value here causes illegal behavior816// :73:27: error: use of undefined value here causes illegal behavior
823// :79:27: note: when computing vector element at index '0'817// :73:27: note: when computing vector element at index '0'
824// :79:27: error: use of undefined value here causes illegal behavior818// :73:27: error: use of undefined value here causes illegal behavior
825// :79:27: note: when computing vector element at index '1'819// :73:27: note: when computing vector element at index '1'
826// :79:27: error: use of undefined value here causes illegal behavior820// :73:27: error: use of undefined value here causes illegal behavior
827// :79:27: note: when computing vector element at index '1'821// :73:27: note: when computing vector element at index '1'
828// :79:27: error: use of undefined value here causes illegal behavior822// :73:27: error: use of undefined value here causes illegal behavior
829// :79:27: note: when computing vector element at index '0'823// :73:27: note: when computing vector element at index '0'
830// :79:27: error: use of undefined value here causes illegal behavior824// :73:27: error: use of undefined value here causes illegal behavior
831// :79:27: note: when computing vector element at index '0'825// :73:27: note: when computing vector element at index '0'
832// :79:27: error: use of undefined value here causes illegal behavior826// :73:27: error: use of undefined value here causes illegal behavior
833// :79:27: note: when computing vector element at index '0'827// :73:27: note: when computing vector element at index '0'
834// :79:27: error: use of undefined value here causes illegal behavior828// :73:27: error: use of undefined value here causes illegal behavior
835// :79:27: note: when computing vector element at index '0'829// :73:27: note: when computing vector element at index '0'
836// :79:27: error: use of undefined value here causes illegal behavior830// :73:27: error: use of undefined value here causes illegal behavior
837// :79:27: error: use of undefined value here causes illegal behavior831// :73:27: error: use of undefined value here causes illegal behavior
838// :79:27: error: use of undefined value here causes illegal behavior832// :73:27: error: use of undefined value here causes illegal behavior
839// :79:27: note: when computing vector element at index '0'833// :73:27: note: when computing vector element at index '0'
840// :79:27: error: use of undefined value here causes illegal behavior834// :73:27: error: use of undefined value here causes illegal behavior
841// :79:27: note: when computing vector element at index '0'835// :73:27: note: when computing vector element at index '0'
842// :79:27: error: use of undefined value here causes illegal behavior836// :73:27: error: use of undefined value here causes illegal behavior
843// :79:27: note: when computing vector element at index '0'837// :73:27: note: when computing vector element at index '0'
844// :79:27: error: use of undefined value here causes illegal behavior838// :73:27: error: use of undefined value here causes illegal behavior
845// :79:27: note: when computing vector element at index '0'839// :73:27: note: when computing vector element at index '0'
846// :79:27: error: use of undefined value here causes illegal behavior840// :73:27: error: use of undefined value here causes illegal behavior
847// :79:27: note: when computing vector element at index '1'841// :73:27: note: when computing vector element at index '1'
848// :79:27: error: use of undefined value here causes illegal behavior842// :73:27: error: use of undefined value here causes illegal behavior
849// :79:27: note: when computing vector element at index '1'843// :73:27: note: when computing vector element at index '1'
850// :79:27: error: use of undefined value here causes illegal behavior844// :73:27: error: use of undefined value here causes illegal behavior
851// :79:27: note: when computing vector element at index '0'845// :73:27: note: when computing vector element at index '0'
852// :79:27: error: use of undefined value here causes illegal behavior846// :73:27: error: use of undefined value here causes illegal behavior
853// :79:27: note: when computing vector element at index '0'847// :73:27: note: when computing vector element at index '0'
854// :79:27: error: use of undefined value here causes illegal behavior848// :73:27: error: use of undefined value here causes illegal behavior
855// :79:27: note: when computing vector element at index '0'849// :73:27: note: when computing vector element at index '0'
856// :79:27: error: use of undefined value here causes illegal behavior850// :73:27: error: use of undefined value here causes illegal behavior
857// :79:27: note: when computing vector element at index '0'851// :73:27: note: when computing vector element at index '0'
858// :79:27: error: use of undefined value here causes illegal behavior852// :73:27: error: use of undefined value here causes illegal behavior
859// :79:27: error: use of undefined value here causes illegal behavior853// :73:27: error: use of undefined value here causes illegal behavior
860// :79:27: error: use of undefined value here causes illegal behavior854// :73:27: error: use of undefined value here causes illegal behavior
861// :79:27: note: when computing vector element at index '0'855// :73:27: note: when computing vector element at index '0'
862// :79:27: error: use of undefined value here causes illegal behavior856// :73:27: error: use of undefined value here causes illegal behavior
863// :79:27: note: when computing vector element at index '0'857// :73:27: note: when computing vector element at index '0'
864// :79:27: error: use of undefined value here causes illegal behavior858// :73:27: error: use of undefined value here causes illegal behavior
865// :79:27: note: when computing vector element at index '0'859// :73:27: note: when computing vector element at index '0'
866// :79:27: error: use of undefined value here causes illegal behavior860// :73:27: error: use of undefined value here causes illegal behavior
867// :79:27: note: when computing vector element at index '0'861// :73:27: note: when computing vector element at index '0'
868// :79:27: error: use of undefined value here causes illegal behavior862// :73:27: error: use of undefined value here causes illegal behavior
869// :79:27: note: when computing vector element at index '1'863// :73:27: note: when computing vector element at index '1'
870// :79:27: error: use of undefined value here causes illegal behavior864// :73:27: error: use of undefined value here causes illegal behavior
871// :79:27: note: when computing vector element at index '1'865// :73:27: note: when computing vector element at index '1'
872// :79:27: error: use of undefined value here causes illegal behavior866// :73:27: error: use of undefined value here causes illegal behavior
873// :79:27: note: when computing vector element at index '0'867// :73:27: note: when computing vector element at index '0'
874// :79:27: error: use of undefined value here causes illegal behavior868// :73:27: error: use of undefined value here causes illegal behavior
875// :79:27: note: when computing vector element at index '0'869// :73:27: note: when computing vector element at index '0'
876// :79:27: error: use of undefined value here causes illegal behavior870// :73:27: error: use of undefined value here causes illegal behavior
877// :79:27: note: when computing vector element at index '0'871// :73:27: note: when computing vector element at index '0'
878// :79:27: error: use of undefined value here causes illegal behavior872// :73:27: error: use of undefined value here causes illegal behavior
879// :79:27: note: when computing vector element at index '0'873// :73:27: note: when computing vector element at index '0'
880// :79:27: error: use of undefined value here causes illegal behavior874// :73:27: error: use of undefined value here causes illegal behavior
881// :79:27: error: use of undefined value here causes illegal behavior875// :73:27: error: use of undefined value here causes illegal behavior
882// :79:27: error: use of undefined value here causes illegal behavior876// :73:27: error: use of undefined value here causes illegal behavior
883// :79:27: note: when computing vector element at index '0'877// :73:27: note: when computing vector element at index '0'
884// :79:27: error: use of undefined value here causes illegal behavior878// :73:27: error: use of undefined value here causes illegal behavior
885// :79:27: note: when computing vector element at index '0'879// :73:27: note: when computing vector element at index '0'
886// :79:27: error: use of undefined value here causes illegal behavior880// :73:27: error: use of undefined value here causes illegal behavior
887// :79:27: note: when computing vector element at index '0'881// :73:27: note: when computing vector element at index '0'
888// :79:27: error: use of undefined value here causes illegal behavior882// :73:27: error: use of undefined value here causes illegal behavior
889// :79:27: note: when computing vector element at index '0'883// :73:27: note: when computing vector element at index '0'
890// :79:27: error: use of undefined value here causes illegal behavior884// :73:27: error: use of undefined value here causes illegal behavior
891// :79:27: note: when computing vector element at index '1'885// :73:27: note: when computing vector element at index '1'
892// :79:27: error: use of undefined value here causes illegal behavior886// :73:27: error: use of undefined value here causes illegal behavior
893// :79:27: note: when computing vector element at index '1'887// :73:27: note: when computing vector element at index '1'
894// :79:27: error: use of undefined value here causes illegal behavior888// :73:27: error: use of undefined value here causes illegal behavior
895// :79:27: note: when computing vector element at index '0'889// :73:27: note: when computing vector element at index '0'
896// :79:27: error: use of undefined value here causes illegal behavior890// :73:27: error: use of undefined value here causes illegal behavior
897// :79:27: note: when computing vector element at index '0'891// :73:27: note: when computing vector element at index '0'
898// :79:27: error: use of undefined value here causes illegal behavior892// :73:27: error: use of undefined value here causes illegal behavior
899// :79:27: note: when computing vector element at index '0'893// :73:27: note: when computing vector element at index '0'
900// :79:27: error: use of undefined value here causes illegal behavior894// :73:27: error: use of undefined value here causes illegal behavior
901// :79:27: note: when computing vector element at index '0'895// :73:27: note: when computing vector element at index '0'
902// :79:27: error: use of undefined value here causes illegal behavior896// :73:27: error: use of undefined value here causes illegal behavior
903// :79:27: error: use of undefined value here causes illegal behavior897// :73:27: error: use of undefined value here causes illegal behavior
904// :79:27: error: use of undefined value here causes illegal behavior898// :73:27: error: use of undefined value here causes illegal behavior
905// :79:27: note: when computing vector element at index '0'899// :73:27: note: when computing vector element at index '0'
906// :79:27: error: use of undefined value here causes illegal behavior900// :73:27: error: use of undefined value here causes illegal behavior
907// :79:27: note: when computing vector element at index '0'901// :73:27: note: when computing vector element at index '0'
908// :79:27: error: use of undefined value here causes illegal behavior902// :73:27: error: use of undefined value here causes illegal behavior
909// :79:27: note: when computing vector element at index '0'903// :73:27: note: when computing vector element at index '0'
910// :79:27: error: use of undefined value here causes illegal behavior904// :73:27: error: use of undefined value here causes illegal behavior
911// :79:27: note: when computing vector element at index '0'905// :73:27: note: when computing vector element at index '0'
912// :79:27: error: use of undefined value here causes illegal behavior906// :73:27: error: use of undefined value here causes illegal behavior
913// :79:27: note: when computing vector element at index '1'907// :73:27: note: when computing vector element at index '1'
914// :79:27: error: use of undefined value here causes illegal behavior908// :73:27: error: use of undefined value here causes illegal behavior
915// :79:27: note: when computing vector element at index '1'909// :73:27: note: when computing vector element at index '1'
916// :79:27: error: use of undefined value here causes illegal behavior910// :73:27: error: use of undefined value here causes illegal behavior
917// :79:27: note: when computing vector element at index '0'911// :73:27: note: when computing vector element at index '0'
918// :79:27: error: use of undefined value here causes illegal behavior912// :73:27: error: use of undefined value here causes illegal behavior
919// :79:27: note: when computing vector element at index '0'913// :73:27: note: when computing vector element at index '0'
920// :79:27: error: use of undefined value here causes illegal behavior914// :73:27: error: use of undefined value here causes illegal behavior
921// :79:27: note: when computing vector element at index '0'915// :73:27: note: when computing vector element at index '0'
922// :79:27: error: use of undefined value here causes illegal behavior916// :73:27: error: use of undefined value here causes illegal behavior
923// :79:27: note: when computing vector element at index '0'917// :73:27: note: when computing vector element at index '0'
924// :79:27: error: use of undefined value here causes illegal behavior918// :73:27: error: use of undefined value here causes illegal behavior
925// :79:27: error: use of undefined value here causes illegal behavior919// :73:27: error: use of undefined value here causes illegal behavior
926// :79:27: error: use of undefined value here causes illegal behavior920// :73:27: error: use of undefined value here causes illegal behavior
927// :79:27: note: when computing vector element at index '0'921// :73:27: note: when computing vector element at index '0'
928// :79:27: error: use of undefined value here causes illegal behavior922// :73:27: error: use of undefined value here causes illegal behavior
929// :79:27: note: when computing vector element at index '0'923// :73:27: note: when computing vector element at index '0'
930// :79:27: error: use of undefined value here causes illegal behavior924// :73:27: error: use of undefined value here causes illegal behavior
931// :79:27: note: when computing vector element at index '0'925// :73:27: note: when computing vector element at index '0'
932// :79:27: error: use of undefined value here causes illegal behavior926// :73:27: error: use of undefined value here causes illegal behavior
933// :79:27: note: when computing vector element at index '0'927// :73:27: note: when computing vector element at index '0'
934// :79:27: error: use of undefined value here causes illegal behavior928// :73:27: error: use of undefined value here causes illegal behavior
935// :79:27: note: when computing vector element at index '1'929// :73:27: note: when computing vector element at index '1'
936// :79:27: error: use of undefined value here causes illegal behavior930// :73:27: error: use of undefined value here causes illegal behavior
937// :79:27: note: when computing vector element at index '1'931// :73:27: note: when computing vector element at index '1'
938// :79:27: error: use of undefined value here causes illegal behavior932// :73:27: error: use of undefined value here causes illegal behavior
939// :79:27: note: when computing vector element at index '0'933// :73:27: note: when computing vector element at index '0'
940// :79:27: error: use of undefined value here causes illegal behavior934// :73:27: error: use of undefined value here causes illegal behavior
941// :79:27: note: when computing vector element at index '0'935// :73:27: note: when computing vector element at index '0'
942// :79:27: error: use of undefined value here causes illegal behavior936// :73:27: error: use of undefined value here causes illegal behavior
943// :79:27: note: when computing vector element at index '0'937// :73:27: note: when computing vector element at index '0'
944// :79:27: error: use of undefined value here causes illegal behavior938// :73:27: error: use of undefined value here causes illegal behavior
945// :79:27: note: when computing vector element at index '0'939// :73:27: note: when computing vector element at index '0'
946// :79:27: error: use of undefined value here causes illegal behavior940// :73:27: error: use of undefined value here causes illegal behavior
947// :79:27: error: use of undefined value here causes illegal behavior941// :73:27: error: use of undefined value here causes illegal behavior
948// :79:27: error: use of undefined value here causes illegal behavior942// :73:27: error: use of undefined value here causes illegal behavior
949// :79:27: note: when computing vector element at index '0'943// :73:27: note: when computing vector element at index '0'
950// :79:27: error: use of undefined value here causes illegal behavior944// :73:27: error: use of undefined value here causes illegal behavior
951// :79:27: note: when computing vector element at index '0'945// :73:27: note: when computing vector element at index '0'
952// :79:27: error: use of undefined value here causes illegal behavior946// :73:27: error: use of undefined value here causes illegal behavior
953// :79:27: note: when computing vector element at index '0'947// :73:27: note: when computing vector element at index '0'
954// :79:27: error: use of undefined value here causes illegal behavior948// :73:27: error: use of undefined value here causes illegal behavior
955// :79:27: note: when computing vector element at index '0'949// :73:27: note: when computing vector element at index '0'
956// :79:27: error: use of undefined value here causes illegal behavior950// :73:27: error: use of undefined value here causes illegal behavior
957// :79:27: note: when computing vector element at index '1'951// :73:27: note: when computing vector element at index '1'
958// :79:27: error: use of undefined value here causes illegal behavior952// :73:27: error: use of undefined value here causes illegal behavior
959// :79:27: note: when computing vector element at index '1'953// :73:27: note: when computing vector element at index '1'
960// :79:27: error: use of undefined value here causes illegal behavior954// :73:27: error: use of undefined value here causes illegal behavior
961// :79:27: note: when computing vector element at index '0'955// :73:27: note: when computing vector element at index '0'
962// :79:27: error: use of undefined value here causes illegal behavior956// :73:27: error: use of undefined value here causes illegal behavior
963// :79:27: note: when computing vector element at index '0'957// :73:27: note: when computing vector element at index '0'
964// :79:27: error: use of undefined value here causes illegal behavior958// :73:27: error: use of undefined value here causes illegal behavior
965// :79:27: note: when computing vector element at index '0'959// :73:27: note: when computing vector element at index '0'
966// :79:27: error: use of undefined value here causes illegal behavior960// :73:27: error: use of undefined value here causes illegal behavior
967// :79:27: note: when computing vector element at index '0'961// :73:27: note: when computing vector element at index '0'
968// :79:27: error: use of undefined value here causes illegal behavior962// :73:27: error: use of undefined value here causes illegal behavior
969// :79:27: error: use of undefined value here causes illegal behavior963// :73:27: error: use of undefined value here causes illegal behavior
970// :79:27: error: use of undefined value here causes illegal behavior964// :73:27: error: use of undefined value here causes illegal behavior
971// :79:27: note: when computing vector element at index '0'965// :73:27: note: when computing vector element at index '0'
972// :79:27: error: use of undefined value here causes illegal behavior966// :73:27: error: use of undefined value here causes illegal behavior
973// :79:27: note: when computing vector element at index '0'967// :73:27: note: when computing vector element at index '0'
974// :79:27: error: use of undefined value here causes illegal behavior968// :73:27: error: use of undefined value here causes illegal behavior
975// :79:27: note: when computing vector element at index '0'969// :73:27: note: when computing vector element at index '0'
976// :79:27: error: use of undefined value here causes illegal behavior970// :73:27: error: use of undefined value here causes illegal behavior
977// :79:27: note: when computing vector element at index '0'971// :73:27: note: when computing vector element at index '0'
978// :79:27: error: use of undefined value here causes illegal behavior972// :73:27: error: use of undefined value here causes illegal behavior
979// :79:27: note: when computing vector element at index '1'973// :73:27: note: when computing vector element at index '1'
980// :79:27: error: use of undefined value here causes illegal behavior974// :73:27: error: use of undefined value here causes illegal behavior
981// :79:27: note: when computing vector element at index '1'975// :73:27: note: when computing vector element at index '1'
982// :79:27: error: use of undefined value here causes illegal behavior976// :73:27: error: use of undefined value here causes illegal behavior
983// :79:27: note: when computing vector element at index '0'977// :73:27: note: when computing vector element at index '0'
984// :79:27: error: use of undefined value here causes illegal behavior978// :73:27: error: use of undefined value here causes illegal behavior
985// :79:27: note: when computing vector element at index '0'979// :73:27: note: when computing vector element at index '0'
986// :79:27: error: use of undefined value here causes illegal behavior980// :73:27: error: use of undefined value here causes illegal behavior
987// :79:27: note: when computing vector element at index '0'981// :73:27: note: when computing vector element at index '0'
988// :79:27: error: use of undefined value here causes illegal behavior982// :73:27: error: use of undefined value here causes illegal behavior
989// :79:27: note: when computing vector element at index '0'983// :73:27: note: when computing vector element at index '0'
990// :79:27: error: use of undefined value here causes illegal behavior984// :73:27: error: use of undefined value here causes illegal behavior
991// :79:27: error: use of undefined value here causes illegal behavior985// :73:27: error: use of undefined value here causes illegal behavior
992// :79:27: error: use of undefined value here causes illegal behavior986// :73:27: error: use of undefined value here causes illegal behavior
993// :79:27: note: when computing vector element at index '0'987// :73:27: note: when computing vector element at index '0'
994// :79:27: error: use of undefined value here causes illegal behavior988// :73:27: error: use of undefined value here causes illegal behavior
995// :79:27: note: when computing vector element at index '0'989// :73:27: note: when computing vector element at index '0'
996// :79:27: error: use of undefined value here causes illegal behavior990// :73:27: error: use of undefined value here causes illegal behavior
997// :79:27: note: when computing vector element at index '0'991// :73:27: note: when computing vector element at index '0'
998// :79:27: error: use of undefined value here causes illegal behavior992// :73:27: error: use of undefined value here causes illegal behavior
999// :79:27: note: when computing vector element at index '0'993// :73:27: note: when computing vector element at index '0'
1000// :79:27: error: use of undefined value here causes illegal behavior994// :73:27: error: use of undefined value here causes illegal behavior
1001// :79:27: note: when computing vector element at index '1'995// :73:27: note: when computing vector element at index '1'
1002// :79:27: error: use of undefined value here causes illegal behavior996// :73:27: error: use of undefined value here causes illegal behavior
1003// :79:27: note: when computing vector element at index '1'997// :73:27: note: when computing vector element at index '1'
1004// :79:27: error: use of undefined value here causes illegal behavior998// :73:27: error: use of undefined value here causes illegal behavior
1005// :79:27: note: when computing vector element at index '0'999// :73:27: note: when computing vector element at index '0'
1006// :79:27: error: use of undefined value here causes illegal behavior1000// :73:27: error: use of undefined value here causes illegal behavior
1007// :79:27: note: when computing vector element at index '0'1001// :73:27: note: when computing vector element at index '0'
1008// :79:27: error: use of undefined value here causes illegal behavior1002// :73:27: error: use of undefined value here causes illegal behavior
1009// :79:27: note: when computing vector element at index '0'1003// :73:27: note: when computing vector element at index '0'
1010// :79:27: error: use of undefined value here causes illegal behavior1004// :73:27: error: use of undefined value here causes illegal behavior
1011// :79:27: note: when computing vector element at index '0'1005// :73:27: note: when computing vector element at index '0'
1012// :79:30: error: use of undefined value here causes illegal behavior1006// :73:30: error: use of undefined value here causes illegal behavior
1013// :79:30: note: when computing vector element at index '0'1007// :73:30: note: when computing vector element at index '0'
1014// :79:30: error: use of undefined value here causes illegal behavior1008// :73:30: error: use of undefined value here causes illegal behavior
1015// :79:30: note: when computing vector element at index '0'1009// :73:30: note: when computing vector element at index '0'
1016// :79:30: error: use of undefined value here causes illegal behavior1010// :73:30: error: use of undefined value here causes illegal behavior
1017// :79:30: note: when computing vector element at index '0'1011// :73:30: note: when computing vector element at index '0'
1018// :79:30: error: use of undefined value here causes illegal behavior1012// :73:30: error: use of undefined value here causes illegal behavior
1019// :79:30: note: when computing vector element at index '0'1013// :73:30: note: when computing vector element at index '0'
1020// :79:30: error: use of undefined value here causes illegal behavior1014// :73:30: error: use of undefined value here causes illegal behavior
1021// :79:30: note: when computing vector element at index '0'1015// :73:30: note: when computing vector element at index '0'
1022// :79:30: error: use of undefined value here causes illegal behavior1016// :73:30: error: use of undefined value here causes illegal behavior
1023// :79:30: note: when computing vector element at index '0'1017// :73:30: note: when computing vector element at index '0'
1024// :79:30: error: use of undefined value here causes illegal behavior1018// :73:30: error: use of undefined value here causes illegal behavior
1025// :79:30: note: when computing vector element at index '0'1019// :73:30: note: when computing vector element at index '0'
1026// :79:30: error: use of undefined value here causes illegal behavior1020// :73:30: error: use of undefined value here causes illegal behavior
1027// :79:30: note: when computing vector element at index '0'1021// :73:30: note: when computing vector element at index '0'
1028// :79:30: error: use of undefined value here causes illegal behavior1022// :73:30: error: use of undefined value here causes illegal behavior
1029// :79:30: note: when computing vector element at index '0'1023// :73:30: note: when computing vector element at index '0'
1030// :79:30: error: use of undefined value here causes illegal behavior1024// :73:30: error: use of undefined value here causes illegal behavior
1031// :79:30: note: when computing vector element at index '0'1025// :73:30: note: when computing vector element at index '0'
1032// :79:30: error: use of undefined value here causes illegal behavior1026// :73:30: error: use of undefined value here causes illegal behavior
1033// :79:30: note: when computing vector element at index '0'1027// :73:30: note: when computing vector element at index '0'
1034// :79:30: error: use of undefined value here causes illegal behavior1028// :73:30: error: use of undefined value here causes illegal behavior
1035// :79:30: note: when computing vector element at index '0'1029// :73:30: note: when computing vector element at index '0'
1036// :79:30: error: use of undefined value here causes illegal behavior1030// :73:30: error: use of undefined value here causes illegal behavior
1037// :79:30: note: when computing vector element at index '0'1031// :73:30: note: when computing vector element at index '0'
1038// :79:30: error: use of undefined value here causes illegal behavior1032// :73:30: error: use of undefined value here causes illegal behavior
1039// :79:30: note: when computing vector element at index '0'1033// :73:30: note: when computing vector element at index '0'
1040// :79:30: error: use of undefined value here causes illegal behavior1034// :73:30: error: use of undefined value here causes illegal behavior
1041// :79:30: note: when computing vector element at index '0'1035// :73:30: note: when computing vector element at index '0'
1042// :79:30: error: use of undefined value here causes illegal behavior1036// :73:30: error: use of undefined value here causes illegal behavior
1043// :79:30: note: when computing vector element at index '0'1037// :73:30: note: when computing vector element at index '0'
1044// :79:30: error: use of undefined value here causes illegal behavior1038// :73:30: error: use of undefined value here causes illegal behavior
1045// :79:30: note: when computing vector element at index '0'1039// :73:30: note: when computing vector element at index '0'
1046// :79:30: error: use of undefined value here causes illegal behavior1040// :73:30: error: use of undefined value here causes illegal behavior
1047// :79:30: note: when computing vector element at index '0'1041// :73:30: note: when computing vector element at index '0'
1048// :79:30: error: use of undefined value here causes illegal behavior1042// :73:30: error: use of undefined value here causes illegal behavior
1049// :79:30: note: when computing vector element at index '0'1043// :73:30: note: when computing vector element at index '0'
1050// :79:30: error: use of undefined value here causes illegal behavior1044// :73:30: error: use of undefined value here causes illegal behavior
1051// :79:30: note: when computing vector element at index '0'1045// :73:30: note: when computing vector element at index '0'
1052// :79:30: error: use of undefined value here causes illegal behavior1046// :73:30: error: use of undefined value here causes illegal behavior
1053// :79:30: note: when computing vector element at index '0'1047// :73:30: note: when computing vector element at index '0'
1054// :79:30: error: use of undefined value here causes illegal behavior1048// :73:30: error: use of undefined value here causes illegal behavior
1055// :79:30: note: when computing vector element at index '0'1049// :73:30: note: when computing vector element at index '0'
1056// :83:27: error: use of undefined value here causes illegal behavior1050// :77:27: error: use of undefined value here causes illegal behavior
1057// :83:27: error: use of undefined value here causes illegal behavior1051// :77:27: error: use of undefined value here causes illegal behavior
1058// :83:27: error: use of undefined value here causes illegal behavior1052// :77:27: error: use of undefined value here causes illegal behavior
1059// :83:27: note: when computing vector element at index '0'1053// :77:27: note: when computing vector element at index '0'
1060// :83:27: error: use of undefined value here causes illegal behavior1054// :77:27: error: use of undefined value here causes illegal behavior
1061// :83:27: note: when computing vector element at index '0'1055// :77:27: note: when computing vector element at index '0'
1062// :83:27: error: use of undefined value here causes illegal behavior1056// :77:27: error: use of undefined value here causes illegal behavior
1063// :83:27: note: when computing vector element at index '0'1057// :77:27: note: when computing vector element at index '0'
1064// :83:27: error: use of undefined value here causes illegal behavior1058// :77:27: error: use of undefined value here causes illegal behavior
1065// :83:27: note: when computing vector element at index '0'1059// :77:27: note: when computing vector element at index '0'
1066// :83:27: error: use of undefined value here causes illegal behavior1060// :77:27: error: use of undefined value here causes illegal behavior
1067// :83:27: note: when computing vector element at index '1'1061// :77:27: note: when computing vector element at index '1'
1068// :83:27: error: use of undefined value here causes illegal behavior1062// :77:27: error: use of undefined value here causes illegal behavior
1069// :83:27: note: when computing vector element at index '1'1063// :77:27: note: when computing vector element at index '1'
1070// :83:27: error: use of undefined value here causes illegal behavior1064// :77:27: error: use of undefined value here causes illegal behavior
1071// :83:27: note: when computing vector element at index '0'1065// :77:27: note: when computing vector element at index '0'
1072// :83:27: error: use of undefined value here causes illegal behavior1066// :77:27: error: use of undefined value here causes illegal behavior
1073// :83:27: note: when computing vector element at index '0'1067// :77:27: note: when computing vector element at index '0'
1074// :83:27: error: use of undefined value here causes illegal behavior1068// :77:27: error: use of undefined value here causes illegal behavior
1075// :83:27: note: when computing vector element at index '0'1069// :77:27: note: when computing vector element at index '0'
1076// :83:27: error: use of undefined value here causes illegal behavior1070// :77:27: error: use of undefined value here causes illegal behavior
1077// :83:27: note: when computing vector element at index '0'1071// :77:27: note: when computing vector element at index '0'
1078// :83:27: error: use of undefined value here causes illegal behavior1072// :77:27: error: use of undefined value here causes illegal behavior
1079// :83:27: error: use of undefined value here causes illegal behavior1073// :77:27: error: use of undefined value here causes illegal behavior
1080// :83:27: error: use of undefined value here causes illegal behavior1074// :77:27: error: use of undefined value here causes illegal behavior
1081// :83:27: note: when computing vector element at index '0'1075// :77:27: note: when computing vector element at index '0'
1082// :83:27: error: use of undefined value here causes illegal behavior1076// :77:27: error: use of undefined value here causes illegal behavior
1083// :83:27: note: when computing vector element at index '0'1077// :77:27: note: when computing vector element at index '0'
1084// :83:27: error: use of undefined value here causes illegal behavior1078// :77:27: error: use of undefined value here causes illegal behavior
1085// :83:27: note: when computing vector element at index '0'1079// :77:27: note: when computing vector element at index '0'
1086// :83:27: error: use of undefined value here causes illegal behavior1080// :77:27: error: use of undefined value here causes illegal behavior
1087// :83:27: note: when computing vector element at index '0'1081// :77:27: note: when computing vector element at index '0'
1088// :83:27: error: use of undefined value here causes illegal behavior1082// :77:27: error: use of undefined value here causes illegal behavior
1089// :83:27: note: when computing vector element at index '1'1083// :77:27: note: when computing vector element at index '1'
1090// :83:27: error: use of undefined value here causes illegal behavior1084// :77:27: error: use of undefined value here causes illegal behavior
1091// :83:27: note: when computing vector element at index '1'1085// :77:27: note: when computing vector element at index '1'
1092// :83:27: error: use of undefined value here causes illegal behavior1086// :77:27: error: use of undefined value here causes illegal behavior
1093// :83:27: note: when computing vector element at index '0'1087// :77:27: note: when computing vector element at index '0'
1094// :83:27: error: use of undefined value here causes illegal behavior1088// :77:27: error: use of undefined value here causes illegal behavior
1095// :83:27: note: when computing vector element at index '0'1089// :77:27: note: when computing vector element at index '0'
1096// :83:27: error: use of undefined value here causes illegal behavior1090// :77:27: error: use of undefined value here causes illegal behavior
1097// :83:27: note: when computing vector element at index '0'1091// :77:27: note: when computing vector element at index '0'
1098// :83:27: error: use of undefined value here causes illegal behavior1092// :77:27: error: use of undefined value here causes illegal behavior
1099// :83:27: note: when computing vector element at index '0'1093// :77:27: note: when computing vector element at index '0'
1100// :83:27: error: use of undefined value here causes illegal behavior1094// :77:27: error: use of undefined value here causes illegal behavior
1101// :83:27: error: use of undefined value here causes illegal behavior1095// :77:27: error: use of undefined value here causes illegal behavior
1102// :83:27: error: use of undefined value here causes illegal behavior1096// :77:27: error: use of undefined value here causes illegal behavior
1103// :83:27: note: when computing vector element at index '0'1097// :77:27: note: when computing vector element at index '0'
1104// :83:27: error: use of undefined value here causes illegal behavior1098// :77:27: error: use of undefined value here causes illegal behavior
1105// :83:27: note: when computing vector element at index '0'1099// :77:27: note: when computing vector element at index '0'
1106// :83:27: error: use of undefined value here causes illegal behavior1100// :77:27: error: use of undefined value here causes illegal behavior
1107// :83:27: note: when computing vector element at index '0'1101// :77:27: note: when computing vector element at index '0'
1108// :83:27: error: use of undefined value here causes illegal behavior1102// :77:27: error: use of undefined value here causes illegal behavior
1109// :83:27: note: when computing vector element at index '0'1103// :77:27: note: when computing vector element at index '0'
1110// :83:27: error: use of undefined value here causes illegal behavior1104// :77:27: error: use of undefined value here causes illegal behavior
1111// :83:27: note: when computing vector element at index '1'1105// :77:27: note: when computing vector element at index '1'
1112// :83:27: error: use of undefined value here causes illegal behavior1106// :77:27: error: use of undefined value here causes illegal behavior
1113// :83:27: note: when computing vector element at index '1'1107// :77:27: note: when computing vector element at index '1'
1114// :83:27: error: use of undefined value here causes illegal behavior1108// :77:27: error: use of undefined value here causes illegal behavior
1115// :83:27: note: when computing vector element at index '0'1109// :77:27: note: when computing vector element at index '0'
1116// :83:27: error: use of undefined value here causes illegal behavior1110// :77:27: error: use of undefined value here causes illegal behavior
1117// :83:27: note: when computing vector element at index '0'1111// :77:27: note: when computing vector element at index '0'
1118// :83:27: error: use of undefined value here causes illegal behavior1112// :77:27: error: use of undefined value here causes illegal behavior
1119// :83:27: note: when computing vector element at index '0'1113// :77:27: note: when computing vector element at index '0'
1120// :83:27: error: use of undefined value here causes illegal behavior1114// :77:27: error: use of undefined value here causes illegal behavior
1121// :83:27: note: when computing vector element at index '0'1115// :77:27: note: when computing vector element at index '0'
1122// :83:27: error: use of undefined value here causes illegal behavior1116// :77:27: error: use of undefined value here causes illegal behavior
1123// :83:27: error: use of undefined value here causes illegal behavior1117// :77:27: error: use of undefined value here causes illegal behavior
1124// :83:27: error: use of undefined value here causes illegal behavior1118// :77:27: error: use of undefined value here causes illegal behavior
1125// :83:27: note: when computing vector element at index '0'1119// :77:27: note: when computing vector element at index '0'
1126// :83:27: error: use of undefined value here causes illegal behavior1120// :77:27: error: use of undefined value here causes illegal behavior
1127// :83:27: note: when computing vector element at index '0'1121// :77:27: note: when computing vector element at index '0'
1128// :83:27: error: use of undefined value here causes illegal behavior1122// :77:27: error: use of undefined value here causes illegal behavior
1129// :83:27: note: when computing vector element at index '0'1123// :77:27: note: when computing vector element at index '0'
1130// :83:27: error: use of undefined value here causes illegal behavior1124// :77:27: error: use of undefined value here causes illegal behavior
1131// :83:27: note: when computing vector element at index '0'1125// :77:27: note: when computing vector element at index '0'
1132// :83:27: error: use of undefined value here causes illegal behavior1126// :77:27: error: use of undefined value here causes illegal behavior
1133// :83:27: note: when computing vector element at index '1'1127// :77:27: note: when computing vector element at index '1'
1134// :83:27: error: use of undefined value here causes illegal behavior1128// :77:27: error: use of undefined value here causes illegal behavior
1135// :83:27: note: when computing vector element at index '1'1129// :77:27: note: when computing vector element at index '1'
1136// :83:27: error: use of undefined value here causes illegal behavior1130// :77:27: error: use of undefined value here causes illegal behavior
1137// :83:27: note: when computing vector element at index '0'1131// :77:27: note: when computing vector element at index '0'
1138// :83:27: error: use of undefined value here causes illegal behavior1132// :77:27: error: use of undefined value here causes illegal behavior
1139// :83:27: note: when computing vector element at index '0'1133// :77:27: note: when computing vector element at index '0'
1140// :83:27: error: use of undefined value here causes illegal behavior1134// :77:27: error: use of undefined value here causes illegal behavior
1141// :83:27: note: when computing vector element at index '0'1135// :77:27: note: when computing vector element at index '0'
1142// :83:27: error: use of undefined value here causes illegal behavior1136// :77:27: error: use of undefined value here causes illegal behavior
1143// :83:27: note: when computing vector element at index '0'1137// :77:27: note: when computing vector element at index '0'
1144// :83:27: error: use of undefined value here causes illegal behavior1138// :77:27: error: use of undefined value here causes illegal behavior
1145// :83:27: error: use of undefined value here causes illegal behavior1139// :77:27: error: use of undefined value here causes illegal behavior
1146// :83:27: error: use of undefined value here causes illegal behavior1140// :77:27: error: use of undefined value here causes illegal behavior
1147// :83:27: note: when computing vector element at index '0'1141// :77:27: note: when computing vector element at index '0'
1148// :83:27: error: use of undefined value here causes illegal behavior1142// :77:27: error: use of undefined value here causes illegal behavior
1149// :83:27: note: when computing vector element at index '0'1143// :77:27: note: when computing vector element at index '0'
1150// :83:27: error: use of undefined value here causes illegal behavior1144// :77:27: error: use of undefined value here causes illegal behavior
1151// :83:27: note: when computing vector element at index '0'1145// :77:27: note: when computing vector element at index '0'
1152// :83:27: error: use of undefined value here causes illegal behavior1146// :77:27: error: use of undefined value here causes illegal behavior
1153// :83:27: note: when computing vector element at index '0'1147// :77:27: note: when computing vector element at index '0'
1154// :83:27: error: use of undefined value here causes illegal behavior1148// :77:27: error: use of undefined value here causes illegal behavior
1155// :83:27: note: when computing vector element at index '1'1149// :77:27: note: when computing vector element at index '1'
1156// :83:27: error: use of undefined value here causes illegal behavior1150// :77:27: error: use of undefined value here causes illegal behavior
1157// :83:27: note: when computing vector element at index '1'1151// :77:27: note: when computing vector element at index '1'
1158// :83:27: error: use of undefined value here causes illegal behavior1152// :77:27: error: use of undefined value here causes illegal behavior
1159// :83:27: note: when computing vector element at index '0'1153// :77:27: note: when computing vector element at index '0'
1160// :83:27: error: use of undefined value here causes illegal behavior1154// :77:27: error: use of undefined value here causes illegal behavior
1161// :83:27: note: when computing vector element at index '0'1155// :77:27: note: when computing vector element at index '0'
1162// :83:27: error: use of undefined value here causes illegal behavior1156// :77:27: error: use of undefined value here causes illegal behavior
1163// :83:27: note: when computing vector element at index '0'1157// :77:27: note: when computing vector element at index '0'
1164// :83:27: error: use of undefined value here causes illegal behavior1158// :77:27: error: use of undefined value here causes illegal behavior
1165// :83:27: note: when computing vector element at index '0'1159// :77:27: note: when computing vector element at index '0'
1166// :83:27: error: use of undefined value here causes illegal behavior1160// :77:27: error: use of undefined value here causes illegal behavior
1167// :83:27: error: use of undefined value here causes illegal behavior1161// :77:27: error: use of undefined value here causes illegal behavior
1168// :83:27: error: use of undefined value here causes illegal behavior1162// :77:27: error: use of undefined value here causes illegal behavior
1169// :83:27: note: when computing vector element at index '0'1163// :77:27: note: when computing vector element at index '0'
1170// :83:27: error: use of undefined value here causes illegal behavior1164// :77:27: error: use of undefined value here causes illegal behavior
1171// :83:27: note: when computing vector element at index '0'1165// :77:27: note: when computing vector element at index '0'
1172// :83:27: error: use of undefined value here causes illegal behavior1166// :77:27: error: use of undefined value here causes illegal behavior
1173// :83:27: note: when computing vector element at index '0'1167// :77:27: note: when computing vector element at index '0'
1174// :83:27: error: use of undefined value here causes illegal behavior1168// :77:27: error: use of undefined value here causes illegal behavior
1175// :83:27: note: when computing vector element at index '0'1169// :77:27: note: when computing vector element at index '0'
1176// :83:27: error: use of undefined value here causes illegal behavior1170// :77:27: error: use of undefined value here causes illegal behavior
1177// :83:27: note: when computing vector element at index '1'1171// :77:27: note: when computing vector element at index '1'
1178// :83:27: error: use of undefined value here causes illegal behavior1172// :77:27: error: use of undefined value here causes illegal behavior
1179// :83:27: note: when computing vector element at index '1'1173// :77:27: note: when computing vector element at index '1'
1180// :83:27: error: use of undefined value here causes illegal behavior1174// :77:27: error: use of undefined value here causes illegal behavior
1181// :83:27: note: when computing vector element at index '0'1175// :77:27: note: when computing vector element at index '0'
1182// :83:27: error: use of undefined value here causes illegal behavior1176// :77:27: error: use of undefined value here causes illegal behavior
1183// :83:27: note: when computing vector element at index '0'1177// :77:27: note: when computing vector element at index '0'
1184// :83:27: error: use of undefined value here causes illegal behavior1178// :77:27: error: use of undefined value here causes illegal behavior
1185// :83:27: note: when computing vector element at index '0'1179// :77:27: note: when computing vector element at index '0'
1186// :83:27: error: use of undefined value here causes illegal behavior1180// :77:27: error: use of undefined value here causes illegal behavior
1187// :83:27: note: when computing vector element at index '0'1181// :77:27: note: when computing vector element at index '0'
1188// :83:27: error: use of undefined value here causes illegal behavior1182// :77:27: error: use of undefined value here causes illegal behavior
1189// :83:27: error: use of undefined value here causes illegal behavior1183// :77:27: error: use of undefined value here causes illegal behavior
1190// :83:27: error: use of undefined value here causes illegal behavior1184// :77:27: error: use of undefined value here causes illegal behavior
1191// :83:27: note: when computing vector element at index '0'1185// :77:27: note: when computing vector element at index '0'
1192// :83:27: error: use of undefined value here causes illegal behavior1186// :77:27: error: use of undefined value here causes illegal behavior
1193// :83:27: note: when computing vector element at index '0'1187// :77:27: note: when computing vector element at index '0'
1194// :83:27: error: use of undefined value here causes illegal behavior1188// :77:27: error: use of undefined value here causes illegal behavior
1195// :83:27: note: when computing vector element at index '0'1189// :77:27: note: when computing vector element at index '0'
1196// :83:27: error: use of undefined value here causes illegal behavior1190// :77:27: error: use of undefined value here causes illegal behavior
1197// :83:27: note: when computing vector element at index '0'1191// :77:27: note: when computing vector element at index '0'
1198// :83:27: error: use of undefined value here causes illegal behavior1192// :77:27: error: use of undefined value here causes illegal behavior
1199// :83:27: note: when computing vector element at index '1'1193// :77:27: note: when computing vector element at index '1'
1200// :83:27: error: use of undefined value here causes illegal behavior1194// :77:27: error: use of undefined value here causes illegal behavior
1201// :83:27: note: when computing vector element at index '1'1195// :77:27: note: when computing vector element at index '1'
1202// :83:27: error: use of undefined value here causes illegal behavior1196// :77:27: error: use of undefined value here causes illegal behavior
1203// :83:27: note: when computing vector element at index '0'1197// :77:27: note: when computing vector element at index '0'
1204// :83:27: error: use of undefined value here causes illegal behavior1198// :77:27: error: use of undefined value here causes illegal behavior
1205// :83:27: note: when computing vector element at index '0'1199// :77:27: note: when computing vector element at index '0'
1206// :83:27: error: use of undefined value here causes illegal behavior1200// :77:27: error: use of undefined value here causes illegal behavior
1207// :83:27: note: when computing vector element at index '0'1201// :77:27: note: when computing vector element at index '0'
1208// :83:27: error: use of undefined value here causes illegal behavior1202// :77:27: error: use of undefined value here causes illegal behavior
1209// :83:27: note: when computing vector element at index '0'1203// :77:27: note: when computing vector element at index '0'
1210// :83:27: error: use of undefined value here causes illegal behavior1204// :77:27: error: use of undefined value here causes illegal behavior
1211// :83:27: error: use of undefined value here causes illegal behavior1205// :77:27: error: use of undefined value here causes illegal behavior
1212// :83:27: error: use of undefined value here causes illegal behavior1206// :77:27: error: use of undefined value here causes illegal behavior
1213// :83:27: note: when computing vector element at index '0'1207// :77:27: note: when computing vector element at index '0'
1214// :83:27: error: use of undefined value here causes illegal behavior1208// :77:27: error: use of undefined value here causes illegal behavior
1215// :83:27: note: when computing vector element at index '0'1209// :77:27: note: when computing vector element at index '0'
1216// :83:27: error: use of undefined value here causes illegal behavior1210// :77:27: error: use of undefined value here causes illegal behavior
1217// :83:27: note: when computing vector element at index '0'1211// :77:27: note: when computing vector element at index '0'
1218// :83:27: error: use of undefined value here causes illegal behavior1212// :77:27: error: use of undefined value here causes illegal behavior
1219// :83:27: note: when computing vector element at index '0'1213// :77:27: note: when computing vector element at index '0'
1220// :83:27: error: use of undefined value here causes illegal behavior1214// :77:27: error: use of undefined value here causes illegal behavior
1221// :83:27: note: when computing vector element at index '1'1215// :77:27: note: when computing vector element at index '1'
1222// :83:27: error: use of undefined value here causes illegal behavior1216// :77:27: error: use of undefined value here causes illegal behavior
1223// :83:27: note: when computing vector element at index '1'1217// :77:27: note: when computing vector element at index '1'
1224// :83:27: error: use of undefined value here causes illegal behavior1218// :77:27: error: use of undefined value here causes illegal behavior
1225// :83:27: note: when computing vector element at index '0'1219// :77:27: note: when computing vector element at index '0'
1226// :83:27: error: use of undefined value here causes illegal behavior1220// :77:27: error: use of undefined value here causes illegal behavior
1227// :83:27: note: when computing vector element at index '0'1221// :77:27: note: when computing vector element at index '0'
1228// :83:27: error: use of undefined value here causes illegal behavior1222// :77:27: error: use of undefined value here causes illegal behavior
1229// :83:27: note: when computing vector element at index '0'1223// :77:27: note: when computing vector element at index '0'
1230// :83:27: error: use of undefined value here causes illegal behavior1224// :77:27: error: use of undefined value here causes illegal behavior
1231// :83:27: note: when computing vector element at index '0'1225// :77:27: note: when computing vector element at index '0'
1232// :83:27: error: use of undefined value here causes illegal behavior1226// :77:27: error: use of undefined value here causes illegal behavior
1233// :83:27: error: use of undefined value here causes illegal behavior1227// :77:27: error: use of undefined value here causes illegal behavior
1234// :83:27: error: use of undefined value here causes illegal behavior1228// :77:27: error: use of undefined value here causes illegal behavior
1235// :83:27: note: when computing vector element at index '0'1229// :77:27: note: when computing vector element at index '0'
1236// :83:27: error: use of undefined value here causes illegal behavior1230// :77:27: error: use of undefined value here causes illegal behavior
1237// :83:27: note: when computing vector element at index '0'1231// :77:27: note: when computing vector element at index '0'
1238// :83:27: error: use of undefined value here causes illegal behavior1232// :77:27: error: use of undefined value here causes illegal behavior
1239// :83:27: note: when computing vector element at index '0'1233// :77:27: note: when computing vector element at index '0'
1240// :83:27: error: use of undefined value here causes illegal behavior1234// :77:27: error: use of undefined value here causes illegal behavior
1241// :83:27: note: when computing vector element at index '0'1235// :77:27: note: when computing vector element at index '0'
1242// :83:27: error: use of undefined value here causes illegal behavior1236// :77:27: error: use of undefined value here causes illegal behavior
1243// :83:27: note: when computing vector element at index '1'1237// :77:27: note: when computing vector element at index '1'
1244// :83:27: error: use of undefined value here causes illegal behavior1238// :77:27: error: use of undefined value here causes illegal behavior
1245// :83:27: note: when computing vector element at index '1'1239// :77:27: note: when computing vector element at index '1'
1246// :83:27: error: use of undefined value here causes illegal behavior1240// :77:27: error: use of undefined value here causes illegal behavior
1247// :83:27: note: when computing vector element at index '0'1241// :77:27: note: when computing vector element at index '0'
1248// :83:27: error: use of undefined value here causes illegal behavior1242// :77:27: error: use of undefined value here causes illegal behavior
1249// :83:27: note: when computing vector element at index '0'1243// :77:27: note: when computing vector element at index '0'
1250// :83:27: error: use of undefined value here causes illegal behavior1244// :77:27: error: use of undefined value here causes illegal behavior
1251// :83:27: note: when computing vector element at index '0'1245// :77:27: note: when computing vector element at index '0'
1252// :83:27: error: use of undefined value here causes illegal behavior1246// :77:27: error: use of undefined value here causes illegal behavior
1253// :83:27: note: when computing vector element at index '0'1247// :77:27: note: when computing vector element at index '0'
1254// :83:27: error: use of undefined value here causes illegal behavior1248// :77:27: error: use of undefined value here causes illegal behavior
1255// :83:27: error: use of undefined value here causes illegal behavior1249// :77:27: error: use of undefined value here causes illegal behavior
1256// :83:27: error: use of undefined value here causes illegal behavior1250// :77:27: error: use of undefined value here causes illegal behavior
1257// :83:27: note: when computing vector element at index '0'1251// :77:27: note: when computing vector element at index '0'
1258// :83:27: error: use of undefined value here causes illegal behavior1252// :77:27: error: use of undefined value here causes illegal behavior
1259// :83:27: note: when computing vector element at index '0'1253// :77:27: note: when computing vector element at index '0'
1260// :83:27: error: use of undefined value here causes illegal behavior1254// :77:27: error: use of undefined value here causes illegal behavior
1261// :83:27: note: when computing vector element at index '0'1255// :77:27: note: when computing vector element at index '0'
1262// :83:27: error: use of undefined value here causes illegal behavior1256// :77:27: error: use of undefined value here causes illegal behavior
1263// :83:27: note: when computing vector element at index '0'1257// :77:27: note: when computing vector element at index '0'
1264// :83:27: error: use of undefined value here causes illegal behavior1258// :77:27: error: use of undefined value here causes illegal behavior
1265// :83:27: note: when computing vector element at index '1'1259// :77:27: note: when computing vector element at index '1'
1266// :83:27: error: use of undefined value here causes illegal behavior1260// :77:27: error: use of undefined value here causes illegal behavior
1267// :83:27: note: when computing vector element at index '1'1261// :77:27: note: when computing vector element at index '1'
1268// :83:27: error: use of undefined value here causes illegal behavior1262// :77:27: error: use of undefined value here causes illegal behavior
1269// :83:27: note: when computing vector element at index '0'1263// :77:27: note: when computing vector element at index '0'
1270// :83:27: error: use of undefined value here causes illegal behavior1264// :77:27: error: use of undefined value here causes illegal behavior
1271// :83:27: note: when computing vector element at index '0'1265// :77:27: note: when computing vector element at index '0'
1272// :83:27: error: use of undefined value here causes illegal behavior1266// :77:27: error: use of undefined value here causes illegal behavior
1273// :83:27: note: when computing vector element at index '0'1267// :77:27: note: when computing vector element at index '0'
1274// :83:27: error: use of undefined value here causes illegal behavior1268// :77:27: error: use of undefined value here causes illegal behavior
1275// :83:27: note: when computing vector element at index '0'1269// :77:27: note: when computing vector element at index '0'
1276// :83:27: error: use of undefined value here causes illegal behavior1270// :77:27: error: use of undefined value here causes illegal behavior
1277// :83:27: error: use of undefined value here causes illegal behavior1271// :77:27: error: use of undefined value here causes illegal behavior
1278// :83:27: error: use of undefined value here causes illegal behavior1272// :77:27: error: use of undefined value here causes illegal behavior
1279// :83:27: note: when computing vector element at index '0'1273// :77:27: note: when computing vector element at index '0'
1280// :83:27: error: use of undefined value here causes illegal behavior1274// :77:27: error: use of undefined value here causes illegal behavior
1281// :83:27: note: when computing vector element at index '0'1275// :77:27: note: when computing vector element at index '0'
1282// :83:27: error: use of undefined value here causes illegal behavior1276// :77:27: error: use of undefined value here causes illegal behavior
1283// :83:27: note: when computing vector element at index '0'1277// :77:27: note: when computing vector element at index '0'
1284// :83:27: error: use of undefined value here causes illegal behavior1278// :77:27: error: use of undefined value here causes illegal behavior
1285// :83:27: note: when computing vector element at index '0'1279// :77:27: note: when computing vector element at index '0'
1286// :83:27: error: use of undefined value here causes illegal behavior1280// :77:27: error: use of undefined value here causes illegal behavior
1287// :83:27: note: when computing vector element at index '1'1281// :77:27: note: when computing vector element at index '1'
1288// :83:27: error: use of undefined value here causes illegal behavior1282// :77:27: error: use of undefined value here causes illegal behavior
1289// :83:27: note: when computing vector element at index '1'1283// :77:27: note: when computing vector element at index '1'
1290// :83:27: error: use of undefined value here causes illegal behavior1284// :77:27: error: use of undefined value here causes illegal behavior
1291// :83:27: note: when computing vector element at index '0'1285// :77:27: note: when computing vector element at index '0'
1292// :83:27: error: use of undefined value here causes illegal behavior1286// :77:27: error: use of undefined value here causes illegal behavior
1293// :83:27: note: when computing vector element at index '0'1287// :77:27: note: when computing vector element at index '0'
1294// :83:27: error: use of undefined value here causes illegal behavior1288// :77:27: error: use of undefined value here causes illegal behavior
1295// :83:27: note: when computing vector element at index '0'1289// :77:27: note: when computing vector element at index '0'
1296// :83:27: error: use of undefined value here causes illegal behavior1290// :77:27: error: use of undefined value here causes illegal behavior
1297// :83:27: note: when computing vector element at index '0'1291// :77:27: note: when computing vector element at index '0'
1298// :83:30: error: use of undefined value here causes illegal behavior1292// :77:30: error: use of undefined value here causes illegal behavior
1299// :83:30: note: when computing vector element at index '0'1293// :77:30: note: when computing vector element at index '0'
1300// :83:30: error: use of undefined value here causes illegal behavior1294// :77:30: error: use of undefined value here causes illegal behavior
1301// :83:30: note: when computing vector element at index '0'1295// :77:30: note: when computing vector element at index '0'
1302// :83:30: error: use of undefined value here causes illegal behavior1296// :77:30: error: use of undefined value here causes illegal behavior
1303// :83:30: note: when computing vector element at index '0'1297// :77:30: note: when computing vector element at index '0'
1304// :83:30: error: use of undefined value here causes illegal behavior1298// :77:30: error: use of undefined value here causes illegal behavior
1305// :83:30: note: when computing vector element at index '0'1299// :77:30: note: when computing vector element at index '0'
1306// :83:30: error: use of undefined value here causes illegal behavior1300// :77:30: error: use of undefined value here causes illegal behavior
1307// :83:30: note: when computing vector element at index '0'1301// :77:30: note: when computing vector element at index '0'
1308// :83:30: error: use of undefined value here causes illegal behavior1302// :77:30: error: use of undefined value here causes illegal behavior
1309// :83:30: note: when computing vector element at index '0'1303// :77:30: note: when computing vector element at index '0'
1310// :83:30: error: use of undefined value here causes illegal behavior1304// :77:30: error: use of undefined value here causes illegal behavior
1311// :83:30: note: when computing vector element at index '0'1305// :77:30: note: when computing vector element at index '0'
1312// :83:30: error: use of undefined value here causes illegal behavior1306// :77:30: error: use of undefined value here causes illegal behavior
1313// :83:30: note: when computing vector element at index '0'1307// :77:30: note: when computing vector element at index '0'
1314// :83:30: error: use of undefined value here causes illegal behavior1308// :77:30: error: use of undefined value here causes illegal behavior
1315// :83:30: note: when computing vector element at index '0'1309// :77:30: note: when computing vector element at index '0'
1316// :83:30: error: use of undefined value here causes illegal behavior1310// :77:30: error: use of undefined value here causes illegal behavior
1317// :83:30: note: when computing vector element at index '0'1311// :77:30: note: when computing vector element at index '0'
1318// :83:30: error: use of undefined value here causes illegal behavior1312// :77:30: error: use of undefined value here causes illegal behavior
1319// :83:30: note: when computing vector element at index '0'1313// :77:30: note: when computing vector element at index '0'
1320// :83:30: error: use of undefined value here causes illegal behavior1314// :77:30: error: use of undefined value here causes illegal behavior
1321// :83:30: note: when computing vector element at index '0'1315// :77:30: note: when computing vector element at index '0'
1322// :83:30: error: use of undefined value here causes illegal behavior1316// :77:30: error: use of undefined value here causes illegal behavior
1323// :83:30: note: when computing vector element at index '0'1317// :77:30: note: when computing vector element at index '0'
1324// :83:30: error: use of undefined value here causes illegal behavior1318// :77:30: error: use of undefined value here causes illegal behavior
1325// :83:30: note: when computing vector element at index '0'1319// :77:30: note: when computing vector element at index '0'
1326// :83:30: error: use of undefined value here causes illegal behavior1320// :77:30: error: use of undefined value here causes illegal behavior
1327// :83:30: note: when computing vector element at index '0'1321// :77:30: note: when computing vector element at index '0'
1328// :83:30: error: use of undefined value here causes illegal behavior1322// :77:30: error: use of undefined value here causes illegal behavior
1329// :83:30: note: when computing vector element at index '0'1323// :77:30: note: when computing vector element at index '0'
1330// :83:30: error: use of undefined value here causes illegal behavior1324// :77:30: error: use of undefined value here causes illegal behavior
1331// :83:30: note: when computing vector element at index '0'1325// :77:30: note: when computing vector element at index '0'
1332// :83:30: error: use of undefined value here causes illegal behavior1326// :77:30: error: use of undefined value here causes illegal behavior
1333// :83:30: note: when computing vector element at index '0'1327// :77:30: note: when computing vector element at index '0'
1334// :83:30: error: use of undefined value here causes illegal behavior1328// :77:30: error: use of undefined value here causes illegal behavior
1335// :83:30: note: when computing vector element at index '0'1329// :77:30: note: when computing vector element at index '0'
1336// :83:30: error: use of undefined value here causes illegal behavior1330// :77:30: error: use of undefined value here causes illegal behavior
1337// :83:30: note: when computing vector element at index '0'1331// :77:30: note: when computing vector element at index '0'
1338// :83:30: error: use of undefined value here causes illegal behavior1332// :77:30: error: use of undefined value here causes illegal behavior
1339// :83:30: note: when computing vector element at index '0'1333// :77:30: note: when computing vector element at index '0'
1340// :83:30: error: use of undefined value here causes illegal behavior1334// :77:30: error: use of undefined value here causes illegal behavior
1341// :83:30: note: when computing vector element at index '0'1335// :77:30: note: when computing vector element at index '0'
1342// :87:17: error: use of undefined value here causes illegal behavior1336// :81:17: error: use of undefined value here causes illegal behavior
1343// :87:17: error: use of undefined value here causes illegal behavior1337// :81:17: error: use of undefined value here causes illegal behavior
1344// :87:17: error: use of undefined value here causes illegal behavior1338// :81:17: error: use of undefined value here causes illegal behavior
1345// :87:17: note: when computing vector element at index '0'1339// :81:17: note: when computing vector element at index '0'
1346// :87:17: error: use of undefined value here causes illegal behavior1340// :81:17: error: use of undefined value here causes illegal behavior
1347// :87:17: note: when computing vector element at index '0'1341// :81:17: note: when computing vector element at index '0'
1348// :87:17: error: use of undefined value here causes illegal behavior1342// :81:17: error: use of undefined value here causes illegal behavior
1349// :87:17: note: when computing vector element at index '0'1343// :81:17: note: when computing vector element at index '0'
1350// :87:17: error: use of undefined value here causes illegal behavior1344// :81:17: error: use of undefined value here causes illegal behavior
1351// :87:17: note: when computing vector element at index '0'1345// :81:17: note: when computing vector element at index '0'
1352// :87:17: error: use of undefined value here causes illegal behavior1346// :81:17: error: use of undefined value here causes illegal behavior
1353// :87:17: note: when computing vector element at index '1'1347// :81:17: note: when computing vector element at index '1'
1354// :87:17: error: use of undefined value here causes illegal behavior1348// :81:17: error: use of undefined value here causes illegal behavior
1355// :87:17: note: when computing vector element at index '1'1349// :81:17: note: when computing vector element at index '1'
1356// :87:17: error: use of undefined value here causes illegal behavior1350// :81:17: error: use of undefined value here causes illegal behavior
1357// :87:17: note: when computing vector element at index '0'1351// :81:17: note: when computing vector element at index '0'
1358// :87:17: error: use of undefined value here causes illegal behavior1352// :81:17: error: use of undefined value here causes illegal behavior
1359// :87:17: note: when computing vector element at index '0'1353// :81:17: note: when computing vector element at index '0'
1360// :87:17: error: use of undefined value here causes illegal behavior1354// :81:17: error: use of undefined value here causes illegal behavior
1361// :87:17: note: when computing vector element at index '0'1355// :81:17: note: when computing vector element at index '0'
1362// :87:17: error: use of undefined value here causes illegal behavior1356// :81:17: error: use of undefined value here causes illegal behavior
1363// :87:17: note: when computing vector element at index '0'1357// :81:17: note: when computing vector element at index '0'
1364// :87:17: error: use of undefined value here causes illegal behavior1358// :81:17: error: use of undefined value here causes illegal behavior
1365// :87:17: error: use of undefined value here causes illegal behavior1359// :81:17: error: use of undefined value here causes illegal behavior
1366// :87:17: error: use of undefined value here causes illegal behavior1360// :81:17: error: use of undefined value here causes illegal behavior
1367// :87:17: note: when computing vector element at index '0'1361// :81:17: note: when computing vector element at index '0'
1368// :87:17: error: use of undefined value here causes illegal behavior1362// :81:17: error: use of undefined value here causes illegal behavior
1369// :87:17: note: when computing vector element at index '0'1363// :81:17: note: when computing vector element at index '0'
1370// :87:17: error: use of undefined value here causes illegal behavior1364// :81:17: error: use of undefined value here causes illegal behavior
1371// :87:17: note: when computing vector element at index '0'1365// :81:17: note: when computing vector element at index '0'
1372// :87:17: error: use of undefined value here causes illegal behavior1366// :81:17: error: use of undefined value here causes illegal behavior
1373// :87:17: note: when computing vector element at index '0'1367// :81:17: note: when computing vector element at index '0'
1374// :87:17: error: use of undefined value here causes illegal behavior1368// :81:17: error: use of undefined value here causes illegal behavior
1375// :87:17: note: when computing vector element at index '1'1369// :81:17: note: when computing vector element at index '1'
1376// :87:17: error: use of undefined value here causes illegal behavior1370// :81:17: error: use of undefined value here causes illegal behavior
1377// :87:17: note: when computing vector element at index '1'1371// :81:17: note: when computing vector element at index '1'
1378// :87:17: error: use of undefined value here causes illegal behavior1372// :81:17: error: use of undefined value here causes illegal behavior
1379// :87:17: note: when computing vector element at index '0'1373// :81:17: note: when computing vector element at index '0'
1380// :87:17: error: use of undefined value here causes illegal behavior1374// :81:17: error: use of undefined value here causes illegal behavior
1381// :87:17: note: when computing vector element at index '0'1375// :81:17: note: when computing vector element at index '0'
1382// :87:17: error: use of undefined value here causes illegal behavior1376// :81:17: error: use of undefined value here causes illegal behavior
1383// :87:17: note: when computing vector element at index '0'1377// :81:17: note: when computing vector element at index '0'
1384// :87:17: error: use of undefined value here causes illegal behavior1378// :81:17: error: use of undefined value here causes illegal behavior
1385// :87:17: note: when computing vector element at index '0'1379// :81:17: note: when computing vector element at index '0'
1386// :87:17: error: use of undefined value here causes illegal behavior1380// :81:17: error: use of undefined value here causes illegal behavior
1387// :87:17: error: use of undefined value here causes illegal behavior1381// :81:17: error: use of undefined value here causes illegal behavior
1388// :87:17: error: use of undefined value here causes illegal behavior1382// :81:17: error: use of undefined value here causes illegal behavior
1389// :87:17: note: when computing vector element at index '0'1383// :81:17: note: when computing vector element at index '0'
1390// :87:17: error: use of undefined value here causes illegal behavior1384// :81:17: error: use of undefined value here causes illegal behavior
1391// :87:17: note: when computing vector element at index '0'1385// :81:17: note: when computing vector element at index '0'
1392// :87:17: error: use of undefined value here causes illegal behavior1386// :81:17: error: use of undefined value here causes illegal behavior
1393// :87:17: note: when computing vector element at index '0'1387// :81:17: note: when computing vector element at index '0'
1394// :87:17: error: use of undefined value here causes illegal behavior1388// :81:17: error: use of undefined value here causes illegal behavior
1395// :87:17: note: when computing vector element at index '0'1389// :81:17: note: when computing vector element at index '0'
1396// :87:17: error: use of undefined value here causes illegal behavior1390// :81:17: error: use of undefined value here causes illegal behavior
1397// :87:17: note: when computing vector element at index '1'1391// :81:17: note: when computing vector element at index '1'
1398// :87:17: error: use of undefined value here causes illegal behavior1392// :81:17: error: use of undefined value here causes illegal behavior
1399// :87:17: note: when computing vector element at index '1'1393// :81:17: note: when computing vector element at index '1'
1400// :87:17: error: use of undefined value here causes illegal behavior1394// :81:17: error: use of undefined value here causes illegal behavior
1401// :87:17: note: when computing vector element at index '0'1395// :81:17: note: when computing vector element at index '0'
1402// :87:17: error: use of undefined value here causes illegal behavior1396// :81:17: error: use of undefined value here causes illegal behavior
1403// :87:17: note: when computing vector element at index '0'1397// :81:17: note: when computing vector element at index '0'
1404// :87:17: error: use of undefined value here causes illegal behavior1398// :81:17: error: use of undefined value here causes illegal behavior
1405// :87:17: note: when computing vector element at index '0'1399// :81:17: note: when computing vector element at index '0'
1406// :87:17: error: use of undefined value here causes illegal behavior1400// :81:17: error: use of undefined value here causes illegal behavior
1407// :87:17: note: when computing vector element at index '0'1401// :81:17: note: when computing vector element at index '0'
1408// :87:17: error: use of undefined value here causes illegal behavior1402// :81:17: error: use of undefined value here causes illegal behavior
1409// :87:17: error: use of undefined value here causes illegal behavior1403// :81:17: error: use of undefined value here causes illegal behavior
1410// :87:17: error: use of undefined value here causes illegal behavior1404// :81:17: error: use of undefined value here causes illegal behavior
1411// :87:17: note: when computing vector element at index '0'1405// :81:17: note: when computing vector element at index '0'
1412// :87:17: error: use of undefined value here causes illegal behavior1406// :81:17: error: use of undefined value here causes illegal behavior
1413// :87:17: note: when computing vector element at index '0'1407// :81:17: note: when computing vector element at index '0'
1414// :87:17: error: use of undefined value here causes illegal behavior1408// :81:17: error: use of undefined value here causes illegal behavior
1415// :87:17: note: when computing vector element at index '0'1409// :81:17: note: when computing vector element at index '0'
1416// :87:17: error: use of undefined value here causes illegal behavior1410// :81:17: error: use of undefined value here causes illegal behavior
1417// :87:17: note: when computing vector element at index '0'1411// :81:17: note: when computing vector element at index '0'
1418// :87:17: error: use of undefined value here causes illegal behavior1412// :81:17: error: use of undefined value here causes illegal behavior
1419// :87:17: note: when computing vector element at index '1'1413// :81:17: note: when computing vector element at index '1'
1420// :87:17: error: use of undefined value here causes illegal behavior1414// :81:17: error: use of undefined value here causes illegal behavior
1421// :87:17: note: when computing vector element at index '1'1415// :81:17: note: when computing vector element at index '1'
1422// :87:17: error: use of undefined value here causes illegal behavior1416// :81:17: error: use of undefined value here causes illegal behavior
1423// :87:17: note: when computing vector element at index '0'1417// :81:17: note: when computing vector element at index '0'
1424// :87:17: error: use of undefined value here causes illegal behavior1418// :81:17: error: use of undefined value here causes illegal behavior
1425// :87:17: note: when computing vector element at index '0'1419// :81:17: note: when computing vector element at index '0'
1426// :87:17: error: use of undefined value here causes illegal behavior1420// :81:17: error: use of undefined value here causes illegal behavior
1427// :87:17: note: when computing vector element at index '0'1421// :81:17: note: when computing vector element at index '0'
1428// :87:17: error: use of undefined value here causes illegal behavior1422// :81:17: error: use of undefined value here causes illegal behavior
1429// :87:17: note: when computing vector element at index '0'1423// :81:17: note: when computing vector element at index '0'
1430// :87:17: error: use of undefined value here causes illegal behavior1424// :81:17: error: use of undefined value here causes illegal behavior
1431// :87:17: error: use of undefined value here causes illegal behavior1425// :81:17: error: use of undefined value here causes illegal behavior
1432// :87:17: error: use of undefined value here causes illegal behavior1426// :81:17: error: use of undefined value here causes illegal behavior
1433// :87:17: note: when computing vector element at index '0'1427// :81:17: note: when computing vector element at index '0'
1434// :87:17: error: use of undefined value here causes illegal behavior1428// :81:17: error: use of undefined value here causes illegal behavior
1435// :87:17: note: when computing vector element at index '0'1429// :81:17: note: when computing vector element at index '0'
1436// :87:17: error: use of undefined value here causes illegal behavior1430// :81:17: error: use of undefined value here causes illegal behavior
1437// :87:17: note: when computing vector element at index '0'1431// :81:17: note: when computing vector element at index '0'
1438// :87:17: error: use of undefined value here causes illegal behavior1432// :81:17: error: use of undefined value here causes illegal behavior
1439// :87:17: note: when computing vector element at index '0'1433// :81:17: note: when computing vector element at index '0'
1440// :87:17: error: use of undefined value here causes illegal behavior1434// :81:17: error: use of undefined value here causes illegal behavior
1441// :87:17: note: when computing vector element at index '1'1435// :81:17: note: when computing vector element at index '1'
1442// :87:17: error: use of undefined value here causes illegal behavior1436// :81:17: error: use of undefined value here causes illegal behavior
1443// :87:17: note: when computing vector element at index '1'1437// :81:17: note: when computing vector element at index '1'
1444// :87:17: error: use of undefined value here causes illegal behavior1438// :81:17: error: use of undefined value here causes illegal behavior
1445// :87:17: note: when computing vector element at index '0'1439// :81:17: note: when computing vector element at index '0'
1446// :87:17: error: use of undefined value here causes illegal behavior1440// :81:17: error: use of undefined value here causes illegal behavior
1447// :87:17: note: when computing vector element at index '0'1441// :81:17: note: when computing vector element at index '0'
1448// :87:17: error: use of undefined value here causes illegal behavior1442// :81:17: error: use of undefined value here causes illegal behavior
1449// :87:17: note: when computing vector element at index '0'1443// :81:17: note: when computing vector element at index '0'
1450// :87:17: error: use of undefined value here causes illegal behavior1444// :81:17: error: use of undefined value here causes illegal behavior
1451// :87:17: note: when computing vector element at index '0'1445// :81:17: note: when computing vector element at index '0'
1452// :87:17: error: use of undefined value here causes illegal behavior1446// :81:17: error: use of undefined value here causes illegal behavior
1453// :87:17: error: use of undefined value here causes illegal behavior1447// :81:17: error: use of undefined value here causes illegal behavior
1454// :87:17: error: use of undefined value here causes illegal behavior1448// :81:17: error: use of undefined value here causes illegal behavior
1455// :87:17: note: when computing vector element at index '0'1449// :81:17: note: when computing vector element at index '0'
1456// :87:17: error: use of undefined value here causes illegal behavior1450// :81:17: error: use of undefined value here causes illegal behavior
1457// :87:17: note: when computing vector element at index '0'1451// :81:17: note: when computing vector element at index '0'
1458// :87:17: error: use of undefined value here causes illegal behavior1452// :81:17: error: use of undefined value here causes illegal behavior
1459// :87:17: note: when computing vector element at index '0'1453// :81:17: note: when computing vector element at index '0'
1460// :87:17: error: use of undefined value here causes illegal behavior1454// :81:17: error: use of undefined value here causes illegal behavior
1461// :87:17: note: when computing vector element at index '0'1455// :81:17: note: when computing vector element at index '0'
1462// :87:17: error: use of undefined value here causes illegal behavior1456// :81:17: error: use of undefined value here causes illegal behavior
1463// :87:17: note: when computing vector element at index '1'1457// :81:17: note: when computing vector element at index '1'
1464// :87:17: error: use of undefined value here causes illegal behavior1458// :81:17: error: use of undefined value here causes illegal behavior
1465// :87:17: note: when computing vector element at index '1'1459// :81:17: note: when computing vector element at index '1'
1466// :87:17: error: use of undefined value here causes illegal behavior1460// :81:17: error: use of undefined value here causes illegal behavior
1467// :87:17: note: when computing vector element at index '0'1461// :81:17: note: when computing vector element at index '0'
1468// :87:17: error: use of undefined value here causes illegal behavior1462// :81:17: error: use of undefined value here causes illegal behavior
1469// :87:17: note: when computing vector element at index '0'1463// :81:17: note: when computing vector element at index '0'
1470// :87:17: error: use of undefined value here causes illegal behavior1464// :81:17: error: use of undefined value here causes illegal behavior
1471// :87:17: note: when computing vector element at index '0'1465// :81:17: note: when computing vector element at index '0'
1472// :87:17: error: use of undefined value here causes illegal behavior1466// :81:17: error: use of undefined value here causes illegal behavior
1473// :87:17: note: when computing vector element at index '0'1467// :81:17: note: when computing vector element at index '0'
1474// :87:17: error: use of undefined value here causes illegal behavior1468// :81:17: error: use of undefined value here causes illegal behavior
1475// :87:17: error: use of undefined value here causes illegal behavior1469// :81:17: error: use of undefined value here causes illegal behavior
1476// :87:17: error: use of undefined value here causes illegal behavior1470// :81:17: error: use of undefined value here causes illegal behavior
1477// :87:17: note: when computing vector element at index '0'1471// :81:17: note: when computing vector element at index '0'
1478// :87:17: error: use of undefined value here causes illegal behavior1472// :81:17: error: use of undefined value here causes illegal behavior
1479// :87:17: note: when computing vector element at index '0'1473// :81:17: note: when computing vector element at index '0'
1480// :87:17: error: use of undefined value here causes illegal behavior1474// :81:17: error: use of undefined value here causes illegal behavior
1481// :87:17: note: when computing vector element at index '0'1475// :81:17: note: when computing vector element at index '0'
1482// :87:17: error: use of undefined value here causes illegal behavior1476// :81:17: error: use of undefined value here causes illegal behavior
1483// :87:17: note: when computing vector element at index '0'1477// :81:17: note: when computing vector element at index '0'
1484// :87:17: error: use of undefined value here causes illegal behavior1478// :81:17: error: use of undefined value here causes illegal behavior
1485// :87:17: note: when computing vector element at index '1'1479// :81:17: note: when computing vector element at index '1'
1486// :87:17: error: use of undefined value here causes illegal behavior1480// :81:17: error: use of undefined value here causes illegal behavior
1487// :87:17: note: when computing vector element at index '1'1481// :81:17: note: when computing vector element at index '1'
1488// :87:17: error: use of undefined value here causes illegal behavior1482// :81:17: error: use of undefined value here causes illegal behavior
1489// :87:17: note: when computing vector element at index '0'1483// :81:17: note: when computing vector element at index '0'
1490// :87:17: error: use of undefined value here causes illegal behavior1484// :81:17: error: use of undefined value here causes illegal behavior
1491// :87:17: note: when computing vector element at index '0'1485// :81:17: note: when computing vector element at index '0'
1492// :87:17: error: use of undefined value here causes illegal behavior1486// :81:17: error: use of undefined value here causes illegal behavior
1493// :87:17: note: when computing vector element at index '0'1487// :81:17: note: when computing vector element at index '0'
1494// :87:17: error: use of undefined value here causes illegal behavior1488// :81:17: error: use of undefined value here causes illegal behavior
1495// :87:17: note: when computing vector element at index '0'1489// :81:17: note: when computing vector element at index '0'
1496// :87:17: error: use of undefined value here causes illegal behavior1490// :81:17: error: use of undefined value here causes illegal behavior
1497// :87:17: error: use of undefined value here causes illegal behavior1491// :81:17: error: use of undefined value here causes illegal behavior
1498// :87:17: error: use of undefined value here causes illegal behavior1492// :81:17: error: use of undefined value here causes illegal behavior
1499// :87:17: note: when computing vector element at index '0'1493// :81:17: note: when computing vector element at index '0'
1500// :87:17: error: use of undefined value here causes illegal behavior1494// :81:17: error: use of undefined value here causes illegal behavior
1501// :87:17: note: when computing vector element at index '0'1495// :81:17: note: when computing vector element at index '0'
1502// :87:17: error: use of undefined value here causes illegal behavior1496// :81:17: error: use of undefined value here causes illegal behavior
1503// :87:17: note: when computing vector element at index '0'1497// :81:17: note: when computing vector element at index '0'
1504// :87:17: error: use of undefined value here causes illegal behavior1498// :81:17: error: use of undefined value here causes illegal behavior
1505// :87:17: note: when computing vector element at index '0'1499// :81:17: note: when computing vector element at index '0'
1506// :87:17: error: use of undefined value here causes illegal behavior1500// :81:17: error: use of undefined value here causes illegal behavior
1507// :87:17: note: when computing vector element at index '1'1501// :81:17: note: when computing vector element at index '1'
1508// :87:17: error: use of undefined value here causes illegal behavior1502// :81:17: error: use of undefined value here causes illegal behavior
1509// :87:17: note: when computing vector element at index '1'1503// :81:17: note: when computing vector element at index '1'
1510// :87:17: error: use of undefined value here causes illegal behavior1504// :81:17: error: use of undefined value here causes illegal behavior
1511// :87:17: note: when computing vector element at index '0'1505// :81:17: note: when computing vector element at index '0'
1512// :87:17: error: use of undefined value here causes illegal behavior1506// :81:17: error: use of undefined value here causes illegal behavior
1513// :87:17: note: when computing vector element at index '0'1507// :81:17: note: when computing vector element at index '0'
1514// :87:17: error: use of undefined value here causes illegal behavior1508// :81:17: error: use of undefined value here causes illegal behavior
1515// :87:17: note: when computing vector element at index '0'1509// :81:17: note: when computing vector element at index '0'
1516// :87:17: error: use of undefined value here causes illegal behavior1510// :81:17: error: use of undefined value here causes illegal behavior
1517// :87:17: note: when computing vector element at index '0'1511// :81:17: note: when computing vector element at index '0'
1518// :87:17: error: use of undefined value here causes illegal behavior1512// :81:17: error: use of undefined value here causes illegal behavior
1519// :87:17: error: use of undefined value here causes illegal behavior1513// :81:17: error: use of undefined value here causes illegal behavior
1520// :87:17: error: use of undefined value here causes illegal behavior1514// :81:17: error: use of undefined value here causes illegal behavior
1521// :87:17: note: when computing vector element at index '0'1515// :81:17: note: when computing vector element at index '0'
1522// :87:17: error: use of undefined value here causes illegal behavior1516// :81:17: error: use of undefined value here causes illegal behavior
1523// :87:17: note: when computing vector element at index '0'1517// :81:17: note: when computing vector element at index '0'
1524// :87:17: error: use of undefined value here causes illegal behavior1518// :81:17: error: use of undefined value here causes illegal behavior
1525// :87:17: note: when computing vector element at index '0'1519// :81:17: note: when computing vector element at index '0'
1526// :87:17: error: use of undefined value here causes illegal behavior1520// :81:17: error: use of undefined value here causes illegal behavior
1527// :87:17: note: when computing vector element at index '0'1521// :81:17: note: when computing vector element at index '0'
1528// :87:17: error: use of undefined value here causes illegal behavior1522// :81:17: error: use of undefined value here causes illegal behavior
1529// :87:17: note: when computing vector element at index '1'1523// :81:17: note: when computing vector element at index '1'
1530// :87:17: error: use of undefined value here causes illegal behavior1524// :81:17: error: use of undefined value here causes illegal behavior
1531// :87:17: note: when computing vector element at index '1'1525// :81:17: note: when computing vector element at index '1'
1532// :87:17: error: use of undefined value here causes illegal behavior1526// :81:17: error: use of undefined value here causes illegal behavior
1533// :87:17: note: when computing vector element at index '0'1527// :81:17: note: when computing vector element at index '0'
1534// :87:17: error: use of undefined value here causes illegal behavior1528// :81:17: error: use of undefined value here causes illegal behavior
1535// :87:17: note: when computing vector element at index '0'1529// :81:17: note: when computing vector element at index '0'
1536// :87:17: error: use of undefined value here causes illegal behavior1530// :81:17: error: use of undefined value here causes illegal behavior
1537// :87:17: note: when computing vector element at index '0'1531// :81:17: note: when computing vector element at index '0'
1538// :87:17: error: use of undefined value here causes illegal behavior1532// :81:17: error: use of undefined value here causes illegal behavior
1539// :87:17: note: when computing vector element at index '0'1533// :81:17: note: when computing vector element at index '0'
1540// :87:17: error: use of undefined value here causes illegal behavior1534// :81:17: error: use of undefined value here causes illegal behavior
1541// :87:17: error: use of undefined value here causes illegal behavior1535// :81:17: error: use of undefined value here causes illegal behavior
1542// :87:17: error: use of undefined value here causes illegal behavior1536// :81:17: error: use of undefined value here causes illegal behavior
1543// :87:17: note: when computing vector element at index '0'1537// :81:17: note: when computing vector element at index '0'
1544// :87:17: error: use of undefined value here causes illegal behavior1538// :81:17: error: use of undefined value here causes illegal behavior
1545// :87:17: note: when computing vector element at index '0'1539// :81:17: note: when computing vector element at index '0'
1546// :87:17: error: use of undefined value here causes illegal behavior1540// :81:17: error: use of undefined value here causes illegal behavior
1547// :87:17: note: when computing vector element at index '0'1541// :81:17: note: when computing vector element at index '0'
1548// :87:17: error: use of undefined value here causes illegal behavior1542// :81:17: error: use of undefined value here causes illegal behavior
1549// :87:17: note: when computing vector element at index '0'1543// :81:17: note: when computing vector element at index '0'
1550// :87:17: error: use of undefined value here causes illegal behavior1544// :81:17: error: use of undefined value here causes illegal behavior
1551// :87:17: note: when computing vector element at index '1'1545// :81:17: note: when computing vector element at index '1'
1552// :87:17: error: use of undefined value here causes illegal behavior1546// :81:17: error: use of undefined value here causes illegal behavior
1553// :87:17: note: when computing vector element at index '1'1547// :81:17: note: when computing vector element at index '1'
1554// :87:17: error: use of undefined value here causes illegal behavior1548// :81:17: error: use of undefined value here causes illegal behavior
1555// :87:17: note: when computing vector element at index '0'1549// :81:17: note: when computing vector element at index '0'
1556// :87:17: error: use of undefined value here causes illegal behavior1550// :81:17: error: use of undefined value here causes illegal behavior
1557// :87:17: note: when computing vector element at index '0'1551// :81:17: note: when computing vector element at index '0'
1558// :87:17: error: use of undefined value here causes illegal behavior1552// :81:17: error: use of undefined value here causes illegal behavior
1559// :87:17: note: when computing vector element at index '0'1553// :81:17: note: when computing vector element at index '0'
1560// :87:17: error: use of undefined value here causes illegal behavior1554// :81:17: error: use of undefined value here causes illegal behavior
1561// :87:17: note: when computing vector element at index '0'1555// :81:17: note: when computing vector element at index '0'
1562// :87:17: error: use of undefined value here causes illegal behavior1556// :81:17: error: use of undefined value here causes illegal behavior
1563// :87:17: error: use of undefined value here causes illegal behavior1557// :81:17: error: use of undefined value here causes illegal behavior
1564// :87:17: error: use of undefined value here causes illegal behavior1558// :81:17: error: use of undefined value here causes illegal behavior
1565// :87:17: note: when computing vector element at index '0'1559// :81:17: note: when computing vector element at index '0'
1566// :87:17: error: use of undefined value here causes illegal behavior1560// :81:17: error: use of undefined value here causes illegal behavior
1567// :87:17: note: when computing vector element at index '0'1561// :81:17: note: when computing vector element at index '0'
1568// :87:17: error: use of undefined value here causes illegal behavior1562// :81:17: error: use of undefined value here causes illegal behavior
1569// :87:17: note: when computing vector element at index '0'1563// :81:17: note: when computing vector element at index '0'
1570// :87:17: error: use of undefined value here causes illegal behavior1564// :81:17: error: use of undefined value here causes illegal behavior
1571// :87:17: note: when computing vector element at index '0'1565// :81:17: note: when computing vector element at index '0'
1572// :87:17: error: use of undefined value here causes illegal behavior1566// :81:17: error: use of undefined value here causes illegal behavior
1573// :87:17: note: when computing vector element at index '1'1567// :81:17: note: when computing vector element at index '1'
1574// :87:17: error: use of undefined value here causes illegal behavior1568// :81:17: error: use of undefined value here causes illegal behavior
1575// :87:17: note: when computing vector element at index '1'1569// :81:17: note: when computing vector element at index '1'
1576// :87:17: error: use of undefined value here causes illegal behavior1570// :81:17: error: use of undefined value here causes illegal behavior
1577// :87:17: note: when computing vector element at index '0'1571// :81:17: note: when computing vector element at index '0'
1578// :87:17: error: use of undefined value here causes illegal behavior1572// :81:17: error: use of undefined value here causes illegal behavior
1579// :87:17: note: when computing vector element at index '0'1573// :81:17: note: when computing vector element at index '0'
1580// :87:17: error: use of undefined value here causes illegal behavior1574// :81:17: error: use of undefined value here causes illegal behavior
1581// :87:17: note: when computing vector element at index '0'1575// :81:17: note: when computing vector element at index '0'
1582// :87:17: error: use of undefined value here causes illegal behavior1576// :81:17: error: use of undefined value here causes illegal behavior
1583// :87:17: note: when computing vector element at index '0'1577// :81:17: note: when computing vector element at index '0'
1584// :87:21: error: use of undefined value here causes illegal behavior1578// :81:21: error: use of undefined value here causes illegal behavior
1585// :87:21: note: when computing vector element at index '0'1579// :81:21: note: when computing vector element at index '0'
1586// :87:21: error: use of undefined value here causes illegal behavior1580// :81:21: error: use of undefined value here causes illegal behavior
1587// :87:21: note: when computing vector element at index '0'1581// :81:21: note: when computing vector element at index '0'
1588// :87:21: error: use of undefined value here causes illegal behavior1582// :81:21: error: use of undefined value here causes illegal behavior
1589// :87:21: note: when computing vector element at index '0'1583// :81:21: note: when computing vector element at index '0'
1590// :87:21: error: use of undefined value here causes illegal behavior1584// :81:21: error: use of undefined value here causes illegal behavior
1591// :87:21: note: when computing vector element at index '0'1585// :81:21: note: when computing vector element at index '0'
1592// :87:21: error: use of undefined value here causes illegal behavior1586// :81:21: error: use of undefined value here causes illegal behavior
1593// :87:21: note: when computing vector element at index '0'1587// :81:21: note: when computing vector element at index '0'
1594// :87:21: error: use of undefined value here causes illegal behavior1588// :81:21: error: use of undefined value here causes illegal behavior
1595// :87:21: note: when computing vector element at index '0'1589// :81:21: note: when computing vector element at index '0'
1596// :87:21: error: use of undefined value here causes illegal behavior1590// :81:21: error: use of undefined value here causes illegal behavior
1597// :87:21: note: when computing vector element at index '0'1591// :81:21: note: when computing vector element at index '0'
1598// :87:21: error: use of undefined value here causes illegal behavior1592// :81:21: error: use of undefined value here causes illegal behavior
1599// :87:21: note: when computing vector element at index '0'1593// :81:21: note: when computing vector element at index '0'
1600// :87:21: error: use of undefined value here causes illegal behavior1594// :81:21: error: use of undefined value here causes illegal behavior
1601// :87:21: note: when computing vector element at index '0'1595// :81:21: note: when computing vector element at index '0'
1602// :87:21: error: use of undefined value here causes illegal behavior1596// :81:21: error: use of undefined value here causes illegal behavior
1603// :87:21: note: when computing vector element at index '0'1597// :81:21: note: when computing vector element at index '0'
1604// :87:21: error: use of undefined value here causes illegal behavior1598// :81:21: error: use of undefined value here causes illegal behavior
1605// :87:21: note: when computing vector element at index '0'1599// :81:21: note: when computing vector element at index '0'
1606// :87:21: error: use of undefined value here causes illegal behavior1600// :81:21: error: use of undefined value here causes illegal behavior
1607// :87:21: note: when computing vector element at index '0'1601// :81:21: note: when computing vector element at index '0'
1608// :87:21: error: use of undefined value here causes illegal behavior1602// :81:21: error: use of undefined value here causes illegal behavior
1609// :87:21: note: when computing vector element at index '0'1603// :81:21: note: when computing vector element at index '0'
1610// :87:21: error: use of undefined value here causes illegal behavior1604// :81:21: error: use of undefined value here causes illegal behavior
1611// :87:21: note: when computing vector element at index '0'1605// :81:21: note: when computing vector element at index '0'
1612// :87:21: error: use of undefined value here causes illegal behavior1606// :81:21: error: use of undefined value here causes illegal behavior
1613// :87:21: note: when computing vector element at index '0'1607// :81:21: note: when computing vector element at index '0'
1614// :87:21: error: use of undefined value here causes illegal behavior1608// :81:21: error: use of undefined value here causes illegal behavior
1615// :87:21: note: when computing vector element at index '0'1609// :81:21: note: when computing vector element at index '0'
1616// :87:21: error: use of undefined value here causes illegal behavior1610// :81:21: error: use of undefined value here causes illegal behavior
1617// :87:21: note: when computing vector element at index '0'1611// :81:21: note: when computing vector element at index '0'
1618// :87:21: error: use of undefined value here causes illegal behavior1612// :81:21: error: use of undefined value here causes illegal behavior
1619// :87:21: note: when computing vector element at index '0'1613// :81:21: note: when computing vector element at index '0'
1620// :87:21: error: use of undefined value here causes illegal behavior1614// :81:21: error: use of undefined value here causes illegal behavior
1621// :87:21: note: when computing vector element at index '0'1615// :81:21: note: when computing vector element at index '0'
1622// :87:21: error: use of undefined value here causes illegal behavior1616// :81:21: error: use of undefined value here causes illegal behavior
1623// :87:21: note: when computing vector element at index '0'1617// :81:21: note: when computing vector element at index '0'
1624// :87:21: error: use of undefined value here causes illegal behavior1618// :81:21: error: use of undefined value here causes illegal behavior
1625// :87:21: note: when computing vector element at index '0'1619// :81:21: note: when computing vector element at index '0'
1626// :87:21: error: use of undefined value here causes illegal behavior1620// :81:21: error: use of undefined value here causes illegal behavior
1627// :87:21: note: when computing vector element at index '0'1621// :81:21: note: when computing vector element at index '0'
1628// :91:22: error: use of undefined value here causes illegal behavior1622// :85:22: error: use of undefined value here causes illegal behavior
1629// :91:22: error: use of undefined value here causes illegal behavior1623// :85:22: error: use of undefined value here causes illegal behavior
1630// :91:22: error: use of undefined value here causes illegal behavior1624// :85:22: error: use of undefined value here causes illegal behavior
1631// :91:22: note: when computing vector element at index '0'1625// :85:22: note: when computing vector element at index '0'
1632// :91:22: error: use of undefined value here causes illegal behavior1626// :85:22: error: use of undefined value here causes illegal behavior
1633// :91:22: note: when computing vector element at index '0'1627// :85:22: note: when computing vector element at index '0'
1634// :91:22: error: use of undefined value here causes illegal behavior1628// :85:22: error: use of undefined value here causes illegal behavior
1635// :91:22: note: when computing vector element at index '0'1629// :85:22: note: when computing vector element at index '0'
1636// :91:22: error: use of undefined value here causes illegal behavior1630// :85:22: error: use of undefined value here causes illegal behavior
1637// :91:22: note: when computing vector element at index '0'1631// :85:22: note: when computing vector element at index '0'
1638// :91:22: error: use of undefined value here causes illegal behavior1632// :85:22: error: use of undefined value here causes illegal behavior
1639// :91:22: note: when computing vector element at index '1'1633// :85:22: note: when computing vector element at index '1'
1640// :91:22: error: use of undefined value here causes illegal behavior1634// :85:22: error: use of undefined value here causes illegal behavior
1641// :91:22: note: when computing vector element at index '1'1635// :85:22: note: when computing vector element at index '1'
1642// :91:22: error: use of undefined value here causes illegal behavior1636// :85:22: error: use of undefined value here causes illegal behavior
1643// :91:22: note: when computing vector element at index '0'1637// :85:22: note: when computing vector element at index '0'
1644// :91:22: error: use of undefined value here causes illegal behavior1638// :85:22: error: use of undefined value here causes illegal behavior
1645// :91:22: note: when computing vector element at index '0'1639// :85:22: note: when computing vector element at index '0'
1646// :91:22: error: use of undefined value here causes illegal behavior1640// :85:22: error: use of undefined value here causes illegal behavior
1647// :91:22: note: when computing vector element at index '0'1641// :85:22: note: when computing vector element at index '0'
1648// :91:22: error: use of undefined value here causes illegal behavior1642// :85:22: error: use of undefined value here causes illegal behavior
1649// :91:22: note: when computing vector element at index '0'1643// :85:22: note: when computing vector element at index '0'
1650// :91:22: error: use of undefined value here causes illegal behavior1644// :85:22: error: use of undefined value here causes illegal behavior
1651// :91:22: error: use of undefined value here causes illegal behavior1645// :85:22: error: use of undefined value here causes illegal behavior
1652// :91:22: error: use of undefined value here causes illegal behavior1646// :85:22: error: use of undefined value here causes illegal behavior
1653// :91:22: note: when computing vector element at index '0'1647// :85:22: note: when computing vector element at index '0'
1654// :91:22: error: use of undefined value here causes illegal behavior1648// :85:22: error: use of undefined value here causes illegal behavior
1655// :91:22: note: when computing vector element at index '0'1649// :85:22: note: when computing vector element at index '0'
1656// :91:22: error: use of undefined value here causes illegal behavior1650// :85:22: error: use of undefined value here causes illegal behavior
1657// :91:22: note: when computing vector element at index '0'1651// :85:22: note: when computing vector element at index '0'
1658// :91:22: error: use of undefined value here causes illegal behavior1652// :85:22: error: use of undefined value here causes illegal behavior
1659// :91:22: note: when computing vector element at index '0'1653// :85:22: note: when computing vector element at index '0'
1660// :91:22: error: use of undefined value here causes illegal behavior1654// :85:22: error: use of undefined value here causes illegal behavior
1661// :91:22: note: when computing vector element at index '1'1655// :85:22: note: when computing vector element at index '1'
1662// :91:22: error: use of undefined value here causes illegal behavior1656// :85:22: error: use of undefined value here causes illegal behavior
1663// :91:22: note: when computing vector element at index '1'1657// :85:22: note: when computing vector element at index '1'
1664// :91:22: error: use of undefined value here causes illegal behavior1658// :85:22: error: use of undefined value here causes illegal behavior
1665// :91:22: note: when computing vector element at index '0'1659// :85:22: note: when computing vector element at index '0'
1666// :91:22: error: use of undefined value here causes illegal behavior1660// :85:22: error: use of undefined value here causes illegal behavior
1667// :91:22: note: when computing vector element at index '0'1661// :85:22: note: when computing vector element at index '0'
1668// :91:22: error: use of undefined value here causes illegal behavior1662// :85:22: error: use of undefined value here causes illegal behavior
1669// :91:22: note: when computing vector element at index '0'1663// :85:22: note: when computing vector element at index '0'
1670// :91:22: error: use of undefined value here causes illegal behavior1664// :85:22: error: use of undefined value here causes illegal behavior
1671// :91:22: note: when computing vector element at index '0'1665// :85:22: note: when computing vector element at index '0'
1672// :91:22: error: use of undefined value here causes illegal behavior1666// :85:22: error: use of undefined value here causes illegal behavior
1673// :91:22: error: use of undefined value here causes illegal behavior1667// :85:22: error: use of undefined value here causes illegal behavior
1674// :91:22: error: use of undefined value here causes illegal behavior1668// :85:22: error: use of undefined value here causes illegal behavior
1675// :91:22: note: when computing vector element at index '0'1669// :85:22: note: when computing vector element at index '0'
1676// :91:22: error: use of undefined value here causes illegal behavior1670// :85:22: error: use of undefined value here causes illegal behavior
1677// :91:22: note: when computing vector element at index '0'1671// :85:22: note: when computing vector element at index '0'
1678// :91:22: error: use of undefined value here causes illegal behavior1672// :85:22: error: use of undefined value here causes illegal behavior
1679// :91:22: note: when computing vector element at index '0'1673// :85:22: note: when computing vector element at index '0'
1680// :91:22: error: use of undefined value here causes illegal behavior1674// :85:22: error: use of undefined value here causes illegal behavior
1681// :91:22: note: when computing vector element at index '0'1675// :85:22: note: when computing vector element at index '0'
1682// :91:22: error: use of undefined value here causes illegal behavior1676// :85:22: error: use of undefined value here causes illegal behavior
1683// :91:22: note: when computing vector element at index '1'1677// :85:22: note: when computing vector element at index '1'
1684// :91:22: error: use of undefined value here causes illegal behavior1678// :85:22: error: use of undefined value here causes illegal behavior
1685// :91:22: note: when computing vector element at index '1'1679// :85:22: note: when computing vector element at index '1'
1686// :91:22: error: use of undefined value here causes illegal behavior1680// :85:22: error: use of undefined value here causes illegal behavior
1687// :91:22: note: when computing vector element at index '0'1681// :85:22: note: when computing vector element at index '0'
1688// :91:22: error: use of undefined value here causes illegal behavior1682// :85:22: error: use of undefined value here causes illegal behavior
1689// :91:22: note: when computing vector element at index '0'1683// :85:22: note: when computing vector element at index '0'
1690// :91:22: error: use of undefined value here causes illegal behavior1684// :85:22: error: use of undefined value here causes illegal behavior
1691// :91:22: note: when computing vector element at index '0'1685// :85:22: note: when computing vector element at index '0'
1692// :91:22: error: use of undefined value here causes illegal behavior1686// :85:22: error: use of undefined value here causes illegal behavior
1693// :91:22: note: when computing vector element at index '0'1687// :85:22: note: when computing vector element at index '0'
1694// :91:22: error: use of undefined value here causes illegal behavior1688// :85:22: error: use of undefined value here causes illegal behavior
1695// :91:22: error: use of undefined value here causes illegal behavior1689// :85:22: error: use of undefined value here causes illegal behavior
1696// :91:22: error: use of undefined value here causes illegal behavior1690// :85:22: error: use of undefined value here causes illegal behavior
1697// :91:22: note: when computing vector element at index '0'1691// :85:22: note: when computing vector element at index '0'
1698// :91:22: error: use of undefined value here causes illegal behavior1692// :85:22: error: use of undefined value here causes illegal behavior
1699// :91:22: note: when computing vector element at index '0'1693// :85:22: note: when computing vector element at index '0'
1700// :91:22: error: use of undefined value here causes illegal behavior1694// :85:22: error: use of undefined value here causes illegal behavior
1701// :91:22: note: when computing vector element at index '0'1695// :85:22: note: when computing vector element at index '0'
1702// :91:22: error: use of undefined value here causes illegal behavior1696// :85:22: error: use of undefined value here causes illegal behavior
1703// :91:22: note: when computing vector element at index '0'1697// :85:22: note: when computing vector element at index '0'
1704// :91:22: error: use of undefined value here causes illegal behavior1698// :85:22: error: use of undefined value here causes illegal behavior
1705// :91:22: note: when computing vector element at index '1'1699// :85:22: note: when computing vector element at index '1'
1706// :91:22: error: use of undefined value here causes illegal behavior1700// :85:22: error: use of undefined value here causes illegal behavior
1707// :91:22: note: when computing vector element at index '1'1701// :85:22: note: when computing vector element at index '1'
1708// :91:22: error: use of undefined value here causes illegal behavior1702// :85:22: error: use of undefined value here causes illegal behavior
1709// :91:22: note: when computing vector element at index '0'1703// :85:22: note: when computing vector element at index '0'
1710// :91:22: error: use of undefined value here causes illegal behavior1704// :85:22: error: use of undefined value here causes illegal behavior
1711// :91:22: note: when computing vector element at index '0'1705// :85:22: note: when computing vector element at index '0'
1712// :91:22: error: use of undefined value here causes illegal behavior1706// :85:22: error: use of undefined value here causes illegal behavior
1713// :91:22: note: when computing vector element at index '0'1707// :85:22: note: when computing vector element at index '0'
1714// :91:22: error: use of undefined value here causes illegal behavior1708// :85:22: error: use of undefined value here causes illegal behavior
1715// :91:22: note: when computing vector element at index '0'1709// :85:22: note: when computing vector element at index '0'
1716// :91:22: error: use of undefined value here causes illegal behavior1710// :85:22: error: use of undefined value here causes illegal behavior
1717// :91:22: error: use of undefined value here causes illegal behavior1711// :85:22: error: use of undefined value here causes illegal behavior
1718// :91:22: error: use of undefined value here causes illegal behavior1712// :85:22: error: use of undefined value here causes illegal behavior
1719// :91:22: note: when computing vector element at index '0'1713// :85:22: note: when computing vector element at index '0'
1720// :91:22: error: use of undefined value here causes illegal behavior1714// :85:22: error: use of undefined value here causes illegal behavior
1721// :91:22: note: when computing vector element at index '0'1715// :85:22: note: when computing vector element at index '0'
1722// :91:22: error: use of undefined value here causes illegal behavior1716// :85:22: error: use of undefined value here causes illegal behavior
1723// :91:22: note: when computing vector element at index '0'1717// :85:22: note: when computing vector element at index '0'
1724// :91:22: error: use of undefined value here causes illegal behavior1718// :85:22: error: use of undefined value here causes illegal behavior
1725// :91:22: note: when computing vector element at index '0'1719// :85:22: note: when computing vector element at index '0'
1726// :91:22: error: use of undefined value here causes illegal behavior1720// :85:22: error: use of undefined value here causes illegal behavior
1727// :91:22: note: when computing vector element at index '1'1721// :85:22: note: when computing vector element at index '1'
1728// :91:22: error: use of undefined value here causes illegal behavior1722// :85:22: error: use of undefined value here causes illegal behavior
1729// :91:22: note: when computing vector element at index '1'1723// :85:22: note: when computing vector element at index '1'
1730// :91:22: error: use of undefined value here causes illegal behavior1724// :85:22: error: use of undefined value here causes illegal behavior
1731// :91:22: note: when computing vector element at index '0'1725// :85:22: note: when computing vector element at index '0'
1732// :91:22: error: use of undefined value here causes illegal behavior1726// :85:22: error: use of undefined value here causes illegal behavior
1733// :91:22: note: when computing vector element at index '0'1727// :85:22: note: when computing vector element at index '0'
1734// :91:22: error: use of undefined value here causes illegal behavior1728// :85:22: error: use of undefined value here causes illegal behavior
1735// :91:22: note: when computing vector element at index '0'1729// :85:22: note: when computing vector element at index '0'
1736// :91:22: error: use of undefined value here causes illegal behavior1730// :85:22: error: use of undefined value here causes illegal behavior
1737// :91:22: note: when computing vector element at index '0'1731// :85:22: note: when computing vector element at index '0'
1738// :91:22: error: use of undefined value here causes illegal behavior1732// :85:22: error: use of undefined value here causes illegal behavior
1739// :91:22: error: use of undefined value here causes illegal behavior1733// :85:22: error: use of undefined value here causes illegal behavior
1740// :91:22: error: use of undefined value here causes illegal behavior1734// :85:22: error: use of undefined value here causes illegal behavior
1741// :91:22: note: when computing vector element at index '0'1735// :85:22: note: when computing vector element at index '0'
1742// :91:22: error: use of undefined value here causes illegal behavior1736// :85:22: error: use of undefined value here causes illegal behavior
1743// :91:22: note: when computing vector element at index '0'1737// :85:22: note: when computing vector element at index '0'
1744// :91:22: error: use of undefined value here causes illegal behavior1738// :85:22: error: use of undefined value here causes illegal behavior
1745// :91:22: note: when computing vector element at index '0'1739// :85:22: note: when computing vector element at index '0'
1746// :91:22: error: use of undefined value here causes illegal behavior1740// :85:22: error: use of undefined value here causes illegal behavior
1747// :91:22: note: when computing vector element at index '0'1741// :85:22: note: when computing vector element at index '0'
1748// :91:22: error: use of undefined value here causes illegal behavior1742// :85:22: error: use of undefined value here causes illegal behavior
1749// :91:22: note: when computing vector element at index '1'1743// :85:22: note: when computing vector element at index '1'
1750// :91:22: error: use of undefined value here causes illegal behavior1744// :85:22: error: use of undefined value here causes illegal behavior
1751// :91:22: note: when computing vector element at index '1'1745// :85:22: note: when computing vector element at index '1'
1752// :91:22: error: use of undefined value here causes illegal behavior1746// :85:22: error: use of undefined value here causes illegal behavior
1753// :91:22: note: when computing vector element at index '0'1747// :85:22: note: when computing vector element at index '0'
1754// :91:22: error: use of undefined value here causes illegal behavior1748// :85:22: error: use of undefined value here causes illegal behavior
1755// :91:22: note: when computing vector element at index '0'1749// :85:22: note: when computing vector element at index '0'
1756// :91:22: error: use of undefined value here causes illegal behavior1750// :85:22: error: use of undefined value here causes illegal behavior
1757// :91:22: note: when computing vector element at index '0'1751// :85:22: note: when computing vector element at index '0'
1758// :91:22: error: use of undefined value here causes illegal behavior1752// :85:22: error: use of undefined value here causes illegal behavior
1759// :91:22: note: when computing vector element at index '0'1753// :85:22: note: when computing vector element at index '0'
1760// :91:22: error: use of undefined value here causes illegal behavior1754// :85:22: error: use of undefined value here causes illegal behavior
1761// :91:22: error: use of undefined value here causes illegal behavior1755// :85:22: error: use of undefined value here causes illegal behavior
1762// :91:22: error: use of undefined value here causes illegal behavior1756// :85:22: error: use of undefined value here causes illegal behavior
1763// :91:22: note: when computing vector element at index '0'1757// :85:22: note: when computing vector element at index '0'
1764// :91:22: error: use of undefined value here causes illegal behavior1758// :85:22: error: use of undefined value here causes illegal behavior
1765// :91:22: note: when computing vector element at index '0'1759// :85:22: note: when computing vector element at index '0'
1766// :91:22: error: use of undefined value here causes illegal behavior1760// :85:22: error: use of undefined value here causes illegal behavior
1767// :91:22: note: when computing vector element at index '0'1761// :85:22: note: when computing vector element at index '0'
1768// :91:22: error: use of undefined value here causes illegal behavior1762// :85:22: error: use of undefined value here causes illegal behavior
1769// :91:22: note: when computing vector element at index '0'1763// :85:22: note: when computing vector element at index '0'
1770// :91:22: error: use of undefined value here causes illegal behavior1764// :85:22: error: use of undefined value here causes illegal behavior
1771// :91:22: note: when computing vector element at index '1'1765// :85:22: note: when computing vector element at index '1'
1772// :91:22: error: use of undefined value here causes illegal behavior1766// :85:22: error: use of undefined value here causes illegal behavior
1773// :91:22: note: when computing vector element at index '1'1767// :85:22: note: when computing vector element at index '1'
1774// :91:22: error: use of undefined value here causes illegal behavior1768// :85:22: error: use of undefined value here causes illegal behavior
1775// :91:22: note: when computing vector element at index '0'1769// :85:22: note: when computing vector element at index '0'
1776// :91:22: error: use of undefined value here causes illegal behavior1770// :85:22: error: use of undefined value here causes illegal behavior
1777// :91:22: note: when computing vector element at index '0'1771// :85:22: note: when computing vector element at index '0'
1778// :91:22: error: use of undefined value here causes illegal behavior1772// :85:22: error: use of undefined value here causes illegal behavior
1779// :91:22: note: when computing vector element at index '0'1773// :85:22: note: when computing vector element at index '0'
1780// :91:22: error: use of undefined value here causes illegal behavior1774// :85:22: error: use of undefined value here causes illegal behavior
1781// :91:22: note: when computing vector element at index '0'1775// :85:22: note: when computing vector element at index '0'
1782// :91:22: error: use of undefined value here causes illegal behavior1776// :85:22: error: use of undefined value here causes illegal behavior
1783// :91:22: error: use of undefined value here causes illegal behavior1777// :85:22: error: use of undefined value here causes illegal behavior
1784// :91:22: error: use of undefined value here causes illegal behavior1778// :85:22: error: use of undefined value here causes illegal behavior
1785// :91:22: note: when computing vector element at index '0'1779// :85:22: note: when computing vector element at index '0'
1786// :91:22: error: use of undefined value here causes illegal behavior1780// :85:22: error: use of undefined value here causes illegal behavior
1787// :91:22: note: when computing vector element at index '0'1781// :85:22: note: when computing vector element at index '0'
1788// :91:22: error: use of undefined value here causes illegal behavior1782// :85:22: error: use of undefined value here causes illegal behavior
1789// :91:22: note: when computing vector element at index '0'1783// :85:22: note: when computing vector element at index '0'
1790// :91:22: error: use of undefined value here causes illegal behavior1784// :85:22: error: use of undefined value here causes illegal behavior
1791// :91:22: note: when computing vector element at index '0'1785// :85:22: note: when computing vector element at index '0'
1792// :91:22: error: use of undefined value here causes illegal behavior1786// :85:22: error: use of undefined value here causes illegal behavior
1793// :91:22: note: when computing vector element at index '1'1787// :85:22: note: when computing vector element at index '1'
1794// :91:22: error: use of undefined value here causes illegal behavior1788// :85:22: error: use of undefined value here causes illegal behavior
1795// :91:22: note: when computing vector element at index '1'1789// :85:22: note: when computing vector element at index '1'
1796// :91:22: error: use of undefined value here causes illegal behavior1790// :85:22: error: use of undefined value here causes illegal behavior
1797// :91:22: note: when computing vector element at index '0'1791// :85:22: note: when computing vector element at index '0'
1798// :91:22: error: use of undefined value here causes illegal behavior1792// :85:22: error: use of undefined value here causes illegal behavior
1799// :91:22: note: when computing vector element at index '0'1793// :85:22: note: when computing vector element at index '0'
1800// :91:22: error: use of undefined value here causes illegal behavior1794// :85:22: error: use of undefined value here causes illegal behavior
1801// :91:22: note: when computing vector element at index '0'1795// :85:22: note: when computing vector element at index '0'
1802// :91:22: error: use of undefined value here causes illegal behavior1796// :85:22: error: use of undefined value here causes illegal behavior
1803// :91:22: note: when computing vector element at index '0'1797// :85:22: note: when computing vector element at index '0'
1804// :91:22: error: use of undefined value here causes illegal behavior1798// :85:22: error: use of undefined value here causes illegal behavior
1805// :91:22: error: use of undefined value here causes illegal behavior1799// :85:22: error: use of undefined value here causes illegal behavior
1806// :91:22: error: use of undefined value here causes illegal behavior1800// :85:22: error: use of undefined value here causes illegal behavior
1807// :91:22: note: when computing vector element at index '0'1801// :85:22: note: when computing vector element at index '0'
1808// :91:22: error: use of undefined value here causes illegal behavior1802// :85:22: error: use of undefined value here causes illegal behavior
1809// :91:22: note: when computing vector element at index '0'1803// :85:22: note: when computing vector element at index '0'
1810// :91:22: error: use of undefined value here causes illegal behavior1804// :85:22: error: use of undefined value here causes illegal behavior
1811// :91:22: note: when computing vector element at index '0'1805// :85:22: note: when computing vector element at index '0'
1812// :91:22: error: use of undefined value here causes illegal behavior1806// :85:22: error: use of undefined value here causes illegal behavior
1813// :91:22: note: when computing vector element at index '0'1807// :85:22: note: when computing vector element at index '0'
1814// :91:22: error: use of undefined value here causes illegal behavior1808// :85:22: error: use of undefined value here causes illegal behavior
1815// :91:22: note: when computing vector element at index '1'1809// :85:22: note: when computing vector element at index '1'
1816// :91:22: error: use of undefined value here causes illegal behavior1810// :85:22: error: use of undefined value here causes illegal behavior
1817// :91:22: note: when computing vector element at index '1'1811// :85:22: note: when computing vector element at index '1'
1818// :91:22: error: use of undefined value here causes illegal behavior1812// :85:22: error: use of undefined value here causes illegal behavior
1819// :91:22: note: when computing vector element at index '0'1813// :85:22: note: when computing vector element at index '0'
1820// :91:22: error: use of undefined value here causes illegal behavior1814// :85:22: error: use of undefined value here causes illegal behavior
1821// :91:22: note: when computing vector element at index '0'1815// :85:22: note: when computing vector element at index '0'
1822// :91:22: error: use of undefined value here causes illegal behavior1816// :85:22: error: use of undefined value here causes illegal behavior
1823// :91:22: note: when computing vector element at index '0'1817// :85:22: note: when computing vector element at index '0'
1824// :91:22: error: use of undefined value here causes illegal behavior1818// :85:22: error: use of undefined value here causes illegal behavior
1825// :91:22: note: when computing vector element at index '0'1819// :85:22: note: when computing vector element at index '0'
1826// :91:22: error: use of undefined value here causes illegal behavior1820// :85:22: error: use of undefined value here causes illegal behavior
1827// :91:22: error: use of undefined value here causes illegal behavior1821// :85:22: error: use of undefined value here causes illegal behavior
1828// :91:22: error: use of undefined value here causes illegal behavior1822// :85:22: error: use of undefined value here causes illegal behavior
1829// :91:22: note: when computing vector element at index '0'1823// :85:22: note: when computing vector element at index '0'
1830// :91:22: error: use of undefined value here causes illegal behavior1824// :85:22: error: use of undefined value here causes illegal behavior
1831// :91:22: note: when computing vector element at index '0'1825// :85:22: note: when computing vector element at index '0'
1832// :91:22: error: use of undefined value here causes illegal behavior1826// :85:22: error: use of undefined value here causes illegal behavior
1833// :91:22: note: when computing vector element at index '0'1827// :85:22: note: when computing vector element at index '0'
1834// :91:22: error: use of undefined value here causes illegal behavior1828// :85:22: error: use of undefined value here causes illegal behavior
1835// :91:22: note: when computing vector element at index '0'1829// :85:22: note: when computing vector element at index '0'
1836// :91:22: error: use of undefined value here causes illegal behavior1830// :85:22: error: use of undefined value here causes illegal behavior
1837// :91:22: note: when computing vector element at index '1'1831// :85:22: note: when computing vector element at index '1'
1838// :91:22: error: use of undefined value here causes illegal behavior1832// :85:22: error: use of undefined value here causes illegal behavior
1839// :91:22: note: when computing vector element at index '1'1833// :85:22: note: when computing vector element at index '1'
1840// :91:22: error: use of undefined value here causes illegal behavior1834// :85:22: error: use of undefined value here causes illegal behavior
1841// :91:22: note: when computing vector element at index '0'1835// :85:22: note: when computing vector element at index '0'
1842// :91:22: error: use of undefined value here causes illegal behavior1836// :85:22: error: use of undefined value here causes illegal behavior
1843// :91:22: note: when computing vector element at index '0'1837// :85:22: note: when computing vector element at index '0'
1844// :91:22: error: use of undefined value here causes illegal behavior1838// :85:22: error: use of undefined value here causes illegal behavior
1845// :91:22: note: when computing vector element at index '0'1839// :85:22: note: when computing vector element at index '0'
1846// :91:22: error: use of undefined value here causes illegal behavior1840// :85:22: error: use of undefined value here causes illegal behavior
1847// :91:22: note: when computing vector element at index '0'1841// :85:22: note: when computing vector element at index '0'
1848// :91:22: error: use of undefined value here causes illegal behavior1842// :85:22: error: use of undefined value here causes illegal behavior
1849// :91:22: error: use of undefined value here causes illegal behavior1843// :85:22: error: use of undefined value here causes illegal behavior
1850// :91:22: error: use of undefined value here causes illegal behavior1844// :85:22: error: use of undefined value here causes illegal behavior
1851// :91:22: note: when computing vector element at index '0'1845// :85:22: note: when computing vector element at index '0'
1852// :91:22: error: use of undefined value here causes illegal behavior1846// :85:22: error: use of undefined value here causes illegal behavior
1853// :91:22: note: when computing vector element at index '0'1847// :85:22: note: when computing vector element at index '0'
1854// :91:22: error: use of undefined value here causes illegal behavior1848// :85:22: error: use of undefined value here causes illegal behavior
1855// :91:22: note: when computing vector element at index '0'1849// :85:22: note: when computing vector element at index '0'
1856// :91:22: error: use of undefined value here causes illegal behavior1850// :85:22: error: use of undefined value here causes illegal behavior
1857// :91:22: note: when computing vector element at index '0'1851// :85:22: note: when computing vector element at index '0'
1858// :91:22: error: use of undefined value here causes illegal behavior1852// :85:22: error: use of undefined value here causes illegal behavior
1859// :91:22: note: when computing vector element at index '1'1853// :85:22: note: when computing vector element at index '1'
1860// :91:22: error: use of undefined value here causes illegal behavior1854// :85:22: error: use of undefined value here causes illegal behavior
1861// :91:22: note: when computing vector element at index '1'1855// :85:22: note: when computing vector element at index '1'
1862// :91:22: error: use of undefined value here causes illegal behavior1856// :85:22: error: use of undefined value here causes illegal behavior
1863// :91:22: note: when computing vector element at index '0'1857// :85:22: note: when computing vector element at index '0'
1864// :91:22: error: use of undefined value here causes illegal behavior1858// :85:22: error: use of undefined value here causes illegal behavior
1865// :91:22: note: when computing vector element at index '0'1859// :85:22: note: when computing vector element at index '0'
1866// :91:22: error: use of undefined value here causes illegal behavior1860// :85:22: error: use of undefined value here causes illegal behavior
1867// :91:22: note: when computing vector element at index '0'1861// :85:22: note: when computing vector element at index '0'
1868// :91:22: error: use of undefined value here causes illegal behavior1862// :85:22: error: use of undefined value here causes illegal behavior
1869// :91:22: note: when computing vector element at index '0'1863// :85:22: note: when computing vector element at index '0'
1870// :91:25: error: use of undefined value here causes illegal behavior1864// :85:25: error: use of undefined value here causes illegal behavior
1871// :91:25: note: when computing vector element at index '0'1865// :85:25: note: when computing vector element at index '0'
1872// :91:25: error: use of undefined value here causes illegal behavior1866// :85:25: error: use of undefined value here causes illegal behavior
1873// :91:25: note: when computing vector element at index '0'1867// :85:25: note: when computing vector element at index '0'
1874// :91:25: error: use of undefined value here causes illegal behavior1868// :85:25: error: use of undefined value here causes illegal behavior
1875// :91:25: note: when computing vector element at index '0'1869// :85:25: note: when computing vector element at index '0'
1876// :91:25: error: use of undefined value here causes illegal behavior1870// :85:25: error: use of undefined value here causes illegal behavior
1877// :91:25: note: when computing vector element at index '0'1871// :85:25: note: when computing vector element at index '0'
1878// :91:25: error: use of undefined value here causes illegal behavior1872// :85:25: error: use of undefined value here causes illegal behavior
1879// :91:25: note: when computing vector element at index '0'1873// :85:25: note: when computing vector element at index '0'
1880// :91:25: error: use of undefined value here causes illegal behavior1874// :85:25: error: use of undefined value here causes illegal behavior
1881// :91:25: note: when computing vector element at index '0'1875// :85:25: note: when computing vector element at index '0'
1882// :91:25: error: use of undefined value here causes illegal behavior1876// :85:25: error: use of undefined value here causes illegal behavior
1883// :91:25: note: when computing vector element at index '0'1877// :85:25: note: when computing vector element at index '0'
1884// :91:25: error: use of undefined value here causes illegal behavior1878// :85:25: error: use of undefined value here causes illegal behavior
1885// :91:25: note: when computing vector element at index '0'1879// :85:25: note: when computing vector element at index '0'
1886// :91:25: error: use of undefined value here causes illegal behavior1880// :85:25: error: use of undefined value here causes illegal behavior
1887// :91:25: note: when computing vector element at index '0'1881// :85:25: note: when computing vector element at index '0'
1888// :91:25: error: use of undefined value here causes illegal behavior1882// :85:25: error: use of undefined value here causes illegal behavior
1889// :91:25: note: when computing vector element at index '0'1883// :85:25: note: when computing vector element at index '0'
1890// :91:25: error: use of undefined value here causes illegal behavior1884// :85:25: error: use of undefined value here causes illegal behavior
1891// :91:25: note: when computing vector element at index '0'1885// :85:25: note: when computing vector element at index '0'
1892// :91:25: error: use of undefined value here causes illegal behavior1886// :85:25: error: use of undefined value here causes illegal behavior
1893// :91:25: note: when computing vector element at index '0'1887// :85:25: note: when computing vector element at index '0'
1894// :91:25: error: use of undefined value here causes illegal behavior1888// :85:25: error: use of undefined value here causes illegal behavior
1895// :91:25: note: when computing vector element at index '0'1889// :85:25: note: when computing vector element at index '0'
1896// :91:25: error: use of undefined value here causes illegal behavior1890// :85:25: error: use of undefined value here causes illegal behavior
1897// :91:25: note: when computing vector element at index '0'1891// :85:25: note: when computing vector element at index '0'
1898// :91:25: error: use of undefined value here causes illegal behavior1892// :85:25: error: use of undefined value here causes illegal behavior
1899// :91:25: note: when computing vector element at index '0'1893// :85:25: note: when computing vector element at index '0'
1900// :91:25: error: use of undefined value here causes illegal behavior1894// :85:25: error: use of undefined value here causes illegal behavior
1901// :91:25: note: when computing vector element at index '0'1895// :85:25: note: when computing vector element at index '0'
1902// :91:25: error: use of undefined value here causes illegal behavior1896// :85:25: error: use of undefined value here causes illegal behavior
1903// :91:25: note: when computing vector element at index '0'1897// :85:25: note: when computing vector element at index '0'
1904// :91:25: error: use of undefined value here causes illegal behavior1898// :85:25: error: use of undefined value here causes illegal behavior
1905// :91:25: note: when computing vector element at index '0'1899// :85:25: note: when computing vector element at index '0'
1906// :91:25: error: use of undefined value here causes illegal behavior1900// :85:25: error: use of undefined value here causes illegal behavior
1907// :91:25: note: when computing vector element at index '0'1901// :85:25: note: when computing vector element at index '0'
1908// :91:25: error: use of undefined value here causes illegal behavior1902// :85:25: error: use of undefined value here causes illegal behavior
1909// :91:25: note: when computing vector element at index '0'1903// :85:25: note: when computing vector element at index '0'
1910// :91:25: error: use of undefined value here causes illegal behavior1904// :85:25: error: use of undefined value here causes illegal behavior
1911// :91:25: note: when computing vector element at index '0'1905// :85:25: note: when computing vector element at index '0'
1912// :91:25: error: use of undefined value here causes illegal behavior1906// :85:25: error: use of undefined value here causes illegal behavior
1913// :91:25: note: when computing vector element at index '0'1907// :85:25: note: when computing vector element at index '0'
1914// :95:22: error: use of undefined value here causes illegal behavior1908// :89:22: error: use of undefined value here causes illegal behavior
1915// :95:22: error: use of undefined value here causes illegal behavior1909// :89:22: error: use of undefined value here causes illegal behavior
1916// :95:22: error: use of undefined value here causes illegal behavior1910// :89:22: error: use of undefined value here causes illegal behavior
1917// :95:22: note: when computing vector element at index '0'1911// :89:22: note: when computing vector element at index '0'
1918// :95:22: error: use of undefined value here causes illegal behavior1912// :89:22: error: use of undefined value here causes illegal behavior
1919// :95:22: note: when computing vector element at index '0'1913// :89:22: note: when computing vector element at index '0'
1920// :95:22: error: use of undefined value here causes illegal behavior1914// :89:22: error: use of undefined value here causes illegal behavior
1921// :95:22: note: when computing vector element at index '0'1915// :89:22: note: when computing vector element at index '0'
1922// :95:22: error: use of undefined value here causes illegal behavior1916// :89:22: error: use of undefined value here causes illegal behavior
1923// :95:22: note: when computing vector element at index '0'1917// :89:22: note: when computing vector element at index '0'
1924// :95:22: error: use of undefined value here causes illegal behavior1918// :89:22: error: use of undefined value here causes illegal behavior
1925// :95:22: note: when computing vector element at index '1'1919// :89:22: note: when computing vector element at index '1'
1926// :95:22: error: use of undefined value here causes illegal behavior1920// :89:22: error: use of undefined value here causes illegal behavior
1927// :95:22: note: when computing vector element at index '1'1921// :89:22: note: when computing vector element at index '1'
1928// :95:22: error: use of undefined value here causes illegal behavior1922// :89:22: error: use of undefined value here causes illegal behavior
1929// :95:22: note: when computing vector element at index '0'1923// :89:22: note: when computing vector element at index '0'
1930// :95:22: error: use of undefined value here causes illegal behavior1924// :89:22: error: use of undefined value here causes illegal behavior
1931// :95:22: note: when computing vector element at index '0'1925// :89:22: note: when computing vector element at index '0'
1932// :95:22: error: use of undefined value here causes illegal behavior1926// :89:22: error: use of undefined value here causes illegal behavior
1933// :95:22: note: when computing vector element at index '0'1927// :89:22: note: when computing vector element at index '0'
1934// :95:22: error: use of undefined value here causes illegal behavior1928// :89:22: error: use of undefined value here causes illegal behavior
1935// :95:22: note: when computing vector element at index '0'1929// :89:22: note: when computing vector element at index '0'
1936// :95:22: error: use of undefined value here causes illegal behavior1930// :89:22: error: use of undefined value here causes illegal behavior
1937// :95:22: error: use of undefined value here causes illegal behavior1931// :89:22: error: use of undefined value here causes illegal behavior
1938// :95:22: error: use of undefined value here causes illegal behavior1932// :89:22: error: use of undefined value here causes illegal behavior
1939// :95:22: note: when computing vector element at index '0'1933// :89:22: note: when computing vector element at index '0'
1940// :95:22: error: use of undefined value here causes illegal behavior1934// :89:22: error: use of undefined value here causes illegal behavior
1941// :95:22: note: when computing vector element at index '0'1935// :89:22: note: when computing vector element at index '0'
1942// :95:22: error: use of undefined value here causes illegal behavior1936// :89:22: error: use of undefined value here causes illegal behavior
1943// :95:22: note: when computing vector element at index '0'1937// :89:22: note: when computing vector element at index '0'
1944// :95:22: error: use of undefined value here causes illegal behavior1938// :89:22: error: use of undefined value here causes illegal behavior
1945// :95:22: note: when computing vector element at index '0'1939// :89:22: note: when computing vector element at index '0'
1946// :95:22: error: use of undefined value here causes illegal behavior1940// :89:22: error: use of undefined value here causes illegal behavior
1947// :95:22: note: when computing vector element at index '1'1941// :89:22: note: when computing vector element at index '1'
1948// :95:22: error: use of undefined value here causes illegal behavior1942// :89:22: error: use of undefined value here causes illegal behavior
1949// :95:22: note: when computing vector element at index '1'1943// :89:22: note: when computing vector element at index '1'
1950// :95:22: error: use of undefined value here causes illegal behavior1944// :89:22: error: use of undefined value here causes illegal behavior
1951// :95:22: note: when computing vector element at index '0'1945// :89:22: note: when computing vector element at index '0'
1952// :95:22: error: use of undefined value here causes illegal behavior1946// :89:22: error: use of undefined value here causes illegal behavior
1953// :95:22: note: when computing vector element at index '0'1947// :89:22: note: when computing vector element at index '0'
1954// :95:22: error: use of undefined value here causes illegal behavior1948// :89:22: error: use of undefined value here causes illegal behavior
1955// :95:22: note: when computing vector element at index '0'1949// :89:22: note: when computing vector element at index '0'
1956// :95:22: error: use of undefined value here causes illegal behavior1950// :89:22: error: use of undefined value here causes illegal behavior
1957// :95:22: note: when computing vector element at index '0'1951// :89:22: note: when computing vector element at index '0'
1958// :95:22: error: use of undefined value here causes illegal behavior1952// :89:22: error: use of undefined value here causes illegal behavior
1959// :95:22: error: use of undefined value here causes illegal behavior1953// :89:22: error: use of undefined value here causes illegal behavior
1960// :95:22: error: use of undefined value here causes illegal behavior1954// :89:22: error: use of undefined value here causes illegal behavior
1961// :95:22: note: when computing vector element at index '0'1955// :89:22: note: when computing vector element at index '0'
1962// :95:22: error: use of undefined value here causes illegal behavior1956// :89:22: error: use of undefined value here causes illegal behavior
1963// :95:22: note: when computing vector element at index '0'1957// :89:22: note: when computing vector element at index '0'
1964// :95:22: error: use of undefined value here causes illegal behavior1958// :89:22: error: use of undefined value here causes illegal behavior
1965// :95:22: note: when computing vector element at index '0'1959// :89:22: note: when computing vector element at index '0'
1966// :95:22: error: use of undefined value here causes illegal behavior1960// :89:22: error: use of undefined value here causes illegal behavior
1967// :95:22: note: when computing vector element at index '0'1961// :89:22: note: when computing vector element at index '0'
1968// :95:22: error: use of undefined value here causes illegal behavior1962// :89:22: error: use of undefined value here causes illegal behavior
1969// :95:22: note: when computing vector element at index '1'1963// :89:22: note: when computing vector element at index '1'
1970// :95:22: error: use of undefined value here causes illegal behavior1964// :89:22: error: use of undefined value here causes illegal behavior
1971// :95:22: note: when computing vector element at index '1'1965// :89:22: note: when computing vector element at index '1'
1972// :95:22: error: use of undefined value here causes illegal behavior1966// :89:22: error: use of undefined value here causes illegal behavior
1973// :95:22: note: when computing vector element at index '0'1967// :89:22: note: when computing vector element at index '0'
1974// :95:22: error: use of undefined value here causes illegal behavior1968// :89:22: error: use of undefined value here causes illegal behavior
1975// :95:22: note: when computing vector element at index '0'1969// :89:22: note: when computing vector element at index '0'
1976// :95:22: error: use of undefined value here causes illegal behavior1970// :89:22: error: use of undefined value here causes illegal behavior
1977// :95:22: note: when computing vector element at index '0'1971// :89:22: note: when computing vector element at index '0'
1978// :95:22: error: use of undefined value here causes illegal behavior1972// :89:22: error: use of undefined value here causes illegal behavior
1979// :95:22: note: when computing vector element at index '0'1973// :89:22: note: when computing vector element at index '0'
1980// :95:22: error: use of undefined value here causes illegal behavior1974// :89:22: error: use of undefined value here causes illegal behavior
1981// :95:22: error: use of undefined value here causes illegal behavior1975// :89:22: error: use of undefined value here causes illegal behavior
1982// :95:22: error: use of undefined value here causes illegal behavior1976// :89:22: error: use of undefined value here causes illegal behavior
1983// :95:22: note: when computing vector element at index '0'1977// :89:22: note: when computing vector element at index '0'
1984// :95:22: error: use of undefined value here causes illegal behavior1978// :89:22: error: use of undefined value here causes illegal behavior
1985// :95:22: note: when computing vector element at index '0'1979// :89:22: note: when computing vector element at index '0'
1986// :95:22: error: use of undefined value here causes illegal behavior1980// :89:22: error: use of undefined value here causes illegal behavior
1987// :95:22: note: when computing vector element at index '0'1981// :89:22: note: when computing vector element at index '0'
1988// :95:22: error: use of undefined value here causes illegal behavior1982// :89:22: error: use of undefined value here causes illegal behavior
1989// :95:22: note: when computing vector element at index '0'1983// :89:22: note: when computing vector element at index '0'
1990// :95:22: error: use of undefined value here causes illegal behavior1984// :89:22: error: use of undefined value here causes illegal behavior
1991// :95:22: note: when computing vector element at index '1'1985// :89:22: note: when computing vector element at index '1'
1992// :95:22: error: use of undefined value here causes illegal behavior1986// :89:22: error: use of undefined value here causes illegal behavior
1993// :95:22: note: when computing vector element at index '1'1987// :89:22: note: when computing vector element at index '1'
1994// :95:22: error: use of undefined value here causes illegal behavior1988// :89:22: error: use of undefined value here causes illegal behavior
1995// :95:22: note: when computing vector element at index '0'1989// :89:22: note: when computing vector element at index '0'
1996// :95:22: error: use of undefined value here causes illegal behavior1990// :89:22: error: use of undefined value here causes illegal behavior
1997// :95:22: note: when computing vector element at index '0'1991// :89:22: note: when computing vector element at index '0'
1998// :95:22: error: use of undefined value here causes illegal behavior1992// :89:22: error: use of undefined value here causes illegal behavior
1999// :95:22: note: when computing vector element at index '0'1993// :89:22: note: when computing vector element at index '0'
2000// :95:22: error: use of undefined value here causes illegal behavior1994// :89:22: error: use of undefined value here causes illegal behavior
2001// :95:22: note: when computing vector element at index '0'1995// :89:22: note: when computing vector element at index '0'
2002// :95:22: error: use of undefined value here causes illegal behavior1996// :89:22: error: use of undefined value here causes illegal behavior
2003// :95:22: error: use of undefined value here causes illegal behavior1997// :89:22: error: use of undefined value here causes illegal behavior
2004// :95:22: error: use of undefined value here causes illegal behavior1998// :89:22: error: use of undefined value here causes illegal behavior
2005// :95:22: note: when computing vector element at index '0'1999// :89:22: note: when computing vector element at index '0'
2006// :95:22: error: use of undefined value here causes illegal behavior2000// :89:22: error: use of undefined value here causes illegal behavior
2007// :95:22: note: when computing vector element at index '0'2001// :89:22: note: when computing vector element at index '0'
2008// :95:22: error: use of undefined value here causes illegal behavior2002// :89:22: error: use of undefined value here causes illegal behavior
2009// :95:22: note: when computing vector element at index '0'2003// :89:22: note: when computing vector element at index '0'
2010// :95:22: error: use of undefined value here causes illegal behavior2004// :89:22: error: use of undefined value here causes illegal behavior
2011// :95:22: note: when computing vector element at index '0'2005// :89:22: note: when computing vector element at index '0'
2012// :95:22: error: use of undefined value here causes illegal behavior2006// :89:22: error: use of undefined value here causes illegal behavior
2013// :95:22: note: when computing vector element at index '1'2007// :89:22: note: when computing vector element at index '1'
2014// :95:22: error: use of undefined value here causes illegal behavior2008// :89:22: error: use of undefined value here causes illegal behavior
2015// :95:22: note: when computing vector element at index '1'2009// :89:22: note: when computing vector element at index '1'
2016// :95:22: error: use of undefined value here causes illegal behavior2010// :89:22: error: use of undefined value here causes illegal behavior
2017// :95:22: note: when computing vector element at index '0'2011// :89:22: note: when computing vector element at index '0'
2018// :95:22: error: use of undefined value here causes illegal behavior2012// :89:22: error: use of undefined value here causes illegal behavior
2019// :95:22: note: when computing vector element at index '0'2013// :89:22: note: when computing vector element at index '0'
2020// :95:22: error: use of undefined value here causes illegal behavior2014// :89:22: error: use of undefined value here causes illegal behavior
2021// :95:22: note: when computing vector element at index '0'2015// :89:22: note: when computing vector element at index '0'
2022// :95:22: error: use of undefined value here causes illegal behavior2016// :89:22: error: use of undefined value here causes illegal behavior
2023// :95:22: note: when computing vector element at index '0'2017// :89:22: note: when computing vector element at index '0'
2024// :95:22: error: use of undefined value here causes illegal behavior2018// :89:22: error: use of undefined value here causes illegal behavior
2025// :95:22: error: use of undefined value here causes illegal behavior2019// :89:22: error: use of undefined value here causes illegal behavior
2026// :95:22: error: use of undefined value here causes illegal behavior2020// :89:22: error: use of undefined value here causes illegal behavior
2027// :95:22: note: when computing vector element at index '0'2021// :89:22: note: when computing vector element at index '0'
2028// :95:22: error: use of undefined value here causes illegal behavior2022// :89:22: error: use of undefined value here causes illegal behavior
2029// :95:22: note: when computing vector element at index '0'2023// :89:22: note: when computing vector element at index '0'
2030// :95:22: error: use of undefined value here causes illegal behavior2024// :89:22: error: use of undefined value here causes illegal behavior
2031// :95:22: note: when computing vector element at index '0'2025// :89:22: note: when computing vector element at index '0'
2032// :95:22: error: use of undefined value here causes illegal behavior2026// :89:22: error: use of undefined value here causes illegal behavior
2033// :95:22: note: when computing vector element at index '0'2027// :89:22: note: when computing vector element at index '0'
2034// :95:22: error: use of undefined value here causes illegal behavior2028// :89:22: error: use of undefined value here causes illegal behavior
2035// :95:22: note: when computing vector element at index '1'2029// :89:22: note: when computing vector element at index '1'
2036// :95:22: error: use of undefined value here causes illegal behavior2030// :89:22: error: use of undefined value here causes illegal behavior
2037// :95:22: note: when computing vector element at index '1'2031// :89:22: note: when computing vector element at index '1'
2038// :95:22: error: use of undefined value here causes illegal behavior2032// :89:22: error: use of undefined value here causes illegal behavior
2039// :95:22: note: when computing vector element at index '0'2033// :89:22: note: when computing vector element at index '0'
2040// :95:22: error: use of undefined value here causes illegal behavior2034// :89:22: error: use of undefined value here causes illegal behavior
2041// :95:22: note: when computing vector element at index '0'2035// :89:22: note: when computing vector element at index '0'
2042// :95:22: error: use of undefined value here causes illegal behavior2036// :89:22: error: use of undefined value here causes illegal behavior
2043// :95:22: note: when computing vector element at index '0'2037// :89:22: note: when computing vector element at index '0'
2044// :95:22: error: use of undefined value here causes illegal behavior2038// :89:22: error: use of undefined value here causes illegal behavior
2045// :95:22: note: when computing vector element at index '0'2039// :89:22: note: when computing vector element at index '0'
2046// :95:22: error: use of undefined value here causes illegal behavior2040// :89:22: error: use of undefined value here causes illegal behavior
2047// :95:22: error: use of undefined value here causes illegal behavior2041// :89:22: error: use of undefined value here causes illegal behavior
2048// :95:22: error: use of undefined value here causes illegal behavior2042// :89:22: error: use of undefined value here causes illegal behavior
2049// :95:22: note: when computing vector element at index '0'2043// :89:22: note: when computing vector element at index '0'
2050// :95:22: error: use of undefined value here causes illegal behavior2044// :89:22: error: use of undefined value here causes illegal behavior
2051// :95:22: note: when computing vector element at index '0'2045// :89:22: note: when computing vector element at index '0'
2052// :95:22: error: use of undefined value here causes illegal behavior2046// :89:22: error: use of undefined value here causes illegal behavior
2053// :95:22: note: when computing vector element at index '0'2047// :89:22: note: when computing vector element at index '0'
2054// :95:22: error: use of undefined value here causes illegal behavior2048// :89:22: error: use of undefined value here causes illegal behavior
2055// :95:22: note: when computing vector element at index '0'2049// :89:22: note: when computing vector element at index '0'
2056// :95:22: error: use of undefined value here causes illegal behavior2050// :89:22: error: use of undefined value here causes illegal behavior
2057// :95:22: note: when computing vector element at index '1'2051// :89:22: note: when computing vector element at index '1'
2058// :95:22: error: use of undefined value here causes illegal behavior2052// :89:22: error: use of undefined value here causes illegal behavior
2059// :95:22: note: when computing vector element at index '1'2053// :89:22: note: when computing vector element at index '1'
2060// :95:22: error: use of undefined value here causes illegal behavior2054// :89:22: error: use of undefined value here causes illegal behavior
2061// :95:22: note: when computing vector element at index '0'2055// :89:22: note: when computing vector element at index '0'
2062// :95:22: error: use of undefined value here causes illegal behavior2056// :89:22: error: use of undefined value here causes illegal behavior
2063// :95:22: note: when computing vector element at index '0'2057// :89:22: note: when computing vector element at index '0'
2064// :95:22: error: use of undefined value here causes illegal behavior2058// :89:22: error: use of undefined value here causes illegal behavior
2065// :95:22: note: when computing vector element at index '0'2059// :89:22: note: when computing vector element at index '0'
2066// :95:22: error: use of undefined value here causes illegal behavior2060// :89:22: error: use of undefined value here causes illegal behavior
2067// :95:22: note: when computing vector element at index '0'2061// :89:22: note: when computing vector element at index '0'
2068// :95:22: error: use of undefined value here causes illegal behavior2062// :89:22: error: use of undefined value here causes illegal behavior
2069// :95:22: error: use of undefined value here causes illegal behavior2063// :89:22: error: use of undefined value here causes illegal behavior
2070// :95:22: error: use of undefined value here causes illegal behavior2064// :89:22: error: use of undefined value here causes illegal behavior
2071// :95:22: note: when computing vector element at index '0'2065// :89:22: note: when computing vector element at index '0'
2072// :95:22: error: use of undefined value here causes illegal behavior2066// :89:22: error: use of undefined value here causes illegal behavior
2073// :95:22: note: when computing vector element at index '0'2067// :89:22: note: when computing vector element at index '0'
2074// :95:22: error: use of undefined value here causes illegal behavior2068// :89:22: error: use of undefined value here causes illegal behavior
2075// :95:22: note: when computing vector element at index '0'2069// :89:22: note: when computing vector element at index '0'
2076// :95:22: error: use of undefined value here causes illegal behavior2070// :89:22: error: use of undefined value here causes illegal behavior
2077// :95:22: note: when computing vector element at index '0'2071// :89:22: note: when computing vector element at index '0'
2078// :95:22: error: use of undefined value here causes illegal behavior2072// :89:22: error: use of undefined value here causes illegal behavior
2079// :95:22: note: when computing vector element at index '1'2073// :89:22: note: when computing vector element at index '1'
2080// :95:22: error: use of undefined value here causes illegal behavior2074// :89:22: error: use of undefined value here causes illegal behavior
2081// :95:22: note: when computing vector element at index '1'2075// :89:22: note: when computing vector element at index '1'
2082// :95:22: error: use of undefined value here causes illegal behavior2076// :89:22: error: use of undefined value here causes illegal behavior
2083// :95:22: note: when computing vector element at index '0'2077// :89:22: note: when computing vector element at index '0'
2084// :95:22: error: use of undefined value here causes illegal behavior2078// :89:22: error: use of undefined value here causes illegal behavior
2085// :95:22: note: when computing vector element at index '0'2079// :89:22: note: when computing vector element at index '0'
2086// :95:22: error: use of undefined value here causes illegal behavior2080// :89:22: error: use of undefined value here causes illegal behavior
2087// :95:22: note: when computing vector element at index '0'2081// :89:22: note: when computing vector element at index '0'
2088// :95:22: error: use of undefined value here causes illegal behavior2082// :89:22: error: use of undefined value here causes illegal behavior
2089// :95:22: note: when computing vector element at index '0'2083// :89:22: note: when computing vector element at index '0'
2090// :95:22: error: use of undefined value here causes illegal behavior2084// :89:22: error: use of undefined value here causes illegal behavior
2091// :95:22: error: use of undefined value here causes illegal behavior2085// :89:22: error: use of undefined value here causes illegal behavior
2092// :95:22: error: use of undefined value here causes illegal behavior2086// :89:22: error: use of undefined value here causes illegal behavior
2093// :95:22: note: when computing vector element at index '0'2087// :89:22: note: when computing vector element at index '0'
2094// :95:22: error: use of undefined value here causes illegal behavior2088// :89:22: error: use of undefined value here causes illegal behavior
2095// :95:22: note: when computing vector element at index '0'2089// :89:22: note: when computing vector element at index '0'
2096// :95:22: error: use of undefined value here causes illegal behavior2090// :89:22: error: use of undefined value here causes illegal behavior
2097// :95:22: note: when computing vector element at index '0'2091// :89:22: note: when computing vector element at index '0'
2098// :95:22: error: use of undefined value here causes illegal behavior2092// :89:22: error: use of undefined value here causes illegal behavior
2099// :95:22: note: when computing vector element at index '0'2093// :89:22: note: when computing vector element at index '0'
2100// :95:22: error: use of undefined value here causes illegal behavior2094// :89:22: error: use of undefined value here causes illegal behavior
2101// :95:22: note: when computing vector element at index '1'2095// :89:22: note: when computing vector element at index '1'
2102// :95:22: error: use of undefined value here causes illegal behavior2096// :89:22: error: use of undefined value here causes illegal behavior
2103// :95:22: note: when computing vector element at index '1'2097// :89:22: note: when computing vector element at index '1'
2104// :95:22: error: use of undefined value here causes illegal behavior2098// :89:22: error: use of undefined value here causes illegal behavior
2105// :95:22: note: when computing vector element at index '0'2099// :89:22: note: when computing vector element at index '0'
2106// :95:22: error: use of undefined value here causes illegal behavior2100// :89:22: error: use of undefined value here causes illegal behavior
2107// :95:22: note: when computing vector element at index '0'2101// :89:22: note: when computing vector element at index '0'
2108// :95:22: error: use of undefined value here causes illegal behavior2102// :89:22: error: use of undefined value here causes illegal behavior
2109// :95:22: note: when computing vector element at index '0'2103// :89:22: note: when computing vector element at index '0'
2110// :95:22: error: use of undefined value here causes illegal behavior2104// :89:22: error: use of undefined value here causes illegal behavior
2111// :95:22: note: when computing vector element at index '0'2105// :89:22: note: when computing vector element at index '0'
2112// :95:22: error: use of undefined value here causes illegal behavior2106// :89:22: error: use of undefined value here causes illegal behavior
2113// :95:22: error: use of undefined value here causes illegal behavior2107// :89:22: error: use of undefined value here causes illegal behavior
2114// :95:22: error: use of undefined value here causes illegal behavior2108// :89:22: error: use of undefined value here causes illegal behavior
2115// :95:22: note: when computing vector element at index '0'2109// :89:22: note: when computing vector element at index '0'
2116// :95:22: error: use of undefined value here causes illegal behavior2110// :89:22: error: use of undefined value here causes illegal behavior
2117// :95:22: note: when computing vector element at index '0'2111// :89:22: note: when computing vector element at index '0'
2118// :95:22: error: use of undefined value here causes illegal behavior2112// :89:22: error: use of undefined value here causes illegal behavior
2119// :95:22: note: when computing vector element at index '0'2113// :89:22: note: when computing vector element at index '0'
2120// :95:22: error: use of undefined value here causes illegal behavior2114// :89:22: error: use of undefined value here causes illegal behavior
2121// :95:22: note: when computing vector element at index '0'2115// :89:22: note: when computing vector element at index '0'
2122// :95:22: error: use of undefined value here causes illegal behavior2116// :89:22: error: use of undefined value here causes illegal behavior
2123// :95:22: note: when computing vector element at index '1'2117// :89:22: note: when computing vector element at index '1'
2124// :95:22: error: use of undefined value here causes illegal behavior2118// :89:22: error: use of undefined value here causes illegal behavior
2125// :95:22: note: when computing vector element at index '1'2119// :89:22: note: when computing vector element at index '1'
2126// :95:22: error: use of undefined value here causes illegal behavior2120// :89:22: error: use of undefined value here causes illegal behavior
2127// :95:22: note: when computing vector element at index '0'2121// :89:22: note: when computing vector element at index '0'
2128// :95:22: error: use of undefined value here causes illegal behavior2122// :89:22: error: use of undefined value here causes illegal behavior
2129// :95:22: note: when computing vector element at index '0'2123// :89:22: note: when computing vector element at index '0'
2130// :95:22: error: use of undefined value here causes illegal behavior2124// :89:22: error: use of undefined value here causes illegal behavior
2131// :95:22: note: when computing vector element at index '0'2125// :89:22: note: when computing vector element at index '0'
2132// :95:22: error: use of undefined value here causes illegal behavior2126// :89:22: error: use of undefined value here causes illegal behavior
2133// :95:22: note: when computing vector element at index '0'2127// :89:22: note: when computing vector element at index '0'
2134// :95:22: error: use of undefined value here causes illegal behavior2128// :89:22: error: use of undefined value here causes illegal behavior
2135// :95:22: error: use of undefined value here causes illegal behavior2129// :89:22: error: use of undefined value here causes illegal behavior
2136// :95:22: error: use of undefined value here causes illegal behavior2130// :89:22: error: use of undefined value here causes illegal behavior
2137// :95:22: note: when computing vector element at index '0'2131// :89:22: note: when computing vector element at index '0'
2138// :95:22: error: use of undefined value here causes illegal behavior2132// :89:22: error: use of undefined value here causes illegal behavior
2139// :95:22: note: when computing vector element at index '0'2133// :89:22: note: when computing vector element at index '0'
2140// :95:22: error: use of undefined value here causes illegal behavior2134// :89:22: error: use of undefined value here causes illegal behavior
2141// :95:22: note: when computing vector element at index '0'2135// :89:22: note: when computing vector element at index '0'
2142// :95:22: error: use of undefined value here causes illegal behavior2136// :89:22: error: use of undefined value here causes illegal behavior
2143// :95:22: note: when computing vector element at index '0'2137// :89:22: note: when computing vector element at index '0'
2144// :95:22: error: use of undefined value here causes illegal behavior2138// :89:22: error: use of undefined value here causes illegal behavior
2145// :95:22: note: when computing vector element at index '1'2139// :89:22: note: when computing vector element at index '1'
2146// :95:22: error: use of undefined value here causes illegal behavior2140// :89:22: error: use of undefined value here causes illegal behavior
2147// :95:22: note: when computing vector element at index '1'2141// :89:22: note: when computing vector element at index '1'
2148// :95:22: error: use of undefined value here causes illegal behavior2142// :89:22: error: use of undefined value here causes illegal behavior
2149// :95:22: note: when computing vector element at index '0'2143// :89:22: note: when computing vector element at index '0'
2150// :95:22: error: use of undefined value here causes illegal behavior2144// :89:22: error: use of undefined value here causes illegal behavior
2151// :95:22: note: when computing vector element at index '0'2145// :89:22: note: when computing vector element at index '0'
2152// :95:22: error: use of undefined value here causes illegal behavior2146// :89:22: error: use of undefined value here causes illegal behavior
2153// :95:22: note: when computing vector element at index '0'2147// :89:22: note: when computing vector element at index '0'
2154// :95:22: error: use of undefined value here causes illegal behavior2148// :89:22: error: use of undefined value here causes illegal behavior
2155// :95:22: note: when computing vector element at index '0'2149// :89:22: note: when computing vector element at index '0'
2156// :95:25: error: use of undefined value here causes illegal behavior2150// :89:25: error: use of undefined value here causes illegal behavior
2157// :95:25: note: when computing vector element at index '0'2151// :89:25: note: when computing vector element at index '0'
2158// :95:25: error: use of undefined value here causes illegal behavior2152// :89:25: error: use of undefined value here causes illegal behavior
2159// :95:25: note: when computing vector element at index '0'2153// :89:25: note: when computing vector element at index '0'
2160// :95:25: error: use of undefined value here causes illegal behavior2154// :89:25: error: use of undefined value here causes illegal behavior
2161// :95:25: note: when computing vector element at index '0'2155// :89:25: note: when computing vector element at index '0'
2162// :95:25: error: use of undefined value here causes illegal behavior2156// :89:25: error: use of undefined value here causes illegal behavior
2163// :95:25: note: when computing vector element at index '0'2157// :89:25: note: when computing vector element at index '0'
2164// :95:25: error: use of undefined value here causes illegal behavior2158// :89:25: error: use of undefined value here causes illegal behavior
2165// :95:25: note: when computing vector element at index '0'2159// :89:25: note: when computing vector element at index '0'
2166// :95:25: error: use of undefined value here causes illegal behavior2160// :89:25: error: use of undefined value here causes illegal behavior
2167// :95:25: note: when computing vector element at index '0'2161// :89:25: note: when computing vector element at index '0'
2168// :95:25: error: use of undefined value here causes illegal behavior2162// :89:25: error: use of undefined value here causes illegal behavior
2169// :95:25: note: when computing vector element at index '0'2163// :89:25: note: when computing vector element at index '0'
2170// :95:25: error: use of undefined value here causes illegal behavior2164// :89:25: error: use of undefined value here causes illegal behavior
2171// :95:25: note: when computing vector element at index '0'2165// :89:25: note: when computing vector element at index '0'
2172// :95:25: error: use of undefined value here causes illegal behavior2166// :89:25: error: use of undefined value here causes illegal behavior
2173// :95:25: note: when computing vector element at index '0'2167// :89:25: note: when computing vector element at index '0'
2174// :95:25: error: use of undefined value here causes illegal behavior2168// :89:25: error: use of undefined value here causes illegal behavior
2175// :95:25: note: when computing vector element at index '0'2169// :89:25: note: when computing vector element at index '0'
2176// :95:25: error: use of undefined value here causes illegal behavior2170// :89:25: error: use of undefined value here causes illegal behavior
2177// :95:25: note: when computing vector element at index '0'2171// :89:25: note: when computing vector element at index '0'
2178// :95:25: error: use of undefined value here causes illegal behavior2172// :89:25: error: use of undefined value here causes illegal behavior
2179// :95:25: note: when computing vector element at index '0'2173// :89:25: note: when computing vector element at index '0'
2180// :95:25: error: use of undefined value here causes illegal behavior2174// :89:25: error: use of undefined value here causes illegal behavior
2181// :95:25: note: when computing vector element at index '0'2175// :89:25: note: when computing vector element at index '0'
2182// :95:25: error: use of undefined value here causes illegal behavior2176// :89:25: error: use of undefined value here causes illegal behavior
2183// :95:25: note: when computing vector element at index '0'2177// :89:25: note: when computing vector element at index '0'
2184// :95:25: error: use of undefined value here causes illegal behavior2178// :89:25: error: use of undefined value here causes illegal behavior
2185// :95:25: note: when computing vector element at index '0'2179// :89:25: note: when computing vector element at index '0'
2186// :95:25: error: use of undefined value here causes illegal behavior2180// :89:25: error: use of undefined value here causes illegal behavior
2187// :95:25: note: when computing vector element at index '0'2181// :89:25: note: when computing vector element at index '0'
2188// :95:25: error: use of undefined value here causes illegal behavior2182// :89:25: error: use of undefined value here causes illegal behavior
2189// :95:25: note: when computing vector element at index '0'2183// :89:25: note: when computing vector element at index '0'
2190// :95:25: error: use of undefined value here causes illegal behavior2184// :89:25: error: use of undefined value here causes illegal behavior
2191// :95:25: note: when computing vector element at index '0'2185// :89:25: note: when computing vector element at index '0'
2192// :95:25: error: use of undefined value here causes illegal behavior2186// :89:25: error: use of undefined value here causes illegal behavior
2193// :95:25: note: when computing vector element at index '0'2187// :89:25: note: when computing vector element at index '0'
2194// :95:25: error: use of undefined value here causes illegal behavior2188// :89:25: error: use of undefined value here causes illegal behavior
2195// :95:25: note: when computing vector element at index '0'2189// :89:25: note: when computing vector element at index '0'
2196// :95:25: error: use of undefined value here causes illegal behavior2190// :89:25: error: use of undefined value here causes illegal behavior
2197// :95:25: note: when computing vector element at index '0'2191// :89:25: note: when computing vector element at index '0'
2198// :95:25: error: use of undefined value here causes illegal behavior2192// :89:25: error: use of undefined value here causes illegal behavior
2199// :95:25: note: when computing vector element at index '0'2193// :89:25: note: when computing vector element at index '0'
2200// :101:17: error: use of undefined value here causes illegal behavior2194// :95:17: error: use of undefined value here causes illegal behavior
2201// :101:17: error: use of undefined value here causes illegal behavior2195// :95:17: error: use of undefined value here causes illegal behavior
2202// :101:17: error: use of undefined value here causes illegal behavior2196// :95:17: error: use of undefined value here causes illegal behavior
2203// :101:17: error: use of undefined value here causes illegal behavior2197// :95:17: error: use of undefined value here causes illegal behavior
2204// :101:17: error: use of undefined value here causes illegal behavior2198// :95:17: error: use of undefined value here causes illegal behavior
2205// :101:17: error: use of undefined value here causes illegal behavior2199// :95:17: error: use of undefined value here causes illegal behavior
2206// :101:17: error: use of undefined value here causes illegal behavior2200// :95:17: error: use of undefined value here causes illegal behavior
2207// :101:17: note: when computing vector element at index '1'2201// :95:17: note: when computing vector element at index '1'
2208// :101:17: error: use of undefined value here causes illegal behavior2202// :95:17: error: use of undefined value here causes illegal behavior
2209// :101:17: note: when computing vector element at index '1'2203// :95:17: note: when computing vector element at index '1'
2210// :101:17: error: use of undefined value here causes illegal behavior2204// :95:17: error: use of undefined value here causes illegal behavior
2211// :101:17: note: when computing vector element at index '1'2205// :95:17: note: when computing vector element at index '1'
2212// :101:17: error: use of undefined value here causes illegal behavior2206// :95:17: error: use of undefined value here causes illegal behavior
2213// :101:17: note: when computing vector element at index '1'2207// :95:17: note: when computing vector element at index '1'
2214// :101:17: error: use of undefined value here causes illegal behavior2208// :95:17: error: use of undefined value here causes illegal behavior
2215// :101:17: note: when computing vector element at index '0'2209// :95:17: note: when computing vector element at index '0'
2216// :101:17: error: use of undefined value here causes illegal behavior2210// :95:17: error: use of undefined value here causes illegal behavior
2217// :101:17: note: when computing vector element at index '0'2211// :95:17: note: when computing vector element at index '0'
2218// :101:17: error: use of undefined value here causes illegal behavior2212// :95:17: error: use of undefined value here causes illegal behavior
2219// :101:17: note: when computing vector element at index '0'2213// :95:17: note: when computing vector element at index '0'
2220// :101:17: error: use of undefined value here causes illegal behavior2214// :95:17: error: use of undefined value here causes illegal behavior
2221// :101:17: note: when computing vector element at index '0'2215// :95:17: note: when computing vector element at index '0'
2222// :101:17: error: use of undefined value here causes illegal behavior2216// :95:17: error: use of undefined value here causes illegal behavior
2223// :101:17: error: use of undefined value here causes illegal behavior2217// :95:17: error: use of undefined value here causes illegal behavior
2224// :101:17: error: use of undefined value here causes illegal behavior2218// :95:17: error: use of undefined value here causes illegal behavior
2225// :101:17: error: use of undefined value here causes illegal behavior2219// :95:17: error: use of undefined value here causes illegal behavior
2226// :101:17: error: use of undefined value here causes illegal behavior2220// :95:17: error: use of undefined value here causes illegal behavior
2227// :101:17: error: use of undefined value here causes illegal behavior2221// :95:17: error: use of undefined value here causes illegal behavior
2228// :101:17: error: use of undefined value here causes illegal behavior2222// :95:17: error: use of undefined value here causes illegal behavior
2229// :101:17: note: when computing vector element at index '1'2223// :95:17: note: when computing vector element at index '1'
2230// :101:17: error: use of undefined value here causes illegal behavior2224// :95:17: error: use of undefined value here causes illegal behavior
2231// :101:17: note: when computing vector element at index '1'2225// :95:17: note: when computing vector element at index '1'
2232// :101:17: error: use of undefined value here causes illegal behavior2226// :95:17: error: use of undefined value here causes illegal behavior
2233// :101:17: note: when computing vector element at index '1'2227// :95:17: note: when computing vector element at index '1'
2234// :101:17: error: use of undefined value here causes illegal behavior2228// :95:17: error: use of undefined value here causes illegal behavior
2235// :101:17: note: when computing vector element at index '1'2229// :95:17: note: when computing vector element at index '1'
2236// :101:17: error: use of undefined value here causes illegal behavior2230// :95:17: error: use of undefined value here causes illegal behavior
2237// :101:17: note: when computing vector element at index '0'2231// :95:17: note: when computing vector element at index '0'
2238// :101:17: error: use of undefined value here causes illegal behavior2232// :95:17: error: use of undefined value here causes illegal behavior
2239// :101:17: note: when computing vector element at index '0'2233// :95:17: note: when computing vector element at index '0'
2240// :101:17: error: use of undefined value here causes illegal behavior2234// :95:17: error: use of undefined value here causes illegal behavior
2241// :101:17: note: when computing vector element at index '0'2235// :95:17: note: when computing vector element at index '0'
2242// :101:17: error: use of undefined value here causes illegal behavior2236// :95:17: error: use of undefined value here causes illegal behavior
2243// :101:17: note: when computing vector element at index '0'2237// :95:17: note: when computing vector element at index '0'
2244// :101:17: error: use of undefined value here causes illegal behavior2238// :95:17: error: use of undefined value here causes illegal behavior
2245// :101:17: error: use of undefined value here causes illegal behavior2239// :95:17: error: use of undefined value here causes illegal behavior
2246// :101:17: error: use of undefined value here causes illegal behavior2240// :95:17: error: use of undefined value here causes illegal behavior
2247// :101:17: error: use of undefined value here causes illegal behavior2241// :95:17: error: use of undefined value here causes illegal behavior
2248// :101:17: error: use of undefined value here causes illegal behavior2242// :95:17: error: use of undefined value here causes illegal behavior
2249// :101:17: error: use of undefined value here causes illegal behavior2243// :95:17: error: use of undefined value here causes illegal behavior
2250// :101:17: error: use of undefined value here causes illegal behavior2244// :95:17: error: use of undefined value here causes illegal behavior
2251// :101:17: note: when computing vector element at index '1'2245// :95:17: note: when computing vector element at index '1'
2252// :101:17: error: use of undefined value here causes illegal behavior2246// :95:17: error: use of undefined value here causes illegal behavior
2253// :101:17: note: when computing vector element at index '1'2247// :95:17: note: when computing vector element at index '1'
2254// :101:17: error: use of undefined value here causes illegal behavior2248// :95:17: error: use of undefined value here causes illegal behavior
2255// :101:17: note: when computing vector element at index '1'2249// :95:17: note: when computing vector element at index '1'
2256// :101:17: error: use of undefined value here causes illegal behavior2250// :95:17: error: use of undefined value here causes illegal behavior
2257// :101:17: note: when computing vector element at index '1'2251// :95:17: note: when computing vector element at index '1'
2258// :101:17: error: use of undefined value here causes illegal behavior2252// :95:17: error: use of undefined value here causes illegal behavior
2259// :101:17: note: when computing vector element at index '0'2253// :95:17: note: when computing vector element at index '0'
2260// :101:17: error: use of undefined value here causes illegal behavior2254// :95:17: error: use of undefined value here causes illegal behavior
2261// :101:17: note: when computing vector element at index '0'2255// :95:17: note: when computing vector element at index '0'
2262// :101:17: error: use of undefined value here causes illegal behavior2256// :95:17: error: use of undefined value here causes illegal behavior
2263// :101:17: note: when computing vector element at index '0'2257// :95:17: note: when computing vector element at index '0'
2264// :101:17: error: use of undefined value here causes illegal behavior2258// :95:17: error: use of undefined value here causes illegal behavior
2265// :101:17: note: when computing vector element at index '0'2259// :95:17: note: when computing vector element at index '0'
2266// :101:17: error: use of undefined value here causes illegal behavior2260// :95:17: error: use of undefined value here causes illegal behavior
2267// :101:17: error: use of undefined value here causes illegal behavior2261// :95:17: error: use of undefined value here causes illegal behavior
2268// :101:17: error: use of undefined value here causes illegal behavior2262// :95:17: error: use of undefined value here causes illegal behavior
2269// :101:17: error: use of undefined value here causes illegal behavior2263// :95:17: error: use of undefined value here causes illegal behavior
2270// :101:17: error: use of undefined value here causes illegal behavior2264// :95:17: error: use of undefined value here causes illegal behavior
2271// :101:17: error: use of undefined value here causes illegal behavior2265// :95:17: error: use of undefined value here causes illegal behavior
2272// :101:17: error: use of undefined value here causes illegal behavior2266// :95:17: error: use of undefined value here causes illegal behavior
2273// :101:17: note: when computing vector element at index '1'2267// :95:17: note: when computing vector element at index '1'
2274// :101:17: error: use of undefined value here causes illegal behavior2268// :95:17: error: use of undefined value here causes illegal behavior
2275// :101:17: note: when computing vector element at index '1'2269// :95:17: note: when computing vector element at index '1'
2276// :101:17: error: use of undefined value here causes illegal behavior2270// :95:17: error: use of undefined value here causes illegal behavior
2277// :101:17: note: when computing vector element at index '1'2271// :95:17: note: when computing vector element at index '1'
2278// :101:17: error: use of undefined value here causes illegal behavior2272// :95:17: error: use of undefined value here causes illegal behavior
2279// :101:17: note: when computing vector element at index '1'2273// :95:17: note: when computing vector element at index '1'
2280// :101:17: error: use of undefined value here causes illegal behavior2274// :95:17: error: use of undefined value here causes illegal behavior
2281// :101:17: note: when computing vector element at index '0'2275// :95:17: note: when computing vector element at index '0'
2282// :101:17: error: use of undefined value here causes illegal behavior2276// :95:17: error: use of undefined value here causes illegal behavior
2283// :101:17: note: when computing vector element at index '0'2277// :95:17: note: when computing vector element at index '0'
2284// :101:17: error: use of undefined value here causes illegal behavior2278// :95:17: error: use of undefined value here causes illegal behavior
2285// :101:17: note: when computing vector element at index '0'2279// :95:17: note: when computing vector element at index '0'
2286// :101:17: error: use of undefined value here causes illegal behavior2280// :95:17: error: use of undefined value here causes illegal behavior
2287// :101:17: note: when computing vector element at index '0'2281// :95:17: note: when computing vector element at index '0'
2288// :101:17: error: use of undefined value here causes illegal behavior2282// :95:17: error: use of undefined value here causes illegal behavior
2289// :101:17: error: use of undefined value here causes illegal behavior2283// :95:17: error: use of undefined value here causes illegal behavior
2290// :101:17: error: use of undefined value here causes illegal behavior2284// :95:17: error: use of undefined value here causes illegal behavior
2291// :101:17: error: use of undefined value here causes illegal behavior2285// :95:17: error: use of undefined value here causes illegal behavior
2292// :101:17: error: use of undefined value here causes illegal behavior2286// :95:17: error: use of undefined value here causes illegal behavior
2293// :101:17: error: use of undefined value here causes illegal behavior2287// :95:17: error: use of undefined value here causes illegal behavior
2294// :101:17: error: use of undefined value here causes illegal behavior2288// :95:17: error: use of undefined value here causes illegal behavior
2295// :101:17: note: when computing vector element at index '1'2289// :95:17: note: when computing vector element at index '1'
2296// :101:17: error: use of undefined value here causes illegal behavior2290// :95:17: error: use of undefined value here causes illegal behavior
2297// :101:17: note: when computing vector element at index '1'2291// :95:17: note: when computing vector element at index '1'
2298// :101:17: error: use of undefined value here causes illegal behavior2292// :95:17: error: use of undefined value here causes illegal behavior
2299// :101:17: note: when computing vector element at index '1'2293// :95:17: note: when computing vector element at index '1'
2300// :101:17: error: use of undefined value here causes illegal behavior2294// :95:17: error: use of undefined value here causes illegal behavior
2301// :101:17: note: when computing vector element at index '1'2295// :95:17: note: when computing vector element at index '1'
2302// :101:17: error: use of undefined value here causes illegal behavior2296// :95:17: error: use of undefined value here causes illegal behavior
2303// :101:17: note: when computing vector element at index '0'2297// :95:17: note: when computing vector element at index '0'
2304// :101:17: error: use of undefined value here causes illegal behavior2298// :95:17: error: use of undefined value here causes illegal behavior
2305// :101:17: note: when computing vector element at index '0'2299// :95:17: note: when computing vector element at index '0'
2306// :101:17: error: use of undefined value here causes illegal behavior2300// :95:17: error: use of undefined value here causes illegal behavior
2307// :101:17: note: when computing vector element at index '0'2301// :95:17: note: when computing vector element at index '0'
2308// :101:17: error: use of undefined value here causes illegal behavior2302// :95:17: error: use of undefined value here causes illegal behavior
2309// :101:17: note: when computing vector element at index '0'2303// :95:17: note: when computing vector element at index '0'
2310// :101:17: error: use of undefined value here causes illegal behavior2304// :95:17: error: use of undefined value here causes illegal behavior
2311// :101:17: error: use of undefined value here causes illegal behavior2305// :95:17: error: use of undefined value here causes illegal behavior
2312// :101:17: error: use of undefined value here causes illegal behavior2306// :95:17: error: use of undefined value here causes illegal behavior
2313// :101:17: error: use of undefined value here causes illegal behavior2307// :95:17: error: use of undefined value here causes illegal behavior
2314// :101:17: error: use of undefined value here causes illegal behavior2308// :95:17: error: use of undefined value here causes illegal behavior
2315// :101:17: error: use of undefined value here causes illegal behavior2309// :95:17: error: use of undefined value here causes illegal behavior
2316// :101:17: error: use of undefined value here causes illegal behavior2310// :95:17: error: use of undefined value here causes illegal behavior
2317// :101:17: note: when computing vector element at index '1'2311// :95:17: note: when computing vector element at index '1'
2318// :101:17: error: use of undefined value here causes illegal behavior2312// :95:17: error: use of undefined value here causes illegal behavior
2319// :101:17: note: when computing vector element at index '1'2313// :95:17: note: when computing vector element at index '1'
2320// :101:17: error: use of undefined value here causes illegal behavior2314// :95:17: error: use of undefined value here causes illegal behavior
2321// :101:17: note: when computing vector element at index '1'2315// :95:17: note: when computing vector element at index '1'
2322// :101:17: error: use of undefined value here causes illegal behavior2316// :95:17: error: use of undefined value here causes illegal behavior
2323// :101:17: note: when computing vector element at index '1'2317// :95:17: note: when computing vector element at index '1'
2324// :101:17: error: use of undefined value here causes illegal behavior2318// :95:17: error: use of undefined value here causes illegal behavior
2325// :101:17: note: when computing vector element at index '0'2319// :95:17: note: when computing vector element at index '0'
2326// :101:17: error: use of undefined value here causes illegal behavior2320// :95:17: error: use of undefined value here causes illegal behavior
2327// :101:17: note: when computing vector element at index '0'2321// :95:17: note: when computing vector element at index '0'
2328// :101:17: error: use of undefined value here causes illegal behavior2322// :95:17: error: use of undefined value here causes illegal behavior
2329// :101:17: note: when computing vector element at index '0'2323// :95:17: note: when computing vector element at index '0'
2330// :101:17: error: use of undefined value here causes illegal behavior2324// :95:17: error: use of undefined value here causes illegal behavior
2331// :101:17: note: when computing vector element at index '0'2325// :95:17: note: when computing vector element at index '0'
2332// :101:17: error: use of undefined value here causes illegal behavior2326// :95:17: error: use of undefined value here causes illegal behavior
2333// :101:17: error: use of undefined value here causes illegal behavior2327// :95:17: error: use of undefined value here causes illegal behavior
2334// :101:17: error: use of undefined value here causes illegal behavior2328// :95:17: error: use of undefined value here causes illegal behavior
2335// :101:17: error: use of undefined value here causes illegal behavior2329// :95:17: error: use of undefined value here causes illegal behavior
2336// :101:17: error: use of undefined value here causes illegal behavior2330// :95:17: error: use of undefined value here causes illegal behavior
2337// :101:17: error: use of undefined value here causes illegal behavior2331// :95:17: error: use of undefined value here causes illegal behavior
2338// :101:17: error: use of undefined value here causes illegal behavior2332// :95:17: error: use of undefined value here causes illegal behavior
2339// :101:17: note: when computing vector element at index '1'2333// :95:17: note: when computing vector element at index '1'
2340// :101:17: error: use of undefined value here causes illegal behavior2334// :95:17: error: use of undefined value here causes illegal behavior
2341// :101:17: note: when computing vector element at index '1'2335// :95:17: note: when computing vector element at index '1'
2342// :101:17: error: use of undefined value here causes illegal behavior2336// :95:17: error: use of undefined value here causes illegal behavior
2343// :101:17: note: when computing vector element at index '1'2337// :95:17: note: when computing vector element at index '1'
2344// :101:17: error: use of undefined value here causes illegal behavior2338// :95:17: error: use of undefined value here causes illegal behavior
2345// :101:17: note: when computing vector element at index '1'2339// :95:17: note: when computing vector element at index '1'
2346// :101:17: error: use of undefined value here causes illegal behavior2340// :95:17: error: use of undefined value here causes illegal behavior
2347// :101:17: note: when computing vector element at index '0'2341// :95:17: note: when computing vector element at index '0'
2348// :101:17: error: use of undefined value here causes illegal behavior2342// :95:17: error: use of undefined value here causes illegal behavior
2349// :101:17: note: when computing vector element at index '0'2343// :95:17: note: when computing vector element at index '0'
2350// :101:17: error: use of undefined value here causes illegal behavior2344// :95:17: error: use of undefined value here causes illegal behavior
2351// :101:17: note: when computing vector element at index '0'2345// :95:17: note: when computing vector element at index '0'
2352// :101:17: error: use of undefined value here causes illegal behavior2346// :95:17: error: use of undefined value here causes illegal behavior
2353// :101:17: note: when computing vector element at index '0'2347// :95:17: note: when computing vector element at index '0'
2354// :101:17: error: use of undefined value here causes illegal behavior2348// :95:17: error: use of undefined value here causes illegal behavior
2355// :101:17: error: use of undefined value here causes illegal behavior2349// :95:17: error: use of undefined value here causes illegal behavior
2356// :101:17: error: use of undefined value here causes illegal behavior2350// :95:17: error: use of undefined value here causes illegal behavior
2357// :101:17: error: use of undefined value here causes illegal behavior2351// :95:17: error: use of undefined value here causes illegal behavior
2358// :101:17: error: use of undefined value here causes illegal behavior2352// :95:17: error: use of undefined value here causes illegal behavior
2359// :101:17: error: use of undefined value here causes illegal behavior2353// :95:17: error: use of undefined value here causes illegal behavior
2360// :101:17: error: use of undefined value here causes illegal behavior2354// :95:17: error: use of undefined value here causes illegal behavior
2361// :101:17: note: when computing vector element at index '1'2355// :95:17: note: when computing vector element at index '1'
2362// :101:17: error: use of undefined value here causes illegal behavior2356// :95:17: error: use of undefined value here causes illegal behavior
2363// :101:17: note: when computing vector element at index '1'2357// :95:17: note: when computing vector element at index '1'
2364// :101:17: error: use of undefined value here causes illegal behavior2358// :95:17: error: use of undefined value here causes illegal behavior
2365// :101:17: note: when computing vector element at index '1'2359// :95:17: note: when computing vector element at index '1'
2366// :101:17: error: use of undefined value here causes illegal behavior2360// :95:17: error: use of undefined value here causes illegal behavior
2367// :101:17: note: when computing vector element at index '1'2361// :95:17: note: when computing vector element at index '1'
2368// :101:17: error: use of undefined value here causes illegal behavior2362// :95:17: error: use of undefined value here causes illegal behavior
2369// :101:17: note: when computing vector element at index '0'2363// :95:17: note: when computing vector element at index '0'
2370// :101:17: error: use of undefined value here causes illegal behavior2364// :95:17: error: use of undefined value here causes illegal behavior
2371// :101:17: note: when computing vector element at index '0'2365// :95:17: note: when computing vector element at index '0'
2372// :101:17: error: use of undefined value here causes illegal behavior2366// :95:17: error: use of undefined value here causes illegal behavior
2373// :101:17: note: when computing vector element at index '0'2367// :95:17: note: when computing vector element at index '0'
2374// :101:17: error: use of undefined value here causes illegal behavior2368// :95:17: error: use of undefined value here causes illegal behavior
2375// :101:17: note: when computing vector element at index '0'2369// :95:17: note: when computing vector element at index '0'
2376// :101:17: error: use of undefined value here causes illegal behavior2370// :95:17: error: use of undefined value here causes illegal behavior
2377// :101:17: error: use of undefined value here causes illegal behavior2371// :95:17: error: use of undefined value here causes illegal behavior
2378// :101:17: error: use of undefined value here causes illegal behavior2372// :95:17: error: use of undefined value here causes illegal behavior
2379// :101:17: error: use of undefined value here causes illegal behavior2373// :95:17: error: use of undefined value here causes illegal behavior
2380// :101:17: error: use of undefined value here causes illegal behavior2374// :95:17: error: use of undefined value here causes illegal behavior
2381// :101:17: error: use of undefined value here causes illegal behavior2375// :95:17: error: use of undefined value here causes illegal behavior
2382// :101:17: error: use of undefined value here causes illegal behavior2376// :95:17: error: use of undefined value here causes illegal behavior
2383// :101:17: note: when computing vector element at index '1'2377// :95:17: note: when computing vector element at index '1'
2384// :101:17: error: use of undefined value here causes illegal behavior2378// :95:17: error: use of undefined value here causes illegal behavior
2385// :101:17: note: when computing vector element at index '1'2379// :95:17: note: when computing vector element at index '1'
2386// :101:17: error: use of undefined value here causes illegal behavior2380// :95:17: error: use of undefined value here causes illegal behavior
2387// :101:17: note: when computing vector element at index '1'2381// :95:17: note: when computing vector element at index '1'
2388// :101:17: error: use of undefined value here causes illegal behavior2382// :95:17: error: use of undefined value here causes illegal behavior
2389// :101:17: note: when computing vector element at index '1'2383// :95:17: note: when computing vector element at index '1'
2390// :101:17: error: use of undefined value here causes illegal behavior2384// :95:17: error: use of undefined value here causes illegal behavior
2391// :101:17: note: when computing vector element at index '0'2385// :95:17: note: when computing vector element at index '0'
2392// :101:17: error: use of undefined value here causes illegal behavior2386// :95:17: error: use of undefined value here causes illegal behavior
2393// :101:17: note: when computing vector element at index '0'2387// :95:17: note: when computing vector element at index '0'
2394// :101:17: error: use of undefined value here causes illegal behavior2388// :95:17: error: use of undefined value here causes illegal behavior
2395// :101:17: note: when computing vector element at index '0'2389// :95:17: note: when computing vector element at index '0'
2396// :101:17: error: use of undefined value here causes illegal behavior2390// :95:17: error: use of undefined value here causes illegal behavior
2397// :101:17: note: when computing vector element at index '0'2391// :95:17: note: when computing vector element at index '0'
2398// :101:17: error: use of undefined value here causes illegal behavior2392// :95:17: error: use of undefined value here causes illegal behavior
2399// :101:17: error: use of undefined value here causes illegal behavior2393// :95:17: error: use of undefined value here causes illegal behavior
2400// :101:17: error: use of undefined value here causes illegal behavior2394// :95:17: error: use of undefined value here causes illegal behavior
2401// :101:17: error: use of undefined value here causes illegal behavior2395// :95:17: error: use of undefined value here causes illegal behavior
2402// :101:17: error: use of undefined value here causes illegal behavior2396// :95:17: error: use of undefined value here causes illegal behavior
2403// :101:17: error: use of undefined value here causes illegal behavior2397// :95:17: error: use of undefined value here causes illegal behavior
2404// :101:17: error: use of undefined value here causes illegal behavior2398// :95:17: error: use of undefined value here causes illegal behavior
2405// :101:17: note: when computing vector element at index '1'2399// :95:17: note: when computing vector element at index '1'
2406// :101:17: error: use of undefined value here causes illegal behavior2400// :95:17: error: use of undefined value here causes illegal behavior
2407// :101:17: note: when computing vector element at index '1'2401// :95:17: note: when computing vector element at index '1'
2408// :101:17: error: use of undefined value here causes illegal behavior2402// :95:17: error: use of undefined value here causes illegal behavior
2409// :101:17: note: when computing vector element at index '1'2403// :95:17: note: when computing vector element at index '1'
2410// :101:17: error: use of undefined value here causes illegal behavior2404// :95:17: error: use of undefined value here causes illegal behavior
2411// :101:17: note: when computing vector element at index '1'2405// :95:17: note: when computing vector element at index '1'
2412// :101:17: error: use of undefined value here causes illegal behavior2406// :95:17: error: use of undefined value here causes illegal behavior
2413// :101:17: note: when computing vector element at index '0'2407// :95:17: note: when computing vector element at index '0'
2414// :101:17: error: use of undefined value here causes illegal behavior2408// :95:17: error: use of undefined value here causes illegal behavior
2415// :101:17: note: when computing vector element at index '0'2409// :95:17: note: when computing vector element at index '0'
2416// :101:17: error: use of undefined value here causes illegal behavior2410// :95:17: error: use of undefined value here causes illegal behavior
2417// :101:17: note: when computing vector element at index '0'2411// :95:17: note: when computing vector element at index '0'
2418// :101:17: error: use of undefined value here causes illegal behavior2412// :95:17: error: use of undefined value here causes illegal behavior
2419// :101:17: note: when computing vector element at index '0'2413// :95:17: note: when computing vector element at index '0'
2420// :101:17: error: use of undefined value here causes illegal behavior2414// :95:17: error: use of undefined value here causes illegal behavior
2421// :101:17: error: use of undefined value here causes illegal behavior2415// :95:17: error: use of undefined value here causes illegal behavior
2422// :101:17: error: use of undefined value here causes illegal behavior2416// :95:17: error: use of undefined value here causes illegal behavior
2423// :101:17: error: use of undefined value here causes illegal behavior2417// :95:17: error: use of undefined value here causes illegal behavior
2424// :101:17: error: use of undefined value here causes illegal behavior2418// :95:17: error: use of undefined value here causes illegal behavior
2425// :101:17: error: use of undefined value here causes illegal behavior2419// :95:17: error: use of undefined value here causes illegal behavior
2426// :101:17: error: use of undefined value here causes illegal behavior2420// :95:17: error: use of undefined value here causes illegal behavior
2427// :101:17: note: when computing vector element at index '1'2421// :95:17: note: when computing vector element at index '1'
2428// :101:17: error: use of undefined value here causes illegal behavior2422// :95:17: error: use of undefined value here causes illegal behavior
2429// :101:17: note: when computing vector element at index '1'2423// :95:17: note: when computing vector element at index '1'
2430// :101:17: error: use of undefined value here causes illegal behavior2424// :95:17: error: use of undefined value here causes illegal behavior
2431// :101:17: note: when computing vector element at index '1'2425// :95:17: note: when computing vector element at index '1'
2432// :101:17: error: use of undefined value here causes illegal behavior2426// :95:17: error: use of undefined value here causes illegal behavior
2433// :101:17: note: when computing vector element at index '1'2427// :95:17: note: when computing vector element at index '1'
2434// :101:17: error: use of undefined value here causes illegal behavior2428// :95:17: error: use of undefined value here causes illegal behavior
2435// :101:17: note: when computing vector element at index '0'2429// :95:17: note: when computing vector element at index '0'
2436// :101:17: error: use of undefined value here causes illegal behavior2430// :95:17: error: use of undefined value here causes illegal behavior
2437// :101:17: note: when computing vector element at index '0'2431// :95:17: note: when computing vector element at index '0'
2438// :101:17: error: use of undefined value here causes illegal behavior2432// :95:17: error: use of undefined value here causes illegal behavior
2439// :101:17: note: when computing vector element at index '0'2433// :95:17: note: when computing vector element at index '0'
2440// :101:17: error: use of undefined value here causes illegal behavior2434// :95:17: error: use of undefined value here causes illegal behavior
2441// :101:17: note: when computing vector element at index '0'2435// :95:17: note: when computing vector element at index '0'
2442// :105:27: error: use of undefined value here causes illegal behavior2436// :99:27: error: use of undefined value here causes illegal behavior
2443// :105:27: error: use of undefined value here causes illegal behavior2437// :99:27: error: use of undefined value here causes illegal behavior
2444// :105:27: error: use of undefined value here causes illegal behavior2438// :99:27: error: use of undefined value here causes illegal behavior
2445// :105:27: error: use of undefined value here causes illegal behavior2439// :99:27: error: use of undefined value here causes illegal behavior
2446// :105:27: error: use of undefined value here causes illegal behavior2440// :99:27: error: use of undefined value here causes illegal behavior
2447// :105:27: error: use of undefined value here causes illegal behavior2441// :99:27: error: use of undefined value here causes illegal behavior
2448// :105:27: error: use of undefined value here causes illegal behavior2442// :99:27: error: use of undefined value here causes illegal behavior
2449// :105:27: note: when computing vector element at index '1'2443// :99:27: note: when computing vector element at index '1'
2450// :105:27: error: use of undefined value here causes illegal behavior2444// :99:27: error: use of undefined value here causes illegal behavior
2451// :105:27: note: when computing vector element at index '1'2445// :99:27: note: when computing vector element at index '1'
2452// :105:27: error: use of undefined value here causes illegal behavior2446// :99:27: error: use of undefined value here causes illegal behavior
2453// :105:27: note: when computing vector element at index '1'2447// :99:27: note: when computing vector element at index '1'
2454// :105:27: error: use of undefined value here causes illegal behavior2448// :99:27: error: use of undefined value here causes illegal behavior
2455// :105:27: note: when computing vector element at index '1'2449// :99:27: note: when computing vector element at index '1'
2456// :105:27: error: use of undefined value here causes illegal behavior2450// :99:27: error: use of undefined value here causes illegal behavior
2457// :105:27: note: when computing vector element at index '0'2451// :99:27: note: when computing vector element at index '0'
2458// :105:27: error: use of undefined value here causes illegal behavior2452// :99:27: error: use of undefined value here causes illegal behavior
2459// :105:27: note: when computing vector element at index '0'2453// :99:27: note: when computing vector element at index '0'
2460// :105:27: error: use of undefined value here causes illegal behavior2454// :99:27: error: use of undefined value here causes illegal behavior
2461// :105:27: note: when computing vector element at index '0'2455// :99:27: note: when computing vector element at index '0'
2462// :105:27: error: use of undefined value here causes illegal behavior2456// :99:27: error: use of undefined value here causes illegal behavior
2463// :105:27: note: when computing vector element at index '0'2457// :99:27: note: when computing vector element at index '0'
2464// :105:27: error: use of undefined value here causes illegal behavior2458// :99:27: error: use of undefined value here causes illegal behavior
2465// :105:27: error: use of undefined value here causes illegal behavior2459// :99:27: error: use of undefined value here causes illegal behavior
2466// :105:27: error: use of undefined value here causes illegal behavior2460// :99:27: error: use of undefined value here causes illegal behavior
2467// :105:27: error: use of undefined value here causes illegal behavior2461// :99:27: error: use of undefined value here causes illegal behavior
2468// :105:27: error: use of undefined value here causes illegal behavior2462// :99:27: error: use of undefined value here causes illegal behavior
2469// :105:27: error: use of undefined value here causes illegal behavior2463// :99:27: error: use of undefined value here causes illegal behavior
2470// :105:27: error: use of undefined value here causes illegal behavior2464// :99:27: error: use of undefined value here causes illegal behavior
2471// :105:27: note: when computing vector element at index '1'2465// :99:27: note: when computing vector element at index '1'
2472// :105:27: error: use of undefined value here causes illegal behavior2466// :99:27: error: use of undefined value here causes illegal behavior
2473// :105:27: note: when computing vector element at index '1'2467// :99:27: note: when computing vector element at index '1'
2474// :105:27: error: use of undefined value here causes illegal behavior2468// :99:27: error: use of undefined value here causes illegal behavior
2475// :105:27: note: when computing vector element at index '1'2469// :99:27: note: when computing vector element at index '1'
2476// :105:27: error: use of undefined value here causes illegal behavior2470// :99:27: error: use of undefined value here causes illegal behavior
2477// :105:27: note: when computing vector element at index '1'2471// :99:27: note: when computing vector element at index '1'
2478// :105:27: error: use of undefined value here causes illegal behavior2472// :99:27: error: use of undefined value here causes illegal behavior
2479// :105:27: note: when computing vector element at index '0'2473// :99:27: note: when computing vector element at index '0'
2480// :105:27: error: use of undefined value here causes illegal behavior2474// :99:27: error: use of undefined value here causes illegal behavior
2481// :105:27: note: when computing vector element at index '0'2475// :99:27: note: when computing vector element at index '0'
2482// :105:27: error: use of undefined value here causes illegal behavior2476// :99:27: error: use of undefined value here causes illegal behavior
2483// :105:27: note: when computing vector element at index '0'2477// :99:27: note: when computing vector element at index '0'
2484// :105:27: error: use of undefined value here causes illegal behavior2478// :99:27: error: use of undefined value here causes illegal behavior
2485// :105:27: note: when computing vector element at index '0'2479// :99:27: note: when computing vector element at index '0'
2486// :105:27: error: use of undefined value here causes illegal behavior2480// :99:27: error: use of undefined value here causes illegal behavior
2487// :105:27: error: use of undefined value here causes illegal behavior2481// :99:27: error: use of undefined value here causes illegal behavior
2488// :105:27: error: use of undefined value here causes illegal behavior2482// :99:27: error: use of undefined value here causes illegal behavior
2489// :105:27: error: use of undefined value here causes illegal behavior2483// :99:27: error: use of undefined value here causes illegal behavior
2490// :105:27: error: use of undefined value here causes illegal behavior2484// :99:27: error: use of undefined value here causes illegal behavior
2491// :105:27: error: use of undefined value here causes illegal behavior2485// :99:27: error: use of undefined value here causes illegal behavior
2492// :105:27: error: use of undefined value here causes illegal behavior2486// :99:27: error: use of undefined value here causes illegal behavior
2493// :105:27: note: when computing vector element at index '1'2487// :99:27: note: when computing vector element at index '1'
2494// :105:27: error: use of undefined value here causes illegal behavior2488// :99:27: error: use of undefined value here causes illegal behavior
2495// :105:27: note: when computing vector element at index '1'2489// :99:27: note: when computing vector element at index '1'
2496// :105:27: error: use of undefined value here causes illegal behavior2490// :99:27: error: use of undefined value here causes illegal behavior
2497// :105:27: note: when computing vector element at index '1'2491// :99:27: note: when computing vector element at index '1'
2498// :105:27: error: use of undefined value here causes illegal behavior2492// :99:27: error: use of undefined value here causes illegal behavior
2499// :105:27: note: when computing vector element at index '1'2493// :99:27: note: when computing vector element at index '1'
2500// :105:27: error: use of undefined value here causes illegal behavior2494// :99:27: error: use of undefined value here causes illegal behavior
2501// :105:27: note: when computing vector element at index '0'2495// :99:27: note: when computing vector element at index '0'
2502// :105:27: error: use of undefined value here causes illegal behavior2496// :99:27: error: use of undefined value here causes illegal behavior
2503// :105:27: note: when computing vector element at index '0'2497// :99:27: note: when computing vector element at index '0'
2504// :105:27: error: use of undefined value here causes illegal behavior2498// :99:27: error: use of undefined value here causes illegal behavior
2505// :105:27: note: when computing vector element at index '0'2499// :99:27: note: when computing vector element at index '0'
2506// :105:27: error: use of undefined value here causes illegal behavior2500// :99:27: error: use of undefined value here causes illegal behavior
2507// :105:27: note: when computing vector element at index '0'2501// :99:27: note: when computing vector element at index '0'
2508// :105:27: error: use of undefined value here causes illegal behavior2502// :99:27: error: use of undefined value here causes illegal behavior
2509// :105:27: error: use of undefined value here causes illegal behavior2503// :99:27: error: use of undefined value here causes illegal behavior
2510// :105:27: error: use of undefined value here causes illegal behavior2504// :99:27: error: use of undefined value here causes illegal behavior
2511// :105:27: error: use of undefined value here causes illegal behavior2505// :99:27: error: use of undefined value here causes illegal behavior
2512// :105:27: error: use of undefined value here causes illegal behavior2506// :99:27: error: use of undefined value here causes illegal behavior
2513// :105:27: error: use of undefined value here causes illegal behavior2507// :99:27: error: use of undefined value here causes illegal behavior
2514// :105:27: error: use of undefined value here causes illegal behavior2508// :99:27: error: use of undefined value here causes illegal behavior
2515// :105:27: note: when computing vector element at index '1'2509// :99:27: note: when computing vector element at index '1'
2516// :105:27: error: use of undefined value here causes illegal behavior2510// :99:27: error: use of undefined value here causes illegal behavior
2517// :105:27: note: when computing vector element at index '1'2511// :99:27: note: when computing vector element at index '1'
2518// :105:27: error: use of undefined value here causes illegal behavior2512// :99:27: error: use of undefined value here causes illegal behavior
2519// :105:27: note: when computing vector element at index '1'2513// :99:27: note: when computing vector element at index '1'
2520// :105:27: error: use of undefined value here causes illegal behavior2514// :99:27: error: use of undefined value here causes illegal behavior
2521// :105:27: note: when computing vector element at index '1'2515// :99:27: note: when computing vector element at index '1'
2522// :105:27: error: use of undefined value here causes illegal behavior2516// :99:27: error: use of undefined value here causes illegal behavior
2523// :105:27: note: when computing vector element at index '0'2517// :99:27: note: when computing vector element at index '0'
2524// :105:27: error: use of undefined value here causes illegal behavior2518// :99:27: error: use of undefined value here causes illegal behavior
2525// :105:27: note: when computing vector element at index '0'2519// :99:27: note: when computing vector element at index '0'
2526// :105:27: error: use of undefined value here causes illegal behavior2520// :99:27: error: use of undefined value here causes illegal behavior
2527// :105:27: note: when computing vector element at index '0'2521// :99:27: note: when computing vector element at index '0'
2528// :105:27: error: use of undefined value here causes illegal behavior2522// :99:27: error: use of undefined value here causes illegal behavior
2529// :105:27: note: when computing vector element at index '0'2523// :99:27: note: when computing vector element at index '0'
2530// :105:27: error: use of undefined value here causes illegal behavior2524// :99:27: error: use of undefined value here causes illegal behavior
2531// :105:27: error: use of undefined value here causes illegal behavior2525// :99:27: error: use of undefined value here causes illegal behavior
2532// :105:27: error: use of undefined value here causes illegal behavior2526// :99:27: error: use of undefined value here causes illegal behavior
2533// :105:27: error: use of undefined value here causes illegal behavior2527// :99:27: error: use of undefined value here causes illegal behavior
2534// :105:27: error: use of undefined value here causes illegal behavior2528// :99:27: error: use of undefined value here causes illegal behavior
2535// :105:27: error: use of undefined value here causes illegal behavior2529// :99:27: error: use of undefined value here causes illegal behavior
2536// :105:27: error: use of undefined value here causes illegal behavior2530// :99:27: error: use of undefined value here causes illegal behavior
2537// :105:27: note: when computing vector element at index '1'2531// :99:27: note: when computing vector element at index '1'
2538// :105:27: error: use of undefined value here causes illegal behavior2532// :99:27: error: use of undefined value here causes illegal behavior
2539// :105:27: note: when computing vector element at index '1'2533// :99:27: note: when computing vector element at index '1'
2540// :105:27: error: use of undefined value here causes illegal behavior2534// :99:27: error: use of undefined value here causes illegal behavior
2541// :105:27: note: when computing vector element at index '1'2535// :99:27: note: when computing vector element at index '1'
2542// :105:27: error: use of undefined value here causes illegal behavior2536// :99:27: error: use of undefined value here causes illegal behavior
2543// :105:27: note: when computing vector element at index '1'2537// :99:27: note: when computing vector element at index '1'
2544// :105:27: error: use of undefined value here causes illegal behavior2538// :99:27: error: use of undefined value here causes illegal behavior
2545// :105:27: note: when computing vector element at index '0'2539// :99:27: note: when computing vector element at index '0'
2546// :105:27: error: use of undefined value here causes illegal behavior2540// :99:27: error: use of undefined value here causes illegal behavior
2547// :105:27: note: when computing vector element at index '0'2541// :99:27: note: when computing vector element at index '0'
2548// :105:27: error: use of undefined value here causes illegal behavior2542// :99:27: error: use of undefined value here causes illegal behavior
2549// :105:27: note: when computing vector element at index '0'2543// :99:27: note: when computing vector element at index '0'
2550// :105:27: error: use of undefined value here causes illegal behavior2544// :99:27: error: use of undefined value here causes illegal behavior
2551// :105:27: note: when computing vector element at index '0'2545// :99:27: note: when computing vector element at index '0'
2552// :105:27: error: use of undefined value here causes illegal behavior2546// :99:27: error: use of undefined value here causes illegal behavior
2553// :105:27: error: use of undefined value here causes illegal behavior2547// :99:27: error: use of undefined value here causes illegal behavior
2554// :105:27: error: use of undefined value here causes illegal behavior2548// :99:27: error: use of undefined value here causes illegal behavior
2555// :105:27: error: use of undefined value here causes illegal behavior2549// :99:27: error: use of undefined value here causes illegal behavior
2556// :105:27: error: use of undefined value here causes illegal behavior2550// :99:27: error: use of undefined value here causes illegal behavior
2557// :105:27: error: use of undefined value here causes illegal behavior2551// :99:27: error: use of undefined value here causes illegal behavior
2558// :105:27: error: use of undefined value here causes illegal behavior2552// :99:27: error: use of undefined value here causes illegal behavior
2559// :105:27: note: when computing vector element at index '1'2553// :99:27: note: when computing vector element at index '1'
2560// :105:27: error: use of undefined value here causes illegal behavior2554// :99:27: error: use of undefined value here causes illegal behavior
2561// :105:27: note: when computing vector element at index '1'2555// :99:27: note: when computing vector element at index '1'
2562// :105:27: error: use of undefined value here causes illegal behavior2556// :99:27: error: use of undefined value here causes illegal behavior
2563// :105:27: note: when computing vector element at index '1'2557// :99:27: note: when computing vector element at index '1'
2564// :105:27: error: use of undefined value here causes illegal behavior2558// :99:27: error: use of undefined value here causes illegal behavior
2565// :105:27: note: when computing vector element at index '1'2559// :99:27: note: when computing vector element at index '1'
2566// :105:27: error: use of undefined value here causes illegal behavior2560// :99:27: error: use of undefined value here causes illegal behavior
2567// :105:27: note: when computing vector element at index '0'2561// :99:27: note: when computing vector element at index '0'
2568// :105:27: error: use of undefined value here causes illegal behavior2562// :99:27: error: use of undefined value here causes illegal behavior
2569// :105:27: note: when computing vector element at index '0'2563// :99:27: note: when computing vector element at index '0'
2570// :105:27: error: use of undefined value here causes illegal behavior2564// :99:27: error: use of undefined value here causes illegal behavior
2571// :105:27: note: when computing vector element at index '0'2565// :99:27: note: when computing vector element at index '0'
2572// :105:27: error: use of undefined value here causes illegal behavior2566// :99:27: error: use of undefined value here causes illegal behavior
2573// :105:27: note: when computing vector element at index '0'2567// :99:27: note: when computing vector element at index '0'
2574// :105:27: error: use of undefined value here causes illegal behavior2568// :99:27: error: use of undefined value here causes illegal behavior
2575// :105:27: error: use of undefined value here causes illegal behavior2569// :99:27: error: use of undefined value here causes illegal behavior
2576// :105:27: error: use of undefined value here causes illegal behavior2570// :99:27: error: use of undefined value here causes illegal behavior
2577// :105:27: error: use of undefined value here causes illegal behavior2571// :99:27: error: use of undefined value here causes illegal behavior
2578// :105:27: error: use of undefined value here causes illegal behavior2572// :99:27: error: use of undefined value here causes illegal behavior
2579// :105:27: error: use of undefined value here causes illegal behavior2573// :99:27: error: use of undefined value here causes illegal behavior
2580// :105:27: error: use of undefined value here causes illegal behavior2574// :99:27: error: use of undefined value here causes illegal behavior
2581// :105:27: note: when computing vector element at index '1'2575// :99:27: note: when computing vector element at index '1'
2582// :105:27: error: use of undefined value here causes illegal behavior2576// :99:27: error: use of undefined value here causes illegal behavior
2583// :105:27: note: when computing vector element at index '1'2577// :99:27: note: when computing vector element at index '1'
2584// :105:27: error: use of undefined value here causes illegal behavior2578// :99:27: error: use of undefined value here causes illegal behavior
2585// :105:27: note: when computing vector element at index '1'2579// :99:27: note: when computing vector element at index '1'
2586// :105:27: error: use of undefined value here causes illegal behavior2580// :99:27: error: use of undefined value here causes illegal behavior
2587// :105:27: note: when computing vector element at index '1'2581// :99:27: note: when computing vector element at index '1'
2588// :105:27: error: use of undefined value here causes illegal behavior2582// :99:27: error: use of undefined value here causes illegal behavior
2589// :105:27: note: when computing vector element at index '0'2583// :99:27: note: when computing vector element at index '0'
2590// :105:27: error: use of undefined value here causes illegal behavior2584// :99:27: error: use of undefined value here causes illegal behavior
2591// :105:27: note: when computing vector element at index '0'2585// :99:27: note: when computing vector element at index '0'
2592// :105:27: error: use of undefined value here causes illegal behavior2586// :99:27: error: use of undefined value here causes illegal behavior
2593// :105:27: note: when computing vector element at index '0'2587// :99:27: note: when computing vector element at index '0'
2594// :105:27: error: use of undefined value here causes illegal behavior2588// :99:27: error: use of undefined value here causes illegal behavior
2595// :105:27: note: when computing vector element at index '0'2589// :99:27: note: when computing vector element at index '0'
2596// :105:27: error: use of undefined value here causes illegal behavior2590// :99:27: error: use of undefined value here causes illegal behavior
2597// :105:27: error: use of undefined value here causes illegal behavior2591// :99:27: error: use of undefined value here causes illegal behavior
2598// :105:27: error: use of undefined value here causes illegal behavior2592// :99:27: error: use of undefined value here causes illegal behavior
2599// :105:27: error: use of undefined value here causes illegal behavior2593// :99:27: error: use of undefined value here causes illegal behavior
2600// :105:27: error: use of undefined value here causes illegal behavior2594// :99:27: error: use of undefined value here causes illegal behavior
2601// :105:27: error: use of undefined value here causes illegal behavior2595// :99:27: error: use of undefined value here causes illegal behavior
2602// :105:27: error: use of undefined value here causes illegal behavior2596// :99:27: error: use of undefined value here causes illegal behavior
2603// :105:27: note: when computing vector element at index '1'2597// :99:27: note: when computing vector element at index '1'
2604// :105:27: error: use of undefined value here causes illegal behavior2598// :99:27: error: use of undefined value here causes illegal behavior
2605// :105:27: note: when computing vector element at index '1'2599// :99:27: note: when computing vector element at index '1'
2606// :105:27: error: use of undefined value here causes illegal behavior2600// :99:27: error: use of undefined value here causes illegal behavior
2607// :105:27: note: when computing vector element at index '1'2601// :99:27: note: when computing vector element at index '1'
2608// :105:27: error: use of undefined value here causes illegal behavior2602// :99:27: error: use of undefined value here causes illegal behavior
2609// :105:27: note: when computing vector element at index '1'2603// :99:27: note: when computing vector element at index '1'
2610// :105:27: error: use of undefined value here causes illegal behavior2604// :99:27: error: use of undefined value here causes illegal behavior
2611// :105:27: note: when computing vector element at index '0'2605// :99:27: note: when computing vector element at index '0'
2612// :105:27: error: use of undefined value here causes illegal behavior2606// :99:27: error: use of undefined value here causes illegal behavior
2613// :105:27: note: when computing vector element at index '0'2607// :99:27: note: when computing vector element at index '0'
2614// :105:27: error: use of undefined value here causes illegal behavior2608// :99:27: error: use of undefined value here causes illegal behavior
2615// :105:27: note: when computing vector element at index '0'2609// :99:27: note: when computing vector element at index '0'
2616// :105:27: error: use of undefined value here causes illegal behavior2610// :99:27: error: use of undefined value here causes illegal behavior
2617// :105:27: note: when computing vector element at index '0'2611// :99:27: note: when computing vector element at index '0'
2618// :105:27: error: use of undefined value here causes illegal behavior2612// :99:27: error: use of undefined value here causes illegal behavior
2619// :105:27: error: use of undefined value here causes illegal behavior2613// :99:27: error: use of undefined value here causes illegal behavior
2620// :105:27: error: use of undefined value here causes illegal behavior2614// :99:27: error: use of undefined value here causes illegal behavior
2621// :105:27: error: use of undefined value here causes illegal behavior2615// :99:27: error: use of undefined value here causes illegal behavior
2622// :105:27: error: use of undefined value here causes illegal behavior2616// :99:27: error: use of undefined value here causes illegal behavior
2623// :105:27: error: use of undefined value here causes illegal behavior2617// :99:27: error: use of undefined value here causes illegal behavior
2624// :105:27: error: use of undefined value here causes illegal behavior2618// :99:27: error: use of undefined value here causes illegal behavior
2625// :105:27: note: when computing vector element at index '1'2619// :99:27: note: when computing vector element at index '1'
2626// :105:27: error: use of undefined value here causes illegal behavior2620// :99:27: error: use of undefined value here causes illegal behavior
2627// :105:27: note: when computing vector element at index '1'2621// :99:27: note: when computing vector element at index '1'
2628// :105:27: error: use of undefined value here causes illegal behavior2622// :99:27: error: use of undefined value here causes illegal behavior
2629// :105:27: note: when computing vector element at index '1'2623// :99:27: note: when computing vector element at index '1'
2630// :105:27: error: use of undefined value here causes illegal behavior2624// :99:27: error: use of undefined value here causes illegal behavior
2631// :105:27: note: when computing vector element at index '1'2625// :99:27: note: when computing vector element at index '1'
2632// :105:27: error: use of undefined value here causes illegal behavior2626// :99:27: error: use of undefined value here causes illegal behavior
2633// :105:27: note: when computing vector element at index '0'2627// :99:27: note: when computing vector element at index '0'
2634// :105:27: error: use of undefined value here causes illegal behavior2628// :99:27: error: use of undefined value here causes illegal behavior
2635// :105:27: note: when computing vector element at index '0'2629// :99:27: note: when computing vector element at index '0'
2636// :105:27: error: use of undefined value here causes illegal behavior2630// :99:27: error: use of undefined value here causes illegal behavior
2637// :105:27: note: when computing vector element at index '0'2631// :99:27: note: when computing vector element at index '0'
2638// :105:27: error: use of undefined value here causes illegal behavior2632// :99:27: error: use of undefined value here causes illegal behavior
2639// :105:27: note: when computing vector element at index '0'2633// :99:27: note: when computing vector element at index '0'
2640// :105:27: error: use of undefined value here causes illegal behavior2634// :99:27: error: use of undefined value here causes illegal behavior
2641// :105:27: error: use of undefined value here causes illegal behavior2635// :99:27: error: use of undefined value here causes illegal behavior
2642// :105:27: error: use of undefined value here causes illegal behavior2636// :99:27: error: use of undefined value here causes illegal behavior
2643// :105:27: error: use of undefined value here causes illegal behavior2637// :99:27: error: use of undefined value here causes illegal behavior
2644// :105:27: error: use of undefined value here causes illegal behavior2638// :99:27: error: use of undefined value here causes illegal behavior
2645// :105:27: error: use of undefined value here causes illegal behavior2639// :99:27: error: use of undefined value here causes illegal behavior
2646// :105:27: error: use of undefined value here causes illegal behavior2640// :99:27: error: use of undefined value here causes illegal behavior
2647// :105:27: note: when computing vector element at index '1'2641// :99:27: note: when computing vector element at index '1'
2648// :105:27: error: use of undefined value here causes illegal behavior2642// :99:27: error: use of undefined value here causes illegal behavior
2649// :105:27: note: when computing vector element at index '1'2643// :99:27: note: when computing vector element at index '1'
2650// :105:27: error: use of undefined value here causes illegal behavior2644// :99:27: error: use of undefined value here causes illegal behavior
2651// :105:27: note: when computing vector element at index '1'2645// :99:27: note: when computing vector element at index '1'
2652// :105:27: error: use of undefined value here causes illegal behavior2646// :99:27: error: use of undefined value here causes illegal behavior
2653// :105:27: note: when computing vector element at index '1'2647// :99:27: note: when computing vector element at index '1'
2654// :105:27: error: use of undefined value here causes illegal behavior2648// :99:27: error: use of undefined value here causes illegal behavior
2655// :105:27: note: when computing vector element at index '0'2649// :99:27: note: when computing vector element at index '0'
2656// :105:27: error: use of undefined value here causes illegal behavior2650// :99:27: error: use of undefined value here causes illegal behavior
2657// :105:27: note: when computing vector element at index '0'2651// :99:27: note: when computing vector element at index '0'
2658// :105:27: error: use of undefined value here causes illegal behavior2652// :99:27: error: use of undefined value here causes illegal behavior
2659// :105:27: note: when computing vector element at index '0'2653// :99:27: note: when computing vector element at index '0'
2660// :105:27: error: use of undefined value here causes illegal behavior2654// :99:27: error: use of undefined value here causes illegal behavior
2661// :105:27: note: when computing vector element at index '0'2655// :99:27: note: when computing vector element at index '0'
2662// :105:27: error: use of undefined value here causes illegal behavior2656// :99:27: error: use of undefined value here causes illegal behavior
2663// :105:27: error: use of undefined value here causes illegal behavior2657// :99:27: error: use of undefined value here causes illegal behavior
2664// :105:27: error: use of undefined value here causes illegal behavior2658// :99:27: error: use of undefined value here causes illegal behavior
2665// :105:27: error: use of undefined value here causes illegal behavior2659// :99:27: error: use of undefined value here causes illegal behavior
2666// :105:27: error: use of undefined value here causes illegal behavior2660// :99:27: error: use of undefined value here causes illegal behavior
2667// :105:27: error: use of undefined value here causes illegal behavior2661// :99:27: error: use of undefined value here causes illegal behavior
2668// :105:27: error: use of undefined value here causes illegal behavior2662// :99:27: error: use of undefined value here causes illegal behavior
2669// :105:27: note: when computing vector element at index '1'2663// :99:27: note: when computing vector element at index '1'
2670// :105:27: error: use of undefined value here causes illegal behavior2664// :99:27: error: use of undefined value here causes illegal behavior
2671// :105:27: note: when computing vector element at index '1'2665// :99:27: note: when computing vector element at index '1'
2672// :105:27: error: use of undefined value here causes illegal behavior2666// :99:27: error: use of undefined value here causes illegal behavior
2673// :105:27: note: when computing vector element at index '1'2667// :99:27: note: when computing vector element at index '1'
2674// :105:27: error: use of undefined value here causes illegal behavior2668// :99:27: error: use of undefined value here causes illegal behavior
2675// :105:27: note: when computing vector element at index '1'2669// :99:27: note: when computing vector element at index '1'
2676// :105:27: error: use of undefined value here causes illegal behavior2670// :99:27: error: use of undefined value here causes illegal behavior
2677// :105:27: note: when computing vector element at index '0'2671// :99:27: note: when computing vector element at index '0'
2678// :105:27: error: use of undefined value here causes illegal behavior2672// :99:27: error: use of undefined value here causes illegal behavior
2679// :105:27: note: when computing vector element at index '0'2673// :99:27: note: when computing vector element at index '0'
2680// :105:27: error: use of undefined value here causes illegal behavior2674// :99:27: error: use of undefined value here causes illegal behavior
2681// :105:27: note: when computing vector element at index '0'2675// :99:27: note: when computing vector element at index '0'
2682// :105:27: error: use of undefined value here causes illegal behavior2676// :99:27: error: use of undefined value here causes illegal behavior
2683// :105:27: note: when computing vector element at index '0'2677// :99:27: note: when computing vector element at index '0'
2684// :109:27: error: use of undefined value here causes illegal behavior2678// :103:27: error: use of undefined value here causes illegal behavior
2685// :109:27: error: use of undefined value here causes illegal behavior2679// :103:27: error: use of undefined value here causes illegal behavior
2686// :109:27: error: use of undefined value here causes illegal behavior2680// :103:27: error: use of undefined value here causes illegal behavior
2687// :109:27: error: use of undefined value here causes illegal behavior2681// :103:27: error: use of undefined value here causes illegal behavior
2688// :109:27: error: use of undefined value here causes illegal behavior2682// :103:27: error: use of undefined value here causes illegal behavior
2689// :109:27: error: use of undefined value here causes illegal behavior2683// :103:27: error: use of undefined value here causes illegal behavior
2690// :109:27: error: use of undefined value here causes illegal behavior2684// :103:27: error: use of undefined value here causes illegal behavior
2691// :109:27: note: when computing vector element at index '1'2685// :103:27: note: when computing vector element at index '1'
2692// :109:27: error: use of undefined value here causes illegal behavior2686// :103:27: error: use of undefined value here causes illegal behavior
2693// :109:27: note: when computing vector element at index '1'2687// :103:27: note: when computing vector element at index '1'
2694// :109:27: error: use of undefined value here causes illegal behavior2688// :103:27: error: use of undefined value here causes illegal behavior
2695// :109:27: note: when computing vector element at index '1'2689// :103:27: note: when computing vector element at index '1'
2696// :109:27: error: use of undefined value here causes illegal behavior2690// :103:27: error: use of undefined value here causes illegal behavior
2697// :109:27: note: when computing vector element at index '1'2691// :103:27: note: when computing vector element at index '1'
2698// :109:27: error: use of undefined value here causes illegal behavior2692// :103:27: error: use of undefined value here causes illegal behavior
2699// :109:27: note: when computing vector element at index '0'2693// :103:27: note: when computing vector element at index '0'
2700// :109:27: error: use of undefined value here causes illegal behavior2694// :103:27: error: use of undefined value here causes illegal behavior
2701// :109:27: note: when computing vector element at index '0'2695// :103:27: note: when computing vector element at index '0'
2702// :109:27: error: use of undefined value here causes illegal behavior2696// :103:27: error: use of undefined value here causes illegal behavior
2703// :109:27: note: when computing vector element at index '0'2697// :103:27: note: when computing vector element at index '0'
2704// :109:27: error: use of undefined value here causes illegal behavior2698// :103:27: error: use of undefined value here causes illegal behavior
2705// :109:27: note: when computing vector element at index '0'2699// :103:27: note: when computing vector element at index '0'
2706// :109:27: error: use of undefined value here causes illegal behavior2700// :103:27: error: use of undefined value here causes illegal behavior
2707// :109:27: error: use of undefined value here causes illegal behavior2701// :103:27: error: use of undefined value here causes illegal behavior
2708// :109:27: error: use of undefined value here causes illegal behavior2702// :103:27: error: use of undefined value here causes illegal behavior
2709// :109:27: error: use of undefined value here causes illegal behavior2703// :103:27: error: use of undefined value here causes illegal behavior
2710// :109:27: error: use of undefined value here causes illegal behavior2704// :103:27: error: use of undefined value here causes illegal behavior
2711// :109:27: error: use of undefined value here causes illegal behavior2705// :103:27: error: use of undefined value here causes illegal behavior
2712// :109:27: error: use of undefined value here causes illegal behavior2706// :103:27: error: use of undefined value here causes illegal behavior
2713// :109:27: note: when computing vector element at index '1'2707// :103:27: note: when computing vector element at index '1'
2714// :109:27: error: use of undefined value here causes illegal behavior2708// :103:27: error: use of undefined value here causes illegal behavior
2715// :109:27: note: when computing vector element at index '1'2709// :103:27: note: when computing vector element at index '1'
2716// :109:27: error: use of undefined value here causes illegal behavior2710// :103:27: error: use of undefined value here causes illegal behavior
2717// :109:27: note: when computing vector element at index '1'2711// :103:27: note: when computing vector element at index '1'
2718// :109:27: error: use of undefined value here causes illegal behavior2712// :103:27: error: use of undefined value here causes illegal behavior
2719// :109:27: note: when computing vector element at index '1'2713// :103:27: note: when computing vector element at index '1'
2720// :109:27: error: use of undefined value here causes illegal behavior2714// :103:27: error: use of undefined value here causes illegal behavior
2721// :109:27: note: when computing vector element at index '0'2715// :103:27: note: when computing vector element at index '0'
2722// :109:27: error: use of undefined value here causes illegal behavior2716// :103:27: error: use of undefined value here causes illegal behavior
2723// :109:27: note: when computing vector element at index '0'2717// :103:27: note: when computing vector element at index '0'
2724// :109:27: error: use of undefined value here causes illegal behavior2718// :103:27: error: use of undefined value here causes illegal behavior
2725// :109:27: note: when computing vector element at index '0'2719// :103:27: note: when computing vector element at index '0'
2726// :109:27: error: use of undefined value here causes illegal behavior2720// :103:27: error: use of undefined value here causes illegal behavior
2727// :109:27: note: when computing vector element at index '0'2721// :103:27: note: when computing vector element at index '0'
2728// :109:27: error: use of undefined value here causes illegal behavior2722// :103:27: error: use of undefined value here causes illegal behavior
2729// :109:27: error: use of undefined value here causes illegal behavior2723// :103:27: error: use of undefined value here causes illegal behavior
2730// :109:27: error: use of undefined value here causes illegal behavior2724// :103:27: error: use of undefined value here causes illegal behavior
2731// :109:27: error: use of undefined value here causes illegal behavior2725// :103:27: error: use of undefined value here causes illegal behavior
2732// :109:27: error: use of undefined value here causes illegal behavior2726// :103:27: error: use of undefined value here causes illegal behavior
2733// :109:27: error: use of undefined value here causes illegal behavior2727// :103:27: error: use of undefined value here causes illegal behavior
2734// :109:27: error: use of undefined value here causes illegal behavior2728// :103:27: error: use of undefined value here causes illegal behavior
2735// :109:27: note: when computing vector element at index '1'2729// :103:27: note: when computing vector element at index '1'
2736// :109:27: error: use of undefined value here causes illegal behavior2730// :103:27: error: use of undefined value here causes illegal behavior
2737// :109:27: note: when computing vector element at index '1'2731// :103:27: note: when computing vector element at index '1'
2738// :109:27: error: use of undefined value here causes illegal behavior2732// :103:27: error: use of undefined value here causes illegal behavior
2739// :109:27: note: when computing vector element at index '1'2733// :103:27: note: when computing vector element at index '1'
2740// :109:27: error: use of undefined value here causes illegal behavior2734// :103:27: error: use of undefined value here causes illegal behavior
2741// :109:27: note: when computing vector element at index '1'2735// :103:27: note: when computing vector element at index '1'
2742// :109:27: error: use of undefined value here causes illegal behavior2736// :103:27: error: use of undefined value here causes illegal behavior
2743// :109:27: note: when computing vector element at index '0'2737// :103:27: note: when computing vector element at index '0'
2744// :109:27: error: use of undefined value here causes illegal behavior2738// :103:27: error: use of undefined value here causes illegal behavior
2745// :109:27: note: when computing vector element at index '0'2739// :103:27: note: when computing vector element at index '0'
2746// :109:27: error: use of undefined value here causes illegal behavior2740// :103:27: error: use of undefined value here causes illegal behavior
2747// :109:27: note: when computing vector element at index '0'2741// :103:27: note: when computing vector element at index '0'
2748// :109:27: error: use of undefined value here causes illegal behavior2742// :103:27: error: use of undefined value here causes illegal behavior
2749// :109:27: note: when computing vector element at index '0'2743// :103:27: note: when computing vector element at index '0'
2750// :109:27: error: use of undefined value here causes illegal behavior2744// :103:27: error: use of undefined value here causes illegal behavior
2751// :109:27: error: use of undefined value here causes illegal behavior2745// :103:27: error: use of undefined value here causes illegal behavior
2752// :109:27: error: use of undefined value here causes illegal behavior2746// :103:27: error: use of undefined value here causes illegal behavior
2753// :109:27: error: use of undefined value here causes illegal behavior2747// :103:27: error: use of undefined value here causes illegal behavior
2754// :109:27: error: use of undefined value here causes illegal behavior2748// :103:27: error: use of undefined value here causes illegal behavior
2755// :109:27: error: use of undefined value here causes illegal behavior2749// :103:27: error: use of undefined value here causes illegal behavior
2756// :109:27: error: use of undefined value here causes illegal behavior2750// :103:27: error: use of undefined value here causes illegal behavior
2757// :109:27: note: when computing vector element at index '1'2751// :103:27: note: when computing vector element at index '1'
2758// :109:27: error: use of undefined value here causes illegal behavior2752// :103:27: error: use of undefined value here causes illegal behavior
2759// :109:27: note: when computing vector element at index '1'2753// :103:27: note: when computing vector element at index '1'
2760// :109:27: error: use of undefined value here causes illegal behavior2754// :103:27: error: use of undefined value here causes illegal behavior
2761// :109:27: note: when computing vector element at index '1'2755// :103:27: note: when computing vector element at index '1'
2762// :109:27: error: use of undefined value here causes illegal behavior2756// :103:27: error: use of undefined value here causes illegal behavior
2763// :109:27: note: when computing vector element at index '1'2757// :103:27: note: when computing vector element at index '1'
2764// :109:27: error: use of undefined value here causes illegal behavior2758// :103:27: error: use of undefined value here causes illegal behavior
2765// :109:27: note: when computing vector element at index '0'2759// :103:27: note: when computing vector element at index '0'
2766// :109:27: error: use of undefined value here causes illegal behavior2760// :103:27: error: use of undefined value here causes illegal behavior
2767// :109:27: note: when computing vector element at index '0'2761// :103:27: note: when computing vector element at index '0'
2768// :109:27: error: use of undefined value here causes illegal behavior2762// :103:27: error: use of undefined value here causes illegal behavior
2769// :109:27: note: when computing vector element at index '0'2763// :103:27: note: when computing vector element at index '0'
2770// :109:27: error: use of undefined value here causes illegal behavior2764// :103:27: error: use of undefined value here causes illegal behavior
2771// :109:27: note: when computing vector element at index '0'2765// :103:27: note: when computing vector element at index '0'
2772// :109:27: error: use of undefined value here causes illegal behavior2766// :103:27: error: use of undefined value here causes illegal behavior
2773// :109:27: error: use of undefined value here causes illegal behavior2767// :103:27: error: use of undefined value here causes illegal behavior
2774// :109:27: error: use of undefined value here causes illegal behavior2768// :103:27: error: use of undefined value here causes illegal behavior
2775// :109:27: error: use of undefined value here causes illegal behavior2769// :103:27: error: use of undefined value here causes illegal behavior
2776// :109:27: error: use of undefined value here causes illegal behavior2770// :103:27: error: use of undefined value here causes illegal behavior
2777// :109:27: error: use of undefined value here causes illegal behavior2771// :103:27: error: use of undefined value here causes illegal behavior
2778// :109:27: error: use of undefined value here causes illegal behavior2772// :103:27: error: use of undefined value here causes illegal behavior
2779// :109:27: note: when computing vector element at index '1'2773// :103:27: note: when computing vector element at index '1'
2780// :109:27: error: use of undefined value here causes illegal behavior2774// :103:27: error: use of undefined value here causes illegal behavior
2781// :109:27: note: when computing vector element at index '1'2775// :103:27: note: when computing vector element at index '1'
2782// :109:27: error: use of undefined value here causes illegal behavior2776// :103:27: error: use of undefined value here causes illegal behavior
2783// :109:27: note: when computing vector element at index '1'2777// :103:27: note: when computing vector element at index '1'
2784// :109:27: error: use of undefined value here causes illegal behavior2778// :103:27: error: use of undefined value here causes illegal behavior
2785// :109:27: note: when computing vector element at index '1'2779// :103:27: note: when computing vector element at index '1'
2786// :109:27: error: use of undefined value here causes illegal behavior2780// :103:27: error: use of undefined value here causes illegal behavior
2787// :109:27: note: when computing vector element at index '0'2781// :103:27: note: when computing vector element at index '0'
2788// :109:27: error: use of undefined value here causes illegal behavior2782// :103:27: error: use of undefined value here causes illegal behavior
2789// :109:27: note: when computing vector element at index '0'2783// :103:27: note: when computing vector element at index '0'
2790// :109:27: error: use of undefined value here causes illegal behavior2784// :103:27: error: use of undefined value here causes illegal behavior
2791// :109:27: note: when computing vector element at index '0'2785// :103:27: note: when computing vector element at index '0'
2792// :109:27: error: use of undefined value here causes illegal behavior2786// :103:27: error: use of undefined value here causes illegal behavior
2793// :109:27: note: when computing vector element at index '0'2787// :103:27: note: when computing vector element at index '0'
2794// :109:27: error: use of undefined value here causes illegal behavior2788// :103:27: error: use of undefined value here causes illegal behavior
2795// :109:27: error: use of undefined value here causes illegal behavior2789// :103:27: error: use of undefined value here causes illegal behavior
2796// :109:27: error: use of undefined value here causes illegal behavior2790// :103:27: error: use of undefined value here causes illegal behavior
2797// :109:27: error: use of undefined value here causes illegal behavior2791// :103:27: error: use of undefined value here causes illegal behavior
2798// :109:27: error: use of undefined value here causes illegal behavior2792// :103:27: error: use of undefined value here causes illegal behavior
2799// :109:27: error: use of undefined value here causes illegal behavior2793// :103:27: error: use of undefined value here causes illegal behavior
2800// :109:27: error: use of undefined value here causes illegal behavior2794// :103:27: error: use of undefined value here causes illegal behavior
2801// :109:27: note: when computing vector element at index '1'2795// :103:27: note: when computing vector element at index '1'
2802// :109:27: error: use of undefined value here causes illegal behavior2796// :103:27: error: use of undefined value here causes illegal behavior
2803// :109:27: note: when computing vector element at index '1'2797// :103:27: note: when computing vector element at index '1'
2804// :109:27: error: use of undefined value here causes illegal behavior2798// :103:27: error: use of undefined value here causes illegal behavior
2805// :109:27: note: when computing vector element at index '1'2799// :103:27: note: when computing vector element at index '1'
2806// :109:27: error: use of undefined value here causes illegal behavior2800// :103:27: error: use of undefined value here causes illegal behavior
2807// :109:27: note: when computing vector element at index '1'2801// :103:27: note: when computing vector element at index '1'
2808// :109:27: error: use of undefined value here causes illegal behavior2802// :103:27: error: use of undefined value here causes illegal behavior
2809// :109:27: note: when computing vector element at index '0'2803// :103:27: note: when computing vector element at index '0'
2810// :109:27: error: use of undefined value here causes illegal behavior2804// :103:27: error: use of undefined value here causes illegal behavior
2811// :109:27: note: when computing vector element at index '0'2805// :103:27: note: when computing vector element at index '0'
2812// :109:27: error: use of undefined value here causes illegal behavior2806// :103:27: error: use of undefined value here causes illegal behavior
2813// :109:27: note: when computing vector element at index '0'2807// :103:27: note: when computing vector element at index '0'
2814// :109:27: error: use of undefined value here causes illegal behavior2808// :103:27: error: use of undefined value here causes illegal behavior
2815// :109:27: note: when computing vector element at index '0'2809// :103:27: note: when computing vector element at index '0'
2816// :109:27: error: use of undefined value here causes illegal behavior2810// :103:27: error: use of undefined value here causes illegal behavior
2817// :109:27: error: use of undefined value here causes illegal behavior2811// :103:27: error: use of undefined value here causes illegal behavior
2818// :109:27: error: use of undefined value here causes illegal behavior2812// :103:27: error: use of undefined value here causes illegal behavior
2819// :109:27: error: use of undefined value here causes illegal behavior2813// :103:27: error: use of undefined value here causes illegal behavior
2820// :109:27: error: use of undefined value here causes illegal behavior2814// :103:27: error: use of undefined value here causes illegal behavior
2821// :109:27: error: use of undefined value here causes illegal behavior2815// :103:27: error: use of undefined value here causes illegal behavior
2822// :109:27: error: use of undefined value here causes illegal behavior2816// :103:27: error: use of undefined value here causes illegal behavior
2823// :109:27: note: when computing vector element at index '1'2817// :103:27: note: when computing vector element at index '1'
2824// :109:27: error: use of undefined value here causes illegal behavior2818// :103:27: error: use of undefined value here causes illegal behavior
2825// :109:27: note: when computing vector element at index '1'2819// :103:27: note: when computing vector element at index '1'
2826// :109:27: error: use of undefined value here causes illegal behavior2820// :103:27: error: use of undefined value here causes illegal behavior
2827// :109:27: note: when computing vector element at index '1'2821// :103:27: note: when computing vector element at index '1'
2828// :109:27: error: use of undefined value here causes illegal behavior2822// :103:27: error: use of undefined value here causes illegal behavior
2829// :109:27: note: when computing vector element at index '1'2823// :103:27: note: when computing vector element at index '1'
2830// :109:27: error: use of undefined value here causes illegal behavior2824// :103:27: error: use of undefined value here causes illegal behavior
2831// :109:27: note: when computing vector element at index '0'2825// :103:27: note: when computing vector element at index '0'
2832// :109:27: error: use of undefined value here causes illegal behavior2826// :103:27: error: use of undefined value here causes illegal behavior
2833// :109:27: note: when computing vector element at index '0'2827// :103:27: note: when computing vector element at index '0'
2834// :109:27: error: use of undefined value here causes illegal behavior2828// :103:27: error: use of undefined value here causes illegal behavior
2835// :109:27: note: when computing vector element at index '0'2829// :103:27: note: when computing vector element at index '0'
2836// :109:27: error: use of undefined value here causes illegal behavior2830// :103:27: error: use of undefined value here causes illegal behavior
2837// :109:27: note: when computing vector element at index '0'2831// :103:27: note: when computing vector element at index '0'
2838// :109:27: error: use of undefined value here causes illegal behavior2832// :103:27: error: use of undefined value here causes illegal behavior
2839// :109:27: error: use of undefined value here causes illegal behavior2833// :103:27: error: use of undefined value here causes illegal behavior
2840// :109:27: error: use of undefined value here causes illegal behavior2834// :103:27: error: use of undefined value here causes illegal behavior
2841// :109:27: error: use of undefined value here causes illegal behavior2835// :103:27: error: use of undefined value here causes illegal behavior
2842// :109:27: error: use of undefined value here causes illegal behavior2836// :103:27: error: use of undefined value here causes illegal behavior
2843// :109:27: error: use of undefined value here causes illegal behavior2837// :103:27: error: use of undefined value here causes illegal behavior
2844// :109:27: error: use of undefined value here causes illegal behavior2838// :103:27: error: use of undefined value here causes illegal behavior
2845// :109:27: note: when computing vector element at index '1'2839// :103:27: note: when computing vector element at index '1'
2846// :109:27: error: use of undefined value here causes illegal behavior2840// :103:27: error: use of undefined value here causes illegal behavior
2847// :109:27: note: when computing vector element at index '1'2841// :103:27: note: when computing vector element at index '1'
2848// :109:27: error: use of undefined value here causes illegal behavior2842// :103:27: error: use of undefined value here causes illegal behavior
2849// :109:27: note: when computing vector element at index '1'2843// :103:27: note: when computing vector element at index '1'
2850// :109:27: error: use of undefined value here causes illegal behavior2844// :103:27: error: use of undefined value here causes illegal behavior
2851// :109:27: note: when computing vector element at index '1'2845// :103:27: note: when computing vector element at index '1'
2852// :109:27: error: use of undefined value here causes illegal behavior2846// :103:27: error: use of undefined value here causes illegal behavior
2853// :109:27: note: when computing vector element at index '0'2847// :103:27: note: when computing vector element at index '0'
2854// :109:27: error: use of undefined value here causes illegal behavior2848// :103:27: error: use of undefined value here causes illegal behavior
2855// :109:27: note: when computing vector element at index '0'2849// :103:27: note: when computing vector element at index '0'
2856// :109:27: error: use of undefined value here causes illegal behavior2850// :103:27: error: use of undefined value here causes illegal behavior
2857// :109:27: note: when computing vector element at index '0'2851// :103:27: note: when computing vector element at index '0'
2858// :109:27: error: use of undefined value here causes illegal behavior2852// :103:27: error: use of undefined value here causes illegal behavior
2859// :109:27: note: when computing vector element at index '0'2853// :103:27: note: when computing vector element at index '0'
2860// :109:27: error: use of undefined value here causes illegal behavior2854// :103:27: error: use of undefined value here causes illegal behavior
2861// :109:27: error: use of undefined value here causes illegal behavior2855// :103:27: error: use of undefined value here causes illegal behavior
2862// :109:27: error: use of undefined value here causes illegal behavior2856// :103:27: error: use of undefined value here causes illegal behavior
2863// :109:27: error: use of undefined value here causes illegal behavior2857// :103:27: error: use of undefined value here causes illegal behavior
2864// :109:27: error: use of undefined value here causes illegal behavior2858// :103:27: error: use of undefined value here causes illegal behavior
2865// :109:27: error: use of undefined value here causes illegal behavior2859// :103:27: error: use of undefined value here causes illegal behavior
2866// :109:27: error: use of undefined value here causes illegal behavior2860// :103:27: error: use of undefined value here causes illegal behavior
2867// :109:27: note: when computing vector element at index '1'2861// :103:27: note: when computing vector element at index '1'
2868// :109:27: error: use of undefined value here causes illegal behavior2862// :103:27: error: use of undefined value here causes illegal behavior
2869// :109:27: note: when computing vector element at index '1'2863// :103:27: note: when computing vector element at index '1'
2870// :109:27: error: use of undefined value here causes illegal behavior2864// :103:27: error: use of undefined value here causes illegal behavior
2871// :109:27: note: when computing vector element at index '1'2865// :103:27: note: when computing vector element at index '1'
2872// :109:27: error: use of undefined value here causes illegal behavior2866// :103:27: error: use of undefined value here causes illegal behavior
2873// :109:27: note: when computing vector element at index '1'2867// :103:27: note: when computing vector element at index '1'
2874// :109:27: error: use of undefined value here causes illegal behavior2868// :103:27: error: use of undefined value here causes illegal behavior
2875// :109:27: note: when computing vector element at index '0'2869// :103:27: note: when computing vector element at index '0'
2876// :109:27: error: use of undefined value here causes illegal behavior2870// :103:27: error: use of undefined value here causes illegal behavior
2877// :109:27: note: when computing vector element at index '0'2871// :103:27: note: when computing vector element at index '0'
2878// :109:27: error: use of undefined value here causes illegal behavior2872// :103:27: error: use of undefined value here causes illegal behavior
2879// :109:27: note: when computing vector element at index '0'2873// :103:27: note: when computing vector element at index '0'
2880// :109:27: error: use of undefined value here causes illegal behavior2874// :103:27: error: use of undefined value here causes illegal behavior
2881// :109:27: note: when computing vector element at index '0'2875// :103:27: note: when computing vector element at index '0'
2882// :109:27: error: use of undefined value here causes illegal behavior2876// :103:27: error: use of undefined value here causes illegal behavior
2883// :109:27: error: use of undefined value here causes illegal behavior2877// :103:27: error: use of undefined value here causes illegal behavior
2884// :109:27: error: use of undefined value here causes illegal behavior2878// :103:27: error: use of undefined value here causes illegal behavior
2885// :109:27: error: use of undefined value here causes illegal behavior2879// :103:27: error: use of undefined value here causes illegal behavior
2886// :109:27: error: use of undefined value here causes illegal behavior2880// :103:27: error: use of undefined value here causes illegal behavior
2887// :109:27: error: use of undefined value here causes illegal behavior2881// :103:27: error: use of undefined value here causes illegal behavior
2888// :109:27: error: use of undefined value here causes illegal behavior2882// :103:27: error: use of undefined value here causes illegal behavior
2889// :109:27: note: when computing vector element at index '1'2883// :103:27: note: when computing vector element at index '1'
2890// :109:27: error: use of undefined value here causes illegal behavior2884// :103:27: error: use of undefined value here causes illegal behavior
2891// :109:27: note: when computing vector element at index '1'2885// :103:27: note: when computing vector element at index '1'
2892// :109:27: error: use of undefined value here causes illegal behavior2886// :103:27: error: use of undefined value here causes illegal behavior
2893// :109:27: note: when computing vector element at index '1'2887// :103:27: note: when computing vector element at index '1'
2894// :109:27: error: use of undefined value here causes illegal behavior2888// :103:27: error: use of undefined value here causes illegal behavior
2895// :109:27: note: when computing vector element at index '1'2889// :103:27: note: when computing vector element at index '1'
2896// :109:27: error: use of undefined value here causes illegal behavior2890// :103:27: error: use of undefined value here causes illegal behavior
2897// :109:27: note: when computing vector element at index '0'2891// :103:27: note: when computing vector element at index '0'
2898// :109:27: error: use of undefined value here causes illegal behavior2892// :103:27: error: use of undefined value here causes illegal behavior
2899// :109:27: note: when computing vector element at index '0'2893// :103:27: note: when computing vector element at index '0'
2900// :109:27: error: use of undefined value here causes illegal behavior2894// :103:27: error: use of undefined value here causes illegal behavior
2901// :109:27: note: when computing vector element at index '0'2895// :103:27: note: when computing vector element at index '0'
2902// :109:27: error: use of undefined value here causes illegal behavior2896// :103:27: error: use of undefined value here causes illegal behavior
2903// :109:27: note: when computing vector element at index '0'2897// :103:27: note: when computing vector element at index '0'
2904// :109:27: error: use of undefined value here causes illegal behavior2898// :103:27: error: use of undefined value here causes illegal behavior
2905// :109:27: error: use of undefined value here causes illegal behavior2899// :103:27: error: use of undefined value here causes illegal behavior
2906// :109:27: error: use of undefined value here causes illegal behavior2900// :103:27: error: use of undefined value here causes illegal behavior
2907// :109:27: error: use of undefined value here causes illegal behavior2901// :103:27: error: use of undefined value here causes illegal behavior
2908// :109:27: error: use of undefined value here causes illegal behavior2902// :103:27: error: use of undefined value here causes illegal behavior
2909// :109:27: error: use of undefined value here causes illegal behavior2903// :103:27: error: use of undefined value here causes illegal behavior
2910// :109:27: error: use of undefined value here causes illegal behavior2904// :103:27: error: use of undefined value here causes illegal behavior
2911// :109:27: note: when computing vector element at index '1'2905// :103:27: note: when computing vector element at index '1'
2912// :109:27: error: use of undefined value here causes illegal behavior2906// :103:27: error: use of undefined value here causes illegal behavior
2913// :109:27: note: when computing vector element at index '1'2907// :103:27: note: when computing vector element at index '1'
2914// :109:27: error: use of undefined value here causes illegal behavior2908// :103:27: error: use of undefined value here causes illegal behavior
2915// :109:27: note: when computing vector element at index '1'2909// :103:27: note: when computing vector element at index '1'
2916// :109:27: error: use of undefined value here causes illegal behavior2910// :103:27: error: use of undefined value here causes illegal behavior
2917// :109:27: note: when computing vector element at index '1'2911// :103:27: note: when computing vector element at index '1'
2918// :109:27: error: use of undefined value here causes illegal behavior2912// :103:27: error: use of undefined value here causes illegal behavior
2919// :109:27: note: when computing vector element at index '0'2913// :103:27: note: when computing vector element at index '0'
2920// :109:27: error: use of undefined value here causes illegal behavior2914// :103:27: error: use of undefined value here causes illegal behavior
2921// :109:27: note: when computing vector element at index '0'2915// :103:27: note: when computing vector element at index '0'
2922// :109:27: error: use of undefined value here causes illegal behavior2916// :103:27: error: use of undefined value here causes illegal behavior
2923// :109:27: note: when computing vector element at index '0'2917// :103:27: note: when computing vector element at index '0'
2924// :109:27: error: use of undefined value here causes illegal behavior2918// :103:27: error: use of undefined value here causes illegal behavior
2925// :109:27: note: when computing vector element at index '0'2919// :103:27: note: when computing vector element at index '0'
2926// :113:27: error: use of undefined value here causes illegal behavior2920// :107:27: error: use of undefined value here causes illegal behavior
2927// :113:27: error: use of undefined value here causes illegal behavior2921// :107:27: error: use of undefined value here causes illegal behavior
2928// :113:27: error: use of undefined value here causes illegal behavior2922// :107:27: error: use of undefined value here causes illegal behavior
2929// :113:27: error: use of undefined value here causes illegal behavior2923// :107:27: error: use of undefined value here causes illegal behavior
2930// :113:27: error: use of undefined value here causes illegal behavior2924// :107:27: error: use of undefined value here causes illegal behavior
2931// :113:27: error: use of undefined value here causes illegal behavior2925// :107:27: error: use of undefined value here causes illegal behavior
2932// :113:27: error: use of undefined value here causes illegal behavior2926// :107:27: error: use of undefined value here causes illegal behavior
2933// :113:27: note: when computing vector element at index '1'2927// :107:27: note: when computing vector element at index '1'
2934// :113:27: error: use of undefined value here causes illegal behavior2928// :107:27: error: use of undefined value here causes illegal behavior
2935// :113:27: note: when computing vector element at index '1'2929// :107:27: note: when computing vector element at index '1'
2936// :113:27: error: use of undefined value here causes illegal behavior2930// :107:27: error: use of undefined value here causes illegal behavior
2937// :113:27: note: when computing vector element at index '1'2931// :107:27: note: when computing vector element at index '1'
2938// :113:27: error: use of undefined value here causes illegal behavior2932// :107:27: error: use of undefined value here causes illegal behavior
2939// :113:27: note: when computing vector element at index '1'2933// :107:27: note: when computing vector element at index '1'
2940// :113:27: error: use of undefined value here causes illegal behavior2934// :107:27: error: use of undefined value here causes illegal behavior
2941// :113:27: note: when computing vector element at index '0'2935// :107:27: note: when computing vector element at index '0'
2942// :113:27: error: use of undefined value here causes illegal behavior2936// :107:27: error: use of undefined value here causes illegal behavior
2943// :113:27: note: when computing vector element at index '0'2937// :107:27: note: when computing vector element at index '0'
2944// :113:27: error: use of undefined value here causes illegal behavior2938// :107:27: error: use of undefined value here causes illegal behavior
2945// :113:27: note: when computing vector element at index '0'2939// :107:27: note: when computing vector element at index '0'
2946// :113:27: error: use of undefined value here causes illegal behavior2940// :107:27: error: use of undefined value here causes illegal behavior
2947// :113:27: note: when computing vector element at index '0'2941// :107:27: note: when computing vector element at index '0'
2948// :113:27: error: use of undefined value here causes illegal behavior2942// :107:27: error: use of undefined value here causes illegal behavior
2949// :113:27: error: use of undefined value here causes illegal behavior2943// :107:27: error: use of undefined value here causes illegal behavior
2950// :113:27: error: use of undefined value here causes illegal behavior2944// :107:27: error: use of undefined value here causes illegal behavior
2951// :113:27: error: use of undefined value here causes illegal behavior2945// :107:27: error: use of undefined value here causes illegal behavior
2952// :113:27: error: use of undefined value here causes illegal behavior2946// :107:27: error: use of undefined value here causes illegal behavior
2953// :113:27: error: use of undefined value here causes illegal behavior2947// :107:27: error: use of undefined value here causes illegal behavior
2954// :113:27: error: use of undefined value here causes illegal behavior2948// :107:27: error: use of undefined value here causes illegal behavior
2955// :113:27: note: when computing vector element at index '1'2949// :107:27: note: when computing vector element at index '1'
2956// :113:27: error: use of undefined value here causes illegal behavior2950// :107:27: error: use of undefined value here causes illegal behavior
2957// :113:27: note: when computing vector element at index '1'2951// :107:27: note: when computing vector element at index '1'
2958// :113:27: error: use of undefined value here causes illegal behavior2952// :107:27: error: use of undefined value here causes illegal behavior
2959// :113:27: note: when computing vector element at index '1'2953// :107:27: note: when computing vector element at index '1'
2960// :113:27: error: use of undefined value here causes illegal behavior2954// :107:27: error: use of undefined value here causes illegal behavior
2961// :113:27: note: when computing vector element at index '1'2955// :107:27: note: when computing vector element at index '1'
2962// :113:27: error: use of undefined value here causes illegal behavior2956// :107:27: error: use of undefined value here causes illegal behavior
2963// :113:27: note: when computing vector element at index '0'2957// :107:27: note: when computing vector element at index '0'
2964// :113:27: error: use of undefined value here causes illegal behavior2958// :107:27: error: use of undefined value here causes illegal behavior
2965// :113:27: note: when computing vector element at index '0'2959// :107:27: note: when computing vector element at index '0'
2966// :113:27: error: use of undefined value here causes illegal behavior2960// :107:27: error: use of undefined value here causes illegal behavior
2967// :113:27: note: when computing vector element at index '0'2961// :107:27: note: when computing vector element at index '0'
2968// :113:27: error: use of undefined value here causes illegal behavior2962// :107:27: error: use of undefined value here causes illegal behavior
2969// :113:27: note: when computing vector element at index '0'2963// :107:27: note: when computing vector element at index '0'
2970// :113:27: error: use of undefined value here causes illegal behavior2964// :107:27: error: use of undefined value here causes illegal behavior
2971// :113:27: error: use of undefined value here causes illegal behavior2965// :107:27: error: use of undefined value here causes illegal behavior
2972// :113:27: error: use of undefined value here causes illegal behavior2966// :107:27: error: use of undefined value here causes illegal behavior
2973// :113:27: error: use of undefined value here causes illegal behavior2967// :107:27: error: use of undefined value here causes illegal behavior
2974// :113:27: error: use of undefined value here causes illegal behavior2968// :107:27: error: use of undefined value here causes illegal behavior
2975// :113:27: error: use of undefined value here causes illegal behavior2969// :107:27: error: use of undefined value here causes illegal behavior
2976// :113:27: error: use of undefined value here causes illegal behavior2970// :107:27: error: use of undefined value here causes illegal behavior
2977// :113:27: note: when computing vector element at index '1'2971// :107:27: note: when computing vector element at index '1'
2978// :113:27: error: use of undefined value here causes illegal behavior2972// :107:27: error: use of undefined value here causes illegal behavior
2979// :113:27: note: when computing vector element at index '1'2973// :107:27: note: when computing vector element at index '1'
2980// :113:27: error: use of undefined value here causes illegal behavior2974// :107:27: error: use of undefined value here causes illegal behavior
2981// :113:27: note: when computing vector element at index '1'2975// :107:27: note: when computing vector element at index '1'
2982// :113:27: error: use of undefined value here causes illegal behavior2976// :107:27: error: use of undefined value here causes illegal behavior
2983// :113:27: note: when computing vector element at index '1'2977// :107:27: note: when computing vector element at index '1'
2984// :113:27: error: use of undefined value here causes illegal behavior2978// :107:27: error: use of undefined value here causes illegal behavior
2985// :113:27: note: when computing vector element at index '0'2979// :107:27: note: when computing vector element at index '0'
2986// :113:27: error: use of undefined value here causes illegal behavior2980// :107:27: error: use of undefined value here causes illegal behavior
2987// :113:27: note: when computing vector element at index '0'2981// :107:27: note: when computing vector element at index '0'
2988// :113:27: error: use of undefined value here causes illegal behavior2982// :107:27: error: use of undefined value here causes illegal behavior
2989// :113:27: note: when computing vector element at index '0'2983// :107:27: note: when computing vector element at index '0'
2990// :113:27: error: use of undefined value here causes illegal behavior2984// :107:27: error: use of undefined value here causes illegal behavior
2991// :113:27: note: when computing vector element at index '0'2985// :107:27: note: when computing vector element at index '0'
2992// :113:27: error: use of undefined value here causes illegal behavior2986// :107:27: error: use of undefined value here causes illegal behavior
2993// :113:27: error: use of undefined value here causes illegal behavior2987// :107:27: error: use of undefined value here causes illegal behavior
2994// :113:27: error: use of undefined value here causes illegal behavior2988// :107:27: error: use of undefined value here causes illegal behavior
2995// :113:27: error: use of undefined value here causes illegal behavior2989// :107:27: error: use of undefined value here causes illegal behavior
2996// :113:27: error: use of undefined value here causes illegal behavior2990// :107:27: error: use of undefined value here causes illegal behavior
2997// :113:27: error: use of undefined value here causes illegal behavior2991// :107:27: error: use of undefined value here causes illegal behavior
2998// :113:27: error: use of undefined value here causes illegal behavior2992// :107:27: error: use of undefined value here causes illegal behavior
2999// :113:27: note: when computing vector element at index '1'2993// :107:27: note: when computing vector element at index '1'
3000// :113:27: error: use of undefined value here causes illegal behavior2994// :107:27: error: use of undefined value here causes illegal behavior
3001// :113:27: note: when computing vector element at index '1'2995// :107:27: note: when computing vector element at index '1'
3002// :113:27: error: use of undefined value here causes illegal behavior2996// :107:27: error: use of undefined value here causes illegal behavior
3003// :113:27: note: when computing vector element at index '1'2997// :107:27: note: when computing vector element at index '1'
3004// :113:27: error: use of undefined value here causes illegal behavior2998// :107:27: error: use of undefined value here causes illegal behavior
3005// :113:27: note: when computing vector element at index '1'2999// :107:27: note: when computing vector element at index '1'
3006// :113:27: error: use of undefined value here causes illegal behavior3000// :107:27: error: use of undefined value here causes illegal behavior
3007// :113:27: note: when computing vector element at index '0'3001// :107:27: note: when computing vector element at index '0'
3008// :113:27: error: use of undefined value here causes illegal behavior3002// :107:27: error: use of undefined value here causes illegal behavior
3009// :113:27: note: when computing vector element at index '0'3003// :107:27: note: when computing vector element at index '0'
3010// :113:27: error: use of undefined value here causes illegal behavior3004// :107:27: error: use of undefined value here causes illegal behavior
3011// :113:27: note: when computing vector element at index '0'3005// :107:27: note: when computing vector element at index '0'
3012// :113:27: error: use of undefined value here causes illegal behavior3006// :107:27: error: use of undefined value here causes illegal behavior
3013// :113:27: note: when computing vector element at index '0'3007// :107:27: note: when computing vector element at index '0'
3014// :113:27: error: use of undefined value here causes illegal behavior3008// :107:27: error: use of undefined value here causes illegal behavior
3015// :113:27: error: use of undefined value here causes illegal behavior3009// :107:27: error: use of undefined value here causes illegal behavior
3016// :113:27: error: use of undefined value here causes illegal behavior3010// :107:27: error: use of undefined value here causes illegal behavior
3017// :113:27: error: use of undefined value here causes illegal behavior3011// :107:27: error: use of undefined value here causes illegal behavior
3018// :113:27: error: use of undefined value here causes illegal behavior3012// :107:27: error: use of undefined value here causes illegal behavior
3019// :113:27: error: use of undefined value here causes illegal behavior3013// :107:27: error: use of undefined value here causes illegal behavior
3020// :113:27: error: use of undefined value here causes illegal behavior3014// :107:27: error: use of undefined value here causes illegal behavior
3021// :113:27: note: when computing vector element at index '1'3015// :107:27: note: when computing vector element at index '1'
3022// :113:27: error: use of undefined value here causes illegal behavior3016// :107:27: error: use of undefined value here causes illegal behavior
3023// :113:27: note: when computing vector element at index '1'3017// :107:27: note: when computing vector element at index '1'
3024// :113:27: error: use of undefined value here causes illegal behavior3018// :107:27: error: use of undefined value here causes illegal behavior
3025// :113:27: note: when computing vector element at index '1'3019// :107:27: note: when computing vector element at index '1'
3026// :113:27: error: use of undefined value here causes illegal behavior3020// :107:27: error: use of undefined value here causes illegal behavior
3027// :113:27: note: when computing vector element at index '1'3021// :107:27: note: when computing vector element at index '1'
3028// :113:27: error: use of undefined value here causes illegal behavior3022// :107:27: error: use of undefined value here causes illegal behavior
3029// :113:27: note: when computing vector element at index '0'3023// :107:27: note: when computing vector element at index '0'
3030// :113:27: error: use of undefined value here causes illegal behavior3024// :107:27: error: use of undefined value here causes illegal behavior
3031// :113:27: note: when computing vector element at index '0'3025// :107:27: note: when computing vector element at index '0'
3032// :113:27: error: use of undefined value here causes illegal behavior3026// :107:27: error: use of undefined value here causes illegal behavior
3033// :113:27: note: when computing vector element at index '0'3027// :107:27: note: when computing vector element at index '0'
3034// :113:27: error: use of undefined value here causes illegal behavior3028// :107:27: error: use of undefined value here causes illegal behavior
3035// :113:27: note: when computing vector element at index '0'3029// :107:27: note: when computing vector element at index '0'
3036// :113:27: error: use of undefined value here causes illegal behavior3030// :107:27: error: use of undefined value here causes illegal behavior
3037// :113:27: error: use of undefined value here causes illegal behavior3031// :107:27: error: use of undefined value here causes illegal behavior
3038// :113:27: error: use of undefined value here causes illegal behavior3032// :107:27: error: use of undefined value here causes illegal behavior
3039// :113:27: error: use of undefined value here causes illegal behavior3033// :107:27: error: use of undefined value here causes illegal behavior
3040// :113:27: error: use of undefined value here causes illegal behavior3034// :107:27: error: use of undefined value here causes illegal behavior
3041// :113:27: error: use of undefined value here causes illegal behavior3035// :107:27: error: use of undefined value here causes illegal behavior
3042// :113:27: error: use of undefined value here causes illegal behavior3036// :107:27: error: use of undefined value here causes illegal behavior
3043// :113:27: note: when computing vector element at index '1'3037// :107:27: note: when computing vector element at index '1'
3044// :113:27: error: use of undefined value here causes illegal behavior3038// :107:27: error: use of undefined value here causes illegal behavior
3045// :113:27: note: when computing vector element at index '1'3039// :107:27: note: when computing vector element at index '1'
3046// :113:27: error: use of undefined value here causes illegal behavior3040// :107:27: error: use of undefined value here causes illegal behavior
3047// :113:27: note: when computing vector element at index '1'3041// :107:27: note: when computing vector element at index '1'
3048// :113:27: error: use of undefined value here causes illegal behavior3042// :107:27: error: use of undefined value here causes illegal behavior
3049// :113:27: note: when computing vector element at index '1'3043// :107:27: note: when computing vector element at index '1'
3050// :113:27: error: use of undefined value here causes illegal behavior3044// :107:27: error: use of undefined value here causes illegal behavior
3051// :113:27: note: when computing vector element at index '0'3045// :107:27: note: when computing vector element at index '0'
3052// :113:27: error: use of undefined value here causes illegal behavior3046// :107:27: error: use of undefined value here causes illegal behavior
3053// :113:27: note: when computing vector element at index '0'3047// :107:27: note: when computing vector element at index '0'
3054// :113:27: error: use of undefined value here causes illegal behavior3048// :107:27: error: use of undefined value here causes illegal behavior
3055// :113:27: note: when computing vector element at index '0'3049// :107:27: note: when computing vector element at index '0'
3056// :113:27: error: use of undefined value here causes illegal behavior3050// :107:27: error: use of undefined value here causes illegal behavior
3057// :113:27: note: when computing vector element at index '0'3051// :107:27: note: when computing vector element at index '0'
3058// :113:27: error: use of undefined value here causes illegal behavior3052// :107:27: error: use of undefined value here causes illegal behavior
3059// :113:27: error: use of undefined value here causes illegal behavior3053// :107:27: error: use of undefined value here causes illegal behavior
3060// :113:27: error: use of undefined value here causes illegal behavior3054// :107:27: error: use of undefined value here causes illegal behavior
3061// :113:27: error: use of undefined value here causes illegal behavior3055// :107:27: error: use of undefined value here causes illegal behavior
3062// :113:27: error: use of undefined value here causes illegal behavior3056// :107:27: error: use of undefined value here causes illegal behavior
3063// :113:27: error: use of undefined value here causes illegal behavior3057// :107:27: error: use of undefined value here causes illegal behavior
3064// :113:27: error: use of undefined value here causes illegal behavior3058// :107:27: error: use of undefined value here causes illegal behavior
3065// :113:27: note: when computing vector element at index '1'3059// :107:27: note: when computing vector element at index '1'
3066// :113:27: error: use of undefined value here causes illegal behavior3060// :107:27: error: use of undefined value here causes illegal behavior
3067// :113:27: note: when computing vector element at index '1'3061// :107:27: note: when computing vector element at index '1'
3068// :113:27: error: use of undefined value here causes illegal behavior3062// :107:27: error: use of undefined value here causes illegal behavior
3069// :113:27: note: when computing vector element at index '1'3063// :107:27: note: when computing vector element at index '1'
3070// :113:27: error: use of undefined value here causes illegal behavior3064// :107:27: error: use of undefined value here causes illegal behavior
3071// :113:27: note: when computing vector element at index '1'3065// :107:27: note: when computing vector element at index '1'
3072// :113:27: error: use of undefined value here causes illegal behavior3066// :107:27: error: use of undefined value here causes illegal behavior
3073// :113:27: note: when computing vector element at index '0'3067// :107:27: note: when computing vector element at index '0'
3074// :113:27: error: use of undefined value here causes illegal behavior3068// :107:27: error: use of undefined value here causes illegal behavior
3075// :113:27: note: when computing vector element at index '0'3069// :107:27: note: when computing vector element at index '0'
3076// :113:27: error: use of undefined value here causes illegal behavior3070// :107:27: error: use of undefined value here causes illegal behavior
3077// :113:27: note: when computing vector element at index '0'3071// :107:27: note: when computing vector element at index '0'
3078// :113:27: error: use of undefined value here causes illegal behavior3072// :107:27: error: use of undefined value here causes illegal behavior
3079// :113:27: note: when computing vector element at index '0'3073// :107:27: note: when computing vector element at index '0'
3080// :113:27: error: use of undefined value here causes illegal behavior3074// :107:27: error: use of undefined value here causes illegal behavior
3081// :113:27: error: use of undefined value here causes illegal behavior3075// :107:27: error: use of undefined value here causes illegal behavior
3082// :113:27: error: use of undefined value here causes illegal behavior3076// :107:27: error: use of undefined value here causes illegal behavior
3083// :113:27: error: use of undefined value here causes illegal behavior3077// :107:27: error: use of undefined value here causes illegal behavior
3084// :113:27: error: use of undefined value here causes illegal behavior3078// :107:27: error: use of undefined value here causes illegal behavior
3085// :113:27: error: use of undefined value here causes illegal behavior3079// :107:27: error: use of undefined value here causes illegal behavior
3086// :113:27: error: use of undefined value here causes illegal behavior3080// :107:27: error: use of undefined value here causes illegal behavior
3087// :113:27: note: when computing vector element at index '1'3081// :107:27: note: when computing vector element at index '1'
3088// :113:27: error: use of undefined value here causes illegal behavior3082// :107:27: error: use of undefined value here causes illegal behavior
3089// :113:27: note: when computing vector element at index '1'3083// :107:27: note: when computing vector element at index '1'
3090// :113:27: error: use of undefined value here causes illegal behavior3084// :107:27: error: use of undefined value here causes illegal behavior
3091// :113:27: note: when computing vector element at index '1'3085// :107:27: note: when computing vector element at index '1'
3092// :113:27: error: use of undefined value here causes illegal behavior3086// :107:27: error: use of undefined value here causes illegal behavior
3093// :113:27: note: when computing vector element at index '1'3087// :107:27: note: when computing vector element at index '1'
3094// :113:27: error: use of undefined value here causes illegal behavior3088// :107:27: error: use of undefined value here causes illegal behavior
3095// :113:27: note: when computing vector element at index '0'3089// :107:27: note: when computing vector element at index '0'
3096// :113:27: error: use of undefined value here causes illegal behavior3090// :107:27: error: use of undefined value here causes illegal behavior
3097// :113:27: note: when computing vector element at index '0'3091// :107:27: note: when computing vector element at index '0'
3098// :113:27: error: use of undefined value here causes illegal behavior3092// :107:27: error: use of undefined value here causes illegal behavior
3099// :113:27: note: when computing vector element at index '0'3093// :107:27: note: when computing vector element at index '0'
3100// :113:27: error: use of undefined value here causes illegal behavior3094// :107:27: error: use of undefined value here causes illegal behavior
3101// :113:27: note: when computing vector element at index '0'3095// :107:27: note: when computing vector element at index '0'
3102// :113:27: error: use of undefined value here causes illegal behavior3096// :107:27: error: use of undefined value here causes illegal behavior
3103// :113:27: error: use of undefined value here causes illegal behavior3097// :107:27: error: use of undefined value here causes illegal behavior
3104// :113:27: error: use of undefined value here causes illegal behavior3098// :107:27: error: use of undefined value here causes illegal behavior
3105// :113:27: error: use of undefined value here causes illegal behavior3099// :107:27: error: use of undefined value here causes illegal behavior
3106// :113:27: error: use of undefined value here causes illegal behavior3100// :107:27: error: use of undefined value here causes illegal behavior
3107// :113:27: error: use of undefined value here causes illegal behavior3101// :107:27: error: use of undefined value here causes illegal behavior
3108// :113:27: error: use of undefined value here causes illegal behavior3102// :107:27: error: use of undefined value here causes illegal behavior
3109// :113:27: note: when computing vector element at index '1'3103// :107:27: note: when computing vector element at index '1'
3110// :113:27: error: use of undefined value here causes illegal behavior3104// :107:27: error: use of undefined value here causes illegal behavior
3111// :113:27: note: when computing vector element at index '1'3105// :107:27: note: when computing vector element at index '1'
3112// :113:27: error: use of undefined value here causes illegal behavior3106// :107:27: error: use of undefined value here causes illegal behavior
3113// :113:27: note: when computing vector element at index '1'3107// :107:27: note: when computing vector element at index '1'
3114// :113:27: error: use of undefined value here causes illegal behavior3108// :107:27: error: use of undefined value here causes illegal behavior
3115// :113:27: note: when computing vector element at index '1'3109// :107:27: note: when computing vector element at index '1'
3116// :113:27: error: use of undefined value here causes illegal behavior3110// :107:27: error: use of undefined value here causes illegal behavior
3117// :113:27: note: when computing vector element at index '0'3111// :107:27: note: when computing vector element at index '0'
3118// :113:27: error: use of undefined value here causes illegal behavior3112// :107:27: error: use of undefined value here causes illegal behavior
3119// :113:27: note: when computing vector element at index '0'3113// :107:27: note: when computing vector element at index '0'
3120// :113:27: error: use of undefined value here causes illegal behavior3114// :107:27: error: use of undefined value here causes illegal behavior
3121// :113:27: note: when computing vector element at index '0'3115// :107:27: note: when computing vector element at index '0'
3122// :113:27: error: use of undefined value here causes illegal behavior3116// :107:27: error: use of undefined value here causes illegal behavior
3123// :113:27: note: when computing vector element at index '0'3117// :107:27: note: when computing vector element at index '0'
3124// :113:27: error: use of undefined value here causes illegal behavior3118// :107:27: error: use of undefined value here causes illegal behavior
3125// :113:27: error: use of undefined value here causes illegal behavior3119// :107:27: error: use of undefined value here causes illegal behavior
3126// :113:27: error: use of undefined value here causes illegal behavior3120// :107:27: error: use of undefined value here causes illegal behavior
3127// :113:27: error: use of undefined value here causes illegal behavior3121// :107:27: error: use of undefined value here causes illegal behavior
3128// :113:27: error: use of undefined value here causes illegal behavior3122// :107:27: error: use of undefined value here causes illegal behavior
3129// :113:27: error: use of undefined value here causes illegal behavior3123// :107:27: error: use of undefined value here causes illegal behavior
3130// :113:27: error: use of undefined value here causes illegal behavior3124// :107:27: error: use of undefined value here causes illegal behavior
3131// :113:27: note: when computing vector element at index '1'3125// :107:27: note: when computing vector element at index '1'
3132// :113:27: error: use of undefined value here causes illegal behavior3126// :107:27: error: use of undefined value here causes illegal behavior
3133// :113:27: note: when computing vector element at index '1'3127// :107:27: note: when computing vector element at index '1'
3134// :113:27: error: use of undefined value here causes illegal behavior3128// :107:27: error: use of undefined value here causes illegal behavior
3135// :113:27: note: when computing vector element at index '1'3129// :107:27: note: when computing vector element at index '1'
3136// :113:27: error: use of undefined value here causes illegal behavior3130// :107:27: error: use of undefined value here causes illegal behavior
3137// :113:27: note: when computing vector element at index '1'3131// :107:27: note: when computing vector element at index '1'
3138// :113:27: error: use of undefined value here causes illegal behavior3132// :107:27: error: use of undefined value here causes illegal behavior
3139// :113:27: note: when computing vector element at index '0'3133// :107:27: note: when computing vector element at index '0'
3140// :113:27: error: use of undefined value here causes illegal behavior3134// :107:27: error: use of undefined value here causes illegal behavior
3141// :113:27: note: when computing vector element at index '0'3135// :107:27: note: when computing vector element at index '0'
3142// :113:27: error: use of undefined value here causes illegal behavior3136// :107:27: error: use of undefined value here causes illegal behavior
3143// :113:27: note: when computing vector element at index '0'3137// :107:27: note: when computing vector element at index '0'
3144// :113:27: error: use of undefined value here causes illegal behavior3138// :107:27: error: use of undefined value here causes illegal behavior
3145// :113:27: note: when computing vector element at index '0'3139// :107:27: note: when computing vector element at index '0'
3146// :113:27: error: use of undefined value here causes illegal behavior3140// :107:27: error: use of undefined value here causes illegal behavior
3147// :113:27: error: use of undefined value here causes illegal behavior3141// :107:27: error: use of undefined value here causes illegal behavior
3148// :113:27: error: use of undefined value here causes illegal behavior3142// :107:27: error: use of undefined value here causes illegal behavior
3149// :113:27: error: use of undefined value here causes illegal behavior3143// :107:27: error: use of undefined value here causes illegal behavior
3150// :113:27: error: use of undefined value here causes illegal behavior3144// :107:27: error: use of undefined value here causes illegal behavior
3151// :113:27: error: use of undefined value here causes illegal behavior3145// :107:27: error: use of undefined value here causes illegal behavior
3152// :113:27: error: use of undefined value here causes illegal behavior3146// :107:27: error: use of undefined value here causes illegal behavior
3153// :113:27: note: when computing vector element at index '1'3147// :107:27: note: when computing vector element at index '1'
3154// :113:27: error: use of undefined value here causes illegal behavior3148// :107:27: error: use of undefined value here causes illegal behavior
3155// :113:27: note: when computing vector element at index '1'3149// :107:27: note: when computing vector element at index '1'
3156// :113:27: error: use of undefined value here causes illegal behavior3150// :107:27: error: use of undefined value here causes illegal behavior
3157// :113:27: note: when computing vector element at index '1'3151// :107:27: note: when computing vector element at index '1'
3158// :113:27: error: use of undefined value here causes illegal behavior3152// :107:27: error: use of undefined value here causes illegal behavior
3159// :113:27: note: when computing vector element at index '1'3153// :107:27: note: when computing vector element at index '1'
3160// :113:27: error: use of undefined value here causes illegal behavior3154// :107:27: error: use of undefined value here causes illegal behavior
3161// :113:27: note: when computing vector element at index '0'3155// :107:27: note: when computing vector element at index '0'
3162// :113:27: error: use of undefined value here causes illegal behavior3156// :107:27: error: use of undefined value here causes illegal behavior
3163// :113:27: note: when computing vector element at index '0'3157// :107:27: note: when computing vector element at index '0'
3164// :113:27: error: use of undefined value here causes illegal behavior3158// :107:27: error: use of undefined value here causes illegal behavior
3165// :113:27: note: when computing vector element at index '0'3159// :107:27: note: when computing vector element at index '0'
3166// :113:27: error: use of undefined value here causes illegal behavior3160// :107:27: error: use of undefined value here causes illegal behavior
3167// :113:27: note: when computing vector element at index '0'3161// :107:27: note: when computing vector element at index '0'
3168// :117:22: error: use of undefined value here causes illegal behavior3162// :111:22: error: use of undefined value here causes illegal behavior
3169// :117:22: error: use of undefined value here causes illegal behavior3163// :111:22: error: use of undefined value here causes illegal behavior
3170// :117:22: error: use of undefined value here causes illegal behavior3164// :111:22: error: use of undefined value here causes illegal behavior
3171// :117:22: error: use of undefined value here causes illegal behavior3165// :111:22: error: use of undefined value here causes illegal behavior
3172// :117:22: error: use of undefined value here causes illegal behavior3166// :111:22: error: use of undefined value here causes illegal behavior
3173// :117:22: error: use of undefined value here causes illegal behavior3167// :111:22: error: use of undefined value here causes illegal behavior
3174// :117:22: error: use of undefined value here causes illegal behavior3168// :111:22: error: use of undefined value here causes illegal behavior
3175// :117:22: note: when computing vector element at index '1'3169// :111:22: note: when computing vector element at index '1'
3176// :117:22: error: use of undefined value here causes illegal behavior3170// :111:22: error: use of undefined value here causes illegal behavior
3177// :117:22: note: when computing vector element at index '1'3171// :111:22: note: when computing vector element at index '1'
3178// :117:22: error: use of undefined value here causes illegal behavior3172// :111:22: error: use of undefined value here causes illegal behavior
3179// :117:22: note: when computing vector element at index '1'3173// :111:22: note: when computing vector element at index '1'
3180// :117:22: error: use of undefined value here causes illegal behavior3174// :111:22: error: use of undefined value here causes illegal behavior
3181// :117:22: note: when computing vector element at index '1'3175// :111:22: note: when computing vector element at index '1'
3182// :117:22: error: use of undefined value here causes illegal behavior3176// :111:22: error: use of undefined value here causes illegal behavior
3183// :117:22: note: when computing vector element at index '0'3177// :111:22: note: when computing vector element at index '0'
3184// :117:22: error: use of undefined value here causes illegal behavior3178// :111:22: error: use of undefined value here causes illegal behavior
3185// :117:22: note: when computing vector element at index '0'3179// :111:22: note: when computing vector element at index '0'
3186// :117:22: error: use of undefined value here causes illegal behavior3180// :111:22: error: use of undefined value here causes illegal behavior
3187// :117:22: note: when computing vector element at index '0'3181// :111:22: note: when computing vector element at index '0'
3188// :117:22: error: use of undefined value here causes illegal behavior3182// :111:22: error: use of undefined value here causes illegal behavior
3189// :117:22: note: when computing vector element at index '0'3183// :111:22: note: when computing vector element at index '0'
3190// :117:22: error: use of undefined value here causes illegal behavior3184// :111:22: error: use of undefined value here causes illegal behavior
3191// :117:22: error: use of undefined value here causes illegal behavior3185// :111:22: error: use of undefined value here causes illegal behavior
3192// :117:22: error: use of undefined value here causes illegal behavior3186// :111:22: error: use of undefined value here causes illegal behavior
3193// :117:22: error: use of undefined value here causes illegal behavior3187// :111:22: error: use of undefined value here causes illegal behavior
3194// :117:22: error: use of undefined value here causes illegal behavior3188// :111:22: error: use of undefined value here causes illegal behavior
3195// :117:22: error: use of undefined value here causes illegal behavior3189// :111:22: error: use of undefined value here causes illegal behavior
3196// :117:22: error: use of undefined value here causes illegal behavior3190// :111:22: error: use of undefined value here causes illegal behavior
3197// :117:22: note: when computing vector element at index '1'3191// :111:22: note: when computing vector element at index '1'
3198// :117:22: error: use of undefined value here causes illegal behavior3192// :111:22: error: use of undefined value here causes illegal behavior
3199// :117:22: note: when computing vector element at index '1'3193// :111:22: note: when computing vector element at index '1'
3200// :117:22: error: use of undefined value here causes illegal behavior3194// :111:22: error: use of undefined value here causes illegal behavior
3201// :117:22: note: when computing vector element at index '1'3195// :111:22: note: when computing vector element at index '1'
3202// :117:22: error: use of undefined value here causes illegal behavior3196// :111:22: error: use of undefined value here causes illegal behavior
3203// :117:22: note: when computing vector element at index '1'3197// :111:22: note: when computing vector element at index '1'
3204// :117:22: error: use of undefined value here causes illegal behavior3198// :111:22: error: use of undefined value here causes illegal behavior
3205// :117:22: note: when computing vector element at index '0'3199// :111:22: note: when computing vector element at index '0'
3206// :117:22: error: use of undefined value here causes illegal behavior3200// :111:22: error: use of undefined value here causes illegal behavior
3207// :117:22: note: when computing vector element at index '0'3201// :111:22: note: when computing vector element at index '0'
3208// :117:22: error: use of undefined value here causes illegal behavior3202// :111:22: error: use of undefined value here causes illegal behavior
3209// :117:22: note: when computing vector element at index '0'3203// :111:22: note: when computing vector element at index '0'
3210// :117:22: error: use of undefined value here causes illegal behavior3204// :111:22: error: use of undefined value here causes illegal behavior
3211// :117:22: note: when computing vector element at index '0'3205// :111:22: note: when computing vector element at index '0'
3212// :117:22: error: use of undefined value here causes illegal behavior3206// :111:22: error: use of undefined value here causes illegal behavior
3213// :117:22: error: use of undefined value here causes illegal behavior3207// :111:22: error: use of undefined value here causes illegal behavior
3214// :117:22: error: use of undefined value here causes illegal behavior3208// :111:22: error: use of undefined value here causes illegal behavior
3215// :117:22: error: use of undefined value here causes illegal behavior3209// :111:22: error: use of undefined value here causes illegal behavior
3216// :117:22: error: use of undefined value here causes illegal behavior3210// :111:22: error: use of undefined value here causes illegal behavior
3217// :117:22: error: use of undefined value here causes illegal behavior3211// :111:22: error: use of undefined value here causes illegal behavior
3218// :117:22: error: use of undefined value here causes illegal behavior3212// :111:22: error: use of undefined value here causes illegal behavior
3219// :117:22: note: when computing vector element at index '1'3213// :111:22: note: when computing vector element at index '1'
3220// :117:22: error: use of undefined value here causes illegal behavior3214// :111:22: error: use of undefined value here causes illegal behavior
3221// :117:22: note: when computing vector element at index '1'3215// :111:22: note: when computing vector element at index '1'
3222// :117:22: error: use of undefined value here causes illegal behavior3216// :111:22: error: use of undefined value here causes illegal behavior
3223// :117:22: note: when computing vector element at index '1'3217// :111:22: note: when computing vector element at index '1'
3224// :117:22: error: use of undefined value here causes illegal behavior3218// :111:22: error: use of undefined value here causes illegal behavior
3225// :117:22: note: when computing vector element at index '1'3219// :111:22: note: when computing vector element at index '1'
3226// :117:22: error: use of undefined value here causes illegal behavior3220// :111:22: error: use of undefined value here causes illegal behavior
3227// :117:22: note: when computing vector element at index '0'3221// :111:22: note: when computing vector element at index '0'
3228// :117:22: error: use of undefined value here causes illegal behavior3222// :111:22: error: use of undefined value here causes illegal behavior
3229// :117:22: note: when computing vector element at index '0'3223// :111:22: note: when computing vector element at index '0'
3230// :117:22: error: use of undefined value here causes illegal behavior3224// :111:22: error: use of undefined value here causes illegal behavior
3231// :117:22: note: when computing vector element at index '0'3225// :111:22: note: when computing vector element at index '0'
3232// :117:22: error: use of undefined value here causes illegal behavior3226// :111:22: error: use of undefined value here causes illegal behavior
3233// :117:22: note: when computing vector element at index '0'3227// :111:22: note: when computing vector element at index '0'
3234// :117:22: error: use of undefined value here causes illegal behavior3228// :111:22: error: use of undefined value here causes illegal behavior
3235// :117:22: error: use of undefined value here causes illegal behavior3229// :111:22: error: use of undefined value here causes illegal behavior
3236// :117:22: error: use of undefined value here causes illegal behavior3230// :111:22: error: use of undefined value here causes illegal behavior
3237// :117:22: error: use of undefined value here causes illegal behavior3231// :111:22: error: use of undefined value here causes illegal behavior
3238// :117:22: error: use of undefined value here causes illegal behavior3232// :111:22: error: use of undefined value here causes illegal behavior
3239// :117:22: error: use of undefined value here causes illegal behavior3233// :111:22: error: use of undefined value here causes illegal behavior
3240// :117:22: error: use of undefined value here causes illegal behavior3234// :111:22: error: use of undefined value here causes illegal behavior
3241// :117:22: note: when computing vector element at index '1'3235// :111:22: note: when computing vector element at index '1'
3242// :117:22: error: use of undefined value here causes illegal behavior3236// :111:22: error: use of undefined value here causes illegal behavior
3243// :117:22: note: when computing vector element at index '1'3237// :111:22: note: when computing vector element at index '1'
3244// :117:22: error: use of undefined value here causes illegal behavior3238// :111:22: error: use of undefined value here causes illegal behavior
3245// :117:22: note: when computing vector element at index '1'3239// :111:22: note: when computing vector element at index '1'
3246// :117:22: error: use of undefined value here causes illegal behavior3240// :111:22: error: use of undefined value here causes illegal behavior
3247// :117:22: note: when computing vector element at index '1'3241// :111:22: note: when computing vector element at index '1'
3248// :117:22: error: use of undefined value here causes illegal behavior3242// :111:22: error: use of undefined value here causes illegal behavior
3249// :117:22: note: when computing vector element at index '0'3243// :111:22: note: when computing vector element at index '0'
3250// :117:22: error: use of undefined value here causes illegal behavior3244// :111:22: error: use of undefined value here causes illegal behavior
3251// :117:22: note: when computing vector element at index '0'3245// :111:22: note: when computing vector element at index '0'
3252// :117:22: error: use of undefined value here causes illegal behavior3246// :111:22: error: use of undefined value here causes illegal behavior
3253// :117:22: note: when computing vector element at index '0'3247// :111:22: note: when computing vector element at index '0'
3254// :117:22: error: use of undefined value here causes illegal behavior3248// :111:22: error: use of undefined value here causes illegal behavior
3255// :117:22: note: when computing vector element at index '0'3249// :111:22: note: when computing vector element at index '0'
3256// :117:22: error: use of undefined value here causes illegal behavior3250// :111:22: error: use of undefined value here causes illegal behavior
3257// :117:22: error: use of undefined value here causes illegal behavior3251// :111:22: error: use of undefined value here causes illegal behavior
3258// :117:22: error: use of undefined value here causes illegal behavior3252// :111:22: error: use of undefined value here causes illegal behavior
3259// :117:22: error: use of undefined value here causes illegal behavior3253// :111:22: error: use of undefined value here causes illegal behavior
3260// :117:22: error: use of undefined value here causes illegal behavior3254// :111:22: error: use of undefined value here causes illegal behavior
3261// :117:22: error: use of undefined value here causes illegal behavior3255// :111:22: error: use of undefined value here causes illegal behavior
3262// :117:22: error: use of undefined value here causes illegal behavior3256// :111:22: error: use of undefined value here causes illegal behavior
3263// :117:22: note: when computing vector element at index '1'3257// :111:22: note: when computing vector element at index '1'
3264// :117:22: error: use of undefined value here causes illegal behavior3258// :111:22: error: use of undefined value here causes illegal behavior
3265// :117:22: note: when computing vector element at index '1'3259// :111:22: note: when computing vector element at index '1'
3266// :117:22: error: use of undefined value here causes illegal behavior3260// :111:22: error: use of undefined value here causes illegal behavior
3267// :117:22: note: when computing vector element at index '1'3261// :111:22: note: when computing vector element at index '1'
3268// :117:22: error: use of undefined value here causes illegal behavior3262// :111:22: error: use of undefined value here causes illegal behavior
3269// :117:22: note: when computing vector element at index '1'3263// :111:22: note: when computing vector element at index '1'
3270// :117:22: error: use of undefined value here causes illegal behavior3264// :111:22: error: use of undefined value here causes illegal behavior
3271// :117:22: note: when computing vector element at index '0'3265// :111:22: note: when computing vector element at index '0'
3272// :117:22: error: use of undefined value here causes illegal behavior3266// :111:22: error: use of undefined value here causes illegal behavior
3273// :117:22: note: when computing vector element at index '0'3267// :111:22: note: when computing vector element at index '0'
3274// :117:22: error: use of undefined value here causes illegal behavior3268// :111:22: error: use of undefined value here causes illegal behavior
3275// :117:22: note: when computing vector element at index '0'3269// :111:22: note: when computing vector element at index '0'
3276// :117:22: error: use of undefined value here causes illegal behavior3270// :111:22: error: use of undefined value here causes illegal behavior
3277// :117:22: note: when computing vector element at index '0'3271// :111:22: note: when computing vector element at index '0'
3278// :117:22: error: use of undefined value here causes illegal behavior3272// :111:22: error: use of undefined value here causes illegal behavior
3279// :117:22: error: use of undefined value here causes illegal behavior3273// :111:22: error: use of undefined value here causes illegal behavior
3280// :117:22: error: use of undefined value here causes illegal behavior3274// :111:22: error: use of undefined value here causes illegal behavior
3281// :117:22: error: use of undefined value here causes illegal behavior3275// :111:22: error: use of undefined value here causes illegal behavior
3282// :117:22: error: use of undefined value here causes illegal behavior3276// :111:22: error: use of undefined value here causes illegal behavior
3283// :117:22: error: use of undefined value here causes illegal behavior3277// :111:22: error: use of undefined value here causes illegal behavior
3284// :117:22: error: use of undefined value here causes illegal behavior3278// :111:22: error: use of undefined value here causes illegal behavior
3285// :117:22: note: when computing vector element at index '1'3279// :111:22: note: when computing vector element at index '1'
3286// :117:22: error: use of undefined value here causes illegal behavior3280// :111:22: error: use of undefined value here causes illegal behavior
3287// :117:22: note: when computing vector element at index '1'3281// :111:22: note: when computing vector element at index '1'
3288// :117:22: error: use of undefined value here causes illegal behavior3282// :111:22: error: use of undefined value here causes illegal behavior
3289// :117:22: note: when computing vector element at index '1'3283// :111:22: note: when computing vector element at index '1'
3290// :117:22: error: use of undefined value here causes illegal behavior3284// :111:22: error: use of undefined value here causes illegal behavior
3291// :117:22: note: when computing vector element at index '1'3285// :111:22: note: when computing vector element at index '1'
3292// :117:22: error: use of undefined value here causes illegal behavior3286// :111:22: error: use of undefined value here causes illegal behavior
3293// :117:22: note: when computing vector element at index '0'3287// :111:22: note: when computing vector element at index '0'
3294// :117:22: error: use of undefined value here causes illegal behavior3288// :111:22: error: use of undefined value here causes illegal behavior
3295// :117:22: note: when computing vector element at index '0'3289// :111:22: note: when computing vector element at index '0'
3296// :117:22: error: use of undefined value here causes illegal behavior3290// :111:22: error: use of undefined value here causes illegal behavior
3297// :117:22: note: when computing vector element at index '0'3291// :111:22: note: when computing vector element at index '0'
3298// :117:22: error: use of undefined value here causes illegal behavior3292// :111:22: error: use of undefined value here causes illegal behavior
3299// :117:22: note: when computing vector element at index '0'3293// :111:22: note: when computing vector element at index '0'
3300// :117:22: error: use of undefined value here causes illegal behavior3294// :111:22: error: use of undefined value here causes illegal behavior
3301// :117:22: error: use of undefined value here causes illegal behavior3295// :111:22: error: use of undefined value here causes illegal behavior
3302// :117:22: error: use of undefined value here causes illegal behavior3296// :111:22: error: use of undefined value here causes illegal behavior
3303// :117:22: error: use of undefined value here causes illegal behavior3297// :111:22: error: use of undefined value here causes illegal behavior
3304// :117:22: error: use of undefined value here causes illegal behavior3298// :111:22: error: use of undefined value here causes illegal behavior
3305// :117:22: error: use of undefined value here causes illegal behavior3299// :111:22: error: use of undefined value here causes illegal behavior
3306// :117:22: error: use of undefined value here causes illegal behavior3300// :111:22: error: use of undefined value here causes illegal behavior
3307// :117:22: note: when computing vector element at index '1'3301// :111:22: note: when computing vector element at index '1'
3308// :117:22: error: use of undefined value here causes illegal behavior3302// :111:22: error: use of undefined value here causes illegal behavior
3309// :117:22: note: when computing vector element at index '1'3303// :111:22: note: when computing vector element at index '1'
3310// :117:22: error: use of undefined value here causes illegal behavior3304// :111:22: error: use of undefined value here causes illegal behavior
3311// :117:22: note: when computing vector element at index '1'3305// :111:22: note: when computing vector element at index '1'
3312// :117:22: error: use of undefined value here causes illegal behavior3306// :111:22: error: use of undefined value here causes illegal behavior
3313// :117:22: note: when computing vector element at index '1'3307// :111:22: note: when computing vector element at index '1'
3314// :117:22: error: use of undefined value here causes illegal behavior3308// :111:22: error: use of undefined value here causes illegal behavior
3315// :117:22: note: when computing vector element at index '0'3309// :111:22: note: when computing vector element at index '0'
3316// :117:22: error: use of undefined value here causes illegal behavior3310// :111:22: error: use of undefined value here causes illegal behavior
3317// :117:22: note: when computing vector element at index '0'3311// :111:22: note: when computing vector element at index '0'
3318// :117:22: error: use of undefined value here causes illegal behavior3312// :111:22: error: use of undefined value here causes illegal behavior
3319// :117:22: note: when computing vector element at index '0'3313// :111:22: note: when computing vector element at index '0'
3320// :117:22: error: use of undefined value here causes illegal behavior3314// :111:22: error: use of undefined value here causes illegal behavior
3321// :117:22: note: when computing vector element at index '0'3315// :111:22: note: when computing vector element at index '0'
3322// :117:22: error: use of undefined value here causes illegal behavior3316// :111:22: error: use of undefined value here causes illegal behavior
3323// :117:22: error: use of undefined value here causes illegal behavior3317// :111:22: error: use of undefined value here causes illegal behavior
3324// :117:22: error: use of undefined value here causes illegal behavior3318// :111:22: error: use of undefined value here causes illegal behavior
3325// :117:22: error: use of undefined value here causes illegal behavior3319// :111:22: error: use of undefined value here causes illegal behavior
3326// :117:22: error: use of undefined value here causes illegal behavior3320// :111:22: error: use of undefined value here causes illegal behavior
3327// :117:22: error: use of undefined value here causes illegal behavior3321// :111:22: error: use of undefined value here causes illegal behavior
3328// :117:22: error: use of undefined value here causes illegal behavior3322// :111:22: error: use of undefined value here causes illegal behavior
3329// :117:22: note: when computing vector element at index '1'3323// :111:22: note: when computing vector element at index '1'
3330// :117:22: error: use of undefined value here causes illegal behavior3324// :111:22: error: use of undefined value here causes illegal behavior
3331// :117:22: note: when computing vector element at index '1'3325// :111:22: note: when computing vector element at index '1'
3332// :117:22: error: use of undefined value here causes illegal behavior3326// :111:22: error: use of undefined value here causes illegal behavior
3333// :117:22: note: when computing vector element at index '1'3327// :111:22: note: when computing vector element at index '1'
3334// :117:22: error: use of undefined value here causes illegal behavior3328// :111:22: error: use of undefined value here causes illegal behavior
3335// :117:22: note: when computing vector element at index '1'3329// :111:22: note: when computing vector element at index '1'
3336// :117:22: error: use of undefined value here causes illegal behavior3330// :111:22: error: use of undefined value here causes illegal behavior
3337// :117:22: note: when computing vector element at index '0'3331// :111:22: note: when computing vector element at index '0'
3338// :117:22: error: use of undefined value here causes illegal behavior3332// :111:22: error: use of undefined value here causes illegal behavior
3339// :117:22: note: when computing vector element at index '0'3333// :111:22: note: when computing vector element at index '0'
3340// :117:22: error: use of undefined value here causes illegal behavior3334// :111:22: error: use of undefined value here causes illegal behavior
3341// :117:22: note: when computing vector element at index '0'3335// :111:22: note: when computing vector element at index '0'
3342// :117:22: error: use of undefined value here causes illegal behavior3336// :111:22: error: use of undefined value here causes illegal behavior
3343// :117:22: note: when computing vector element at index '0'3337// :111:22: note: when computing vector element at index '0'
3344// :117:22: error: use of undefined value here causes illegal behavior3338// :111:22: error: use of undefined value here causes illegal behavior
3345// :117:22: error: use of undefined value here causes illegal behavior3339// :111:22: error: use of undefined value here causes illegal behavior
3346// :117:22: error: use of undefined value here causes illegal behavior3340// :111:22: error: use of undefined value here causes illegal behavior
3347// :117:22: error: use of undefined value here causes illegal behavior3341// :111:22: error: use of undefined value here causes illegal behavior
3348// :117:22: error: use of undefined value here causes illegal behavior3342// :111:22: error: use of undefined value here causes illegal behavior
3349// :117:22: error: use of undefined value here causes illegal behavior3343// :111:22: error: use of undefined value here causes illegal behavior
3350// :117:22: error: use of undefined value here causes illegal behavior3344// :111:22: error: use of undefined value here causes illegal behavior
3351// :117:22: note: when computing vector element at index '1'3345// :111:22: note: when computing vector element at index '1'
3352// :117:22: error: use of undefined value here causes illegal behavior3346// :111:22: error: use of undefined value here causes illegal behavior
3353// :117:22: note: when computing vector element at index '1'3347// :111:22: note: when computing vector element at index '1'
3354// :117:22: error: use of undefined value here causes illegal behavior3348// :111:22: error: use of undefined value here causes illegal behavior
3355// :117:22: note: when computing vector element at index '1'3349// :111:22: note: when computing vector element at index '1'
3356// :117:22: error: use of undefined value here causes illegal behavior3350// :111:22: error: use of undefined value here causes illegal behavior
3357// :117:22: note: when computing vector element at index '1'3351// :111:22: note: when computing vector element at index '1'
3358// :117:22: error: use of undefined value here causes illegal behavior3352// :111:22: error: use of undefined value here causes illegal behavior
3359// :117:22: note: when computing vector element at index '0'3353// :111:22: note: when computing vector element at index '0'
3360// :117:22: error: use of undefined value here causes illegal behavior3354// :111:22: error: use of undefined value here causes illegal behavior
3361// :117:22: note: when computing vector element at index '0'3355// :111:22: note: when computing vector element at index '0'
3362// :117:22: error: use of undefined value here causes illegal behavior3356// :111:22: error: use of undefined value here causes illegal behavior
3363// :117:22: note: when computing vector element at index '0'3357// :111:22: note: when computing vector element at index '0'
3364// :117:22: error: use of undefined value here causes illegal behavior3358// :111:22: error: use of undefined value here causes illegal behavior
3365// :117:22: note: when computing vector element at index '0'3359// :111:22: note: when computing vector element at index '0'
3366// :117:22: error: use of undefined value here causes illegal behavior3360// :111:22: error: use of undefined value here causes illegal behavior
3367// :117:22: error: use of undefined value here causes illegal behavior3361// :111:22: error: use of undefined value here causes illegal behavior
3368// :117:22: error: use of undefined value here causes illegal behavior3362// :111:22: error: use of undefined value here causes illegal behavior
3369// :117:22: error: use of undefined value here causes illegal behavior3363// :111:22: error: use of undefined value here causes illegal behavior
3370// :117:22: error: use of undefined value here causes illegal behavior3364// :111:22: error: use of undefined value here causes illegal behavior
3371// :117:22: error: use of undefined value here causes illegal behavior3365// :111:22: error: use of undefined value here causes illegal behavior
3372// :117:22: error: use of undefined value here causes illegal behavior3366// :111:22: error: use of undefined value here causes illegal behavior
3373// :117:22: note: when computing vector element at index '1'3367// :111:22: note: when computing vector element at index '1'
3374// :117:22: error: use of undefined value here causes illegal behavior3368// :111:22: error: use of undefined value here causes illegal behavior
3375// :117:22: note: when computing vector element at index '1'3369// :111:22: note: when computing vector element at index '1'
3376// :117:22: error: use of undefined value here causes illegal behavior3370// :111:22: error: use of undefined value here causes illegal behavior
3377// :117:22: note: when computing vector element at index '1'3371// :111:22: note: when computing vector element at index '1'
3378// :117:22: error: use of undefined value here causes illegal behavior3372// :111:22: error: use of undefined value here causes illegal behavior
3379// :117:22: note: when computing vector element at index '1'3373// :111:22: note: when computing vector element at index '1'
3380// :117:22: error: use of undefined value here causes illegal behavior3374// :111:22: error: use of undefined value here causes illegal behavior
3381// :117:22: note: when computing vector element at index '0'3375// :111:22: note: when computing vector element at index '0'
3382// :117:22: error: use of undefined value here causes illegal behavior3376// :111:22: error: use of undefined value here causes illegal behavior
3383// :117:22: note: when computing vector element at index '0'3377// :111:22: note: when computing vector element at index '0'
3384// :117:22: error: use of undefined value here causes illegal behavior3378// :111:22: error: use of undefined value here causes illegal behavior
3385// :117:22: note: when computing vector element at index '0'3379// :111:22: note: when computing vector element at index '0'
3386// :117:22: error: use of undefined value here causes illegal behavior3380// :111:22: error: use of undefined value here causes illegal behavior
3387// :117:22: note: when computing vector element at index '0'3381// :111:22: note: when computing vector element at index '0'
3388// :117:22: error: use of undefined value here causes illegal behavior3382// :111:22: error: use of undefined value here causes illegal behavior
3389// :117:22: error: use of undefined value here causes illegal behavior3383// :111:22: error: use of undefined value here causes illegal behavior
3390// :117:22: error: use of undefined value here causes illegal behavior3384// :111:22: error: use of undefined value here causes illegal behavior
3391// :117:22: error: use of undefined value here causes illegal behavior3385// :111:22: error: use of undefined value here causes illegal behavior
3392// :117:22: error: use of undefined value here causes illegal behavior3386// :111:22: error: use of undefined value here causes illegal behavior
3393// :117:22: error: use of undefined value here causes illegal behavior3387// :111:22: error: use of undefined value here causes illegal behavior
3394// :117:22: error: use of undefined value here causes illegal behavior3388// :111:22: error: use of undefined value here causes illegal behavior
3395// :117:22: note: when computing vector element at index '1'3389// :111:22: note: when computing vector element at index '1'
3396// :117:22: error: use of undefined value here causes illegal behavior3390// :111:22: error: use of undefined value here causes illegal behavior
3397// :117:22: note: when computing vector element at index '1'3391// :111:22: note: when computing vector element at index '1'
3398// :117:22: error: use of undefined value here causes illegal behavior3392// :111:22: error: use of undefined value here causes illegal behavior
3399// :117:22: note: when computing vector element at index '1'3393// :111:22: note: when computing vector element at index '1'
3400// :117:22: error: use of undefined value here causes illegal behavior3394// :111:22: error: use of undefined value here causes illegal behavior
3401// :117:22: note: when computing vector element at index '1'3395// :111:22: note: when computing vector element at index '1'
3402// :117:22: error: use of undefined value here causes illegal behavior3396// :111:22: error: use of undefined value here causes illegal behavior
3403// :117:22: note: when computing vector element at index '0'3397// :111:22: note: when computing vector element at index '0'
3404// :117:22: error: use of undefined value here causes illegal behavior3398// :111:22: error: use of undefined value here causes illegal behavior
3405// :117:22: note: when computing vector element at index '0'3399// :111:22: note: when computing vector element at index '0'
3406// :117:22: error: use of undefined value here causes illegal behavior3400// :111:22: error: use of undefined value here causes illegal behavior
3407// :117:22: note: when computing vector element at index '0'3401// :111:22: note: when computing vector element at index '0'
3408// :117:22: error: use of undefined value here causes illegal behavior3402// :111:22: error: use of undefined value here causes illegal behavior
3409// :117:22: note: when computing vector element at index '0'3403// :111:22: note: when computing vector element at index '0'
3410// :121:22: error: use of undefined value here causes illegal behavior3404// :115:22: error: use of undefined value here causes illegal behavior
3411// :121:22: error: use of undefined value here causes illegal behavior3405// :115:22: error: use of undefined value here causes illegal behavior
3412// :121:22: error: use of undefined value here causes illegal behavior3406// :115:22: error: use of undefined value here causes illegal behavior
3413// :121:22: error: use of undefined value here causes illegal behavior3407// :115:22: error: use of undefined value here causes illegal behavior
3414// :121:22: error: use of undefined value here causes illegal behavior3408// :115:22: error: use of undefined value here causes illegal behavior
3415// :121:22: error: use of undefined value here causes illegal behavior3409// :115:22: error: use of undefined value here causes illegal behavior
3416// :121:22: error: use of undefined value here causes illegal behavior3410// :115:22: error: use of undefined value here causes illegal behavior
3417// :121:22: note: when computing vector element at index '1'3411// :115:22: note: when computing vector element at index '1'
3418// :121:22: error: use of undefined value here causes illegal behavior3412// :115:22: error: use of undefined value here causes illegal behavior
3419// :121:22: note: when computing vector element at index '1'3413// :115:22: note: when computing vector element at index '1'
3420// :121:22: error: use of undefined value here causes illegal behavior3414// :115:22: error: use of undefined value here causes illegal behavior
3421// :121:22: note: when computing vector element at index '1'3415// :115:22: note: when computing vector element at index '1'
3422// :121:22: error: use of undefined value here causes illegal behavior3416// :115:22: error: use of undefined value here causes illegal behavior
3423// :121:22: note: when computing vector element at index '1'3417// :115:22: note: when computing vector element at index '1'
3424// :121:22: error: use of undefined value here causes illegal behavior3418// :115:22: error: use of undefined value here causes illegal behavior
3425// :121:22: note: when computing vector element at index '0'3419// :115:22: note: when computing vector element at index '0'
3426// :121:22: error: use of undefined value here causes illegal behavior3420// :115:22: error: use of undefined value here causes illegal behavior
3427// :121:22: note: when computing vector element at index '0'3421// :115:22: note: when computing vector element at index '0'
3428// :121:22: error: use of undefined value here causes illegal behavior3422// :115:22: error: use of undefined value here causes illegal behavior
3429// :121:22: note: when computing vector element at index '0'3423// :115:22: note: when computing vector element at index '0'
3430// :121:22: error: use of undefined value here causes illegal behavior3424// :115:22: error: use of undefined value here causes illegal behavior
3431// :121:22: note: when computing vector element at index '0'3425// :115:22: note: when computing vector element at index '0'
3432// :121:22: error: use of undefined value here causes illegal behavior3426// :115:22: error: use of undefined value here causes illegal behavior
3433// :121:22: error: use of undefined value here causes illegal behavior3427// :115:22: error: use of undefined value here causes illegal behavior
3434// :121:22: error: use of undefined value here causes illegal behavior3428// :115:22: error: use of undefined value here causes illegal behavior
3435// :121:22: error: use of undefined value here causes illegal behavior3429// :115:22: error: use of undefined value here causes illegal behavior
3436// :121:22: error: use of undefined value here causes illegal behavior3430// :115:22: error: use of undefined value here causes illegal behavior
3437// :121:22: error: use of undefined value here causes illegal behavior3431// :115:22: error: use of undefined value here causes illegal behavior
3438// :121:22: error: use of undefined value here causes illegal behavior3432// :115:22: error: use of undefined value here causes illegal behavior
3439// :121:22: note: when computing vector element at index '1'3433// :115:22: note: when computing vector element at index '1'
3440// :121:22: error: use of undefined value here causes illegal behavior3434// :115:22: error: use of undefined value here causes illegal behavior
3441// :121:22: note: when computing vector element at index '1'3435// :115:22: note: when computing vector element at index '1'
3442// :121:22: error: use of undefined value here causes illegal behavior3436// :115:22: error: use of undefined value here causes illegal behavior
3443// :121:22: note: when computing vector element at index '1'3437// :115:22: note: when computing vector element at index '1'
3444// :121:22: error: use of undefined value here causes illegal behavior3438// :115:22: error: use of undefined value here causes illegal behavior
3445// :121:22: note: when computing vector element at index '1'3439// :115:22: note: when computing vector element at index '1'
3446// :121:22: error: use of undefined value here causes illegal behavior3440// :115:22: error: use of undefined value here causes illegal behavior
3447// :121:22: note: when computing vector element at index '0'3441// :115:22: note: when computing vector element at index '0'
3448// :121:22: error: use of undefined value here causes illegal behavior3442// :115:22: error: use of undefined value here causes illegal behavior
3449// :121:22: note: when computing vector element at index '0'3443// :115:22: note: when computing vector element at index '0'
3450// :121:22: error: use of undefined value here causes illegal behavior3444// :115:22: error: use of undefined value here causes illegal behavior
3451// :121:22: note: when computing vector element at index '0'3445// :115:22: note: when computing vector element at index '0'
3452// :121:22: error: use of undefined value here causes illegal behavior3446// :115:22: error: use of undefined value here causes illegal behavior
3453// :121:22: note: when computing vector element at index '0'3447// :115:22: note: when computing vector element at index '0'
3454// :121:22: error: use of undefined value here causes illegal behavior3448// :115:22: error: use of undefined value here causes illegal behavior
3455// :121:22: error: use of undefined value here causes illegal behavior3449// :115:22: error: use of undefined value here causes illegal behavior
3456// :121:22: error: use of undefined value here causes illegal behavior3450// :115:22: error: use of undefined value here causes illegal behavior
3457// :121:22: error: use of undefined value here causes illegal behavior3451// :115:22: error: use of undefined value here causes illegal behavior
3458// :121:22: error: use of undefined value here causes illegal behavior3452// :115:22: error: use of undefined value here causes illegal behavior
3459// :121:22: error: use of undefined value here causes illegal behavior3453// :115:22: error: use of undefined value here causes illegal behavior
3460// :121:22: error: use of undefined value here causes illegal behavior3454// :115:22: error: use of undefined value here causes illegal behavior
3461// :121:22: note: when computing vector element at index '1'3455// :115:22: note: when computing vector element at index '1'
3462// :121:22: error: use of undefined value here causes illegal behavior3456// :115:22: error: use of undefined value here causes illegal behavior
3463// :121:22: note: when computing vector element at index '1'3457// :115:22: note: when computing vector element at index '1'
3464// :121:22: error: use of undefined value here causes illegal behavior3458// :115:22: error: use of undefined value here causes illegal behavior
3465// :121:22: note: when computing vector element at index '1'3459// :115:22: note: when computing vector element at index '1'
3466// :121:22: error: use of undefined value here causes illegal behavior3460// :115:22: error: use of undefined value here causes illegal behavior
3467// :121:22: note: when computing vector element at index '1'3461// :115:22: note: when computing vector element at index '1'
3468// :121:22: error: use of undefined value here causes illegal behavior3462// :115:22: error: use of undefined value here causes illegal behavior
3469// :121:22: note: when computing vector element at index '0'3463// :115:22: note: when computing vector element at index '0'
3470// :121:22: error: use of undefined value here causes illegal behavior3464// :115:22: error: use of undefined value here causes illegal behavior
3471// :121:22: note: when computing vector element at index '0'3465// :115:22: note: when computing vector element at index '0'
3472// :121:22: error: use of undefined value here causes illegal behavior3466// :115:22: error: use of undefined value here causes illegal behavior
3473// :121:22: note: when computing vector element at index '0'3467// :115:22: note: when computing vector element at index '0'
3474// :121:22: error: use of undefined value here causes illegal behavior3468// :115:22: error: use of undefined value here causes illegal behavior
3475// :121:22: note: when computing vector element at index '0'3469// :115:22: note: when computing vector element at index '0'
3476// :121:22: error: use of undefined value here causes illegal behavior3470// :115:22: error: use of undefined value here causes illegal behavior
3477// :121:22: error: use of undefined value here causes illegal behavior3471// :115:22: error: use of undefined value here causes illegal behavior
3478// :121:22: error: use of undefined value here causes illegal behavior3472// :115:22: error: use of undefined value here causes illegal behavior
3479// :121:22: error: use of undefined value here causes illegal behavior3473// :115:22: error: use of undefined value here causes illegal behavior
3480// :121:22: error: use of undefined value here causes illegal behavior3474// :115:22: error: use of undefined value here causes illegal behavior
3481// :121:22: error: use of undefined value here causes illegal behavior3475// :115:22: error: use of undefined value here causes illegal behavior
3482// :121:22: error: use of undefined value here causes illegal behavior3476// :115:22: error: use of undefined value here causes illegal behavior
3483// :121:22: note: when computing vector element at index '1'3477// :115:22: note: when computing vector element at index '1'
3484// :121:22: error: use of undefined value here causes illegal behavior3478// :115:22: error: use of undefined value here causes illegal behavior
3485// :121:22: note: when computing vector element at index '1'3479// :115:22: note: when computing vector element at index '1'
3486// :121:22: error: use of undefined value here causes illegal behavior3480// :115:22: error: use of undefined value here causes illegal behavior
3487// :121:22: note: when computing vector element at index '1'3481// :115:22: note: when computing vector element at index '1'
3488// :121:22: error: use of undefined value here causes illegal behavior3482// :115:22: error: use of undefined value here causes illegal behavior
3489// :121:22: note: when computing vector element at index '1'3483// :115:22: note: when computing vector element at index '1'
3490// :121:22: error: use of undefined value here causes illegal behavior3484// :115:22: error: use of undefined value here causes illegal behavior
3491// :121:22: note: when computing vector element at index '0'3485// :115:22: note: when computing vector element at index '0'
3492// :121:22: error: use of undefined value here causes illegal behavior3486// :115:22: error: use of undefined value here causes illegal behavior
3493// :121:22: note: when computing vector element at index '0'3487// :115:22: note: when computing vector element at index '0'
3494// :121:22: error: use of undefined value here causes illegal behavior3488// :115:22: error: use of undefined value here causes illegal behavior
3495// :121:22: note: when computing vector element at index '0'3489// :115:22: note: when computing vector element at index '0'
3496// :121:22: error: use of undefined value here causes illegal behavior3490// :115:22: error: use of undefined value here causes illegal behavior
3497// :121:22: note: when computing vector element at index '0'3491// :115:22: note: when computing vector element at index '0'
3498// :121:22: error: use of undefined value here causes illegal behavior3492// :115:22: error: use of undefined value here causes illegal behavior
3499// :121:22: error: use of undefined value here causes illegal behavior3493// :115:22: error: use of undefined value here causes illegal behavior
3500// :121:22: error: use of undefined value here causes illegal behavior3494// :115:22: error: use of undefined value here causes illegal behavior
3501// :121:22: error: use of undefined value here causes illegal behavior3495// :115:22: error: use of undefined value here causes illegal behavior
3502// :121:22: error: use of undefined value here causes illegal behavior3496// :115:22: error: use of undefined value here causes illegal behavior
3503// :121:22: error: use of undefined value here causes illegal behavior3497// :115:22: error: use of undefined value here causes illegal behavior
3504// :121:22: error: use of undefined value here causes illegal behavior3498// :115:22: error: use of undefined value here causes illegal behavior
3505// :121:22: note: when computing vector element at index '1'3499// :115:22: note: when computing vector element at index '1'
3506// :121:22: error: use of undefined value here causes illegal behavior3500// :115:22: error: use of undefined value here causes illegal behavior
3507// :121:22: note: when computing vector element at index '1'3501// :115:22: note: when computing vector element at index '1'
3508// :121:22: error: use of undefined value here causes illegal behavior3502// :115:22: error: use of undefined value here causes illegal behavior
3509// :121:22: note: when computing vector element at index '1'3503// :115:22: note: when computing vector element at index '1'
3510// :121:22: error: use of undefined value here causes illegal behavior3504// :115:22: error: use of undefined value here causes illegal behavior
3511// :121:22: note: when computing vector element at index '1'3505// :115:22: note: when computing vector element at index '1'
3512// :121:22: error: use of undefined value here causes illegal behavior3506// :115:22: error: use of undefined value here causes illegal behavior
3513// :121:22: note: when computing vector element at index '0'3507// :115:22: note: when computing vector element at index '0'
3514// :121:22: error: use of undefined value here causes illegal behavior3508// :115:22: error: use of undefined value here causes illegal behavior
3515// :121:22: note: when computing vector element at index '0'3509// :115:22: note: when computing vector element at index '0'
3516// :121:22: error: use of undefined value here causes illegal behavior3510// :115:22: error: use of undefined value here causes illegal behavior
3517// :121:22: note: when computing vector element at index '0'3511// :115:22: note: when computing vector element at index '0'
3518// :121:22: error: use of undefined value here causes illegal behavior3512// :115:22: error: use of undefined value here causes illegal behavior
3519// :121:22: note: when computing vector element at index '0'3513// :115:22: note: when computing vector element at index '0'
3520// :121:22: error: use of undefined value here causes illegal behavior3514// :115:22: error: use of undefined value here causes illegal behavior
3521// :121:22: error: use of undefined value here causes illegal behavior3515// :115:22: error: use of undefined value here causes illegal behavior
3522// :121:22: error: use of undefined value here causes illegal behavior3516// :115:22: error: use of undefined value here causes illegal behavior
3523// :121:22: error: use of undefined value here causes illegal behavior3517// :115:22: error: use of undefined value here causes illegal behavior
3524// :121:22: error: use of undefined value here causes illegal behavior3518// :115:22: error: use of undefined value here causes illegal behavior
3525// :121:22: error: use of undefined value here causes illegal behavior3519// :115:22: error: use of undefined value here causes illegal behavior
3526// :121:22: error: use of undefined value here causes illegal behavior3520// :115:22: error: use of undefined value here causes illegal behavior
3527// :121:22: note: when computing vector element at index '1'3521// :115:22: note: when computing vector element at index '1'
3528// :121:22: error: use of undefined value here causes illegal behavior3522// :115:22: error: use of undefined value here causes illegal behavior
3529// :121:22: note: when computing vector element at index '1'3523// :115:22: note: when computing vector element at index '1'
3530// :121:22: error: use of undefined value here causes illegal behavior3524// :115:22: error: use of undefined value here causes illegal behavior
3531// :121:22: note: when computing vector element at index '1'3525// :115:22: note: when computing vector element at index '1'
3532// :121:22: error: use of undefined value here causes illegal behavior3526// :115:22: error: use of undefined value here causes illegal behavior
3533// :121:22: note: when computing vector element at index '1'3527// :115:22: note: when computing vector element at index '1'
3534// :121:22: error: use of undefined value here causes illegal behavior3528// :115:22: error: use of undefined value here causes illegal behavior
3535// :121:22: note: when computing vector element at index '0'3529// :115:22: note: when computing vector element at index '0'
3536// :121:22: error: use of undefined value here causes illegal behavior3530// :115:22: error: use of undefined value here causes illegal behavior
3537// :121:22: note: when computing vector element at index '0'3531// :115:22: note: when computing vector element at index '0'
3538// :121:22: error: use of undefined value here causes illegal behavior3532// :115:22: error: use of undefined value here causes illegal behavior
3539// :121:22: note: when computing vector element at index '0'3533// :115:22: note: when computing vector element at index '0'
3540// :121:22: error: use of undefined value here causes illegal behavior3534// :115:22: error: use of undefined value here causes illegal behavior
3541// :121:22: note: when computing vector element at index '0'3535// :115:22: note: when computing vector element at index '0'
3542// :121:22: error: use of undefined value here causes illegal behavior3536// :115:22: error: use of undefined value here causes illegal behavior
3543// :121:22: error: use of undefined value here causes illegal behavior3537// :115:22: error: use of undefined value here causes illegal behavior
3544// :121:22: error: use of undefined value here causes illegal behavior3538// :115:22: error: use of undefined value here causes illegal behavior
3545// :121:22: error: use of undefined value here causes illegal behavior3539// :115:22: error: use of undefined value here causes illegal behavior
3546// :121:22: error: use of undefined value here causes illegal behavior3540// :115:22: error: use of undefined value here causes illegal behavior
3547// :121:22: error: use of undefined value here causes illegal behavior3541// :115:22: error: use of undefined value here causes illegal behavior
3548// :121:22: error: use of undefined value here causes illegal behavior3542// :115:22: error: use of undefined value here causes illegal behavior
3549// :121:22: note: when computing vector element at index '1'3543// :115:22: note: when computing vector element at index '1'
3550// :121:22: error: use of undefined value here causes illegal behavior3544// :115:22: error: use of undefined value here causes illegal behavior
3551// :121:22: note: when computing vector element at index '1'3545// :115:22: note: when computing vector element at index '1'
3552// :121:22: error: use of undefined value here causes illegal behavior3546// :115:22: error: use of undefined value here causes illegal behavior
3553// :121:22: note: when computing vector element at index '1'3547// :115:22: note: when computing vector element at index '1'
3554// :121:22: error: use of undefined value here causes illegal behavior3548// :115:22: error: use of undefined value here causes illegal behavior
3555// :121:22: note: when computing vector element at index '1'3549// :115:22: note: when computing vector element at index '1'
3556// :121:22: error: use of undefined value here causes illegal behavior3550// :115:22: error: use of undefined value here causes illegal behavior
3557// :121:22: note: when computing vector element at index '0'3551// :115:22: note: when computing vector element at index '0'
3558// :121:22: error: use of undefined value here causes illegal behavior3552// :115:22: error: use of undefined value here causes illegal behavior
3559// :121:22: note: when computing vector element at index '0'3553// :115:22: note: when computing vector element at index '0'
3560// :121:22: error: use of undefined value here causes illegal behavior3554// :115:22: error: use of undefined value here causes illegal behavior
3561// :121:22: note: when computing vector element at index '0'3555// :115:22: note: when computing vector element at index '0'
3562// :121:22: error: use of undefined value here causes illegal behavior3556// :115:22: error: use of undefined value here causes illegal behavior
3563// :121:22: note: when computing vector element at index '0'3557// :115:22: note: when computing vector element at index '0'
3564// :121:22: error: use of undefined value here causes illegal behavior3558// :115:22: error: use of undefined value here causes illegal behavior
3565// :121:22: error: use of undefined value here causes illegal behavior3559// :115:22: error: use of undefined value here causes illegal behavior
3566// :121:22: error: use of undefined value here causes illegal behavior3560// :115:22: error: use of undefined value here causes illegal behavior
3567// :121:22: error: use of undefined value here causes illegal behavior3561// :115:22: error: use of undefined value here causes illegal behavior
3568// :121:22: error: use of undefined value here causes illegal behavior3562// :115:22: error: use of undefined value here causes illegal behavior
3569// :121:22: error: use of undefined value here causes illegal behavior3563// :115:22: error: use of undefined value here causes illegal behavior
3570// :121:22: error: use of undefined value here causes illegal behavior3564// :115:22: error: use of undefined value here causes illegal behavior
3571// :121:22: note: when computing vector element at index '1'3565// :115:22: note: when computing vector element at index '1'
3572// :121:22: error: use of undefined value here causes illegal behavior3566// :115:22: error: use of undefined value here causes illegal behavior
3573// :121:22: note: when computing vector element at index '1'3567// :115:22: note: when computing vector element at index '1'
3574// :121:22: error: use of undefined value here causes illegal behavior3568// :115:22: error: use of undefined value here causes illegal behavior
3575// :121:22: note: when computing vector element at index '1'3569// :115:22: note: when computing vector element at index '1'
3576// :121:22: error: use of undefined value here causes illegal behavior3570// :115:22: error: use of undefined value here causes illegal behavior
3577// :121:22: note: when computing vector element at index '1'3571// :115:22: note: when computing vector element at index '1'
3578// :121:22: error: use of undefined value here causes illegal behavior3572// :115:22: error: use of undefined value here causes illegal behavior
3579// :121:22: note: when computing vector element at index '0'3573// :115:22: note: when computing vector element at index '0'
3580// :121:22: error: use of undefined value here causes illegal behavior3574// :115:22: error: use of undefined value here causes illegal behavior
3581// :121:22: note: when computing vector element at index '0'3575// :115:22: note: when computing vector element at index '0'
3582// :121:22: error: use of undefined value here causes illegal behavior3576// :115:22: error: use of undefined value here causes illegal behavior
3583// :121:22: note: when computing vector element at index '0'3577// :115:22: note: when computing vector element at index '0'
3584// :121:22: error: use of undefined value here causes illegal behavior3578// :115:22: error: use of undefined value here causes illegal behavior
3585// :121:22: note: when computing vector element at index '0'3579// :115:22: note: when computing vector element at index '0'
3586// :121:22: error: use of undefined value here causes illegal behavior3580// :115:22: error: use of undefined value here causes illegal behavior
3587// :121:22: error: use of undefined value here causes illegal behavior3581// :115:22: error: use of undefined value here causes illegal behavior
3588// :121:22: error: use of undefined value here causes illegal behavior3582// :115:22: error: use of undefined value here causes illegal behavior
3589// :121:22: error: use of undefined value here causes illegal behavior3583// :115:22: error: use of undefined value here causes illegal behavior
3590// :121:22: error: use of undefined value here causes illegal behavior3584// :115:22: error: use of undefined value here causes illegal behavior
3591// :121:22: error: use of undefined value here causes illegal behavior3585// :115:22: error: use of undefined value here causes illegal behavior
3592// :121:22: error: use of undefined value here causes illegal behavior3586// :115:22: error: use of undefined value here causes illegal behavior
3593// :121:22: note: when computing vector element at index '1'3587// :115:22: note: when computing vector element at index '1'
3594// :121:22: error: use of undefined value here causes illegal behavior3588// :115:22: error: use of undefined value here causes illegal behavior
3595// :121:22: note: when computing vector element at index '1'3589// :115:22: note: when computing vector element at index '1'
3596// :121:22: error: use of undefined value here causes illegal behavior3590// :115:22: error: use of undefined value here causes illegal behavior
3597// :121:22: note: when computing vector element at index '1'3591// :115:22: note: when computing vector element at index '1'
3598// :121:22: error: use of undefined value here causes illegal behavior3592// :115:22: error: use of undefined value here causes illegal behavior
3599// :121:22: note: when computing vector element at index '1'3593// :115:22: note: when computing vector element at index '1'
3600// :121:22: error: use of undefined value here causes illegal behavior3594// :115:22: error: use of undefined value here causes illegal behavior
3601// :121:22: note: when computing vector element at index '0'3595// :115:22: note: when computing vector element at index '0'
3602// :121:22: error: use of undefined value here causes illegal behavior3596// :115:22: error: use of undefined value here causes illegal behavior
3603// :121:22: note: when computing vector element at index '0'3597// :115:22: note: when computing vector element at index '0'
3604// :121:22: error: use of undefined value here causes illegal behavior3598// :115:22: error: use of undefined value here causes illegal behavior
3605// :121:22: note: when computing vector element at index '0'3599// :115:22: note: when computing vector element at index '0'
3606// :121:22: error: use of undefined value here causes illegal behavior3600// :115:22: error: use of undefined value here causes illegal behavior
3607// :121:22: note: when computing vector element at index '0'3601// :115:22: note: when computing vector element at index '0'
3608// :121:22: error: use of undefined value here causes illegal behavior3602// :115:22: error: use of undefined value here causes illegal behavior
3609// :121:22: error: use of undefined value here causes illegal behavior3603// :115:22: error: use of undefined value here causes illegal behavior
3610// :121:22: error: use of undefined value here causes illegal behavior3604// :115:22: error: use of undefined value here causes illegal behavior
3611// :121:22: error: use of undefined value here causes illegal behavior3605// :115:22: error: use of undefined value here causes illegal behavior
3612// :121:22: error: use of undefined value here causes illegal behavior3606// :115:22: error: use of undefined value here causes illegal behavior
3613// :121:22: error: use of undefined value here causes illegal behavior3607// :115:22: error: use of undefined value here causes illegal behavior
3614// :121:22: error: use of undefined value here causes illegal behavior3608// :115:22: error: use of undefined value here causes illegal behavior
3615// :121:22: note: when computing vector element at index '1'3609// :115:22: note: when computing vector element at index '1'
3616// :121:22: error: use of undefined value here causes illegal behavior3610// :115:22: error: use of undefined value here causes illegal behavior
3617// :121:22: note: when computing vector element at index '1'3611// :115:22: note: when computing vector element at index '1'
3618// :121:22: error: use of undefined value here causes illegal behavior3612// :115:22: error: use of undefined value here causes illegal behavior
3619// :121:22: note: when computing vector element at index '1'3613// :115:22: note: when computing vector element at index '1'
3620// :121:22: error: use of undefined value here causes illegal behavior3614// :115:22: error: use of undefined value here causes illegal behavior
3621// :121:22: note: when computing vector element at index '1'3615// :115:22: note: when computing vector element at index '1'
3622// :121:22: error: use of undefined value here causes illegal behavior3616// :115:22: error: use of undefined value here causes illegal behavior
3623// :121:22: note: when computing vector element at index '0'3617// :115:22: note: when computing vector element at index '0'
3624// :121:22: error: use of undefined value here causes illegal behavior3618// :115:22: error: use of undefined value here causes illegal behavior
3625// :121:22: note: when computing vector element at index '0'3619// :115:22: note: when computing vector element at index '0'
3626// :121:22: error: use of undefined value here causes illegal behavior3620// :115:22: error: use of undefined value here causes illegal behavior
3627// :121:22: note: when computing vector element at index '0'3621// :115:22: note: when computing vector element at index '0'
3628// :121:22: error: use of undefined value here causes illegal behavior3622// :115:22: error: use of undefined value here causes illegal behavior
3629// :121:22: note: when computing vector element at index '0'3623// :115:22: note: when computing vector element at index '0'
3630// :121:22: error: use of undefined value here causes illegal behavior3624// :115:22: error: use of undefined value here causes illegal behavior
3631// :121:22: error: use of undefined value here causes illegal behavior3625// :115:22: error: use of undefined value here causes illegal behavior
3632// :121:22: error: use of undefined value here causes illegal behavior3626// :115:22: error: use of undefined value here causes illegal behavior
3633// :121:22: error: use of undefined value here causes illegal behavior3627// :115:22: error: use of undefined value here causes illegal behavior
3634// :121:22: error: use of undefined value here causes illegal behavior3628// :115:22: error: use of undefined value here causes illegal behavior
3635// :121:22: error: use of undefined value here causes illegal behavior3629// :115:22: error: use of undefined value here causes illegal behavior
3636// :121:22: error: use of undefined value here causes illegal behavior3630// :115:22: error: use of undefined value here causes illegal behavior
3637// :121:22: note: when computing vector element at index '1'3631// :115:22: note: when computing vector element at index '1'
3638// :121:22: error: use of undefined value here causes illegal behavior3632// :115:22: error: use of undefined value here causes illegal behavior
3639// :121:22: note: when computing vector element at index '1'3633// :115:22: note: when computing vector element at index '1'
3640// :121:22: error: use of undefined value here causes illegal behavior3634// :115:22: error: use of undefined value here causes illegal behavior
3641// :121:22: note: when computing vector element at index '1'3635// :115:22: note: when computing vector element at index '1'
3642// :121:22: error: use of undefined value here causes illegal behavior3636// :115:22: error: use of undefined value here causes illegal behavior
3643// :121:22: note: when computing vector element at index '1'3637// :115:22: note: when computing vector element at index '1'
3644// :121:22: error: use of undefined value here causes illegal behavior3638// :115:22: error: use of undefined value here causes illegal behavior
3645// :121:22: note: when computing vector element at index '0'3639// :115:22: note: when computing vector element at index '0'
3646// :121:22: error: use of undefined value here causes illegal behavior3640// :115:22: error: use of undefined value here causes illegal behavior
3647// :121:22: note: when computing vector element at index '0'3641// :115:22: note: when computing vector element at index '0'
3648// :121:22: error: use of undefined value here causes illegal behavior3642// :115:22: error: use of undefined value here causes illegal behavior
3649// :121:22: note: when computing vector element at index '0'3643// :115:22: note: when computing vector element at index '0'
3650// :121:22: error: use of undefined value here causes illegal behavior3644// :115:22: error: use of undefined value here causes illegal behavior
3651// :121:22: note: when computing vector element at index '0'3645// :115:22: note: when computing vector element at index '0'
3652// :127:17: error: use of undefined value here causes illegal behavior3646// :121:17: error: use of undefined value here causes illegal behavior
3653// :127:17: error: use of undefined value here causes illegal behavior3647// :121:17: error: use of undefined value here causes illegal behavior
3654// :127:17: note: when computing vector element at index '0'3648// :121:17: note: when computing vector element at index '0'
3655// :127:17: error: use of undefined value here causes illegal behavior3649// :121:17: error: use of undefined value here causes illegal behavior
3656// :127:17: note: when computing vector element at index '0'3650// :121:17: note: when computing vector element at index '0'
3657// :127:17: error: use of undefined value here causes illegal behavior3651// :121:17: error: use of undefined value here causes illegal behavior
3658// :127:17: note: when computing vector element at index '0'3652// :121:17: note: when computing vector element at index '0'
3659// :127:17: error: use of undefined value here causes illegal behavior3653// :121:17: error: use of undefined value here causes illegal behavior
3660// :127:17: note: when computing vector element at index '1'3654// :121:17: note: when computing vector element at index '1'
3661// :127:17: error: use of undefined value here causes illegal behavior3655// :121:17: error: use of undefined value here causes illegal behavior
3662// :127:17: note: when computing vector element at index '0'3656// :121:17: note: when computing vector element at index '0'
3663// :127:17: error: use of undefined value here causes illegal behavior3657// :121:17: error: use of undefined value here causes illegal behavior
3664// :127:17: note: when computing vector element at index '0'3658// :121:17: note: when computing vector element at index '0'
3665// :127:17: error: use of undefined value here causes illegal behavior3659// :121:17: error: use of undefined value here causes illegal behavior
3666// :127:17: note: when computing vector element at index '0'3660// :121:17: note: when computing vector element at index '0'
3667// :127:17: error: use of undefined value here causes illegal behavior3661// :121:17: error: use of undefined value here causes illegal behavior
3668// :127:17: error: use of undefined value here causes illegal behavior3662// :121:17: error: use of undefined value here causes illegal behavior
3669// :127:17: note: when computing vector element at index '0'3663// :121:17: note: when computing vector element at index '0'
3670// :127:17: error: use of undefined value here causes illegal behavior3664// :121:17: error: use of undefined value here causes illegal behavior
3671// :127:17: note: when computing vector element at index '0'3665// :121:17: note: when computing vector element at index '0'
3672// :127:17: error: use of undefined value here causes illegal behavior3666// :121:17: error: use of undefined value here causes illegal behavior
3673// :127:17: note: when computing vector element at index '0'3667// :121:17: note: when computing vector element at index '0'
3674// :127:17: error: use of undefined value here causes illegal behavior3668// :121:17: error: use of undefined value here causes illegal behavior
3675// :127:17: note: when computing vector element at index '1'3669// :121:17: note: when computing vector element at index '1'
3676// :127:17: error: use of undefined value here causes illegal behavior3670// :121:17: error: use of undefined value here causes illegal behavior
3677// :127:17: note: when computing vector element at index '0'3671// :121:17: note: when computing vector element at index '0'
3678// :127:17: error: use of undefined value here causes illegal behavior3672// :121:17: error: use of undefined value here causes illegal behavior
3679// :127:17: note: when computing vector element at index '0'3673// :121:17: note: when computing vector element at index '0'
3680// :127:17: error: use of undefined value here causes illegal behavior3674// :121:17: error: use of undefined value here causes illegal behavior
3681// :127:17: note: when computing vector element at index '0'3675// :121:17: note: when computing vector element at index '0'
3682// :127:17: error: use of undefined value here causes illegal behavior3676// :121:17: error: use of undefined value here causes illegal behavior
3683// :127:17: error: use of undefined value here causes illegal behavior3677// :121:17: error: use of undefined value here causes illegal behavior
3684// :127:17: note: when computing vector element at index '0'3678// :121:17: note: when computing vector element at index '0'
3685// :127:17: error: use of undefined value here causes illegal behavior3679// :121:17: error: use of undefined value here causes illegal behavior
3686// :127:17: note: when computing vector element at index '0'3680// :121:17: note: when computing vector element at index '0'
3687// :127:17: error: use of undefined value here causes illegal behavior3681// :121:17: error: use of undefined value here causes illegal behavior
3688// :127:17: note: when computing vector element at index '0'3682// :121:17: note: when computing vector element at index '0'
3689// :127:17: error: use of undefined value here causes illegal behavior3683// :121:17: error: use of undefined value here causes illegal behavior
3690// :127:17: note: when computing vector element at index '1'3684// :121:17: note: when computing vector element at index '1'
3691// :127:17: error: use of undefined value here causes illegal behavior3685// :121:17: error: use of undefined value here causes illegal behavior
3692// :127:17: note: when computing vector element at index '0'3686// :121:17: note: when computing vector element at index '0'
3693// :127:17: error: use of undefined value here causes illegal behavior3687// :121:17: error: use of undefined value here causes illegal behavior
3694// :127:17: note: when computing vector element at index '0'3688// :121:17: note: when computing vector element at index '0'
3695// :127:17: error: use of undefined value here causes illegal behavior3689// :121:17: error: use of undefined value here causes illegal behavior
3696// :127:17: note: when computing vector element at index '0'3690// :121:17: note: when computing vector element at index '0'
3697// :127:17: error: use of undefined value here causes illegal behavior3691// :121:17: error: use of undefined value here causes illegal behavior
3698// :127:17: error: use of undefined value here causes illegal behavior3692// :121:17: error: use of undefined value here causes illegal behavior
3699// :127:17: note: when computing vector element at index '0'3693// :121:17: note: when computing vector element at index '0'
3700// :127:17: error: use of undefined value here causes illegal behavior3694// :121:17: error: use of undefined value here causes illegal behavior
3701// :127:17: note: when computing vector element at index '0'3695// :121:17: note: when computing vector element at index '0'
3702// :127:17: error: use of undefined value here causes illegal behavior3696// :121:17: error: use of undefined value here causes illegal behavior
3703// :127:17: note: when computing vector element at index '0'3697// :121:17: note: when computing vector element at index '0'
3704// :127:17: error: use of undefined value here causes illegal behavior3698// :121:17: error: use of undefined value here causes illegal behavior
3705// :127:17: note: when computing vector element at index '1'3699// :121:17: note: when computing vector element at index '1'
3706// :127:17: error: use of undefined value here causes illegal behavior3700// :121:17: error: use of undefined value here causes illegal behavior
3707// :127:17: note: when computing vector element at index '0'3701// :121:17: note: when computing vector element at index '0'
3708// :127:17: error: use of undefined value here causes illegal behavior3702// :121:17: error: use of undefined value here causes illegal behavior
3709// :127:17: note: when computing vector element at index '0'3703// :121:17: note: when computing vector element at index '0'
3710// :127:17: error: use of undefined value here causes illegal behavior3704// :121:17: error: use of undefined value here causes illegal behavior
3711// :127:17: note: when computing vector element at index '0'3705// :121:17: note: when computing vector element at index '0'
3712// :127:17: error: use of undefined value here causes illegal behavior3706// :121:17: error: use of undefined value here causes illegal behavior
3713// :127:17: error: use of undefined value here causes illegal behavior3707// :121:17: error: use of undefined value here causes illegal behavior
3714// :127:17: note: when computing vector element at index '0'3708// :121:17: note: when computing vector element at index '0'
3715// :127:17: error: use of undefined value here causes illegal behavior3709// :121:17: error: use of undefined value here causes illegal behavior
3716// :127:17: note: when computing vector element at index '0'3710// :121:17: note: when computing vector element at index '0'
3717// :127:17: error: use of undefined value here causes illegal behavior3711// :121:17: error: use of undefined value here causes illegal behavior
3718// :127:17: note: when computing vector element at index '0'3712// :121:17: note: when computing vector element at index '0'
3719// :127:17: error: use of undefined value here causes illegal behavior3713// :121:17: error: use of undefined value here causes illegal behavior
3720// :127:17: note: when computing vector element at index '1'3714// :121:17: note: when computing vector element at index '1'
3721// :127:17: error: use of undefined value here causes illegal behavior3715// :121:17: error: use of undefined value here causes illegal behavior
3722// :127:17: note: when computing vector element at index '0'3716// :121:17: note: when computing vector element at index '0'
3723// :127:17: error: use of undefined value here causes illegal behavior3717// :121:17: error: use of undefined value here causes illegal behavior
3724// :127:17: note: when computing vector element at index '0'3718// :121:17: note: when computing vector element at index '0'
3725// :127:17: error: use of undefined value here causes illegal behavior3719// :121:17: error: use of undefined value here causes illegal behavior
3726// :127:17: note: when computing vector element at index '0'3720// :121:17: note: when computing vector element at index '0'
3727// :127:17: error: use of undefined value here causes illegal behavior3721// :121:17: error: use of undefined value here causes illegal behavior
3728// :127:17: error: use of undefined value here causes illegal behavior3722// :121:17: error: use of undefined value here causes illegal behavior
3729// :127:17: note: when computing vector element at index '0'3723// :121:17: note: when computing vector element at index '0'
3730// :127:17: error: use of undefined value here causes illegal behavior3724// :121:17: error: use of undefined value here causes illegal behavior
3731// :127:17: note: when computing vector element at index '0'3725// :121:17: note: when computing vector element at index '0'
3732// :127:17: error: use of undefined value here causes illegal behavior3726// :121:17: error: use of undefined value here causes illegal behavior
3733// :127:17: note: when computing vector element at index '0'3727// :121:17: note: when computing vector element at index '0'
3734// :127:17: error: use of undefined value here causes illegal behavior3728// :121:17: error: use of undefined value here causes illegal behavior
3735// :127:17: note: when computing vector element at index '1'3729// :121:17: note: when computing vector element at index '1'
3736// :127:17: error: use of undefined value here causes illegal behavior3730// :121:17: error: use of undefined value here causes illegal behavior
3737// :127:17: note: when computing vector element at index '0'3731// :121:17: note: when computing vector element at index '0'
3738// :127:17: error: use of undefined value here causes illegal behavior3732// :121:17: error: use of undefined value here causes illegal behavior
3739// :127:17: note: when computing vector element at index '0'3733// :121:17: note: when computing vector element at index '0'
3740// :127:17: error: use of undefined value here causes illegal behavior3734// :121:17: error: use of undefined value here causes illegal behavior
3741// :127:17: note: when computing vector element at index '0'3735// :121:17: note: when computing vector element at index '0'
3742// :127:17: error: use of undefined value here causes illegal behavior3736// :121:17: error: use of undefined value here causes illegal behavior
3743// :127:17: error: use of undefined value here causes illegal behavior3737// :121:17: error: use of undefined value here causes illegal behavior
3744// :127:17: note: when computing vector element at index '0'3738// :121:17: note: when computing vector element at index '0'
3745// :127:17: error: use of undefined value here causes illegal behavior3739// :121:17: error: use of undefined value here causes illegal behavior
3746// :127:17: note: when computing vector element at index '0'3740// :121:17: note: when computing vector element at index '0'
3747// :127:17: error: use of undefined value here causes illegal behavior3741// :121:17: error: use of undefined value here causes illegal behavior
3748// :127:17: note: when computing vector element at index '0'3742// :121:17: note: when computing vector element at index '0'
3749// :127:17: error: use of undefined value here causes illegal behavior3743// :121:17: error: use of undefined value here causes illegal behavior
3750// :127:17: note: when computing vector element at index '1'3744// :121:17: note: when computing vector element at index '1'
3751// :127:17: error: use of undefined value here causes illegal behavior3745// :121:17: error: use of undefined value here causes illegal behavior
3752// :127:17: note: when computing vector element at index '0'3746// :121:17: note: when computing vector element at index '0'
3753// :127:17: error: use of undefined value here causes illegal behavior3747// :121:17: error: use of undefined value here causes illegal behavior
3754// :127:17: note: when computing vector element at index '0'3748// :121:17: note: when computing vector element at index '0'
3755// :127:17: error: use of undefined value here causes illegal behavior3749// :121:17: error: use of undefined value here causes illegal behavior
3756// :127:17: note: when computing vector element at index '0'3750// :121:17: note: when computing vector element at index '0'
3757// :127:17: error: use of undefined value here causes illegal behavior3751// :121:17: error: use of undefined value here causes illegal behavior
3758// :127:17: error: use of undefined value here causes illegal behavior3752// :121:17: error: use of undefined value here causes illegal behavior
3759// :127:17: note: when computing vector element at index '0'3753// :121:17: note: when computing vector element at index '0'
3760// :127:17: error: use of undefined value here causes illegal behavior3754// :121:17: error: use of undefined value here causes illegal behavior
3761// :127:17: note: when computing vector element at index '0'3755// :121:17: note: when computing vector element at index '0'
3762// :127:17: error: use of undefined value here causes illegal behavior3756// :121:17: error: use of undefined value here causes illegal behavior
3763// :127:17: note: when computing vector element at index '0'3757// :121:17: note: when computing vector element at index '0'
3764// :127:17: error: use of undefined value here causes illegal behavior3758// :121:17: error: use of undefined value here causes illegal behavior
3765// :127:17: note: when computing vector element at index '1'3759// :121:17: note: when computing vector element at index '1'
3766// :127:17: error: use of undefined value here causes illegal behavior3760// :121:17: error: use of undefined value here causes illegal behavior
3767// :127:17: note: when computing vector element at index '0'3761// :121:17: note: when computing vector element at index '0'
3768// :127:17: error: use of undefined value here causes illegal behavior3762// :121:17: error: use of undefined value here causes illegal behavior
3769// :127:17: note: when computing vector element at index '0'3763// :121:17: note: when computing vector element at index '0'
3770// :127:17: error: use of undefined value here causes illegal behavior3764// :121:17: error: use of undefined value here causes illegal behavior
3771// :127:17: note: when computing vector element at index '0'3765// :121:17: note: when computing vector element at index '0'
3772// :127:17: error: use of undefined value here causes illegal behavior3766// :121:17: error: use of undefined value here causes illegal behavior
3773// :127:17: error: use of undefined value here causes illegal behavior3767// :121:17: error: use of undefined value here causes illegal behavior
3774// :127:17: note: when computing vector element at index '0'3768// :121:17: note: when computing vector element at index '0'
3775// :127:17: error: use of undefined value here causes illegal behavior3769// :121:17: error: use of undefined value here causes illegal behavior
3776// :127:17: note: when computing vector element at index '0'3770// :121:17: note: when computing vector element at index '0'
3777// :127:17: error: use of undefined value here causes illegal behavior3771// :121:17: error: use of undefined value here causes illegal behavior
3778// :127:17: note: when computing vector element at index '0'3772// :121:17: note: when computing vector element at index '0'
3779// :127:17: error: use of undefined value here causes illegal behavior3773// :121:17: error: use of undefined value here causes illegal behavior
3780// :127:17: note: when computing vector element at index '1'3774// :121:17: note: when computing vector element at index '1'
3781// :127:17: error: use of undefined value here causes illegal behavior3775// :121:17: error: use of undefined value here causes illegal behavior
3782// :127:17: note: when computing vector element at index '0'3776// :121:17: note: when computing vector element at index '0'
3783// :127:17: error: use of undefined value here causes illegal behavior3777// :121:17: error: use of undefined value here causes illegal behavior
3784// :127:17: note: when computing vector element at index '0'3778// :121:17: note: when computing vector element at index '0'
3785// :127:17: error: use of undefined value here causes illegal behavior3779// :121:17: error: use of undefined value here causes illegal behavior
3786// :127:17: note: when computing vector element at index '0'3780// :121:17: note: when computing vector element at index '0'
3787// :127:17: error: use of undefined value here causes illegal behavior3781// :121:17: error: use of undefined value here causes illegal behavior
3788// :127:17: error: use of undefined value here causes illegal behavior3782// :121:17: error: use of undefined value here causes illegal behavior
3789// :127:17: note: when computing vector element at index '0'3783// :121:17: note: when computing vector element at index '0'
3790// :127:17: error: use of undefined value here causes illegal behavior3784// :121:17: error: use of undefined value here causes illegal behavior
3791// :127:17: note: when computing vector element at index '0'3785// :121:17: note: when computing vector element at index '0'
3792// :127:17: error: use of undefined value here causes illegal behavior3786// :121:17: error: use of undefined value here causes illegal behavior
3793// :127:17: note: when computing vector element at index '0'3787// :121:17: note: when computing vector element at index '0'
3794// :127:17: error: use of undefined value here causes illegal behavior3788// :121:17: error: use of undefined value here causes illegal behavior
3795// :127:17: note: when computing vector element at index '1'3789// :121:17: note: when computing vector element at index '1'
3796// :127:17: error: use of undefined value here causes illegal behavior3790// :121:17: error: use of undefined value here causes illegal behavior
3797// :127:17: note: when computing vector element at index '0'3791// :121:17: note: when computing vector element at index '0'
3798// :127:17: error: use of undefined value here causes illegal behavior3792// :121:17: error: use of undefined value here causes illegal behavior
3799// :127:17: note: when computing vector element at index '0'3793// :121:17: note: when computing vector element at index '0'
3800// :127:17: error: use of undefined value here causes illegal behavior3794// :121:17: error: use of undefined value here causes illegal behavior
3801// :127:17: note: when computing vector element at index '0'3795// :121:17: note: when computing vector element at index '0'
3802// :127:17: error: use of undefined value here causes illegal behavior3796// :121:17: error: use of undefined value here causes illegal behavior
3803// :127:17: error: use of undefined value here causes illegal behavior3797// :121:17: error: use of undefined value here causes illegal behavior
3804// :127:17: note: when computing vector element at index '0'3798// :121:17: note: when computing vector element at index '0'
3805// :127:17: error: use of undefined value here causes illegal behavior3799// :121:17: error: use of undefined value here causes illegal behavior
3806// :127:17: note: when computing vector element at index '0'3800// :121:17: note: when computing vector element at index '0'
3807// :127:17: error: use of undefined value here causes illegal behavior3801// :121:17: error: use of undefined value here causes illegal behavior
3808// :127:17: note: when computing vector element at index '0'3802// :121:17: note: when computing vector element at index '0'
3809// :127:17: error: use of undefined value here causes illegal behavior3803// :121:17: error: use of undefined value here causes illegal behavior
3810// :127:17: note: when computing vector element at index '1'3804// :121:17: note: when computing vector element at index '1'
3811// :127:17: error: use of undefined value here causes illegal behavior3805// :121:17: error: use of undefined value here causes illegal behavior
3812// :127:17: note: when computing vector element at index '0'3806// :121:17: note: when computing vector element at index '0'
3813// :127:17: error: use of undefined value here causes illegal behavior3807// :121:17: error: use of undefined value here causes illegal behavior
3814// :127:17: note: when computing vector element at index '0'3808// :121:17: note: when computing vector element at index '0'
3815// :127:17: error: use of undefined value here causes illegal behavior3809// :121:17: error: use of undefined value here causes illegal behavior
3816// :127:17: note: when computing vector element at index '0'3810// :121:17: note: when computing vector element at index '0'
3817// :127:21: error: use of undefined value here causes illegal behavior3811// :121:21: error: use of undefined value here causes illegal behavior
3818// :127:21: error: use of undefined value here causes illegal behavior3812// :121:21: error: use of undefined value here causes illegal behavior
3819// :127:21: note: when computing vector element at index '0'3813// :121:21: note: when computing vector element at index '0'
3820// :127:21: error: use of undefined value here causes illegal behavior3814// :121:21: error: use of undefined value here causes illegal behavior
3821// :127:21: note: when computing vector element at index '0'3815// :121:21: note: when computing vector element at index '0'
3822// :127:21: error: use of undefined value here causes illegal behavior3816// :121:21: error: use of undefined value here causes illegal behavior
3823// :127:21: note: when computing vector element at index '1'3817// :121:21: note: when computing vector element at index '1'
3824// :127:21: error: use of undefined value here causes illegal behavior3818// :121:21: error: use of undefined value here causes illegal behavior
3825// :127:21: note: when computing vector element at index '0'3819// :121:21: note: when computing vector element at index '0'
3826// :127:21: error: use of undefined value here causes illegal behavior3820// :121:21: error: use of undefined value here causes illegal behavior
3827// :127:21: note: when computing vector element at index '0'3821// :121:21: note: when computing vector element at index '0'
3828// :127:21: error: use of undefined value here causes illegal behavior3822// :121:21: error: use of undefined value here causes illegal behavior
3829// :127:21: error: use of undefined value here causes illegal behavior3823// :121:21: error: use of undefined value here causes illegal behavior
3830// :127:21: note: when computing vector element at index '0'3824// :121:21: note: when computing vector element at index '0'
3831// :127:21: error: use of undefined value here causes illegal behavior3825// :121:21: error: use of undefined value here causes illegal behavior
3832// :127:21: note: when computing vector element at index '0'3826// :121:21: note: when computing vector element at index '0'
3833// :127:21: error: use of undefined value here causes illegal behavior3827// :121:21: error: use of undefined value here causes illegal behavior
3834// :127:21: note: when computing vector element at index '1'3828// :121:21: note: when computing vector element at index '1'
3835// :127:21: error: use of undefined value here causes illegal behavior3829// :121:21: error: use of undefined value here causes illegal behavior
3836// :127:21: note: when computing vector element at index '0'3830// :121:21: note: when computing vector element at index '0'
3837// :127:21: error: use of undefined value here causes illegal behavior3831// :121:21: error: use of undefined value here causes illegal behavior
3838// :127:21: note: when computing vector element at index '0'3832// :121:21: note: when computing vector element at index '0'
3839// :127:21: error: use of undefined value here causes illegal behavior3833// :121:21: error: use of undefined value here causes illegal behavior
3840// :127:21: error: use of undefined value here causes illegal behavior3834// :121:21: error: use of undefined value here causes illegal behavior
3841// :127:21: note: when computing vector element at index '0'3835// :121:21: note: when computing vector element at index '0'
3842// :127:21: error: use of undefined value here causes illegal behavior3836// :121:21: error: use of undefined value here causes illegal behavior
3843// :127:21: note: when computing vector element at index '0'3837// :121:21: note: when computing vector element at index '0'
3844// :127:21: error: use of undefined value here causes illegal behavior3838// :121:21: error: use of undefined value here causes illegal behavior
3845// :127:21: note: when computing vector element at index '1'3839// :121:21: note: when computing vector element at index '1'
3846// :127:21: error: use of undefined value here causes illegal behavior3840// :121:21: error: use of undefined value here causes illegal behavior
3847// :127:21: note: when computing vector element at index '0'3841// :121:21: note: when computing vector element at index '0'
3848// :127:21: error: use of undefined value here causes illegal behavior3842// :121:21: error: use of undefined value here causes illegal behavior
3849// :127:21: note: when computing vector element at index '0'3843// :121:21: note: when computing vector element at index '0'
3850// :127:21: error: use of undefined value here causes illegal behavior3844// :121:21: error: use of undefined value here causes illegal behavior
3851// :127:21: error: use of undefined value here causes illegal behavior3845// :121:21: error: use of undefined value here causes illegal behavior
3852// :127:21: note: when computing vector element at index '0'3846// :121:21: note: when computing vector element at index '0'
3853// :127:21: error: use of undefined value here causes illegal behavior3847// :121:21: error: use of undefined value here causes illegal behavior
3854// :127:21: note: when computing vector element at index '0'3848// :121:21: note: when computing vector element at index '0'
3855// :127:21: error: use of undefined value here causes illegal behavior3849// :121:21: error: use of undefined value here causes illegal behavior
3856// :127:21: note: when computing vector element at index '1'3850// :121:21: note: when computing vector element at index '1'
3857// :127:21: error: use of undefined value here causes illegal behavior3851// :121:21: error: use of undefined value here causes illegal behavior
3858// :127:21: note: when computing vector element at index '0'3852// :121:21: note: when computing vector element at index '0'
3859// :127:21: error: use of undefined value here causes illegal behavior3853// :121:21: error: use of undefined value here causes illegal behavior
3860// :127:21: note: when computing vector element at index '0'3854// :121:21: note: when computing vector element at index '0'
3861// :127:21: error: use of undefined value here causes illegal behavior3855// :121:21: error: use of undefined value here causes illegal behavior
3862// :127:21: error: use of undefined value here causes illegal behavior3856// :121:21: error: use of undefined value here causes illegal behavior
3863// :127:21: note: when computing vector element at index '0'3857// :121:21: note: when computing vector element at index '0'
3864// :127:21: error: use of undefined value here causes illegal behavior3858// :121:21: error: use of undefined value here causes illegal behavior
3865// :127:21: note: when computing vector element at index '0'3859// :121:21: note: when computing vector element at index '0'
3866// :127:21: error: use of undefined value here causes illegal behavior3860// :121:21: error: use of undefined value here causes illegal behavior
3867// :127:21: note: when computing vector element at index '1'3861// :121:21: note: when computing vector element at index '1'
3868// :127:21: error: use of undefined value here causes illegal behavior3862// :121:21: error: use of undefined value here causes illegal behavior
3869// :127:21: note: when computing vector element at index '0'3863// :121:21: note: when computing vector element at index '0'
3870// :127:21: error: use of undefined value here causes illegal behavior3864// :121:21: error: use of undefined value here causes illegal behavior
3871// :127:21: note: when computing vector element at index '0'3865// :121:21: note: when computing vector element at index '0'
3872// :127:21: error: use of undefined value here causes illegal behavior3866// :121:21: error: use of undefined value here causes illegal behavior
3873// :127:21: error: use of undefined value here causes illegal behavior3867// :121:21: error: use of undefined value here causes illegal behavior
3874// :127:21: note: when computing vector element at index '0'3868// :121:21: note: when computing vector element at index '0'
3875// :127:21: error: use of undefined value here causes illegal behavior3869// :121:21: error: use of undefined value here causes illegal behavior
3876// :127:21: note: when computing vector element at index '0'3870// :121:21: note: when computing vector element at index '0'
3877// :127:21: error: use of undefined value here causes illegal behavior3871// :121:21: error: use of undefined value here causes illegal behavior
3878// :127:21: note: when computing vector element at index '1'3872// :121:21: note: when computing vector element at index '1'
3879// :127:21: error: use of undefined value here causes illegal behavior3873// :121:21: error: use of undefined value here causes illegal behavior
3880// :127:21: note: when computing vector element at index '0'3874// :121:21: note: when computing vector element at index '0'
3881// :127:21: error: use of undefined value here causes illegal behavior3875// :121:21: error: use of undefined value here causes illegal behavior
3882// :127:21: note: when computing vector element at index '0'3876// :121:21: note: when computing vector element at index '0'
3883// :127:21: error: use of undefined value here causes illegal behavior3877// :121:21: error: use of undefined value here causes illegal behavior
3884// :127:21: error: use of undefined value here causes illegal behavior3878// :121:21: error: use of undefined value here causes illegal behavior
3885// :127:21: note: when computing vector element at index '0'3879// :121:21: note: when computing vector element at index '0'
3886// :127:21: error: use of undefined value here causes illegal behavior3880// :121:21: error: use of undefined value here causes illegal behavior
3887// :127:21: note: when computing vector element at index '0'3881// :121:21: note: when computing vector element at index '0'
3888// :127:21: error: use of undefined value here causes illegal behavior3882// :121:21: error: use of undefined value here causes illegal behavior
3889// :127:21: note: when computing vector element at index '1'3883// :121:21: note: when computing vector element at index '1'
3890// :127:21: error: use of undefined value here causes illegal behavior3884// :121:21: error: use of undefined value here causes illegal behavior
3891// :127:21: note: when computing vector element at index '0'3885// :121:21: note: when computing vector element at index '0'
3892// :127:21: error: use of undefined value here causes illegal behavior3886// :121:21: error: use of undefined value here causes illegal behavior
3893// :127:21: note: when computing vector element at index '0'3887// :121:21: note: when computing vector element at index '0'
3894// :127:21: error: use of undefined value here causes illegal behavior3888// :121:21: error: use of undefined value here causes illegal behavior
3895// :127:21: error: use of undefined value here causes illegal behavior3889// :121:21: error: use of undefined value here causes illegal behavior
3896// :127:21: note: when computing vector element at index '0'3890// :121:21: note: when computing vector element at index '0'
3897// :127:21: error: use of undefined value here causes illegal behavior3891// :121:21: error: use of undefined value here causes illegal behavior
3898// :127:21: note: when computing vector element at index '0'3892// :121:21: note: when computing vector element at index '0'
3899// :127:21: error: use of undefined value here causes illegal behavior3893// :121:21: error: use of undefined value here causes illegal behavior
3900// :127:21: note: when computing vector element at index '1'3894// :121:21: note: when computing vector element at index '1'
3901// :127:21: error: use of undefined value here causes illegal behavior3895// :121:21: error: use of undefined value here causes illegal behavior
3902// :127:21: note: when computing vector element at index '0'3896// :121:21: note: when computing vector element at index '0'
3903// :127:21: error: use of undefined value here causes illegal behavior3897// :121:21: error: use of undefined value here causes illegal behavior
3904// :127:21: note: when computing vector element at index '0'3898// :121:21: note: when computing vector element at index '0'
3905// :127:21: error: use of undefined value here causes illegal behavior3899// :121:21: error: use of undefined value here causes illegal behavior
3906// :127:21: error: use of undefined value here causes illegal behavior3900// :121:21: error: use of undefined value here causes illegal behavior
3907// :127:21: note: when computing vector element at index '0'3901// :121:21: note: when computing vector element at index '0'
3908// :127:21: error: use of undefined value here causes illegal behavior3902// :121:21: error: use of undefined value here causes illegal behavior
3909// :127:21: note: when computing vector element at index '0'3903// :121:21: note: when computing vector element at index '0'
3910// :127:21: error: use of undefined value here causes illegal behavior3904// :121:21: error: use of undefined value here causes illegal behavior
3911// :127:21: note: when computing vector element at index '1'3905// :121:21: note: when computing vector element at index '1'
3912// :127:21: error: use of undefined value here causes illegal behavior3906// :121:21: error: use of undefined value here causes illegal behavior
3913// :127:21: note: when computing vector element at index '0'3907// :121:21: note: when computing vector element at index '0'
3914// :127:21: error: use of undefined value here causes illegal behavior3908// :121:21: error: use of undefined value here causes illegal behavior
3915// :127:21: note: when computing vector element at index '0'3909// :121:21: note: when computing vector element at index '0'
3916// :127:21: error: use of undefined value here causes illegal behavior3910// :121:21: error: use of undefined value here causes illegal behavior
3917// :127:21: error: use of undefined value here causes illegal behavior3911// :121:21: error: use of undefined value here causes illegal behavior
3918// :127:21: note: when computing vector element at index '0'3912// :121:21: note: when computing vector element at index '0'
3919// :127:21: error: use of undefined value here causes illegal behavior3913// :121:21: error: use of undefined value here causes illegal behavior
3920// :127:21: note: when computing vector element at index '0'3914// :121:21: note: when computing vector element at index '0'
3921// :127:21: error: use of undefined value here causes illegal behavior3915// :121:21: error: use of undefined value here causes illegal behavior
3922// :127:21: note: when computing vector element at index '1'3916// :121:21: note: when computing vector element at index '1'
3923// :127:21: error: use of undefined value here causes illegal behavior3917// :121:21: error: use of undefined value here causes illegal behavior
3924// :127:21: note: when computing vector element at index '0'3918// :121:21: note: when computing vector element at index '0'
3925// :127:21: error: use of undefined value here causes illegal behavior3919// :121:21: error: use of undefined value here causes illegal behavior
3926// :127:21: note: when computing vector element at index '0'3920// :121:21: note: when computing vector element at index '0'
3927// :127:21: error: use of undefined value here causes illegal behavior3921// :121:21: error: use of undefined value here causes illegal behavior
3928// :127:21: error: use of undefined value here causes illegal behavior3922// :121:21: error: use of undefined value here causes illegal behavior
3929// :127:21: note: when computing vector element at index '0'3923// :121:21: note: when computing vector element at index '0'
3930// :127:21: error: use of undefined value here causes illegal behavior3924// :121:21: error: use of undefined value here causes illegal behavior
3931// :127:21: note: when computing vector element at index '0'3925// :121:21: note: when computing vector element at index '0'
3932// :127:21: error: use of undefined value here causes illegal behavior3926// :121:21: error: use of undefined value here causes illegal behavior
3933// :127:21: note: when computing vector element at index '1'3927// :121:21: note: when computing vector element at index '1'
3934// :127:21: error: use of undefined value here causes illegal behavior3928// :121:21: error: use of undefined value here causes illegal behavior
3935// :127:21: note: when computing vector element at index '0'3929// :121:21: note: when computing vector element at index '0'
3936// :127:21: error: use of undefined value here causes illegal behavior3930// :121:21: error: use of undefined value here causes illegal behavior
3937// :127:21: note: when computing vector element at index '0'3931// :121:21: note: when computing vector element at index '0'
3938// :131:27: error: use of undefined value here causes illegal behavior3932// :125:27: error: use of undefined value here causes illegal behavior
3939// :131:27: error: use of undefined value here causes illegal behavior3933// :125:27: error: use of undefined value here causes illegal behavior
3940// :131:27: note: when computing vector element at index '0'3934// :125:27: note: when computing vector element at index '0'
3941// :131:27: error: use of undefined value here causes illegal behavior3935// :125:27: error: use of undefined value here causes illegal behavior
3942// :131:27: note: when computing vector element at index '0'3936// :125:27: note: when computing vector element at index '0'
3943// :131:27: error: use of undefined value here causes illegal behavior3937// :125:27: error: use of undefined value here causes illegal behavior
3944// :131:27: note: when computing vector element at index '0'3938// :125:27: note: when computing vector element at index '0'
3945// :131:27: error: use of undefined value here causes illegal behavior3939// :125:27: error: use of undefined value here causes illegal behavior
3946// :131:27: note: when computing vector element at index '1'3940// :125:27: note: when computing vector element at index '1'
3947// :131:27: error: use of undefined value here causes illegal behavior3941// :125:27: error: use of undefined value here causes illegal behavior
3948// :131:27: note: when computing vector element at index '0'3942// :125:27: note: when computing vector element at index '0'
3949// :131:27: error: use of undefined value here causes illegal behavior3943// :125:27: error: use of undefined value here causes illegal behavior
3950// :131:27: note: when computing vector element at index '0'3944// :125:27: note: when computing vector element at index '0'
3951// :131:27: error: use of undefined value here causes illegal behavior3945// :125:27: error: use of undefined value here causes illegal behavior
3952// :131:27: note: when computing vector element at index '0'3946// :125:27: note: when computing vector element at index '0'
3953// :131:27: error: use of undefined value here causes illegal behavior3947// :125:27: error: use of undefined value here causes illegal behavior
3954// :131:27: error: use of undefined value here causes illegal behavior3948// :125:27: error: use of undefined value here causes illegal behavior
3955// :131:27: note: when computing vector element at index '0'3949// :125:27: note: when computing vector element at index '0'
3956// :131:27: error: use of undefined value here causes illegal behavior3950// :125:27: error: use of undefined value here causes illegal behavior
3957// :131:27: note: when computing vector element at index '0'3951// :125:27: note: when computing vector element at index '0'
3958// :131:27: error: use of undefined value here causes illegal behavior3952// :125:27: error: use of undefined value here causes illegal behavior
3959// :131:27: note: when computing vector element at index '0'3953// :125:27: note: when computing vector element at index '0'
3960// :131:27: error: use of undefined value here causes illegal behavior3954// :125:27: error: use of undefined value here causes illegal behavior
3961// :131:27: note: when computing vector element at index '1'3955// :125:27: note: when computing vector element at index '1'
3962// :131:27: error: use of undefined value here causes illegal behavior3956// :125:27: error: use of undefined value here causes illegal behavior
3963// :131:27: note: when computing vector element at index '0'3957// :125:27: note: when computing vector element at index '0'
3964// :131:27: error: use of undefined value here causes illegal behavior3958// :125:27: error: use of undefined value here causes illegal behavior
3965// :131:27: note: when computing vector element at index '0'3959// :125:27: note: when computing vector element at index '0'
3966// :131:27: error: use of undefined value here causes illegal behavior3960// :125:27: error: use of undefined value here causes illegal behavior
3967// :131:27: note: when computing vector element at index '0'3961// :125:27: note: when computing vector element at index '0'
3968// :131:27: error: use of undefined value here causes illegal behavior3962// :125:27: error: use of undefined value here causes illegal behavior
3969// :131:27: error: use of undefined value here causes illegal behavior3963// :125:27: error: use of undefined value here causes illegal behavior
3970// :131:27: note: when computing vector element at index '0'3964// :125:27: note: when computing vector element at index '0'
3971// :131:27: error: use of undefined value here causes illegal behavior3965// :125:27: error: use of undefined value here causes illegal behavior
3972// :131:27: note: when computing vector element at index '0'3966// :125:27: note: when computing vector element at index '0'
3973// :131:27: error: use of undefined value here causes illegal behavior3967// :125:27: error: use of undefined value here causes illegal behavior
3974// :131:27: note: when computing vector element at index '0'3968// :125:27: note: when computing vector element at index '0'
3975// :131:27: error: use of undefined value here causes illegal behavior3969// :125:27: error: use of undefined value here causes illegal behavior
3976// :131:27: note: when computing vector element at index '1'3970// :125:27: note: when computing vector element at index '1'
3977// :131:27: error: use of undefined value here causes illegal behavior3971// :125:27: error: use of undefined value here causes illegal behavior
3978// :131:27: note: when computing vector element at index '0'3972// :125:27: note: when computing vector element at index '0'
3979// :131:27: error: use of undefined value here causes illegal behavior3973// :125:27: error: use of undefined value here causes illegal behavior
3980// :131:27: note: when computing vector element at index '0'3974// :125:27: note: when computing vector element at index '0'
3981// :131:27: error: use of undefined value here causes illegal behavior3975// :125:27: error: use of undefined value here causes illegal behavior
3982// :131:27: note: when computing vector element at index '0'3976// :125:27: note: when computing vector element at index '0'
3983// :131:27: error: use of undefined value here causes illegal behavior3977// :125:27: error: use of undefined value here causes illegal behavior
3984// :131:27: error: use of undefined value here causes illegal behavior3978// :125:27: error: use of undefined value here causes illegal behavior
3985// :131:27: note: when computing vector element at index '0'3979// :125:27: note: when computing vector element at index '0'
3986// :131:27: error: use of undefined value here causes illegal behavior3980// :125:27: error: use of undefined value here causes illegal behavior
3987// :131:27: note: when computing vector element at index '0'3981// :125:27: note: when computing vector element at index '0'
3988// :131:27: error: use of undefined value here causes illegal behavior3982// :125:27: error: use of undefined value here causes illegal behavior
3989// :131:27: note: when computing vector element at index '0'3983// :125:27: note: when computing vector element at index '0'
3990// :131:27: error: use of undefined value here causes illegal behavior3984// :125:27: error: use of undefined value here causes illegal behavior
3991// :131:27: note: when computing vector element at index '1'3985// :125:27: note: when computing vector element at index '1'
3992// :131:27: error: use of undefined value here causes illegal behavior3986// :125:27: error: use of undefined value here causes illegal behavior
3993// :131:27: note: when computing vector element at index '0'3987// :125:27: note: when computing vector element at index '0'
3994// :131:27: error: use of undefined value here causes illegal behavior3988// :125:27: error: use of undefined value here causes illegal behavior
3995// :131:27: note: when computing vector element at index '0'3989// :125:27: note: when computing vector element at index '0'
3996// :131:27: error: use of undefined value here causes illegal behavior3990// :125:27: error: use of undefined value here causes illegal behavior
3997// :131:27: note: when computing vector element at index '0'3991// :125:27: note: when computing vector element at index '0'
3998// :131:27: error: use of undefined value here causes illegal behavior3992// :125:27: error: use of undefined value here causes illegal behavior
3999// :131:27: error: use of undefined value here causes illegal behavior3993// :125:27: error: use of undefined value here causes illegal behavior
4000// :131:27: note: when computing vector element at index '0'3994// :125:27: note: when computing vector element at index '0'
4001// :131:27: error: use of undefined value here causes illegal behavior3995// :125:27: error: use of undefined value here causes illegal behavior
4002// :131:27: note: when computing vector element at index '0'3996// :125:27: note: when computing vector element at index '0'
4003// :131:27: error: use of undefined value here causes illegal behavior3997// :125:27: error: use of undefined value here causes illegal behavior
4004// :131:27: note: when computing vector element at index '0'3998// :125:27: note: when computing vector element at index '0'
4005// :131:27: error: use of undefined value here causes illegal behavior3999// :125:27: error: use of undefined value here causes illegal behavior
4006// :131:27: note: when computing vector element at index '1'4000// :125:27: note: when computing vector element at index '1'
4007// :131:27: error: use of undefined value here causes illegal behavior4001// :125:27: error: use of undefined value here causes illegal behavior
4008// :131:27: note: when computing vector element at index '0'4002// :125:27: note: when computing vector element at index '0'
4009// :131:27: error: use of undefined value here causes illegal behavior4003// :125:27: error: use of undefined value here causes illegal behavior
4010// :131:27: note: when computing vector element at index '0'4004// :125:27: note: when computing vector element at index '0'
4011// :131:27: error: use of undefined value here causes illegal behavior4005// :125:27: error: use of undefined value here causes illegal behavior
4012// :131:27: note: when computing vector element at index '0'4006// :125:27: note: when computing vector element at index '0'
4013// :131:27: error: use of undefined value here causes illegal behavior4007// :125:27: error: use of undefined value here causes illegal behavior
4014// :131:27: error: use of undefined value here causes illegal behavior4008// :125:27: error: use of undefined value here causes illegal behavior
4015// :131:27: note: when computing vector element at index '0'4009// :125:27: note: when computing vector element at index '0'
4016// :131:27: error: use of undefined value here causes illegal behavior4010// :125:27: error: use of undefined value here causes illegal behavior
4017// :131:27: note: when computing vector element at index '0'4011// :125:27: note: when computing vector element at index '0'
4018// :131:27: error: use of undefined value here causes illegal behavior4012// :125:27: error: use of undefined value here causes illegal behavior
4019// :131:27: note: when computing vector element at index '0'4013// :125:27: note: when computing vector element at index '0'
4020// :131:27: error: use of undefined value here causes illegal behavior4014// :125:27: error: use of undefined value here causes illegal behavior
4021// :131:27: note: when computing vector element at index '1'4015// :125:27: note: when computing vector element at index '1'
4022// :131:27: error: use of undefined value here causes illegal behavior4016// :125:27: error: use of undefined value here causes illegal behavior
4023// :131:27: note: when computing vector element at index '0'4017// :125:27: note: when computing vector element at index '0'
4024// :131:27: error: use of undefined value here causes illegal behavior4018// :125:27: error: use of undefined value here causes illegal behavior
4025// :131:27: note: when computing vector element at index '0'4019// :125:27: note: when computing vector element at index '0'
4026// :131:27: error: use of undefined value here causes illegal behavior4020// :125:27: error: use of undefined value here causes illegal behavior
4027// :131:27: note: when computing vector element at index '0'4021// :125:27: note: when computing vector element at index '0'
4028// :131:27: error: use of undefined value here causes illegal behavior4022// :125:27: error: use of undefined value here causes illegal behavior
4029// :131:27: error: use of undefined value here causes illegal behavior4023// :125:27: error: use of undefined value here causes illegal behavior
4030// :131:27: note: when computing vector element at index '0'4024// :125:27: note: when computing vector element at index '0'
4031// :131:27: error: use of undefined value here causes illegal behavior4025// :125:27: error: use of undefined value here causes illegal behavior
4032// :131:27: note: when computing vector element at index '0'4026// :125:27: note: when computing vector element at index '0'
4033// :131:27: error: use of undefined value here causes illegal behavior4027// :125:27: error: use of undefined value here causes illegal behavior
4034// :131:27: note: when computing vector element at index '0'4028// :125:27: note: when computing vector element at index '0'
4035// :131:27: error: use of undefined value here causes illegal behavior4029// :125:27: error: use of undefined value here causes illegal behavior
4036// :131:27: note: when computing vector element at index '1'4030// :125:27: note: when computing vector element at index '1'
4037// :131:27: error: use of undefined value here causes illegal behavior4031// :125:27: error: use of undefined value here causes illegal behavior
4038// :131:27: note: when computing vector element at index '0'4032// :125:27: note: when computing vector element at index '0'
4039// :131:27: error: use of undefined value here causes illegal behavior4033// :125:27: error: use of undefined value here causes illegal behavior
4040// :131:27: note: when computing vector element at index '0'4034// :125:27: note: when computing vector element at index '0'
4041// :131:27: error: use of undefined value here causes illegal behavior4035// :125:27: error: use of undefined value here causes illegal behavior
4042// :131:27: note: when computing vector element at index '0'4036// :125:27: note: when computing vector element at index '0'
4043// :131:27: error: use of undefined value here causes illegal behavior4037// :125:27: error: use of undefined value here causes illegal behavior
4044// :131:27: error: use of undefined value here causes illegal behavior4038// :125:27: error: use of undefined value here causes illegal behavior
4045// :131:27: note: when computing vector element at index '0'4039// :125:27: note: when computing vector element at index '0'
4046// :131:27: error: use of undefined value here causes illegal behavior4040// :125:27: error: use of undefined value here causes illegal behavior
4047// :131:27: note: when computing vector element at index '0'4041// :125:27: note: when computing vector element at index '0'
4048// :131:27: error: use of undefined value here causes illegal behavior4042// :125:27: error: use of undefined value here causes illegal behavior
4049// :131:27: note: when computing vector element at index '0'4043// :125:27: note: when computing vector element at index '0'
4050// :131:27: error: use of undefined value here causes illegal behavior4044// :125:27: error: use of undefined value here causes illegal behavior
4051// :131:27: note: when computing vector element at index '1'4045// :125:27: note: when computing vector element at index '1'
4052// :131:27: error: use of undefined value here causes illegal behavior4046// :125:27: error: use of undefined value here causes illegal behavior
4053// :131:27: note: when computing vector element at index '0'4047// :125:27: note: when computing vector element at index '0'
4054// :131:27: error: use of undefined value here causes illegal behavior4048// :125:27: error: use of undefined value here causes illegal behavior
4055// :131:27: note: when computing vector element at index '0'4049// :125:27: note: when computing vector element at index '0'
4056// :131:27: error: use of undefined value here causes illegal behavior4050// :125:27: error: use of undefined value here causes illegal behavior
4057// :131:27: note: when computing vector element at index '0'4051// :125:27: note: when computing vector element at index '0'
4058// :131:27: error: use of undefined value here causes illegal behavior4052// :125:27: error: use of undefined value here causes illegal behavior
4059// :131:27: error: use of undefined value here causes illegal behavior4053// :125:27: error: use of undefined value here causes illegal behavior
4060// :131:27: note: when computing vector element at index '0'4054// :125:27: note: when computing vector element at index '0'
4061// :131:27: error: use of undefined value here causes illegal behavior4055// :125:27: error: use of undefined value here causes illegal behavior
4062// :131:27: note: when computing vector element at index '0'4056// :125:27: note: when computing vector element at index '0'
4063// :131:27: error: use of undefined value here causes illegal behavior4057// :125:27: error: use of undefined value here causes illegal behavior
4064// :131:27: note: when computing vector element at index '0'4058// :125:27: note: when computing vector element at index '0'
4065// :131:27: error: use of undefined value here causes illegal behavior4059// :125:27: error: use of undefined value here causes illegal behavior
4066// :131:27: note: when computing vector element at index '1'4060// :125:27: note: when computing vector element at index '1'
4067// :131:27: error: use of undefined value here causes illegal behavior4061// :125:27: error: use of undefined value here causes illegal behavior
4068// :131:27: note: when computing vector element at index '0'4062// :125:27: note: when computing vector element at index '0'
4069// :131:27: error: use of undefined value here causes illegal behavior4063// :125:27: error: use of undefined value here causes illegal behavior
4070// :131:27: note: when computing vector element at index '0'4064// :125:27: note: when computing vector element at index '0'
4071// :131:27: error: use of undefined value here causes illegal behavior4065// :125:27: error: use of undefined value here causes illegal behavior
4072// :131:27: note: when computing vector element at index '0'4066// :125:27: note: when computing vector element at index '0'
4073// :131:27: error: use of undefined value here causes illegal behavior4067// :125:27: error: use of undefined value here causes illegal behavior
4074// :131:27: error: use of undefined value here causes illegal behavior4068// :125:27: error: use of undefined value here causes illegal behavior
4075// :131:27: note: when computing vector element at index '0'4069// :125:27: note: when computing vector element at index '0'
4076// :131:27: error: use of undefined value here causes illegal behavior4070// :125:27: error: use of undefined value here causes illegal behavior
4077// :131:27: note: when computing vector element at index '0'4071// :125:27: note: when computing vector element at index '0'
4078// :131:27: error: use of undefined value here causes illegal behavior4072// :125:27: error: use of undefined value here causes illegal behavior
4079// :131:27: note: when computing vector element at index '0'4073// :125:27: note: when computing vector element at index '0'
4080// :131:27: error: use of undefined value here causes illegal behavior4074// :125:27: error: use of undefined value here causes illegal behavior
4081// :131:27: note: when computing vector element at index '1'4075// :125:27: note: when computing vector element at index '1'
4082// :131:27: error: use of undefined value here causes illegal behavior4076// :125:27: error: use of undefined value here causes illegal behavior
4083// :131:27: note: when computing vector element at index '0'4077// :125:27: note: when computing vector element at index '0'
4084// :131:27: error: use of undefined value here causes illegal behavior4078// :125:27: error: use of undefined value here causes illegal behavior
4085// :131:27: note: when computing vector element at index '0'4079// :125:27: note: when computing vector element at index '0'
4086// :131:27: error: use of undefined value here causes illegal behavior4080// :125:27: error: use of undefined value here causes illegal behavior
4087// :131:27: note: when computing vector element at index '0'4081// :125:27: note: when computing vector element at index '0'
4088// :131:27: error: use of undefined value here causes illegal behavior4082// :125:27: error: use of undefined value here causes illegal behavior
4089// :131:27: error: use of undefined value here causes illegal behavior4083// :125:27: error: use of undefined value here causes illegal behavior
4090// :131:27: note: when computing vector element at index '0'4084// :125:27: note: when computing vector element at index '0'
4091// :131:27: error: use of undefined value here causes illegal behavior4085// :125:27: error: use of undefined value here causes illegal behavior
4092// :131:27: note: when computing vector element at index '0'4086// :125:27: note: when computing vector element at index '0'
4093// :131:27: error: use of undefined value here causes illegal behavior4087// :125:27: error: use of undefined value here causes illegal behavior
4094// :131:27: note: when computing vector element at index '0'4088// :125:27: note: when computing vector element at index '0'
4095// :131:27: error: use of undefined value here causes illegal behavior4089// :125:27: error: use of undefined value here causes illegal behavior
4096// :131:27: note: when computing vector element at index '1'4090// :125:27: note: when computing vector element at index '1'
4097// :131:27: error: use of undefined value here causes illegal behavior4091// :125:27: error: use of undefined value here causes illegal behavior
4098// :131:27: note: when computing vector element at index '0'4092// :125:27: note: when computing vector element at index '0'
4099// :131:27: error: use of undefined value here causes illegal behavior4093// :125:27: error: use of undefined value here causes illegal behavior
4100// :131:27: note: when computing vector element at index '0'4094// :125:27: note: when computing vector element at index '0'
4101// :131:27: error: use of undefined value here causes illegal behavior4095// :125:27: error: use of undefined value here causes illegal behavior
4102// :131:27: note: when computing vector element at index '0'4096// :125:27: note: when computing vector element at index '0'
4103// :131:30: error: use of undefined value here causes illegal behavior4097// :125:30: error: use of undefined value here causes illegal behavior
4104// :131:30: error: use of undefined value here causes illegal behavior4098// :125:30: error: use of undefined value here causes illegal behavior
4105// :131:30: note: when computing vector element at index '0'4099// :125:30: note: when computing vector element at index '0'
4106// :131:30: error: use of undefined value here causes illegal behavior4100// :125:30: error: use of undefined value here causes illegal behavior
4107// :131:30: note: when computing vector element at index '0'4101// :125:30: note: when computing vector element at index '0'
4108// :131:30: error: use of undefined value here causes illegal behavior4102// :125:30: error: use of undefined value here causes illegal behavior
4109// :131:30: note: when computing vector element at index '1'4103// :125:30: note: when computing vector element at index '1'
4110// :131:30: error: use of undefined value here causes illegal behavior4104// :125:30: error: use of undefined value here causes illegal behavior
4111// :131:30: note: when computing vector element at index '0'4105// :125:30: note: when computing vector element at index '0'
4112// :131:30: error: use of undefined value here causes illegal behavior4106// :125:30: error: use of undefined value here causes illegal behavior
4113// :131:30: note: when computing vector element at index '0'4107// :125:30: note: when computing vector element at index '0'
4114// :131:30: error: use of undefined value here causes illegal behavior4108// :125:30: error: use of undefined value here causes illegal behavior
4115// :131:30: error: use of undefined value here causes illegal behavior4109// :125:30: error: use of undefined value here causes illegal behavior
4116// :131:30: note: when computing vector element at index '0'4110// :125:30: note: when computing vector element at index '0'
4117// :131:30: error: use of undefined value here causes illegal behavior4111// :125:30: error: use of undefined value here causes illegal behavior
4118// :131:30: note: when computing vector element at index '0'4112// :125:30: note: when computing vector element at index '0'
4119// :131:30: error: use of undefined value here causes illegal behavior4113// :125:30: error: use of undefined value here causes illegal behavior
4120// :131:30: note: when computing vector element at index '1'4114// :125:30: note: when computing vector element at index '1'
4121// :131:30: error: use of undefined value here causes illegal behavior4115// :125:30: error: use of undefined value here causes illegal behavior
4122// :131:30: note: when computing vector element at index '0'4116// :125:30: note: when computing vector element at index '0'
4123// :131:30: error: use of undefined value here causes illegal behavior4117// :125:30: error: use of undefined value here causes illegal behavior
4124// :131:30: note: when computing vector element at index '0'4118// :125:30: note: when computing vector element at index '0'
4125// :131:30: error: use of undefined value here causes illegal behavior4119// :125:30: error: use of undefined value here causes illegal behavior
4126// :131:30: error: use of undefined value here causes illegal behavior4120// :125:30: error: use of undefined value here causes illegal behavior
4127// :131:30: note: when computing vector element at index '0'4121// :125:30: note: when computing vector element at index '0'
4128// :131:30: error: use of undefined value here causes illegal behavior4122// :125:30: error: use of undefined value here causes illegal behavior
4129// :131:30: note: when computing vector element at index '0'4123// :125:30: note: when computing vector element at index '0'
4130// :131:30: error: use of undefined value here causes illegal behavior4124// :125:30: error: use of undefined value here causes illegal behavior
4131// :131:30: note: when computing vector element at index '1'4125// :125:30: note: when computing vector element at index '1'
4132// :131:30: error: use of undefined value here causes illegal behavior4126// :125:30: error: use of undefined value here causes illegal behavior
4133// :131:30: note: when computing vector element at index '0'4127// :125:30: note: when computing vector element at index '0'
4134// :131:30: error: use of undefined value here causes illegal behavior4128// :125:30: error: use of undefined value here causes illegal behavior
4135// :131:30: note: when computing vector element at index '0'4129// :125:30: note: when computing vector element at index '0'
4136// :131:30: error: use of undefined value here causes illegal behavior4130// :125:30: error: use of undefined value here causes illegal behavior
4137// :131:30: error: use of undefined value here causes illegal behavior4131// :125:30: error: use of undefined value here causes illegal behavior
4138// :131:30: note: when computing vector element at index '0'4132// :125:30: note: when computing vector element at index '0'
4139// :131:30: error: use of undefined value here causes illegal behavior4133// :125:30: error: use of undefined value here causes illegal behavior
4140// :131:30: note: when computing vector element at index '0'4134// :125:30: note: when computing vector element at index '0'
4141// :131:30: error: use of undefined value here causes illegal behavior4135// :125:30: error: use of undefined value here causes illegal behavior
4142// :131:30: note: when computing vector element at index '1'4136// :125:30: note: when computing vector element at index '1'
4143// :131:30: error: use of undefined value here causes illegal behavior4137// :125:30: error: use of undefined value here causes illegal behavior
4144// :131:30: note: when computing vector element at index '0'4138// :125:30: note: when computing vector element at index '0'
4145// :131:30: error: use of undefined value here causes illegal behavior4139// :125:30: error: use of undefined value here causes illegal behavior
4146// :131:30: note: when computing vector element at index '0'4140// :125:30: note: when computing vector element at index '0'
4147// :131:30: error: use of undefined value here causes illegal behavior4141// :125:30: error: use of undefined value here causes illegal behavior
4148// :131:30: error: use of undefined value here causes illegal behavior4142// :125:30: error: use of undefined value here causes illegal behavior
4149// :131:30: note: when computing vector element at index '0'4143// :125:30: note: when computing vector element at index '0'
4150// :131:30: error: use of undefined value here causes illegal behavior4144// :125:30: error: use of undefined value here causes illegal behavior
4151// :131:30: note: when computing vector element at index '0'4145// :125:30: note: when computing vector element at index '0'
4152// :131:30: error: use of undefined value here causes illegal behavior4146// :125:30: error: use of undefined value here causes illegal behavior
4153// :131:30: note: when computing vector element at index '1'4147// :125:30: note: when computing vector element at index '1'
4154// :131:30: error: use of undefined value here causes illegal behavior4148// :125:30: error: use of undefined value here causes illegal behavior
4155// :131:30: note: when computing vector element at index '0'4149// :125:30: note: when computing vector element at index '0'
4156// :131:30: error: use of undefined value here causes illegal behavior4150// :125:30: error: use of undefined value here causes illegal behavior
4157// :131:30: note: when computing vector element at index '0'4151// :125:30: note: when computing vector element at index '0'
4158// :131:30: error: use of undefined value here causes illegal behavior4152// :125:30: error: use of undefined value here causes illegal behavior
4159// :131:30: error: use of undefined value here causes illegal behavior4153// :125:30: error: use of undefined value here causes illegal behavior
4160// :131:30: note: when computing vector element at index '0'4154// :125:30: note: when computing vector element at index '0'
4161// :131:30: error: use of undefined value here causes illegal behavior4155// :125:30: error: use of undefined value here causes illegal behavior
4162// :131:30: note: when computing vector element at index '0'4156// :125:30: note: when computing vector element at index '0'
4163// :131:30: error: use of undefined value here causes illegal behavior4157// :125:30: error: use of undefined value here causes illegal behavior
4164// :131:30: note: when computing vector element at index '1'4158// :125:30: note: when computing vector element at index '1'
4165// :131:30: error: use of undefined value here causes illegal behavior4159// :125:30: error: use of undefined value here causes illegal behavior
4166// :131:30: note: when computing vector element at index '0'4160// :125:30: note: when computing vector element at index '0'
4167// :131:30: error: use of undefined value here causes illegal behavior4161// :125:30: error: use of undefined value here causes illegal behavior
4168// :131:30: note: when computing vector element at index '0'4162// :125:30: note: when computing vector element at index '0'
4169// :131:30: error: use of undefined value here causes illegal behavior4163// :125:30: error: use of undefined value here causes illegal behavior
4170// :131:30: error: use of undefined value here causes illegal behavior4164// :125:30: error: use of undefined value here causes illegal behavior
4171// :131:30: note: when computing vector element at index '0'4165// :125:30: note: when computing vector element at index '0'
4172// :131:30: error: use of undefined value here causes illegal behavior4166// :125:30: error: use of undefined value here causes illegal behavior
4173// :131:30: note: when computing vector element at index '0'4167// :125:30: note: when computing vector element at index '0'
4174// :131:30: error: use of undefined value here causes illegal behavior4168// :125:30: error: use of undefined value here causes illegal behavior
4175// :131:30: note: when computing vector element at index '1'4169// :125:30: note: when computing vector element at index '1'
4176// :131:30: error: use of undefined value here causes illegal behavior4170// :125:30: error: use of undefined value here causes illegal behavior
4177// :131:30: note: when computing vector element at index '0'4171// :125:30: note: when computing vector element at index '0'
4178// :131:30: error: use of undefined value here causes illegal behavior4172// :125:30: error: use of undefined value here causes illegal behavior
4179// :131:30: note: when computing vector element at index '0'4173// :125:30: note: when computing vector element at index '0'
4180// :131:30: error: use of undefined value here causes illegal behavior4174// :125:30: error: use of undefined value here causes illegal behavior
4181// :131:30: error: use of undefined value here causes illegal behavior4175// :125:30: error: use of undefined value here causes illegal behavior
4182// :131:30: note: when computing vector element at index '0'4176// :125:30: note: when computing vector element at index '0'
4183// :131:30: error: use of undefined value here causes illegal behavior4177// :125:30: error: use of undefined value here causes illegal behavior
4184// :131:30: note: when computing vector element at index '0'4178// :125:30: note: when computing vector element at index '0'
4185// :131:30: error: use of undefined value here causes illegal behavior4179// :125:30: error: use of undefined value here causes illegal behavior
4186// :131:30: note: when computing vector element at index '1'4180// :125:30: note: when computing vector element at index '1'
4187// :131:30: error: use of undefined value here causes illegal behavior4181// :125:30: error: use of undefined value here causes illegal behavior
4188// :131:30: note: when computing vector element at index '0'4182// :125:30: note: when computing vector element at index '0'
4189// :131:30: error: use of undefined value here causes illegal behavior4183// :125:30: error: use of undefined value here causes illegal behavior
4190// :131:30: note: when computing vector element at index '0'4184// :125:30: note: when computing vector element at index '0'
4191// :131:30: error: use of undefined value here causes illegal behavior4185// :125:30: error: use of undefined value here causes illegal behavior
4192// :131:30: error: use of undefined value here causes illegal behavior4186// :125:30: error: use of undefined value here causes illegal behavior
4193// :131:30: note: when computing vector element at index '0'4187// :125:30: note: when computing vector element at index '0'
4194// :131:30: error: use of undefined value here causes illegal behavior4188// :125:30: error: use of undefined value here causes illegal behavior
4195// :131:30: note: when computing vector element at index '0'4189// :125:30: note: when computing vector element at index '0'
4196// :131:30: error: use of undefined value here causes illegal behavior4190// :125:30: error: use of undefined value here causes illegal behavior
4197// :131:30: note: when computing vector element at index '1'4191// :125:30: note: when computing vector element at index '1'
4198// :131:30: error: use of undefined value here causes illegal behavior4192// :125:30: error: use of undefined value here causes illegal behavior
4199// :131:30: note: when computing vector element at index '0'4193// :125:30: note: when computing vector element at index '0'
4200// :131:30: error: use of undefined value here causes illegal behavior4194// :125:30: error: use of undefined value here causes illegal behavior
4201// :131:30: note: when computing vector element at index '0'4195// :125:30: note: when computing vector element at index '0'
4202// :131:30: error: use of undefined value here causes illegal behavior4196// :125:30: error: use of undefined value here causes illegal behavior
4203// :131:30: error: use of undefined value here causes illegal behavior4197// :125:30: error: use of undefined value here causes illegal behavior
4204// :131:30: note: when computing vector element at index '0'4198// :125:30: note: when computing vector element at index '0'
4205// :131:30: error: use of undefined value here causes illegal behavior4199// :125:30: error: use of undefined value here causes illegal behavior
4206// :131:30: note: when computing vector element at index '0'4200// :125:30: note: when computing vector element at index '0'
4207// :131:30: error: use of undefined value here causes illegal behavior4201// :125:30: error: use of undefined value here causes illegal behavior
4208// :131:30: note: when computing vector element at index '1'4202// :125:30: note: when computing vector element at index '1'
4209// :131:30: error: use of undefined value here causes illegal behavior4203// :125:30: error: use of undefined value here causes illegal behavior
4210// :131:30: note: when computing vector element at index '0'4204// :125:30: note: when computing vector element at index '0'
4211// :131:30: error: use of undefined value here causes illegal behavior4205// :125:30: error: use of undefined value here causes illegal behavior
4212// :131:30: note: when computing vector element at index '0'4206// :125:30: note: when computing vector element at index '0'
4213// :131:30: error: use of undefined value here causes illegal behavior4207// :125:30: error: use of undefined value here causes illegal behavior
4214// :131:30: error: use of undefined value here causes illegal behavior4208// :125:30: error: use of undefined value here causes illegal behavior
4215// :131:30: note: when computing vector element at index '0'4209// :125:30: note: when computing vector element at index '0'
4216// :131:30: error: use of undefined value here causes illegal behavior4210// :125:30: error: use of undefined value here causes illegal behavior
4217// :131:30: note: when computing vector element at index '0'4211// :125:30: note: when computing vector element at index '0'
4218// :131:30: error: use of undefined value here causes illegal behavior4212// :125:30: error: use of undefined value here causes illegal behavior
4219// :131:30: note: when computing vector element at index '1'4213// :125:30: note: when computing vector element at index '1'
4220// :131:30: error: use of undefined value here causes illegal behavior4214// :125:30: error: use of undefined value here causes illegal behavior
4221// :131:30: note: when computing vector element at index '0'4215// :125:30: note: when computing vector element at index '0'
4222// :131:30: error: use of undefined value here causes illegal behavior4216// :125:30: error: use of undefined value here causes illegal behavior
4223// :131:30: note: when computing vector element at index '0'4217// :125:30: note: when computing vector element at index '0'
4224// :135:27: error: use of undefined value here causes illegal behavior4218// :129:27: error: use of undefined value here causes illegal behavior
4225// :135:27: error: use of undefined value here causes illegal behavior4219// :129:27: error: use of undefined value here causes illegal behavior
4226// :135:27: note: when computing vector element at index '0'4220// :129:27: note: when computing vector element at index '0'
4227// :135:27: error: use of undefined value here causes illegal behavior4221// :129:27: error: use of undefined value here causes illegal behavior
4228// :135:27: note: when computing vector element at index '0'4222// :129:27: note: when computing vector element at index '0'
4229// :135:27: error: use of undefined value here causes illegal behavior4223// :129:27: error: use of undefined value here causes illegal behavior
4230// :135:27: note: when computing vector element at index '0'4224// :129:27: note: when computing vector element at index '0'
4231// :135:27: error: use of undefined value here causes illegal behavior4225// :129:27: error: use of undefined value here causes illegal behavior
4232// :135:27: note: when computing vector element at index '1'4226// :129:27: note: when computing vector element at index '1'
4233// :135:27: error: use of undefined value here causes illegal behavior4227// :129:27: error: use of undefined value here causes illegal behavior
4234// :135:27: note: when computing vector element at index '0'4228// :129:27: note: when computing vector element at index '0'
4235// :135:27: error: use of undefined value here causes illegal behavior4229// :129:27: error: use of undefined value here causes illegal behavior
4236// :135:27: note: when computing vector element at index '0'4230// :129:27: note: when computing vector element at index '0'
4237// :135:27: error: use of undefined value here causes illegal behavior4231// :129:27: error: use of undefined value here causes illegal behavior
4238// :135:27: note: when computing vector element at index '0'4232// :129:27: note: when computing vector element at index '0'
4239// :135:27: error: use of undefined value here causes illegal behavior4233// :129:27: error: use of undefined value here causes illegal behavior
4240// :135:27: error: use of undefined value here causes illegal behavior4234// :129:27: error: use of undefined value here causes illegal behavior
4241// :135:27: note: when computing vector element at index '0'4235// :129:27: note: when computing vector element at index '0'
4242// :135:27: error: use of undefined value here causes illegal behavior4236// :129:27: error: use of undefined value here causes illegal behavior
4243// :135:27: note: when computing vector element at index '0'4237// :129:27: note: when computing vector element at index '0'
4244// :135:27: error: use of undefined value here causes illegal behavior4238// :129:27: error: use of undefined value here causes illegal behavior
4245// :135:27: note: when computing vector element at index '0'4239// :129:27: note: when computing vector element at index '0'
4246// :135:27: error: use of undefined value here causes illegal behavior4240// :129:27: error: use of undefined value here causes illegal behavior
4247// :135:27: note: when computing vector element at index '1'4241// :129:27: note: when computing vector element at index '1'
4248// :135:27: error: use of undefined value here causes illegal behavior4242// :129:27: error: use of undefined value here causes illegal behavior
4249// :135:27: note: when computing vector element at index '0'4243// :129:27: note: when computing vector element at index '0'
4250// :135:27: error: use of undefined value here causes illegal behavior4244// :129:27: error: use of undefined value here causes illegal behavior
4251// :135:27: note: when computing vector element at index '0'4245// :129:27: note: when computing vector element at index '0'
4252// :135:27: error: use of undefined value here causes illegal behavior4246// :129:27: error: use of undefined value here causes illegal behavior
4253// :135:27: note: when computing vector element at index '0'4247// :129:27: note: when computing vector element at index '0'
4254// :135:27: error: use of undefined value here causes illegal behavior4248// :129:27: error: use of undefined value here causes illegal behavior
4255// :135:27: error: use of undefined value here causes illegal behavior4249// :129:27: error: use of undefined value here causes illegal behavior
4256// :135:27: note: when computing vector element at index '0'4250// :129:27: note: when computing vector element at index '0'
4257// :135:27: error: use of undefined value here causes illegal behavior4251// :129:27: error: use of undefined value here causes illegal behavior
4258// :135:27: note: when computing vector element at index '0'4252// :129:27: note: when computing vector element at index '0'
4259// :135:27: error: use of undefined value here causes illegal behavior4253// :129:27: error: use of undefined value here causes illegal behavior
4260// :135:27: note: when computing vector element at index '0'4254// :129:27: note: when computing vector element at index '0'
4261// :135:27: error: use of undefined value here causes illegal behavior4255// :129:27: error: use of undefined value here causes illegal behavior
4262// :135:27: note: when computing vector element at index '1'4256// :129:27: note: when computing vector element at index '1'
4263// :135:27: error: use of undefined value here causes illegal behavior4257// :129:27: error: use of undefined value here causes illegal behavior
4264// :135:27: note: when computing vector element at index '0'4258// :129:27: note: when computing vector element at index '0'
4265// :135:27: error: use of undefined value here causes illegal behavior4259// :129:27: error: use of undefined value here causes illegal behavior
4266// :135:27: note: when computing vector element at index '0'4260// :129:27: note: when computing vector element at index '0'
4267// :135:27: error: use of undefined value here causes illegal behavior4261// :129:27: error: use of undefined value here causes illegal behavior
4268// :135:27: note: when computing vector element at index '0'4262// :129:27: note: when computing vector element at index '0'
4269// :135:27: error: use of undefined value here causes illegal behavior4263// :129:27: error: use of undefined value here causes illegal behavior
4270// :135:27: error: use of undefined value here causes illegal behavior4264// :129:27: error: use of undefined value here causes illegal behavior
4271// :135:27: note: when computing vector element at index '0'4265// :129:27: note: when computing vector element at index '0'
4272// :135:27: error: use of undefined value here causes illegal behavior4266// :129:27: error: use of undefined value here causes illegal behavior
4273// :135:27: note: when computing vector element at index '0'4267// :129:27: note: when computing vector element at index '0'
4274// :135:27: error: use of undefined value here causes illegal behavior4268// :129:27: error: use of undefined value here causes illegal behavior
4275// :135:27: note: when computing vector element at index '0'4269// :129:27: note: when computing vector element at index '0'
4276// :135:27: error: use of undefined value here causes illegal behavior4270// :129:27: error: use of undefined value here causes illegal behavior
4277// :135:27: note: when computing vector element at index '1'4271// :129:27: note: when computing vector element at index '1'
4278// :135:27: error: use of undefined value here causes illegal behavior4272// :129:27: error: use of undefined value here causes illegal behavior
4279// :135:27: note: when computing vector element at index '0'4273// :129:27: note: when computing vector element at index '0'
4280// :135:27: error: use of undefined value here causes illegal behavior4274// :129:27: error: use of undefined value here causes illegal behavior
4281// :135:27: note: when computing vector element at index '0'4275// :129:27: note: when computing vector element at index '0'
4282// :135:27: error: use of undefined value here causes illegal behavior4276// :129:27: error: use of undefined value here causes illegal behavior
4283// :135:27: note: when computing vector element at index '0'4277// :129:27: note: when computing vector element at index '0'
4284// :135:27: error: use of undefined value here causes illegal behavior4278// :129:27: error: use of undefined value here causes illegal behavior
4285// :135:27: error: use of undefined value here causes illegal behavior4279// :129:27: error: use of undefined value here causes illegal behavior
4286// :135:27: note: when computing vector element at index '0'4280// :129:27: note: when computing vector element at index '0'
4287// :135:27: error: use of undefined value here causes illegal behavior4281// :129:27: error: use of undefined value here causes illegal behavior
4288// :135:27: note: when computing vector element at index '0'4282// :129:27: note: when computing vector element at index '0'
4289// :135:27: error: use of undefined value here causes illegal behavior4283// :129:27: error: use of undefined value here causes illegal behavior
4290// :135:27: note: when computing vector element at index '0'4284// :129:27: note: when computing vector element at index '0'
4291// :135:27: error: use of undefined value here causes illegal behavior4285// :129:27: error: use of undefined value here causes illegal behavior
4292// :135:27: note: when computing vector element at index '1'4286// :129:27: note: when computing vector element at index '1'
4293// :135:27: error: use of undefined value here causes illegal behavior4287// :129:27: error: use of undefined value here causes illegal behavior
4294// :135:27: note: when computing vector element at index '0'4288// :129:27: note: when computing vector element at index '0'
4295// :135:27: error: use of undefined value here causes illegal behavior4289// :129:27: error: use of undefined value here causes illegal behavior
4296// :135:27: note: when computing vector element at index '0'4290// :129:27: note: when computing vector element at index '0'
4297// :135:27: error: use of undefined value here causes illegal behavior4291// :129:27: error: use of undefined value here causes illegal behavior
4298// :135:27: note: when computing vector element at index '0'4292// :129:27: note: when computing vector element at index '0'
4299// :135:27: error: use of undefined value here causes illegal behavior4293// :129:27: error: use of undefined value here causes illegal behavior
4300// :135:27: error: use of undefined value here causes illegal behavior4294// :129:27: error: use of undefined value here causes illegal behavior
4301// :135:27: note: when computing vector element at index '0'4295// :129:27: note: when computing vector element at index '0'
4302// :135:27: error: use of undefined value here causes illegal behavior4296// :129:27: error: use of undefined value here causes illegal behavior
4303// :135:27: note: when computing vector element at index '0'4297// :129:27: note: when computing vector element at index '0'
4304// :135:27: error: use of undefined value here causes illegal behavior4298// :129:27: error: use of undefined value here causes illegal behavior
4305// :135:27: note: when computing vector element at index '0'4299// :129:27: note: when computing vector element at index '0'
4306// :135:27: error: use of undefined value here causes illegal behavior4300// :129:27: error: use of undefined value here causes illegal behavior
4307// :135:27: note: when computing vector element at index '1'4301// :129:27: note: when computing vector element at index '1'
4308// :135:27: error: use of undefined value here causes illegal behavior4302// :129:27: error: use of undefined value here causes illegal behavior
4309// :135:27: note: when computing vector element at index '0'4303// :129:27: note: when computing vector element at index '0'
4310// :135:27: error: use of undefined value here causes illegal behavior4304// :129:27: error: use of undefined value here causes illegal behavior
4311// :135:27: note: when computing vector element at index '0'4305// :129:27: note: when computing vector element at index '0'
4312// :135:27: error: use of undefined value here causes illegal behavior4306// :129:27: error: use of undefined value here causes illegal behavior
4313// :135:27: note: when computing vector element at index '0'4307// :129:27: note: when computing vector element at index '0'
4314// :135:27: error: use of undefined value here causes illegal behavior4308// :129:27: error: use of undefined value here causes illegal behavior
4315// :135:27: error: use of undefined value here causes illegal behavior4309// :129:27: error: use of undefined value here causes illegal behavior
4316// :135:27: note: when computing vector element at index '0'4310// :129:27: note: when computing vector element at index '0'
4317// :135:27: error: use of undefined value here causes illegal behavior4311// :129:27: error: use of undefined value here causes illegal behavior
4318// :135:27: note: when computing vector element at index '0'4312// :129:27: note: when computing vector element at index '0'
4319// :135:27: error: use of undefined value here causes illegal behavior4313// :129:27: error: use of undefined value here causes illegal behavior
4320// :135:27: note: when computing vector element at index '0'4314// :129:27: note: when computing vector element at index '0'
4321// :135:27: error: use of undefined value here causes illegal behavior4315// :129:27: error: use of undefined value here causes illegal behavior
4322// :135:27: note: when computing vector element at index '1'4316// :129:27: note: when computing vector element at index '1'
4323// :135:27: error: use of undefined value here causes illegal behavior4317// :129:27: error: use of undefined value here causes illegal behavior
4324// :135:27: note: when computing vector element at index '0'4318// :129:27: note: when computing vector element at index '0'
4325// :135:27: error: use of undefined value here causes illegal behavior4319// :129:27: error: use of undefined value here causes illegal behavior
4326// :135:27: note: when computing vector element at index '0'4320// :129:27: note: when computing vector element at index '0'
4327// :135:27: error: use of undefined value here causes illegal behavior4321// :129:27: error: use of undefined value here causes illegal behavior
4328// :135:27: note: when computing vector element at index '0'4322// :129:27: note: when computing vector element at index '0'
4329// :135:27: error: use of undefined value here causes illegal behavior4323// :129:27: error: use of undefined value here causes illegal behavior
4330// :135:27: error: use of undefined value here causes illegal behavior4324// :129:27: error: use of undefined value here causes illegal behavior
4331// :135:27: note: when computing vector element at index '0'4325// :129:27: note: when computing vector element at index '0'
4332// :135:27: error: use of undefined value here causes illegal behavior4326// :129:27: error: use of undefined value here causes illegal behavior
4333// :135:27: note: when computing vector element at index '0'4327// :129:27: note: when computing vector element at index '0'
4334// :135:27: error: use of undefined value here causes illegal behavior4328// :129:27: error: use of undefined value here causes illegal behavior
4335// :135:27: note: when computing vector element at index '0'4329// :129:27: note: when computing vector element at index '0'
4336// :135:27: error: use of undefined value here causes illegal behavior4330// :129:27: error: use of undefined value here causes illegal behavior
4337// :135:27: note: when computing vector element at index '1'4331// :129:27: note: when computing vector element at index '1'
4338// :135:27: error: use of undefined value here causes illegal behavior4332// :129:27: error: use of undefined value here causes illegal behavior
4339// :135:27: note: when computing vector element at index '0'4333// :129:27: note: when computing vector element at index '0'
4340// :135:27: error: use of undefined value here causes illegal behavior4334// :129:27: error: use of undefined value here causes illegal behavior
4341// :135:27: note: when computing vector element at index '0'4335// :129:27: note: when computing vector element at index '0'
4342// :135:27: error: use of undefined value here causes illegal behavior4336// :129:27: error: use of undefined value here causes illegal behavior
4343// :135:27: note: when computing vector element at index '0'4337// :129:27: note: when computing vector element at index '0'
4344// :135:27: error: use of undefined value here causes illegal behavior4338// :129:27: error: use of undefined value here causes illegal behavior
4345// :135:27: error: use of undefined value here causes illegal behavior4339// :129:27: error: use of undefined value here causes illegal behavior
4346// :135:27: note: when computing vector element at index '0'4340// :129:27: note: when computing vector element at index '0'
4347// :135:27: error: use of undefined value here causes illegal behavior4341// :129:27: error: use of undefined value here causes illegal behavior
4348// :135:27: note: when computing vector element at index '0'4342// :129:27: note: when computing vector element at index '0'
4349// :135:27: error: use of undefined value here causes illegal behavior4343// :129:27: error: use of undefined value here causes illegal behavior
4350// :135:27: note: when computing vector element at index '0'4344// :129:27: note: when computing vector element at index '0'
4351// :135:27: error: use of undefined value here causes illegal behavior4345// :129:27: error: use of undefined value here causes illegal behavior
4352// :135:27: note: when computing vector element at index '1'4346// :129:27: note: when computing vector element at index '1'
4353// :135:27: error: use of undefined value here causes illegal behavior4347// :129:27: error: use of undefined value here causes illegal behavior
4354// :135:27: note: when computing vector element at index '0'4348// :129:27: note: when computing vector element at index '0'
4355// :135:27: error: use of undefined value here causes illegal behavior4349// :129:27: error: use of undefined value here causes illegal behavior
4356// :135:27: note: when computing vector element at index '0'4350// :129:27: note: when computing vector element at index '0'
4357// :135:27: error: use of undefined value here causes illegal behavior4351// :129:27: error: use of undefined value here causes illegal behavior
4358// :135:27: note: when computing vector element at index '0'4352// :129:27: note: when computing vector element at index '0'
4359// :135:27: error: use of undefined value here causes illegal behavior4353// :129:27: error: use of undefined value here causes illegal behavior
4360// :135:27: error: use of undefined value here causes illegal behavior4354// :129:27: error: use of undefined value here causes illegal behavior
4361// :135:27: note: when computing vector element at index '0'4355// :129:27: note: when computing vector element at index '0'
4362// :135:27: error: use of undefined value here causes illegal behavior4356// :129:27: error: use of undefined value here causes illegal behavior
4363// :135:27: note: when computing vector element at index '0'4357// :129:27: note: when computing vector element at index '0'
4364// :135:27: error: use of undefined value here causes illegal behavior4358// :129:27: error: use of undefined value here causes illegal behavior
4365// :135:27: note: when computing vector element at index '0'4359// :129:27: note: when computing vector element at index '0'
4366// :135:27: error: use of undefined value here causes illegal behavior4360// :129:27: error: use of undefined value here causes illegal behavior
4367// :135:27: note: when computing vector element at index '1'4361// :129:27: note: when computing vector element at index '1'
4368// :135:27: error: use of undefined value here causes illegal behavior4362// :129:27: error: use of undefined value here causes illegal behavior
4369// :135:27: note: when computing vector element at index '0'4363// :129:27: note: when computing vector element at index '0'
4370// :135:27: error: use of undefined value here causes illegal behavior4364// :129:27: error: use of undefined value here causes illegal behavior
4371// :135:27: note: when computing vector element at index '0'4365// :129:27: note: when computing vector element at index '0'
4372// :135:27: error: use of undefined value here causes illegal behavior4366// :129:27: error: use of undefined value here causes illegal behavior
4373// :135:27: note: when computing vector element at index '0'4367// :129:27: note: when computing vector element at index '0'
4374// :135:27: error: use of undefined value here causes illegal behavior4368// :129:27: error: use of undefined value here causes illegal behavior
4375// :135:27: error: use of undefined value here causes illegal behavior4369// :129:27: error: use of undefined value here causes illegal behavior
4376// :135:27: note: when computing vector element at index '0'4370// :129:27: note: when computing vector element at index '0'
4377// :135:27: error: use of undefined value here causes illegal behavior4371// :129:27: error: use of undefined value here causes illegal behavior
4378// :135:27: note: when computing vector element at index '0'4372// :129:27: note: when computing vector element at index '0'
4379// :135:27: error: use of undefined value here causes illegal behavior4373// :129:27: error: use of undefined value here causes illegal behavior
4380// :135:27: note: when computing vector element at index '0'4374// :129:27: note: when computing vector element at index '0'
4381// :135:27: error: use of undefined value here causes illegal behavior4375// :129:27: error: use of undefined value here causes illegal behavior
4382// :135:27: note: when computing vector element at index '1'4376// :129:27: note: when computing vector element at index '1'
4383// :135:27: error: use of undefined value here causes illegal behavior4377// :129:27: error: use of undefined value here causes illegal behavior
4384// :135:27: note: when computing vector element at index '0'4378// :129:27: note: when computing vector element at index '0'
4385// :135:27: error: use of undefined value here causes illegal behavior4379// :129:27: error: use of undefined value here causes illegal behavior
4386// :135:27: note: when computing vector element at index '0'4380// :129:27: note: when computing vector element at index '0'
4387// :135:27: error: use of undefined value here causes illegal behavior4381// :129:27: error: use of undefined value here causes illegal behavior
4388// :135:27: note: when computing vector element at index '0'4382// :129:27: note: when computing vector element at index '0'
4389// :135:30: error: use of undefined value here causes illegal behavior4383// :129:30: error: use of undefined value here causes illegal behavior
4390// :135:30: error: use of undefined value here causes illegal behavior4384// :129:30: error: use of undefined value here causes illegal behavior
4391// :135:30: note: when computing vector element at index '0'4385// :129:30: note: when computing vector element at index '0'
4392// :135:30: error: use of undefined value here causes illegal behavior4386// :129:30: error: use of undefined value here causes illegal behavior
4393// :135:30: note: when computing vector element at index '0'4387// :129:30: note: when computing vector element at index '0'
4394// :135:30: error: use of undefined value here causes illegal behavior4388// :129:30: error: use of undefined value here causes illegal behavior
4395// :135:30: note: when computing vector element at index '1'4389// :129:30: note: when computing vector element at index '1'
4396// :135:30: error: use of undefined value here causes illegal behavior4390// :129:30: error: use of undefined value here causes illegal behavior
4397// :135:30: note: when computing vector element at index '0'4391// :129:30: note: when computing vector element at index '0'
4398// :135:30: error: use of undefined value here causes illegal behavior4392// :129:30: error: use of undefined value here causes illegal behavior
4399// :135:30: note: when computing vector element at index '0'4393// :129:30: note: when computing vector element at index '0'
4400// :135:30: error: use of undefined value here causes illegal behavior4394// :129:30: error: use of undefined value here causes illegal behavior
4401// :135:30: error: use of undefined value here causes illegal behavior4395// :129:30: error: use of undefined value here causes illegal behavior
4402// :135:30: note: when computing vector element at index '0'4396// :129:30: note: when computing vector element at index '0'
4403// :135:30: error: use of undefined value here causes illegal behavior4397// :129:30: error: use of undefined value here causes illegal behavior
4404// :135:30: note: when computing vector element at index '0'4398// :129:30: note: when computing vector element at index '0'
4405// :135:30: error: use of undefined value here causes illegal behavior4399// :129:30: error: use of undefined value here causes illegal behavior
4406// :135:30: note: when computing vector element at index '1'4400// :129:30: note: when computing vector element at index '1'
4407// :135:30: error: use of undefined value here causes illegal behavior4401// :129:30: error: use of undefined value here causes illegal behavior
4408// :135:30: note: when computing vector element at index '0'4402// :129:30: note: when computing vector element at index '0'
4409// :135:30: error: use of undefined value here causes illegal behavior4403// :129:30: error: use of undefined value here causes illegal behavior
4410// :135:30: note: when computing vector element at index '0'4404// :129:30: note: when computing vector element at index '0'
4411// :135:30: error: use of undefined value here causes illegal behavior4405// :129:30: error: use of undefined value here causes illegal behavior
4412// :135:30: error: use of undefined value here causes illegal behavior4406// :129:30: error: use of undefined value here causes illegal behavior
4413// :135:30: note: when computing vector element at index '0'4407// :129:30: note: when computing vector element at index '0'
4414// :135:30: error: use of undefined value here causes illegal behavior4408// :129:30: error: use of undefined value here causes illegal behavior
4415// :135:30: note: when computing vector element at index '0'4409// :129:30: note: when computing vector element at index '0'
4416// :135:30: error: use of undefined value here causes illegal behavior4410// :129:30: error: use of undefined value here causes illegal behavior
4417// :135:30: note: when computing vector element at index '1'4411// :129:30: note: when computing vector element at index '1'
4418// :135:30: error: use of undefined value here causes illegal behavior4412// :129:30: error: use of undefined value here causes illegal behavior
4419// :135:30: note: when computing vector element at index '0'4413// :129:30: note: when computing vector element at index '0'
4420// :135:30: error: use of undefined value here causes illegal behavior4414// :129:30: error: use of undefined value here causes illegal behavior
4421// :135:30: note: when computing vector element at index '0'4415// :129:30: note: when computing vector element at index '0'
4422// :135:30: error: use of undefined value here causes illegal behavior4416// :129:30: error: use of undefined value here causes illegal behavior
4423// :135:30: error: use of undefined value here causes illegal behavior4417// :129:30: error: use of undefined value here causes illegal behavior
4424// :135:30: note: when computing vector element at index '0'4418// :129:30: note: when computing vector element at index '0'
4425// :135:30: error: use of undefined value here causes illegal behavior4419// :129:30: error: use of undefined value here causes illegal behavior
4426// :135:30: note: when computing vector element at index '0'4420// :129:30: note: when computing vector element at index '0'
4427// :135:30: error: use of undefined value here causes illegal behavior4421// :129:30: error: use of undefined value here causes illegal behavior
4428// :135:30: note: when computing vector element at index '1'4422// :129:30: note: when computing vector element at index '1'
4429// :135:30: error: use of undefined value here causes illegal behavior4423// :129:30: error: use of undefined value here causes illegal behavior
4430// :135:30: note: when computing vector element at index '0'4424// :129:30: note: when computing vector element at index '0'
4431// :135:30: error: use of undefined value here causes illegal behavior4425// :129:30: error: use of undefined value here causes illegal behavior
4432// :135:30: note: when computing vector element at index '0'4426// :129:30: note: when computing vector element at index '0'
4433// :135:30: error: use of undefined value here causes illegal behavior4427// :129:30: error: use of undefined value here causes illegal behavior
4434// :135:30: error: use of undefined value here causes illegal behavior4428// :129:30: error: use of undefined value here causes illegal behavior
4435// :135:30: note: when computing vector element at index '0'4429// :129:30: note: when computing vector element at index '0'
4436// :135:30: error: use of undefined value here causes illegal behavior4430// :129:30: error: use of undefined value here causes illegal behavior
4437// :135:30: note: when computing vector element at index '0'4431// :129:30: note: when computing vector element at index '0'
4438// :135:30: error: use of undefined value here causes illegal behavior4432// :129:30: error: use of undefined value here causes illegal behavior
4439// :135:30: note: when computing vector element at index '1'4433// :129:30: note: when computing vector element at index '1'
4440// :135:30: error: use of undefined value here causes illegal behavior4434// :129:30: error: use of undefined value here causes illegal behavior
4441// :135:30: note: when computing vector element at index '0'4435// :129:30: note: when computing vector element at index '0'
4442// :135:30: error: use of undefined value here causes illegal behavior4436// :129:30: error: use of undefined value here causes illegal behavior
4443// :135:30: note: when computing vector element at index '0'4437// :129:30: note: when computing vector element at index '0'
4444// :135:30: error: use of undefined value here causes illegal behavior4438// :129:30: error: use of undefined value here causes illegal behavior
4445// :135:30: error: use of undefined value here causes illegal behavior4439// :129:30: error: use of undefined value here causes illegal behavior
4446// :135:30: note: when computing vector element at index '0'4440// :129:30: note: when computing vector element at index '0'
4447// :135:30: error: use of undefined value here causes illegal behavior4441// :129:30: error: use of undefined value here causes illegal behavior
4448// :135:30: note: when computing vector element at index '0'4442// :129:30: note: when computing vector element at index '0'
4449// :135:30: error: use of undefined value here causes illegal behavior4443// :129:30: error: use of undefined value here causes illegal behavior
4450// :135:30: note: when computing vector element at index '1'4444// :129:30: note: when computing vector element at index '1'
4451// :135:30: error: use of undefined value here causes illegal behavior4445// :129:30: error: use of undefined value here causes illegal behavior
4452// :135:30: note: when computing vector element at index '0'4446// :129:30: note: when computing vector element at index '0'
4453// :135:30: error: use of undefined value here causes illegal behavior4447// :129:30: error: use of undefined value here causes illegal behavior
4454// :135:30: note: when computing vector element at index '0'4448// :129:30: note: when computing vector element at index '0'
4455// :135:30: error: use of undefined value here causes illegal behavior4449// :129:30: error: use of undefined value here causes illegal behavior
4456// :135:30: error: use of undefined value here causes illegal behavior4450// :129:30: error: use of undefined value here causes illegal behavior
4457// :135:30: note: when computing vector element at index '0'4451// :129:30: note: when computing vector element at index '0'
4458// :135:30: error: use of undefined value here causes illegal behavior4452// :129:30: error: use of undefined value here causes illegal behavior
4459// :135:30: note: when computing vector element at index '0'4453// :129:30: note: when computing vector element at index '0'
4460// :135:30: error: use of undefined value here causes illegal behavior4454// :129:30: error: use of undefined value here causes illegal behavior
4461// :135:30: note: when computing vector element at index '1'4455// :129:30: note: when computing vector element at index '1'
4462// :135:30: error: use of undefined value here causes illegal behavior4456// :129:30: error: use of undefined value here causes illegal behavior
4463// :135:30: note: when computing vector element at index '0'4457// :129:30: note: when computing vector element at index '0'
4464// :135:30: error: use of undefined value here causes illegal behavior4458// :129:30: error: use of undefined value here causes illegal behavior
4465// :135:30: note: when computing vector element at index '0'4459// :129:30: note: when computing vector element at index '0'
4466// :135:30: error: use of undefined value here causes illegal behavior4460// :129:30: error: use of undefined value here causes illegal behavior
4467// :135:30: error: use of undefined value here causes illegal behavior4461// :129:30: error: use of undefined value here causes illegal behavior
4468// :135:30: note: when computing vector element at index '0'4462// :129:30: note: when computing vector element at index '0'
4469// :135:30: error: use of undefined value here causes illegal behavior4463// :129:30: error: use of undefined value here causes illegal behavior
4470// :135:30: note: when computing vector element at index '0'4464// :129:30: note: when computing vector element at index '0'
4471// :135:30: error: use of undefined value here causes illegal behavior4465// :129:30: error: use of undefined value here causes illegal behavior
4472// :135:30: note: when computing vector element at index '1'4466// :129:30: note: when computing vector element at index '1'
4473// :135:30: error: use of undefined value here causes illegal behavior4467// :129:30: error: use of undefined value here causes illegal behavior
4474// :135:30: note: when computing vector element at index '0'4468// :129:30: note: when computing vector element at index '0'
4475// :135:30: error: use of undefined value here causes illegal behavior4469// :129:30: error: use of undefined value here causes illegal behavior
4476// :135:30: note: when computing vector element at index '0'4470// :129:30: note: when computing vector element at index '0'
4477// :135:30: error: use of undefined value here causes illegal behavior4471// :129:30: error: use of undefined value here causes illegal behavior
4478// :135:30: error: use of undefined value here causes illegal behavior4472// :129:30: error: use of undefined value here causes illegal behavior
4479// :135:30: note: when computing vector element at index '0'4473// :129:30: note: when computing vector element at index '0'
4480// :135:30: error: use of undefined value here causes illegal behavior4474// :129:30: error: use of undefined value here causes illegal behavior
4481// :135:30: note: when computing vector element at index '0'4475// :129:30: note: when computing vector element at index '0'
4482// :135:30: error: use of undefined value here causes illegal behavior4476// :129:30: error: use of undefined value here causes illegal behavior
4483// :135:30: note: when computing vector element at index '1'4477// :129:30: note: when computing vector element at index '1'
4484// :135:30: error: use of undefined value here causes illegal behavior4478// :129:30: error: use of undefined value here causes illegal behavior
4485// :135:30: note: when computing vector element at index '0'4479// :129:30: note: when computing vector element at index '0'
4486// :135:30: error: use of undefined value here causes illegal behavior4480// :129:30: error: use of undefined value here causes illegal behavior
4487// :135:30: note: when computing vector element at index '0'4481// :129:30: note: when computing vector element at index '0'
4488// :135:30: error: use of undefined value here causes illegal behavior4482// :129:30: error: use of undefined value here causes illegal behavior
4489// :135:30: error: use of undefined value here causes illegal behavior4483// :129:30: error: use of undefined value here causes illegal behavior
4490// :135:30: note: when computing vector element at index '0'4484// :129:30: note: when computing vector element at index '0'
4491// :135:30: error: use of undefined value here causes illegal behavior4485// :129:30: error: use of undefined value here causes illegal behavior
4492// :135:30: note: when computing vector element at index '0'4486// :129:30: note: when computing vector element at index '0'
4493// :135:30: error: use of undefined value here causes illegal behavior4487// :129:30: error: use of undefined value here causes illegal behavior
4494// :135:30: note: when computing vector element at index '1'4488// :129:30: note: when computing vector element at index '1'
4495// :135:30: error: use of undefined value here causes illegal behavior4489// :129:30: error: use of undefined value here causes illegal behavior
4496// :135:30: note: when computing vector element at index '0'4490// :129:30: note: when computing vector element at index '0'
4497// :135:30: error: use of undefined value here causes illegal behavior4491// :129:30: error: use of undefined value here causes illegal behavior
4498// :135:30: note: when computing vector element at index '0'4492// :129:30: note: when computing vector element at index '0'
4499// :135:30: error: use of undefined value here causes illegal behavior4493// :129:30: error: use of undefined value here causes illegal behavior
4500// :135:30: error: use of undefined value here causes illegal behavior4494// :129:30: error: use of undefined value here causes illegal behavior
4501// :135:30: note: when computing vector element at index '0'4495// :129:30: note: when computing vector element at index '0'
4502// :135:30: error: use of undefined value here causes illegal behavior4496// :129:30: error: use of undefined value here causes illegal behavior
4503// :135:30: note: when computing vector element at index '0'4497// :129:30: note: when computing vector element at index '0'
4504// :135:30: error: use of undefined value here causes illegal behavior4498// :129:30: error: use of undefined value here causes illegal behavior
4505// :135:30: note: when computing vector element at index '1'4499// :129:30: note: when computing vector element at index '1'
4506// :135:30: error: use of undefined value here causes illegal behavior4500// :129:30: error: use of undefined value here causes illegal behavior
4507// :135:30: note: when computing vector element at index '0'4501// :129:30: note: when computing vector element at index '0'
4508// :135:30: error: use of undefined value here causes illegal behavior4502// :129:30: error: use of undefined value here causes illegal behavior
4509// :135:30: note: when computing vector element at index '0'4503// :129:30: note: when computing vector element at index '0'
4510// :139:27: error: use of undefined value here causes illegal behavior4504// :133:27: error: use of undefined value here causes illegal behavior
4511// :139:27: error: use of undefined value here causes illegal behavior4505// :133:27: error: use of undefined value here causes illegal behavior
4512// :139:27: note: when computing vector element at index '0'4506// :133:27: note: when computing vector element at index '0'
4513// :139:27: error: use of undefined value here causes illegal behavior4507// :133:27: error: use of undefined value here causes illegal behavior
4514// :139:27: note: when computing vector element at index '0'4508// :133:27: note: when computing vector element at index '0'
4515// :139:27: error: use of undefined value here causes illegal behavior4509// :133:27: error: use of undefined value here causes illegal behavior
4516// :139:27: note: when computing vector element at index '0'4510// :133:27: note: when computing vector element at index '0'
4517// :139:27: error: use of undefined value here causes illegal behavior4511// :133:27: error: use of undefined value here causes illegal behavior
4518// :139:27: note: when computing vector element at index '1'4512// :133:27: note: when computing vector element at index '1'
4519// :139:27: error: use of undefined value here causes illegal behavior4513// :133:27: error: use of undefined value here causes illegal behavior
4520// :139:27: note: when computing vector element at index '0'4514// :133:27: note: when computing vector element at index '0'
4521// :139:27: error: use of undefined value here causes illegal behavior4515// :133:27: error: use of undefined value here causes illegal behavior
4522// :139:27: note: when computing vector element at index '0'4516// :133:27: note: when computing vector element at index '0'
4523// :139:27: error: use of undefined value here causes illegal behavior4517// :133:27: error: use of undefined value here causes illegal behavior
4524// :139:27: note: when computing vector element at index '0'4518// :133:27: note: when computing vector element at index '0'
4525// :139:27: error: use of undefined value here causes illegal behavior4519// :133:27: error: use of undefined value here causes illegal behavior
4526// :139:27: error: use of undefined value here causes illegal behavior4520// :133:27: error: use of undefined value here causes illegal behavior
4527// :139:27: note: when computing vector element at index '0'4521// :133:27: note: when computing vector element at index '0'
4528// :139:27: error: use of undefined value here causes illegal behavior4522// :133:27: error: use of undefined value here causes illegal behavior
4529// :139:27: note: when computing vector element at index '0'4523// :133:27: note: when computing vector element at index '0'
4530// :139:27: error: use of undefined value here causes illegal behavior4524// :133:27: error: use of undefined value here causes illegal behavior
4531// :139:27: note: when computing vector element at index '0'4525// :133:27: note: when computing vector element at index '0'
4532// :139:27: error: use of undefined value here causes illegal behavior4526// :133:27: error: use of undefined value here causes illegal behavior
4533// :139:27: note: when computing vector element at index '1'4527// :133:27: note: when computing vector element at index '1'
4534// :139:27: error: use of undefined value here causes illegal behavior4528// :133:27: error: use of undefined value here causes illegal behavior
4535// :139:27: note: when computing vector element at index '0'4529// :133:27: note: when computing vector element at index '0'
4536// :139:27: error: use of undefined value here causes illegal behavior4530// :133:27: error: use of undefined value here causes illegal behavior
4537// :139:27: note: when computing vector element at index '0'4531// :133:27: note: when computing vector element at index '0'
4538// :139:27: error: use of undefined value here causes illegal behavior4532// :133:27: error: use of undefined value here causes illegal behavior
4539// :139:27: note: when computing vector element at index '0'4533// :133:27: note: when computing vector element at index '0'
4540// :139:27: error: use of undefined value here causes illegal behavior4534// :133:27: error: use of undefined value here causes illegal behavior
4541// :139:27: error: use of undefined value here causes illegal behavior4535// :133:27: error: use of undefined value here causes illegal behavior
4542// :139:27: note: when computing vector element at index '0'4536// :133:27: note: when computing vector element at index '0'
4543// :139:27: error: use of undefined value here causes illegal behavior4537// :133:27: error: use of undefined value here causes illegal behavior
4544// :139:27: note: when computing vector element at index '0'4538// :133:27: note: when computing vector element at index '0'
4545// :139:27: error: use of undefined value here causes illegal behavior4539// :133:27: error: use of undefined value here causes illegal behavior
4546// :139:27: note: when computing vector element at index '0'4540// :133:27: note: when computing vector element at index '0'
4547// :139:27: error: use of undefined value here causes illegal behavior4541// :133:27: error: use of undefined value here causes illegal behavior
4548// :139:27: note: when computing vector element at index '1'4542// :133:27: note: when computing vector element at index '1'
4549// :139:27: error: use of undefined value here causes illegal behavior4543// :133:27: error: use of undefined value here causes illegal behavior
4550// :139:27: note: when computing vector element at index '0'4544// :133:27: note: when computing vector element at index '0'
4551// :139:27: error: use of undefined value here causes illegal behavior4545// :133:27: error: use of undefined value here causes illegal behavior
4552// :139:27: note: when computing vector element at index '0'4546// :133:27: note: when computing vector element at index '0'
4553// :139:27: error: use of undefined value here causes illegal behavior4547// :133:27: error: use of undefined value here causes illegal behavior
4554// :139:27: note: when computing vector element at index '0'4548// :133:27: note: when computing vector element at index '0'
4555// :139:27: error: use of undefined value here causes illegal behavior4549// :133:27: error: use of undefined value here causes illegal behavior
4556// :139:27: error: use of undefined value here causes illegal behavior4550// :133:27: error: use of undefined value here causes illegal behavior
4557// :139:27: note: when computing vector element at index '0'4551// :133:27: note: when computing vector element at index '0'
4558// :139:27: error: use of undefined value here causes illegal behavior4552// :133:27: error: use of undefined value here causes illegal behavior
4559// :139:27: note: when computing vector element at index '0'4553// :133:27: note: when computing vector element at index '0'
4560// :139:27: error: use of undefined value here causes illegal behavior4554// :133:27: error: use of undefined value here causes illegal behavior
4561// :139:27: note: when computing vector element at index '0'4555// :133:27: note: when computing vector element at index '0'
4562// :139:27: error: use of undefined value here causes illegal behavior4556// :133:27: error: use of undefined value here causes illegal behavior
4563// :139:27: note: when computing vector element at index '1'4557// :133:27: note: when computing vector element at index '1'
4564// :139:27: error: use of undefined value here causes illegal behavior4558// :133:27: error: use of undefined value here causes illegal behavior
4565// :139:27: note: when computing vector element at index '0'4559// :133:27: note: when computing vector element at index '0'
4566// :139:27: error: use of undefined value here causes illegal behavior4560// :133:27: error: use of undefined value here causes illegal behavior
4567// :139:27: note: when computing vector element at index '0'4561// :133:27: note: when computing vector element at index '0'
4568// :139:27: error: use of undefined value here causes illegal behavior4562// :133:27: error: use of undefined value here causes illegal behavior
4569// :139:27: note: when computing vector element at index '0'4563// :133:27: note: when computing vector element at index '0'
4570// :139:27: error: use of undefined value here causes illegal behavior4564// :133:27: error: use of undefined value here causes illegal behavior
4571// :139:27: error: use of undefined value here causes illegal behavior4565// :133:27: error: use of undefined value here causes illegal behavior
4572// :139:27: note: when computing vector element at index '0'4566// :133:27: note: when computing vector element at index '0'
4573// :139:27: error: use of undefined value here causes illegal behavior4567// :133:27: error: use of undefined value here causes illegal behavior
4574// :139:27: note: when computing vector element at index '0'4568// :133:27: note: when computing vector element at index '0'
4575// :139:27: error: use of undefined value here causes illegal behavior4569// :133:27: error: use of undefined value here causes illegal behavior
4576// :139:27: note: when computing vector element at index '0'4570// :133:27: note: when computing vector element at index '0'
4577// :139:27: error: use of undefined value here causes illegal behavior4571// :133:27: error: use of undefined value here causes illegal behavior
4578// :139:27: note: when computing vector element at index '1'4572// :133:27: note: when computing vector element at index '1'
4579// :139:27: error: use of undefined value here causes illegal behavior4573// :133:27: error: use of undefined value here causes illegal behavior
4580// :139:27: note: when computing vector element at index '0'4574// :133:27: note: when computing vector element at index '0'
4581// :139:27: error: use of undefined value here causes illegal behavior4575// :133:27: error: use of undefined value here causes illegal behavior
4582// :139:27: note: when computing vector element at index '0'4576// :133:27: note: when computing vector element at index '0'
4583// :139:27: error: use of undefined value here causes illegal behavior4577// :133:27: error: use of undefined value here causes illegal behavior
4584// :139:27: note: when computing vector element at index '0'4578// :133:27: note: when computing vector element at index '0'
4585// :139:27: error: use of undefined value here causes illegal behavior4579// :133:27: error: use of undefined value here causes illegal behavior
4586// :139:27: error: use of undefined value here causes illegal behavior4580// :133:27: error: use of undefined value here causes illegal behavior
4587// :139:27: note: when computing vector element at index '0'4581// :133:27: note: when computing vector element at index '0'
4588// :139:27: error: use of undefined value here causes illegal behavior4582// :133:27: error: use of undefined value here causes illegal behavior
4589// :139:27: note: when computing vector element at index '0'4583// :133:27: note: when computing vector element at index '0'
4590// :139:27: error: use of undefined value here causes illegal behavior4584// :133:27: error: use of undefined value here causes illegal behavior
4591// :139:27: note: when computing vector element at index '0'4585// :133:27: note: when computing vector element at index '0'
4592// :139:27: error: use of undefined value here causes illegal behavior4586// :133:27: error: use of undefined value here causes illegal behavior
4593// :139:27: note: when computing vector element at index '1'4587// :133:27: note: when computing vector element at index '1'
4594// :139:27: error: use of undefined value here causes illegal behavior4588// :133:27: error: use of undefined value here causes illegal behavior
4595// :139:27: note: when computing vector element at index '0'4589// :133:27: note: when computing vector element at index '0'
4596// :139:27: error: use of undefined value here causes illegal behavior4590// :133:27: error: use of undefined value here causes illegal behavior
4597// :139:27: note: when computing vector element at index '0'4591// :133:27: note: when computing vector element at index '0'
4598// :139:27: error: use of undefined value here causes illegal behavior4592// :133:27: error: use of undefined value here causes illegal behavior
4599// :139:27: note: when computing vector element at index '0'4593// :133:27: note: when computing vector element at index '0'
4600// :139:27: error: use of undefined value here causes illegal behavior4594// :133:27: error: use of undefined value here causes illegal behavior
4601// :139:27: error: use of undefined value here causes illegal behavior4595// :133:27: error: use of undefined value here causes illegal behavior
4602// :139:27: note: when computing vector element at index '0'4596// :133:27: note: when computing vector element at index '0'
4603// :139:27: error: use of undefined value here causes illegal behavior4597// :133:27: error: use of undefined value here causes illegal behavior
4604// :139:27: note: when computing vector element at index '0'4598// :133:27: note: when computing vector element at index '0'
4605// :139:27: error: use of undefined value here causes illegal behavior4599// :133:27: error: use of undefined value here causes illegal behavior
4606// :139:27: note: when computing vector element at index '0'4600// :133:27: note: when computing vector element at index '0'
4607// :139:27: error: use of undefined value here causes illegal behavior4601// :133:27: error: use of undefined value here causes illegal behavior
4608// :139:27: note: when computing vector element at index '1'4602// :133:27: note: when computing vector element at index '1'
4609// :139:27: error: use of undefined value here causes illegal behavior4603// :133:27: error: use of undefined value here causes illegal behavior
4610// :139:27: note: when computing vector element at index '0'4604// :133:27: note: when computing vector element at index '0'
4611// :139:27: error: use of undefined value here causes illegal behavior4605// :133:27: error: use of undefined value here causes illegal behavior
4612// :139:27: note: when computing vector element at index '0'4606// :133:27: note: when computing vector element at index '0'
4613// :139:27: error: use of undefined value here causes illegal behavior4607// :133:27: error: use of undefined value here causes illegal behavior
4614// :139:27: note: when computing vector element at index '0'4608// :133:27: note: when computing vector element at index '0'
4615// :139:27: error: use of undefined value here causes illegal behavior4609// :133:27: error: use of undefined value here causes illegal behavior
4616// :139:27: error: use of undefined value here causes illegal behavior4610// :133:27: error: use of undefined value here causes illegal behavior
4617// :139:27: note: when computing vector element at index '0'4611// :133:27: note: when computing vector element at index '0'
4618// :139:27: error: use of undefined value here causes illegal behavior4612// :133:27: error: use of undefined value here causes illegal behavior
4619// :139:27: note: when computing vector element at index '0'4613// :133:27: note: when computing vector element at index '0'
4620// :139:27: error: use of undefined value here causes illegal behavior4614// :133:27: error: use of undefined value here causes illegal behavior
4621// :139:27: note: when computing vector element at index '0'4615// :133:27: note: when computing vector element at index '0'
4622// :139:27: error: use of undefined value here causes illegal behavior4616// :133:27: error: use of undefined value here causes illegal behavior
4623// :139:27: note: when computing vector element at index '1'4617// :133:27: note: when computing vector element at index '1'
4624// :139:27: error: use of undefined value here causes illegal behavior4618// :133:27: error: use of undefined value here causes illegal behavior
4625// :139:27: note: when computing vector element at index '0'4619// :133:27: note: when computing vector element at index '0'
4626// :139:27: error: use of undefined value here causes illegal behavior4620// :133:27: error: use of undefined value here causes illegal behavior
4627// :139:27: note: when computing vector element at index '0'4621// :133:27: note: when computing vector element at index '0'
4628// :139:27: error: use of undefined value here causes illegal behavior4622// :133:27: error: use of undefined value here causes illegal behavior
4629// :139:27: note: when computing vector element at index '0'4623// :133:27: note: when computing vector element at index '0'
4630// :139:27: error: use of undefined value here causes illegal behavior4624// :133:27: error: use of undefined value here causes illegal behavior
4631// :139:27: error: use of undefined value here causes illegal behavior4625// :133:27: error: use of undefined value here causes illegal behavior
4632// :139:27: note: when computing vector element at index '0'4626// :133:27: note: when computing vector element at index '0'
4633// :139:27: error: use of undefined value here causes illegal behavior4627// :133:27: error: use of undefined value here causes illegal behavior
4634// :139:27: note: when computing vector element at index '0'4628// :133:27: note: when computing vector element at index '0'
4635// :139:27: error: use of undefined value here causes illegal behavior4629// :133:27: error: use of undefined value here causes illegal behavior
4636// :139:27: note: when computing vector element at index '0'4630// :133:27: note: when computing vector element at index '0'
4637// :139:27: error: use of undefined value here causes illegal behavior4631// :133:27: error: use of undefined value here causes illegal behavior
4638// :139:27: note: when computing vector element at index '1'4632// :133:27: note: when computing vector element at index '1'
4639// :139:27: error: use of undefined value here causes illegal behavior4633// :133:27: error: use of undefined value here causes illegal behavior
4640// :139:27: note: when computing vector element at index '0'4634// :133:27: note: when computing vector element at index '0'
4641// :139:27: error: use of undefined value here causes illegal behavior4635// :133:27: error: use of undefined value here causes illegal behavior
4642// :139:27: note: when computing vector element at index '0'4636// :133:27: note: when computing vector element at index '0'
4643// :139:27: error: use of undefined value here causes illegal behavior4637// :133:27: error: use of undefined value here causes illegal behavior
4644// :139:27: note: when computing vector element at index '0'4638// :133:27: note: when computing vector element at index '0'
4645// :139:27: error: use of undefined value here causes illegal behavior4639// :133:27: error: use of undefined value here causes illegal behavior
4646// :139:27: error: use of undefined value here causes illegal behavior4640// :133:27: error: use of undefined value here causes illegal behavior
4647// :139:27: note: when computing vector element at index '0'4641// :133:27: note: when computing vector element at index '0'
4648// :139:27: error: use of undefined value here causes illegal behavior4642// :133:27: error: use of undefined value here causes illegal behavior
4649// :139:27: note: when computing vector element at index '0'4643// :133:27: note: when computing vector element at index '0'
4650// :139:27: error: use of undefined value here causes illegal behavior4644// :133:27: error: use of undefined value here causes illegal behavior
4651// :139:27: note: when computing vector element at index '0'4645// :133:27: note: when computing vector element at index '0'
4652// :139:27: error: use of undefined value here causes illegal behavior4646// :133:27: error: use of undefined value here causes illegal behavior
4653// :139:27: note: when computing vector element at index '1'4647// :133:27: note: when computing vector element at index '1'
4654// :139:27: error: use of undefined value here causes illegal behavior4648// :133:27: error: use of undefined value here causes illegal behavior
4655// :139:27: note: when computing vector element at index '0'4649// :133:27: note: when computing vector element at index '0'
4656// :139:27: error: use of undefined value here causes illegal behavior4650// :133:27: error: use of undefined value here causes illegal behavior
4657// :139:27: note: when computing vector element at index '0'4651// :133:27: note: when computing vector element at index '0'
4658// :139:27: error: use of undefined value here causes illegal behavior4652// :133:27: error: use of undefined value here causes illegal behavior
4659// :139:27: note: when computing vector element at index '0'4653// :133:27: note: when computing vector element at index '0'
4660// :139:27: error: use of undefined value here causes illegal behavior4654// :133:27: error: use of undefined value here causes illegal behavior
4661// :139:27: error: use of undefined value here causes illegal behavior4655// :133:27: error: use of undefined value here causes illegal behavior
4662// :139:27: note: when computing vector element at index '0'4656// :133:27: note: when computing vector element at index '0'
4663// :139:27: error: use of undefined value here causes illegal behavior4657// :133:27: error: use of undefined value here causes illegal behavior
4664// :139:27: note: when computing vector element at index '0'4658// :133:27: note: when computing vector element at index '0'
4665// :139:27: error: use of undefined value here causes illegal behavior4659// :133:27: error: use of undefined value here causes illegal behavior
4666// :139:27: note: when computing vector element at index '0'4660// :133:27: note: when computing vector element at index '0'
4667// :139:27: error: use of undefined value here causes illegal behavior4661// :133:27: error: use of undefined value here causes illegal behavior
4668// :139:27: note: when computing vector element at index '1'4662// :133:27: note: when computing vector element at index '1'
4669// :139:27: error: use of undefined value here causes illegal behavior4663// :133:27: error: use of undefined value here causes illegal behavior
4670// :139:27: note: when computing vector element at index '0'4664// :133:27: note: when computing vector element at index '0'
4671// :139:27: error: use of undefined value here causes illegal behavior4665// :133:27: error: use of undefined value here causes illegal behavior
4672// :139:27: note: when computing vector element at index '0'4666// :133:27: note: when computing vector element at index '0'
4673// :139:27: error: use of undefined value here causes illegal behavior4667// :133:27: error: use of undefined value here causes illegal behavior
4674// :139:27: note: when computing vector element at index '0'4668// :133:27: note: when computing vector element at index '0'
4675// :139:30: error: use of undefined value here causes illegal behavior4669// :133:30: error: use of undefined value here causes illegal behavior
4676// :139:30: error: use of undefined value here causes illegal behavior4670// :133:30: error: use of undefined value here causes illegal behavior
4677// :139:30: note: when computing vector element at index '0'4671// :133:30: note: when computing vector element at index '0'
4678// :139:30: error: use of undefined value here causes illegal behavior4672// :133:30: error: use of undefined value here causes illegal behavior
4679// :139:30: note: when computing vector element at index '0'4673// :133:30: note: when computing vector element at index '0'
4680// :139:30: error: use of undefined value here causes illegal behavior4674// :133:30: error: use of undefined value here causes illegal behavior
4681// :139:30: note: when computing vector element at index '1'4675// :133:30: note: when computing vector element at index '1'
4682// :139:30: error: use of undefined value here causes illegal behavior4676// :133:30: error: use of undefined value here causes illegal behavior
4683// :139:30: note: when computing vector element at index '0'4677// :133:30: note: when computing vector element at index '0'
4684// :139:30: error: use of undefined value here causes illegal behavior4678// :133:30: error: use of undefined value here causes illegal behavior
4685// :139:30: note: when computing vector element at index '0'4679// :133:30: note: when computing vector element at index '0'
4686// :139:30: error: use of undefined value here causes illegal behavior4680// :133:30: error: use of undefined value here causes illegal behavior
4687// :139:30: error: use of undefined value here causes illegal behavior4681// :133:30: error: use of undefined value here causes illegal behavior
4688// :139:30: note: when computing vector element at index '0'4682// :133:30: note: when computing vector element at index '0'
4689// :139:30: error: use of undefined value here causes illegal behavior4683// :133:30: error: use of undefined value here causes illegal behavior
4690// :139:30: note: when computing vector element at index '0'4684// :133:30: note: when computing vector element at index '0'
4691// :139:30: error: use of undefined value here causes illegal behavior4685// :133:30: error: use of undefined value here causes illegal behavior
4692// :139:30: note: when computing vector element at index '1'4686// :133:30: note: when computing vector element at index '1'
4693// :139:30: error: use of undefined value here causes illegal behavior4687// :133:30: error: use of undefined value here causes illegal behavior
4694// :139:30: note: when computing vector element at index '0'4688// :133:30: note: when computing vector element at index '0'
4695// :139:30: error: use of undefined value here causes illegal behavior4689// :133:30: error: use of undefined value here causes illegal behavior
4696// :139:30: note: when computing vector element at index '0'4690// :133:30: note: when computing vector element at index '0'
4697// :139:30: error: use of undefined value here causes illegal behavior4691// :133:30: error: use of undefined value here causes illegal behavior
4698// :139:30: error: use of undefined value here causes illegal behavior4692// :133:30: error: use of undefined value here causes illegal behavior
4699// :139:30: note: when computing vector element at index '0'4693// :133:30: note: when computing vector element at index '0'
4700// :139:30: error: use of undefined value here causes illegal behavior4694// :133:30: error: use of undefined value here causes illegal behavior
4701// :139:30: note: when computing vector element at index '0'4695// :133:30: note: when computing vector element at index '0'
4702// :139:30: error: use of undefined value here causes illegal behavior4696// :133:30: error: use of undefined value here causes illegal behavior
4703// :139:30: note: when computing vector element at index '1'4697// :133:30: note: when computing vector element at index '1'
4704// :139:30: error: use of undefined value here causes illegal behavior4698// :133:30: error: use of undefined value here causes illegal behavior
4705// :139:30: note: when computing vector element at index '0'4699// :133:30: note: when computing vector element at index '0'
4706// :139:30: error: use of undefined value here causes illegal behavior4700// :133:30: error: use of undefined value here causes illegal behavior
4707// :139:30: note: when computing vector element at index '0'4701// :133:30: note: when computing vector element at index '0'
4708// :139:30: error: use of undefined value here causes illegal behavior4702// :133:30: error: use of undefined value here causes illegal behavior
4709// :139:30: error: use of undefined value here causes illegal behavior4703// :133:30: error: use of undefined value here causes illegal behavior
4710// :139:30: note: when computing vector element at index '0'4704// :133:30: note: when computing vector element at index '0'
4711// :139:30: error: use of undefined value here causes illegal behavior4705// :133:30: error: use of undefined value here causes illegal behavior
4712// :139:30: note: when computing vector element at index '0'4706// :133:30: note: when computing vector element at index '0'
4713// :139:30: error: use of undefined value here causes illegal behavior4707// :133:30: error: use of undefined value here causes illegal behavior
4714// :139:30: note: when computing vector element at index '1'4708// :133:30: note: when computing vector element at index '1'
4715// :139:30: error: use of undefined value here causes illegal behavior4709// :133:30: error: use of undefined value here causes illegal behavior
4716// :139:30: note: when computing vector element at index '0'4710// :133:30: note: when computing vector element at index '0'
4717// :139:30: error: use of undefined value here causes illegal behavior4711// :133:30: error: use of undefined value here causes illegal behavior
4718// :139:30: note: when computing vector element at index '0'4712// :133:30: note: when computing vector element at index '0'
4719// :139:30: error: use of undefined value here causes illegal behavior4713// :133:30: error: use of undefined value here causes illegal behavior
4720// :139:30: error: use of undefined value here causes illegal behavior4714// :133:30: error: use of undefined value here causes illegal behavior
4721// :139:30: note: when computing vector element at index '0'4715// :133:30: note: when computing vector element at index '0'
4722// :139:30: error: use of undefined value here causes illegal behavior4716// :133:30: error: use of undefined value here causes illegal behavior
4723// :139:30: note: when computing vector element at index '0'4717// :133:30: note: when computing vector element at index '0'
4724// :139:30: error: use of undefined value here causes illegal behavior4718// :133:30: error: use of undefined value here causes illegal behavior
4725// :139:30: note: when computing vector element at index '1'4719// :133:30: note: when computing vector element at index '1'
4726// :139:30: error: use of undefined value here causes illegal behavior4720// :133:30: error: use of undefined value here causes illegal behavior
4727// :139:30: note: when computing vector element at index '0'4721// :133:30: note: when computing vector element at index '0'
4728// :139:30: error: use of undefined value here causes illegal behavior4722// :133:30: error: use of undefined value here causes illegal behavior
4729// :139:30: note: when computing vector element at index '0'4723// :133:30: note: when computing vector element at index '0'
4730// :139:30: error: use of undefined value here causes illegal behavior4724// :133:30: error: use of undefined value here causes illegal behavior
4731// :139:30: error: use of undefined value here causes illegal behavior4725// :133:30: error: use of undefined value here causes illegal behavior
4732// :139:30: note: when computing vector element at index '0'4726// :133:30: note: when computing vector element at index '0'
4733// :139:30: error: use of undefined value here causes illegal behavior4727// :133:30: error: use of undefined value here causes illegal behavior
4734// :139:30: note: when computing vector element at index '0'4728// :133:30: note: when computing vector element at index '0'
4735// :139:30: error: use of undefined value here causes illegal behavior4729// :133:30: error: use of undefined value here causes illegal behavior
4736// :139:30: note: when computing vector element at index '1'4730// :133:30: note: when computing vector element at index '1'
4737// :139:30: error: use of undefined value here causes illegal behavior4731// :133:30: error: use of undefined value here causes illegal behavior
4738// :139:30: note: when computing vector element at index '0'4732// :133:30: note: when computing vector element at index '0'
4739// :139:30: error: use of undefined value here causes illegal behavior4733// :133:30: error: use of undefined value here causes illegal behavior
4740// :139:30: note: when computing vector element at index '0'4734// :133:30: note: when computing vector element at index '0'
4741// :139:30: error: use of undefined value here causes illegal behavior4735// :133:30: error: use of undefined value here causes illegal behavior
4742// :139:30: error: use of undefined value here causes illegal behavior4736// :133:30: error: use of undefined value here causes illegal behavior
4743// :139:30: note: when computing vector element at index '0'4737// :133:30: note: when computing vector element at index '0'
4744// :139:30: error: use of undefined value here causes illegal behavior4738// :133:30: error: use of undefined value here causes illegal behavior
4745// :139:30: note: when computing vector element at index '0'4739// :133:30: note: when computing vector element at index '0'
4746// :139:30: error: use of undefined value here causes illegal behavior4740// :133:30: error: use of undefined value here causes illegal behavior
4747// :139:30: note: when computing vector element at index '1'4741// :133:30: note: when computing vector element at index '1'
4748// :139:30: error: use of undefined value here causes illegal behavior4742// :133:30: error: use of undefined value here causes illegal behavior
4749// :139:30: note: when computing vector element at index '0'4743// :133:30: note: when computing vector element at index '0'
4750// :139:30: error: use of undefined value here causes illegal behavior4744// :133:30: error: use of undefined value here causes illegal behavior
4751// :139:30: note: when computing vector element at index '0'4745// :133:30: note: when computing vector element at index '0'
4752// :139:30: error: use of undefined value here causes illegal behavior4746// :133:30: error: use of undefined value here causes illegal behavior
4753// :139:30: error: use of undefined value here causes illegal behavior4747// :133:30: error: use of undefined value here causes illegal behavior
4754// :139:30: note: when computing vector element at index '0'4748// :133:30: note: when computing vector element at index '0'
4755// :139:30: error: use of undefined value here causes illegal behavior4749// :133:30: error: use of undefined value here causes illegal behavior
4756// :139:30: note: when computing vector element at index '0'4750// :133:30: note: when computing vector element at index '0'
4757// :139:30: error: use of undefined value here causes illegal behavior4751// :133:30: error: use of undefined value here causes illegal behavior
4758// :139:30: note: when computing vector element at index '1'4752// :133:30: note: when computing vector element at index '1'
4759// :139:30: error: use of undefined value here causes illegal behavior4753// :133:30: error: use of undefined value here causes illegal behavior
4760// :139:30: note: when computing vector element at index '0'4754// :133:30: note: when computing vector element at index '0'
4761// :139:30: error: use of undefined value here causes illegal behavior4755// :133:30: error: use of undefined value here causes illegal behavior
4762// :139:30: note: when computing vector element at index '0'4756// :133:30: note: when computing vector element at index '0'
4763// :139:30: error: use of undefined value here causes illegal behavior4757// :133:30: error: use of undefined value here causes illegal behavior
4764// :139:30: error: use of undefined value here causes illegal behavior4758// :133:30: error: use of undefined value here causes illegal behavior
4765// :139:30: note: when computing vector element at index '0'4759// :133:30: note: when computing vector element at index '0'
4766// :139:30: error: use of undefined value here causes illegal behavior4760// :133:30: error: use of undefined value here causes illegal behavior
4767// :139:30: note: when computing vector element at index '0'4761// :133:30: note: when computing vector element at index '0'
4768// :139:30: error: use of undefined value here causes illegal behavior4762// :133:30: error: use of undefined value here causes illegal behavior
4769// :139:30: note: when computing vector element at index '1'4763// :133:30: note: when computing vector element at index '1'
4770// :139:30: error: use of undefined value here causes illegal behavior4764// :133:30: error: use of undefined value here causes illegal behavior
4771// :139:30: note: when computing vector element at index '0'4765// :133:30: note: when computing vector element at index '0'
4772// :139:30: error: use of undefined value here causes illegal behavior4766// :133:30: error: use of undefined value here causes illegal behavior
4773// :139:30: note: when computing vector element at index '0'4767// :133:30: note: when computing vector element at index '0'
4774// :139:30: error: use of undefined value here causes illegal behavior4768// :133:30: error: use of undefined value here causes illegal behavior
4775// :139:30: error: use of undefined value here causes illegal behavior4769// :133:30: error: use of undefined value here causes illegal behavior
4776// :139:30: note: when computing vector element at index '0'4770// :133:30: note: when computing vector element at index '0'
4777// :139:30: error: use of undefined value here causes illegal behavior4771// :133:30: error: use of undefined value here causes illegal behavior
4778// :139:30: note: when computing vector element at index '0'4772// :133:30: note: when computing vector element at index '0'
4779// :139:30: error: use of undefined value here causes illegal behavior4773// :133:30: error: use of undefined value here causes illegal behavior
4780// :139:30: note: when computing vector element at index '1'4774// :133:30: note: when computing vector element at index '1'
4781// :139:30: error: use of undefined value here causes illegal behavior4775// :133:30: error: use of undefined value here causes illegal behavior
4782// :139:30: note: when computing vector element at index '0'4776// :133:30: note: when computing vector element at index '0'
4783// :139:30: error: use of undefined value here causes illegal behavior4777// :133:30: error: use of undefined value here causes illegal behavior
4784// :139:30: note: when computing vector element at index '0'4778// :133:30: note: when computing vector element at index '0'
4785// :139:30: error: use of undefined value here causes illegal behavior4779// :133:30: error: use of undefined value here causes illegal behavior
4786// :139:30: error: use of undefined value here causes illegal behavior4780// :133:30: error: use of undefined value here causes illegal behavior
4787// :139:30: note: when computing vector element at index '0'4781// :133:30: note: when computing vector element at index '0'
4788// :139:30: error: use of undefined value here causes illegal behavior4782// :133:30: error: use of undefined value here causes illegal behavior
4789// :139:30: note: when computing vector element at index '0'4783// :133:30: note: when computing vector element at index '0'
4790// :139:30: error: use of undefined value here causes illegal behavior4784// :133:30: error: use of undefined value here causes illegal behavior
4791// :139:30: note: when computing vector element at index '1'4785// :133:30: note: when computing vector element at index '1'
4792// :139:30: error: use of undefined value here causes illegal behavior4786// :133:30: error: use of undefined value here causes illegal behavior
4793// :139:30: note: when computing vector element at index '0'4787// :133:30: note: when computing vector element at index '0'
4794// :139:30: error: use of undefined value here causes illegal behavior4788// :133:30: error: use of undefined value here causes illegal behavior
4795// :139:30: note: when computing vector element at index '0'4789// :133:30: note: when computing vector element at index '0'
4796// :143:17: error: use of undefined value here causes illegal behavior4790// :137:17: error: use of undefined value here causes illegal behavior
4797// :143:17: error: use of undefined value here causes illegal behavior4791// :137:17: error: use of undefined value here causes illegal behavior
4798// :143:17: note: when computing vector element at index '0'4792// :137:17: note: when computing vector element at index '0'
4799// :143:17: error: use of undefined value here causes illegal behavior4793// :137:17: error: use of undefined value here causes illegal behavior
4800// :143:17: note: when computing vector element at index '0'4794// :137:17: note: when computing vector element at index '0'
4801// :143:17: error: use of undefined value here causes illegal behavior4795// :137:17: error: use of undefined value here causes illegal behavior
4802// :143:17: note: when computing vector element at index '0'4796// :137:17: note: when computing vector element at index '0'
4803// :143:17: error: use of undefined value here causes illegal behavior4797// :137:17: error: use of undefined value here causes illegal behavior
4804// :143:17: note: when computing vector element at index '1'4798// :137:17: note: when computing vector element at index '1'
4805// :143:17: error: use of undefined value here causes illegal behavior4799// :137:17: error: use of undefined value here causes illegal behavior
4806// :143:17: note: when computing vector element at index '0'4800// :137:17: note: when computing vector element at index '0'
4807// :143:17: error: use of undefined value here causes illegal behavior4801// :137:17: error: use of undefined value here causes illegal behavior
4808// :143:17: note: when computing vector element at index '0'4802// :137:17: note: when computing vector element at index '0'
4809// :143:17: error: use of undefined value here causes illegal behavior4803// :137:17: error: use of undefined value here causes illegal behavior
4810// :143:17: note: when computing vector element at index '0'4804// :137:17: note: when computing vector element at index '0'
4811// :143:17: error: use of undefined value here causes illegal behavior4805// :137:17: error: use of undefined value here causes illegal behavior
4812// :143:17: error: use of undefined value here causes illegal behavior4806// :137:17: error: use of undefined value here causes illegal behavior
4813// :143:17: note: when computing vector element at index '0'4807// :137:17: note: when computing vector element at index '0'
4814// :143:17: error: use of undefined value here causes illegal behavior4808// :137:17: error: use of undefined value here causes illegal behavior
4815// :143:17: note: when computing vector element at index '0'4809// :137:17: note: when computing vector element at index '0'
4816// :143:17: error: use of undefined value here causes illegal behavior4810// :137:17: error: use of undefined value here causes illegal behavior
4817// :143:17: note: when computing vector element at index '0'4811// :137:17: note: when computing vector element at index '0'
4818// :143:17: error: use of undefined value here causes illegal behavior4812// :137:17: error: use of undefined value here causes illegal behavior
4819// :143:17: note: when computing vector element at index '1'4813// :137:17: note: when computing vector element at index '1'
4820// :143:17: error: use of undefined value here causes illegal behavior4814// :137:17: error: use of undefined value here causes illegal behavior
4821// :143:17: note: when computing vector element at index '0'4815// :137:17: note: when computing vector element at index '0'
4822// :143:17: error: use of undefined value here causes illegal behavior4816// :137:17: error: use of undefined value here causes illegal behavior
4823// :143:17: note: when computing vector element at index '0'4817// :137:17: note: when computing vector element at index '0'
4824// :143:17: error: use of undefined value here causes illegal behavior4818// :137:17: error: use of undefined value here causes illegal behavior
4825// :143:17: note: when computing vector element at index '0'4819// :137:17: note: when computing vector element at index '0'
4826// :143:17: error: use of undefined value here causes illegal behavior4820// :137:17: error: use of undefined value here causes illegal behavior
4827// :143:17: error: use of undefined value here causes illegal behavior4821// :137:17: error: use of undefined value here causes illegal behavior
4828// :143:17: note: when computing vector element at index '0'4822// :137:17: note: when computing vector element at index '0'
4829// :143:17: error: use of undefined value here causes illegal behavior4823// :137:17: error: use of undefined value here causes illegal behavior
4830// :143:17: note: when computing vector element at index '0'4824// :137:17: note: when computing vector element at index '0'
4831// :143:17: error: use of undefined value here causes illegal behavior4825// :137:17: error: use of undefined value here causes illegal behavior
4832// :143:17: note: when computing vector element at index '0'4826// :137:17: note: when computing vector element at index '0'
4833// :143:17: error: use of undefined value here causes illegal behavior4827// :137:17: error: use of undefined value here causes illegal behavior
4834// :143:17: note: when computing vector element at index '1'4828// :137:17: note: when computing vector element at index '1'
4835// :143:17: error: use of undefined value here causes illegal behavior4829// :137:17: error: use of undefined value here causes illegal behavior
4836// :143:17: note: when computing vector element at index '0'4830// :137:17: note: when computing vector element at index '0'
4837// :143:17: error: use of undefined value here causes illegal behavior4831// :137:17: error: use of undefined value here causes illegal behavior
4838// :143:17: note: when computing vector element at index '0'4832// :137:17: note: when computing vector element at index '0'
4839// :143:17: error: use of undefined value here causes illegal behavior4833// :137:17: error: use of undefined value here causes illegal behavior
4840// :143:17: note: when computing vector element at index '0'4834// :137:17: note: when computing vector element at index '0'
4841// :143:17: error: use of undefined value here causes illegal behavior4835// :137:17: error: use of undefined value here causes illegal behavior
4842// :143:17: error: use of undefined value here causes illegal behavior4836// :137:17: error: use of undefined value here causes illegal behavior
4843// :143:17: note: when computing vector element at index '0'4837// :137:17: note: when computing vector element at index '0'
4844// :143:17: error: use of undefined value here causes illegal behavior4838// :137:17: error: use of undefined value here causes illegal behavior
4845// :143:17: note: when computing vector element at index '0'4839// :137:17: note: when computing vector element at index '0'
4846// :143:17: error: use of undefined value here causes illegal behavior4840// :137:17: error: use of undefined value here causes illegal behavior
4847// :143:17: note: when computing vector element at index '0'4841// :137:17: note: when computing vector element at index '0'
4848// :143:17: error: use of undefined value here causes illegal behavior4842// :137:17: error: use of undefined value here causes illegal behavior
4849// :143:17: note: when computing vector element at index '1'4843// :137:17: note: when computing vector element at index '1'
4850// :143:17: error: use of undefined value here causes illegal behavior4844// :137:17: error: use of undefined value here causes illegal behavior
4851// :143:17: note: when computing vector element at index '0'4845// :137:17: note: when computing vector element at index '0'
4852// :143:17: error: use of undefined value here causes illegal behavior4846// :137:17: error: use of undefined value here causes illegal behavior
4853// :143:17: note: when computing vector element at index '0'4847// :137:17: note: when computing vector element at index '0'
4854// :143:17: error: use of undefined value here causes illegal behavior4848// :137:17: error: use of undefined value here causes illegal behavior
4855// :143:17: note: when computing vector element at index '0'4849// :137:17: note: when computing vector element at index '0'
4856// :143:17: error: use of undefined value here causes illegal behavior4850// :137:17: error: use of undefined value here causes illegal behavior
4857// :143:17: error: use of undefined value here causes illegal behavior4851// :137:17: error: use of undefined value here causes illegal behavior
4858// :143:17: note: when computing vector element at index '0'4852// :137:17: note: when computing vector element at index '0'
4859// :143:17: error: use of undefined value here causes illegal behavior4853// :137:17: error: use of undefined value here causes illegal behavior
4860// :143:17: note: when computing vector element at index '0'4854// :137:17: note: when computing vector element at index '0'
4861// :143:17: error: use of undefined value here causes illegal behavior4855// :137:17: error: use of undefined value here causes illegal behavior
4862// :143:17: note: when computing vector element at index '0'4856// :137:17: note: when computing vector element at index '0'
4863// :143:17: error: use of undefined value here causes illegal behavior4857// :137:17: error: use of undefined value here causes illegal behavior
4864// :143:17: note: when computing vector element at index '1'4858// :137:17: note: when computing vector element at index '1'
4865// :143:17: error: use of undefined value here causes illegal behavior4859// :137:17: error: use of undefined value here causes illegal behavior
4866// :143:17: note: when computing vector element at index '0'4860// :137:17: note: when computing vector element at index '0'
4867// :143:17: error: use of undefined value here causes illegal behavior4861// :137:17: error: use of undefined value here causes illegal behavior
4868// :143:17: note: when computing vector element at index '0'4862// :137:17: note: when computing vector element at index '0'
4869// :143:17: error: use of undefined value here causes illegal behavior4863// :137:17: error: use of undefined value here causes illegal behavior
4870// :143:17: note: when computing vector element at index '0'4864// :137:17: note: when computing vector element at index '0'
4871// :143:17: error: use of undefined value here causes illegal behavior4865// :137:17: error: use of undefined value here causes illegal behavior
4872// :143:17: error: use of undefined value here causes illegal behavior4866// :137:17: error: use of undefined value here causes illegal behavior
4873// :143:17: note: when computing vector element at index '0'4867// :137:17: note: when computing vector element at index '0'
4874// :143:17: error: use of undefined value here causes illegal behavior4868// :137:17: error: use of undefined value here causes illegal behavior
4875// :143:17: note: when computing vector element at index '0'4869// :137:17: note: when computing vector element at index '0'
4876// :143:17: error: use of undefined value here causes illegal behavior4870// :137:17: error: use of undefined value here causes illegal behavior
4877// :143:17: note: when computing vector element at index '0'4871// :137:17: note: when computing vector element at index '0'
4878// :143:17: error: use of undefined value here causes illegal behavior4872// :137:17: error: use of undefined value here causes illegal behavior
4879// :143:17: note: when computing vector element at index '1'4873// :137:17: note: when computing vector element at index '1'
4880// :143:17: error: use of undefined value here causes illegal behavior4874// :137:17: error: use of undefined value here causes illegal behavior
4881// :143:17: note: when computing vector element at index '0'4875// :137:17: note: when computing vector element at index '0'
4882// :143:17: error: use of undefined value here causes illegal behavior4876// :137:17: error: use of undefined value here causes illegal behavior
4883// :143:17: note: when computing vector element at index '0'4877// :137:17: note: when computing vector element at index '0'
4884// :143:17: error: use of undefined value here causes illegal behavior4878// :137:17: error: use of undefined value here causes illegal behavior
4885// :143:17: note: when computing vector element at index '0'4879// :137:17: note: when computing vector element at index '0'
4886// :143:17: error: use of undefined value here causes illegal behavior4880// :137:17: error: use of undefined value here causes illegal behavior
4887// :143:17: error: use of undefined value here causes illegal behavior4881// :137:17: error: use of undefined value here causes illegal behavior
4888// :143:17: note: when computing vector element at index '0'4882// :137:17: note: when computing vector element at index '0'
4889// :143:17: error: use of undefined value here causes illegal behavior4883// :137:17: error: use of undefined value here causes illegal behavior
4890// :143:17: note: when computing vector element at index '0'4884// :137:17: note: when computing vector element at index '0'
4891// :143:17: error: use of undefined value here causes illegal behavior4885// :137:17: error: use of undefined value here causes illegal behavior
4892// :143:17: note: when computing vector element at index '0'4886// :137:17: note: when computing vector element at index '0'
4893// :143:17: error: use of undefined value here causes illegal behavior4887// :137:17: error: use of undefined value here causes illegal behavior
4894// :143:17: note: when computing vector element at index '1'4888// :137:17: note: when computing vector element at index '1'
4895// :143:17: error: use of undefined value here causes illegal behavior4889// :137:17: error: use of undefined value here causes illegal behavior
4896// :143:17: note: when computing vector element at index '0'4890// :137:17: note: when computing vector element at index '0'
4897// :143:17: error: use of undefined value here causes illegal behavior4891// :137:17: error: use of undefined value here causes illegal behavior
4898// :143:17: note: when computing vector element at index '0'4892// :137:17: note: when computing vector element at index '0'
4899// :143:17: error: use of undefined value here causes illegal behavior4893// :137:17: error: use of undefined value here causes illegal behavior
4900// :143:17: note: when computing vector element at index '0'4894// :137:17: note: when computing vector element at index '0'
4901// :143:17: error: use of undefined value here causes illegal behavior4895// :137:17: error: use of undefined value here causes illegal behavior
4902// :143:17: error: use of undefined value here causes illegal behavior4896// :137:17: error: use of undefined value here causes illegal behavior
4903// :143:17: note: when computing vector element at index '0'4897// :137:17: note: when computing vector element at index '0'
4904// :143:17: error: use of undefined value here causes illegal behavior4898// :137:17: error: use of undefined value here causes illegal behavior
4905// :143:17: note: when computing vector element at index '0'4899// :137:17: note: when computing vector element at index '0'
4906// :143:17: error: use of undefined value here causes illegal behavior4900// :137:17: error: use of undefined value here causes illegal behavior
4907// :143:17: note: when computing vector element at index '0'4901// :137:17: note: when computing vector element at index '0'
4908// :143:17: error: use of undefined value here causes illegal behavior4902// :137:17: error: use of undefined value here causes illegal behavior
4909// :143:17: note: when computing vector element at index '1'4903// :137:17: note: when computing vector element at index '1'
4910// :143:17: error: use of undefined value here causes illegal behavior4904// :137:17: error: use of undefined value here causes illegal behavior
4911// :143:17: note: when computing vector element at index '0'4905// :137:17: note: when computing vector element at index '0'
4912// :143:17: error: use of undefined value here causes illegal behavior4906// :137:17: error: use of undefined value here causes illegal behavior
4913// :143:17: note: when computing vector element at index '0'4907// :137:17: note: when computing vector element at index '0'
4914// :143:17: error: use of undefined value here causes illegal behavior4908// :137:17: error: use of undefined value here causes illegal behavior
4915// :143:17: note: when computing vector element at index '0'4909// :137:17: note: when computing vector element at index '0'
4916// :143:17: error: use of undefined value here causes illegal behavior4910// :137:17: error: use of undefined value here causes illegal behavior
4917// :143:17: error: use of undefined value here causes illegal behavior4911// :137:17: error: use of undefined value here causes illegal behavior
4918// :143:17: note: when computing vector element at index '0'4912// :137:17: note: when computing vector element at index '0'
4919// :143:17: error: use of undefined value here causes illegal behavior4913// :137:17: error: use of undefined value here causes illegal behavior
4920// :143:17: note: when computing vector element at index '0'4914// :137:17: note: when computing vector element at index '0'
4921// :143:17: error: use of undefined value here causes illegal behavior4915// :137:17: error: use of undefined value here causes illegal behavior
4922// :143:17: note: when computing vector element at index '0'4916// :137:17: note: when computing vector element at index '0'
4923// :143:17: error: use of undefined value here causes illegal behavior4917// :137:17: error: use of undefined value here causes illegal behavior
4924// :143:17: note: when computing vector element at index '1'4918// :137:17: note: when computing vector element at index '1'
4925// :143:17: error: use of undefined value here causes illegal behavior4919// :137:17: error: use of undefined value here causes illegal behavior
4926// :143:17: note: when computing vector element at index '0'4920// :137:17: note: when computing vector element at index '0'
4927// :143:17: error: use of undefined value here causes illegal behavior4921// :137:17: error: use of undefined value here causes illegal behavior
4928// :143:17: note: when computing vector element at index '0'4922// :137:17: note: when computing vector element at index '0'
4929// :143:17: error: use of undefined value here causes illegal behavior4923// :137:17: error: use of undefined value here causes illegal behavior
4930// :143:17: note: when computing vector element at index '0'4924// :137:17: note: when computing vector element at index '0'
4931// :143:17: error: use of undefined value here causes illegal behavior4925// :137:17: error: use of undefined value here causes illegal behavior
4932// :143:17: error: use of undefined value here causes illegal behavior4926// :137:17: error: use of undefined value here causes illegal behavior
4933// :143:17: note: when computing vector element at index '0'4927// :137:17: note: when computing vector element at index '0'
4934// :143:17: error: use of undefined value here causes illegal behavior4928// :137:17: error: use of undefined value here causes illegal behavior
4935// :143:17: note: when computing vector element at index '0'4929// :137:17: note: when computing vector element at index '0'
4936// :143:17: error: use of undefined value here causes illegal behavior4930// :137:17: error: use of undefined value here causes illegal behavior
4937// :143:17: note: when computing vector element at index '0'4931// :137:17: note: when computing vector element at index '0'
4938// :143:17: error: use of undefined value here causes illegal behavior4932// :137:17: error: use of undefined value here causes illegal behavior
4939// :143:17: note: when computing vector element at index '1'4933// :137:17: note: when computing vector element at index '1'
4940// :143:17: error: use of undefined value here causes illegal behavior4934// :137:17: error: use of undefined value here causes illegal behavior
4941// :143:17: note: when computing vector element at index '0'4935// :137:17: note: when computing vector element at index '0'
4942// :143:17: error: use of undefined value here causes illegal behavior4936// :137:17: error: use of undefined value here causes illegal behavior
4943// :143:17: note: when computing vector element at index '0'4937// :137:17: note: when computing vector element at index '0'
4944// :143:17: error: use of undefined value here causes illegal behavior4938// :137:17: error: use of undefined value here causes illegal behavior
4945// :143:17: note: when computing vector element at index '0'4939// :137:17: note: when computing vector element at index '0'
4946// :143:17: error: use of undefined value here causes illegal behavior4940// :137:17: error: use of undefined value here causes illegal behavior
4947// :143:17: error: use of undefined value here causes illegal behavior4941// :137:17: error: use of undefined value here causes illegal behavior
4948// :143:17: note: when computing vector element at index '0'4942// :137:17: note: when computing vector element at index '0'
4949// :143:17: error: use of undefined value here causes illegal behavior4943// :137:17: error: use of undefined value here causes illegal behavior
4950// :143:17: note: when computing vector element at index '0'4944// :137:17: note: when computing vector element at index '0'
4951// :143:17: error: use of undefined value here causes illegal behavior4945// :137:17: error: use of undefined value here causes illegal behavior
4952// :143:17: note: when computing vector element at index '0'4946// :137:17: note: when computing vector element at index '0'
4953// :143:17: error: use of undefined value here causes illegal behavior4947// :137:17: error: use of undefined value here causes illegal behavior
4954// :143:17: note: when computing vector element at index '1'4948// :137:17: note: when computing vector element at index '1'
4955// :143:17: error: use of undefined value here causes illegal behavior4949// :137:17: error: use of undefined value here causes illegal behavior
4956// :143:17: note: when computing vector element at index '0'4950// :137:17: note: when computing vector element at index '0'
4957// :143:17: error: use of undefined value here causes illegal behavior4951// :137:17: error: use of undefined value here causes illegal behavior
4958// :143:17: note: when computing vector element at index '0'4952// :137:17: note: when computing vector element at index '0'
4959// :143:17: error: use of undefined value here causes illegal behavior4953// :137:17: error: use of undefined value here causes illegal behavior
4960// :143:17: note: when computing vector element at index '0'4954// :137:17: note: when computing vector element at index '0'
4961// :143:21: error: use of undefined value here causes illegal behavior4955// :137:21: error: use of undefined value here causes illegal behavior
4962// :143:21: error: use of undefined value here causes illegal behavior4956// :137:21: error: use of undefined value here causes illegal behavior
4963// :143:21: note: when computing vector element at index '0'4957// :137:21: note: when computing vector element at index '0'
4964// :143:21: error: use of undefined value here causes illegal behavior4958// :137:21: error: use of undefined value here causes illegal behavior
4965// :143:21: note: when computing vector element at index '0'4959// :137:21: note: when computing vector element at index '0'
4966// :143:21: error: use of undefined value here causes illegal behavior4960// :137:21: error: use of undefined value here causes illegal behavior
4967// :143:21: note: when computing vector element at index '1'4961// :137:21: note: when computing vector element at index '1'
4968// :143:21: error: use of undefined value here causes illegal behavior4962// :137:21: error: use of undefined value here causes illegal behavior
4969// :143:21: note: when computing vector element at index '0'4963// :137:21: note: when computing vector element at index '0'
4970// :143:21: error: use of undefined value here causes illegal behavior4964// :137:21: error: use of undefined value here causes illegal behavior
4971// :143:21: note: when computing vector element at index '0'4965// :137:21: note: when computing vector element at index '0'
4972// :143:21: error: use of undefined value here causes illegal behavior4966// :137:21: error: use of undefined value here causes illegal behavior
4973// :143:21: error: use of undefined value here causes illegal behavior4967// :137:21: error: use of undefined value here causes illegal behavior
4974// :143:21: note: when computing vector element at index '0'4968// :137:21: note: when computing vector element at index '0'
4975// :143:21: error: use of undefined value here causes illegal behavior4969// :137:21: error: use of undefined value here causes illegal behavior
4976// :143:21: note: when computing vector element at index '0'4970// :137:21: note: when computing vector element at index '0'
4977// :143:21: error: use of undefined value here causes illegal behavior4971// :137:21: error: use of undefined value here causes illegal behavior
4978// :143:21: note: when computing vector element at index '1'4972// :137:21: note: when computing vector element at index '1'
4979// :143:21: error: use of undefined value here causes illegal behavior4973// :137:21: error: use of undefined value here causes illegal behavior
4980// :143:21: note: when computing vector element at index '0'4974// :137:21: note: when computing vector element at index '0'
4981// :143:21: error: use of undefined value here causes illegal behavior4975// :137:21: error: use of undefined value here causes illegal behavior
4982// :143:21: note: when computing vector element at index '0'4976// :137:21: note: when computing vector element at index '0'
4983// :143:21: error: use of undefined value here causes illegal behavior4977// :137:21: error: use of undefined value here causes illegal behavior
4984// :143:21: error: use of undefined value here causes illegal behavior4978// :137:21: error: use of undefined value here causes illegal behavior
4985// :143:21: note: when computing vector element at index '0'4979// :137:21: note: when computing vector element at index '0'
4986// :143:21: error: use of undefined value here causes illegal behavior4980// :137:21: error: use of undefined value here causes illegal behavior
4987// :143:21: note: when computing vector element at index '0'4981// :137:21: note: when computing vector element at index '0'
4988// :143:21: error: use of undefined value here causes illegal behavior4982// :137:21: error: use of undefined value here causes illegal behavior
4989// :143:21: note: when computing vector element at index '1'4983// :137:21: note: when computing vector element at index '1'
4990// :143:21: error: use of undefined value here causes illegal behavior4984// :137:21: error: use of undefined value here causes illegal behavior
4991// :143:21: note: when computing vector element at index '0'4985// :137:21: note: when computing vector element at index '0'
4992// :143:21: error: use of undefined value here causes illegal behavior4986// :137:21: error: use of undefined value here causes illegal behavior
4993// :143:21: note: when computing vector element at index '0'4987// :137:21: note: when computing vector element at index '0'
4994// :143:21: error: use of undefined value here causes illegal behavior4988// :137:21: error: use of undefined value here causes illegal behavior
4995// :143:21: error: use of undefined value here causes illegal behavior4989// :137:21: error: use of undefined value here causes illegal behavior
4996// :143:21: note: when computing vector element at index '0'4990// :137:21: note: when computing vector element at index '0'
4997// :143:21: error: use of undefined value here causes illegal behavior4991// :137:21: error: use of undefined value here causes illegal behavior
4998// :143:21: note: when computing vector element at index '0'4992// :137:21: note: when computing vector element at index '0'
4999// :143:21: error: use of undefined value here causes illegal behavior4993// :137:21: error: use of undefined value here causes illegal behavior
5000// :143:21: note: when computing vector element at index '1'4994// :137:21: note: when computing vector element at index '1'
5001// :143:21: error: use of undefined value here causes illegal behavior4995// :137:21: error: use of undefined value here causes illegal behavior
5002// :143:21: note: when computing vector element at index '0'4996// :137:21: note: when computing vector element at index '0'
5003// :143:21: error: use of undefined value here causes illegal behavior4997// :137:21: error: use of undefined value here causes illegal behavior
5004// :143:21: note: when computing vector element at index '0'4998// :137:21: note: when computing vector element at index '0'
5005// :143:21: error: use of undefined value here causes illegal behavior4999// :137:21: error: use of undefined value here causes illegal behavior
5006// :143:21: error: use of undefined value here causes illegal behavior5000// :137:21: error: use of undefined value here causes illegal behavior
5007// :143:21: note: when computing vector element at index '0'5001// :137:21: note: when computing vector element at index '0'
5008// :143:21: error: use of undefined value here causes illegal behavior5002// :137:21: error: use of undefined value here causes illegal behavior
5009// :143:21: note: when computing vector element at index '0'5003// :137:21: note: when computing vector element at index '0'
5010// :143:21: error: use of undefined value here causes illegal behavior5004// :137:21: error: use of undefined value here causes illegal behavior
5011// :143:21: note: when computing vector element at index '1'5005// :137:21: note: when computing vector element at index '1'
5012// :143:21: error: use of undefined value here causes illegal behavior5006// :137:21: error: use of undefined value here causes illegal behavior
5013// :143:21: note: when computing vector element at index '0'5007// :137:21: note: when computing vector element at index '0'
5014// :143:21: error: use of undefined value here causes illegal behavior5008// :137:21: error: use of undefined value here causes illegal behavior
5015// :143:21: note: when computing vector element at index '0'5009// :137:21: note: when computing vector element at index '0'
5016// :143:21: error: use of undefined value here causes illegal behavior5010// :137:21: error: use of undefined value here causes illegal behavior
5017// :143:21: error: use of undefined value here causes illegal behavior5011// :137:21: error: use of undefined value here causes illegal behavior
5018// :143:21: note: when computing vector element at index '0'5012// :137:21: note: when computing vector element at index '0'
5019// :143:21: error: use of undefined value here causes illegal behavior5013// :137:21: error: use of undefined value here causes illegal behavior
5020// :143:21: note: when computing vector element at index '0'5014// :137:21: note: when computing vector element at index '0'
5021// :143:21: error: use of undefined value here causes illegal behavior5015// :137:21: error: use of undefined value here causes illegal behavior
5022// :143:21: note: when computing vector element at index '1'5016// :137:21: note: when computing vector element at index '1'
5023// :143:21: error: use of undefined value here causes illegal behavior5017// :137:21: error: use of undefined value here causes illegal behavior
5024// :143:21: note: when computing vector element at index '0'5018// :137:21: note: when computing vector element at index '0'
5025// :143:21: error: use of undefined value here causes illegal behavior5019// :137:21: error: use of undefined value here causes illegal behavior
5026// :143:21: note: when computing vector element at index '0'5020// :137:21: note: when computing vector element at index '0'
5027// :143:21: error: use of undefined value here causes illegal behavior5021// :137:21: error: use of undefined value here causes illegal behavior
5028// :143:21: error: use of undefined value here causes illegal behavior5022// :137:21: error: use of undefined value here causes illegal behavior
5029// :143:21: note: when computing vector element at index '0'5023// :137:21: note: when computing vector element at index '0'
5030// :143:21: error: use of undefined value here causes illegal behavior5024// :137:21: error: use of undefined value here causes illegal behavior
5031// :143:21: note: when computing vector element at index '0'5025// :137:21: note: when computing vector element at index '0'
5032// :143:21: error: use of undefined value here causes illegal behavior5026// :137:21: error: use of undefined value here causes illegal behavior
5033// :143:21: note: when computing vector element at index '1'5027// :137:21: note: when computing vector element at index '1'
5034// :143:21: error: use of undefined value here causes illegal behavior5028// :137:21: error: use of undefined value here causes illegal behavior
5035// :143:21: note: when computing vector element at index '0'5029// :137:21: note: when computing vector element at index '0'
5036// :143:21: error: use of undefined value here causes illegal behavior5030// :137:21: error: use of undefined value here causes illegal behavior
5037// :143:21: note: when computing vector element at index '0'5031// :137:21: note: when computing vector element at index '0'
5038// :143:21: error: use of undefined value here causes illegal behavior5032// :137:21: error: use of undefined value here causes illegal behavior
5039// :143:21: error: use of undefined value here causes illegal behavior5033// :137:21: error: use of undefined value here causes illegal behavior
5040// :143:21: note: when computing vector element at index '0'5034// :137:21: note: when computing vector element at index '0'
5041// :143:21: error: use of undefined value here causes illegal behavior5035// :137:21: error: use of undefined value here causes illegal behavior
5042// :143:21: note: when computing vector element at index '0'5036// :137:21: note: when computing vector element at index '0'
5043// :143:21: error: use of undefined value here causes illegal behavior5037// :137:21: error: use of undefined value here causes illegal behavior
5044// :143:21: note: when computing vector element at index '1'5038// :137:21: note: when computing vector element at index '1'
5045// :143:21: error: use of undefined value here causes illegal behavior5039// :137:21: error: use of undefined value here causes illegal behavior
5046// :143:21: note: when computing vector element at index '0'5040// :137:21: note: when computing vector element at index '0'
5047// :143:21: error: use of undefined value here causes illegal behavior5041// :137:21: error: use of undefined value here causes illegal behavior
5048// :143:21: note: when computing vector element at index '0'5042// :137:21: note: when computing vector element at index '0'
5049// :143:21: error: use of undefined value here causes illegal behavior5043// :137:21: error: use of undefined value here causes illegal behavior
5050// :143:21: error: use of undefined value here causes illegal behavior5044// :137:21: error: use of undefined value here causes illegal behavior
5051// :143:21: note: when computing vector element at index '0'5045// :137:21: note: when computing vector element at index '0'
5052// :143:21: error: use of undefined value here causes illegal behavior5046// :137:21: error: use of undefined value here causes illegal behavior
5053// :143:21: note: when computing vector element at index '0'5047// :137:21: note: when computing vector element at index '0'
5054// :143:21: error: use of undefined value here causes illegal behavior5048// :137:21: error: use of undefined value here causes illegal behavior
5055// :143:21: note: when computing vector element at index '1'5049// :137:21: note: when computing vector element at index '1'
5056// :143:21: error: use of undefined value here causes illegal behavior5050// :137:21: error: use of undefined value here causes illegal behavior
5057// :143:21: note: when computing vector element at index '0'5051// :137:21: note: when computing vector element at index '0'
5058// :143:21: error: use of undefined value here causes illegal behavior5052// :137:21: error: use of undefined value here causes illegal behavior
5059// :143:21: note: when computing vector element at index '0'5053// :137:21: note: when computing vector element at index '0'
5060// :143:21: error: use of undefined value here causes illegal behavior5054// :137:21: error: use of undefined value here causes illegal behavior
5061// :143:21: error: use of undefined value here causes illegal behavior5055// :137:21: error: use of undefined value here causes illegal behavior
5062// :143:21: note: when computing vector element at index '0'5056// :137:21: note: when computing vector element at index '0'
5063// :143:21: error: use of undefined value here causes illegal behavior5057// :137:21: error: use of undefined value here causes illegal behavior
5064// :143:21: note: when computing vector element at index '0'5058// :137:21: note: when computing vector element at index '0'
5065// :143:21: error: use of undefined value here causes illegal behavior5059// :137:21: error: use of undefined value here causes illegal behavior
5066// :143:21: note: when computing vector element at index '1'5060// :137:21: note: when computing vector element at index '1'
5067// :143:21: error: use of undefined value here causes illegal behavior5061// :137:21: error: use of undefined value here causes illegal behavior
5068// :143:21: note: when computing vector element at index '0'5062// :137:21: note: when computing vector element at index '0'
5069// :143:21: error: use of undefined value here causes illegal behavior5063// :137:21: error: use of undefined value here causes illegal behavior
5070// :143:21: note: when computing vector element at index '0'5064// :137:21: note: when computing vector element at index '0'
5071// :143:21: error: use of undefined value here causes illegal behavior5065// :137:21: error: use of undefined value here causes illegal behavior
5072// :143:21: error: use of undefined value here causes illegal behavior5066// :137:21: error: use of undefined value here causes illegal behavior
5073// :143:21: note: when computing vector element at index '0'5067// :137:21: note: when computing vector element at index '0'
5074// :143:21: error: use of undefined value here causes illegal behavior5068// :137:21: error: use of undefined value here causes illegal behavior
5075// :143:21: note: when computing vector element at index '0'5069// :137:21: note: when computing vector element at index '0'
5076// :143:21: error: use of undefined value here causes illegal behavior5070// :137:21: error: use of undefined value here causes illegal behavior
5077// :143:21: note: when computing vector element at index '1'5071// :137:21: note: when computing vector element at index '1'
5078// :143:21: error: use of undefined value here causes illegal behavior5072// :137:21: error: use of undefined value here causes illegal behavior
5079// :143:21: note: when computing vector element at index '0'5073// :137:21: note: when computing vector element at index '0'
5080// :143:21: error: use of undefined value here causes illegal behavior5074// :137:21: error: use of undefined value here causes illegal behavior
5081// :143:21: note: when computing vector element at index '0'5075// :137:21: note: when computing vector element at index '0'
5082// :147:22: error: use of undefined value here causes illegal behavior5076// :141:22: error: use of undefined value here causes illegal behavior
5083// :147:22: error: use of undefined value here causes illegal behavior5077// :141:22: error: use of undefined value here causes illegal behavior
5084// :147:22: note: when computing vector element at index '0'5078// :141:22: note: when computing vector element at index '0'
5085// :147:22: error: use of undefined value here causes illegal behavior5079// :141:22: error: use of undefined value here causes illegal behavior
5086// :147:22: note: when computing vector element at index '0'5080// :141:22: note: when computing vector element at index '0'
5087// :147:22: error: use of undefined value here causes illegal behavior5081// :141:22: error: use of undefined value here causes illegal behavior
5088// :147:22: note: when computing vector element at index '0'5082// :141:22: note: when computing vector element at index '0'
5089// :147:22: error: use of undefined value here causes illegal behavior5083// :141:22: error: use of undefined value here causes illegal behavior
5090// :147:22: note: when computing vector element at index '1'5084// :141:22: note: when computing vector element at index '1'
5091// :147:22: error: use of undefined value here causes illegal behavior5085// :141:22: error: use of undefined value here causes illegal behavior
5092// :147:22: note: when computing vector element at index '0'5086// :141:22: note: when computing vector element at index '0'
5093// :147:22: error: use of undefined value here causes illegal behavior5087// :141:22: error: use of undefined value here causes illegal behavior
5094// :147:22: note: when computing vector element at index '0'5088// :141:22: note: when computing vector element at index '0'
5095// :147:22: error: use of undefined value here causes illegal behavior5089// :141:22: error: use of undefined value here causes illegal behavior
5096// :147:22: note: when computing vector element at index '0'5090// :141:22: note: when computing vector element at index '0'
5097// :147:22: error: use of undefined value here causes illegal behavior5091// :141:22: error: use of undefined value here causes illegal behavior
5098// :147:22: error: use of undefined value here causes illegal behavior5092// :141:22: error: use of undefined value here causes illegal behavior
5099// :147:22: note: when computing vector element at index '0'5093// :141:22: note: when computing vector element at index '0'
5100// :147:22: error: use of undefined value here causes illegal behavior5094// :141:22: error: use of undefined value here causes illegal behavior
5101// :147:22: note: when computing vector element at index '0'5095// :141:22: note: when computing vector element at index '0'
5102// :147:22: error: use of undefined value here causes illegal behavior5096// :141:22: error: use of undefined value here causes illegal behavior
5103// :147:22: note: when computing vector element at index '0'5097// :141:22: note: when computing vector element at index '0'
5104// :147:22: error: use of undefined value here causes illegal behavior5098// :141:22: error: use of undefined value here causes illegal behavior
5105// :147:22: note: when computing vector element at index '1'5099// :141:22: note: when computing vector element at index '1'
5106// :147:22: error: use of undefined value here causes illegal behavior5100// :141:22: error: use of undefined value here causes illegal behavior
5107// :147:22: note: when computing vector element at index '0'5101// :141:22: note: when computing vector element at index '0'
5108// :147:22: error: use of undefined value here causes illegal behavior5102// :141:22: error: use of undefined value here causes illegal behavior
5109// :147:22: note: when computing vector element at index '0'5103// :141:22: note: when computing vector element at index '0'
5110// :147:22: error: use of undefined value here causes illegal behavior5104// :141:22: error: use of undefined value here causes illegal behavior
5111// :147:22: note: when computing vector element at index '0'5105// :141:22: note: when computing vector element at index '0'
5112// :147:22: error: use of undefined value here causes illegal behavior5106// :141:22: error: use of undefined value here causes illegal behavior
5113// :147:22: error: use of undefined value here causes illegal behavior5107// :141:22: error: use of undefined value here causes illegal behavior
5114// :147:22: note: when computing vector element at index '0'5108// :141:22: note: when computing vector element at index '0'
5115// :147:22: error: use of undefined value here causes illegal behavior5109// :141:22: error: use of undefined value here causes illegal behavior
5116// :147:22: note: when computing vector element at index '0'5110// :141:22: note: when computing vector element at index '0'
5117// :147:22: error: use of undefined value here causes illegal behavior5111// :141:22: error: use of undefined value here causes illegal behavior
5118// :147:22: note: when computing vector element at index '0'5112// :141:22: note: when computing vector element at index '0'
5119// :147:22: error: use of undefined value here causes illegal behavior5113// :141:22: error: use of undefined value here causes illegal behavior
5120// :147:22: note: when computing vector element at index '1'5114// :141:22: note: when computing vector element at index '1'
5121// :147:22: error: use of undefined value here causes illegal behavior5115// :141:22: error: use of undefined value here causes illegal behavior
5122// :147:22: note: when computing vector element at index '0'5116// :141:22: note: when computing vector element at index '0'
5123// :147:22: error: use of undefined value here causes illegal behavior5117// :141:22: error: use of undefined value here causes illegal behavior
5124// :147:22: note: when computing vector element at index '0'5118// :141:22: note: when computing vector element at index '0'
5125// :147:22: error: use of undefined value here causes illegal behavior5119// :141:22: error: use of undefined value here causes illegal behavior
5126// :147:22: note: when computing vector element at index '0'5120// :141:22: note: when computing vector element at index '0'
5127// :147:22: error: use of undefined value here causes illegal behavior5121// :141:22: error: use of undefined value here causes illegal behavior
5128// :147:22: error: use of undefined value here causes illegal behavior5122// :141:22: error: use of undefined value here causes illegal behavior
5129// :147:22: note: when computing vector element at index '0'5123// :141:22: note: when computing vector element at index '0'
5130// :147:22: error: use of undefined value here causes illegal behavior5124// :141:22: error: use of undefined value here causes illegal behavior
5131// :147:22: note: when computing vector element at index '0'5125// :141:22: note: when computing vector element at index '0'
5132// :147:22: error: use of undefined value here causes illegal behavior5126// :141:22: error: use of undefined value here causes illegal behavior
5133// :147:22: note: when computing vector element at index '0'5127// :141:22: note: when computing vector element at index '0'
5134// :147:22: error: use of undefined value here causes illegal behavior5128// :141:22: error: use of undefined value here causes illegal behavior
5135// :147:22: note: when computing vector element at index '1'5129// :141:22: note: when computing vector element at index '1'
5136// :147:22: error: use of undefined value here causes illegal behavior5130// :141:22: error: use of undefined value here causes illegal behavior
5137// :147:22: note: when computing vector element at index '0'5131// :141:22: note: when computing vector element at index '0'
5138// :147:22: error: use of undefined value here causes illegal behavior5132// :141:22: error: use of undefined value here causes illegal behavior
5139// :147:22: note: when computing vector element at index '0'5133// :141:22: note: when computing vector element at index '0'
5140// :147:22: error: use of undefined value here causes illegal behavior5134// :141:22: error: use of undefined value here causes illegal behavior
5141// :147:22: note: when computing vector element at index '0'5135// :141:22: note: when computing vector element at index '0'
5142// :147:22: error: use of undefined value here causes illegal behavior5136// :141:22: error: use of undefined value here causes illegal behavior
5143// :147:22: error: use of undefined value here causes illegal behavior5137// :141:22: error: use of undefined value here causes illegal behavior
5144// :147:22: note: when computing vector element at index '0'5138// :141:22: note: when computing vector element at index '0'
5145// :147:22: error: use of undefined value here causes illegal behavior5139// :141:22: error: use of undefined value here causes illegal behavior
5146// :147:22: note: when computing vector element at index '0'5140// :141:22: note: when computing vector element at index '0'
5147// :147:22: error: use of undefined value here causes illegal behavior5141// :141:22: error: use of undefined value here causes illegal behavior
5148// :147:22: note: when computing vector element at index '0'5142// :141:22: note: when computing vector element at index '0'
5149// :147:22: error: use of undefined value here causes illegal behavior5143// :141:22: error: use of undefined value here causes illegal behavior
5150// :147:22: note: when computing vector element at index '1'5144// :141:22: note: when computing vector element at index '1'
5151// :147:22: error: use of undefined value here causes illegal behavior5145// :141:22: error: use of undefined value here causes illegal behavior
5152// :147:22: note: when computing vector element at index '0'5146// :141:22: note: when computing vector element at index '0'
5153// :147:22: error: use of undefined value here causes illegal behavior5147// :141:22: error: use of undefined value here causes illegal behavior
5154// :147:22: note: when computing vector element at index '0'5148// :141:22: note: when computing vector element at index '0'
5155// :147:22: error: use of undefined value here causes illegal behavior5149// :141:22: error: use of undefined value here causes illegal behavior
5156// :147:22: note: when computing vector element at index '0'5150// :141:22: note: when computing vector element at index '0'
5157// :147:22: error: use of undefined value here causes illegal behavior5151// :141:22: error: use of undefined value here causes illegal behavior
5158// :147:22: error: use of undefined value here causes illegal behavior5152// :141:22: error: use of undefined value here causes illegal behavior
5159// :147:22: note: when computing vector element at index '0'5153// :141:22: note: when computing vector element at index '0'
5160// :147:22: error: use of undefined value here causes illegal behavior5154// :141:22: error: use of undefined value here causes illegal behavior
5161// :147:22: note: when computing vector element at index '0'5155// :141:22: note: when computing vector element at index '0'
5162// :147:22: error: use of undefined value here causes illegal behavior5156// :141:22: error: use of undefined value here causes illegal behavior
5163// :147:22: note: when computing vector element at index '0'5157// :141:22: note: when computing vector element at index '0'
5164// :147:22: error: use of undefined value here causes illegal behavior5158// :141:22: error: use of undefined value here causes illegal behavior
5165// :147:22: note: when computing vector element at index '1'5159// :141:22: note: when computing vector element at index '1'
5166// :147:22: error: use of undefined value here causes illegal behavior5160// :141:22: error: use of undefined value here causes illegal behavior
5167// :147:22: note: when computing vector element at index '0'5161// :141:22: note: when computing vector element at index '0'
5168// :147:22: error: use of undefined value here causes illegal behavior5162// :141:22: error: use of undefined value here causes illegal behavior
5169// :147:22: note: when computing vector element at index '0'5163// :141:22: note: when computing vector element at index '0'
5170// :147:22: error: use of undefined value here causes illegal behavior5164// :141:22: error: use of undefined value here causes illegal behavior
5171// :147:22: note: when computing vector element at index '0'5165// :141:22: note: when computing vector element at index '0'
5172// :147:22: error: use of undefined value here causes illegal behavior5166// :141:22: error: use of undefined value here causes illegal behavior
5173// :147:22: error: use of undefined value here causes illegal behavior5167// :141:22: error: use of undefined value here causes illegal behavior
5174// :147:22: note: when computing vector element at index '0'5168// :141:22: note: when computing vector element at index '0'
5175// :147:22: error: use of undefined value here causes illegal behavior5169// :141:22: error: use of undefined value here causes illegal behavior
5176// :147:22: note: when computing vector element at index '0'5170// :141:22: note: when computing vector element at index '0'
5177// :147:22: error: use of undefined value here causes illegal behavior5171// :141:22: error: use of undefined value here causes illegal behavior
5178// :147:22: note: when computing vector element at index '0'5172// :141:22: note: when computing vector element at index '0'
5179// :147:22: error: use of undefined value here causes illegal behavior5173// :141:22: error: use of undefined value here causes illegal behavior
5180// :147:22: note: when computing vector element at index '1'5174// :141:22: note: when computing vector element at index '1'
5181// :147:22: error: use of undefined value here causes illegal behavior5175// :141:22: error: use of undefined value here causes illegal behavior
5182// :147:22: note: when computing vector element at index '0'5176// :141:22: note: when computing vector element at index '0'
5183// :147:22: error: use of undefined value here causes illegal behavior5177// :141:22: error: use of undefined value here causes illegal behavior
5184// :147:22: note: when computing vector element at index '0'5178// :141:22: note: when computing vector element at index '0'
5185// :147:22: error: use of undefined value here causes illegal behavior5179// :141:22: error: use of undefined value here causes illegal behavior
5186// :147:22: note: when computing vector element at index '0'5180// :141:22: note: when computing vector element at index '0'
5187// :147:22: error: use of undefined value here causes illegal behavior5181// :141:22: error: use of undefined value here causes illegal behavior
5188// :147:22: error: use of undefined value here causes illegal behavior5182// :141:22: error: use of undefined value here causes illegal behavior
5189// :147:22: note: when computing vector element at index '0'5183// :141:22: note: when computing vector element at index '0'
5190// :147:22: error: use of undefined value here causes illegal behavior5184// :141:22: error: use of undefined value here causes illegal behavior
5191// :147:22: note: when computing vector element at index '0'5185// :141:22: note: when computing vector element at index '0'
5192// :147:22: error: use of undefined value here causes illegal behavior5186// :141:22: error: use of undefined value here causes illegal behavior
5193// :147:22: note: when computing vector element at index '0'5187// :141:22: note: when computing vector element at index '0'
5194// :147:22: error: use of undefined value here causes illegal behavior5188// :141:22: error: use of undefined value here causes illegal behavior
5195// :147:22: note: when computing vector element at index '1'5189// :141:22: note: when computing vector element at index '1'
5196// :147:22: error: use of undefined value here causes illegal behavior5190// :141:22: error: use of undefined value here causes illegal behavior
5197// :147:22: note: when computing vector element at index '0'5191// :141:22: note: when computing vector element at index '0'
5198// :147:22: error: use of undefined value here causes illegal behavior5192// :141:22: error: use of undefined value here causes illegal behavior
5199// :147:22: note: when computing vector element at index '0'5193// :141:22: note: when computing vector element at index '0'
5200// :147:22: error: use of undefined value here causes illegal behavior5194// :141:22: error: use of undefined value here causes illegal behavior
5201// :147:22: note: when computing vector element at index '0'5195// :141:22: note: when computing vector element at index '0'
5202// :147:22: error: use of undefined value here causes illegal behavior5196// :141:22: error: use of undefined value here causes illegal behavior
5203// :147:22: error: use of undefined value here causes illegal behavior5197// :141:22: error: use of undefined value here causes illegal behavior
5204// :147:22: note: when computing vector element at index '0'5198// :141:22: note: when computing vector element at index '0'
5205// :147:22: error: use of undefined value here causes illegal behavior5199// :141:22: error: use of undefined value here causes illegal behavior
5206// :147:22: note: when computing vector element at index '0'5200// :141:22: note: when computing vector element at index '0'
5207// :147:22: error: use of undefined value here causes illegal behavior5201// :141:22: error: use of undefined value here causes illegal behavior
5208// :147:22: note: when computing vector element at index '0'5202// :141:22: note: when computing vector element at index '0'
5209// :147:22: error: use of undefined value here causes illegal behavior5203// :141:22: error: use of undefined value here causes illegal behavior
5210// :147:22: note: when computing vector element at index '1'5204// :141:22: note: when computing vector element at index '1'
5211// :147:22: error: use of undefined value here causes illegal behavior5205// :141:22: error: use of undefined value here causes illegal behavior
5212// :147:22: note: when computing vector element at index '0'5206// :141:22: note: when computing vector element at index '0'
5213// :147:22: error: use of undefined value here causes illegal behavior5207// :141:22: error: use of undefined value here causes illegal behavior
5214// :147:22: note: when computing vector element at index '0'5208// :141:22: note: when computing vector element at index '0'
5215// :147:22: error: use of undefined value here causes illegal behavior5209// :141:22: error: use of undefined value here causes illegal behavior
5216// :147:22: note: when computing vector element at index '0'5210// :141:22: note: when computing vector element at index '0'
5217// :147:22: error: use of undefined value here causes illegal behavior5211// :141:22: error: use of undefined value here causes illegal behavior
5218// :147:22: error: use of undefined value here causes illegal behavior5212// :141:22: error: use of undefined value here causes illegal behavior
5219// :147:22: note: when computing vector element at index '0'5213// :141:22: note: when computing vector element at index '0'
5220// :147:22: error: use of undefined value here causes illegal behavior5214// :141:22: error: use of undefined value here causes illegal behavior
5221// :147:22: note: when computing vector element at index '0'5215// :141:22: note: when computing vector element at index '0'
5222// :147:22: error: use of undefined value here causes illegal behavior5216// :141:22: error: use of undefined value here causes illegal behavior
5223// :147:22: note: when computing vector element at index '0'5217// :141:22: note: when computing vector element at index '0'
5224// :147:22: error: use of undefined value here causes illegal behavior5218// :141:22: error: use of undefined value here causes illegal behavior
5225// :147:22: note: when computing vector element at index '1'5219// :141:22: note: when computing vector element at index '1'
5226// :147:22: error: use of undefined value here causes illegal behavior5220// :141:22: error: use of undefined value here causes illegal behavior
5227// :147:22: note: when computing vector element at index '0'5221// :141:22: note: when computing vector element at index '0'
5228// :147:22: error: use of undefined value here causes illegal behavior5222// :141:22: error: use of undefined value here causes illegal behavior
5229// :147:22: note: when computing vector element at index '0'5223// :141:22: note: when computing vector element at index '0'
5230// :147:22: error: use of undefined value here causes illegal behavior5224// :141:22: error: use of undefined value here causes illegal behavior
5231// :147:22: note: when computing vector element at index '0'5225// :141:22: note: when computing vector element at index '0'
5232// :147:22: error: use of undefined value here causes illegal behavior5226// :141:22: error: use of undefined value here causes illegal behavior
5233// :147:22: error: use of undefined value here causes illegal behavior5227// :141:22: error: use of undefined value here causes illegal behavior
5234// :147:22: note: when computing vector element at index '0'5228// :141:22: note: when computing vector element at index '0'
5235// :147:22: error: use of undefined value here causes illegal behavior5229// :141:22: error: use of undefined value here causes illegal behavior
5236// :147:22: note: when computing vector element at index '0'5230// :141:22: note: when computing vector element at index '0'
5237// :147:22: error: use of undefined value here causes illegal behavior5231// :141:22: error: use of undefined value here causes illegal behavior
5238// :147:22: note: when computing vector element at index '0'5232// :141:22: note: when computing vector element at index '0'
5239// :147:22: error: use of undefined value here causes illegal behavior5233// :141:22: error: use of undefined value here causes illegal behavior
5240// :147:22: note: when computing vector element at index '1'5234// :141:22: note: when computing vector element at index '1'
5241// :147:22: error: use of undefined value here causes illegal behavior5235// :141:22: error: use of undefined value here causes illegal behavior
5242// :147:22: note: when computing vector element at index '0'5236// :141:22: note: when computing vector element at index '0'
5243// :147:22: error: use of undefined value here causes illegal behavior5237// :141:22: error: use of undefined value here causes illegal behavior
5244// :147:22: note: when computing vector element at index '0'5238// :141:22: note: when computing vector element at index '0'
5245// :147:22: error: use of undefined value here causes illegal behavior5239// :141:22: error: use of undefined value here causes illegal behavior
5246// :147:22: note: when computing vector element at index '0'5240// :141:22: note: when computing vector element at index '0'
5247// :147:25: error: use of undefined value here causes illegal behavior5241// :141:25: error: use of undefined value here causes illegal behavior
5248// :147:25: error: use of undefined value here causes illegal behavior5242// :141:25: error: use of undefined value here causes illegal behavior
5249// :147:25: note: when computing vector element at index '0'5243// :141:25: note: when computing vector element at index '0'
5250// :147:25: error: use of undefined value here causes illegal behavior5244// :141:25: error: use of undefined value here causes illegal behavior
5251// :147:25: note: when computing vector element at index '0'5245// :141:25: note: when computing vector element at index '0'
5252// :147:25: error: use of undefined value here causes illegal behavior5246// :141:25: error: use of undefined value here causes illegal behavior
5253// :147:25: note: when computing vector element at index '1'5247// :141:25: note: when computing vector element at index '1'
5254// :147:25: error: use of undefined value here causes illegal behavior5248// :141:25: error: use of undefined value here causes illegal behavior
5255// :147:25: note: when computing vector element at index '0'5249// :141:25: note: when computing vector element at index '0'
5256// :147:25: error: use of undefined value here causes illegal behavior5250// :141:25: error: use of undefined value here causes illegal behavior
5257// :147:25: note: when computing vector element at index '0'5251// :141:25: note: when computing vector element at index '0'
5258// :147:25: error: use of undefined value here causes illegal behavior5252// :141:25: error: use of undefined value here causes illegal behavior
5259// :147:25: error: use of undefined value here causes illegal behavior5253// :141:25: error: use of undefined value here causes illegal behavior
5260// :147:25: note: when computing vector element at index '0'5254// :141:25: note: when computing vector element at index '0'
5261// :147:25: error: use of undefined value here causes illegal behavior5255// :141:25: error: use of undefined value here causes illegal behavior
5262// :147:25: note: when computing vector element at index '0'5256// :141:25: note: when computing vector element at index '0'
5263// :147:25: error: use of undefined value here causes illegal behavior5257// :141:25: error: use of undefined value here causes illegal behavior
5264// :147:25: note: when computing vector element at index '1'5258// :141:25: note: when computing vector element at index '1'
5265// :147:25: error: use of undefined value here causes illegal behavior5259// :141:25: error: use of undefined value here causes illegal behavior
5266// :147:25: note: when computing vector element at index '0'5260// :141:25: note: when computing vector element at index '0'
5267// :147:25: error: use of undefined value here causes illegal behavior5261// :141:25: error: use of undefined value here causes illegal behavior
5268// :147:25: note: when computing vector element at index '0'5262// :141:25: note: when computing vector element at index '0'
5269// :147:25: error: use of undefined value here causes illegal behavior5263// :141:25: error: use of undefined value here causes illegal behavior
5270// :147:25: error: use of undefined value here causes illegal behavior5264// :141:25: error: use of undefined value here causes illegal behavior
5271// :147:25: note: when computing vector element at index '0'5265// :141:25: note: when computing vector element at index '0'
5272// :147:25: error: use of undefined value here causes illegal behavior5266// :141:25: error: use of undefined value here causes illegal behavior
5273// :147:25: note: when computing vector element at index '0'5267// :141:25: note: when computing vector element at index '0'
5274// :147:25: error: use of undefined value here causes illegal behavior5268// :141:25: error: use of undefined value here causes illegal behavior
5275// :147:25: note: when computing vector element at index '1'5269// :141:25: note: when computing vector element at index '1'
5276// :147:25: error: use of undefined value here causes illegal behavior5270// :141:25: error: use of undefined value here causes illegal behavior
5277// :147:25: note: when computing vector element at index '0'5271// :141:25: note: when computing vector element at index '0'
5278// :147:25: error: use of undefined value here causes illegal behavior5272// :141:25: error: use of undefined value here causes illegal behavior
5279// :147:25: note: when computing vector element at index '0'5273// :141:25: note: when computing vector element at index '0'
5280// :147:25: error: use of undefined value here causes illegal behavior5274// :141:25: error: use of undefined value here causes illegal behavior
5281// :147:25: error: use of undefined value here causes illegal behavior5275// :141:25: error: use of undefined value here causes illegal behavior
5282// :147:25: note: when computing vector element at index '0'5276// :141:25: note: when computing vector element at index '0'
5283// :147:25: error: use of undefined value here causes illegal behavior5277// :141:25: error: use of undefined value here causes illegal behavior
5284// :147:25: note: when computing vector element at index '0'5278// :141:25: note: when computing vector element at index '0'
5285// :147:25: error: use of undefined value here causes illegal behavior5279// :141:25: error: use of undefined value here causes illegal behavior
5286// :147:25: note: when computing vector element at index '1'5280// :141:25: note: when computing vector element at index '1'
5287// :147:25: error: use of undefined value here causes illegal behavior5281// :141:25: error: use of undefined value here causes illegal behavior
5288// :147:25: note: when computing vector element at index '0'5282// :141:25: note: when computing vector element at index '0'
5289// :147:25: error: use of undefined value here causes illegal behavior5283// :141:25: error: use of undefined value here causes illegal behavior
5290// :147:25: note: when computing vector element at index '0'5284// :141:25: note: when computing vector element at index '0'
5291// :147:25: error: use of undefined value here causes illegal behavior5285// :141:25: error: use of undefined value here causes illegal behavior
5292// :147:25: error: use of undefined value here causes illegal behavior5286// :141:25: error: use of undefined value here causes illegal behavior
5293// :147:25: note: when computing vector element at index '0'5287// :141:25: note: when computing vector element at index '0'
5294// :147:25: error: use of undefined value here causes illegal behavior5288// :141:25: error: use of undefined value here causes illegal behavior
5295// :147:25: note: when computing vector element at index '0'5289// :141:25: note: when computing vector element at index '0'
5296// :147:25: error: use of undefined value here causes illegal behavior5290// :141:25: error: use of undefined value here causes illegal behavior
5297// :147:25: note: when computing vector element at index '1'5291// :141:25: note: when computing vector element at index '1'
5298// :147:25: error: use of undefined value here causes illegal behavior5292// :141:25: error: use of undefined value here causes illegal behavior
5299// :147:25: note: when computing vector element at index '0'5293// :141:25: note: when computing vector element at index '0'
5300// :147:25: error: use of undefined value here causes illegal behavior5294// :141:25: error: use of undefined value here causes illegal behavior
5301// :147:25: note: when computing vector element at index '0'5295// :141:25: note: when computing vector element at index '0'
5302// :147:25: error: use of undefined value here causes illegal behavior5296// :141:25: error: use of undefined value here causes illegal behavior
5303// :147:25: error: use of undefined value here causes illegal behavior5297// :141:25: error: use of undefined value here causes illegal behavior
5304// :147:25: note: when computing vector element at index '0'5298// :141:25: note: when computing vector element at index '0'
5305// :147:25: error: use of undefined value here causes illegal behavior5299// :141:25: error: use of undefined value here causes illegal behavior
5306// :147:25: note: when computing vector element at index '0'5300// :141:25: note: when computing vector element at index '0'
5307// :147:25: error: use of undefined value here causes illegal behavior5301// :141:25: error: use of undefined value here causes illegal behavior
5308// :147:25: note: when computing vector element at index '1'5302// :141:25: note: when computing vector element at index '1'
5309// :147:25: error: use of undefined value here causes illegal behavior5303// :141:25: error: use of undefined value here causes illegal behavior
5310// :147:25: note: when computing vector element at index '0'5304// :141:25: note: when computing vector element at index '0'
5311// :147:25: error: use of undefined value here causes illegal behavior5305// :141:25: error: use of undefined value here causes illegal behavior
5312// :147:25: note: when computing vector element at index '0'5306// :141:25: note: when computing vector element at index '0'
5313// :147:25: error: use of undefined value here causes illegal behavior5307// :141:25: error: use of undefined value here causes illegal behavior
5314// :147:25: error: use of undefined value here causes illegal behavior5308// :141:25: error: use of undefined value here causes illegal behavior
5315// :147:25: note: when computing vector element at index '0'5309// :141:25: note: when computing vector element at index '0'
5316// :147:25: error: use of undefined value here causes illegal behavior5310// :141:25: error: use of undefined value here causes illegal behavior
5317// :147:25: note: when computing vector element at index '0'5311// :141:25: note: when computing vector element at index '0'
5318// :147:25: error: use of undefined value here causes illegal behavior5312// :141:25: error: use of undefined value here causes illegal behavior
5319// :147:25: note: when computing vector element at index '1'5313// :141:25: note: when computing vector element at index '1'
5320// :147:25: error: use of undefined value here causes illegal behavior5314// :141:25: error: use of undefined value here causes illegal behavior
5321// :147:25: note: when computing vector element at index '0'5315// :141:25: note: when computing vector element at index '0'
5322// :147:25: error: use of undefined value here causes illegal behavior5316// :141:25: error: use of undefined value here causes illegal behavior
5323// :147:25: note: when computing vector element at index '0'5317// :141:25: note: when computing vector element at index '0'
5324// :147:25: error: use of undefined value here causes illegal behavior5318// :141:25: error: use of undefined value here causes illegal behavior
5325// :147:25: error: use of undefined value here causes illegal behavior5319// :141:25: error: use of undefined value here causes illegal behavior
5326// :147:25: note: when computing vector element at index '0'5320// :141:25: note: when computing vector element at index '0'
5327// :147:25: error: use of undefined value here causes illegal behavior5321// :141:25: error: use of undefined value here causes illegal behavior
5328// :147:25: note: when computing vector element at index '0'5322// :141:25: note: when computing vector element at index '0'
5329// :147:25: error: use of undefined value here causes illegal behavior5323// :141:25: error: use of undefined value here causes illegal behavior
5330// :147:25: note: when computing vector element at index '1'5324// :141:25: note: when computing vector element at index '1'
5331// :147:25: error: use of undefined value here causes illegal behavior5325// :141:25: error: use of undefined value here causes illegal behavior
5332// :147:25: note: when computing vector element at index '0'5326// :141:25: note: when computing vector element at index '0'
5333// :147:25: error: use of undefined value here causes illegal behavior5327// :141:25: error: use of undefined value here causes illegal behavior
5334// :147:25: note: when computing vector element at index '0'5328// :141:25: note: when computing vector element at index '0'
5335// :147:25: error: use of undefined value here causes illegal behavior5329// :141:25: error: use of undefined value here causes illegal behavior
5336// :147:25: error: use of undefined value here causes illegal behavior5330// :141:25: error: use of undefined value here causes illegal behavior
5337// :147:25: note: when computing vector element at index '0'5331// :141:25: note: when computing vector element at index '0'
5338// :147:25: error: use of undefined value here causes illegal behavior5332// :141:25: error: use of undefined value here causes illegal behavior
5339// :147:25: note: when computing vector element at index '0'5333// :141:25: note: when computing vector element at index '0'
5340// :147:25: error: use of undefined value here causes illegal behavior5334// :141:25: error: use of undefined value here causes illegal behavior
5341// :147:25: note: when computing vector element at index '1'5335// :141:25: note: when computing vector element at index '1'
5342// :147:25: error: use of undefined value here causes illegal behavior5336// :141:25: error: use of undefined value here causes illegal behavior
5343// :147:25: note: when computing vector element at index '0'5337// :141:25: note: when computing vector element at index '0'
5344// :147:25: error: use of undefined value here causes illegal behavior5338// :141:25: error: use of undefined value here causes illegal behavior
5345// :147:25: note: when computing vector element at index '0'5339// :141:25: note: when computing vector element at index '0'
5346// :147:25: error: use of undefined value here causes illegal behavior5340// :141:25: error: use of undefined value here causes illegal behavior
5347// :147:25: error: use of undefined value here causes illegal behavior5341// :141:25: error: use of undefined value here causes illegal behavior
5348// :147:25: note: when computing vector element at index '0'5342// :141:25: note: when computing vector element at index '0'
5349// :147:25: error: use of undefined value here causes illegal behavior5343// :141:25: error: use of undefined value here causes illegal behavior
5350// :147:25: note: when computing vector element at index '0'5344// :141:25: note: when computing vector element at index '0'
5351// :147:25: error: use of undefined value here causes illegal behavior5345// :141:25: error: use of undefined value here causes illegal behavior
5352// :147:25: note: when computing vector element at index '1'5346// :141:25: note: when computing vector element at index '1'
5353// :147:25: error: use of undefined value here causes illegal behavior5347// :141:25: error: use of undefined value here causes illegal behavior
5354// :147:25: note: when computing vector element at index '0'5348// :141:25: note: when computing vector element at index '0'
5355// :147:25: error: use of undefined value here causes illegal behavior5349// :141:25: error: use of undefined value here causes illegal behavior
5356// :147:25: note: when computing vector element at index '0'5350// :141:25: note: when computing vector element at index '0'
5357// :147:25: error: use of undefined value here causes illegal behavior5351// :141:25: error: use of undefined value here causes illegal behavior
5358// :147:25: error: use of undefined value here causes illegal behavior5352// :141:25: error: use of undefined value here causes illegal behavior
5359// :147:25: note: when computing vector element at index '0'5353// :141:25: note: when computing vector element at index '0'
5360// :147:25: error: use of undefined value here causes illegal behavior5354// :141:25: error: use of undefined value here causes illegal behavior
5361// :147:25: note: when computing vector element at index '0'5355// :141:25: note: when computing vector element at index '0'
5362// :147:25: error: use of undefined value here causes illegal behavior5356// :141:25: error: use of undefined value here causes illegal behavior
5363// :147:25: note: when computing vector element at index '1'5357// :141:25: note: when computing vector element at index '1'
5364// :147:25: error: use of undefined value here causes illegal behavior5358// :141:25: error: use of undefined value here causes illegal behavior
5365// :147:25: note: when computing vector element at index '0'5359// :141:25: note: when computing vector element at index '0'
5366// :147:25: error: use of undefined value here causes illegal behavior5360// :141:25: error: use of undefined value here causes illegal behavior
5367// :147:25: note: when computing vector element at index '0'5361// :141:25: note: when computing vector element at index '0'
5368// :151:22: error: use of undefined value here causes illegal behavior5362// :145:22: error: use of undefined value here causes illegal behavior
5369// :151:22: error: use of undefined value here causes illegal behavior5363// :145:22: error: use of undefined value here causes illegal behavior
5370// :151:22: note: when computing vector element at index '0'5364// :145:22: note: when computing vector element at index '0'
5371// :151:22: error: use of undefined value here causes illegal behavior5365// :145:22: error: use of undefined value here causes illegal behavior
5372// :151:22: note: when computing vector element at index '0'5366// :145:22: note: when computing vector element at index '0'
5373// :151:22: error: use of undefined value here causes illegal behavior5367// :145:22: error: use of undefined value here causes illegal behavior
5374// :151:22: note: when computing vector element at index '0'5368// :145:22: note: when computing vector element at index '0'
5375// :151:22: error: use of undefined value here causes illegal behavior5369// :145:22: error: use of undefined value here causes illegal behavior
5376// :151:22: note: when computing vector element at index '1'5370// :145:22: note: when computing vector element at index '1'
5377// :151:22: error: use of undefined value here causes illegal behavior5371// :145:22: error: use of undefined value here causes illegal behavior
5378// :151:22: note: when computing vector element at index '0'5372// :145:22: note: when computing vector element at index '0'
5379// :151:22: error: use of undefined value here causes illegal behavior5373// :145:22: error: use of undefined value here causes illegal behavior
5380// :151:22: note: when computing vector element at index '0'5374// :145:22: note: when computing vector element at index '0'
5381// :151:22: error: use of undefined value here causes illegal behavior5375// :145:22: error: use of undefined value here causes illegal behavior
5382// :151:22: note: when computing vector element at index '0'5376// :145:22: note: when computing vector element at index '0'
5383// :151:22: error: use of undefined value here causes illegal behavior5377// :145:22: error: use of undefined value here causes illegal behavior
5384// :151:22: error: use of undefined value here causes illegal behavior5378// :145:22: error: use of undefined value here causes illegal behavior
5385// :151:22: note: when computing vector element at index '0'5379// :145:22: note: when computing vector element at index '0'
5386// :151:22: error: use of undefined value here causes illegal behavior5380// :145:22: error: use of undefined value here causes illegal behavior
5387// :151:22: note: when computing vector element at index '0'5381// :145:22: note: when computing vector element at index '0'
5388// :151:22: error: use of undefined value here causes illegal behavior5382// :145:22: error: use of undefined value here causes illegal behavior
5389// :151:22: note: when computing vector element at index '0'5383// :145:22: note: when computing vector element at index '0'
5390// :151:22: error: use of undefined value here causes illegal behavior5384// :145:22: error: use of undefined value here causes illegal behavior
5391// :151:22: note: when computing vector element at index '1'5385// :145:22: note: when computing vector element at index '1'
5392// :151:22: error: use of undefined value here causes illegal behavior5386// :145:22: error: use of undefined value here causes illegal behavior
5393// :151:22: note: when computing vector element at index '0'5387// :145:22: note: when computing vector element at index '0'
5394// :151:22: error: use of undefined value here causes illegal behavior5388// :145:22: error: use of undefined value here causes illegal behavior
5395// :151:22: note: when computing vector element at index '0'5389// :145:22: note: when computing vector element at index '0'
5396// :151:22: error: use of undefined value here causes illegal behavior5390// :145:22: error: use of undefined value here causes illegal behavior
5397// :151:22: note: when computing vector element at index '0'5391// :145:22: note: when computing vector element at index '0'
5398// :151:22: error: use of undefined value here causes illegal behavior5392// :145:22: error: use of undefined value here causes illegal behavior
5399// :151:22: error: use of undefined value here causes illegal behavior5393// :145:22: error: use of undefined value here causes illegal behavior
5400// :151:22: note: when computing vector element at index '0'5394// :145:22: note: when computing vector element at index '0'
5401// :151:22: error: use of undefined value here causes illegal behavior5395// :145:22: error: use of undefined value here causes illegal behavior
5402// :151:22: note: when computing vector element at index '0'5396// :145:22: note: when computing vector element at index '0'
5403// :151:22: error: use of undefined value here causes illegal behavior5397// :145:22: error: use of undefined value here causes illegal behavior
5404// :151:22: note: when computing vector element at index '0'5398// :145:22: note: when computing vector element at index '0'
5405// :151:22: error: use of undefined value here causes illegal behavior5399// :145:22: error: use of undefined value here causes illegal behavior
5406// :151:22: note: when computing vector element at index '1'5400// :145:22: note: when computing vector element at index '1'
5407// :151:22: error: use of undefined value here causes illegal behavior5401// :145:22: error: use of undefined value here causes illegal behavior
5408// :151:22: note: when computing vector element at index '0'5402// :145:22: note: when computing vector element at index '0'
5409// :151:22: error: use of undefined value here causes illegal behavior5403// :145:22: error: use of undefined value here causes illegal behavior
5410// :151:22: note: when computing vector element at index '0'5404// :145:22: note: when computing vector element at index '0'
5411// :151:22: error: use of undefined value here causes illegal behavior5405// :145:22: error: use of undefined value here causes illegal behavior
5412// :151:22: note: when computing vector element at index '0'5406// :145:22: note: when computing vector element at index '0'
5413// :151:22: error: use of undefined value here causes illegal behavior5407// :145:22: error: use of undefined value here causes illegal behavior
5414// :151:22: error: use of undefined value here causes illegal behavior5408// :145:22: error: use of undefined value here causes illegal behavior
5415// :151:22: note: when computing vector element at index '0'5409// :145:22: note: when computing vector element at index '0'
5416// :151:22: error: use of undefined value here causes illegal behavior5410// :145:22: error: use of undefined value here causes illegal behavior
5417// :151:22: note: when computing vector element at index '0'5411// :145:22: note: when computing vector element at index '0'
5418// :151:22: error: use of undefined value here causes illegal behavior5412// :145:22: error: use of undefined value here causes illegal behavior
5419// :151:22: note: when computing vector element at index '0'5413// :145:22: note: when computing vector element at index '0'
5420// :151:22: error: use of undefined value here causes illegal behavior5414// :145:22: error: use of undefined value here causes illegal behavior
5421// :151:22: note: when computing vector element at index '1'5415// :145:22: note: when computing vector element at index '1'
5422// :151:22: error: use of undefined value here causes illegal behavior5416// :145:22: error: use of undefined value here causes illegal behavior
5423// :151:22: note: when computing vector element at index '0'5417// :145:22: note: when computing vector element at index '0'
5424// :151:22: error: use of undefined value here causes illegal behavior5418// :145:22: error: use of undefined value here causes illegal behavior
5425// :151:22: note: when computing vector element at index '0'5419// :145:22: note: when computing vector element at index '0'
5426// :151:22: error: use of undefined value here causes illegal behavior5420// :145:22: error: use of undefined value here causes illegal behavior
5427// :151:22: note: when computing vector element at index '0'5421// :145:22: note: when computing vector element at index '0'
5428// :151:22: error: use of undefined value here causes illegal behavior5422// :145:22: error: use of undefined value here causes illegal behavior
5429// :151:22: error: use of undefined value here causes illegal behavior5423// :145:22: error: use of undefined value here causes illegal behavior
5430// :151:22: note: when computing vector element at index '0'5424// :145:22: note: when computing vector element at index '0'
5431// :151:22: error: use of undefined value here causes illegal behavior5425// :145:22: error: use of undefined value here causes illegal behavior
5432// :151:22: note: when computing vector element at index '0'5426// :145:22: note: when computing vector element at index '0'
5433// :151:22: error: use of undefined value here causes illegal behavior5427// :145:22: error: use of undefined value here causes illegal behavior
5434// :151:22: note: when computing vector element at index '0'5428// :145:22: note: when computing vector element at index '0'
5435// :151:22: error: use of undefined value here causes illegal behavior5429// :145:22: error: use of undefined value here causes illegal behavior
5436// :151:22: note: when computing vector element at index '1'5430// :145:22: note: when computing vector element at index '1'
5437// :151:22: error: use of undefined value here causes illegal behavior5431// :145:22: error: use of undefined value here causes illegal behavior
5438// :151:22: note: when computing vector element at index '0'5432// :145:22: note: when computing vector element at index '0'
5439// :151:22: error: use of undefined value here causes illegal behavior5433// :145:22: error: use of undefined value here causes illegal behavior
5440// :151:22: note: when computing vector element at index '0'5434// :145:22: note: when computing vector element at index '0'
5441// :151:22: error: use of undefined value here causes illegal behavior5435// :145:22: error: use of undefined value here causes illegal behavior
5442// :151:22: note: when computing vector element at index '0'5436// :145:22: note: when computing vector element at index '0'
5443// :151:22: error: use of undefined value here causes illegal behavior5437// :145:22: error: use of undefined value here causes illegal behavior
5444// :151:22: error: use of undefined value here causes illegal behavior5438// :145:22: error: use of undefined value here causes illegal behavior
5445// :151:22: note: when computing vector element at index '0'5439// :145:22: note: when computing vector element at index '0'
5446// :151:22: error: use of undefined value here causes illegal behavior5440// :145:22: error: use of undefined value here causes illegal behavior
5447// :151:22: note: when computing vector element at index '0'5441// :145:22: note: when computing vector element at index '0'
5448// :151:22: error: use of undefined value here causes illegal behavior5442// :145:22: error: use of undefined value here causes illegal behavior
5449// :151:22: note: when computing vector element at index '0'5443// :145:22: note: when computing vector element at index '0'
5450// :151:22: error: use of undefined value here causes illegal behavior5444// :145:22: error: use of undefined value here causes illegal behavior
5451// :151:22: note: when computing vector element at index '1'5445// :145:22: note: when computing vector element at index '1'
5452// :151:22: error: use of undefined value here causes illegal behavior5446// :145:22: error: use of undefined value here causes illegal behavior
5453// :151:22: note: when computing vector element at index '0'5447// :145:22: note: when computing vector element at index '0'
5454// :151:22: error: use of undefined value here causes illegal behavior5448// :145:22: error: use of undefined value here causes illegal behavior
5455// :151:22: note: when computing vector element at index '0'5449// :145:22: note: when computing vector element at index '0'
5456// :151:22: error: use of undefined value here causes illegal behavior5450// :145:22: error: use of undefined value here causes illegal behavior
5457// :151:22: note: when computing vector element at index '0'5451// :145:22: note: when computing vector element at index '0'
5458// :151:22: error: use of undefined value here causes illegal behavior5452// :145:22: error: use of undefined value here causes illegal behavior
5459// :151:22: error: use of undefined value here causes illegal behavior5453// :145:22: error: use of undefined value here causes illegal behavior
5460// :151:22: note: when computing vector element at index '0'5454// :145:22: note: when computing vector element at index '0'
5461// :151:22: error: use of undefined value here causes illegal behavior5455// :145:22: error: use of undefined value here causes illegal behavior
5462// :151:22: note: when computing vector element at index '0'5456// :145:22: note: when computing vector element at index '0'
5463// :151:22: error: use of undefined value here causes illegal behavior5457// :145:22: error: use of undefined value here causes illegal behavior
5464// :151:22: note: when computing vector element at index '0'5458// :145:22: note: when computing vector element at index '0'
5465// :151:22: error: use of undefined value here causes illegal behavior5459// :145:22: error: use of undefined value here causes illegal behavior
5466// :151:22: note: when computing vector element at index '1'5460// :145:22: note: when computing vector element at index '1'
5467// :151:22: error: use of undefined value here causes illegal behavior5461// :145:22: error: use of undefined value here causes illegal behavior
5468// :151:22: note: when computing vector element at index '0'5462// :145:22: note: when computing vector element at index '0'
5469// :151:22: error: use of undefined value here causes illegal behavior5463// :145:22: error: use of undefined value here causes illegal behavior
5470// :151:22: note: when computing vector element at index '0'5464// :145:22: note: when computing vector element at index '0'
5471// :151:22: error: use of undefined value here causes illegal behavior5465// :145:22: error: use of undefined value here causes illegal behavior
5472// :151:22: note: when computing vector element at index '0'5466// :145:22: note: when computing vector element at index '0'
5473// :151:22: error: use of undefined value here causes illegal behavior5467// :145:22: error: use of undefined value here causes illegal behavior
5474// :151:22: error: use of undefined value here causes illegal behavior5468// :145:22: error: use of undefined value here causes illegal behavior
5475// :151:22: note: when computing vector element at index '0'5469// :145:22: note: when computing vector element at index '0'
5476// :151:22: error: use of undefined value here causes illegal behavior5470// :145:22: error: use of undefined value here causes illegal behavior
5477// :151:22: note: when computing vector element at index '0'5471// :145:22: note: when computing vector element at index '0'
5478// :151:22: error: use of undefined value here causes illegal behavior5472// :145:22: error: use of undefined value here causes illegal behavior
5479// :151:22: note: when computing vector element at index '0'5473// :145:22: note: when computing vector element at index '0'
5480// :151:22: error: use of undefined value here causes illegal behavior5474// :145:22: error: use of undefined value here causes illegal behavior
5481// :151:22: note: when computing vector element at index '1'5475// :145:22: note: when computing vector element at index '1'
5482// :151:22: error: use of undefined value here causes illegal behavior5476// :145:22: error: use of undefined value here causes illegal behavior
5483// :151:22: note: when computing vector element at index '0'5477// :145:22: note: when computing vector element at index '0'
5484// :151:22: error: use of undefined value here causes illegal behavior5478// :145:22: error: use of undefined value here causes illegal behavior
5485// :151:22: note: when computing vector element at index '0'5479// :145:22: note: when computing vector element at index '0'
5486// :151:22: error: use of undefined value here causes illegal behavior5480// :145:22: error: use of undefined value here causes illegal behavior
5487// :151:22: note: when computing vector element at index '0'5481// :145:22: note: when computing vector element at index '0'
5488// :151:22: error: use of undefined value here causes illegal behavior5482// :145:22: error: use of undefined value here causes illegal behavior
5489// :151:22: error: use of undefined value here causes illegal behavior5483// :145:22: error: use of undefined value here causes illegal behavior
5490// :151:22: note: when computing vector element at index '0'5484// :145:22: note: when computing vector element at index '0'
5491// :151:22: error: use of undefined value here causes illegal behavior5485// :145:22: error: use of undefined value here causes illegal behavior
5492// :151:22: note: when computing vector element at index '0'5486// :145:22: note: when computing vector element at index '0'
5493// :151:22: error: use of undefined value here causes illegal behavior5487// :145:22: error: use of undefined value here causes illegal behavior
5494// :151:22: note: when computing vector element at index '0'5488// :145:22: note: when computing vector element at index '0'
5495// :151:22: error: use of undefined value here causes illegal behavior5489// :145:22: error: use of undefined value here causes illegal behavior
5496// :151:22: note: when computing vector element at index '1'5490// :145:22: note: when computing vector element at index '1'
5497// :151:22: error: use of undefined value here causes illegal behavior5491// :145:22: error: use of undefined value here causes illegal behavior
5498// :151:22: note: when computing vector element at index '0'5492// :145:22: note: when computing vector element at index '0'
5499// :151:22: error: use of undefined value here causes illegal behavior5493// :145:22: error: use of undefined value here causes illegal behavior
5500// :151:22: note: when computing vector element at index '0'5494// :145:22: note: when computing vector element at index '0'
5501// :151:22: error: use of undefined value here causes illegal behavior5495// :145:22: error: use of undefined value here causes illegal behavior
5502// :151:22: note: when computing vector element at index '0'5496// :145:22: note: when computing vector element at index '0'
5503// :151:22: error: use of undefined value here causes illegal behavior5497// :145:22: error: use of undefined value here causes illegal behavior
5504// :151:22: error: use of undefined value here causes illegal behavior5498// :145:22: error: use of undefined value here causes illegal behavior
5505// :151:22: note: when computing vector element at index '0'5499// :145:22: note: when computing vector element at index '0'
5506// :151:22: error: use of undefined value here causes illegal behavior5500// :145:22: error: use of undefined value here causes illegal behavior
5507// :151:22: note: when computing vector element at index '0'5501// :145:22: note: when computing vector element at index '0'
5508// :151:22: error: use of undefined value here causes illegal behavior5502// :145:22: error: use of undefined value here causes illegal behavior
5509// :151:22: note: when computing vector element at index '0'5503// :145:22: note: when computing vector element at index '0'
5510// :151:22: error: use of undefined value here causes illegal behavior5504// :145:22: error: use of undefined value here causes illegal behavior
5511// :151:22: note: when computing vector element at index '1'5505// :145:22: note: when computing vector element at index '1'
5512// :151:22: error: use of undefined value here causes illegal behavior5506// :145:22: error: use of undefined value here causes illegal behavior
5513// :151:22: note: when computing vector element at index '0'5507// :145:22: note: when computing vector element at index '0'
5514// :151:22: error: use of undefined value here causes illegal behavior5508// :145:22: error: use of undefined value here causes illegal behavior
5515// :151:22: note: when computing vector element at index '0'5509// :145:22: note: when computing vector element at index '0'
5516// :151:22: error: use of undefined value here causes illegal behavior5510// :145:22: error: use of undefined value here causes illegal behavior
5517// :151:22: note: when computing vector element at index '0'5511// :145:22: note: when computing vector element at index '0'
5518// :151:22: error: use of undefined value here causes illegal behavior5512// :145:22: error: use of undefined value here causes illegal behavior
5519// :151:22: error: use of undefined value here causes illegal behavior5513// :145:22: error: use of undefined value here causes illegal behavior
5520// :151:22: note: when computing vector element at index '0'5514// :145:22: note: when computing vector element at index '0'
5521// :151:22: error: use of undefined value here causes illegal behavior5515// :145:22: error: use of undefined value here causes illegal behavior
5522// :151:22: note: when computing vector element at index '0'5516// :145:22: note: when computing vector element at index '0'
5523// :151:22: error: use of undefined value here causes illegal behavior5517// :145:22: error: use of undefined value here causes illegal behavior
5524// :151:22: note: when computing vector element at index '0'5518// :145:22: note: when computing vector element at index '0'
5525// :151:22: error: use of undefined value here causes illegal behavior5519// :145:22: error: use of undefined value here causes illegal behavior
5526// :151:22: note: when computing vector element at index '1'5520// :145:22: note: when computing vector element at index '1'
5527// :151:22: error: use of undefined value here causes illegal behavior5521// :145:22: error: use of undefined value here causes illegal behavior
5528// :151:22: note: when computing vector element at index '0'5522// :145:22: note: when computing vector element at index '0'
5529// :151:22: error: use of undefined value here causes illegal behavior5523// :145:22: error: use of undefined value here causes illegal behavior
5530// :151:22: note: when computing vector element at index '0'5524// :145:22: note: when computing vector element at index '0'
5531// :151:22: error: use of undefined value here causes illegal behavior5525// :145:22: error: use of undefined value here causes illegal behavior
5532// :151:22: note: when computing vector element at index '0'5526// :145:22: note: when computing vector element at index '0'
5533// :151:25: error: use of undefined value here causes illegal behavior5527// :145:25: error: use of undefined value here causes illegal behavior
5534// :151:25: error: use of undefined value here causes illegal behavior5528// :145:25: error: use of undefined value here causes illegal behavior
5535// :151:25: note: when computing vector element at index '0'5529// :145:25: note: when computing vector element at index '0'
5536// :151:25: error: use of undefined value here causes illegal behavior5530// :145:25: error: use of undefined value here causes illegal behavior
5537// :151:25: note: when computing vector element at index '0'5531// :145:25: note: when computing vector element at index '0'
5538// :151:25: error: use of undefined value here causes illegal behavior5532// :145:25: error: use of undefined value here causes illegal behavior
5539// :151:25: note: when computing vector element at index '1'5533// :145:25: note: when computing vector element at index '1'
5540// :151:25: error: use of undefined value here causes illegal behavior5534// :145:25: error: use of undefined value here causes illegal behavior
5541// :151:25: note: when computing vector element at index '0'5535// :145:25: note: when computing vector element at index '0'
5542// :151:25: error: use of undefined value here causes illegal behavior5536// :145:25: error: use of undefined value here causes illegal behavior
5543// :151:25: note: when computing vector element at index '0'5537// :145:25: note: when computing vector element at index '0'
5544// :151:25: error: use of undefined value here causes illegal behavior5538// :145:25: error: use of undefined value here causes illegal behavior
5545// :151:25: error: use of undefined value here causes illegal behavior5539// :145:25: error: use of undefined value here causes illegal behavior
5546// :151:25: note: when computing vector element at index '0'5540// :145:25: note: when computing vector element at index '0'
5547// :151:25: error: use of undefined value here causes illegal behavior5541// :145:25: error: use of undefined value here causes illegal behavior
5548// :151:25: note: when computing vector element at index '0'5542// :145:25: note: when computing vector element at index '0'
5549// :151:25: error: use of undefined value here causes illegal behavior5543// :145:25: error: use of undefined value here causes illegal behavior
5550// :151:25: note: when computing vector element at index '1'5544// :145:25: note: when computing vector element at index '1'
5551// :151:25: error: use of undefined value here causes illegal behavior5545// :145:25: error: use of undefined value here causes illegal behavior
5552// :151:25: note: when computing vector element at index '0'5546// :145:25: note: when computing vector element at index '0'
5553// :151:25: error: use of undefined value here causes illegal behavior5547// :145:25: error: use of undefined value here causes illegal behavior
5554// :151:25: note: when computing vector element at index '0'5548// :145:25: note: when computing vector element at index '0'
5555// :151:25: error: use of undefined value here causes illegal behavior5549// :145:25: error: use of undefined value here causes illegal behavior
5556// :151:25: error: use of undefined value here causes illegal behavior5550// :145:25: error: use of undefined value here causes illegal behavior
5557// :151:25: note: when computing vector element at index '0'5551// :145:25: note: when computing vector element at index '0'
5558// :151:25: error: use of undefined value here causes illegal behavior5552// :145:25: error: use of undefined value here causes illegal behavior
5559// :151:25: note: when computing vector element at index '0'5553// :145:25: note: when computing vector element at index '0'
5560// :151:25: error: use of undefined value here causes illegal behavior5554// :145:25: error: use of undefined value here causes illegal behavior
5561// :151:25: note: when computing vector element at index '1'5555// :145:25: note: when computing vector element at index '1'
5562// :151:25: error: use of undefined value here causes illegal behavior5556// :145:25: error: use of undefined value here causes illegal behavior
5563// :151:25: note: when computing vector element at index '0'5557// :145:25: note: when computing vector element at index '0'
5564// :151:25: error: use of undefined value here causes illegal behavior5558// :145:25: error: use of undefined value here causes illegal behavior
5565// :151:25: note: when computing vector element at index '0'5559// :145:25: note: when computing vector element at index '0'
5566// :151:25: error: use of undefined value here causes illegal behavior5560// :145:25: error: use of undefined value here causes illegal behavior
5567// :151:25: error: use of undefined value here causes illegal behavior5561// :145:25: error: use of undefined value here causes illegal behavior
5568// :151:25: note: when computing vector element at index '0'5562// :145:25: note: when computing vector element at index '0'
5569// :151:25: error: use of undefined value here causes illegal behavior5563// :145:25: error: use of undefined value here causes illegal behavior
5570// :151:25: note: when computing vector element at index '0'5564// :145:25: note: when computing vector element at index '0'
5571// :151:25: error: use of undefined value here causes illegal behavior5565// :145:25: error: use of undefined value here causes illegal behavior
5572// :151:25: note: when computing vector element at index '1'5566// :145:25: note: when computing vector element at index '1'
5573// :151:25: error: use of undefined value here causes illegal behavior5567// :145:25: error: use of undefined value here causes illegal behavior
5574// :151:25: note: when computing vector element at index '0'5568// :145:25: note: when computing vector element at index '0'
5575// :151:25: error: use of undefined value here causes illegal behavior5569// :145:25: error: use of undefined value here causes illegal behavior
5576// :151:25: note: when computing vector element at index '0'5570// :145:25: note: when computing vector element at index '0'
5577// :151:25: error: use of undefined value here causes illegal behavior5571// :145:25: error: use of undefined value here causes illegal behavior
5578// :151:25: error: use of undefined value here causes illegal behavior5572// :145:25: error: use of undefined value here causes illegal behavior
5579// :151:25: note: when computing vector element at index '0'5573// :145:25: note: when computing vector element at index '0'
5580// :151:25: error: use of undefined value here causes illegal behavior5574// :145:25: error: use of undefined value here causes illegal behavior
5581// :151:25: note: when computing vector element at index '0'5575// :145:25: note: when computing vector element at index '0'
5582// :151:25: error: use of undefined value here causes illegal behavior5576// :145:25: error: use of undefined value here causes illegal behavior
5583// :151:25: note: when computing vector element at index '1'5577// :145:25: note: when computing vector element at index '1'
5584// :151:25: error: use of undefined value here causes illegal behavior5578// :145:25: error: use of undefined value here causes illegal behavior
5585// :151:25: note: when computing vector element at index '0'5579// :145:25: note: when computing vector element at index '0'
5586// :151:25: error: use of undefined value here causes illegal behavior5580// :145:25: error: use of undefined value here causes illegal behavior
5587// :151:25: note: when computing vector element at index '0'5581// :145:25: note: when computing vector element at index '0'
5588// :151:25: error: use of undefined value here causes illegal behavior5582// :145:25: error: use of undefined value here causes illegal behavior
5589// :151:25: error: use of undefined value here causes illegal behavior5583// :145:25: error: use of undefined value here causes illegal behavior
5590// :151:25: note: when computing vector element at index '0'5584// :145:25: note: when computing vector element at index '0'
5591// :151:25: error: use of undefined value here causes illegal behavior5585// :145:25: error: use of undefined value here causes illegal behavior
5592// :151:25: note: when computing vector element at index '0'5586// :145:25: note: when computing vector element at index '0'
5593// :151:25: error: use of undefined value here causes illegal behavior5587// :145:25: error: use of undefined value here causes illegal behavior
5594// :151:25: note: when computing vector element at index '1'5588// :145:25: note: when computing vector element at index '1'
5595// :151:25: error: use of undefined value here causes illegal behavior5589// :145:25: error: use of undefined value here causes illegal behavior
5596// :151:25: note: when computing vector element at index '0'5590// :145:25: note: when computing vector element at index '0'
5597// :151:25: error: use of undefined value here causes illegal behavior5591// :145:25: error: use of undefined value here causes illegal behavior
5598// :151:25: note: when computing vector element at index '0'5592// :145:25: note: when computing vector element at index '0'
5599// :151:25: error: use of undefined value here causes illegal behavior5593// :145:25: error: use of undefined value here causes illegal behavior
5600// :151:25: error: use of undefined value here causes illegal behavior5594// :145:25: error: use of undefined value here causes illegal behavior
5601// :151:25: note: when computing vector element at index '0'5595// :145:25: note: when computing vector element at index '0'
5602// :151:25: error: use of undefined value here causes illegal behavior5596// :145:25: error: use of undefined value here causes illegal behavior
5603// :151:25: note: when computing vector element at index '0'5597// :145:25: note: when computing vector element at index '0'
5604// :151:25: error: use of undefined value here causes illegal behavior5598// :145:25: error: use of undefined value here causes illegal behavior
5605// :151:25: note: when computing vector element at index '1'5599// :145:25: note: when computing vector element at index '1'
5606// :151:25: error: use of undefined value here causes illegal behavior5600// :145:25: error: use of undefined value here causes illegal behavior
5607// :151:25: note: when computing vector element at index '0'5601// :145:25: note: when computing vector element at index '0'
5608// :151:25: error: use of undefined value here causes illegal behavior5602// :145:25: error: use of undefined value here causes illegal behavior
5609// :151:25: note: when computing vector element at index '0'5603// :145:25: note: when computing vector element at index '0'
5610// :151:25: error: use of undefined value here causes illegal behavior5604// :145:25: error: use of undefined value here causes illegal behavior
5611// :151:25: error: use of undefined value here causes illegal behavior5605// :145:25: error: use of undefined value here causes illegal behavior
5612// :151:25: note: when computing vector element at index '0'5606// :145:25: note: when computing vector element at index '0'
5613// :151:25: error: use of undefined value here causes illegal behavior5607// :145:25: error: use of undefined value here causes illegal behavior
5614// :151:25: note: when computing vector element at index '0'5608// :145:25: note: when computing vector element at index '0'
5615// :151:25: error: use of undefined value here causes illegal behavior5609// :145:25: error: use of undefined value here causes illegal behavior
5616// :151:25: note: when computing vector element at index '1'5610// :145:25: note: when computing vector element at index '1'
5617// :151:25: error: use of undefined value here causes illegal behavior5611// :145:25: error: use of undefined value here causes illegal behavior
5618// :151:25: note: when computing vector element at index '0'5612// :145:25: note: when computing vector element at index '0'
5619// :151:25: error: use of undefined value here causes illegal behavior5613// :145:25: error: use of undefined value here causes illegal behavior
5620// :151:25: note: when computing vector element at index '0'5614// :145:25: note: when computing vector element at index '0'
5621// :151:25: error: use of undefined value here causes illegal behavior5615// :145:25: error: use of undefined value here causes illegal behavior
5622// :151:25: error: use of undefined value here causes illegal behavior5616// :145:25: error: use of undefined value here causes illegal behavior
5623// :151:25: note: when computing vector element at index '0'5617// :145:25: note: when computing vector element at index '0'
5624// :151:25: error: use of undefined value here causes illegal behavior5618// :145:25: error: use of undefined value here causes illegal behavior
5625// :151:25: note: when computing vector element at index '0'5619// :145:25: note: when computing vector element at index '0'
5626// :151:25: error: use of undefined value here causes illegal behavior5620// :145:25: error: use of undefined value here causes illegal behavior
5627// :151:25: note: when computing vector element at index '1'5621// :145:25: note: when computing vector element at index '1'
5628// :151:25: error: use of undefined value here causes illegal behavior5622// :145:25: error: use of undefined value here causes illegal behavior
5629// :151:25: note: when computing vector element at index '0'5623// :145:25: note: when computing vector element at index '0'
5630// :151:25: error: use of undefined value here causes illegal behavior5624// :145:25: error: use of undefined value here causes illegal behavior
5631// :151:25: note: when computing vector element at index '0'5625// :145:25: note: when computing vector element at index '0'
5632// :151:25: error: use of undefined value here causes illegal behavior5626// :145:25: error: use of undefined value here causes illegal behavior
5633// :151:25: error: use of undefined value here causes illegal behavior5627// :145:25: error: use of undefined value here causes illegal behavior
5634// :151:25: note: when computing vector element at index '0'5628// :145:25: note: when computing vector element at index '0'
5635// :151:25: error: use of undefined value here causes illegal behavior5629// :145:25: error: use of undefined value here causes illegal behavior
5636// :151:25: note: when computing vector element at index '0'5630// :145:25: note: when computing vector element at index '0'
5637// :151:25: error: use of undefined value here causes illegal behavior5631// :145:25: error: use of undefined value here causes illegal behavior
5638// :151:25: note: when computing vector element at index '1'5632// :145:25: note: when computing vector element at index '1'
5639// :151:25: error: use of undefined value here causes illegal behavior5633// :145:25: error: use of undefined value here causes illegal behavior
5640// :151:25: note: when computing vector element at index '0'5634// :145:25: note: when computing vector element at index '0'
5641// :151:25: error: use of undefined value here causes illegal behavior5635// :145:25: error: use of undefined value here causes illegal behavior
5642// :151:25: note: when computing vector element at index '0'5636// :145:25: note: when computing vector element at index '0'
5643// :151:25: error: use of undefined value here causes illegal behavior5637// :145:25: error: use of undefined value here causes illegal behavior
5644// :151:25: error: use of undefined value here causes illegal behavior5638// :145:25: error: use of undefined value here causes illegal behavior
5645// :151:25: note: when computing vector element at index '0'5639// :145:25: note: when computing vector element at index '0'
5646// :151:25: error: use of undefined value here causes illegal behavior5640// :145:25: error: use of undefined value here causes illegal behavior
5647// :151:25: note: when computing vector element at index '0'5641// :145:25: note: when computing vector element at index '0'
5648// :151:25: error: use of undefined value here causes illegal behavior5642// :145:25: error: use of undefined value here causes illegal behavior
5649// :151:25: note: when computing vector element at index '1'5643// :145:25: note: when computing vector element at index '1'
5650// :151:25: error: use of undefined value here causes illegal behavior5644// :145:25: error: use of undefined value here causes illegal behavior
5651// :151:25: note: when computing vector element at index '0'5645// :145:25: note: when computing vector element at index '0'
5652// :151:25: error: use of undefined value here causes illegal behavior5646// :145:25: error: use of undefined value here causes illegal behavior
5653// :151:25: note: when computing vector element at index '0'5647// :145:25: note: when computing vector element at index '0'
5654// :157:21: error: use of undefined value here causes illegal behavior5648// :151:21: error: use of undefined value here causes illegal behavior
5655// :157:21: error: use of undefined value here causes illegal behavior5649// :151:21: error: use of undefined value here causes illegal behavior
5656// :157:21: error: use of undefined value here causes illegal behavior5650// :151:21: error: use of undefined value here causes illegal behavior
5657// :157:21: error: use of undefined value here causes illegal behavior5651// :151:21: error: use of undefined value here causes illegal behavior
5658// :157:21: error: use of undefined value here causes illegal behavior5652// :151:21: error: use of undefined value here causes illegal behavior
5659// :157:21: error: use of undefined value here causes illegal behavior5653// :151:21: error: use of undefined value here causes illegal behavior
5660// :157:21: error: use of undefined value here causes illegal behavior5654// :151:21: error: use of undefined value here causes illegal behavior
5661// :157:21: note: when computing vector element at index '1'5655// :151:21: note: when computing vector element at index '1'
5662// :157:21: error: use of undefined value here causes illegal behavior5656// :151:21: error: use of undefined value here causes illegal behavior
5663// :157:21: note: when computing vector element at index '1'5657// :151:21: note: when computing vector element at index '1'
5664// :157:21: error: use of undefined value here causes illegal behavior5658// :151:21: error: use of undefined value here causes illegal behavior
5665// :157:21: note: when computing vector element at index '1'5659// :151:21: note: when computing vector element at index '1'
5666// :157:21: error: use of undefined value here causes illegal behavior5660// :151:21: error: use of undefined value here causes illegal behavior
5667// :157:21: note: when computing vector element at index '1'5661// :151:21: note: when computing vector element at index '1'
5668// :157:21: error: use of undefined value here causes illegal behavior5662// :151:21: error: use of undefined value here causes illegal behavior
5669// :157:21: note: when computing vector element at index '0'5663// :151:21: note: when computing vector element at index '0'
5670// :157:21: error: use of undefined value here causes illegal behavior5664// :151:21: error: use of undefined value here causes illegal behavior
5671// :157:21: note: when computing vector element at index '0'5665// :151:21: note: when computing vector element at index '0'
5672// :157:21: error: use of undefined value here causes illegal behavior5666// :151:21: error: use of undefined value here causes illegal behavior
5673// :157:21: note: when computing vector element at index '0'5667// :151:21: note: when computing vector element at index '0'
5674// :157:21: error: use of undefined value here causes illegal behavior5668// :151:21: error: use of undefined value here causes illegal behavior
5675// :157:21: note: when computing vector element at index '0'5669// :151:21: note: when computing vector element at index '0'
5676// :157:21: error: use of undefined value here causes illegal behavior5670// :151:21: error: use of undefined value here causes illegal behavior
5677// :157:21: error: use of undefined value here causes illegal behavior5671// :151:21: error: use of undefined value here causes illegal behavior
5678// :157:21: error: use of undefined value here causes illegal behavior5672// :151:21: error: use of undefined value here causes illegal behavior
5679// :157:21: error: use of undefined value here causes illegal behavior5673// :151:21: error: use of undefined value here causes illegal behavior
5680// :157:21: error: use of undefined value here causes illegal behavior5674// :151:21: error: use of undefined value here causes illegal behavior
5681// :157:21: error: use of undefined value here causes illegal behavior5675// :151:21: error: use of undefined value here causes illegal behavior
5682// :157:21: error: use of undefined value here causes illegal behavior5676// :151:21: error: use of undefined value here causes illegal behavior
5683// :157:21: note: when computing vector element at index '1'5677// :151:21: note: when computing vector element at index '1'
5684// :157:21: error: use of undefined value here causes illegal behavior5678// :151:21: error: use of undefined value here causes illegal behavior
5685// :157:21: note: when computing vector element at index '1'5679// :151:21: note: when computing vector element at index '1'
5686// :157:21: error: use of undefined value here causes illegal behavior5680// :151:21: error: use of undefined value here causes illegal behavior
5687// :157:21: note: when computing vector element at index '1'5681// :151:21: note: when computing vector element at index '1'
5688// :157:21: error: use of undefined value here causes illegal behavior5682// :151:21: error: use of undefined value here causes illegal behavior
5689// :157:21: note: when computing vector element at index '1'5683// :151:21: note: when computing vector element at index '1'
5690// :157:21: error: use of undefined value here causes illegal behavior5684// :151:21: error: use of undefined value here causes illegal behavior
5691// :157:21: note: when computing vector element at index '0'5685// :151:21: note: when computing vector element at index '0'
5692// :157:21: error: use of undefined value here causes illegal behavior5686// :151:21: error: use of undefined value here causes illegal behavior
5693// :157:21: note: when computing vector element at index '0'5687// :151:21: note: when computing vector element at index '0'
5694// :157:21: error: use of undefined value here causes illegal behavior5688// :151:21: error: use of undefined value here causes illegal behavior
5695// :157:21: note: when computing vector element at index '0'5689// :151:21: note: when computing vector element at index '0'
5696// :157:21: error: use of undefined value here causes illegal behavior5690// :151:21: error: use of undefined value here causes illegal behavior
5697// :157:21: note: when computing vector element at index '0'5691// :151:21: note: when computing vector element at index '0'
5698// :157:21: error: use of undefined value here causes illegal behavior5692// :151:21: error: use of undefined value here causes illegal behavior
5699// :157:21: error: use of undefined value here causes illegal behavior5693// :151:21: error: use of undefined value here causes illegal behavior
5700// :157:21: error: use of undefined value here causes illegal behavior5694// :151:21: error: use of undefined value here causes illegal behavior
5701// :157:21: error: use of undefined value here causes illegal behavior5695// :151:21: error: use of undefined value here causes illegal behavior
5702// :157:21: error: use of undefined value here causes illegal behavior5696// :151:21: error: use of undefined value here causes illegal behavior
5703// :157:21: error: use of undefined value here causes illegal behavior5697// :151:21: error: use of undefined value here causes illegal behavior
5704// :157:21: error: use of undefined value here causes illegal behavior5698// :151:21: error: use of undefined value here causes illegal behavior
5705// :157:21: note: when computing vector element at index '1'5699// :151:21: note: when computing vector element at index '1'
5706// :157:21: error: use of undefined value here causes illegal behavior5700// :151:21: error: use of undefined value here causes illegal behavior
5707// :157:21: note: when computing vector element at index '1'5701// :151:21: note: when computing vector element at index '1'
5708// :157:21: error: use of undefined value here causes illegal behavior5702// :151:21: error: use of undefined value here causes illegal behavior
5709// :157:21: note: when computing vector element at index '1'5703// :151:21: note: when computing vector element at index '1'
5710// :157:21: error: use of undefined value here causes illegal behavior5704// :151:21: error: use of undefined value here causes illegal behavior
5711// :157:21: note: when computing vector element at index '1'5705// :151:21: note: when computing vector element at index '1'
5712// :157:21: error: use of undefined value here causes illegal behavior5706// :151:21: error: use of undefined value here causes illegal behavior
5713// :157:21: note: when computing vector element at index '0'5707// :151:21: note: when computing vector element at index '0'
5714// :157:21: error: use of undefined value here causes illegal behavior5708// :151:21: error: use of undefined value here causes illegal behavior
5715// :157:21: note: when computing vector element at index '0'5709// :151:21: note: when computing vector element at index '0'
5716// :157:21: error: use of undefined value here causes illegal behavior5710// :151:21: error: use of undefined value here causes illegal behavior
5717// :157:21: note: when computing vector element at index '0'5711// :151:21: note: when computing vector element at index '0'
5718// :157:21: error: use of undefined value here causes illegal behavior5712// :151:21: error: use of undefined value here causes illegal behavior
5719// :157:21: note: when computing vector element at index '0'5713// :151:21: note: when computing vector element at index '0'
5720// :157:21: error: use of undefined value here causes illegal behavior5714// :151:21: error: use of undefined value here causes illegal behavior
5721// :157:21: error: use of undefined value here causes illegal behavior5715// :151:21: error: use of undefined value here causes illegal behavior
5722// :157:21: error: use of undefined value here causes illegal behavior5716// :151:21: error: use of undefined value here causes illegal behavior
5723// :157:21: error: use of undefined value here causes illegal behavior5717// :151:21: error: use of undefined value here causes illegal behavior
5724// :157:21: error: use of undefined value here causes illegal behavior5718// :151:21: error: use of undefined value here causes illegal behavior
5725// :157:21: error: use of undefined value here causes illegal behavior5719// :151:21: error: use of undefined value here causes illegal behavior
5726// :157:21: error: use of undefined value here causes illegal behavior5720// :151:21: error: use of undefined value here causes illegal behavior
5727// :157:21: note: when computing vector element at index '1'5721// :151:21: note: when computing vector element at index '1'
5728// :157:21: error: use of undefined value here causes illegal behavior5722// :151:21: error: use of undefined value here causes illegal behavior
5729// :157:21: note: when computing vector element at index '1'5723// :151:21: note: when computing vector element at index '1'
5730// :157:21: error: use of undefined value here causes illegal behavior5724// :151:21: error: use of undefined value here causes illegal behavior
5731// :157:21: note: when computing vector element at index '1'5725// :151:21: note: when computing vector element at index '1'
5732// :157:21: error: use of undefined value here causes illegal behavior5726// :151:21: error: use of undefined value here causes illegal behavior
5733// :157:21: note: when computing vector element at index '1'5727// :151:21: note: when computing vector element at index '1'
5734// :157:21: error: use of undefined value here causes illegal behavior5728// :151:21: error: use of undefined value here causes illegal behavior
5735// :157:21: note: when computing vector element at index '0'5729// :151:21: note: when computing vector element at index '0'
5736// :157:21: error: use of undefined value here causes illegal behavior5730// :151:21: error: use of undefined value here causes illegal behavior
5737// :157:21: note: when computing vector element at index '0'5731// :151:21: note: when computing vector element at index '0'
5738// :157:21: error: use of undefined value here causes illegal behavior5732// :151:21: error: use of undefined value here causes illegal behavior
5739// :157:21: note: when computing vector element at index '0'5733// :151:21: note: when computing vector element at index '0'
5740// :157:21: error: use of undefined value here causes illegal behavior5734// :151:21: error: use of undefined value here causes illegal behavior
5741// :157:21: note: when computing vector element at index '0'5735// :151:21: note: when computing vector element at index '0'
5742// :157:21: error: use of undefined value here causes illegal behavior5736// :151:21: error: use of undefined value here causes illegal behavior
5743// :157:21: error: use of undefined value here causes illegal behavior5737// :151:21: error: use of undefined value here causes illegal behavior
5744// :157:21: error: use of undefined value here causes illegal behavior5738// :151:21: error: use of undefined value here causes illegal behavior
5745// :157:21: error: use of undefined value here causes illegal behavior5739// :151:21: error: use of undefined value here causes illegal behavior
5746// :157:21: error: use of undefined value here causes illegal behavior5740// :151:21: error: use of undefined value here causes illegal behavior
5747// :157:21: error: use of undefined value here causes illegal behavior5741// :151:21: error: use of undefined value here causes illegal behavior
5748// :157:21: error: use of undefined value here causes illegal behavior5742// :151:21: error: use of undefined value here causes illegal behavior
5749// :157:21: note: when computing vector element at index '1'5743// :151:21: note: when computing vector element at index '1'
5750// :157:21: error: use of undefined value here causes illegal behavior5744// :151:21: error: use of undefined value here causes illegal behavior
5751// :157:21: note: when computing vector element at index '1'5745// :151:21: note: when computing vector element at index '1'
5752// :157:21: error: use of undefined value here causes illegal behavior5746// :151:21: error: use of undefined value here causes illegal behavior
5753// :157:21: note: when computing vector element at index '1'5747// :151:21: note: when computing vector element at index '1'
5754// :157:21: error: use of undefined value here causes illegal behavior5748// :151:21: error: use of undefined value here causes illegal behavior
5755// :157:21: note: when computing vector element at index '1'5749// :151:21: note: when computing vector element at index '1'
5756// :157:21: error: use of undefined value here causes illegal behavior5750// :151:21: error: use of undefined value here causes illegal behavior
5757// :157:21: note: when computing vector element at index '0'5751// :151:21: note: when computing vector element at index '0'
5758// :157:21: error: use of undefined value here causes illegal behavior5752// :151:21: error: use of undefined value here causes illegal behavior
5759// :157:21: note: when computing vector element at index '0'5753// :151:21: note: when computing vector element at index '0'
5760// :157:21: error: use of undefined value here causes illegal behavior5754// :151:21: error: use of undefined value here causes illegal behavior
5761// :157:21: note: when computing vector element at index '0'5755// :151:21: note: when computing vector element at index '0'
5762// :157:21: error: use of undefined value here causes illegal behavior5756// :151:21: error: use of undefined value here causes illegal behavior
5763// :157:21: note: when computing vector element at index '0'5757// :151:21: note: when computing vector element at index '0'
5764// :157:21: error: use of undefined value here causes illegal behavior5758// :151:21: error: use of undefined value here causes illegal behavior
5765// :157:21: error: use of undefined value here causes illegal behavior5759// :151:21: error: use of undefined value here causes illegal behavior
5766// :157:21: error: use of undefined value here causes illegal behavior5760// :151:21: error: use of undefined value here causes illegal behavior
5767// :157:21: error: use of undefined value here causes illegal behavior5761// :151:21: error: use of undefined value here causes illegal behavior
5768// :157:21: error: use of undefined value here causes illegal behavior5762// :151:21: error: use of undefined value here causes illegal behavior
5769// :157:21: error: use of undefined value here causes illegal behavior5763// :151:21: error: use of undefined value here causes illegal behavior
5770// :157:21: error: use of undefined value here causes illegal behavior5764// :151:21: error: use of undefined value here causes illegal behavior
5771// :157:21: note: when computing vector element at index '1'5765// :151:21: note: when computing vector element at index '1'
5772// :157:21: error: use of undefined value here causes illegal behavior5766// :151:21: error: use of undefined value here causes illegal behavior
5773// :157:21: note: when computing vector element at index '1'5767// :151:21: note: when computing vector element at index '1'
5774// :157:21: error: use of undefined value here causes illegal behavior5768// :151:21: error: use of undefined value here causes illegal behavior
5775// :157:21: note: when computing vector element at index '1'5769// :151:21: note: when computing vector element at index '1'
5776// :157:21: error: use of undefined value here causes illegal behavior5770// :151:21: error: use of undefined value here causes illegal behavior
5777// :157:21: note: when computing vector element at index '1'5771// :151:21: note: when computing vector element at index '1'
5778// :157:21: error: use of undefined value here causes illegal behavior5772// :151:21: error: use of undefined value here causes illegal behavior
5779// :157:21: note: when computing vector element at index '0'5773// :151:21: note: when computing vector element at index '0'
5780// :157:21: error: use of undefined value here causes illegal behavior5774// :151:21: error: use of undefined value here causes illegal behavior
5781// :157:21: note: when computing vector element at index '0'5775// :151:21: note: when computing vector element at index '0'
5782// :157:21: error: use of undefined value here causes illegal behavior5776// :151:21: error: use of undefined value here causes illegal behavior
5783// :157:21: note: when computing vector element at index '0'5777// :151:21: note: when computing vector element at index '0'
5784// :157:21: error: use of undefined value here causes illegal behavior5778// :151:21: error: use of undefined value here causes illegal behavior
5785// :157:21: note: when computing vector element at index '0'5779// :151:21: note: when computing vector element at index '0'
5786// :157:21: error: use of undefined value here causes illegal behavior5780// :151:21: error: use of undefined value here causes illegal behavior
5787// :157:21: error: use of undefined value here causes illegal behavior5781// :151:21: error: use of undefined value here causes illegal behavior
5788// :157:21: error: use of undefined value here causes illegal behavior5782// :151:21: error: use of undefined value here causes illegal behavior
5789// :157:21: error: use of undefined value here causes illegal behavior5783// :151:21: error: use of undefined value here causes illegal behavior
5790// :157:21: error: use of undefined value here causes illegal behavior5784// :151:21: error: use of undefined value here causes illegal behavior
5791// :157:21: error: use of undefined value here causes illegal behavior5785// :151:21: error: use of undefined value here causes illegal behavior
5792// :157:21: error: use of undefined value here causes illegal behavior5786// :151:21: error: use of undefined value here causes illegal behavior
5793// :157:21: note: when computing vector element at index '1'5787// :151:21: note: when computing vector element at index '1'
5794// :157:21: error: use of undefined value here causes illegal behavior5788// :151:21: error: use of undefined value here causes illegal behavior
5795// :157:21: note: when computing vector element at index '1'5789// :151:21: note: when computing vector element at index '1'
5796// :157:21: error: use of undefined value here causes illegal behavior5790// :151:21: error: use of undefined value here causes illegal behavior
5797// :157:21: note: when computing vector element at index '1'5791// :151:21: note: when computing vector element at index '1'
5798// :157:21: error: use of undefined value here causes illegal behavior5792// :151:21: error: use of undefined value here causes illegal behavior
5799// :157:21: note: when computing vector element at index '1'5793// :151:21: note: when computing vector element at index '1'
5800// :157:21: error: use of undefined value here causes illegal behavior5794// :151:21: error: use of undefined value here causes illegal behavior
5801// :157:21: note: when computing vector element at index '0'5795// :151:21: note: when computing vector element at index '0'
5802// :157:21: error: use of undefined value here causes illegal behavior5796// :151:21: error: use of undefined value here causes illegal behavior
5803// :157:21: note: when computing vector element at index '0'5797// :151:21: note: when computing vector element at index '0'
5804// :157:21: error: use of undefined value here causes illegal behavior5798// :151:21: error: use of undefined value here causes illegal behavior
5805// :157:21: note: when computing vector element at index '0'5799// :151:21: note: when computing vector element at index '0'
5806// :157:21: error: use of undefined value here causes illegal behavior5800// :151:21: error: use of undefined value here causes illegal behavior
5807// :157:21: note: when computing vector element at index '0'5801// :151:21: note: when computing vector element at index '0'
5808// :157:21: error: use of undefined value here causes illegal behavior5802// :151:21: error: use of undefined value here causes illegal behavior
5809// :157:21: error: use of undefined value here causes illegal behavior5803// :151:21: error: use of undefined value here causes illegal behavior
5810// :157:21: error: use of undefined value here causes illegal behavior5804// :151:21: error: use of undefined value here causes illegal behavior
5811// :157:21: error: use of undefined value here causes illegal behavior5805// :151:21: error: use of undefined value here causes illegal behavior
5812// :157:21: error: use of undefined value here causes illegal behavior5806// :151:21: error: use of undefined value here causes illegal behavior
5813// :157:21: error: use of undefined value here causes illegal behavior5807// :151:21: error: use of undefined value here causes illegal behavior
5814// :157:21: error: use of undefined value here causes illegal behavior5808// :151:21: error: use of undefined value here causes illegal behavior
5815// :157:21: note: when computing vector element at index '1'5809// :151:21: note: when computing vector element at index '1'
5816// :157:21: error: use of undefined value here causes illegal behavior5810// :151:21: error: use of undefined value here causes illegal behavior
5817// :157:21: note: when computing vector element at index '1'5811// :151:21: note: when computing vector element at index '1'
5818// :157:21: error: use of undefined value here causes illegal behavior5812// :151:21: error: use of undefined value here causes illegal behavior
5819// :157:21: note: when computing vector element at index '1'5813// :151:21: note: when computing vector element at index '1'
5820// :157:21: error: use of undefined value here causes illegal behavior5814// :151:21: error: use of undefined value here causes illegal behavior
5821// :157:21: note: when computing vector element at index '1'5815// :151:21: note: when computing vector element at index '1'
5822// :157:21: error: use of undefined value here causes illegal behavior5816// :151:21: error: use of undefined value here causes illegal behavior
5823// :157:21: note: when computing vector element at index '0'5817// :151:21: note: when computing vector element at index '0'
5824// :157:21: error: use of undefined value here causes illegal behavior5818// :151:21: error: use of undefined value here causes illegal behavior
5825// :157:21: note: when computing vector element at index '0'5819// :151:21: note: when computing vector element at index '0'
5826// :157:21: error: use of undefined value here causes illegal behavior5820// :151:21: error: use of undefined value here causes illegal behavior
5827// :157:21: note: when computing vector element at index '0'5821// :151:21: note: when computing vector element at index '0'
5828// :157:21: error: use of undefined value here causes illegal behavior5822// :151:21: error: use of undefined value here causes illegal behavior
5829// :157:21: note: when computing vector element at index '0'5823// :151:21: note: when computing vector element at index '0'
5830// :157:21: error: use of undefined value here causes illegal behavior5824// :151:21: error: use of undefined value here causes illegal behavior
5831// :157:21: error: use of undefined value here causes illegal behavior5825// :151:21: error: use of undefined value here causes illegal behavior
5832// :157:21: error: use of undefined value here causes illegal behavior5826// :151:21: error: use of undefined value here causes illegal behavior
5833// :157:21: error: use of undefined value here causes illegal behavior5827// :151:21: error: use of undefined value here causes illegal behavior
5834// :157:21: error: use of undefined value here causes illegal behavior5828// :151:21: error: use of undefined value here causes illegal behavior
5835// :157:21: error: use of undefined value here causes illegal behavior5829// :151:21: error: use of undefined value here causes illegal behavior
5836// :157:21: error: use of undefined value here causes illegal behavior5830// :151:21: error: use of undefined value here causes illegal behavior
5837// :157:21: note: when computing vector element at index '1'5831// :151:21: note: when computing vector element at index '1'
5838// :157:21: error: use of undefined value here causes illegal behavior5832// :151:21: error: use of undefined value here causes illegal behavior
5839// :157:21: note: when computing vector element at index '1'5833// :151:21: note: when computing vector element at index '1'
5840// :157:21: error: use of undefined value here causes illegal behavior5834// :151:21: error: use of undefined value here causes illegal behavior
5841// :157:21: note: when computing vector element at index '1'5835// :151:21: note: when computing vector element at index '1'
5842// :157:21: error: use of undefined value here causes illegal behavior5836// :151:21: error: use of undefined value here causes illegal behavior
5843// :157:21: note: when computing vector element at index '1'5837// :151:21: note: when computing vector element at index '1'
5844// :157:21: error: use of undefined value here causes illegal behavior5838// :151:21: error: use of undefined value here causes illegal behavior
5845// :157:21: note: when computing vector element at index '0'5839// :151:21: note: when computing vector element at index '0'
5846// :157:21: error: use of undefined value here causes illegal behavior5840// :151:21: error: use of undefined value here causes illegal behavior
5847// :157:21: note: when computing vector element at index '0'5841// :151:21: note: when computing vector element at index '0'
5848// :157:21: error: use of undefined value here causes illegal behavior5842// :151:21: error: use of undefined value here causes illegal behavior
5849// :157:21: note: when computing vector element at index '0'5843// :151:21: note: when computing vector element at index '0'
5850// :157:21: error: use of undefined value here causes illegal behavior5844// :151:21: error: use of undefined value here causes illegal behavior
5851// :157:21: note: when computing vector element at index '0'5845// :151:21: note: when computing vector element at index '0'
5852// :157:21: error: use of undefined value here causes illegal behavior5846// :151:21: error: use of undefined value here causes illegal behavior
5853// :157:21: error: use of undefined value here causes illegal behavior5847// :151:21: error: use of undefined value here causes illegal behavior
5854// :157:21: error: use of undefined value here causes illegal behavior5848// :151:21: error: use of undefined value here causes illegal behavior
5855// :157:21: error: use of undefined value here causes illegal behavior5849// :151:21: error: use of undefined value here causes illegal behavior
5856// :157:21: error: use of undefined value here causes illegal behavior5850// :151:21: error: use of undefined value here causes illegal behavior
5857// :157:21: error: use of undefined value here causes illegal behavior5851// :151:21: error: use of undefined value here causes illegal behavior
5858// :157:21: error: use of undefined value here causes illegal behavior5852// :151:21: error: use of undefined value here causes illegal behavior
5859// :157:21: note: when computing vector element at index '1'5853// :151:21: note: when computing vector element at index '1'
5860// :157:21: error: use of undefined value here causes illegal behavior5854// :151:21: error: use of undefined value here causes illegal behavior
5861// :157:21: note: when computing vector element at index '1'5855// :151:21: note: when computing vector element at index '1'
5862// :157:21: error: use of undefined value here causes illegal behavior5856// :151:21: error: use of undefined value here causes illegal behavior
5863// :157:21: note: when computing vector element at index '1'5857// :151:21: note: when computing vector element at index '1'
5864// :157:21: error: use of undefined value here causes illegal behavior5858// :151:21: error: use of undefined value here causes illegal behavior
5865// :157:21: note: when computing vector element at index '1'5859// :151:21: note: when computing vector element at index '1'
5866// :157:21: error: use of undefined value here causes illegal behavior5860// :151:21: error: use of undefined value here causes illegal behavior
5867// :157:21: note: when computing vector element at index '0'5861// :151:21: note: when computing vector element at index '0'
5868// :157:21: error: use of undefined value here causes illegal behavior5862// :151:21: error: use of undefined value here causes illegal behavior
5869// :157:21: note: when computing vector element at index '0'5863// :151:21: note: when computing vector element at index '0'
5870// :157:21: error: use of undefined value here causes illegal behavior5864// :151:21: error: use of undefined value here causes illegal behavior
5871// :157:21: note: when computing vector element at index '0'5865// :151:21: note: when computing vector element at index '0'
5872// :157:21: error: use of undefined value here causes illegal behavior5866// :151:21: error: use of undefined value here causes illegal behavior
5873// :157:21: note: when computing vector element at index '0'5867// :151:21: note: when computing vector element at index '0'
5874// :157:21: error: use of undefined value here causes illegal behavior5868// :151:21: error: use of undefined value here causes illegal behavior
5875// :157:21: error: use of undefined value here causes illegal behavior5869// :151:21: error: use of undefined value here causes illegal behavior
5876// :157:21: error: use of undefined value here causes illegal behavior5870// :151:21: error: use of undefined value here causes illegal behavior
5877// :157:21: error: use of undefined value here causes illegal behavior5871// :151:21: error: use of undefined value here causes illegal behavior
5878// :157:21: error: use of undefined value here causes illegal behavior5872// :151:21: error: use of undefined value here causes illegal behavior
5879// :157:21: error: use of undefined value here causes illegal behavior5873// :151:21: error: use of undefined value here causes illegal behavior
5880// :157:21: error: use of undefined value here causes illegal behavior5874// :151:21: error: use of undefined value here causes illegal behavior
5881// :157:21: note: when computing vector element at index '1'5875// :151:21: note: when computing vector element at index '1'
5882// :157:21: error: use of undefined value here causes illegal behavior5876// :151:21: error: use of undefined value here causes illegal behavior
5883// :157:21: note: when computing vector element at index '1'5877// :151:21: note: when computing vector element at index '1'
5884// :157:21: error: use of undefined value here causes illegal behavior5878// :151:21: error: use of undefined value here causes illegal behavior
5885// :157:21: note: when computing vector element at index '1'5879// :151:21: note: when computing vector element at index '1'
5886// :157:21: error: use of undefined value here causes illegal behavior5880// :151:21: error: use of undefined value here causes illegal behavior
5887// :157:21: note: when computing vector element at index '1'5881// :151:21: note: when computing vector element at index '1'
5888// :157:21: error: use of undefined value here causes illegal behavior5882// :151:21: error: use of undefined value here causes illegal behavior
5889// :157:21: note: when computing vector element at index '0'5883// :151:21: note: when computing vector element at index '0'
5890// :157:21: error: use of undefined value here causes illegal behavior5884// :151:21: error: use of undefined value here causes illegal behavior
5891// :157:21: note: when computing vector element at index '0'5885// :151:21: note: when computing vector element at index '0'
5892// :157:21: error: use of undefined value here causes illegal behavior5886// :151:21: error: use of undefined value here causes illegal behavior
5893// :157:21: note: when computing vector element at index '0'5887// :151:21: note: when computing vector element at index '0'
5894// :157:21: error: use of undefined value here causes illegal behavior5888// :151:21: error: use of undefined value here causes illegal behavior
5895// :157:21: note: when computing vector element at index '0'5889// :151:21: note: when computing vector element at index '0'
5896// :161:30: error: use of undefined value here causes illegal behavior5890// :155:30: error: use of undefined value here causes illegal behavior
5897// :161:30: error: use of undefined value here causes illegal behavior5891// :155:30: error: use of undefined value here causes illegal behavior
5898// :161:30: error: use of undefined value here causes illegal behavior5892// :155:30: error: use of undefined value here causes illegal behavior
5899// :161:30: error: use of undefined value here causes illegal behavior5893// :155:30: error: use of undefined value here causes illegal behavior
5900// :161:30: error: use of undefined value here causes illegal behavior5894// :155:30: error: use of undefined value here causes illegal behavior
5901// :161:30: error: use of undefined value here causes illegal behavior5895// :155:30: error: use of undefined value here causes illegal behavior
5902// :161:30: error: use of undefined value here causes illegal behavior5896// :155:30: error: use of undefined value here causes illegal behavior
5903// :161:30: note: when computing vector element at index '1'5897// :155:30: note: when computing vector element at index '1'
5904// :161:30: error: use of undefined value here causes illegal behavior5898// :155:30: error: use of undefined value here causes illegal behavior
5905// :161:30: note: when computing vector element at index '1'5899// :155:30: note: when computing vector element at index '1'
5906// :161:30: error: use of undefined value here causes illegal behavior5900// :155:30: error: use of undefined value here causes illegal behavior
5907// :161:30: note: when computing vector element at index '1'5901// :155:30: note: when computing vector element at index '1'
5908// :161:30: error: use of undefined value here causes illegal behavior5902// :155:30: error: use of undefined value here causes illegal behavior
5909// :161:30: note: when computing vector element at index '1'5903// :155:30: note: when computing vector element at index '1'
5910// :161:30: error: use of undefined value here causes illegal behavior5904// :155:30: error: use of undefined value here causes illegal behavior
5911// :161:30: note: when computing vector element at index '0'5905// :155:30: note: when computing vector element at index '0'
5912// :161:30: error: use of undefined value here causes illegal behavior5906// :155:30: error: use of undefined value here causes illegal behavior
5913// :161:30: note: when computing vector element at index '0'5907// :155:30: note: when computing vector element at index '0'
5914// :161:30: error: use of undefined value here causes illegal behavior5908// :155:30: error: use of undefined value here causes illegal behavior
5915// :161:30: note: when computing vector element at index '0'5909// :155:30: note: when computing vector element at index '0'
5916// :161:30: error: use of undefined value here causes illegal behavior5910// :155:30: error: use of undefined value here causes illegal behavior
5917// :161:30: note: when computing vector element at index '0'5911// :155:30: note: when computing vector element at index '0'
5918// :161:30: error: use of undefined value here causes illegal behavior5912// :155:30: error: use of undefined value here causes illegal behavior
5919// :161:30: error: use of undefined value here causes illegal behavior5913// :155:30: error: use of undefined value here causes illegal behavior
5920// :161:30: error: use of undefined value here causes illegal behavior5914// :155:30: error: use of undefined value here causes illegal behavior
5921// :161:30: error: use of undefined value here causes illegal behavior5915// :155:30: error: use of undefined value here causes illegal behavior
5922// :161:30: error: use of undefined value here causes illegal behavior5916// :155:30: error: use of undefined value here causes illegal behavior
5923// :161:30: error: use of undefined value here causes illegal behavior5917// :155:30: error: use of undefined value here causes illegal behavior
5924// :161:30: error: use of undefined value here causes illegal behavior5918// :155:30: error: use of undefined value here causes illegal behavior
5925// :161:30: note: when computing vector element at index '1'5919// :155:30: note: when computing vector element at index '1'
5926// :161:30: error: use of undefined value here causes illegal behavior5920// :155:30: error: use of undefined value here causes illegal behavior
5927// :161:30: note: when computing vector element at index '1'5921// :155:30: note: when computing vector element at index '1'
5928// :161:30: error: use of undefined value here causes illegal behavior5922// :155:30: error: use of undefined value here causes illegal behavior
5929// :161:30: note: when computing vector element at index '1'5923// :155:30: note: when computing vector element at index '1'
5930// :161:30: error: use of undefined value here causes illegal behavior5924// :155:30: error: use of undefined value here causes illegal behavior
5931// :161:30: note: when computing vector element at index '1'5925// :155:30: note: when computing vector element at index '1'
5932// :161:30: error: use of undefined value here causes illegal behavior5926// :155:30: error: use of undefined value here causes illegal behavior
5933// :161:30: note: when computing vector element at index '0'5927// :155:30: note: when computing vector element at index '0'
5934// :161:30: error: use of undefined value here causes illegal behavior5928// :155:30: error: use of undefined value here causes illegal behavior
5935// :161:30: note: when computing vector element at index '0'5929// :155:30: note: when computing vector element at index '0'
5936// :161:30: error: use of undefined value here causes illegal behavior5930// :155:30: error: use of undefined value here causes illegal behavior
5937// :161:30: note: when computing vector element at index '0'5931// :155:30: note: when computing vector element at index '0'
5938// :161:30: error: use of undefined value here causes illegal behavior5932// :155:30: error: use of undefined value here causes illegal behavior
5939// :161:30: note: when computing vector element at index '0'5933// :155:30: note: when computing vector element at index '0'
5940// :161:30: error: use of undefined value here causes illegal behavior5934// :155:30: error: use of undefined value here causes illegal behavior
5941// :161:30: error: use of undefined value here causes illegal behavior5935// :155:30: error: use of undefined value here causes illegal behavior
5942// :161:30: error: use of undefined value here causes illegal behavior5936// :155:30: error: use of undefined value here causes illegal behavior
5943// :161:30: error: use of undefined value here causes illegal behavior5937// :155:30: error: use of undefined value here causes illegal behavior
5944// :161:30: error: use of undefined value here causes illegal behavior5938// :155:30: error: use of undefined value here causes illegal behavior
5945// :161:30: error: use of undefined value here causes illegal behavior5939// :155:30: error: use of undefined value here causes illegal behavior
5946// :161:30: error: use of undefined value here causes illegal behavior5940// :155:30: error: use of undefined value here causes illegal behavior
5947// :161:30: note: when computing vector element at index '1'5941// :155:30: note: when computing vector element at index '1'
5948// :161:30: error: use of undefined value here causes illegal behavior5942// :155:30: error: use of undefined value here causes illegal behavior
5949// :161:30: note: when computing vector element at index '1'5943// :155:30: note: when computing vector element at index '1'
5950// :161:30: error: use of undefined value here causes illegal behavior5944// :155:30: error: use of undefined value here causes illegal behavior
5951// :161:30: note: when computing vector element at index '1'5945// :155:30: note: when computing vector element at index '1'
5952// :161:30: error: use of undefined value here causes illegal behavior5946// :155:30: error: use of undefined value here causes illegal behavior
5953// :161:30: note: when computing vector element at index '1'5947// :155:30: note: when computing vector element at index '1'
5954// :161:30: error: use of undefined value here causes illegal behavior5948// :155:30: error: use of undefined value here causes illegal behavior
5955// :161:30: note: when computing vector element at index '0'5949// :155:30: note: when computing vector element at index '0'
5956// :161:30: error: use of undefined value here causes illegal behavior5950// :155:30: error: use of undefined value here causes illegal behavior
5957// :161:30: note: when computing vector element at index '0'5951// :155:30: note: when computing vector element at index '0'
5958// :161:30: error: use of undefined value here causes illegal behavior5952// :155:30: error: use of undefined value here causes illegal behavior
5959// :161:30: note: when computing vector element at index '0'5953// :155:30: note: when computing vector element at index '0'
5960// :161:30: error: use of undefined value here causes illegal behavior5954// :155:30: error: use of undefined value here causes illegal behavior
5961// :161:30: note: when computing vector element at index '0'5955// :155:30: note: when computing vector element at index '0'
5962// :161:30: error: use of undefined value here causes illegal behavior5956// :155:30: error: use of undefined value here causes illegal behavior
5963// :161:30: error: use of undefined value here causes illegal behavior5957// :155:30: error: use of undefined value here causes illegal behavior
5964// :161:30: error: use of undefined value here causes illegal behavior5958// :155:30: error: use of undefined value here causes illegal behavior
5965// :161:30: error: use of undefined value here causes illegal behavior5959// :155:30: error: use of undefined value here causes illegal behavior
5966// :161:30: error: use of undefined value here causes illegal behavior5960// :155:30: error: use of undefined value here causes illegal behavior
5967// :161:30: error: use of undefined value here causes illegal behavior5961// :155:30: error: use of undefined value here causes illegal behavior
5968// :161:30: error: use of undefined value here causes illegal behavior5962// :155:30: error: use of undefined value here causes illegal behavior
5969// :161:30: note: when computing vector element at index '1'5963// :155:30: note: when computing vector element at index '1'
5970// :161:30: error: use of undefined value here causes illegal behavior5964// :155:30: error: use of undefined value here causes illegal behavior
5971// :161:30: note: when computing vector element at index '1'5965// :155:30: note: when computing vector element at index '1'
5972// :161:30: error: use of undefined value here causes illegal behavior5966// :155:30: error: use of undefined value here causes illegal behavior
5973// :161:30: note: when computing vector element at index '1'5967// :155:30: note: when computing vector element at index '1'
5974// :161:30: error: use of undefined value here causes illegal behavior5968// :155:30: error: use of undefined value here causes illegal behavior
5975// :161:30: note: when computing vector element at index '1'5969// :155:30: note: when computing vector element at index '1'
5976// :161:30: error: use of undefined value here causes illegal behavior5970// :155:30: error: use of undefined value here causes illegal behavior
5977// :161:30: note: when computing vector element at index '0'5971// :155:30: note: when computing vector element at index '0'
5978// :161:30: error: use of undefined value here causes illegal behavior5972// :155:30: error: use of undefined value here causes illegal behavior
5979// :161:30: note: when computing vector element at index '0'5973// :155:30: note: when computing vector element at index '0'
5980// :161:30: error: use of undefined value here causes illegal behavior5974// :155:30: error: use of undefined value here causes illegal behavior
5981// :161:30: note: when computing vector element at index '0'5975// :155:30: note: when computing vector element at index '0'
5982// :161:30: error: use of undefined value here causes illegal behavior5976// :155:30: error: use of undefined value here causes illegal behavior
5983// :161:30: note: when computing vector element at index '0'5977// :155:30: note: when computing vector element at index '0'
5984// :161:30: error: use of undefined value here causes illegal behavior5978// :155:30: error: use of undefined value here causes illegal behavior
5985// :161:30: error: use of undefined value here causes illegal behavior5979// :155:30: error: use of undefined value here causes illegal behavior
5986// :161:30: error: use of undefined value here causes illegal behavior5980// :155:30: error: use of undefined value here causes illegal behavior
5987// :161:30: error: use of undefined value here causes illegal behavior5981// :155:30: error: use of undefined value here causes illegal behavior
5988// :161:30: error: use of undefined value here causes illegal behavior5982// :155:30: error: use of undefined value here causes illegal behavior
5989// :161:30: error: use of undefined value here causes illegal behavior5983// :155:30: error: use of undefined value here causes illegal behavior
5990// :161:30: error: use of undefined value here causes illegal behavior5984// :155:30: error: use of undefined value here causes illegal behavior
5991// :161:30: note: when computing vector element at index '1'5985// :155:30: note: when computing vector element at index '1'
5992// :161:30: error: use of undefined value here causes illegal behavior5986// :155:30: error: use of undefined value here causes illegal behavior
5993// :161:30: note: when computing vector element at index '1'5987// :155:30: note: when computing vector element at index '1'
5994// :161:30: error: use of undefined value here causes illegal behavior5988// :155:30: error: use of undefined value here causes illegal behavior
5995// :161:30: note: when computing vector element at index '1'5989// :155:30: note: when computing vector element at index '1'
5996// :161:30: error: use of undefined value here causes illegal behavior5990// :155:30: error: use of undefined value here causes illegal behavior
5997// :161:30: note: when computing vector element at index '1'5991// :155:30: note: when computing vector element at index '1'
5998// :161:30: error: use of undefined value here causes illegal behavior5992// :155:30: error: use of undefined value here causes illegal behavior
5999// :161:30: note: when computing vector element at index '0'5993// :155:30: note: when computing vector element at index '0'
6000// :161:30: error: use of undefined value here causes illegal behavior5994// :155:30: error: use of undefined value here causes illegal behavior
6001// :161:30: note: when computing vector element at index '0'5995// :155:30: note: when computing vector element at index '0'
6002// :161:30: error: use of undefined value here causes illegal behavior5996// :155:30: error: use of undefined value here causes illegal behavior
6003// :161:30: note: when computing vector element at index '0'5997// :155:30: note: when computing vector element at index '0'
6004// :161:30: error: use of undefined value here causes illegal behavior5998// :155:30: error: use of undefined value here causes illegal behavior
6005// :161:30: note: when computing vector element at index '0'5999// :155:30: note: when computing vector element at index '0'
6006// :161:30: error: use of undefined value here causes illegal behavior6000// :155:30: error: use of undefined value here causes illegal behavior
6007// :161:30: error: use of undefined value here causes illegal behavior6001// :155:30: error: use of undefined value here causes illegal behavior
6008// :161:30: error: use of undefined value here causes illegal behavior6002// :155:30: error: use of undefined value here causes illegal behavior
6009// :161:30: error: use of undefined value here causes illegal behavior6003// :155:30: error: use of undefined value here causes illegal behavior
6010// :161:30: error: use of undefined value here causes illegal behavior6004// :155:30: error: use of undefined value here causes illegal behavior
6011// :161:30: error: use of undefined value here causes illegal behavior6005// :155:30: error: use of undefined value here causes illegal behavior
6012// :161:30: error: use of undefined value here causes illegal behavior6006// :155:30: error: use of undefined value here causes illegal behavior
6013// :161:30: note: when computing vector element at index '1'6007// :155:30: note: when computing vector element at index '1'
6014// :161:30: error: use of undefined value here causes illegal behavior6008// :155:30: error: use of undefined value here causes illegal behavior
6015// :161:30: note: when computing vector element at index '1'6009// :155:30: note: when computing vector element at index '1'
6016// :161:30: error: use of undefined value here causes illegal behavior6010// :155:30: error: use of undefined value here causes illegal behavior
6017// :161:30: note: when computing vector element at index '1'6011// :155:30: note: when computing vector element at index '1'
6018// :161:30: error: use of undefined value here causes illegal behavior6012// :155:30: error: use of undefined value here causes illegal behavior
6019// :161:30: note: when computing vector element at index '1'6013// :155:30: note: when computing vector element at index '1'
6020// :161:30: error: use of undefined value here causes illegal behavior6014// :155:30: error: use of undefined value here causes illegal behavior
6021// :161:30: note: when computing vector element at index '0'6015// :155:30: note: when computing vector element at index '0'
6022// :161:30: error: use of undefined value here causes illegal behavior6016// :155:30: error: use of undefined value here causes illegal behavior
6023// :161:30: note: when computing vector element at index '0'6017// :155:30: note: when computing vector element at index '0'
6024// :161:30: error: use of undefined value here causes illegal behavior6018// :155:30: error: use of undefined value here causes illegal behavior
6025// :161:30: note: when computing vector element at index '0'6019// :155:30: note: when computing vector element at index '0'
6026// :161:30: error: use of undefined value here causes illegal behavior6020// :155:30: error: use of undefined value here causes illegal behavior
6027// :161:30: note: when computing vector element at index '0'6021// :155:30: note: when computing vector element at index '0'
6028// :161:30: error: use of undefined value here causes illegal behavior6022// :155:30: error: use of undefined value here causes illegal behavior
6029// :161:30: error: use of undefined value here causes illegal behavior6023// :155:30: error: use of undefined value here causes illegal behavior
6030// :161:30: error: use of undefined value here causes illegal behavior6024// :155:30: error: use of undefined value here causes illegal behavior
6031// :161:30: error: use of undefined value here causes illegal behavior6025// :155:30: error: use of undefined value here causes illegal behavior
6032// :161:30: error: use of undefined value here causes illegal behavior6026// :155:30: error: use of undefined value here causes illegal behavior
6033// :161:30: error: use of undefined value here causes illegal behavior6027// :155:30: error: use of undefined value here causes illegal behavior
6034// :161:30: error: use of undefined value here causes illegal behavior6028// :155:30: error: use of undefined value here causes illegal behavior
6035// :161:30: note: when computing vector element at index '1'6029// :155:30: note: when computing vector element at index '1'
6036// :161:30: error: use of undefined value here causes illegal behavior6030// :155:30: error: use of undefined value here causes illegal behavior
6037// :161:30: note: when computing vector element at index '1'6031// :155:30: note: when computing vector element at index '1'
6038// :161:30: error: use of undefined value here causes illegal behavior6032// :155:30: error: use of undefined value here causes illegal behavior
6039// :161:30: note: when computing vector element at index '1'6033// :155:30: note: when computing vector element at index '1'
6040// :161:30: error: use of undefined value here causes illegal behavior6034// :155:30: error: use of undefined value here causes illegal behavior
6041// :161:30: note: when computing vector element at index '1'6035// :155:30: note: when computing vector element at index '1'
6042// :161:30: error: use of undefined value here causes illegal behavior6036// :155:30: error: use of undefined value here causes illegal behavior
6043// :161:30: note: when computing vector element at index '0'6037// :155:30: note: when computing vector element at index '0'
6044// :161:30: error: use of undefined value here causes illegal behavior6038// :155:30: error: use of undefined value here causes illegal behavior
6045// :161:30: note: when computing vector element at index '0'6039// :155:30: note: when computing vector element at index '0'
6046// :161:30: error: use of undefined value here causes illegal behavior6040// :155:30: error: use of undefined value here causes illegal behavior
6047// :161:30: note: when computing vector element at index '0'6041// :155:30: note: when computing vector element at index '0'
6048// :161:30: error: use of undefined value here causes illegal behavior6042// :155:30: error: use of undefined value here causes illegal behavior
6049// :161:30: note: when computing vector element at index '0'6043// :155:30: note: when computing vector element at index '0'
6050// :161:30: error: use of undefined value here causes illegal behavior6044// :155:30: error: use of undefined value here causes illegal behavior
6051// :161:30: error: use of undefined value here causes illegal behavior6045// :155:30: error: use of undefined value here causes illegal behavior
6052// :161:30: error: use of undefined value here causes illegal behavior6046// :155:30: error: use of undefined value here causes illegal behavior
6053// :161:30: error: use of undefined value here causes illegal behavior6047// :155:30: error: use of undefined value here causes illegal behavior
6054// :161:30: error: use of undefined value here causes illegal behavior6048// :155:30: error: use of undefined value here causes illegal behavior
6055// :161:30: error: use of undefined value here causes illegal behavior6049// :155:30: error: use of undefined value here causes illegal behavior
6056// :161:30: error: use of undefined value here causes illegal behavior6050// :155:30: error: use of undefined value here causes illegal behavior
6057// :161:30: note: when computing vector element at index '1'6051// :155:30: note: when computing vector element at index '1'
6058// :161:30: error: use of undefined value here causes illegal behavior6052// :155:30: error: use of undefined value here causes illegal behavior
6059// :161:30: note: when computing vector element at index '1'6053// :155:30: note: when computing vector element at index '1'
6060// :161:30: error: use of undefined value here causes illegal behavior6054// :155:30: error: use of undefined value here causes illegal behavior
6061// :161:30: note: when computing vector element at index '1'6055// :155:30: note: when computing vector element at index '1'
6062// :161:30: error: use of undefined value here causes illegal behavior6056// :155:30: error: use of undefined value here causes illegal behavior
6063// :161:30: note: when computing vector element at index '1'6057// :155:30: note: when computing vector element at index '1'
6064// :161:30: error: use of undefined value here causes illegal behavior6058// :155:30: error: use of undefined value here causes illegal behavior
6065// :161:30: note: when computing vector element at index '0'6059// :155:30: note: when computing vector element at index '0'
6066// :161:30: error: use of undefined value here causes illegal behavior6060// :155:30: error: use of undefined value here causes illegal behavior
6067// :161:30: note: when computing vector element at index '0'6061// :155:30: note: when computing vector element at index '0'
6068// :161:30: error: use of undefined value here causes illegal behavior6062// :155:30: error: use of undefined value here causes illegal behavior
6069// :161:30: note: when computing vector element at index '0'6063// :155:30: note: when computing vector element at index '0'
6070// :161:30: error: use of undefined value here causes illegal behavior6064// :155:30: error: use of undefined value here causes illegal behavior
6071// :161:30: note: when computing vector element at index '0'6065// :155:30: note: when computing vector element at index '0'
6072// :161:30: error: use of undefined value here causes illegal behavior6066// :155:30: error: use of undefined value here causes illegal behavior
6073// :161:30: error: use of undefined value here causes illegal behavior6067// :155:30: error: use of undefined value here causes illegal behavior
6074// :161:30: error: use of undefined value here causes illegal behavior6068// :155:30: error: use of undefined value here causes illegal behavior
6075// :161:30: error: use of undefined value here causes illegal behavior6069// :155:30: error: use of undefined value here causes illegal behavior
6076// :161:30: error: use of undefined value here causes illegal behavior6070// :155:30: error: use of undefined value here causes illegal behavior
6077// :161:30: error: use of undefined value here causes illegal behavior6071// :155:30: error: use of undefined value here causes illegal behavior
6078// :161:30: error: use of undefined value here causes illegal behavior6072// :155:30: error: use of undefined value here causes illegal behavior
6079// :161:30: note: when computing vector element at index '1'6073// :155:30: note: when computing vector element at index '1'
6080// :161:30: error: use of undefined value here causes illegal behavior6074// :155:30: error: use of undefined value here causes illegal behavior
6081// :161:30: note: when computing vector element at index '1'6075// :155:30: note: when computing vector element at index '1'
6082// :161:30: error: use of undefined value here causes illegal behavior6076// :155:30: error: use of undefined value here causes illegal behavior
6083// :161:30: note: when computing vector element at index '1'6077// :155:30: note: when computing vector element at index '1'
6084// :161:30: error: use of undefined value here causes illegal behavior6078// :155:30: error: use of undefined value here causes illegal behavior
6085// :161:30: note: when computing vector element at index '1'6079// :155:30: note: when computing vector element at index '1'
6086// :161:30: error: use of undefined value here causes illegal behavior6080// :155:30: error: use of undefined value here causes illegal behavior
6087// :161:30: note: when computing vector element at index '0'6081// :155:30: note: when computing vector element at index '0'
6088// :161:30: error: use of undefined value here causes illegal behavior6082// :155:30: error: use of undefined value here causes illegal behavior
6089// :161:30: note: when computing vector element at index '0'6083// :155:30: note: when computing vector element at index '0'
6090// :161:30: error: use of undefined value here causes illegal behavior6084// :155:30: error: use of undefined value here causes illegal behavior
6091// :161:30: note: when computing vector element at index '0'6085// :155:30: note: when computing vector element at index '0'
6092// :161:30: error: use of undefined value here causes illegal behavior6086// :155:30: error: use of undefined value here causes illegal behavior
6093// :161:30: note: when computing vector element at index '0'6087// :155:30: note: when computing vector element at index '0'
6094// :161:30: error: use of undefined value here causes illegal behavior6088// :155:30: error: use of undefined value here causes illegal behavior
6095// :161:30: error: use of undefined value here causes illegal behavior6089// :155:30: error: use of undefined value here causes illegal behavior
6096// :161:30: error: use of undefined value here causes illegal behavior6090// :155:30: error: use of undefined value here causes illegal behavior
6097// :161:30: error: use of undefined value here causes illegal behavior6091// :155:30: error: use of undefined value here causes illegal behavior
6098// :161:30: error: use of undefined value here causes illegal behavior6092// :155:30: error: use of undefined value here causes illegal behavior
6099// :161:30: error: use of undefined value here causes illegal behavior6093// :155:30: error: use of undefined value here causes illegal behavior
6100// :161:30: error: use of undefined value here causes illegal behavior6094// :155:30: error: use of undefined value here causes illegal behavior
6101// :161:30: note: when computing vector element at index '1'6095// :155:30: note: when computing vector element at index '1'
6102// :161:30: error: use of undefined value here causes illegal behavior6096// :155:30: error: use of undefined value here causes illegal behavior
6103// :161:30: note: when computing vector element at index '1'6097// :155:30: note: when computing vector element at index '1'
6104// :161:30: error: use of undefined value here causes illegal behavior6098// :155:30: error: use of undefined value here causes illegal behavior
6105// :161:30: note: when computing vector element at index '1'6099// :155:30: note: when computing vector element at index '1'
6106// :161:30: error: use of undefined value here causes illegal behavior6100// :155:30: error: use of undefined value here causes illegal behavior
6107// :161:30: note: when computing vector element at index '1'6101// :155:30: note: when computing vector element at index '1'
6108// :161:30: error: use of undefined value here causes illegal behavior6102// :155:30: error: use of undefined value here causes illegal behavior
6109// :161:30: note: when computing vector element at index '0'6103// :155:30: note: when computing vector element at index '0'
6110// :161:30: error: use of undefined value here causes illegal behavior6104// :155:30: error: use of undefined value here causes illegal behavior
6111// :161:30: note: when computing vector element at index '0'6105// :155:30: note: when computing vector element at index '0'
6112// :161:30: error: use of undefined value here causes illegal behavior6106// :155:30: error: use of undefined value here causes illegal behavior
6113// :161:30: note: when computing vector element at index '0'6107// :155:30: note: when computing vector element at index '0'
6114// :161:30: error: use of undefined value here causes illegal behavior6108// :155:30: error: use of undefined value here causes illegal behavior
6115// :161:30: note: when computing vector element at index '0'6109// :155:30: note: when computing vector element at index '0'
6116// :161:30: error: use of undefined value here causes illegal behavior6110// :155:30: error: use of undefined value here causes illegal behavior
6117// :161:30: error: use of undefined value here causes illegal behavior6111// :155:30: error: use of undefined value here causes illegal behavior
6118// :161:30: error: use of undefined value here causes illegal behavior6112// :155:30: error: use of undefined value here causes illegal behavior
6119// :161:30: error: use of undefined value here causes illegal behavior6113// :155:30: error: use of undefined value here causes illegal behavior
6120// :161:30: error: use of undefined value here causes illegal behavior6114// :155:30: error: use of undefined value here causes illegal behavior
6121// :161:30: error: use of undefined value here causes illegal behavior6115// :155:30: error: use of undefined value here causes illegal behavior
6122// :161:30: error: use of undefined value here causes illegal behavior6116// :155:30: error: use of undefined value here causes illegal behavior
6123// :161:30: note: when computing vector element at index '1'6117// :155:30: note: when computing vector element at index '1'
6124// :161:30: error: use of undefined value here causes illegal behavior6118// :155:30: error: use of undefined value here causes illegal behavior
6125// :161:30: note: when computing vector element at index '1'6119// :155:30: note: when computing vector element at index '1'
6126// :161:30: error: use of undefined value here causes illegal behavior6120// :155:30: error: use of undefined value here causes illegal behavior
6127// :161:30: note: when computing vector element at index '1'6121// :155:30: note: when computing vector element at index '1'
6128// :161:30: error: use of undefined value here causes illegal behavior6122// :155:30: error: use of undefined value here causes illegal behavior
6129// :161:30: note: when computing vector element at index '1'6123// :155:30: note: when computing vector element at index '1'
6130// :161:30: error: use of undefined value here causes illegal behavior6124// :155:30: error: use of undefined value here causes illegal behavior
6131// :161:30: note: when computing vector element at index '0'6125// :155:30: note: when computing vector element at index '0'
6132// :161:30: error: use of undefined value here causes illegal behavior6126// :155:30: error: use of undefined value here causes illegal behavior
6133// :161:30: note: when computing vector element at index '0'6127// :155:30: note: when computing vector element at index '0'
6134// :161:30: error: use of undefined value here causes illegal behavior6128// :155:30: error: use of undefined value here causes illegal behavior
6135// :161:30: note: when computing vector element at index '0'6129// :155:30: note: when computing vector element at index '0'
6136// :161:30: error: use of undefined value here causes illegal behavior6130// :155:30: error: use of undefined value here causes illegal behavior
6137// :161:30: note: when computing vector element at index '0'6131// :155:30: note: when computing vector element at index '0'
6138// :165:30: error: use of undefined value here causes illegal behavior6132// :159:30: error: use of undefined value here causes illegal behavior
6139// :165:30: error: use of undefined value here causes illegal behavior6133// :159:30: error: use of undefined value here causes illegal behavior
6140// :165:30: error: use of undefined value here causes illegal behavior6134// :159:30: error: use of undefined value here causes illegal behavior
6141// :165:30: error: use of undefined value here causes illegal behavior6135// :159:30: error: use of undefined value here causes illegal behavior
6142// :165:30: error: use of undefined value here causes illegal behavior6136// :159:30: error: use of undefined value here causes illegal behavior
6143// :165:30: error: use of undefined value here causes illegal behavior6137// :159:30: error: use of undefined value here causes illegal behavior
6144// :165:30: error: use of undefined value here causes illegal behavior6138// :159:30: error: use of undefined value here causes illegal behavior
6145// :165:30: note: when computing vector element at index '1'6139// :159:30: note: when computing vector element at index '1'
6146// :165:30: error: use of undefined value here causes illegal behavior6140// :159:30: error: use of undefined value here causes illegal behavior
6147// :165:30: note: when computing vector element at index '1'6141// :159:30: note: when computing vector element at index '1'
6148// :165:30: error: use of undefined value here causes illegal behavior6142// :159:30: error: use of undefined value here causes illegal behavior
6149// :165:30: note: when computing vector element at index '1'6143// :159:30: note: when computing vector element at index '1'
6150// :165:30: error: use of undefined value here causes illegal behavior6144// :159:30: error: use of undefined value here causes illegal behavior
6151// :165:30: note: when computing vector element at index '1'6145// :159:30: note: when computing vector element at index '1'
6152// :165:30: error: use of undefined value here causes illegal behavior6146// :159:30: error: use of undefined value here causes illegal behavior
6153// :165:30: note: when computing vector element at index '0'6147// :159:30: note: when computing vector element at index '0'
6154// :165:30: error: use of undefined value here causes illegal behavior6148// :159:30: error: use of undefined value here causes illegal behavior
6155// :165:30: note: when computing vector element at index '0'6149// :159:30: note: when computing vector element at index '0'
6156// :165:30: error: use of undefined value here causes illegal behavior6150// :159:30: error: use of undefined value here causes illegal behavior
6157// :165:30: note: when computing vector element at index '0'6151// :159:30: note: when computing vector element at index '0'
6158// :165:30: error: use of undefined value here causes illegal behavior6152// :159:30: error: use of undefined value here causes illegal behavior
6159// :165:30: note: when computing vector element at index '0'6153// :159:30: note: when computing vector element at index '0'
6160// :165:30: error: use of undefined value here causes illegal behavior6154// :159:30: error: use of undefined value here causes illegal behavior
6161// :165:30: error: use of undefined value here causes illegal behavior6155// :159:30: error: use of undefined value here causes illegal behavior
6162// :165:30: error: use of undefined value here causes illegal behavior6156// :159:30: error: use of undefined value here causes illegal behavior
6163// :165:30: error: use of undefined value here causes illegal behavior6157// :159:30: error: use of undefined value here causes illegal behavior
6164// :165:30: error: use of undefined value here causes illegal behavior6158// :159:30: error: use of undefined value here causes illegal behavior
6165// :165:30: error: use of undefined value here causes illegal behavior6159// :159:30: error: use of undefined value here causes illegal behavior
6166// :165:30: error: use of undefined value here causes illegal behavior6160// :159:30: error: use of undefined value here causes illegal behavior
6167// :165:30: note: when computing vector element at index '1'6161// :159:30: note: when computing vector element at index '1'
6168// :165:30: error: use of undefined value here causes illegal behavior6162// :159:30: error: use of undefined value here causes illegal behavior
6169// :165:30: note: when computing vector element at index '1'6163// :159:30: note: when computing vector element at index '1'
6170// :165:30: error: use of undefined value here causes illegal behavior6164// :159:30: error: use of undefined value here causes illegal behavior
6171// :165:30: note: when computing vector element at index '1'6165// :159:30: note: when computing vector element at index '1'
6172// :165:30: error: use of undefined value here causes illegal behavior6166// :159:30: error: use of undefined value here causes illegal behavior
6173// :165:30: note: when computing vector element at index '1'6167// :159:30: note: when computing vector element at index '1'
6174// :165:30: error: use of undefined value here causes illegal behavior6168// :159:30: error: use of undefined value here causes illegal behavior
6175// :165:30: note: when computing vector element at index '0'6169// :159:30: note: when computing vector element at index '0'
6176// :165:30: error: use of undefined value here causes illegal behavior6170// :159:30: error: use of undefined value here causes illegal behavior
6177// :165:30: note: when computing vector element at index '0'6171// :159:30: note: when computing vector element at index '0'
6178// :165:30: error: use of undefined value here causes illegal behavior6172// :159:30: error: use of undefined value here causes illegal behavior
6179// :165:30: note: when computing vector element at index '0'6173// :159:30: note: when computing vector element at index '0'
6180// :165:30: error: use of undefined value here causes illegal behavior6174// :159:30: error: use of undefined value here causes illegal behavior
6181// :165:30: note: when computing vector element at index '0'6175// :159:30: note: when computing vector element at index '0'
6182// :165:30: error: use of undefined value here causes illegal behavior6176// :159:30: error: use of undefined value here causes illegal behavior
6183// :165:30: error: use of undefined value here causes illegal behavior6177// :159:30: error: use of undefined value here causes illegal behavior
6184// :165:30: error: use of undefined value here causes illegal behavior6178// :159:30: error: use of undefined value here causes illegal behavior
6185// :165:30: error: use of undefined value here causes illegal behavior6179// :159:30: error: use of undefined value here causes illegal behavior
6186// :165:30: error: use of undefined value here causes illegal behavior6180// :159:30: error: use of undefined value here causes illegal behavior
6187// :165:30: error: use of undefined value here causes illegal behavior6181// :159:30: error: use of undefined value here causes illegal behavior
6188// :165:30: error: use of undefined value here causes illegal behavior6182// :159:30: error: use of undefined value here causes illegal behavior
6189// :165:30: note: when computing vector element at index '1'6183// :159:30: note: when computing vector element at index '1'
6190// :165:30: error: use of undefined value here causes illegal behavior6184// :159:30: error: use of undefined value here causes illegal behavior
6191// :165:30: note: when computing vector element at index '1'6185// :159:30: note: when computing vector element at index '1'
6192// :165:30: error: use of undefined value here causes illegal behavior6186// :159:30: error: use of undefined value here causes illegal behavior
6193// :165:30: note: when computing vector element at index '1'6187// :159:30: note: when computing vector element at index '1'
6194// :165:30: error: use of undefined value here causes illegal behavior6188// :159:30: error: use of undefined value here causes illegal behavior
6195// :165:30: note: when computing vector element at index '1'6189// :159:30: note: when computing vector element at index '1'
6196// :165:30: error: use of undefined value here causes illegal behavior6190// :159:30: error: use of undefined value here causes illegal behavior
6197// :165:30: note: when computing vector element at index '0'6191// :159:30: note: when computing vector element at index '0'
6198// :165:30: error: use of undefined value here causes illegal behavior6192// :159:30: error: use of undefined value here causes illegal behavior
6199// :165:30: note: when computing vector element at index '0'6193// :159:30: note: when computing vector element at index '0'
6200// :165:30: error: use of undefined value here causes illegal behavior6194// :159:30: error: use of undefined value here causes illegal behavior
6201// :165:30: note: when computing vector element at index '0'6195// :159:30: note: when computing vector element at index '0'
6202// :165:30: error: use of undefined value here causes illegal behavior6196// :159:30: error: use of undefined value here causes illegal behavior
6203// :165:30: note: when computing vector element at index '0'6197// :159:30: note: when computing vector element at index '0'
6204// :165:30: error: use of undefined value here causes illegal behavior6198// :159:30: error: use of undefined value here causes illegal behavior
6205// :165:30: error: use of undefined value here causes illegal behavior6199// :159:30: error: use of undefined value here causes illegal behavior
6206// :165:30: error: use of undefined value here causes illegal behavior6200// :159:30: error: use of undefined value here causes illegal behavior
6207// :165:30: error: use of undefined value here causes illegal behavior6201// :159:30: error: use of undefined value here causes illegal behavior
6208// :165:30: error: use of undefined value here causes illegal behavior6202// :159:30: error: use of undefined value here causes illegal behavior
6209// :165:30: error: use of undefined value here causes illegal behavior6203// :159:30: error: use of undefined value here causes illegal behavior
6210// :165:30: error: use of undefined value here causes illegal behavior6204// :159:30: error: use of undefined value here causes illegal behavior
6211// :165:30: note: when computing vector element at index '1'6205// :159:30: note: when computing vector element at index '1'
6212// :165:30: error: use of undefined value here causes illegal behavior6206// :159:30: error: use of undefined value here causes illegal behavior
6213// :165:30: note: when computing vector element at index '1'6207// :159:30: note: when computing vector element at index '1'
6214// :165:30: error: use of undefined value here causes illegal behavior6208// :159:30: error: use of undefined value here causes illegal behavior
6215// :165:30: note: when computing vector element at index '1'6209// :159:30: note: when computing vector element at index '1'
6216// :165:30: error: use of undefined value here causes illegal behavior6210// :159:30: error: use of undefined value here causes illegal behavior
6217// :165:30: note: when computing vector element at index '1'6211// :159:30: note: when computing vector element at index '1'
6218// :165:30: error: use of undefined value here causes illegal behavior6212// :159:30: error: use of undefined value here causes illegal behavior
6219// :165:30: note: when computing vector element at index '0'6213// :159:30: note: when computing vector element at index '0'
6220// :165:30: error: use of undefined value here causes illegal behavior6214// :159:30: error: use of undefined value here causes illegal behavior
6221// :165:30: note: when computing vector element at index '0'6215// :159:30: note: when computing vector element at index '0'
6222// :165:30: error: use of undefined value here causes illegal behavior6216// :159:30: error: use of undefined value here causes illegal behavior
6223// :165:30: note: when computing vector element at index '0'6217// :159:30: note: when computing vector element at index '0'
6224// :165:30: error: use of undefined value here causes illegal behavior6218// :159:30: error: use of undefined value here causes illegal behavior
6225// :165:30: note: when computing vector element at index '0'6219// :159:30: note: when computing vector element at index '0'
6226// :165:30: error: use of undefined value here causes illegal behavior6220// :159:30: error: use of undefined value here causes illegal behavior
6227// :165:30: error: use of undefined value here causes illegal behavior6221// :159:30: error: use of undefined value here causes illegal behavior
6228// :165:30: error: use of undefined value here causes illegal behavior6222// :159:30: error: use of undefined value here causes illegal behavior
6229// :165:30: error: use of undefined value here causes illegal behavior6223// :159:30: error: use of undefined value here causes illegal behavior
6230// :165:30: error: use of undefined value here causes illegal behavior6224// :159:30: error: use of undefined value here causes illegal behavior
6231// :165:30: error: use of undefined value here causes illegal behavior6225// :159:30: error: use of undefined value here causes illegal behavior
6232// :165:30: error: use of undefined value here causes illegal behavior6226// :159:30: error: use of undefined value here causes illegal behavior
6233// :165:30: note: when computing vector element at index '1'6227// :159:30: note: when computing vector element at index '1'
6234// :165:30: error: use of undefined value here causes illegal behavior6228// :159:30: error: use of undefined value here causes illegal behavior
6235// :165:30: note: when computing vector element at index '1'6229// :159:30: note: when computing vector element at index '1'
6236// :165:30: error: use of undefined value here causes illegal behavior6230// :159:30: error: use of undefined value here causes illegal behavior
6237// :165:30: note: when computing vector element at index '1'6231// :159:30: note: when computing vector element at index '1'
6238// :165:30: error: use of undefined value here causes illegal behavior6232// :159:30: error: use of undefined value here causes illegal behavior
6239// :165:30: note: when computing vector element at index '1'6233// :159:30: note: when computing vector element at index '1'
6240// :165:30: error: use of undefined value here causes illegal behavior6234// :159:30: error: use of undefined value here causes illegal behavior
6241// :165:30: note: when computing vector element at index '0'6235// :159:30: note: when computing vector element at index '0'
6242// :165:30: error: use of undefined value here causes illegal behavior6236// :159:30: error: use of undefined value here causes illegal behavior
6243// :165:30: note: when computing vector element at index '0'6237// :159:30: note: when computing vector element at index '0'
6244// :165:30: error: use of undefined value here causes illegal behavior6238// :159:30: error: use of undefined value here causes illegal behavior
6245// :165:30: note: when computing vector element at index '0'6239// :159:30: note: when computing vector element at index '0'
6246// :165:30: error: use of undefined value here causes illegal behavior6240// :159:30: error: use of undefined value here causes illegal behavior
6247// :165:30: note: when computing vector element at index '0'6241// :159:30: note: when computing vector element at index '0'
6248// :165:30: error: use of undefined value here causes illegal behavior6242// :159:30: error: use of undefined value here causes illegal behavior
6249// :165:30: error: use of undefined value here causes illegal behavior6243// :159:30: error: use of undefined value here causes illegal behavior
6250// :165:30: error: use of undefined value here causes illegal behavior6244// :159:30: error: use of undefined value here causes illegal behavior
6251// :165:30: error: use of undefined value here causes illegal behavior6245// :159:30: error: use of undefined value here causes illegal behavior
6252// :165:30: error: use of undefined value here causes illegal behavior6246// :159:30: error: use of undefined value here causes illegal behavior
6253// :165:30: error: use of undefined value here causes illegal behavior6247// :159:30: error: use of undefined value here causes illegal behavior
6254// :165:30: error: use of undefined value here causes illegal behavior6248// :159:30: error: use of undefined value here causes illegal behavior
6255// :165:30: note: when computing vector element at index '1'6249// :159:30: note: when computing vector element at index '1'
6256// :165:30: error: use of undefined value here causes illegal behavior6250// :159:30: error: use of undefined value here causes illegal behavior
6257// :165:30: note: when computing vector element at index '1'6251// :159:30: note: when computing vector element at index '1'
6258// :165:30: error: use of undefined value here causes illegal behavior6252// :159:30: error: use of undefined value here causes illegal behavior
6259// :165:30: note: when computing vector element at index '1'6253// :159:30: note: when computing vector element at index '1'
6260// :165:30: error: use of undefined value here causes illegal behavior6254// :159:30: error: use of undefined value here causes illegal behavior
6261// :165:30: note: when computing vector element at index '1'6255// :159:30: note: when computing vector element at index '1'
6262// :165:30: error: use of undefined value here causes illegal behavior6256// :159:30: error: use of undefined value here causes illegal behavior
6263// :165:30: note: when computing vector element at index '0'6257// :159:30: note: when computing vector element at index '0'
6264// :165:30: error: use of undefined value here causes illegal behavior6258// :159:30: error: use of undefined value here causes illegal behavior
6265// :165:30: note: when computing vector element at index '0'6259// :159:30: note: when computing vector element at index '0'
6266// :165:30: error: use of undefined value here causes illegal behavior6260// :159:30: error: use of undefined value here causes illegal behavior
6267// :165:30: note: when computing vector element at index '0'6261// :159:30: note: when computing vector element at index '0'
6268// :165:30: error: use of undefined value here causes illegal behavior6262// :159:30: error: use of undefined value here causes illegal behavior
6269// :165:30: note: when computing vector element at index '0'6263// :159:30: note: when computing vector element at index '0'
6270// :165:30: error: use of undefined value here causes illegal behavior6264// :159:30: error: use of undefined value here causes illegal behavior
6271// :165:30: error: use of undefined value here causes illegal behavior6265// :159:30: error: use of undefined value here causes illegal behavior
6272// :165:30: error: use of undefined value here causes illegal behavior6266// :159:30: error: use of undefined value here causes illegal behavior
6273// :165:30: error: use of undefined value here causes illegal behavior6267// :159:30: error: use of undefined value here causes illegal behavior
6274// :165:30: error: use of undefined value here causes illegal behavior6268// :159:30: error: use of undefined value here causes illegal behavior
6275// :165:30: error: use of undefined value here causes illegal behavior6269// :159:30: error: use of undefined value here causes illegal behavior
6276// :165:30: error: use of undefined value here causes illegal behavior6270// :159:30: error: use of undefined value here causes illegal behavior
6277// :165:30: note: when computing vector element at index '1'6271// :159:30: note: when computing vector element at index '1'
6278// :165:30: error: use of undefined value here causes illegal behavior6272// :159:30: error: use of undefined value here causes illegal behavior
6279// :165:30: note: when computing vector element at index '1'6273// :159:30: note: when computing vector element at index '1'
6280// :165:30: error: use of undefined value here causes illegal behavior6274// :159:30: error: use of undefined value here causes illegal behavior
6281// :165:30: note: when computing vector element at index '1'6275// :159:30: note: when computing vector element at index '1'
6282// :165:30: error: use of undefined value here causes illegal behavior6276// :159:30: error: use of undefined value here causes illegal behavior
6283// :165:30: note: when computing vector element at index '1'6277// :159:30: note: when computing vector element at index '1'
6284// :165:30: error: use of undefined value here causes illegal behavior6278// :159:30: error: use of undefined value here causes illegal behavior
6285// :165:30: note: when computing vector element at index '0'6279// :159:30: note: when computing vector element at index '0'
6286// :165:30: error: use of undefined value here causes illegal behavior6280// :159:30: error: use of undefined value here causes illegal behavior
6287// :165:30: note: when computing vector element at index '0'6281// :159:30: note: when computing vector element at index '0'
6288// :165:30: error: use of undefined value here causes illegal behavior6282// :159:30: error: use of undefined value here causes illegal behavior
6289// :165:30: note: when computing vector element at index '0'6283// :159:30: note: when computing vector element at index '0'
6290// :165:30: error: use of undefined value here causes illegal behavior6284// :159:30: error: use of undefined value here causes illegal behavior
6291// :165:30: note: when computing vector element at index '0'6285// :159:30: note: when computing vector element at index '0'
6292// :165:30: error: use of undefined value here causes illegal behavior6286// :159:30: error: use of undefined value here causes illegal behavior
6293// :165:30: error: use of undefined value here causes illegal behavior6287// :159:30: error: use of undefined value here causes illegal behavior
6294// :165:30: error: use of undefined value here causes illegal behavior6288// :159:30: error: use of undefined value here causes illegal behavior
6295// :165:30: error: use of undefined value here causes illegal behavior6289// :159:30: error: use of undefined value here causes illegal behavior
6296// :165:30: error: use of undefined value here causes illegal behavior6290// :159:30: error: use of undefined value here causes illegal behavior
6297// :165:30: error: use of undefined value here causes illegal behavior6291// :159:30: error: use of undefined value here causes illegal behavior
6298// :165:30: error: use of undefined value here causes illegal behavior6292// :159:30: error: use of undefined value here causes illegal behavior
6299// :165:30: note: when computing vector element at index '1'6293// :159:30: note: when computing vector element at index '1'
6300// :165:30: error: use of undefined value here causes illegal behavior6294// :159:30: error: use of undefined value here causes illegal behavior
6301// :165:30: note: when computing vector element at index '1'6295// :159:30: note: when computing vector element at index '1'
6302// :165:30: error: use of undefined value here causes illegal behavior6296// :159:30: error: use of undefined value here causes illegal behavior
6303// :165:30: note: when computing vector element at index '1'6297// :159:30: note: when computing vector element at index '1'
6304// :165:30: error: use of undefined value here causes illegal behavior6298// :159:30: error: use of undefined value here causes illegal behavior
6305// :165:30: note: when computing vector element at index '1'6299// :159:30: note: when computing vector element at index '1'
6306// :165:30: error: use of undefined value here causes illegal behavior6300// :159:30: error: use of undefined value here causes illegal behavior
6307// :165:30: note: when computing vector element at index '0'6301// :159:30: note: when computing vector element at index '0'
6308// :165:30: error: use of undefined value here causes illegal behavior6302// :159:30: error: use of undefined value here causes illegal behavior
6309// :165:30: note: when computing vector element at index '0'6303// :159:30: note: when computing vector element at index '0'
6310// :165:30: error: use of undefined value here causes illegal behavior6304// :159:30: error: use of undefined value here causes illegal behavior
6311// :165:30: note: when computing vector element at index '0'6305// :159:30: note: when computing vector element at index '0'
6312// :165:30: error: use of undefined value here causes illegal behavior6306// :159:30: error: use of undefined value here causes illegal behavior
6313// :165:30: note: when computing vector element at index '0'6307// :159:30: note: when computing vector element at index '0'
6314// :165:30: error: use of undefined value here causes illegal behavior6308// :159:30: error: use of undefined value here causes illegal behavior
6315// :165:30: error: use of undefined value here causes illegal behavior6309// :159:30: error: use of undefined value here causes illegal behavior
6316// :165:30: error: use of undefined value here causes illegal behavior6310// :159:30: error: use of undefined value here causes illegal behavior
6317// :165:30: error: use of undefined value here causes illegal behavior6311// :159:30: error: use of undefined value here causes illegal behavior
6318// :165:30: error: use of undefined value here causes illegal behavior6312// :159:30: error: use of undefined value here causes illegal behavior
6319// :165:30: error: use of undefined value here causes illegal behavior6313// :159:30: error: use of undefined value here causes illegal behavior
6320// :165:30: error: use of undefined value here causes illegal behavior6314// :159:30: error: use of undefined value here causes illegal behavior
6321// :165:30: note: when computing vector element at index '1'6315// :159:30: note: when computing vector element at index '1'
6322// :165:30: error: use of undefined value here causes illegal behavior6316// :159:30: error: use of undefined value here causes illegal behavior
6323// :165:30: note: when computing vector element at index '1'6317// :159:30: note: when computing vector element at index '1'
6324// :165:30: error: use of undefined value here causes illegal behavior6318// :159:30: error: use of undefined value here causes illegal behavior
6325// :165:30: note: when computing vector element at index '1'6319// :159:30: note: when computing vector element at index '1'
6326// :165:30: error: use of undefined value here causes illegal behavior6320// :159:30: error: use of undefined value here causes illegal behavior
6327// :165:30: note: when computing vector element at index '1'6321// :159:30: note: when computing vector element at index '1'
6328// :165:30: error: use of undefined value here causes illegal behavior6322// :159:30: error: use of undefined value here causes illegal behavior
6329// :165:30: note: when computing vector element at index '0'6323// :159:30: note: when computing vector element at index '0'
6330// :165:30: error: use of undefined value here causes illegal behavior6324// :159:30: error: use of undefined value here causes illegal behavior
6331// :165:30: note: when computing vector element at index '0'6325// :159:30: note: when computing vector element at index '0'
6332// :165:30: error: use of undefined value here causes illegal behavior6326// :159:30: error: use of undefined value here causes illegal behavior
6333// :165:30: note: when computing vector element at index '0'6327// :159:30: note: when computing vector element at index '0'
6334// :165:30: error: use of undefined value here causes illegal behavior6328// :159:30: error: use of undefined value here causes illegal behavior
6335// :165:30: note: when computing vector element at index '0'6329// :159:30: note: when computing vector element at index '0'
6336// :165:30: error: use of undefined value here causes illegal behavior6330// :159:30: error: use of undefined value here causes illegal behavior
6337// :165:30: error: use of undefined value here causes illegal behavior6331// :159:30: error: use of undefined value here causes illegal behavior
6338// :165:30: error: use of undefined value here causes illegal behavior6332// :159:30: error: use of undefined value here causes illegal behavior
6339// :165:30: error: use of undefined value here causes illegal behavior6333// :159:30: error: use of undefined value here causes illegal behavior
6340// :165:30: error: use of undefined value here causes illegal behavior6334// :159:30: error: use of undefined value here causes illegal behavior
6341// :165:30: error: use of undefined value here causes illegal behavior6335// :159:30: error: use of undefined value here causes illegal behavior
6342// :165:30: error: use of undefined value here causes illegal behavior6336// :159:30: error: use of undefined value here causes illegal behavior
6343// :165:30: note: when computing vector element at index '1'6337// :159:30: note: when computing vector element at index '1'
6344// :165:30: error: use of undefined value here causes illegal behavior6338// :159:30: error: use of undefined value here causes illegal behavior
6345// :165:30: note: when computing vector element at index '1'6339// :159:30: note: when computing vector element at index '1'
6346// :165:30: error: use of undefined value here causes illegal behavior6340// :159:30: error: use of undefined value here causes illegal behavior
6347// :165:30: note: when computing vector element at index '1'6341// :159:30: note: when computing vector element at index '1'
6348// :165:30: error: use of undefined value here causes illegal behavior6342// :159:30: error: use of undefined value here causes illegal behavior
6349// :165:30: note: when computing vector element at index '1'6343// :159:30: note: when computing vector element at index '1'
6350// :165:30: error: use of undefined value here causes illegal behavior6344// :159:30: error: use of undefined value here causes illegal behavior
6351// :165:30: note: when computing vector element at index '0'6345// :159:30: note: when computing vector element at index '0'
6352// :165:30: error: use of undefined value here causes illegal behavior6346// :159:30: error: use of undefined value here causes illegal behavior
6353// :165:30: note: when computing vector element at index '0'6347// :159:30: note: when computing vector element at index '0'
6354// :165:30: error: use of undefined value here causes illegal behavior6348// :159:30: error: use of undefined value here causes illegal behavior
6355// :165:30: note: when computing vector element at index '0'6349// :159:30: note: when computing vector element at index '0'
6356// :165:30: error: use of undefined value here causes illegal behavior6350// :159:30: error: use of undefined value here causes illegal behavior
6357// :165:30: note: when computing vector element at index '0'6351// :159:30: note: when computing vector element at index '0'
6358// :165:30: error: use of undefined value here causes illegal behavior6352// :159:30: error: use of undefined value here causes illegal behavior
6359// :165:30: error: use of undefined value here causes illegal behavior6353// :159:30: error: use of undefined value here causes illegal behavior
6360// :165:30: error: use of undefined value here causes illegal behavior6354// :159:30: error: use of undefined value here causes illegal behavior
6361// :165:30: error: use of undefined value here causes illegal behavior6355// :159:30: error: use of undefined value here causes illegal behavior
6362// :165:30: error: use of undefined value here causes illegal behavior6356// :159:30: error: use of undefined value here causes illegal behavior
6363// :165:30: error: use of undefined value here causes illegal behavior6357// :159:30: error: use of undefined value here causes illegal behavior
6364// :165:30: error: use of undefined value here causes illegal behavior6358// :159:30: error: use of undefined value here causes illegal behavior
6365// :165:30: note: when computing vector element at index '1'6359// :159:30: note: when computing vector element at index '1'
6366// :165:30: error: use of undefined value here causes illegal behavior6360// :159:30: error: use of undefined value here causes illegal behavior
6367// :165:30: note: when computing vector element at index '1'6361// :159:30: note: when computing vector element at index '1'
6368// :165:30: error: use of undefined value here causes illegal behavior6362// :159:30: error: use of undefined value here causes illegal behavior
6369// :165:30: note: when computing vector element at index '1'6363// :159:30: note: when computing vector element at index '1'
6370// :165:30: error: use of undefined value here causes illegal behavior6364// :159:30: error: use of undefined value here causes illegal behavior
6371// :165:30: note: when computing vector element at index '1'6365// :159:30: note: when computing vector element at index '1'
6372// :165:30: error: use of undefined value here causes illegal behavior6366// :159:30: error: use of undefined value here causes illegal behavior
6373// :165:30: note: when computing vector element at index '0'6367// :159:30: note: when computing vector element at index '0'
6374// :165:30: error: use of undefined value here causes illegal behavior6368// :159:30: error: use of undefined value here causes illegal behavior
6375// :165:30: note: when computing vector element at index '0'6369// :159:30: note: when computing vector element at index '0'
6376// :165:30: error: use of undefined value here causes illegal behavior6370// :159:30: error: use of undefined value here causes illegal behavior
6377// :165:30: note: when computing vector element at index '0'6371// :159:30: note: when computing vector element at index '0'
6378// :165:30: error: use of undefined value here causes illegal behavior6372// :159:30: error: use of undefined value here causes illegal behavior
6379// :165:30: note: when computing vector element at index '0'6373// :159:30: note: when computing vector element at index '0'
6380// :169:30: error: use of undefined value here causes illegal behavior6374// :163:30: error: use of undefined value here causes illegal behavior
6381// :169:30: error: use of undefined value here causes illegal behavior6375// :163:30: error: use of undefined value here causes illegal behavior
6382// :169:30: error: use of undefined value here causes illegal behavior6376// :163:30: error: use of undefined value here causes illegal behavior
6383// :169:30: error: use of undefined value here causes illegal behavior6377// :163:30: error: use of undefined value here causes illegal behavior
6384// :169:30: error: use of undefined value here causes illegal behavior6378// :163:30: error: use of undefined value here causes illegal behavior
6385// :169:30: error: use of undefined value here causes illegal behavior6379// :163:30: error: use of undefined value here causes illegal behavior
6386// :169:30: error: use of undefined value here causes illegal behavior6380// :163:30: error: use of undefined value here causes illegal behavior
6387// :169:30: note: when computing vector element at index '1'6381// :163:30: note: when computing vector element at index '1'
6388// :169:30: error: use of undefined value here causes illegal behavior6382// :163:30: error: use of undefined value here causes illegal behavior
6389// :169:30: note: when computing vector element at index '1'6383// :163:30: note: when computing vector element at index '1'
6390// :169:30: error: use of undefined value here causes illegal behavior6384// :163:30: error: use of undefined value here causes illegal behavior
6391// :169:30: note: when computing vector element at index '1'6385// :163:30: note: when computing vector element at index '1'
6392// :169:30: error: use of undefined value here causes illegal behavior6386// :163:30: error: use of undefined value here causes illegal behavior
6393// :169:30: note: when computing vector element at index '1'6387// :163:30: note: when computing vector element at index '1'
6394// :169:30: error: use of undefined value here causes illegal behavior6388// :163:30: error: use of undefined value here causes illegal behavior
6395// :169:30: note: when computing vector element at index '0'6389// :163:30: note: when computing vector element at index '0'
6396// :169:30: error: use of undefined value here causes illegal behavior6390// :163:30: error: use of undefined value here causes illegal behavior
6397// :169:30: note: when computing vector element at index '0'6391// :163:30: note: when computing vector element at index '0'
6398// :169:30: error: use of undefined value here causes illegal behavior6392// :163:30: error: use of undefined value here causes illegal behavior
6399// :169:30: note: when computing vector element at index '0'6393// :163:30: note: when computing vector element at index '0'
6400// :169:30: error: use of undefined value here causes illegal behavior6394// :163:30: error: use of undefined value here causes illegal behavior
6401// :169:30: note: when computing vector element at index '0'6395// :163:30: note: when computing vector element at index '0'
6402// :169:30: error: use of undefined value here causes illegal behavior6396// :163:30: error: use of undefined value here causes illegal behavior
6403// :169:30: error: use of undefined value here causes illegal behavior6397// :163:30: error: use of undefined value here causes illegal behavior
6404// :169:30: error: use of undefined value here causes illegal behavior6398// :163:30: error: use of undefined value here causes illegal behavior
6405// :169:30: error: use of undefined value here causes illegal behavior6399// :163:30: error: use of undefined value here causes illegal behavior
6406// :169:30: error: use of undefined value here causes illegal behavior6400// :163:30: error: use of undefined value here causes illegal behavior
6407// :169:30: error: use of undefined value here causes illegal behavior6401// :163:30: error: use of undefined value here causes illegal behavior
6408// :169:30: error: use of undefined value here causes illegal behavior6402// :163:30: error: use of undefined value here causes illegal behavior
6409// :169:30: note: when computing vector element at index '1'6403// :163:30: note: when computing vector element at index '1'
6410// :169:30: error: use of undefined value here causes illegal behavior6404// :163:30: error: use of undefined value here causes illegal behavior
6411// :169:30: note: when computing vector element at index '1'6405// :163:30: note: when computing vector element at index '1'
6412// :169:30: error: use of undefined value here causes illegal behavior6406// :163:30: error: use of undefined value here causes illegal behavior
6413// :169:30: note: when computing vector element at index '1'6407// :163:30: note: when computing vector element at index '1'
6414// :169:30: error: use of undefined value here causes illegal behavior6408// :163:30: error: use of undefined value here causes illegal behavior
6415// :169:30: note: when computing vector element at index '1'6409// :163:30: note: when computing vector element at index '1'
6416// :169:30: error: use of undefined value here causes illegal behavior6410// :163:30: error: use of undefined value here causes illegal behavior
6417// :169:30: note: when computing vector element at index '0'6411// :163:30: note: when computing vector element at index '0'
6418// :169:30: error: use of undefined value here causes illegal behavior6412// :163:30: error: use of undefined value here causes illegal behavior
6419// :169:30: note: when computing vector element at index '0'6413// :163:30: note: when computing vector element at index '0'
6420// :169:30: error: use of undefined value here causes illegal behavior6414// :163:30: error: use of undefined value here causes illegal behavior
6421// :169:30: note: when computing vector element at index '0'6415// :163:30: note: when computing vector element at index '0'
6422// :169:30: error: use of undefined value here causes illegal behavior6416// :163:30: error: use of undefined value here causes illegal behavior
6423// :169:30: note: when computing vector element at index '0'6417// :163:30: note: when computing vector element at index '0'
6424// :169:30: error: use of undefined value here causes illegal behavior6418// :163:30: error: use of undefined value here causes illegal behavior
6425// :169:30: error: use of undefined value here causes illegal behavior6419// :163:30: error: use of undefined value here causes illegal behavior
6426// :169:30: error: use of undefined value here causes illegal behavior6420// :163:30: error: use of undefined value here causes illegal behavior
6427// :169:30: error: use of undefined value here causes illegal behavior6421// :163:30: error: use of undefined value here causes illegal behavior
6428// :169:30: error: use of undefined value here causes illegal behavior6422// :163:30: error: use of undefined value here causes illegal behavior
6429// :169:30: error: use of undefined value here causes illegal behavior6423// :163:30: error: use of undefined value here causes illegal behavior
6430// :169:30: error: use of undefined value here causes illegal behavior6424// :163:30: error: use of undefined value here causes illegal behavior
6431// :169:30: note: when computing vector element at index '1'6425// :163:30: note: when computing vector element at index '1'
6432// :169:30: error: use of undefined value here causes illegal behavior6426// :163:30: error: use of undefined value here causes illegal behavior
6433// :169:30: note: when computing vector element at index '1'6427// :163:30: note: when computing vector element at index '1'
6434// :169:30: error: use of undefined value here causes illegal behavior6428// :163:30: error: use of undefined value here causes illegal behavior
6435// :169:30: note: when computing vector element at index '1'6429// :163:30: note: when computing vector element at index '1'
6436// :169:30: error: use of undefined value here causes illegal behavior6430// :163:30: error: use of undefined value here causes illegal behavior
6437// :169:30: note: when computing vector element at index '1'6431// :163:30: note: when computing vector element at index '1'
6438// :169:30: error: use of undefined value here causes illegal behavior6432// :163:30: error: use of undefined value here causes illegal behavior
6439// :169:30: note: when computing vector element at index '0'6433// :163:30: note: when computing vector element at index '0'
6440// :169:30: error: use of undefined value here causes illegal behavior6434// :163:30: error: use of undefined value here causes illegal behavior
6441// :169:30: note: when computing vector element at index '0'6435// :163:30: note: when computing vector element at index '0'
6442// :169:30: error: use of undefined value here causes illegal behavior6436// :163:30: error: use of undefined value here causes illegal behavior
6443// :169:30: note: when computing vector element at index '0'6437// :163:30: note: when computing vector element at index '0'
6444// :169:30: error: use of undefined value here causes illegal behavior6438// :163:30: error: use of undefined value here causes illegal behavior
6445// :169:30: note: when computing vector element at index '0'6439// :163:30: note: when computing vector element at index '0'
6446// :169:30: error: use of undefined value here causes illegal behavior6440// :163:30: error: use of undefined value here causes illegal behavior
6447// :169:30: error: use of undefined value here causes illegal behavior6441// :163:30: error: use of undefined value here causes illegal behavior
6448// :169:30: error: use of undefined value here causes illegal behavior6442// :163:30: error: use of undefined value here causes illegal behavior
6449// :169:30: error: use of undefined value here causes illegal behavior6443// :163:30: error: use of undefined value here causes illegal behavior
6450// :169:30: error: use of undefined value here causes illegal behavior6444// :163:30: error: use of undefined value here causes illegal behavior
6451// :169:30: error: use of undefined value here causes illegal behavior6445// :163:30: error: use of undefined value here causes illegal behavior
6452// :169:30: error: use of undefined value here causes illegal behavior6446// :163:30: error: use of undefined value here causes illegal behavior
6453// :169:30: note: when computing vector element at index '1'6447// :163:30: note: when computing vector element at index '1'
6454// :169:30: error: use of undefined value here causes illegal behavior6448// :163:30: error: use of undefined value here causes illegal behavior
6455// :169:30: note: when computing vector element at index '1'6449// :163:30: note: when computing vector element at index '1'
6456// :169:30: error: use of undefined value here causes illegal behavior6450// :163:30: error: use of undefined value here causes illegal behavior
6457// :169:30: note: when computing vector element at index '1'6451// :163:30: note: when computing vector element at index '1'
6458// :169:30: error: use of undefined value here causes illegal behavior6452// :163:30: error: use of undefined value here causes illegal behavior
6459// :169:30: note: when computing vector element at index '1'6453// :163:30: note: when computing vector element at index '1'
6460// :169:30: error: use of undefined value here causes illegal behavior6454// :163:30: error: use of undefined value here causes illegal behavior
6461// :169:30: note: when computing vector element at index '0'6455// :163:30: note: when computing vector element at index '0'
6462// :169:30: error: use of undefined value here causes illegal behavior6456// :163:30: error: use of undefined value here causes illegal behavior
6463// :169:30: note: when computing vector element at index '0'6457// :163:30: note: when computing vector element at index '0'
6464// :169:30: error: use of undefined value here causes illegal behavior6458// :163:30: error: use of undefined value here causes illegal behavior
6465// :169:30: note: when computing vector element at index '0'6459// :163:30: note: when computing vector element at index '0'
6466// :169:30: error: use of undefined value here causes illegal behavior6460// :163:30: error: use of undefined value here causes illegal behavior
6467// :169:30: note: when computing vector element at index '0'6461// :163:30: note: when computing vector element at index '0'
6468// :169:30: error: use of undefined value here causes illegal behavior6462// :163:30: error: use of undefined value here causes illegal behavior
6469// :169:30: error: use of undefined value here causes illegal behavior6463// :163:30: error: use of undefined value here causes illegal behavior
6470// :169:30: error: use of undefined value here causes illegal behavior6464// :163:30: error: use of undefined value here causes illegal behavior
6471// :169:30: error: use of undefined value here causes illegal behavior6465// :163:30: error: use of undefined value here causes illegal behavior
6472// :169:30: error: use of undefined value here causes illegal behavior6466// :163:30: error: use of undefined value here causes illegal behavior
6473// :169:30: error: use of undefined value here causes illegal behavior6467// :163:30: error: use of undefined value here causes illegal behavior
6474// :169:30: error: use of undefined value here causes illegal behavior6468// :163:30: error: use of undefined value here causes illegal behavior
6475// :169:30: note: when computing vector element at index '1'6469// :163:30: note: when computing vector element at index '1'
6476// :169:30: error: use of undefined value here causes illegal behavior6470// :163:30: error: use of undefined value here causes illegal behavior
6477// :169:30: note: when computing vector element at index '1'6471// :163:30: note: when computing vector element at index '1'
6478// :169:30: error: use of undefined value here causes illegal behavior6472// :163:30: error: use of undefined value here causes illegal behavior
6479// :169:30: note: when computing vector element at index '1'6473// :163:30: note: when computing vector element at index '1'
6480// :169:30: error: use of undefined value here causes illegal behavior6474// :163:30: error: use of undefined value here causes illegal behavior
6481// :169:30: note: when computing vector element at index '1'6475// :163:30: note: when computing vector element at index '1'
6482// :169:30: error: use of undefined value here causes illegal behavior6476// :163:30: error: use of undefined value here causes illegal behavior
6483// :169:30: note: when computing vector element at index '0'6477// :163:30: note: when computing vector element at index '0'
6484// :169:30: error: use of undefined value here causes illegal behavior6478// :163:30: error: use of undefined value here causes illegal behavior
6485// :169:30: note: when computing vector element at index '0'6479// :163:30: note: when computing vector element at index '0'
6486// :169:30: error: use of undefined value here causes illegal behavior6480// :163:30: error: use of undefined value here causes illegal behavior
6487// :169:30: note: when computing vector element at index '0'6481// :163:30: note: when computing vector element at index '0'
6488// :169:30: error: use of undefined value here causes illegal behavior6482// :163:30: error: use of undefined value here causes illegal behavior
6489// :169:30: note: when computing vector element at index '0'6483// :163:30: note: when computing vector element at index '0'
6490// :169:30: error: use of undefined value here causes illegal behavior6484// :163:30: error: use of undefined value here causes illegal behavior
6491// :169:30: error: use of undefined value here causes illegal behavior6485// :163:30: error: use of undefined value here causes illegal behavior
6492// :169:30: error: use of undefined value here causes illegal behavior6486// :163:30: error: use of undefined value here causes illegal behavior
6493// :169:30: error: use of undefined value here causes illegal behavior6487// :163:30: error: use of undefined value here causes illegal behavior
6494// :169:30: error: use of undefined value here causes illegal behavior6488// :163:30: error: use of undefined value here causes illegal behavior
6495// :169:30: error: use of undefined value here causes illegal behavior6489// :163:30: error: use of undefined value here causes illegal behavior
6496// :169:30: error: use of undefined value here causes illegal behavior6490// :163:30: error: use of undefined value here causes illegal behavior
6497// :169:30: note: when computing vector element at index '1'6491// :163:30: note: when computing vector element at index '1'
6498// :169:30: error: use of undefined value here causes illegal behavior6492// :163:30: error: use of undefined value here causes illegal behavior
6499// :169:30: note: when computing vector element at index '1'6493// :163:30: note: when computing vector element at index '1'
6500// :169:30: error: use of undefined value here causes illegal behavior6494// :163:30: error: use of undefined value here causes illegal behavior
6501// :169:30: note: when computing vector element at index '1'6495// :163:30: note: when computing vector element at index '1'
6502// :169:30: error: use of undefined value here causes illegal behavior6496// :163:30: error: use of undefined value here causes illegal behavior
6503// :169:30: note: when computing vector element at index '1'6497// :163:30: note: when computing vector element at index '1'
6504// :169:30: error: use of undefined value here causes illegal behavior6498// :163:30: error: use of undefined value here causes illegal behavior
6505// :169:30: note: when computing vector element at index '0'6499// :163:30: note: when computing vector element at index '0'
6506// :169:30: error: use of undefined value here causes illegal behavior6500// :163:30: error: use of undefined value here causes illegal behavior
6507// :169:30: note: when computing vector element at index '0'6501// :163:30: note: when computing vector element at index '0'
6508// :169:30: error: use of undefined value here causes illegal behavior6502// :163:30: error: use of undefined value here causes illegal behavior
6509// :169:30: note: when computing vector element at index '0'6503// :163:30: note: when computing vector element at index '0'
6510// :169:30: error: use of undefined value here causes illegal behavior6504// :163:30: error: use of undefined value here causes illegal behavior
6511// :169:30: note: when computing vector element at index '0'6505// :163:30: note: when computing vector element at index '0'
6512// :169:30: error: use of undefined value here causes illegal behavior6506// :163:30: error: use of undefined value here causes illegal behavior
6513// :169:30: error: use of undefined value here causes illegal behavior6507// :163:30: error: use of undefined value here causes illegal behavior
6514// :169:30: error: use of undefined value here causes illegal behavior6508// :163:30: error: use of undefined value here causes illegal behavior
6515// :169:30: error: use of undefined value here causes illegal behavior6509// :163:30: error: use of undefined value here causes illegal behavior
6516// :169:30: error: use of undefined value here causes illegal behavior6510// :163:30: error: use of undefined value here causes illegal behavior
6517// :169:30: error: use of undefined value here causes illegal behavior6511// :163:30: error: use of undefined value here causes illegal behavior
6518// :169:30: error: use of undefined value here causes illegal behavior6512// :163:30: error: use of undefined value here causes illegal behavior
6519// :169:30: note: when computing vector element at index '1'6513// :163:30: note: when computing vector element at index '1'
6520// :169:30: error: use of undefined value here causes illegal behavior6514// :163:30: error: use of undefined value here causes illegal behavior
6521// :169:30: note: when computing vector element at index '1'6515// :163:30: note: when computing vector element at index '1'
6522// :169:30: error: use of undefined value here causes illegal behavior6516// :163:30: error: use of undefined value here causes illegal behavior
6523// :169:30: note: when computing vector element at index '1'6517// :163:30: note: when computing vector element at index '1'
6524// :169:30: error: use of undefined value here causes illegal behavior6518// :163:30: error: use of undefined value here causes illegal behavior
6525// :169:30: note: when computing vector element at index '1'6519// :163:30: note: when computing vector element at index '1'
6526// :169:30: error: use of undefined value here causes illegal behavior6520// :163:30: error: use of undefined value here causes illegal behavior
6527// :169:30: note: when computing vector element at index '0'6521// :163:30: note: when computing vector element at index '0'
6528// :169:30: error: use of undefined value here causes illegal behavior6522// :163:30: error: use of undefined value here causes illegal behavior
6529// :169:30: note: when computing vector element at index '0'6523// :163:30: note: when computing vector element at index '0'
6530// :169:30: error: use of undefined value here causes illegal behavior6524// :163:30: error: use of undefined value here causes illegal behavior
6531// :169:30: note: when computing vector element at index '0'6525// :163:30: note: when computing vector element at index '0'
6532// :169:30: error: use of undefined value here causes illegal behavior6526// :163:30: error: use of undefined value here causes illegal behavior
6533// :169:30: note: when computing vector element at index '0'6527// :163:30: note: when computing vector element at index '0'
6534// :169:30: error: use of undefined value here causes illegal behavior6528// :163:30: error: use of undefined value here causes illegal behavior
6535// :169:30: error: use of undefined value here causes illegal behavior6529// :163:30: error: use of undefined value here causes illegal behavior
6536// :169:30: error: use of undefined value here causes illegal behavior6530// :163:30: error: use of undefined value here causes illegal behavior
6537// :169:30: error: use of undefined value here causes illegal behavior6531// :163:30: error: use of undefined value here causes illegal behavior
6538// :169:30: error: use of undefined value here causes illegal behavior6532// :163:30: error: use of undefined value here causes illegal behavior
6539// :169:30: error: use of undefined value here causes illegal behavior6533// :163:30: error: use of undefined value here causes illegal behavior
6540// :169:30: error: use of undefined value here causes illegal behavior6534// :163:30: error: use of undefined value here causes illegal behavior
6541// :169:30: note: when computing vector element at index '1'6535// :163:30: note: when computing vector element at index '1'
6542// :169:30: error: use of undefined value here causes illegal behavior6536// :163:30: error: use of undefined value here causes illegal behavior
6543// :169:30: note: when computing vector element at index '1'6537// :163:30: note: when computing vector element at index '1'
6544// :169:30: error: use of undefined value here causes illegal behavior6538// :163:30: error: use of undefined value here causes illegal behavior
6545// :169:30: note: when computing vector element at index '1'6539// :163:30: note: when computing vector element at index '1'
6546// :169:30: error: use of undefined value here causes illegal behavior6540// :163:30: error: use of undefined value here causes illegal behavior
6547// :169:30: note: when computing vector element at index '1'6541// :163:30: note: when computing vector element at index '1'
6548// :169:30: error: use of undefined value here causes illegal behavior6542// :163:30: error: use of undefined value here causes illegal behavior
6549// :169:30: note: when computing vector element at index '0'6543// :163:30: note: when computing vector element at index '0'
6550// :169:30: error: use of undefined value here causes illegal behavior6544// :163:30: error: use of undefined value here causes illegal behavior
6551// :169:30: note: when computing vector element at index '0'6545// :163:30: note: when computing vector element at index '0'
6552// :169:30: error: use of undefined value here causes illegal behavior6546// :163:30: error: use of undefined value here causes illegal behavior
6553// :169:30: note: when computing vector element at index '0'6547// :163:30: note: when computing vector element at index '0'
6554// :169:30: error: use of undefined value here causes illegal behavior6548// :163:30: error: use of undefined value here causes illegal behavior
6555// :169:30: note: when computing vector element at index '0'6549// :163:30: note: when computing vector element at index '0'
6556// :169:30: error: use of undefined value here causes illegal behavior6550// :163:30: error: use of undefined value here causes illegal behavior
6557// :169:30: error: use of undefined value here causes illegal behavior6551// :163:30: error: use of undefined value here causes illegal behavior
6558// :169:30: error: use of undefined value here causes illegal behavior6552// :163:30: error: use of undefined value here causes illegal behavior
6559// :169:30: error: use of undefined value here causes illegal behavior6553// :163:30: error: use of undefined value here causes illegal behavior
6560// :169:30: error: use of undefined value here causes illegal behavior6554// :163:30: error: use of undefined value here causes illegal behavior
6561// :169:30: error: use of undefined value here causes illegal behavior6555// :163:30: error: use of undefined value here causes illegal behavior
6562// :169:30: error: use of undefined value here causes illegal behavior6556// :163:30: error: use of undefined value here causes illegal behavior
6563// :169:30: note: when computing vector element at index '1'6557// :163:30: note: when computing vector element at index '1'
6564// :169:30: error: use of undefined value here causes illegal behavior6558// :163:30: error: use of undefined value here causes illegal behavior
6565// :169:30: note: when computing vector element at index '1'6559// :163:30: note: when computing vector element at index '1'
6566// :169:30: error: use of undefined value here causes illegal behavior6560// :163:30: error: use of undefined value here causes illegal behavior
6567// :169:30: note: when computing vector element at index '1'6561// :163:30: note: when computing vector element at index '1'
6568// :169:30: error: use of undefined value here causes illegal behavior6562// :163:30: error: use of undefined value here causes illegal behavior
6569// :169:30: note: when computing vector element at index '1'6563// :163:30: note: when computing vector element at index '1'
6570// :169:30: error: use of undefined value here causes illegal behavior6564// :163:30: error: use of undefined value here causes illegal behavior
6571// :169:30: note: when computing vector element at index '0'6565// :163:30: note: when computing vector element at index '0'
6572// :169:30: error: use of undefined value here causes illegal behavior6566// :163:30: error: use of undefined value here causes illegal behavior
6573// :169:30: note: when computing vector element at index '0'6567// :163:30: note: when computing vector element at index '0'
6574// :169:30: error: use of undefined value here causes illegal behavior6568// :163:30: error: use of undefined value here causes illegal behavior
6575// :169:30: note: when computing vector element at index '0'6569// :163:30: note: when computing vector element at index '0'
6576// :169:30: error: use of undefined value here causes illegal behavior6570// :163:30: error: use of undefined value here causes illegal behavior
6577// :169:30: note: when computing vector element at index '0'6571// :163:30: note: when computing vector element at index '0'
6578// :169:30: error: use of undefined value here causes illegal behavior6572// :163:30: error: use of undefined value here causes illegal behavior
6579// :169:30: error: use of undefined value here causes illegal behavior6573// :163:30: error: use of undefined value here causes illegal behavior
6580// :169:30: error: use of undefined value here causes illegal behavior6574// :163:30: error: use of undefined value here causes illegal behavior
6581// :169:30: error: use of undefined value here causes illegal behavior6575// :163:30: error: use of undefined value here causes illegal behavior
6582// :169:30: error: use of undefined value here causes illegal behavior6576// :163:30: error: use of undefined value here causes illegal behavior
6583// :169:30: error: use of undefined value here causes illegal behavior6577// :163:30: error: use of undefined value here causes illegal behavior
6584// :169:30: error: use of undefined value here causes illegal behavior6578// :163:30: error: use of undefined value here causes illegal behavior
6585// :169:30: note: when computing vector element at index '1'6579// :163:30: note: when computing vector element at index '1'
6586// :169:30: error: use of undefined value here causes illegal behavior6580// :163:30: error: use of undefined value here causes illegal behavior
6587// :169:30: note: when computing vector element at index '1'6581// :163:30: note: when computing vector element at index '1'
6588// :169:30: error: use of undefined value here causes illegal behavior6582// :163:30: error: use of undefined value here causes illegal behavior
6589// :169:30: note: when computing vector element at index '1'6583// :163:30: note: when computing vector element at index '1'
6590// :169:30: error: use of undefined value here causes illegal behavior6584// :163:30: error: use of undefined value here causes illegal behavior
6591// :169:30: note: when computing vector element at index '1'6585// :163:30: note: when computing vector element at index '1'
6592// :169:30: error: use of undefined value here causes illegal behavior6586// :163:30: error: use of undefined value here causes illegal behavior
6593// :169:30: note: when computing vector element at index '0'6587// :163:30: note: when computing vector element at index '0'
6594// :169:30: error: use of undefined value here causes illegal behavior6588// :163:30: error: use of undefined value here causes illegal behavior
6595// :169:30: note: when computing vector element at index '0'6589// :163:30: note: when computing vector element at index '0'
6596// :169:30: error: use of undefined value here causes illegal behavior6590// :163:30: error: use of undefined value here causes illegal behavior
6597// :169:30: note: when computing vector element at index '0'6591// :163:30: note: when computing vector element at index '0'
6598// :169:30: error: use of undefined value here causes illegal behavior6592// :163:30: error: use of undefined value here causes illegal behavior
6599// :169:30: note: when computing vector element at index '0'6593// :163:30: note: when computing vector element at index '0'
6600// :169:30: error: use of undefined value here causes illegal behavior6594// :163:30: error: use of undefined value here causes illegal behavior
6601// :169:30: error: use of undefined value here causes illegal behavior6595// :163:30: error: use of undefined value here causes illegal behavior
6602// :169:30: error: use of undefined value here causes illegal behavior6596// :163:30: error: use of undefined value here causes illegal behavior
6603// :169:30: error: use of undefined value here causes illegal behavior6597// :163:30: error: use of undefined value here causes illegal behavior
6604// :169:30: error: use of undefined value here causes illegal behavior6598// :163:30: error: use of undefined value here causes illegal behavior
6605// :169:30: error: use of undefined value here causes illegal behavior6599// :163:30: error: use of undefined value here causes illegal behavior
6606// :169:30: error: use of undefined value here causes illegal behavior6600// :163:30: error: use of undefined value here causes illegal behavior
6607// :169:30: note: when computing vector element at index '1'6601// :163:30: note: when computing vector element at index '1'
6608// :169:30: error: use of undefined value here causes illegal behavior6602// :163:30: error: use of undefined value here causes illegal behavior
6609// :169:30: note: when computing vector element at index '1'6603// :163:30: note: when computing vector element at index '1'
6610// :169:30: error: use of undefined value here causes illegal behavior6604// :163:30: error: use of undefined value here causes illegal behavior
6611// :169:30: note: when computing vector element at index '1'6605// :163:30: note: when computing vector element at index '1'
6612// :169:30: error: use of undefined value here causes illegal behavior6606// :163:30: error: use of undefined value here causes illegal behavior
6613// :169:30: note: when computing vector element at index '1'6607// :163:30: note: when computing vector element at index '1'
6614// :169:30: error: use of undefined value here causes illegal behavior6608// :163:30: error: use of undefined value here causes illegal behavior
6615// :169:30: note: when computing vector element at index '0'6609// :163:30: note: when computing vector element at index '0'
6616// :169:30: error: use of undefined value here causes illegal behavior6610// :163:30: error: use of undefined value here causes illegal behavior
6617// :169:30: note: when computing vector element at index '0'6611// :163:30: note: when computing vector element at index '0'
6618// :169:30: error: use of undefined value here causes illegal behavior6612// :163:30: error: use of undefined value here causes illegal behavior
6619// :169:30: note: when computing vector element at index '0'6613// :163:30: note: when computing vector element at index '0'
6620// :169:30: error: use of undefined value here causes illegal behavior6614// :163:30: error: use of undefined value here causes illegal behavior
6621// :169:30: note: when computing vector element at index '0'6615// :163:30: note: when computing vector element at index '0'
6622// :173:25: error: use of undefined value here causes illegal behavior6616// :167:25: error: use of undefined value here causes illegal behavior
6623// :173:25: error: use of undefined value here causes illegal behavior6617// :167:25: error: use of undefined value here causes illegal behavior
6624// :173:25: error: use of undefined value here causes illegal behavior6618// :167:25: error: use of undefined value here causes illegal behavior
6625// :173:25: error: use of undefined value here causes illegal behavior6619// :167:25: error: use of undefined value here causes illegal behavior
6626// :173:25: error: use of undefined value here causes illegal behavior6620// :167:25: error: use of undefined value here causes illegal behavior
6627// :173:25: error: use of undefined value here causes illegal behavior6621// :167:25: error: use of undefined value here causes illegal behavior
6628// :173:25: error: use of undefined value here causes illegal behavior6622// :167:25: error: use of undefined value here causes illegal behavior
6629// :173:25: note: when computing vector element at index '1'6623// :167:25: note: when computing vector element at index '1'
6630// :173:25: error: use of undefined value here causes illegal behavior6624// :167:25: error: use of undefined value here causes illegal behavior
6631// :173:25: note: when computing vector element at index '1'6625// :167:25: note: when computing vector element at index '1'
6632// :173:25: error: use of undefined value here causes illegal behavior6626// :167:25: error: use of undefined value here causes illegal behavior
6633// :173:25: note: when computing vector element at index '1'6627// :167:25: note: when computing vector element at index '1'
6634// :173:25: error: use of undefined value here causes illegal behavior6628// :167:25: error: use of undefined value here causes illegal behavior
6635// :173:25: note: when computing vector element at index '1'6629// :167:25: note: when computing vector element at index '1'
6636// :173:25: error: use of undefined value here causes illegal behavior6630// :167:25: error: use of undefined value here causes illegal behavior
6637// :173:25: note: when computing vector element at index '0'6631// :167:25: note: when computing vector element at index '0'
6638// :173:25: error: use of undefined value here causes illegal behavior6632// :167:25: error: use of undefined value here causes illegal behavior
6639// :173:25: note: when computing vector element at index '0'6633// :167:25: note: when computing vector element at index '0'
6640// :173:25: error: use of undefined value here causes illegal behavior6634// :167:25: error: use of undefined value here causes illegal behavior
6641// :173:25: note: when computing vector element at index '0'6635// :167:25: note: when computing vector element at index '0'
6642// :173:25: error: use of undefined value here causes illegal behavior6636// :167:25: error: use of undefined value here causes illegal behavior
6643// :173:25: note: when computing vector element at index '0'6637// :167:25: note: when computing vector element at index '0'
6644// :173:25: error: use of undefined value here causes illegal behavior6638// :167:25: error: use of undefined value here causes illegal behavior
6645// :173:25: error: use of undefined value here causes illegal behavior6639// :167:25: error: use of undefined value here causes illegal behavior
6646// :173:25: error: use of undefined value here causes illegal behavior6640// :167:25: error: use of undefined value here causes illegal behavior
6647// :173:25: error: use of undefined value here causes illegal behavior6641// :167:25: error: use of undefined value here causes illegal behavior
6648// :173:25: error: use of undefined value here causes illegal behavior6642// :167:25: error: use of undefined value here causes illegal behavior
6649// :173:25: error: use of undefined value here causes illegal behavior6643// :167:25: error: use of undefined value here causes illegal behavior
6650// :173:25: error: use of undefined value here causes illegal behavior6644// :167:25: error: use of undefined value here causes illegal behavior
6651// :173:25: note: when computing vector element at index '1'6645// :167:25: note: when computing vector element at index '1'
6652// :173:25: error: use of undefined value here causes illegal behavior6646// :167:25: error: use of undefined value here causes illegal behavior
6653// :173:25: note: when computing vector element at index '1'6647// :167:25: note: when computing vector element at index '1'
6654// :173:25: error: use of undefined value here causes illegal behavior6648// :167:25: error: use of undefined value here causes illegal behavior
6655// :173:25: note: when computing vector element at index '1'6649// :167:25: note: when computing vector element at index '1'
6656// :173:25: error: use of undefined value here causes illegal behavior6650// :167:25: error: use of undefined value here causes illegal behavior
6657// :173:25: note: when computing vector element at index '1'6651// :167:25: note: when computing vector element at index '1'
6658// :173:25: error: use of undefined value here causes illegal behavior6652// :167:25: error: use of undefined value here causes illegal behavior
6659// :173:25: note: when computing vector element at index '0'6653// :167:25: note: when computing vector element at index '0'
6660// :173:25: error: use of undefined value here causes illegal behavior6654// :167:25: error: use of undefined value here causes illegal behavior
6661// :173:25: note: when computing vector element at index '0'6655// :167:25: note: when computing vector element at index '0'
6662// :173:25: error: use of undefined value here causes illegal behavior6656// :167:25: error: use of undefined value here causes illegal behavior
6663// :173:25: note: when computing vector element at index '0'6657// :167:25: note: when computing vector element at index '0'
6664// :173:25: error: use of undefined value here causes illegal behavior6658// :167:25: error: use of undefined value here causes illegal behavior
6665// :173:25: note: when computing vector element at index '0'6659// :167:25: note: when computing vector element at index '0'
6666// :173:25: error: use of undefined value here causes illegal behavior6660// :167:25: error: use of undefined value here causes illegal behavior
6667// :173:25: error: use of undefined value here causes illegal behavior6661// :167:25: error: use of undefined value here causes illegal behavior
6668// :173:25: error: use of undefined value here causes illegal behavior6662// :167:25: error: use of undefined value here causes illegal behavior
6669// :173:25: error: use of undefined value here causes illegal behavior6663// :167:25: error: use of undefined value here causes illegal behavior
6670// :173:25: error: use of undefined value here causes illegal behavior6664// :167:25: error: use of undefined value here causes illegal behavior
6671// :173:25: error: use of undefined value here causes illegal behavior6665// :167:25: error: use of undefined value here causes illegal behavior
6672// :173:25: error: use of undefined value here causes illegal behavior6666// :167:25: error: use of undefined value here causes illegal behavior
6673// :173:25: note: when computing vector element at index '1'6667// :167:25: note: when computing vector element at index '1'
6674// :173:25: error: use of undefined value here causes illegal behavior6668// :167:25: error: use of undefined value here causes illegal behavior
6675// :173:25: note: when computing vector element at index '1'6669// :167:25: note: when computing vector element at index '1'
6676// :173:25: error: use of undefined value here causes illegal behavior6670// :167:25: error: use of undefined value here causes illegal behavior
6677// :173:25: note: when computing vector element at index '1'6671// :167:25: note: when computing vector element at index '1'
6678// :173:25: error: use of undefined value here causes illegal behavior6672// :167:25: error: use of undefined value here causes illegal behavior
6679// :173:25: note: when computing vector element at index '1'6673// :167:25: note: when computing vector element at index '1'
6680// :173:25: error: use of undefined value here causes illegal behavior6674// :167:25: error: use of undefined value here causes illegal behavior
6681// :173:25: note: when computing vector element at index '0'6675// :167:25: note: when computing vector element at index '0'
6682// :173:25: error: use of undefined value here causes illegal behavior6676// :167:25: error: use of undefined value here causes illegal behavior
6683// :173:25: note: when computing vector element at index '0'6677// :167:25: note: when computing vector element at index '0'
6684// :173:25: error: use of undefined value here causes illegal behavior6678// :167:25: error: use of undefined value here causes illegal behavior
6685// :173:25: note: when computing vector element at index '0'6679// :167:25: note: when computing vector element at index '0'
6686// :173:25: error: use of undefined value here causes illegal behavior6680// :167:25: error: use of undefined value here causes illegal behavior
6687// :173:25: note: when computing vector element at index '0'6681// :167:25: note: when computing vector element at index '0'
6688// :173:25: error: use of undefined value here causes illegal behavior6682// :167:25: error: use of undefined value here causes illegal behavior
6689// :173:25: error: use of undefined value here causes illegal behavior6683// :167:25: error: use of undefined value here causes illegal behavior
6690// :173:25: error: use of undefined value here causes illegal behavior6684// :167:25: error: use of undefined value here causes illegal behavior
6691// :173:25: error: use of undefined value here causes illegal behavior6685// :167:25: error: use of undefined value here causes illegal behavior
6692// :173:25: error: use of undefined value here causes illegal behavior6686// :167:25: error: use of undefined value here causes illegal behavior
6693// :173:25: error: use of undefined value here causes illegal behavior6687// :167:25: error: use of undefined value here causes illegal behavior
6694// :173:25: error: use of undefined value here causes illegal behavior6688// :167:25: error: use of undefined value here causes illegal behavior
6695// :173:25: note: when computing vector element at index '1'6689// :167:25: note: when computing vector element at index '1'
6696// :173:25: error: use of undefined value here causes illegal behavior6690// :167:25: error: use of undefined value here causes illegal behavior
6697// :173:25: note: when computing vector element at index '1'6691// :167:25: note: when computing vector element at index '1'
6698// :173:25: error: use of undefined value here causes illegal behavior6692// :167:25: error: use of undefined value here causes illegal behavior
6699// :173:25: note: when computing vector element at index '1'6693// :167:25: note: when computing vector element at index '1'
6700// :173:25: error: use of undefined value here causes illegal behavior6694// :167:25: error: use of undefined value here causes illegal behavior
6701// :173:25: note: when computing vector element at index '1'6695// :167:25: note: when computing vector element at index '1'
6702// :173:25: error: use of undefined value here causes illegal behavior6696// :167:25: error: use of undefined value here causes illegal behavior
6703// :173:25: note: when computing vector element at index '0'6697// :167:25: note: when computing vector element at index '0'
6704// :173:25: error: use of undefined value here causes illegal behavior6698// :167:25: error: use of undefined value here causes illegal behavior
6705// :173:25: note: when computing vector element at index '0'6699// :167:25: note: when computing vector element at index '0'
6706// :173:25: error: use of undefined value here causes illegal behavior6700// :167:25: error: use of undefined value here causes illegal behavior
6707// :173:25: note: when computing vector element at index '0'6701// :167:25: note: when computing vector element at index '0'
6708// :173:25: error: use of undefined value here causes illegal behavior6702// :167:25: error: use of undefined value here causes illegal behavior
6709// :173:25: note: when computing vector element at index '0'6703// :167:25: note: when computing vector element at index '0'
6710// :173:25: error: use of undefined value here causes illegal behavior6704// :167:25: error: use of undefined value here causes illegal behavior
6711// :173:25: error: use of undefined value here causes illegal behavior6705// :167:25: error: use of undefined value here causes illegal behavior
6712// :173:25: error: use of undefined value here causes illegal behavior6706// :167:25: error: use of undefined value here causes illegal behavior
6713// :173:25: error: use of undefined value here causes illegal behavior6707// :167:25: error: use of undefined value here causes illegal behavior
6714// :173:25: error: use of undefined value here causes illegal behavior6708// :167:25: error: use of undefined value here causes illegal behavior
6715// :173:25: error: use of undefined value here causes illegal behavior6709// :167:25: error: use of undefined value here causes illegal behavior
6716// :173:25: error: use of undefined value here causes illegal behavior6710// :167:25: error: use of undefined value here causes illegal behavior
6717// :173:25: note: when computing vector element at index '1'6711// :167:25: note: when computing vector element at index '1'
6718// :173:25: error: use of undefined value here causes illegal behavior6712// :167:25: error: use of undefined value here causes illegal behavior
6719// :173:25: note: when computing vector element at index '1'6713// :167:25: note: when computing vector element at index '1'
6720// :173:25: error: use of undefined value here causes illegal behavior6714// :167:25: error: use of undefined value here causes illegal behavior
6721// :173:25: note: when computing vector element at index '1'6715// :167:25: note: when computing vector element at index '1'
6722// :173:25: error: use of undefined value here causes illegal behavior6716// :167:25: error: use of undefined value here causes illegal behavior
6723// :173:25: note: when computing vector element at index '1'6717// :167:25: note: when computing vector element at index '1'
6724// :173:25: error: use of undefined value here causes illegal behavior6718// :167:25: error: use of undefined value here causes illegal behavior
6725// :173:25: note: when computing vector element at index '0'6719// :167:25: note: when computing vector element at index '0'
6726// :173:25: error: use of undefined value here causes illegal behavior6720// :167:25: error: use of undefined value here causes illegal behavior
6727// :173:25: note: when computing vector element at index '0'6721// :167:25: note: when computing vector element at index '0'
6728// :173:25: error: use of undefined value here causes illegal behavior6722// :167:25: error: use of undefined value here causes illegal behavior
6729// :173:25: note: when computing vector element at index '0'6723// :167:25: note: when computing vector element at index '0'
6730// :173:25: error: use of undefined value here causes illegal behavior6724// :167:25: error: use of undefined value here causes illegal behavior
6731// :173:25: note: when computing vector element at index '0'6725// :167:25: note: when computing vector element at index '0'
6732// :173:25: error: use of undefined value here causes illegal behavior6726// :167:25: error: use of undefined value here causes illegal behavior
6733// :173:25: error: use of undefined value here causes illegal behavior6727// :167:25: error: use of undefined value here causes illegal behavior
6734// :173:25: error: use of undefined value here causes illegal behavior6728// :167:25: error: use of undefined value here causes illegal behavior
6735// :173:25: error: use of undefined value here causes illegal behavior6729// :167:25: error: use of undefined value here causes illegal behavior
6736// :173:25: error: use of undefined value here causes illegal behavior6730// :167:25: error: use of undefined value here causes illegal behavior
6737// :173:25: error: use of undefined value here causes illegal behavior6731// :167:25: error: use of undefined value here causes illegal behavior
6738// :173:25: error: use of undefined value here causes illegal behavior6732// :167:25: error: use of undefined value here causes illegal behavior
6739// :173:25: note: when computing vector element at index '1'6733// :167:25: note: when computing vector element at index '1'
6740// :173:25: error: use of undefined value here causes illegal behavior6734// :167:25: error: use of undefined value here causes illegal behavior
6741// :173:25: note: when computing vector element at index '1'6735// :167:25: note: when computing vector element at index '1'
6742// :173:25: error: use of undefined value here causes illegal behavior6736// :167:25: error: use of undefined value here causes illegal behavior
6743// :173:25: note: when computing vector element at index '1'6737// :167:25: note: when computing vector element at index '1'
6744// :173:25: error: use of undefined value here causes illegal behavior6738// :167:25: error: use of undefined value here causes illegal behavior
6745// :173:25: note: when computing vector element at index '1'6739// :167:25: note: when computing vector element at index '1'
6746// :173:25: error: use of undefined value here causes illegal behavior6740// :167:25: error: use of undefined value here causes illegal behavior
6747// :173:25: note: when computing vector element at index '0'6741// :167:25: note: when computing vector element at index '0'
6748// :173:25: error: use of undefined value here causes illegal behavior6742// :167:25: error: use of undefined value here causes illegal behavior
6749// :173:25: note: when computing vector element at index '0'6743// :167:25: note: when computing vector element at index '0'
6750// :173:25: error: use of undefined value here causes illegal behavior6744// :167:25: error: use of undefined value here causes illegal behavior
6751// :173:25: note: when computing vector element at index '0'6745// :167:25: note: when computing vector element at index '0'
6752// :173:25: error: use of undefined value here causes illegal behavior6746// :167:25: error: use of undefined value here causes illegal behavior
6753// :173:25: note: when computing vector element at index '0'6747// :167:25: note: when computing vector element at index '0'
6754// :173:25: error: use of undefined value here causes illegal behavior6748// :167:25: error: use of undefined value here causes illegal behavior
6755// :173:25: error: use of undefined value here causes illegal behavior6749// :167:25: error: use of undefined value here causes illegal behavior
6756// :173:25: error: use of undefined value here causes illegal behavior6750// :167:25: error: use of undefined value here causes illegal behavior
6757// :173:25: error: use of undefined value here causes illegal behavior6751// :167:25: error: use of undefined value here causes illegal behavior
6758// :173:25: error: use of undefined value here causes illegal behavior6752// :167:25: error: use of undefined value here causes illegal behavior
6759// :173:25: error: use of undefined value here causes illegal behavior6753// :167:25: error: use of undefined value here causes illegal behavior
6760// :173:25: error: use of undefined value here causes illegal behavior6754// :167:25: error: use of undefined value here causes illegal behavior
6761// :173:25: note: when computing vector element at index '1'6755// :167:25: note: when computing vector element at index '1'
6762// :173:25: error: use of undefined value here causes illegal behavior6756// :167:25: error: use of undefined value here causes illegal behavior
6763// :173:25: note: when computing vector element at index '1'6757// :167:25: note: when computing vector element at index '1'
6764// :173:25: error: use of undefined value here causes illegal behavior6758// :167:25: error: use of undefined value here causes illegal behavior
6765// :173:25: note: when computing vector element at index '1'6759// :167:25: note: when computing vector element at index '1'
6766// :173:25: error: use of undefined value here causes illegal behavior6760// :167:25: error: use of undefined value here causes illegal behavior
6767// :173:25: note: when computing vector element at index '1'6761// :167:25: note: when computing vector element at index '1'
6768// :173:25: error: use of undefined value here causes illegal behavior6762// :167:25: error: use of undefined value here causes illegal behavior
6769// :173:25: note: when computing vector element at index '0'6763// :167:25: note: when computing vector element at index '0'
6770// :173:25: error: use of undefined value here causes illegal behavior6764// :167:25: error: use of undefined value here causes illegal behavior
6771// :173:25: note: when computing vector element at index '0'6765// :167:25: note: when computing vector element at index '0'
6772// :173:25: error: use of undefined value here causes illegal behavior6766// :167:25: error: use of undefined value here causes illegal behavior
6773// :173:25: note: when computing vector element at index '0'6767// :167:25: note: when computing vector element at index '0'
6774// :173:25: error: use of undefined value here causes illegal behavior6768// :167:25: error: use of undefined value here causes illegal behavior
6775// :173:25: note: when computing vector element at index '0'6769// :167:25: note: when computing vector element at index '0'
6776// :173:25: error: use of undefined value here causes illegal behavior6770// :167:25: error: use of undefined value here causes illegal behavior
6777// :173:25: error: use of undefined value here causes illegal behavior6771// :167:25: error: use of undefined value here causes illegal behavior
6778// :173:25: error: use of undefined value here causes illegal behavior6772// :167:25: error: use of undefined value here causes illegal behavior
6779// :173:25: error: use of undefined value here causes illegal behavior6773// :167:25: error: use of undefined value here causes illegal behavior
6780// :173:25: error: use of undefined value here causes illegal behavior6774// :167:25: error: use of undefined value here causes illegal behavior
6781// :173:25: error: use of undefined value here causes illegal behavior6775// :167:25: error: use of undefined value here causes illegal behavior
6782// :173:25: error: use of undefined value here causes illegal behavior6776// :167:25: error: use of undefined value here causes illegal behavior
6783// :173:25: note: when computing vector element at index '1'6777// :167:25: note: when computing vector element at index '1'
6784// :173:25: error: use of undefined value here causes illegal behavior6778// :167:25: error: use of undefined value here causes illegal behavior
6785// :173:25: note: when computing vector element at index '1'6779// :167:25: note: when computing vector element at index '1'
6786// :173:25: error: use of undefined value here causes illegal behavior6780// :167:25: error: use of undefined value here causes illegal behavior
6787// :173:25: note: when computing vector element at index '1'6781// :167:25: note: when computing vector element at index '1'
6788// :173:25: error: use of undefined value here causes illegal behavior6782// :167:25: error: use of undefined value here causes illegal behavior
6789// :173:25: note: when computing vector element at index '1'6783// :167:25: note: when computing vector element at index '1'
6790// :173:25: error: use of undefined value here causes illegal behavior6784// :167:25: error: use of undefined value here causes illegal behavior
6791// :173:25: note: when computing vector element at index '0'6785// :167:25: note: when computing vector element at index '0'
6792// :173:25: error: use of undefined value here causes illegal behavior6786// :167:25: error: use of undefined value here causes illegal behavior
6793// :173:25: note: when computing vector element at index '0'6787// :167:25: note: when computing vector element at index '0'
6794// :173:25: error: use of undefined value here causes illegal behavior6788// :167:25: error: use of undefined value here causes illegal behavior
6795// :173:25: note: when computing vector element at index '0'6789// :167:25: note: when computing vector element at index '0'
6796// :173:25: error: use of undefined value here causes illegal behavior6790// :167:25: error: use of undefined value here causes illegal behavior
6797// :173:25: note: when computing vector element at index '0'6791// :167:25: note: when computing vector element at index '0'
6798// :173:25: error: use of undefined value here causes illegal behavior6792// :167:25: error: use of undefined value here causes illegal behavior
6799// :173:25: error: use of undefined value here causes illegal behavior6793// :167:25: error: use of undefined value here causes illegal behavior
6800// :173:25: error: use of undefined value here causes illegal behavior6794// :167:25: error: use of undefined value here causes illegal behavior
6801// :173:25: error: use of undefined value here causes illegal behavior6795// :167:25: error: use of undefined value here causes illegal behavior
6802// :173:25: error: use of undefined value here causes illegal behavior6796// :167:25: error: use of undefined value here causes illegal behavior
6803// :173:25: error: use of undefined value here causes illegal behavior6797// :167:25: error: use of undefined value here causes illegal behavior
6804// :173:25: error: use of undefined value here causes illegal behavior6798// :167:25: error: use of undefined value here causes illegal behavior
6805// :173:25: note: when computing vector element at index '1'6799// :167:25: note: when computing vector element at index '1'
6806// :173:25: error: use of undefined value here causes illegal behavior6800// :167:25: error: use of undefined value here causes illegal behavior
6807// :173:25: note: when computing vector element at index '1'6801// :167:25: note: when computing vector element at index '1'
6808// :173:25: error: use of undefined value here causes illegal behavior6802// :167:25: error: use of undefined value here causes illegal behavior
6809// :173:25: note: when computing vector element at index '1'6803// :167:25: note: when computing vector element at index '1'
6810// :173:25: error: use of undefined value here causes illegal behavior6804// :167:25: error: use of undefined value here causes illegal behavior
6811// :173:25: note: when computing vector element at index '1'6805// :167:25: note: when computing vector element at index '1'
6812// :173:25: error: use of undefined value here causes illegal behavior6806// :167:25: error: use of undefined value here causes illegal behavior
6813// :173:25: note: when computing vector element at index '0'6807// :167:25: note: when computing vector element at index '0'
6814// :173:25: error: use of undefined value here causes illegal behavior6808// :167:25: error: use of undefined value here causes illegal behavior
6815// :173:25: note: when computing vector element at index '0'6809// :167:25: note: when computing vector element at index '0'
6816// :173:25: error: use of undefined value here causes illegal behavior6810// :167:25: error: use of undefined value here causes illegal behavior
6817// :173:25: note: when computing vector element at index '0'6811// :167:25: note: when computing vector element at index '0'
6818// :173:25: error: use of undefined value here causes illegal behavior6812// :167:25: error: use of undefined value here causes illegal behavior
6819// :173:25: note: when computing vector element at index '0'6813// :167:25: note: when computing vector element at index '0'
6820// :173:25: error: use of undefined value here causes illegal behavior6814// :167:25: error: use of undefined value here causes illegal behavior
6821// :173:25: error: use of undefined value here causes illegal behavior6815// :167:25: error: use of undefined value here causes illegal behavior
6822// :173:25: error: use of undefined value here causes illegal behavior6816// :167:25: error: use of undefined value here causes illegal behavior
6823// :173:25: error: use of undefined value here causes illegal behavior6817// :167:25: error: use of undefined value here causes illegal behavior
6824// :173:25: error: use of undefined value here causes illegal behavior6818// :167:25: error: use of undefined value here causes illegal behavior
6825// :173:25: error: use of undefined value here causes illegal behavior6819// :167:25: error: use of undefined value here causes illegal behavior
6826// :173:25: error: use of undefined value here causes illegal behavior6820// :167:25: error: use of undefined value here causes illegal behavior
6827// :173:25: note: when computing vector element at index '1'6821// :167:25: note: when computing vector element at index '1'
6828// :173:25: error: use of undefined value here causes illegal behavior6822// :167:25: error: use of undefined value here causes illegal behavior
6829// :173:25: note: when computing vector element at index '1'6823// :167:25: note: when computing vector element at index '1'
6830// :173:25: error: use of undefined value here causes illegal behavior6824// :167:25: error: use of undefined value here causes illegal behavior
6831// :173:25: note: when computing vector element at index '1'6825// :167:25: note: when computing vector element at index '1'
6832// :173:25: error: use of undefined value here causes illegal behavior6826// :167:25: error: use of undefined value here causes illegal behavior
6833// :173:25: note: when computing vector element at index '1'6827// :167:25: note: when computing vector element at index '1'
6834// :173:25: error: use of undefined value here causes illegal behavior6828// :167:25: error: use of undefined value here causes illegal behavior
6835// :173:25: note: when computing vector element at index '0'6829// :167:25: note: when computing vector element at index '0'
6836// :173:25: error: use of undefined value here causes illegal behavior6830// :167:25: error: use of undefined value here causes illegal behavior
6837// :173:25: note: when computing vector element at index '0'6831// :167:25: note: when computing vector element at index '0'
6838// :173:25: error: use of undefined value here causes illegal behavior6832// :167:25: error: use of undefined value here causes illegal behavior
6839// :173:25: note: when computing vector element at index '0'6833// :167:25: note: when computing vector element at index '0'
6840// :173:25: error: use of undefined value here causes illegal behavior6834// :167:25: error: use of undefined value here causes illegal behavior
6841// :173:25: note: when computing vector element at index '0'6835// :167:25: note: when computing vector element at index '0'
6842// :173:25: error: use of undefined value here causes illegal behavior6836// :167:25: error: use of undefined value here causes illegal behavior
6843// :173:25: error: use of undefined value here causes illegal behavior6837// :167:25: error: use of undefined value here causes illegal behavior
6844// :173:25: error: use of undefined value here causes illegal behavior6838// :167:25: error: use of undefined value here causes illegal behavior
6845// :173:25: error: use of undefined value here causes illegal behavior6839// :167:25: error: use of undefined value here causes illegal behavior
6846// :173:25: error: use of undefined value here causes illegal behavior6840// :167:25: error: use of undefined value here causes illegal behavior
6847// :173:25: error: use of undefined value here causes illegal behavior6841// :167:25: error: use of undefined value here causes illegal behavior
6848// :173:25: error: use of undefined value here causes illegal behavior6842// :167:25: error: use of undefined value here causes illegal behavior
6849// :173:25: note: when computing vector element at index '1'6843// :167:25: note: when computing vector element at index '1'
6850// :173:25: error: use of undefined value here causes illegal behavior6844// :167:25: error: use of undefined value here causes illegal behavior
6851// :173:25: note: when computing vector element at index '1'6845// :167:25: note: when computing vector element at index '1'
6852// :173:25: error: use of undefined value here causes illegal behavior6846// :167:25: error: use of undefined value here causes illegal behavior
6853// :173:25: note: when computing vector element at index '1'6847// :167:25: note: when computing vector element at index '1'
6854// :173:25: error: use of undefined value here causes illegal behavior6848// :167:25: error: use of undefined value here causes illegal behavior
6855// :173:25: note: when computing vector element at index '1'6849// :167:25: note: when computing vector element at index '1'
6856// :173:25: error: use of undefined value here causes illegal behavior6850// :167:25: error: use of undefined value here causes illegal behavior
6857// :173:25: note: when computing vector element at index '0'6851// :167:25: note: when computing vector element at index '0'
6858// :173:25: error: use of undefined value here causes illegal behavior6852// :167:25: error: use of undefined value here causes illegal behavior
6859// :173:25: note: when computing vector element at index '0'6853// :167:25: note: when computing vector element at index '0'
6860// :173:25: error: use of undefined value here causes illegal behavior6854// :167:25: error: use of undefined value here causes illegal behavior
6861// :173:25: note: when computing vector element at index '0'6855// :167:25: note: when computing vector element at index '0'
6862// :173:25: error: use of undefined value here causes illegal behavior6856// :167:25: error: use of undefined value here causes illegal behavior
6863// :173:25: note: when computing vector element at index '0'6857// :167:25: note: when computing vector element at index '0'
6864// :177:25: error: use of undefined value here causes illegal behavior6858// :171:25: error: use of undefined value here causes illegal behavior
6865// :177:25: error: use of undefined value here causes illegal behavior6859// :171:25: error: use of undefined value here causes illegal behavior
6866// :177:25: error: use of undefined value here causes illegal behavior6860// :171:25: error: use of undefined value here causes illegal behavior
6867// :177:25: error: use of undefined value here causes illegal behavior6861// :171:25: error: use of undefined value here causes illegal behavior
6868// :177:25: error: use of undefined value here causes illegal behavior6862// :171:25: error: use of undefined value here causes illegal behavior
6869// :177:25: error: use of undefined value here causes illegal behavior6863// :171:25: error: use of undefined value here causes illegal behavior
6870// :177:25: error: use of undefined value here causes illegal behavior6864// :171:25: error: use of undefined value here causes illegal behavior
6871// :177:25: note: when computing vector element at index '1'6865// :171:25: note: when computing vector element at index '1'
6872// :177:25: error: use of undefined value here causes illegal behavior6866// :171:25: error: use of undefined value here causes illegal behavior
6873// :177:25: note: when computing vector element at index '1'6867// :171:25: note: when computing vector element at index '1'
6874// :177:25: error: use of undefined value here causes illegal behavior6868// :171:25: error: use of undefined value here causes illegal behavior
6875// :177:25: note: when computing vector element at index '1'6869// :171:25: note: when computing vector element at index '1'
6876// :177:25: error: use of undefined value here causes illegal behavior6870// :171:25: error: use of undefined value here causes illegal behavior
6877// :177:25: note: when computing vector element at index '1'6871// :171:25: note: when computing vector element at index '1'
6878// :177:25: error: use of undefined value here causes illegal behavior6872// :171:25: error: use of undefined value here causes illegal behavior
6879// :177:25: note: when computing vector element at index '0'6873// :171:25: note: when computing vector element at index '0'
6880// :177:25: error: use of undefined value here causes illegal behavior6874// :171:25: error: use of undefined value here causes illegal behavior
6881// :177:25: note: when computing vector element at index '0'6875// :171:25: note: when computing vector element at index '0'
6882// :177:25: error: use of undefined value here causes illegal behavior6876// :171:25: error: use of undefined value here causes illegal behavior
6883// :177:25: note: when computing vector element at index '0'6877// :171:25: note: when computing vector element at index '0'
6884// :177:25: error: use of undefined value here causes illegal behavior6878// :171:25: error: use of undefined value here causes illegal behavior
6885// :177:25: note: when computing vector element at index '0'6879// :171:25: note: when computing vector element at index '0'
6886// :177:25: error: use of undefined value here causes illegal behavior6880// :171:25: error: use of undefined value here causes illegal behavior
6887// :177:25: error: use of undefined value here causes illegal behavior6881// :171:25: error: use of undefined value here causes illegal behavior
6888// :177:25: error: use of undefined value here causes illegal behavior6882// :171:25: error: use of undefined value here causes illegal behavior
6889// :177:25: error: use of undefined value here causes illegal behavior6883// :171:25: error: use of undefined value here causes illegal behavior
6890// :177:25: error: use of undefined value here causes illegal behavior6884// :171:25: error: use of undefined value here causes illegal behavior
6891// :177:25: error: use of undefined value here causes illegal behavior6885// :171:25: error: use of undefined value here causes illegal behavior
6892// :177:25: error: use of undefined value here causes illegal behavior6886// :171:25: error: use of undefined value here causes illegal behavior
6893// :177:25: note: when computing vector element at index '1'6887// :171:25: note: when computing vector element at index '1'
6894// :177:25: error: use of undefined value here causes illegal behavior6888// :171:25: error: use of undefined value here causes illegal behavior
6895// :177:25: note: when computing vector element at index '1'6889// :171:25: note: when computing vector element at index '1'
6896// :177:25: error: use of undefined value here causes illegal behavior6890// :171:25: error: use of undefined value here causes illegal behavior
6897// :177:25: note: when computing vector element at index '1'6891// :171:25: note: when computing vector element at index '1'
6898// :177:25: error: use of undefined value here causes illegal behavior6892// :171:25: error: use of undefined value here causes illegal behavior
6899// :177:25: note: when computing vector element at index '1'6893// :171:25: note: when computing vector element at index '1'
6900// :177:25: error: use of undefined value here causes illegal behavior6894// :171:25: error: use of undefined value here causes illegal behavior
6901// :177:25: note: when computing vector element at index '0'6895// :171:25: note: when computing vector element at index '0'
6902// :177:25: error: use of undefined value here causes illegal behavior6896// :171:25: error: use of undefined value here causes illegal behavior
6903// :177:25: note: when computing vector element at index '0'6897// :171:25: note: when computing vector element at index '0'
6904// :177:25: error: use of undefined value here causes illegal behavior6898// :171:25: error: use of undefined value here causes illegal behavior
6905// :177:25: note: when computing vector element at index '0'6899// :171:25: note: when computing vector element at index '0'
6906// :177:25: error: use of undefined value here causes illegal behavior6900// :171:25: error: use of undefined value here causes illegal behavior
6907// :177:25: note: when computing vector element at index '0'6901// :171:25: note: when computing vector element at index '0'
6908// :177:25: error: use of undefined value here causes illegal behavior6902// :171:25: error: use of undefined value here causes illegal behavior
6909// :177:25: error: use of undefined value here causes illegal behavior6903// :171:25: error: use of undefined value here causes illegal behavior
6910// :177:25: error: use of undefined value here causes illegal behavior6904// :171:25: error: use of undefined value here causes illegal behavior
6911// :177:25: error: use of undefined value here causes illegal behavior6905// :171:25: error: use of undefined value here causes illegal behavior
6912// :177:25: error: use of undefined value here causes illegal behavior6906// :171:25: error: use of undefined value here causes illegal behavior
6913// :177:25: error: use of undefined value here causes illegal behavior6907// :171:25: error: use of undefined value here causes illegal behavior
6914// :177:25: error: use of undefined value here causes illegal behavior6908// :171:25: error: use of undefined value here causes illegal behavior
6915// :177:25: note: when computing vector element at index '1'6909// :171:25: note: when computing vector element at index '1'
6916// :177:25: error: use of undefined value here causes illegal behavior6910// :171:25: error: use of undefined value here causes illegal behavior
6917// :177:25: note: when computing vector element at index '1'6911// :171:25: note: when computing vector element at index '1'
6918// :177:25: error: use of undefined value here causes illegal behavior6912// :171:25: error: use of undefined value here causes illegal behavior
6919// :177:25: note: when computing vector element at index '1'6913// :171:25: note: when computing vector element at index '1'
6920// :177:25: error: use of undefined value here causes illegal behavior6914// :171:25: error: use of undefined value here causes illegal behavior
6921// :177:25: note: when computing vector element at index '1'6915// :171:25: note: when computing vector element at index '1'
6922// :177:25: error: use of undefined value here causes illegal behavior6916// :171:25: error: use of undefined value here causes illegal behavior
6923// :177:25: note: when computing vector element at index '0'6917// :171:25: note: when computing vector element at index '0'
6924// :177:25: error: use of undefined value here causes illegal behavior6918// :171:25: error: use of undefined value here causes illegal behavior
6925// :177:25: note: when computing vector element at index '0'6919// :171:25: note: when computing vector element at index '0'
6926// :177:25: error: use of undefined value here causes illegal behavior6920// :171:25: error: use of undefined value here causes illegal behavior
6927// :177:25: note: when computing vector element at index '0'6921// :171:25: note: when computing vector element at index '0'
6928// :177:25: error: use of undefined value here causes illegal behavior6922// :171:25: error: use of undefined value here causes illegal behavior
6929// :177:25: note: when computing vector element at index '0'6923// :171:25: note: when computing vector element at index '0'
6930// :177:25: error: use of undefined value here causes illegal behavior6924// :171:25: error: use of undefined value here causes illegal behavior
6931// :177:25: error: use of undefined value here causes illegal behavior6925// :171:25: error: use of undefined value here causes illegal behavior
6932// :177:25: error: use of undefined value here causes illegal behavior6926// :171:25: error: use of undefined value here causes illegal behavior
6933// :177:25: error: use of undefined value here causes illegal behavior6927// :171:25: error: use of undefined value here causes illegal behavior
6934// :177:25: error: use of undefined value here causes illegal behavior6928// :171:25: error: use of undefined value here causes illegal behavior
6935// :177:25: error: use of undefined value here causes illegal behavior6929// :171:25: error: use of undefined value here causes illegal behavior
6936// :177:25: error: use of undefined value here causes illegal behavior6930// :171:25: error: use of undefined value here causes illegal behavior
6937// :177:25: note: when computing vector element at index '1'6931// :171:25: note: when computing vector element at index '1'
6938// :177:25: error: use of undefined value here causes illegal behavior6932// :171:25: error: use of undefined value here causes illegal behavior
6939// :177:25: note: when computing vector element at index '1'6933// :171:25: note: when computing vector element at index '1'
6940// :177:25: error: use of undefined value here causes illegal behavior6934// :171:25: error: use of undefined value here causes illegal behavior
6941// :177:25: note: when computing vector element at index '1'6935// :171:25: note: when computing vector element at index '1'
6942// :177:25: error: use of undefined value here causes illegal behavior6936// :171:25: error: use of undefined value here causes illegal behavior
6943// :177:25: note: when computing vector element at index '1'6937// :171:25: note: when computing vector element at index '1'
6944// :177:25: error: use of undefined value here causes illegal behavior6938// :171:25: error: use of undefined value here causes illegal behavior
6945// :177:25: note: when computing vector element at index '0'6939// :171:25: note: when computing vector element at index '0'
6946// :177:25: error: use of undefined value here causes illegal behavior6940// :171:25: error: use of undefined value here causes illegal behavior
6947// :177:25: note: when computing vector element at index '0'6941// :171:25: note: when computing vector element at index '0'
6948// :177:25: error: use of undefined value here causes illegal behavior6942// :171:25: error: use of undefined value here causes illegal behavior
6949// :177:25: note: when computing vector element at index '0'6943// :171:25: note: when computing vector element at index '0'
6950// :177:25: error: use of undefined value here causes illegal behavior6944// :171:25: error: use of undefined value here causes illegal behavior
6951// :177:25: note: when computing vector element at index '0'6945// :171:25: note: when computing vector element at index '0'
6952// :177:25: error: use of undefined value here causes illegal behavior6946// :171:25: error: use of undefined value here causes illegal behavior
6953// :177:25: error: use of undefined value here causes illegal behavior6947// :171:25: error: use of undefined value here causes illegal behavior
6954// :177:25: error: use of undefined value here causes illegal behavior6948// :171:25: error: use of undefined value here causes illegal behavior
6955// :177:25: error: use of undefined value here causes illegal behavior6949// :171:25: error: use of undefined value here causes illegal behavior
6956// :177:25: error: use of undefined value here causes illegal behavior6950// :171:25: error: use of undefined value here causes illegal behavior
6957// :177:25: error: use of undefined value here causes illegal behavior6951// :171:25: error: use of undefined value here causes illegal behavior
6958// :177:25: error: use of undefined value here causes illegal behavior6952// :171:25: error: use of undefined value here causes illegal behavior
6959// :177:25: note: when computing vector element at index '1'6953// :171:25: note: when computing vector element at index '1'
6960// :177:25: error: use of undefined value here causes illegal behavior6954// :171:25: error: use of undefined value here causes illegal behavior
6961// :177:25: note: when computing vector element at index '1'6955// :171:25: note: when computing vector element at index '1'
6962// :177:25: error: use of undefined value here causes illegal behavior6956// :171:25: error: use of undefined value here causes illegal behavior
6963// :177:25: note: when computing vector element at index '1'6957// :171:25: note: when computing vector element at index '1'
6964// :177:25: error: use of undefined value here causes illegal behavior6958// :171:25: error: use of undefined value here causes illegal behavior
6965// :177:25: note: when computing vector element at index '1'6959// :171:25: note: when computing vector element at index '1'
6966// :177:25: error: use of undefined value here causes illegal behavior6960// :171:25: error: use of undefined value here causes illegal behavior
6967// :177:25: note: when computing vector element at index '0'6961// :171:25: note: when computing vector element at index '0'
6968// :177:25: error: use of undefined value here causes illegal behavior6962// :171:25: error: use of undefined value here causes illegal behavior
6969// :177:25: note: when computing vector element at index '0'6963// :171:25: note: when computing vector element at index '0'
6970// :177:25: error: use of undefined value here causes illegal behavior6964// :171:25: error: use of undefined value here causes illegal behavior
6971// :177:25: note: when computing vector element at index '0'6965// :171:25: note: when computing vector element at index '0'
6972// :177:25: error: use of undefined value here causes illegal behavior6966// :171:25: error: use of undefined value here causes illegal behavior
6973// :177:25: note: when computing vector element at index '0'6967// :171:25: note: when computing vector element at index '0'
6974// :177:25: error: use of undefined value here causes illegal behavior6968// :171:25: error: use of undefined value here causes illegal behavior
6975// :177:25: error: use of undefined value here causes illegal behavior6969// :171:25: error: use of undefined value here causes illegal behavior
6976// :177:25: error: use of undefined value here causes illegal behavior6970// :171:25: error: use of undefined value here causes illegal behavior
6977// :177:25: error: use of undefined value here causes illegal behavior6971// :171:25: error: use of undefined value here causes illegal behavior
6978// :177:25: error: use of undefined value here causes illegal behavior6972// :171:25: error: use of undefined value here causes illegal behavior
6979// :177:25: error: use of undefined value here causes illegal behavior6973// :171:25: error: use of undefined value here causes illegal behavior
6980// :177:25: error: use of undefined value here causes illegal behavior6974// :171:25: error: use of undefined value here causes illegal behavior
6981// :177:25: note: when computing vector element at index '1'6975// :171:25: note: when computing vector element at index '1'
6982// :177:25: error: use of undefined value here causes illegal behavior6976// :171:25: error: use of undefined value here causes illegal behavior
6983// :177:25: note: when computing vector element at index '1'6977// :171:25: note: when computing vector element at index '1'
6984// :177:25: error: use of undefined value here causes illegal behavior6978// :171:25: error: use of undefined value here causes illegal behavior
6985// :177:25: note: when computing vector element at index '1'6979// :171:25: note: when computing vector element at index '1'
6986// :177:25: error: use of undefined value here causes illegal behavior6980// :171:25: error: use of undefined value here causes illegal behavior
6987// :177:25: note: when computing vector element at index '1'6981// :171:25: note: when computing vector element at index '1'
6988// :177:25: error: use of undefined value here causes illegal behavior6982// :171:25: error: use of undefined value here causes illegal behavior
6989// :177:25: note: when computing vector element at index '0'6983// :171:25: note: when computing vector element at index '0'
6990// :177:25: error: use of undefined value here causes illegal behavior6984// :171:25: error: use of undefined value here causes illegal behavior
6991// :177:25: note: when computing vector element at index '0'6985// :171:25: note: when computing vector element at index '0'
6992// :177:25: error: use of undefined value here causes illegal behavior6986// :171:25: error: use of undefined value here causes illegal behavior
6993// :177:25: note: when computing vector element at index '0'6987// :171:25: note: when computing vector element at index '0'
6994// :177:25: error: use of undefined value here causes illegal behavior6988// :171:25: error: use of undefined value here causes illegal behavior
6995// :177:25: note: when computing vector element at index '0'6989// :171:25: note: when computing vector element at index '0'
6996// :177:25: error: use of undefined value here causes illegal behavior6990// :171:25: error: use of undefined value here causes illegal behavior
6997// :177:25: error: use of undefined value here causes illegal behavior6991// :171:25: error: use of undefined value here causes illegal behavior
6998// :177:25: error: use of undefined value here causes illegal behavior6992// :171:25: error: use of undefined value here causes illegal behavior
6999// :177:25: error: use of undefined value here causes illegal behavior6993// :171:25: error: use of undefined value here causes illegal behavior
7000// :177:25: error: use of undefined value here causes illegal behavior6994// :171:25: error: use of undefined value here causes illegal behavior
7001// :177:25: error: use of undefined value here causes illegal behavior6995// :171:25: error: use of undefined value here causes illegal behavior
7002// :177:25: error: use of undefined value here causes illegal behavior6996// :171:25: error: use of undefined value here causes illegal behavior
7003// :177:25: note: when computing vector element at index '1'6997// :171:25: note: when computing vector element at index '1'
7004// :177:25: error: use of undefined value here causes illegal behavior6998// :171:25: error: use of undefined value here causes illegal behavior
7005// :177:25: note: when computing vector element at index '1'6999// :171:25: note: when computing vector element at index '1'
7006// :177:25: error: use of undefined value here causes illegal behavior7000// :171:25: error: use of undefined value here causes illegal behavior
7007// :177:25: note: when computing vector element at index '1'7001// :171:25: note: when computing vector element at index '1'
7008// :177:25: error: use of undefined value here causes illegal behavior7002// :171:25: error: use of undefined value here causes illegal behavior
7009// :177:25: note: when computing vector element at index '1'7003// :171:25: note: when computing vector element at index '1'
7010// :177:25: error: use of undefined value here causes illegal behavior7004// :171:25: error: use of undefined value here causes illegal behavior
7011// :177:25: note: when computing vector element at index '0'7005// :171:25: note: when computing vector element at index '0'
7012// :177:25: error: use of undefined value here causes illegal behavior7006// :171:25: error: use of undefined value here causes illegal behavior
7013// :177:25: note: when computing vector element at index '0'7007// :171:25: note: when computing vector element at index '0'
7014// :177:25: error: use of undefined value here causes illegal behavior7008// :171:25: error: use of undefined value here causes illegal behavior
7015// :177:25: note: when computing vector element at index '0'7009// :171:25: note: when computing vector element at index '0'
7016// :177:25: error: use of undefined value here causes illegal behavior7010// :171:25: error: use of undefined value here causes illegal behavior
7017// :177:25: note: when computing vector element at index '0'7011// :171:25: note: when computing vector element at index '0'
7018// :177:25: error: use of undefined value here causes illegal behavior7012// :171:25: error: use of undefined value here causes illegal behavior
7019// :177:25: error: use of undefined value here causes illegal behavior7013// :171:25: error: use of undefined value here causes illegal behavior
7020// :177:25: error: use of undefined value here causes illegal behavior7014// :171:25: error: use of undefined value here causes illegal behavior
7021// :177:25: error: use of undefined value here causes illegal behavior7015// :171:25: error: use of undefined value here causes illegal behavior
7022// :177:25: error: use of undefined value here causes illegal behavior7016// :171:25: error: use of undefined value here causes illegal behavior
7023// :177:25: error: use of undefined value here causes illegal behavior7017// :171:25: error: use of undefined value here causes illegal behavior
7024// :177:25: error: use of undefined value here causes illegal behavior7018// :171:25: error: use of undefined value here causes illegal behavior
7025// :177:25: note: when computing vector element at index '1'7019// :171:25: note: when computing vector element at index '1'
7026// :177:25: error: use of undefined value here causes illegal behavior7020// :171:25: error: use of undefined value here causes illegal behavior
7027// :177:25: note: when computing vector element at index '1'7021// :171:25: note: when computing vector element at index '1'
7028// :177:25: error: use of undefined value here causes illegal behavior7022// :171:25: error: use of undefined value here causes illegal behavior
7029// :177:25: note: when computing vector element at index '1'7023// :171:25: note: when computing vector element at index '1'
7030// :177:25: error: use of undefined value here causes illegal behavior7024// :171:25: error: use of undefined value here causes illegal behavior
7031// :177:25: note: when computing vector element at index '1'7025// :171:25: note: when computing vector element at index '1'
7032// :177:25: error: use of undefined value here causes illegal behavior7026// :171:25: error: use of undefined value here causes illegal behavior
7033// :177:25: note: when computing vector element at index '0'7027// :171:25: note: when computing vector element at index '0'
7034// :177:25: error: use of undefined value here causes illegal behavior7028// :171:25: error: use of undefined value here causes illegal behavior
7035// :177:25: note: when computing vector element at index '0'7029// :171:25: note: when computing vector element at index '0'
7036// :177:25: error: use of undefined value here causes illegal behavior7030// :171:25: error: use of undefined value here causes illegal behavior
7037// :177:25: note: when computing vector element at index '0'7031// :171:25: note: when computing vector element at index '0'
7038// :177:25: error: use of undefined value here causes illegal behavior7032// :171:25: error: use of undefined value here causes illegal behavior
7039// :177:25: note: when computing vector element at index '0'7033// :171:25: note: when computing vector element at index '0'
7040// :177:25: error: use of undefined value here causes illegal behavior7034// :171:25: error: use of undefined value here causes illegal behavior
7041// :177:25: error: use of undefined value here causes illegal behavior7035// :171:25: error: use of undefined value here causes illegal behavior
7042// :177:25: error: use of undefined value here causes illegal behavior7036// :171:25: error: use of undefined value here causes illegal behavior
7043// :177:25: error: use of undefined value here causes illegal behavior7037// :171:25: error: use of undefined value here causes illegal behavior
7044// :177:25: error: use of undefined value here causes illegal behavior7038// :171:25: error: use of undefined value here causes illegal behavior
7045// :177:25: error: use of undefined value here causes illegal behavior7039// :171:25: error: use of undefined value here causes illegal behavior
7046// :177:25: error: use of undefined value here causes illegal behavior7040// :171:25: error: use of undefined value here causes illegal behavior
7047// :177:25: note: when computing vector element at index '1'7041// :171:25: note: when computing vector element at index '1'
7048// :177:25: error: use of undefined value here causes illegal behavior7042// :171:25: error: use of undefined value here causes illegal behavior
7049// :177:25: note: when computing vector element at index '1'7043// :171:25: note: when computing vector element at index '1'
7050// :177:25: error: use of undefined value here causes illegal behavior7044// :171:25: error: use of undefined value here causes illegal behavior
7051// :177:25: note: when computing vector element at index '1'7045// :171:25: note: when computing vector element at index '1'
7052// :177:25: error: use of undefined value here causes illegal behavior7046// :171:25: error: use of undefined value here causes illegal behavior
7053// :177:25: note: when computing vector element at index '1'7047// :171:25: note: when computing vector element at index '1'
7054// :177:25: error: use of undefined value here causes illegal behavior7048// :171:25: error: use of undefined value here causes illegal behavior
7055// :177:25: note: when computing vector element at index '0'7049// :171:25: note: when computing vector element at index '0'
7056// :177:25: error: use of undefined value here causes illegal behavior7050// :171:25: error: use of undefined value here causes illegal behavior
7057// :177:25: note: when computing vector element at index '0'7051// :171:25: note: when computing vector element at index '0'
7058// :177:25: error: use of undefined value here causes illegal behavior7052// :171:25: error: use of undefined value here causes illegal behavior
7059// :177:25: note: when computing vector element at index '0'7053// :171:25: note: when computing vector element at index '0'
7060// :177:25: error: use of undefined value here causes illegal behavior7054// :171:25: error: use of undefined value here causes illegal behavior
7061// :177:25: note: when computing vector element at index '0'7055// :171:25: note: when computing vector element at index '0'
7062// :177:25: error: use of undefined value here causes illegal behavior7056// :171:25: error: use of undefined value here causes illegal behavior
7063// :177:25: error: use of undefined value here causes illegal behavior7057// :171:25: error: use of undefined value here causes illegal behavior
7064// :177:25: error: use of undefined value here causes illegal behavior7058// :171:25: error: use of undefined value here causes illegal behavior
7065// :177:25: error: use of undefined value here causes illegal behavior7059// :171:25: error: use of undefined value here causes illegal behavior
7066// :177:25: error: use of undefined value here causes illegal behavior7060// :171:25: error: use of undefined value here causes illegal behavior
7067// :177:25: error: use of undefined value here causes illegal behavior7061// :171:25: error: use of undefined value here causes illegal behavior
7068// :177:25: error: use of undefined value here causes illegal behavior7062// :171:25: error: use of undefined value here causes illegal behavior
7069// :177:25: note: when computing vector element at index '1'7063// :171:25: note: when computing vector element at index '1'
7070// :177:25: error: use of undefined value here causes illegal behavior7064// :171:25: error: use of undefined value here causes illegal behavior
7071// :177:25: note: when computing vector element at index '1'7065// :171:25: note: when computing vector element at index '1'
7072// :177:25: error: use of undefined value here causes illegal behavior7066// :171:25: error: use of undefined value here causes illegal behavior
7073// :177:25: note: when computing vector element at index '1'7067// :171:25: note: when computing vector element at index '1'
7074// :177:25: error: use of undefined value here causes illegal behavior7068// :171:25: error: use of undefined value here causes illegal behavior
7075// :177:25: note: when computing vector element at index '1'7069// :171:25: note: when computing vector element at index '1'
7076// :177:25: error: use of undefined value here causes illegal behavior7070// :171:25: error: use of undefined value here causes illegal behavior
7077// :177:25: note: when computing vector element at index '0'7071// :171:25: note: when computing vector element at index '0'
7078// :177:25: error: use of undefined value here causes illegal behavior7072// :171:25: error: use of undefined value here causes illegal behavior
7079// :177:25: note: when computing vector element at index '0'7073// :171:25: note: when computing vector element at index '0'
7080// :177:25: error: use of undefined value here causes illegal behavior7074// :171:25: error: use of undefined value here causes illegal behavior
7081// :177:25: note: when computing vector element at index '0'7075// :171:25: note: when computing vector element at index '0'
7082// :177:25: error: use of undefined value here causes illegal behavior7076// :171:25: error: use of undefined value here causes illegal behavior
7083// :177:25: note: when computing vector element at index '0'7077// :171:25: note: when computing vector element at index '0'
7084// :177:25: error: use of undefined value here causes illegal behavior7078// :171:25: error: use of undefined value here causes illegal behavior
7085// :177:25: error: use of undefined value here causes illegal behavior7079// :171:25: error: use of undefined value here causes illegal behavior
7086// :177:25: error: use of undefined value here causes illegal behavior7080// :171:25: error: use of undefined value here causes illegal behavior
7087// :177:25: error: use of undefined value here causes illegal behavior7081// :171:25: error: use of undefined value here causes illegal behavior
7088// :177:25: error: use of undefined value here causes illegal behavior7082// :171:25: error: use of undefined value here causes illegal behavior
7089// :177:25: error: use of undefined value here causes illegal behavior7083// :171:25: error: use of undefined value here causes illegal behavior
7090// :177:25: error: use of undefined value here causes illegal behavior7084// :171:25: error: use of undefined value here causes illegal behavior
7091// :177:25: note: when computing vector element at index '1'7085// :171:25: note: when computing vector element at index '1'
7092// :177:25: error: use of undefined value here causes illegal behavior7086// :171:25: error: use of undefined value here causes illegal behavior
7093// :177:25: note: when computing vector element at index '1'7087// :171:25: note: when computing vector element at index '1'
7094// :177:25: error: use of undefined value here causes illegal behavior7088// :171:25: error: use of undefined value here causes illegal behavior
7095// :177:25: note: when computing vector element at index '1'7089// :171:25: note: when computing vector element at index '1'
7096// :177:25: error: use of undefined value here causes illegal behavior7090// :171:25: error: use of undefined value here causes illegal behavior
7097// :177:25: note: when computing vector element at index '1'7091// :171:25: note: when computing vector element at index '1'
7098// :177:25: error: use of undefined value here causes illegal behavior7092// :171:25: error: use of undefined value here causes illegal behavior
7099// :177:25: note: when computing vector element at index '0'7093// :171:25: note: when computing vector element at index '0'
7100// :177:25: error: use of undefined value here causes illegal behavior7094// :171:25: error: use of undefined value here causes illegal behavior
7101// :177:25: note: when computing vector element at index '0'7095// :171:25: note: when computing vector element at index '0'
7102// :177:25: error: use of undefined value here causes illegal behavior7096// :171:25: error: use of undefined value here causes illegal behavior
7103// :177:25: note: when computing vector element at index '0'7097// :171:25: note: when computing vector element at index '0'
7104// :177:25: error: use of undefined value here causes illegal behavior7098// :171:25: error: use of undefined value here causes illegal behavior
7105// :177:25: note: when computing vector element at index '0'7099// :171:25: note: when computing vector element at index '0'
7100// :177:17: error: use of undefined value here causes illegal behavior
7101// :177:17: error: use of undefined value here causes illegal behavior
7102// :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 behavior
7105// :177:17: note: when computing vector element at index '0'
7106// :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 behavior
7109// :177:17: note: when computing vector element at index '0'
7110// :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 behavior
7113// :177:17: note: when computing vector element at index '1'
7114// :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 behavior
7117// :177:17: note: when computing vector element at index '0'
7118// :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 behavior
7121// :177:17: note: when computing vector element at index '0'
7122// :177:17: error: use of undefined value here causes illegal behavior
7123// :177:17: error: use of undefined value here causes illegal behavior
7124// :177:17: error: use of undefined value here causes illegal behavior
7125// :177:17: note: when computing vector element at index '0'
7126// :177:17: error: use of undefined value here causes illegal behavior
7127// :177:17: note: when computing vector element at index '0'
7128// :177:17: error: use of undefined value here causes illegal behavior
7129// :177:17: note: when computing vector element at index '0'
7130// :177:17: error: use of undefined value here causes illegal behavior
7131// :177:17: note: when computing vector element at index '0'
7132// :177:17: error: use of undefined value here causes illegal behavior
7133// :177:17: note: when computing vector element at index '1'
7134// :177:17: error: use of undefined value here causes illegal behavior
7135// :177:17: note: when computing vector element at index '1'
7136// :177:17: error: use of undefined value here causes illegal behavior
7137// :177:17: note: when computing vector element at index '0'
7138// :177:17: error: use of undefined value here causes illegal behavior
7139// :177:17: note: when computing vector element at index '0'
7140// :177:17: error: use of undefined value here causes illegal behavior
7141// :177:17: note: when computing vector element at index '0'
7142// :177:17: error: use of undefined value here causes illegal behavior
7143// :177:17: note: when computing vector element at index '0'
7144// :177:17: error: use of undefined value here causes illegal behavior
7145// :177:17: error: use of undefined value here causes illegal behavior
7146// :177:17: error: use of undefined value here causes illegal behavior
7147// :177:17: note: when computing vector element at index '0'
7148// :177:17: error: use of undefined value here causes illegal behavior
7149// :177:17: note: when computing vector element at index '0'
7150// :177:17: error: use of undefined value here causes illegal behavior
7151// :177:17: note: when computing vector element at index '0'
7152// :177:17: error: use of undefined value here causes illegal behavior
7153// :177:17: note: when computing vector element at index '0'
7154// :177:17: error: use of undefined value here causes illegal behavior
7155// :177:17: note: when computing vector element at index '1'
7156// :177:17: error: use of undefined value here causes illegal behavior
7157// :177:17: note: when computing vector element at index '1'
7158// :177:17: error: use of undefined value here causes illegal behavior
7159// :177:17: note: when computing vector element at index '0'
7160// :177:17: error: use of undefined value here causes illegal behavior
7161// :177:17: note: when computing vector element at index '0'
7162// :177:17: error: use of undefined value here causes illegal behavior
7163// :177:17: note: when computing vector element at index '0'
7164// :177:17: error: use of undefined value here causes illegal behavior
7165// :177:17: note: when computing vector element at index '0'
7166// :177:17: error: use of undefined value here causes illegal behavior
7167// :177:17: error: use of undefined value here causes illegal behavior
7168// :177:17: error: use of undefined value here causes illegal behavior
7169// :177:17: note: when computing vector element at index '0'
7170// :177:17: error: use of undefined value here causes illegal behavior
7171// :177:17: note: when computing vector element at index '0'
7172// :177:17: error: use of undefined value here causes illegal behavior
7173// :177:17: note: when computing vector element at index '0'
7174// :177:17: error: use of undefined value here causes illegal behavior
7175// :177:17: note: when computing vector element at index '0'
7176// :177:17: error: use of undefined value here causes illegal behavior
7177// :177:17: note: when computing vector element at index '1'
7178// :177:17: error: use of undefined value here causes illegal behavior
7179// :177:17: note: when computing vector element at index '1'
7180// :177:17: error: use of undefined value here causes illegal behavior
7181// :177:17: note: when computing vector element at index '0'
7182// :177:17: error: use of undefined value here causes illegal behavior
7183// :177:17: note: when computing vector element at index '0'
7184// :177:17: error: use of undefined value here causes illegal behavior
7185// :177:17: note: when computing vector element at index '0'
7186// :177:17: error: use of undefined value here causes illegal behavior
7187// :177:17: note: when computing vector element at index '0'
7188// :177:17: error: use of undefined value here causes illegal behavior
7189// :177:17: error: use of undefined value here causes illegal behavior
7190// :177:17: error: use of undefined value here causes illegal behavior
7191// :177:17: note: when computing vector element at index '0'
7192// :177:17: error: use of undefined value here causes illegal behavior
7193// :177:17: note: when computing vector element at index '0'
7194// :177:17: error: use of undefined value here causes illegal behavior
7195// :177:17: note: when computing vector element at index '0'
7196// :177:17: error: use of undefined value here causes illegal behavior
7197// :177:17: note: when computing vector element at index '0'
7198// :177:17: error: use of undefined value here causes illegal behavior
7199// :177:17: note: when computing vector element at index '1'
7200// :177:17: error: use of undefined value here causes illegal behavior
7201// :177:17: note: when computing vector element at index '1'
7202// :177:17: error: use of undefined value here causes illegal behavior
7203// :177:17: note: when computing vector element at index '0'
7204// :177:17: error: use of undefined value here causes illegal behavior
7205// :177:17: note: when computing vector element at index '0'
7206// :177:17: error: use of undefined value here causes illegal behavior
7207// :177:17: note: when computing vector element at index '0'
7208// :177:17: error: use of undefined value here causes illegal behavior
7209// :177:17: note: when computing vector element at index '0'
7210// :177:17: error: use of undefined value here causes illegal behavior
7211// :177:17: error: use of undefined value here causes illegal behavior
7212// :177:17: error: use of undefined value here causes illegal behavior
7213// :177:17: note: when computing vector element at index '0'
7214// :177:17: error: use of undefined value here causes illegal behavior
7215// :177:17: note: when computing vector element at index '0'
7216// :177:17: error: use of undefined value here causes illegal behavior
7217// :177:17: note: when computing vector element at index '0'
7218// :177:17: error: use of undefined value here causes illegal behavior
7219// :177:17: note: when computing vector element at index '0'
7220// :177:17: error: use of undefined value here causes illegal behavior
7221// :177:17: note: when computing vector element at index '1'
7222// :177:17: error: use of undefined value here causes illegal behavior
7223// :177:17: note: when computing vector element at index '1'
7224// :177:17: error: use of undefined value here causes illegal behavior
7225// :177:17: note: when computing vector element at index '0'
7226// :177:17: error: use of undefined value here causes illegal behavior
7227// :177:17: note: when computing vector element at index '0'
7228// :177:17: error: use of undefined value here causes illegal behavior
7229// :177:17: note: when computing vector element at index '0'
7230// :177:17: error: use of undefined value here causes illegal behavior
7231// :177:17: note: when computing vector element at index '0'
7232// :177:21: error: use of undefined value here causes illegal behavior
7233// :177:21: note: when computing vector element at index '0'
7234// :177:21: error: use of undefined value here causes illegal behavior
7235// :177:21: note: when computing vector element at index '0'
7236// :177:21: error: use of undefined value here causes illegal behavior
7237// :177:21: note: when computing vector element at index '0'
7238// :177:21: error: use of undefined value here causes illegal behavior
7239// :177:21: note: when computing vector element at index '0'
7240// :177:21: error: use of undefined value here causes illegal behavior
7241// :177:21: note: when computing vector element at index '0'
7242// :177:21: error: use of undefined value here causes illegal behavior
7243// :177:21: note: when computing vector element at index '0'
7244// :177:21: error: use of undefined value here causes illegal behavior
7245// :177:21: note: when computing vector element at index '0'
7246// :177:21: error: use of undefined value here causes illegal behavior
7247// :177:21: note: when computing vector element at index '0'
7248// :177:21: error: use of undefined value here causes illegal behavior
7249// :177:21: note: when computing vector element at index '0'
7250// :177:21: error: use of undefined value here causes illegal behavior
7251// :177:21: note: when computing vector element at index '0'
7252// :177:21: error: use of undefined value here causes illegal behavior
7253// :177:21: note: when computing vector element at index '0'
7254// :177:21: error: use of undefined value here causes illegal behavior
7255// :177:21: note: when computing vector element at index '0'
7256// :180:17: error: use of undefined value here causes illegal behavior
7257// :180:17: error: use of undefined value here causes illegal behavior
7258// :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 behavior
7261// :180:17: note: when computing vector element at index '0'
7262// :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 behavior
7265// :180:17: note: when computing vector element at index '0'
7266// :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 behavior
7269// :180:17: note: when computing vector element at index '1'
7270// :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 behavior
7273// :180:17: note: when computing vector element at index '0'
7274// :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 behavior
7277// :180:17: note: when computing vector element at index '0'
7278// :180:17: error: use of undefined value here causes illegal behavior
7279// :180:17: error: use of undefined value here causes illegal behavior
7280// :180:17: error: use of undefined value here causes illegal behavior
7281// :180:17: note: when computing vector element at index '0'
7282// :180:17: error: use of undefined value here causes illegal behavior
7283// :180:17: note: when computing vector element at index '0'
7284// :180:17: error: use of undefined value here causes illegal behavior
7285// :180:17: note: when computing vector element at index '0'
7286// :180:17: error: use of undefined value here causes illegal behavior
7287// :180:17: note: when computing vector element at index '0'
7288// :180:17: error: use of undefined value here causes illegal behavior
7289// :180:17: note: when computing vector element at index '1'
7290// :180:17: error: use of undefined value here causes illegal behavior
7291// :180:17: note: when computing vector element at index '1'
7292// :180:17: error: use of undefined value here causes illegal behavior
7293// :180:17: note: when computing vector element at index '0'
7294// :180:17: error: use of undefined value here causes illegal behavior
7295// :180:17: note: when computing vector element at index '0'
7296// :180:17: error: use of undefined value here causes illegal behavior
7297// :180:17: note: when computing vector element at index '0'
7298// :180:17: error: use of undefined value here causes illegal behavior
7299// :180:17: note: when computing vector element at index '0'
7300// :180:17: error: use of undefined value here causes illegal behavior
7301// :180:17: error: use of undefined value here causes illegal behavior
7302// :180:17: error: use of undefined value here causes illegal behavior
7303// :180:17: note: when computing vector element at index '0'
7304// :180:17: error: use of undefined value here causes illegal behavior
7305// :180:17: note: when computing vector element at index '0'
7306// :180:17: error: use of undefined value here causes illegal behavior
7307// :180:17: note: when computing vector element at index '0'
7308// :180:17: error: use of undefined value here causes illegal behavior
7309// :180:17: note: when computing vector element at index '0'
7310// :180:17: error: use of undefined value here causes illegal behavior
7311// :180:17: note: when computing vector element at index '1'
7312// :180:17: error: use of undefined value here causes illegal behavior
7313// :180:17: note: when computing vector element at index '1'
7314// :180:17: error: use of undefined value here causes illegal behavior
7315// :180:17: note: when computing vector element at index '0'
7316// :180:17: error: use of undefined value here causes illegal behavior
7317// :180:17: note: when computing vector element at index '0'
7318// :180:17: error: use of undefined value here causes illegal behavior
7319// :180:17: note: when computing vector element at index '0'
7320// :180:17: error: use of undefined value here causes illegal behavior
7321// :180:17: note: when computing vector element at index '0'
7322// :180:17: error: use of undefined value here causes illegal behavior
7323// :180:17: error: use of undefined value here causes illegal behavior
7324// :180:17: error: use of undefined value here causes illegal behavior
7325// :180:17: note: when computing vector element at index '0'
7326// :180:17: error: use of undefined value here causes illegal behavior
7327// :180:17: note: when computing vector element at index '0'
7328// :180:17: error: use of undefined value here causes illegal behavior
7329// :180:17: note: when computing vector element at index '0'
7330// :180:17: error: use of undefined value here causes illegal behavior
7331// :180:17: note: when computing vector element at index '0'
7332// :180:17: error: use of undefined value here causes illegal behavior
7333// :180:17: note: when computing vector element at index '1'
7334// :180:17: error: use of undefined value here causes illegal behavior
7335// :180:17: note: when computing vector element at index '1'
7336// :180:17: error: use of undefined value here causes illegal behavior
7337// :180:17: note: when computing vector element at index '0'
7338// :180:17: error: use of undefined value here causes illegal behavior
7339// :180:17: note: when computing vector element at index '0'
7340// :180:17: error: use of undefined value here causes illegal behavior
7341// :180:17: note: when computing vector element at index '0'
7342// :180:17: error: use of undefined value here causes illegal behavior
7343// :180:17: note: when computing vector element at index '0'
7344// :180:17: error: use of undefined value here causes illegal behavior
7345// :180:17: error: use of undefined value here causes illegal behavior
7346// :180:17: error: use of undefined value here causes illegal behavior
7347// :180:17: note: when computing vector element at index '0'
7348// :180:17: error: use of undefined value here causes illegal behavior
7349// :180:17: note: when computing vector element at index '0'
7350// :180:17: error: use of undefined value here causes illegal behavior
7351// :180:17: note: when computing vector element at index '0'
7352// :180:17: error: use of undefined value here causes illegal behavior
7353// :180:17: note: when computing vector element at index '0'
7354// :180:17: error: use of undefined value here causes illegal behavior
7355// :180:17: note: when computing vector element at index '1'
7356// :180:17: error: use of undefined value here causes illegal behavior
7357// :180:17: note: when computing vector element at index '1'
7358// :180:17: error: use of undefined value here causes illegal behavior
7359// :180:17: note: when computing vector element at index '0'
7360// :180:17: error: use of undefined value here causes illegal behavior
7361// :180:17: note: when computing vector element at index '0'
7362// :180:17: error: use of undefined value here causes illegal behavior
7363// :180:17: note: when computing vector element at index '0'
7364// :180:17: error: use of undefined value here causes illegal behavior
7365// :180:17: note: when computing vector element at index '0'
7366// :180:17: error: use of undefined value here causes illegal behavior
7367// :180:17: error: use of undefined value here causes illegal behavior
7368// :180:17: error: use of undefined value here causes illegal behavior
7369// :180:17: note: when computing vector element at index '0'
7370// :180:17: error: use of undefined value here causes illegal behavior
7371// :180:17: note: when computing vector element at index '0'
7372// :180:17: error: use of undefined value here causes illegal behavior
7373// :180:17: note: when computing vector element at index '0'
7374// :180:17: error: use of undefined value here causes illegal behavior
7375// :180:17: note: when computing vector element at index '0'
7376// :180:17: error: use of undefined value here causes illegal behavior
7377// :180:17: note: when computing vector element at index '1'
7378// :180:17: error: use of undefined value here causes illegal behavior
7379// :180:17: note: when computing vector element at index '1'
7380// :180:17: error: use of undefined value here causes illegal behavior
7381// :180:17: note: when computing vector element at index '0'
7382// :180:17: error: use of undefined value here causes illegal behavior
7383// :180:17: note: when computing vector element at index '0'
7384// :180:17: error: use of undefined value here causes illegal behavior
7385// :180:17: note: when computing vector element at index '0'
7386// :180:17: error: use of undefined value here causes illegal behavior
7387// :180:17: note: when computing vector element at index '0'
7388// :180:21: error: use of undefined value here causes illegal behavior
7389// :180:21: note: when computing vector element at index '0'
7390// :180:21: error: use of undefined value here causes illegal behavior
7391// :180:21: note: when computing vector element at index '0'
7392// :180:21: error: use of undefined value here causes illegal behavior
7393// :180:21: note: when computing vector element at index '0'
7394// :180:21: error: use of undefined value here causes illegal behavior
7395// :180:21: note: when computing vector element at index '0'
7396// :180:21: error: use of undefined value here causes illegal behavior
7397// :180:21: note: when computing vector element at index '0'
7398// :180:21: error: use of undefined value here causes illegal behavior
7399// :180:21: note: when computing vector element at index '0'
7400// :180:21: error: use of undefined value here causes illegal behavior
7401// :180:21: note: when computing vector element at index '0'
7402// :180:21: error: use of undefined value here causes illegal behavior
7403// :180:21: note: when computing vector element at index '0'
7404// :180:21: error: use of undefined value here causes illegal behavior
7405// :180:21: note: when computing vector element at index '0'
7406// :180:21: error: use of undefined value here causes illegal behavior
7407// :180:21: note: when computing vector element at index '0'
7408// :180:21: error: use of undefined value here causes illegal behavior
7409// :180:21: note: when computing vector element at index '0'
7410// :180:21: error: use of undefined value here causes illegal behavior
7411// :180:21: note: when computing vector element at index '0'
7106// :183:17: error: use of undefined value here causes illegal behavior7412// :183:17: error: use of undefined value here causes illegal behavior
7107// :183:17: error: use of undefined value here causes illegal behavior7413// :183:17: error: use of undefined value here causes illegal behavior
7108// :183:17: error: use of undefined value here causes illegal behavior7414// :183:17: error: use of undefined value here causes illegal behavior
...@@ -7259,315 +7565,3 @@ const std = @import("std");...@@ -7259,315 +7565,3 @@ const std = @import("std");
7259// :183:21: note: when computing vector element at index '0'7565// :183:21: note: when computing vector element at index '0'
7260// :183:21: error: use of undefined value here causes illegal behavior7566// :183:21: error: use of undefined value here causes illegal behavior
7261// :183:21: note: when computing vector element at index '0'7567// :183:21: note: when computing vector element at index '0'
7262// :186:17: error: use of undefined value here causes illegal behavior
7263// :186:17: error: use of undefined value here causes illegal behavior
7264// :186:17: error: use of undefined value here causes illegal behavior
7265// :186:17: note: when computing vector element at index '0'
7266// :186:17: error: use of undefined value here causes illegal behavior
7267// :186:17: note: when computing vector element at index '0'
7268// :186:17: error: use of undefined value here causes illegal behavior
7269// :186:17: note: when computing vector element at index '0'
7270// :186:17: error: use of undefined value here causes illegal behavior
7271// :186:17: note: when computing vector element at index '0'
7272// :186:17: error: use of undefined value here causes illegal behavior
7273// :186:17: note: when computing vector element at index '1'
7274// :186:17: error: use of undefined value here causes illegal behavior
7275// :186:17: note: when computing vector element at index '1'
7276// :186:17: error: use of undefined value here causes illegal behavior
7277// :186:17: note: when computing vector element at index '0'
7278// :186:17: error: use of undefined value here causes illegal behavior
7279// :186:17: note: when computing vector element at index '0'
7280// :186:17: error: use of undefined value here causes illegal behavior
7281// :186:17: note: when computing vector element at index '0'
7282// :186:17: error: use of undefined value here causes illegal behavior
7283// :186:17: note: when computing vector element at index '0'
7284// :186:17: error: use of undefined value here causes illegal behavior
7285// :186:17: error: use of undefined value here causes illegal behavior
7286// :186:17: error: use of undefined value here causes illegal behavior
7287// :186:17: note: when computing vector element at index '0'
7288// :186:17: error: use of undefined value here causes illegal behavior
7289// :186:17: note: when computing vector element at index '0'
7290// :186:17: error: use of undefined value here causes illegal behavior
7291// :186:17: note: when computing vector element at index '0'
7292// :186:17: error: use of undefined value here causes illegal behavior
7293// :186:17: note: when computing vector element at index '0'
7294// :186:17: error: use of undefined value here causes illegal behavior
7295// :186:17: note: when computing vector element at index '1'
7296// :186:17: error: use of undefined value here causes illegal behavior
7297// :186:17: note: when computing vector element at index '1'
7298// :186:17: error: use of undefined value here causes illegal behavior
7299// :186:17: note: when computing vector element at index '0'
7300// :186:17: error: use of undefined value here causes illegal behavior
7301// :186:17: note: when computing vector element at index '0'
7302// :186:17: error: use of undefined value here causes illegal behavior
7303// :186:17: note: when computing vector element at index '0'
7304// :186:17: error: use of undefined value here causes illegal behavior
7305// :186:17: note: when computing vector element at index '0'
7306// :186:17: error: use of undefined value here causes illegal behavior
7307// :186:17: error: use of undefined value here causes illegal behavior
7308// :186:17: error: use of undefined value here causes illegal behavior
7309// :186:17: note: when computing vector element at index '0'
7310// :186:17: error: use of undefined value here causes illegal behavior
7311// :186:17: note: when computing vector element at index '0'
7312// :186:17: error: use of undefined value here causes illegal behavior
7313// :186:17: note: when computing vector element at index '0'
7314// :186:17: error: use of undefined value here causes illegal behavior
7315// :186:17: note: when computing vector element at index '0'
7316// :186:17: error: use of undefined value here causes illegal behavior
7317// :186:17: note: when computing vector element at index '1'
7318// :186:17: error: use of undefined value here causes illegal behavior
7319// :186:17: note: when computing vector element at index '1'
7320// :186:17: error: use of undefined value here causes illegal behavior
7321// :186:17: note: when computing vector element at index '0'
7322// :186:17: error: use of undefined value here causes illegal behavior
7323// :186:17: note: when computing vector element at index '0'
7324// :186:17: error: use of undefined value here causes illegal behavior
7325// :186:17: note: when computing vector element at index '0'
7326// :186:17: error: use of undefined value here causes illegal behavior
7327// :186:17: note: when computing vector element at index '0'
7328// :186:17: error: use of undefined value here causes illegal behavior
7329// :186:17: error: use of undefined value here causes illegal behavior
7330// :186:17: error: use of undefined value here causes illegal behavior
7331// :186:17: note: when computing vector element at index '0'
7332// :186:17: error: use of undefined value here causes illegal behavior
7333// :186:17: note: when computing vector element at index '0'
7334// :186:17: error: use of undefined value here causes illegal behavior
7335// :186:17: note: when computing vector element at index '0'
7336// :186:17: error: use of undefined value here causes illegal behavior
7337// :186:17: note: when computing vector element at index '0'
7338// :186:17: error: use of undefined value here causes illegal behavior
7339// :186:17: note: when computing vector element at index '1'
7340// :186:17: error: use of undefined value here causes illegal behavior
7341// :186:17: note: when computing vector element at index '1'
7342// :186:17: error: use of undefined value here causes illegal behavior
7343// :186:17: note: when computing vector element at index '0'
7344// :186:17: error: use of undefined value here causes illegal behavior
7345// :186:17: note: when computing vector element at index '0'
7346// :186:17: error: use of undefined value here causes illegal behavior
7347// :186:17: note: when computing vector element at index '0'
7348// :186:17: error: use of undefined value here causes illegal behavior
7349// :186:17: note: when computing vector element at index '0'
7350// :186:17: error: use of undefined value here causes illegal behavior
7351// :186:17: error: use of undefined value here causes illegal behavior
7352// :186:17: error: use of undefined value here causes illegal behavior
7353// :186:17: note: when computing vector element at index '0'
7354// :186:17: error: use of undefined value here causes illegal behavior
7355// :186:17: note: when computing vector element at index '0'
7356// :186:17: error: use of undefined value here causes illegal behavior
7357// :186:17: note: when computing vector element at index '0'
7358// :186:17: error: use of undefined value here causes illegal behavior
7359// :186:17: note: when computing vector element at index '0'
7360// :186:17: error: use of undefined value here causes illegal behavior
7361// :186:17: note: when computing vector element at index '1'
7362// :186:17: error: use of undefined value here causes illegal behavior
7363// :186:17: note: when computing vector element at index '1'
7364// :186:17: error: use of undefined value here causes illegal behavior
7365// :186:17: note: when computing vector element at index '0'
7366// :186:17: error: use of undefined value here causes illegal behavior
7367// :186:17: note: when computing vector element at index '0'
7368// :186:17: error: use of undefined value here causes illegal behavior
7369// :186:17: note: when computing vector element at index '0'
7370// :186:17: error: use of undefined value here causes illegal behavior
7371// :186:17: note: when computing vector element at index '0'
7372// :186:17: error: use of undefined value here causes illegal behavior
7373// :186:17: error: use of undefined value here causes illegal behavior
7374// :186:17: error: use of undefined value here causes illegal behavior
7375// :186:17: note: when computing vector element at index '0'
7376// :186:17: error: use of undefined value here causes illegal behavior
7377// :186:17: note: when computing vector element at index '0'
7378// :186:17: error: use of undefined value here causes illegal behavior
7379// :186:17: note: when computing vector element at index '0'
7380// :186:17: error: use of undefined value here causes illegal behavior
7381// :186:17: note: when computing vector element at index '0'
7382// :186:17: error: use of undefined value here causes illegal behavior
7383// :186:17: note: when computing vector element at index '1'
7384// :186:17: error: use of undefined value here causes illegal behavior
7385// :186:17: note: when computing vector element at index '1'
7386// :186:17: error: use of undefined value here causes illegal behavior
7387// :186:17: note: when computing vector element at index '0'
7388// :186:17: error: use of undefined value here causes illegal behavior
7389// :186:17: note: when computing vector element at index '0'
7390// :186:17: error: use of undefined value here causes illegal behavior
7391// :186:17: note: when computing vector element at index '0'
7392// :186:17: error: use of undefined value here causes illegal behavior
7393// :186:17: note: when computing vector element at index '0'
7394// :186:21: error: use of undefined value here causes illegal behavior
7395// :186:21: note: when computing vector element at index '0'
7396// :186:21: error: use of undefined value here causes illegal behavior
7397// :186:21: note: when computing vector element at index '0'
7398// :186:21: error: use of undefined value here causes illegal behavior
7399// :186:21: note: when computing vector element at index '0'
7400// :186:21: error: use of undefined value here causes illegal behavior
7401// :186:21: note: when computing vector element at index '0'
7402// :186:21: error: use of undefined value here causes illegal behavior
7403// :186:21: note: when computing vector element at index '0'
7404// :186:21: error: use of undefined value here causes illegal behavior
7405// :186:21: note: when computing vector element at index '0'
7406// :186:21: error: use of undefined value here causes illegal behavior
7407// :186:21: note: when computing vector element at index '0'
7408// :186:21: error: use of undefined value here causes illegal behavior
7409// :186:21: note: when computing vector element at index '0'
7410// :186:21: error: use of undefined value here causes illegal behavior
7411// :186:21: note: when computing vector element at index '0'
7412// :186:21: error: use of undefined value here causes illegal behavior
7413// :186:21: note: when computing vector element at index '0'
7414// :186:21: error: use of undefined value here causes illegal behavior
7415// :186:21: note: when computing vector element at index '0'
7416// :186:21: error: use of undefined value here causes illegal behavior
7417// :186:21: note: when computing vector element at index '0'
7418// :189:17: error: use of undefined value here causes illegal behavior
7419// :189:17: error: use of undefined value here causes illegal behavior
7420// :189:17: error: use of undefined value here causes illegal behavior
7421// :189:17: note: when computing vector element at index '0'
7422// :189:17: error: use of undefined value here causes illegal behavior
7423// :189:17: note: when computing vector element at index '0'
7424// :189:17: error: use of undefined value here causes illegal behavior
7425// :189:17: note: when computing vector element at index '0'
7426// :189:17: error: use of undefined value here causes illegal behavior
7427// :189:17: note: when computing vector element at index '0'
7428// :189:17: error: use of undefined value here causes illegal behavior
7429// :189:17: note: when computing vector element at index '1'
7430// :189:17: error: use of undefined value here causes illegal behavior
7431// :189:17: note: when computing vector element at index '1'
7432// :189:17: error: use of undefined value here causes illegal behavior
7433// :189:17: note: when computing vector element at index '0'
7434// :189:17: error: use of undefined value here causes illegal behavior
7435// :189:17: note: when computing vector element at index '0'
7436// :189:17: error: use of undefined value here causes illegal behavior
7437// :189:17: note: when computing vector element at index '0'
7438// :189:17: error: use of undefined value here causes illegal behavior
7439// :189:17: note: when computing vector element at index '0'
7440// :189:17: error: use of undefined value here causes illegal behavior
7441// :189:17: error: use of undefined value here causes illegal behavior
7442// :189:17: error: use of undefined value here causes illegal behavior
7443// :189:17: note: when computing vector element at index '0'
7444// :189:17: error: use of undefined value here causes illegal behavior
7445// :189:17: note: when computing vector element at index '0'
7446// :189:17: error: use of undefined value here causes illegal behavior
7447// :189:17: note: when computing vector element at index '0'
7448// :189:17: error: use of undefined value here causes illegal behavior
7449// :189:17: note: when computing vector element at index '0'
7450// :189:17: error: use of undefined value here causes illegal behavior
7451// :189:17: note: when computing vector element at index '1'
7452// :189:17: error: use of undefined value here causes illegal behavior
7453// :189:17: note: when computing vector element at index '1'
7454// :189:17: error: use of undefined value here causes illegal behavior
7455// :189:17: note: when computing vector element at index '0'
7456// :189:17: error: use of undefined value here causes illegal behavior
7457// :189:17: note: when computing vector element at index '0'
7458// :189:17: error: use of undefined value here causes illegal behavior
7459// :189:17: note: when computing vector element at index '0'
7460// :189:17: error: use of undefined value here causes illegal behavior
7461// :189:17: note: when computing vector element at index '0'
7462// :189:17: error: use of undefined value here causes illegal behavior
7463// :189:17: error: use of undefined value here causes illegal behavior
7464// :189:17: error: use of undefined value here causes illegal behavior
7465// :189:17: note: when computing vector element at index '0'
7466// :189:17: error: use of undefined value here causes illegal behavior
7467// :189:17: note: when computing vector element at index '0'
7468// :189:17: error: use of undefined value here causes illegal behavior
7469// :189:17: note: when computing vector element at index '0'
7470// :189:17: error: use of undefined value here causes illegal behavior
7471// :189:17: note: when computing vector element at index '0'
7472// :189:17: error: use of undefined value here causes illegal behavior
7473// :189:17: note: when computing vector element at index '1'
7474// :189:17: error: use of undefined value here causes illegal behavior
7475// :189:17: note: when computing vector element at index '1'
7476// :189:17: error: use of undefined value here causes illegal behavior
7477// :189:17: note: when computing vector element at index '0'
7478// :189:17: error: use of undefined value here causes illegal behavior
7479// :189:17: note: when computing vector element at index '0'
7480// :189:17: error: use of undefined value here causes illegal behavior
7481// :189:17: note: when computing vector element at index '0'
7482// :189:17: error: use of undefined value here causes illegal behavior
7483// :189:17: note: when computing vector element at index '0'
7484// :189:17: error: use of undefined value here causes illegal behavior
7485// :189:17: error: use of undefined value here causes illegal behavior
7486// :189:17: error: use of undefined value here causes illegal behavior
7487// :189:17: note: when computing vector element at index '0'
7488// :189:17: error: use of undefined value here causes illegal behavior
7489// :189:17: note: when computing vector element at index '0'
7490// :189:17: error: use of undefined value here causes illegal behavior
7491// :189:17: note: when computing vector element at index '0'
7492// :189:17: error: use of undefined value here causes illegal behavior
7493// :189:17: note: when computing vector element at index '0'
7494// :189:17: error: use of undefined value here causes illegal behavior
7495// :189:17: note: when computing vector element at index '1'
7496// :189:17: error: use of undefined value here causes illegal behavior
7497// :189:17: note: when computing vector element at index '1'
7498// :189:17: error: use of undefined value here causes illegal behavior
7499// :189:17: note: when computing vector element at index '0'
7500// :189:17: error: use of undefined value here causes illegal behavior
7501// :189:17: note: when computing vector element at index '0'
7502// :189:17: error: use of undefined value here causes illegal behavior
7503// :189:17: note: when computing vector element at index '0'
7504// :189:17: error: use of undefined value here causes illegal behavior
7505// :189:17: note: when computing vector element at index '0'
7506// :189:17: error: use of undefined value here causes illegal behavior
7507// :189:17: error: use of undefined value here causes illegal behavior
7508// :189:17: error: use of undefined value here causes illegal behavior
7509// :189:17: note: when computing vector element at index '0'
7510// :189:17: error: use of undefined value here causes illegal behavior
7511// :189:17: note: when computing vector element at index '0'
7512// :189:17: error: use of undefined value here causes illegal behavior
7513// :189:17: note: when computing vector element at index '0'
7514// :189:17: error: use of undefined value here causes illegal behavior
7515// :189:17: note: when computing vector element at index '0'
7516// :189:17: error: use of undefined value here causes illegal behavior
7517// :189:17: note: when computing vector element at index '1'
7518// :189:17: error: use of undefined value here causes illegal behavior
7519// :189:17: note: when computing vector element at index '1'
7520// :189:17: error: use of undefined value here causes illegal behavior
7521// :189:17: note: when computing vector element at index '0'
7522// :189:17: error: use of undefined value here causes illegal behavior
7523// :189:17: note: when computing vector element at index '0'
7524// :189:17: error: use of undefined value here causes illegal behavior
7525// :189:17: note: when computing vector element at index '0'
7526// :189:17: error: use of undefined value here causes illegal behavior
7527// :189:17: note: when computing vector element at index '0'
7528// :189:17: error: use of undefined value here causes illegal behavior
7529// :189:17: error: use of undefined value here causes illegal behavior
7530// :189:17: error: use of undefined value here causes illegal behavior
7531// :189:17: note: when computing vector element at index '0'
7532// :189:17: error: use of undefined value here causes illegal behavior
7533// :189:17: note: when computing vector element at index '0'
7534// :189:17: error: use of undefined value here causes illegal behavior
7535// :189:17: note: when computing vector element at index '0'
7536// :189:17: error: use of undefined value here causes illegal behavior
7537// :189:17: note: when computing vector element at index '0'
7538// :189:17: error: use of undefined value here causes illegal behavior
7539// :189:17: note: when computing vector element at index '1'
7540// :189:17: error: use of undefined value here causes illegal behavior
7541// :189:17: note: when computing vector element at index '1'
7542// :189:17: error: use of undefined value here causes illegal behavior
7543// :189:17: note: when computing vector element at index '0'
7544// :189:17: error: use of undefined value here causes illegal behavior
7545// :189:17: note: when computing vector element at index '0'
7546// :189:17: error: use of undefined value here causes illegal behavior
7547// :189:17: note: when computing vector element at index '0'
7548// :189:17: error: use of undefined value here causes illegal behavior
7549// :189:17: note: when computing vector element at index '0'
7550// :189:21: error: use of undefined value here causes illegal behavior
7551// :189:21: note: when computing vector element at index '0'
7552// :189:21: error: use of undefined value here causes illegal behavior
7553// :189:21: note: when computing vector element at index '0'
7554// :189:21: error: use of undefined value here causes illegal behavior
7555// :189:21: note: when computing vector element at index '0'
7556// :189:21: error: use of undefined value here causes illegal behavior
7557// :189:21: note: when computing vector element at index '0'
7558// :189:21: error: use of undefined value here causes illegal behavior
7559// :189:21: note: when computing vector element at index '0'
7560// :189:21: error: use of undefined value here causes illegal behavior
7561// :189:21: note: when computing vector element at index '0'
7562// :189:21: error: use of undefined value here causes illegal behavior
7563// :189:21: note: when computing vector element at index '0'
7564// :189:21: error: use of undefined value here causes illegal behavior
7565// :189:21: note: when computing vector element at index '0'
7566// :189:21: error: use of undefined value here causes illegal behavior
7567// :189:21: note: when computing vector element at index '0'
7568// :189:21: error: use of undefined value here causes illegal behavior
7569// :189:21: note: when computing vector element at index '0'
7570// :189:21: error: use of undefined value here causes illegal behavior
7571// :189:21: note: when computing vector element at index '0'
7572// :189:21: error: use of undefined value here causes illegal behavior
7573// :189:21: note: when computing vector element at index '0'