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
1485914859 try sema.addDivByZeroSafety(block, src, resolved_type, maybe_rhs_val, casted_rhs, is_int);
1486014860 }
1486114861
14862 const air_tag = if (is_int) blk: {
14862 const air_tag: Air.Inst.Tag = if (is_int) blk: {
1486314863 if (lhs_ty.isSignedInt(zcu) or rhs_ty.isSignedInt(zcu)) {
1486414864 return sema.fail(
1486514865 block,
......@@ -14868,10 +14868,10 @@ fn zirDiv(sema: *Sema, block: *Block, inst: Zir.Inst.Index) CompileError!Air.Ins
1486814868 .{ lhs_ty.fmt(pt), rhs_ty.fmt(pt) },
1486914869 );
1487014870 }
14871 break :blk Air.Inst.Tag.div_trunc;
14871 break :blk .div_trunc;
1487214872 } else switch (block.float_mode) {
14873 .optimized => Air.Inst.Tag.div_float_optimized,
14874 .strict => Air.Inst.Tag.div_float,
14873 .optimized => .div_float_optimized,
14874 .strict => .div_float,
1487514875 };
1487614876 return block.addBinOp(air_tag, casted_lhs, casted_rhs);
1487714877}
src/Zcu/PerThread.zig+2-2
......@@ -3668,8 +3668,8 @@ pub fn unionValue(pt: Zcu.PerThread, union_ty: Type, tag: Value, val: Value) All
36683668pub fn aggregateValue(pt: Zcu.PerThread, ty: Type, elems: []const InternPool.Index) Allocator.Error!Value {
36693669 for (elems) |elem| {
36703670 if (!Value.fromInterned(elem).isUndef(pt.zcu)) break;
3671 } else if (elems.len > 0) { // all-undef
3672 return pt.undefValue(ty);
3671 } else if (elems.len > 0) {
3672 return pt.undefValue(ty); // all-undef
36733673 }
36743674 return .fromInterned(try pt.intern(.{ .aggregate = .{
36753675 .ty = ty.toIntern(),
test/cases/compile_errors/undef_arith_is_illegal.zig+7238-7244
......@@ -4,7 +4,7 @@
44
55comptime {
66 // Total expected errors:
7 // 29*22*6 + 26*22*5 = 6688
7 // 29*15*6 + 26*14*5 = 4256
88
99 testType(u8);
1010 testType(i8);
......@@ -21,28 +21,22 @@ comptime {
2121}
2222
2323fn testType(comptime Scalar: type) void {
24 testInner(Scalar, undefined, 1);
25 testInner(Scalar, undefined, undefined);
26 testInner(@Vector(2, 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 });
24 // zig fmt: off
25 testInner(Scalar, undefined, 1 );
26 testInner(Scalar, undefined, undefined );
4527 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
4640}
4741
4842/// 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 {
6559 const a: T = maybe_defined;
6660 var b: T = maybe_defined;
6761
68 // undef LHS, comptime-known LHS
62 // undef LHS, comptime-known RHS
6963 comptime {
7064 @setFloatMode(mode);
7165 _ = u / a;
......@@ -95,7 +89,7 @@ fn testInner(comptime T: type, comptime u: T, comptime maybe_defined: T) void {
9589 _ = @rem(u, a);
9690 }
9791
98 // undef LHS, runtime-known LHS
92 // undef LHS, runtime-known RHS
9993 comptime {
10094 @setFloatMode(mode);
10195 _ = u / b;
......@@ -195,6914 +189,7226 @@ const std = @import("std");
195189
196190// error
197191//
198// :71:17: error: use of undefined value here causes illegal behavior
199// :71:17: error: use of undefined value here causes illegal behavior
200// :71:17: error: use of undefined value here causes illegal behavior
201// :71:17: note: when computing vector element at index '0'
202// :71:17: error: use of undefined value here causes illegal behavior
203// :71:17: note: when computing vector element at index '0'
204// :71:17: error: use of undefined value here causes illegal behavior
205// :71:17: note: when computing vector element at index '0'
206// :71:17: error: use of undefined value here causes illegal behavior
207// :71:17: note: when computing vector element at index '0'
208// :71:17: error: use of undefined value here causes illegal behavior
209// :71:17: note: when computing vector element at index '1'
210// :71:17: error: use of undefined value here causes illegal behavior
211// :71:17: note: when computing vector element at index '1'
212// :71:17: error: use of undefined value here causes illegal behavior
213// :71:17: note: when computing vector element at index '0'
214// :71:17: error: use of undefined value here causes illegal behavior
215// :71:17: note: when computing vector element at index '0'
216// :71:17: error: use of undefined value here causes illegal behavior
217// :71:17: note: when computing vector element at index '0'
218// :71:17: error: use of undefined value here causes illegal behavior
219// :71:17: note: when computing vector element at index '0'
220// :71:17: error: use of undefined value here causes illegal behavior
221// :71:17: error: use of undefined value here causes illegal behavior
222// :71:17: error: use of undefined value here causes illegal behavior
223// :71:17: note: when computing vector element at index '0'
224// :71:17: error: use of undefined value here causes illegal behavior
225// :71:17: note: when computing vector element at index '0'
226// :71:17: error: use of undefined value here causes illegal behavior
227// :71:17: note: when computing vector element at index '0'
228// :71:17: error: use of undefined value here causes illegal behavior
229// :71:17: note: when computing vector element at index '0'
230// :71:17: error: use of undefined value here causes illegal behavior
231// :71:17: note: when computing vector element at index '1'
232// :71:17: error: use of undefined value here causes illegal behavior
233// :71:17: note: when computing vector element at index '1'
234// :71:17: error: use of undefined value here causes illegal behavior
235// :71:17: note: when computing vector element at index '0'
236// :71:17: error: use of undefined value here causes illegal behavior
237// :71:17: note: when computing vector element at index '0'
238// :71:17: error: use of undefined value here causes illegal behavior
239// :71:17: note: when computing vector element at index '0'
240// :71:17: error: use of undefined value here causes illegal behavior
241// :71:17: note: when computing vector element at index '0'
242// :71:17: error: use of undefined value here causes illegal behavior
243// :71:17: error: use of undefined value here causes illegal behavior
244// :71:17: error: use of undefined value here causes illegal behavior
245// :71:17: note: when computing vector element at index '0'
246// :71:17: error: use of undefined value here causes illegal behavior
247// :71:17: note: when computing vector element at index '0'
248// :71:17: error: use of undefined value here causes illegal behavior
249// :71:17: note: when computing vector element at index '0'
250// :71:17: error: use of undefined value here causes illegal behavior
251// :71:17: note: when computing vector element at index '0'
252// :71:17: error: use of undefined value here causes illegal behavior
253// :71:17: note: when computing vector element at index '1'
254// :71:17: error: use of undefined value here causes illegal behavior
255// :71:17: note: when computing vector element at index '1'
256// :71:17: error: use of undefined value here causes illegal behavior
257// :71:17: note: when computing vector element at index '0'
258// :71:17: error: use of undefined value here causes illegal behavior
259// :71:17: note: when computing vector element at index '0'
260// :71:17: error: use of undefined value here causes illegal behavior
261// :71:17: note: when computing vector element at index '0'
262// :71:17: error: use of undefined value here causes illegal behavior
263// :71:17: note: when computing vector element at index '0'
264// :71:17: error: use of undefined value here causes illegal behavior
265// :71:17: error: use of undefined value here causes illegal behavior
266// :71:17: error: use of undefined value here causes illegal behavior
267// :71:17: note: when computing vector element at index '0'
268// :71:17: error: use of undefined value here causes illegal behavior
269// :71:17: note: when computing vector element at index '0'
270// :71:17: error: use of undefined value here causes illegal behavior
271// :71:17: note: when computing vector element at index '0'
272// :71:17: error: use of undefined value here causes illegal behavior
273// :71:17: note: when computing vector element at index '0'
274// :71:17: error: use of undefined value here causes illegal behavior
275// :71:17: note: when computing vector element at index '1'
276// :71:17: error: use of undefined value here causes illegal behavior
277// :71:17: note: when computing vector element at index '1'
278// :71:17: error: use of undefined value here causes illegal behavior
279// :71:17: note: when computing vector element at index '0'
280// :71:17: error: use of undefined value here causes illegal behavior
281// :71:17: note: when computing vector element at index '0'
282// :71:17: error: use of undefined value here causes illegal behavior
283// :71:17: note: when computing vector element at index '0'
284// :71:17: error: use of undefined value here causes illegal behavior
285// :71:17: note: when computing vector element at index '0'
286// :71:17: error: use of undefined value here causes illegal behavior
287// :71:17: error: use of undefined value here causes illegal behavior
288// :71:17: error: use of undefined value here causes illegal behavior
289// :71:17: note: when computing vector element at index '0'
290// :71:17: error: use of undefined value here causes illegal behavior
291// :71:17: note: when computing vector element at index '0'
292// :71:17: error: use of undefined value here causes illegal behavior
293// :71:17: note: when computing vector element at index '0'
294// :71:17: error: use of undefined value here causes illegal behavior
295// :71:17: note: when computing vector element at index '0'
296// :71:17: error: use of undefined value here causes illegal behavior
297// :71:17: note: when computing vector element at index '1'
298// :71:17: error: use of undefined value here causes illegal behavior
299// :71:17: note: when computing vector element at index '1'
300// :71:17: error: use of undefined value here causes illegal behavior
301// :71:17: note: when computing vector element at index '0'
302// :71:17: error: use of undefined value here causes illegal behavior
303// :71:17: note: when computing vector element at index '0'
304// :71:17: error: use of undefined value here causes illegal behavior
305// :71:17: note: when computing vector element at index '0'
306// :71:17: error: use of undefined value here causes illegal behavior
307// :71:17: note: when computing vector element at index '0'
308// :71:17: error: use of undefined value here causes illegal behavior
309// :71:17: error: use of undefined value here causes illegal behavior
310// :71:17: error: use of undefined value here causes illegal behavior
311// :71:17: note: when computing vector element at index '0'
312// :71:17: error: use of undefined value here causes illegal behavior
313// :71:17: note: when computing vector element at index '0'
314// :71:17: error: use of undefined value here causes illegal behavior
315// :71:17: note: when computing vector element at index '0'
316// :71:17: error: use of undefined value here causes illegal behavior
317// :71:17: note: when computing vector element at index '0'
318// :71:17: error: use of undefined value here causes illegal behavior
319// :71:17: note: when computing vector element at index '1'
320// :71:17: error: use of undefined value here causes illegal behavior
321// :71:17: note: when computing vector element at index '1'
322// :71:17: error: use of undefined value here causes illegal behavior
323// :71:17: note: when computing vector element at index '0'
324// :71:17: error: use of undefined value here causes illegal behavior
325// :71:17: note: when computing vector element at index '0'
326// :71:17: error: use of undefined value here causes illegal behavior
327// :71:17: note: when computing vector element at index '0'
328// :71:17: error: use of undefined value here causes illegal behavior
329// :71:17: note: when computing vector element at index '0'
330// :71:17: error: use of undefined value here causes illegal behavior
331// :71:17: error: use of undefined value here causes illegal behavior
332// :71:17: error: use of undefined value here causes illegal behavior
333// :71:17: note: when computing vector element at index '0'
334// :71:17: error: use of undefined value here causes illegal behavior
335// :71:17: note: when computing vector element at index '0'
336// :71:17: error: use of undefined value here causes illegal behavior
337// :71:17: note: when computing vector element at index '0'
338// :71:17: error: use of undefined value here causes illegal behavior
339// :71:17: note: when computing vector element at index '0'
340// :71:17: error: use of undefined value here causes illegal behavior
341// :71:17: note: when computing vector element at index '1'
342// :71:17: error: use of undefined value here causes illegal behavior
343// :71:17: note: when computing vector element at index '1'
344// :71:17: error: use of undefined value here causes illegal behavior
345// :71:17: note: when computing vector element at index '0'
346// :71:17: error: use of undefined value here causes illegal behavior
347// :71:17: note: when computing vector element at index '0'
348// :71:17: error: use of undefined value here causes illegal behavior
349// :71:17: note: when computing vector element at index '0'
350// :71:17: error: use of undefined value here causes illegal behavior
351// :71:17: note: when computing vector element at index '0'
352// :71:17: error: use of undefined value here causes illegal behavior
353// :71:17: error: use of undefined value here causes illegal behavior
354// :71:17: error: use of undefined value here causes illegal behavior
355// :71:17: note: when computing vector element at index '0'
356// :71:17: error: use of undefined value here causes illegal behavior
357// :71:17: note: when computing vector element at index '0'
358// :71:17: error: use of undefined value here causes illegal behavior
359// :71:17: note: when computing vector element at index '0'
360// :71:17: error: use of undefined value here causes illegal behavior
361// :71:17: note: when computing vector element at index '0'
362// :71:17: error: use of undefined value here causes illegal behavior
363// :71:17: note: when computing vector element at index '1'
364// :71:17: error: use of undefined value here causes illegal behavior
365// :71:17: note: when computing vector element at index '1'
366// :71:17: error: use of undefined value here causes illegal behavior
367// :71:17: note: when computing vector element at index '0'
368// :71:17: error: use of undefined value here causes illegal behavior
369// :71:17: note: when computing vector element at index '0'
370// :71:17: error: use of undefined value here causes illegal behavior
371// :71:17: note: when computing vector element at index '0'
372// :71:17: error: use of undefined value here causes illegal behavior
373// :71:17: note: when computing vector element at index '0'
374// :71:17: error: use of undefined value here causes illegal behavior
375// :71:17: error: use of undefined value here causes illegal behavior
376// :71:17: error: use of undefined value here causes illegal behavior
377// :71:17: note: when computing vector element at index '0'
378// :71:17: error: use of undefined value here causes illegal behavior
379// :71:17: note: when computing vector element at index '0'
380// :71:17: error: use of undefined value here causes illegal behavior
381// :71:17: note: when computing vector element at index '0'
382// :71:17: error: use of undefined value here causes illegal behavior
383// :71:17: note: when computing vector element at index '0'
384// :71:17: error: use of undefined value here causes illegal behavior
385// :71:17: note: when computing vector element at index '1'
386// :71:17: error: use of undefined value here causes illegal behavior
387// :71:17: note: when computing vector element at index '1'
388// :71:17: error: use of undefined value here causes illegal behavior
389// :71:17: note: when computing vector element at index '0'
390// :71:17: error: use of undefined value here causes illegal behavior
391// :71:17: note: when computing vector element at index '0'
392// :71:17: error: use of undefined value here causes illegal behavior
393// :71:17: note: when computing vector element at index '0'
394// :71:17: error: use of undefined value here causes illegal behavior
395// :71:17: note: when computing vector element at index '0'
396// :71:17: error: use of undefined value here causes illegal behavior
397// :71:17: error: use of undefined value here causes illegal behavior
398// :71:17: error: use of undefined value here causes illegal behavior
399// :71:17: note: when computing vector element at index '0'
400// :71:17: error: use of undefined value here causes illegal behavior
401// :71:17: note: when computing vector element at index '0'
402// :71:17: error: use of undefined value here causes illegal behavior
403// :71:17: note: when computing vector element at index '0'
404// :71:17: error: use of undefined value here causes illegal behavior
405// :71:17: note: when computing vector element at index '0'
406// :71:17: error: use of undefined value here causes illegal behavior
407// :71:17: note: when computing vector element at index '1'
408// :71:17: error: use of undefined value here causes illegal behavior
409// :71:17: note: when computing vector element at index '1'
410// :71:17: error: use of undefined value here causes illegal behavior
411// :71:17: note: when computing vector element at index '0'
412// :71:17: error: use of undefined value here causes illegal behavior
413// :71:17: note: when computing vector element at index '0'
414// :71:17: error: use of undefined value here causes illegal behavior
415// :71:17: note: when computing vector element at index '0'
416// :71:17: error: use of undefined value here causes illegal behavior
417// :71:17: note: when computing vector element at index '0'
418// :71:17: error: use of undefined value here causes illegal behavior
419// :71:17: error: use of undefined value here causes illegal behavior
420// :71:17: error: use of undefined value here causes illegal behavior
421// :71:17: note: when computing vector element at index '0'
422// :71:17: error: use of undefined value here causes illegal behavior
423// :71:17: note: when computing vector element at index '0'
424// :71:17: error: use of undefined value here causes illegal behavior
425// :71:17: note: when computing vector element at index '0'
426// :71:17: error: use of undefined value here causes illegal behavior
427// :71:17: note: when computing vector element at index '0'
428// :71:17: error: use of undefined value here causes illegal behavior
429// :71:17: note: when computing vector element at index '1'
430// :71:17: error: use of undefined value here causes illegal behavior
431// :71:17: note: when computing vector element at index '1'
432// :71:17: error: use of undefined value here causes illegal behavior
433// :71:17: note: when computing vector element at index '0'
434// :71:17: error: use of undefined value here causes illegal behavior
435// :71:17: note: when computing vector element at index '0'
436// :71:17: error: use of undefined value here causes illegal behavior
437// :71:17: note: when computing vector element at index '0'
438// :71:17: error: use of undefined value here causes illegal behavior
439// :71:17: note: when computing vector element at index '0'
440// :71:21: error: use of undefined value here causes illegal behavior
441// :71:21: note: when computing vector element at index '0'
442// :71:21: error: use of undefined value here causes illegal behavior
443// :71:21: note: when computing vector element at index '0'
444// :71:21: error: use of undefined value here causes illegal behavior
445// :71:21: note: when computing vector element at index '0'
446// :71:21: error: use of undefined value here causes illegal behavior
447// :71:21: note: when computing vector element at index '0'
448// :71:21: error: use of undefined value here causes illegal behavior
449// :71:21: note: when computing vector element at index '0'
450// :71:21: error: use of undefined value here causes illegal behavior
451// :71:21: note: when computing vector element at index '0'
452// :71:21: error: use of undefined value here causes illegal behavior
453// :71:21: note: when computing vector element at index '0'
454// :71:21: error: use of undefined value here causes illegal behavior
455// :71:21: note: when computing vector element at index '0'
456// :71:21: error: use of undefined value here causes illegal behavior
457// :71:21: note: when computing vector element at index '0'
458// :71:21: error: use of undefined value here causes illegal behavior
459// :71:21: note: when computing vector element at index '0'
460// :71:21: error: use of undefined value here causes illegal behavior
461// :71:21: note: when computing vector element at index '0'
462// :71:21: error: use of undefined value here causes illegal behavior
463// :71:21: note: when computing vector element at index '0'
464// :71:21: error: use of undefined value here causes illegal behavior
465// :71:21: note: when computing vector element at index '0'
466// :71:21: error: use of undefined value here causes illegal behavior
467// :71:21: note: when computing vector element at index '0'
468// :71:21: error: use of undefined value here causes illegal behavior
469// :71:21: note: when computing vector element at index '0'
470// :71:21: error: use of undefined value here causes illegal behavior
471// :71:21: note: when computing vector element at index '0'
472// :71:21: error: use of undefined value here causes illegal behavior
473// :71:21: note: when computing vector element at index '0'
474// :71:21: error: use of undefined value here causes illegal behavior
475// :71:21: note: when computing vector element at index '0'
476// :71:21: error: use of undefined value here causes illegal behavior
477// :71:21: note: when computing vector element at index '0'
478// :71:21: error: use of undefined value here causes illegal behavior
479// :71:21: note: when computing vector element at index '0'
480// :71:21: error: use of undefined value here causes illegal behavior
481// :71:21: note: when computing vector element at index '0'
482// :71:21: error: use of undefined value here causes illegal behavior
483// :71:21: note: when computing vector element at index '0'
484// :75:27: error: use of undefined value here causes illegal behavior
485// :75:27: error: use of undefined value here causes illegal behavior
486// :75:27: error: use of undefined value here causes illegal behavior
487// :75:27: note: when computing vector element at index '0'
488// :75:27: error: use of undefined value here causes illegal behavior
489// :75:27: note: when computing vector element at index '0'
490// :75:27: error: use of undefined value here causes illegal behavior
491// :75:27: note: when computing vector element at index '0'
492// :75:27: error: use of undefined value here causes illegal behavior
493// :75:27: note: when computing vector element at index '0'
494// :75:27: error: use of undefined value here causes illegal behavior
495// :75:27: note: when computing vector element at index '1'
496// :75:27: error: use of undefined value here causes illegal behavior
497// :75:27: note: when computing vector element at index '1'
498// :75:27: error: use of undefined value here causes illegal behavior
499// :75:27: note: when computing vector element at index '0'
500// :75:27: error: use of undefined value here causes illegal behavior
501// :75:27: note: when computing vector element at index '0'
502// :75:27: error: use of undefined value here causes illegal behavior
503// :75:27: note: when computing vector element at index '0'
504// :75:27: error: use of undefined value here causes illegal behavior
505// :75:27: note: when computing vector element at index '0'
506// :75:27: error: use of undefined value here causes illegal behavior
507// :75:27: error: use of undefined value here causes illegal behavior
508// :75:27: error: use of undefined value here causes illegal behavior
509// :75:27: note: when computing vector element at index '0'
510// :75:27: error: use of undefined value here causes illegal behavior
511// :75:27: note: when computing vector element at index '0'
512// :75:27: error: use of undefined value here causes illegal behavior
513// :75:27: note: when computing vector element at index '0'
514// :75:27: error: use of undefined value here causes illegal behavior
515// :75:27: note: when computing vector element at index '0'
516// :75:27: error: use of undefined value here causes illegal behavior
517// :75:27: note: when computing vector element at index '1'
518// :75:27: error: use of undefined value here causes illegal behavior
519// :75:27: note: when computing vector element at index '1'
520// :75:27: error: use of undefined value here causes illegal behavior
521// :75:27: note: when computing vector element at index '0'
522// :75:27: error: use of undefined value here causes illegal behavior
523// :75:27: note: when computing vector element at index '0'
524// :75:27: error: use of undefined value here causes illegal behavior
525// :75:27: note: when computing vector element at index '0'
526// :75:27: error: use of undefined value here causes illegal behavior
527// :75:27: note: when computing vector element at index '0'
528// :75:27: error: use of undefined value here causes illegal behavior
529// :75:27: error: use of undefined value here causes illegal behavior
530// :75:27: error: use of undefined value here causes illegal behavior
531// :75:27: note: when computing vector element at index '0'
532// :75:27: error: use of undefined value here causes illegal behavior
533// :75:27: note: when computing vector element at index '0'
534// :75:27: error: use of undefined value here causes illegal behavior
535// :75:27: note: when computing vector element at index '0'
536// :75:27: error: use of undefined value here causes illegal behavior
537// :75:27: note: when computing vector element at index '0'
538// :75:27: error: use of undefined value here causes illegal behavior
539// :75:27: note: when computing vector element at index '1'
540// :75:27: error: use of undefined value here causes illegal behavior
541// :75:27: note: when computing vector element at index '1'
542// :75:27: error: use of undefined value here causes illegal behavior
543// :75:27: note: when computing vector element at index '0'
544// :75:27: error: use of undefined value here causes illegal behavior
545// :75:27: note: when computing vector element at index '0'
546// :75:27: error: use of undefined value here causes illegal behavior
547// :75:27: note: when computing vector element at index '0'
548// :75:27: error: use of undefined value here causes illegal behavior
549// :75:27: note: when computing vector element at index '0'
550// :75:27: error: use of undefined value here causes illegal behavior
551// :75:27: error: use of undefined value here causes illegal behavior
552// :75:27: error: use of undefined value here causes illegal behavior
553// :75:27: note: when computing vector element at index '0'
554// :75:27: error: use of undefined value here causes illegal behavior
555// :75:27: note: when computing vector element at index '0'
556// :75:27: error: use of undefined value here causes illegal behavior
557// :75:27: note: when computing vector element at index '0'
558// :75:27: error: use of undefined value here causes illegal behavior
559// :75:27: note: when computing vector element at index '0'
560// :75:27: error: use of undefined value here causes illegal behavior
561// :75:27: note: when computing vector element at index '1'
562// :75:27: error: use of undefined value here causes illegal behavior
563// :75:27: note: when computing vector element at index '1'
564// :75:27: error: use of undefined value here causes illegal behavior
565// :75:27: note: when computing vector element at index '0'
566// :75:27: error: use of undefined value here causes illegal behavior
567// :75:27: note: when computing vector element at index '0'
568// :75:27: error: use of undefined value here causes illegal behavior
569// :75:27: note: when computing vector element at index '0'
570// :75:27: error: use of undefined value here causes illegal behavior
571// :75:27: note: when computing vector element at index '0'
572// :75:27: error: use of undefined value here causes illegal behavior
573// :75:27: error: use of undefined value here causes illegal behavior
574// :75:27: error: use of undefined value here causes illegal behavior
575// :75:27: note: when computing vector element at index '0'
576// :75:27: error: use of undefined value here causes illegal behavior
577// :75:27: note: when computing vector element at index '0'
578// :75:27: error: use of undefined value here causes illegal behavior
579// :75:27: note: when computing vector element at index '0'
580// :75:27: error: use of undefined value here causes illegal behavior
581// :75:27: note: when computing vector element at index '0'
582// :75:27: error: use of undefined value here causes illegal behavior
583// :75:27: note: when computing vector element at index '1'
584// :75:27: error: use of undefined value here causes illegal behavior
585// :75:27: note: when computing vector element at index '1'
586// :75:27: error: use of undefined value here causes illegal behavior
587// :75:27: note: when computing vector element at index '0'
588// :75:27: error: use of undefined value here causes illegal behavior
589// :75:27: note: when computing vector element at index '0'
590// :75:27: error: use of undefined value here causes illegal behavior
591// :75:27: note: when computing vector element at index '0'
592// :75:27: error: use of undefined value here causes illegal behavior
593// :75:27: note: when computing vector element at index '0'
594// :75:27: error: use of undefined value here causes illegal behavior
595// :75:27: error: use of undefined value here causes illegal behavior
596// :75:27: error: use of undefined value here causes illegal behavior
597// :75:27: note: when computing vector element at index '0'
598// :75:27: error: use of undefined value here causes illegal behavior
599// :75:27: note: when computing vector element at index '0'
600// :75:27: error: use of undefined value here causes illegal behavior
601// :75:27: note: when computing vector element at index '0'
602// :75:27: error: use of undefined value here causes illegal behavior
603// :75:27: note: when computing vector element at index '0'
604// :75:27: error: use of undefined value here causes illegal behavior
605// :75:27: note: when computing vector element at index '1'
606// :75:27: error: use of undefined value here causes illegal behavior
607// :75:27: note: when computing vector element at index '1'
608// :75:27: error: use of undefined value here causes illegal behavior
609// :75:27: note: when computing vector element at index '0'
610// :75:27: error: use of undefined value here causes illegal behavior
611// :75:27: note: when computing vector element at index '0'
612// :75:27: error: use of undefined value here causes illegal behavior
613// :75:27: note: when computing vector element at index '0'
614// :75:27: error: use of undefined value here causes illegal behavior
615// :75:27: note: when computing vector element at index '0'
616// :75:27: error: use of undefined value here causes illegal behavior
617// :75:27: error: use of undefined value here causes illegal behavior
618// :75:27: error: use of undefined value here causes illegal behavior
619// :75:27: note: when computing vector element at index '0'
620// :75:27: error: use of undefined value here causes illegal behavior
621// :75:27: note: when computing vector element at index '0'
622// :75:27: error: use of undefined value here causes illegal behavior
623// :75:27: note: when computing vector element at index '0'
624// :75:27: error: use of undefined value here causes illegal behavior
625// :75:27: note: when computing vector element at index '0'
626// :75:27: error: use of undefined value here causes illegal behavior
627// :75:27: note: when computing vector element at index '1'
628// :75:27: error: use of undefined value here causes illegal behavior
629// :75:27: note: when computing vector element at index '1'
630// :75:27: error: use of undefined value here causes illegal behavior
631// :75:27: note: when computing vector element at index '0'
632// :75:27: error: use of undefined value here causes illegal behavior
633// :75:27: note: when computing vector element at index '0'
634// :75:27: error: use of undefined value here causes illegal behavior
635// :75:27: note: when computing vector element at index '0'
636// :75:27: error: use of undefined value here causes illegal behavior
637// :75:27: note: when computing vector element at index '0'
638// :75:27: error: use of undefined value here causes illegal behavior
639// :75:27: error: use of undefined value here causes illegal behavior
640// :75:27: error: use of undefined value here causes illegal behavior
641// :75:27: note: when computing vector element at index '0'
642// :75:27: error: use of undefined value here causes illegal behavior
643// :75:27: note: when computing vector element at index '0'
644// :75:27: error: use of undefined value here causes illegal behavior
645// :75:27: note: when computing vector element at index '0'
646// :75:27: error: use of undefined value here causes illegal behavior
647// :75:27: note: when computing vector element at index '0'
648// :75:27: error: use of undefined value here causes illegal behavior
649// :75:27: note: when computing vector element at index '1'
650// :75:27: error: use of undefined value here causes illegal behavior
651// :75:27: note: when computing vector element at index '1'
652// :75:27: error: use of undefined value here causes illegal behavior
653// :75:27: note: when computing vector element at index '0'
654// :75:27: error: use of undefined value here causes illegal behavior
655// :75:27: note: when computing vector element at index '0'
656// :75:27: error: use of undefined value here causes illegal behavior
657// :75:27: note: when computing vector element at index '0'
658// :75:27: error: use of undefined value here causes illegal behavior
659// :75:27: note: when computing vector element at index '0'
660// :75:27: error: use of undefined value here causes illegal behavior
661// :75:27: error: use of undefined value here causes illegal behavior
662// :75:27: error: use of undefined value here causes illegal behavior
663// :75:27: note: when computing vector element at index '0'
664// :75:27: error: use of undefined value here causes illegal behavior
665// :75:27: note: when computing vector element at index '0'
666// :75:27: error: use of undefined value here causes illegal behavior
667// :75:27: note: when computing vector element at index '0'
668// :75:27: error: use of undefined value here causes illegal behavior
669// :75:27: note: when computing vector element at index '0'
670// :75:27: error: use of undefined value here causes illegal behavior
671// :75:27: note: when computing vector element at index '1'
672// :75:27: error: use of undefined value here causes illegal behavior
673// :75:27: note: when computing vector element at index '1'
674// :75:27: error: use of undefined value here causes illegal behavior
675// :75:27: note: when computing vector element at index '0'
676// :75:27: error: use of undefined value here causes illegal behavior
677// :75:27: note: when computing vector element at index '0'
678// :75:27: error: use of undefined value here causes illegal behavior
679// :75:27: note: when computing vector element at index '0'
680// :75:27: error: use of undefined value here causes illegal behavior
681// :75:27: note: when computing vector element at index '0'
682// :75:27: error: use of undefined value here causes illegal behavior
683// :75:27: error: use of undefined value here causes illegal behavior
684// :75:27: error: use of undefined value here causes illegal behavior
685// :75:27: note: when computing vector element at index '0'
686// :75:27: error: use of undefined value here causes illegal behavior
687// :75:27: note: when computing vector element at index '0'
688// :75:27: error: use of undefined value here causes illegal behavior
689// :75:27: note: when computing vector element at index '0'
690// :75:27: error: use of undefined value here causes illegal behavior
691// :75:27: note: when computing vector element at index '0'
692// :75:27: error: use of undefined value here causes illegal behavior
693// :75:27: note: when computing vector element at index '1'
694// :75:27: error: use of undefined value here causes illegal behavior
695// :75:27: note: when computing vector element at index '1'
696// :75:27: error: use of undefined value here causes illegal behavior
697// :75:27: note: when computing vector element at index '0'
698// :75:27: error: use of undefined value here causes illegal behavior
699// :75:27: note: when computing vector element at index '0'
700// :75:27: error: use of undefined value here causes illegal behavior
701// :75:27: note: when computing vector element at index '0'
702// :75:27: error: use of undefined value here causes illegal behavior
703// :75:27: note: when computing vector element at index '0'
704// :75:27: error: use of undefined value here causes illegal behavior
705// :75:27: error: use of undefined value here causes illegal behavior
706// :75:27: error: use of undefined value here causes illegal behavior
707// :75:27: note: when computing vector element at index '0'
708// :75:27: error: use of undefined value here causes illegal behavior
709// :75:27: note: when computing vector element at index '0'
710// :75:27: error: use of undefined value here causes illegal behavior
711// :75:27: note: when computing vector element at index '0'
712// :75:27: error: use of undefined value here causes illegal behavior
713// :75:27: note: when computing vector element at index '0'
714// :75:27: error: use of undefined value here causes illegal behavior
715// :75:27: note: when computing vector element at index '1'
716// :75:27: error: use of undefined value here causes illegal behavior
717// :75:27: note: when computing vector element at index '1'
718// :75:27: error: use of undefined value here causes illegal behavior
719// :75:27: note: when computing vector element at index '0'
720// :75:27: error: use of undefined value here causes illegal behavior
721// :75:27: note: when computing vector element at index '0'
722// :75:27: error: use of undefined value here causes illegal behavior
723// :75:27: note: when computing vector element at index '0'
724// :75:27: error: use of undefined value here causes illegal behavior
725// :75:27: note: when computing vector element at index '0'
726// :75:30: error: use of undefined value here causes illegal behavior
727// :75:30: note: when computing vector element at index '0'
728// :75:30: error: use of undefined value here causes illegal behavior
729// :75:30: note: when computing vector element at index '0'
730// :75:30: error: use of undefined value here causes illegal behavior
731// :75:30: note: when computing vector element at index '0'
732// :75:30: error: use of undefined value here causes illegal behavior
733// :75:30: note: when computing vector element at index '0'
734// :75:30: error: use of undefined value here causes illegal behavior
735// :75:30: note: when computing vector element at index '0'
736// :75:30: error: use of undefined value here causes illegal behavior
737// :75:30: note: when computing vector element at index '0'
738// :75:30: error: use of undefined value here causes illegal behavior
739// :75:30: note: when computing vector element at index '0'
740// :75:30: error: use of undefined value here causes illegal behavior
741// :75:30: note: when computing vector element at index '0'
742// :75:30: error: use of undefined value here causes illegal behavior
743// :75:30: note: when computing vector element at index '0'
744// :75:30: error: use of undefined value here causes illegal behavior
745// :75:30: note: when computing vector element at index '0'
746// :75:30: error: use of undefined value here causes illegal behavior
747// :75:30: note: when computing vector element at index '0'
748// :75:30: error: use of undefined value here causes illegal behavior
749// :75:30: note: when computing vector element at index '0'
750// :75:30: error: use of undefined value here causes illegal behavior
751// :75:30: note: when computing vector element at index '0'
752// :75:30: error: use of undefined value here causes illegal behavior
753// :75:30: note: when computing vector element at index '0'
754// :75:30: error: use of undefined value here causes illegal behavior
755// :75:30: note: when computing vector element at index '0'
756// :75:30: error: use of undefined value here causes illegal behavior
757// :75:30: note: when computing vector element at index '0'
758// :75:30: error: use of undefined value here causes illegal behavior
759// :75:30: note: when computing vector element at index '0'
760// :75:30: error: use of undefined value here causes illegal behavior
761// :75:30: note: when computing vector element at index '0'
762// :75:30: error: use of undefined value here causes illegal behavior
763// :75:30: note: when computing vector element at index '0'
764// :75:30: error: use of undefined value here causes illegal behavior
765// :75:30: note: when computing vector element at index '0'
766// :75:30: error: use of undefined value here causes illegal behavior
767// :75:30: note: when computing vector element at index '0'
768// :75:30: error: use of undefined value here causes illegal behavior
769// :75:30: note: when computing vector element at index '0'
770// :79:27: error: use of undefined value here causes illegal behavior
771// :79:27: error: use of undefined value here causes illegal behavior
772// :79:27: error: use of undefined value here causes illegal behavior
773// :79:27: note: when computing vector element at index '0'
774// :79:27: error: use of undefined value here causes illegal behavior
775// :79:27: note: when computing vector element at index '0'
776// :79:27: error: use of undefined value here causes illegal behavior
777// :79:27: note: when computing vector element at index '0'
778// :79:27: error: use of undefined value here causes illegal behavior
779// :79:27: note: when computing vector element at index '0'
780// :79:27: error: use of undefined value here causes illegal behavior
781// :79:27: note: when computing vector element at index '1'
782// :79:27: error: use of undefined value here causes illegal behavior
783// :79:27: note: when computing vector element at index '1'
784// :79:27: error: use of undefined value here causes illegal behavior
785// :79:27: note: when computing vector element at index '0'
786// :79:27: error: use of undefined value here causes illegal behavior
787// :79:27: note: when computing vector element at index '0'
788// :79:27: error: use of undefined value here causes illegal behavior
789// :79:27: note: when computing vector element at index '0'
790// :79:27: error: use of undefined value here causes illegal behavior
791// :79:27: note: when computing vector element at index '0'
792// :79:27: error: use of undefined value here causes illegal behavior
793// :79:27: error: use of undefined value here causes illegal behavior
794// :79:27: error: use of undefined value here causes illegal behavior
795// :79:27: note: when computing vector element at index '0'
796// :79:27: error: use of undefined value here causes illegal behavior
797// :79:27: note: when computing vector element at index '0'
798// :79:27: error: use of undefined value here causes illegal behavior
799// :79:27: note: when computing vector element at index '0'
800// :79:27: error: use of undefined value here causes illegal behavior
801// :79:27: note: when computing vector element at index '0'
802// :79:27: error: use of undefined value here causes illegal behavior
803// :79:27: note: when computing vector element at index '1'
804// :79:27: error: use of undefined value here causes illegal behavior
805// :79:27: note: when computing vector element at index '1'
806// :79:27: error: use of undefined value here causes illegal behavior
807// :79:27: note: when computing vector element at index '0'
808// :79:27: error: use of undefined value here causes illegal behavior
809// :79:27: note: when computing vector element at index '0'
810// :79:27: error: use of undefined value here causes illegal behavior
811// :79:27: note: when computing vector element at index '0'
812// :79:27: error: use of undefined value here causes illegal behavior
813// :79:27: note: when computing vector element at index '0'
814// :79:27: error: use of undefined value here causes illegal behavior
815// :79:27: error: use of undefined value here causes illegal behavior
816// :79:27: error: use of undefined value here causes illegal behavior
817// :79:27: note: when computing vector element at index '0'
818// :79:27: error: use of undefined value here causes illegal behavior
819// :79:27: note: when computing vector element at index '0'
820// :79:27: error: use of undefined value here causes illegal behavior
821// :79:27: note: when computing vector element at index '0'
822// :79:27: error: use of undefined value here causes illegal behavior
823// :79:27: note: when computing vector element at index '0'
824// :79:27: error: use of undefined value here causes illegal behavior
825// :79:27: note: when computing vector element at index '1'
826// :79:27: error: use of undefined value here causes illegal behavior
827// :79:27: note: when computing vector element at index '1'
828// :79:27: error: use of undefined value here causes illegal behavior
829// :79:27: note: when computing vector element at index '0'
830// :79:27: error: use of undefined value here causes illegal behavior
831// :79:27: note: when computing vector element at index '0'
832// :79:27: error: use of undefined value here causes illegal behavior
833// :79:27: note: when computing vector element at index '0'
834// :79:27: error: use of undefined value here causes illegal behavior
835// :79:27: note: when computing vector element at index '0'
836// :79:27: error: use of undefined value here causes illegal behavior
837// :79:27: error: use of undefined value here causes illegal behavior
838// :79:27: error: use of undefined value here causes illegal behavior
839// :79:27: note: when computing vector element at index '0'
840// :79:27: error: use of undefined value here causes illegal behavior
841// :79:27: note: when computing vector element at index '0'
842// :79:27: error: use of undefined value here causes illegal behavior
843// :79:27: note: when computing vector element at index '0'
844// :79:27: error: use of undefined value here causes illegal behavior
845// :79:27: note: when computing vector element at index '0'
846// :79:27: error: use of undefined value here causes illegal behavior
847// :79:27: note: when computing vector element at index '1'
848// :79:27: error: use of undefined value here causes illegal behavior
849// :79:27: note: when computing vector element at index '1'
850// :79:27: error: use of undefined value here causes illegal behavior
851// :79:27: note: when computing vector element at index '0'
852// :79:27: error: use of undefined value here causes illegal behavior
853// :79:27: note: when computing vector element at index '0'
854// :79:27: error: use of undefined value here causes illegal behavior
855// :79:27: note: when computing vector element at index '0'
856// :79:27: error: use of undefined value here causes illegal behavior
857// :79:27: note: when computing vector element at index '0'
858// :79:27: error: use of undefined value here causes illegal behavior
859// :79:27: error: use of undefined value here causes illegal behavior
860// :79:27: error: use of undefined value here causes illegal behavior
861// :79:27: note: when computing vector element at index '0'
862// :79:27: error: use of undefined value here causes illegal behavior
863// :79:27: note: when computing vector element at index '0'
864// :79:27: error: use of undefined value here causes illegal behavior
865// :79:27: note: when computing vector element at index '0'
866// :79:27: error: use of undefined value here causes illegal behavior
867// :79:27: note: when computing vector element at index '0'
868// :79:27: error: use of undefined value here causes illegal behavior
869// :79:27: note: when computing vector element at index '1'
870// :79:27: error: use of undefined value here causes illegal behavior
871// :79:27: note: when computing vector element at index '1'
872// :79:27: error: use of undefined value here causes illegal behavior
873// :79:27: note: when computing vector element at index '0'
874// :79:27: error: use of undefined value here causes illegal behavior
875// :79:27: note: when computing vector element at index '0'
876// :79:27: error: use of undefined value here causes illegal behavior
877// :79:27: note: when computing vector element at index '0'
878// :79:27: error: use of undefined value here causes illegal behavior
879// :79:27: note: when computing vector element at index '0'
880// :79:27: error: use of undefined value here causes illegal behavior
881// :79:27: error: use of undefined value here causes illegal behavior
882// :79:27: error: use of undefined value here causes illegal behavior
883// :79:27: note: when computing vector element at index '0'
884// :79:27: error: use of undefined value here causes illegal behavior
885// :79:27: note: when computing vector element at index '0'
886// :79:27: error: use of undefined value here causes illegal behavior
887// :79:27: note: when computing vector element at index '0'
888// :79:27: error: use of undefined value here causes illegal behavior
889// :79:27: note: when computing vector element at index '0'
890// :79:27: error: use of undefined value here causes illegal behavior
891// :79:27: note: when computing vector element at index '1'
892// :79:27: error: use of undefined value here causes illegal behavior
893// :79:27: note: when computing vector element at index '1'
894// :79:27: error: use of undefined value here causes illegal behavior
895// :79:27: note: when computing vector element at index '0'
896// :79:27: error: use of undefined value here causes illegal behavior
897// :79:27: note: when computing vector element at index '0'
898// :79:27: error: use of undefined value here causes illegal behavior
899// :79:27: note: when computing vector element at index '0'
900// :79:27: error: use of undefined value here causes illegal behavior
901// :79:27: note: when computing vector element at index '0'
902// :79:27: error: use of undefined value here causes illegal behavior
903// :79:27: error: use of undefined value here causes illegal behavior
904// :79:27: error: use of undefined value here causes illegal behavior
905// :79:27: note: when computing vector element at index '0'
906// :79:27: error: use of undefined value here causes illegal behavior
907// :79:27: note: when computing vector element at index '0'
908// :79:27: error: use of undefined value here causes illegal behavior
909// :79:27: note: when computing vector element at index '0'
910// :79:27: error: use of undefined value here causes illegal behavior
911// :79:27: note: when computing vector element at index '0'
912// :79:27: error: use of undefined value here causes illegal behavior
913// :79:27: note: when computing vector element at index '1'
914// :79:27: error: use of undefined value here causes illegal behavior
915// :79:27: note: when computing vector element at index '1'
916// :79:27: error: use of undefined value here causes illegal behavior
917// :79:27: note: when computing vector element at index '0'
918// :79:27: error: use of undefined value here causes illegal behavior
919// :79:27: note: when computing vector element at index '0'
920// :79:27: error: use of undefined value here causes illegal behavior
921// :79:27: note: when computing vector element at index '0'
922// :79:27: error: use of undefined value here causes illegal behavior
923// :79:27: note: when computing vector element at index '0'
924// :79:27: error: use of undefined value here causes illegal behavior
925// :79:27: error: use of undefined value here causes illegal behavior
926// :79:27: error: use of undefined value here causes illegal behavior
927// :79:27: note: when computing vector element at index '0'
928// :79:27: error: use of undefined value here causes illegal behavior
929// :79:27: note: when computing vector element at index '0'
930// :79:27: error: use of undefined value here causes illegal behavior
931// :79:27: note: when computing vector element at index '0'
932// :79:27: error: use of undefined value here causes illegal behavior
933// :79:27: note: when computing vector element at index '0'
934// :79:27: error: use of undefined value here causes illegal behavior
935// :79:27: note: when computing vector element at index '1'
936// :79:27: error: use of undefined value here causes illegal behavior
937// :79:27: note: when computing vector element at index '1'
938// :79:27: error: use of undefined value here causes illegal behavior
939// :79:27: note: when computing vector element at index '0'
940// :79:27: error: use of undefined value here causes illegal behavior
941// :79:27: note: when computing vector element at index '0'
942// :79:27: error: use of undefined value here causes illegal behavior
943// :79:27: note: when computing vector element at index '0'
944// :79:27: error: use of undefined value here causes illegal behavior
945// :79:27: note: when computing vector element at index '0'
946// :79:27: error: use of undefined value here causes illegal behavior
947// :79:27: error: use of undefined value here causes illegal behavior
948// :79:27: error: use of undefined value here causes illegal behavior
949// :79:27: note: when computing vector element at index '0'
950// :79:27: error: use of undefined value here causes illegal behavior
951// :79:27: note: when computing vector element at index '0'
952// :79:27: error: use of undefined value here causes illegal behavior
953// :79:27: note: when computing vector element at index '0'
954// :79:27: error: use of undefined value here causes illegal behavior
955// :79:27: note: when computing vector element at index '0'
956// :79:27: error: use of undefined value here causes illegal behavior
957// :79:27: note: when computing vector element at index '1'
958// :79:27: error: use of undefined value here causes illegal behavior
959// :79:27: note: when computing vector element at index '1'
960// :79:27: error: use of undefined value here causes illegal behavior
961// :79:27: note: when computing vector element at index '0'
962// :79:27: error: use of undefined value here causes illegal behavior
963// :79:27: note: when computing vector element at index '0'
964// :79:27: error: use of undefined value here causes illegal behavior
965// :79:27: note: when computing vector element at index '0'
966// :79:27: error: use of undefined value here causes illegal behavior
967// :79:27: note: when computing vector element at index '0'
968// :79:27: error: use of undefined value here causes illegal behavior
969// :79:27: error: use of undefined value here causes illegal behavior
970// :79:27: error: use of undefined value here causes illegal behavior
971// :79:27: note: when computing vector element at index '0'
972// :79:27: error: use of undefined value here causes illegal behavior
973// :79:27: note: when computing vector element at index '0'
974// :79:27: error: use of undefined value here causes illegal behavior
975// :79:27: note: when computing vector element at index '0'
976// :79:27: error: use of undefined value here causes illegal behavior
977// :79:27: note: when computing vector element at index '0'
978// :79:27: error: use of undefined value here causes illegal behavior
979// :79:27: note: when computing vector element at index '1'
980// :79:27: error: use of undefined value here causes illegal behavior
981// :79:27: note: when computing vector element at index '1'
982// :79:27: error: use of undefined value here causes illegal behavior
983// :79:27: note: when computing vector element at index '0'
984// :79:27: error: use of undefined value here causes illegal behavior
985// :79:27: note: when computing vector element at index '0'
986// :79:27: error: use of undefined value here causes illegal behavior
987// :79:27: note: when computing vector element at index '0'
988// :79:27: error: use of undefined value here causes illegal behavior
989// :79:27: note: when computing vector element at index '0'
990// :79:27: error: use of undefined value here causes illegal behavior
991// :79:27: error: use of undefined value here causes illegal behavior
992// :79:27: error: use of undefined value here causes illegal behavior
993// :79:27: note: when computing vector element at index '0'
994// :79:27: error: use of undefined value here causes illegal behavior
995// :79:27: note: when computing vector element at index '0'
996// :79:27: error: use of undefined value here causes illegal behavior
997// :79:27: note: when computing vector element at index '0'
998// :79:27: error: use of undefined value here causes illegal behavior
999// :79:27: note: when computing vector element at index '0'
1000// :79:27: error: use of undefined value here causes illegal behavior
1001// :79:27: note: when computing vector element at index '1'
1002// :79:27: error: use of undefined value here causes illegal behavior
1003// :79:27: note: when computing vector element at index '1'
1004// :79:27: error: use of undefined value here causes illegal behavior
1005// :79:27: note: when computing vector element at index '0'
1006// :79:27: error: use of undefined value here causes illegal behavior
1007// :79:27: note: when computing vector element at index '0'
1008// :79:27: error: use of undefined value here causes illegal behavior
1009// :79:27: note: when computing vector element at index '0'
1010// :79:27: error: use of undefined value here causes illegal behavior
1011// :79:27: note: when computing vector element at index '0'
1012// :79:30: error: use of undefined value here causes illegal behavior
1013// :79:30: note: when computing vector element at index '0'
1014// :79:30: error: use of undefined value here causes illegal behavior
1015// :79:30: note: when computing vector element at index '0'
1016// :79:30: error: use of undefined value here causes illegal behavior
1017// :79:30: note: when computing vector element at index '0'
1018// :79:30: error: use of undefined value here causes illegal behavior
1019// :79:30: note: when computing vector element at index '0'
1020// :79:30: error: use of undefined value here causes illegal behavior
1021// :79:30: note: when computing vector element at index '0'
1022// :79:30: error: use of undefined value here causes illegal behavior
1023// :79:30: note: when computing vector element at index '0'
1024// :79:30: error: use of undefined value here causes illegal behavior
1025// :79:30: note: when computing vector element at index '0'
1026// :79:30: error: use of undefined value here causes illegal behavior
1027// :79:30: note: when computing vector element at index '0'
1028// :79:30: error: use of undefined value here causes illegal behavior
1029// :79:30: note: when computing vector element at index '0'
1030// :79:30: error: use of undefined value here causes illegal behavior
1031// :79:30: note: when computing vector element at index '0'
1032// :79:30: error: use of undefined value here causes illegal behavior
1033// :79:30: note: when computing vector element at index '0'
1034// :79:30: error: use of undefined value here causes illegal behavior
1035// :79:30: note: when computing vector element at index '0'
1036// :79:30: error: use of undefined value here causes illegal behavior
1037// :79:30: note: when computing vector element at index '0'
1038// :79:30: error: use of undefined value here causes illegal behavior
1039// :79:30: note: when computing vector element at index '0'
1040// :79:30: error: use of undefined value here causes illegal behavior
1041// :79:30: note: when computing vector element at index '0'
1042// :79:30: error: use of undefined value here causes illegal behavior
1043// :79:30: note: when computing vector element at index '0'
1044// :79:30: error: use of undefined value here causes illegal behavior
1045// :79:30: note: when computing vector element at index '0'
1046// :79:30: error: use of undefined value here causes illegal behavior
1047// :79:30: note: when computing vector element at index '0'
1048// :79:30: error: use of undefined value here causes illegal behavior
1049// :79:30: note: when computing vector element at index '0'
1050// :79:30: error: use of undefined value here causes illegal behavior
1051// :79:30: note: when computing vector element at index '0'
1052// :79:30: error: use of undefined value here causes illegal behavior
1053// :79:30: note: when computing vector element at index '0'
1054// :79:30: error: use of undefined value here causes illegal behavior
1055// :79:30: note: when computing vector element at index '0'
1056// :83:27: error: use of undefined value here causes illegal behavior
1057// :83:27: error: use of undefined value here causes illegal behavior
1058// :83:27: error: use of undefined value here causes illegal behavior
1059// :83:27: note: when computing vector element at index '0'
1060// :83:27: error: use of undefined value here causes illegal behavior
1061// :83:27: note: when computing vector element at index '0'
1062// :83:27: error: use of undefined value here causes illegal behavior
1063// :83:27: note: when computing vector element at index '0'
1064// :83:27: error: use of undefined value here causes illegal behavior
1065// :83:27: note: when computing vector element at index '0'
1066// :83:27: error: use of undefined value here causes illegal behavior
1067// :83:27: note: when computing vector element at index '1'
1068// :83:27: error: use of undefined value here causes illegal behavior
1069// :83:27: note: when computing vector element at index '1'
1070// :83:27: error: use of undefined value here causes illegal behavior
1071// :83:27: note: when computing vector element at index '0'
1072// :83:27: error: use of undefined value here causes illegal behavior
1073// :83:27: note: when computing vector element at index '0'
1074// :83:27: error: use of undefined value here causes illegal behavior
1075// :83:27: note: when computing vector element at index '0'
1076// :83:27: error: use of undefined value here causes illegal behavior
1077// :83:27: note: when computing vector element at index '0'
1078// :83:27: error: use of undefined value here causes illegal behavior
1079// :83:27: error: use of undefined value here causes illegal behavior
1080// :83:27: error: use of undefined value here causes illegal behavior
1081// :83:27: note: when computing vector element at index '0'
1082// :83:27: error: use of undefined value here causes illegal behavior
1083// :83:27: note: when computing vector element at index '0'
1084// :83:27: error: use of undefined value here causes illegal behavior
1085// :83:27: note: when computing vector element at index '0'
1086// :83:27: error: use of undefined value here causes illegal behavior
1087// :83:27: note: when computing vector element at index '0'
1088// :83:27: error: use of undefined value here causes illegal behavior
1089// :83:27: note: when computing vector element at index '1'
1090// :83:27: error: use of undefined value here causes illegal behavior
1091// :83:27: note: when computing vector element at index '1'
1092// :83:27: error: use of undefined value here causes illegal behavior
1093// :83:27: note: when computing vector element at index '0'
1094// :83:27: error: use of undefined value here causes illegal behavior
1095// :83:27: note: when computing vector element at index '0'
1096// :83:27: error: use of undefined value here causes illegal behavior
1097// :83:27: note: when computing vector element at index '0'
1098// :83:27: error: use of undefined value here causes illegal behavior
1099// :83:27: note: when computing vector element at index '0'
1100// :83:27: error: use of undefined value here causes illegal behavior
1101// :83:27: error: use of undefined value here causes illegal behavior
1102// :83:27: error: use of undefined value here causes illegal behavior
1103// :83:27: note: when computing vector element at index '0'
1104// :83:27: error: use of undefined value here causes illegal behavior
1105// :83:27: note: when computing vector element at index '0'
1106// :83:27: error: use of undefined value here causes illegal behavior
1107// :83:27: note: when computing vector element at index '0'
1108// :83:27: error: use of undefined value here causes illegal behavior
1109// :83:27: note: when computing vector element at index '0'
1110// :83:27: error: use of undefined value here causes illegal behavior
1111// :83:27: note: when computing vector element at index '1'
1112// :83:27: error: use of undefined value here causes illegal behavior
1113// :83:27: note: when computing vector element at index '1'
1114// :83:27: error: use of undefined value here causes illegal behavior
1115// :83:27: note: when computing vector element at index '0'
1116// :83:27: error: use of undefined value here causes illegal behavior
1117// :83:27: note: when computing vector element at index '0'
1118// :83:27: error: use of undefined value here causes illegal behavior
1119// :83:27: note: when computing vector element at index '0'
1120// :83:27: error: use of undefined value here causes illegal behavior
1121// :83:27: note: when computing vector element at index '0'
1122// :83:27: error: use of undefined value here causes illegal behavior
1123// :83:27: error: use of undefined value here causes illegal behavior
1124// :83:27: error: use of undefined value here causes illegal behavior
1125// :83:27: note: when computing vector element at index '0'
1126// :83:27: error: use of undefined value here causes illegal behavior
1127// :83:27: note: when computing vector element at index '0'
1128// :83:27: error: use of undefined value here causes illegal behavior
1129// :83:27: note: when computing vector element at index '0'
1130// :83:27: error: use of undefined value here causes illegal behavior
1131// :83:27: note: when computing vector element at index '0'
1132// :83:27: error: use of undefined value here causes illegal behavior
1133// :83:27: note: when computing vector element at index '1'
1134// :83:27: error: use of undefined value here causes illegal behavior
1135// :83:27: note: when computing vector element at index '1'
1136// :83:27: error: use of undefined value here causes illegal behavior
1137// :83:27: note: when computing vector element at index '0'
1138// :83:27: error: use of undefined value here causes illegal behavior
1139// :83:27: note: when computing vector element at index '0'
1140// :83:27: error: use of undefined value here causes illegal behavior
1141// :83:27: note: when computing vector element at index '0'
1142// :83:27: error: use of undefined value here causes illegal behavior
1143// :83:27: note: when computing vector element at index '0'
1144// :83:27: error: use of undefined value here causes illegal behavior
1145// :83:27: error: use of undefined value here causes illegal behavior
1146// :83:27: error: use of undefined value here causes illegal behavior
1147// :83:27: note: when computing vector element at index '0'
1148// :83:27: error: use of undefined value here causes illegal behavior
1149// :83:27: note: when computing vector element at index '0'
1150// :83:27: error: use of undefined value here causes illegal behavior
1151// :83:27: note: when computing vector element at index '0'
1152// :83:27: error: use of undefined value here causes illegal behavior
1153// :83:27: note: when computing vector element at index '0'
1154// :83:27: error: use of undefined value here causes illegal behavior
1155// :83:27: note: when computing vector element at index '1'
1156// :83:27: error: use of undefined value here causes illegal behavior
1157// :83:27: note: when computing vector element at index '1'
1158// :83:27: error: use of undefined value here causes illegal behavior
1159// :83:27: note: when computing vector element at index '0'
1160// :83:27: error: use of undefined value here causes illegal behavior
1161// :83:27: note: when computing vector element at index '0'
1162// :83:27: error: use of undefined value here causes illegal behavior
1163// :83:27: note: when computing vector element at index '0'
1164// :83:27: error: use of undefined value here causes illegal behavior
1165// :83:27: note: when computing vector element at index '0'
1166// :83:27: error: use of undefined value here causes illegal behavior
1167// :83:27: error: use of undefined value here causes illegal behavior
1168// :83:27: error: use of undefined value here causes illegal behavior
1169// :83:27: note: when computing vector element at index '0'
1170// :83:27: error: use of undefined value here causes illegal behavior
1171// :83:27: note: when computing vector element at index '0'
1172// :83:27: error: use of undefined value here causes illegal behavior
1173// :83:27: note: when computing vector element at index '0'
1174// :83:27: error: use of undefined value here causes illegal behavior
1175// :83:27: note: when computing vector element at index '0'
1176// :83:27: error: use of undefined value here causes illegal behavior
1177// :83:27: note: when computing vector element at index '1'
1178// :83:27: error: use of undefined value here causes illegal behavior
1179// :83:27: note: when computing vector element at index '1'
1180// :83:27: error: use of undefined value here causes illegal behavior
1181// :83:27: note: when computing vector element at index '0'
1182// :83:27: error: use of undefined value here causes illegal behavior
1183// :83:27: note: when computing vector element at index '0'
1184// :83:27: error: use of undefined value here causes illegal behavior
1185// :83:27: note: when computing vector element at index '0'
1186// :83:27: error: use of undefined value here causes illegal behavior
1187// :83:27: note: when computing vector element at index '0'
1188// :83:27: error: use of undefined value here causes illegal behavior
1189// :83:27: error: use of undefined value here causes illegal behavior
1190// :83:27: error: use of undefined value here causes illegal behavior
1191// :83:27: note: when computing vector element at index '0'
1192// :83:27: error: use of undefined value here causes illegal behavior
1193// :83:27: note: when computing vector element at index '0'
1194// :83:27: error: use of undefined value here causes illegal behavior
1195// :83:27: note: when computing vector element at index '0'
1196// :83:27: error: use of undefined value here causes illegal behavior
1197// :83:27: note: when computing vector element at index '0'
1198// :83:27: error: use of undefined value here causes illegal behavior
1199// :83:27: note: when computing vector element at index '1'
1200// :83:27: error: use of undefined value here causes illegal behavior
1201// :83:27: note: when computing vector element at index '1'
1202// :83:27: error: use of undefined value here causes illegal behavior
1203// :83:27: note: when computing vector element at index '0'
1204// :83:27: error: use of undefined value here causes illegal behavior
1205// :83:27: note: when computing vector element at index '0'
1206// :83:27: error: use of undefined value here causes illegal behavior
1207// :83:27: note: when computing vector element at index '0'
1208// :83:27: error: use of undefined value here causes illegal behavior
1209// :83:27: note: when computing vector element at index '0'
1210// :83:27: error: use of undefined value here causes illegal behavior
1211// :83:27: error: use of undefined value here causes illegal behavior
1212// :83:27: error: use of undefined value here causes illegal behavior
1213// :83:27: note: when computing vector element at index '0'
1214// :83:27: error: use of undefined value here causes illegal behavior
1215// :83:27: note: when computing vector element at index '0'
1216// :83:27: error: use of undefined value here causes illegal behavior
1217// :83:27: note: when computing vector element at index '0'
1218// :83:27: error: use of undefined value here causes illegal behavior
1219// :83:27: note: when computing vector element at index '0'
1220// :83:27: error: use of undefined value here causes illegal behavior
1221// :83:27: note: when computing vector element at index '1'
1222// :83:27: error: use of undefined value here causes illegal behavior
1223// :83:27: note: when computing vector element at index '1'
1224// :83:27: error: use of undefined value here causes illegal behavior
1225// :83:27: note: when computing vector element at index '0'
1226// :83:27: error: use of undefined value here causes illegal behavior
1227// :83:27: note: when computing vector element at index '0'
1228// :83:27: error: use of undefined value here causes illegal behavior
1229// :83:27: note: when computing vector element at index '0'
1230// :83:27: error: use of undefined value here causes illegal behavior
1231// :83:27: note: when computing vector element at index '0'
1232// :83:27: error: use of undefined value here causes illegal behavior
1233// :83:27: error: use of undefined value here causes illegal behavior
1234// :83:27: error: use of undefined value here causes illegal behavior
1235// :83:27: note: when computing vector element at index '0'
1236// :83:27: error: use of undefined value here causes illegal behavior
1237// :83:27: note: when computing vector element at index '0'
1238// :83:27: error: use of undefined value here causes illegal behavior
1239// :83:27: note: when computing vector element at index '0'
1240// :83:27: error: use of undefined value here causes illegal behavior
1241// :83:27: note: when computing vector element at index '0'
1242// :83:27: error: use of undefined value here causes illegal behavior
1243// :83:27: note: when computing vector element at index '1'
1244// :83:27: error: use of undefined value here causes illegal behavior
1245// :83:27: note: when computing vector element at index '1'
1246// :83:27: error: use of undefined value here causes illegal behavior
1247// :83:27: note: when computing vector element at index '0'
1248// :83:27: error: use of undefined value here causes illegal behavior
1249// :83:27: note: when computing vector element at index '0'
1250// :83:27: error: use of undefined value here causes illegal behavior
1251// :83:27: note: when computing vector element at index '0'
1252// :83:27: error: use of undefined value here causes illegal behavior
1253// :83:27: note: when computing vector element at index '0'
1254// :83:27: error: use of undefined value here causes illegal behavior
1255// :83:27: error: use of undefined value here causes illegal behavior
1256// :83:27: error: use of undefined value here causes illegal behavior
1257// :83:27: note: when computing vector element at index '0'
1258// :83:27: error: use of undefined value here causes illegal behavior
1259// :83:27: note: when computing vector element at index '0'
1260// :83:27: error: use of undefined value here causes illegal behavior
1261// :83:27: note: when computing vector element at index '0'
1262// :83:27: error: use of undefined value here causes illegal behavior
1263// :83:27: note: when computing vector element at index '0'
1264// :83:27: error: use of undefined value here causes illegal behavior
1265// :83:27: note: when computing vector element at index '1'
1266// :83:27: error: use of undefined value here causes illegal behavior
1267// :83:27: note: when computing vector element at index '1'
1268// :83:27: error: use of undefined value here causes illegal behavior
1269// :83:27: note: when computing vector element at index '0'
1270// :83:27: error: use of undefined value here causes illegal behavior
1271// :83:27: note: when computing vector element at index '0'
1272// :83:27: error: use of undefined value here causes illegal behavior
1273// :83:27: note: when computing vector element at index '0'
1274// :83:27: error: use of undefined value here causes illegal behavior
1275// :83:27: note: when computing vector element at index '0'
1276// :83:27: error: use of undefined value here causes illegal behavior
1277// :83:27: error: use of undefined value here causes illegal behavior
1278// :83:27: error: use of undefined value here causes illegal behavior
1279// :83:27: note: when computing vector element at index '0'
1280// :83:27: error: use of undefined value here causes illegal behavior
1281// :83:27: note: when computing vector element at index '0'
1282// :83:27: error: use of undefined value here causes illegal behavior
1283// :83:27: note: when computing vector element at index '0'
1284// :83:27: error: use of undefined value here causes illegal behavior
1285// :83:27: note: when computing vector element at index '0'
1286// :83:27: error: use of undefined value here causes illegal behavior
1287// :83:27: note: when computing vector element at index '1'
1288// :83:27: error: use of undefined value here causes illegal behavior
1289// :83:27: note: when computing vector element at index '1'
1290// :83:27: error: use of undefined value here causes illegal behavior
1291// :83:27: note: when computing vector element at index '0'
1292// :83:27: error: use of undefined value here causes illegal behavior
1293// :83:27: note: when computing vector element at index '0'
1294// :83:27: error: use of undefined value here causes illegal behavior
1295// :83:27: note: when computing vector element at index '0'
1296// :83:27: error: use of undefined value here causes illegal behavior
1297// :83:27: note: when computing vector element at index '0'
1298// :83:30: error: use of undefined value here causes illegal behavior
1299// :83:30: note: when computing vector element at index '0'
1300// :83:30: error: use of undefined value here causes illegal behavior
1301// :83:30: note: when computing vector element at index '0'
1302// :83:30: error: use of undefined value here causes illegal behavior
1303// :83:30: note: when computing vector element at index '0'
1304// :83:30: error: use of undefined value here causes illegal behavior
1305// :83:30: note: when computing vector element at index '0'
1306// :83:30: error: use of undefined value here causes illegal behavior
1307// :83:30: note: when computing vector element at index '0'
1308// :83:30: error: use of undefined value here causes illegal behavior
1309// :83:30: note: when computing vector element at index '0'
1310// :83:30: error: use of undefined value here causes illegal behavior
1311// :83:30: note: when computing vector element at index '0'
1312// :83:30: error: use of undefined value here causes illegal behavior
1313// :83:30: note: when computing vector element at index '0'
1314// :83:30: error: use of undefined value here causes illegal behavior
1315// :83:30: note: when computing vector element at index '0'
1316// :83:30: error: use of undefined value here causes illegal behavior
1317// :83:30: note: when computing vector element at index '0'
1318// :83:30: error: use of undefined value here causes illegal behavior
1319// :83:30: note: when computing vector element at index '0'
1320// :83:30: error: use of undefined value here causes illegal behavior
1321// :83:30: note: when computing vector element at index '0'
1322// :83:30: error: use of undefined value here causes illegal behavior
1323// :83:30: note: when computing vector element at index '0'
1324// :83:30: error: use of undefined value here causes illegal behavior
1325// :83:30: note: when computing vector element at index '0'
1326// :83:30: error: use of undefined value here causes illegal behavior
1327// :83:30: note: when computing vector element at index '0'
1328// :83:30: error: use of undefined value here causes illegal behavior
1329// :83:30: note: when computing vector element at index '0'
1330// :83:30: error: use of undefined value here causes illegal behavior
1331// :83:30: note: when computing vector element at index '0'
1332// :83:30: error: use of undefined value here causes illegal behavior
1333// :83:30: note: when computing vector element at index '0'
1334// :83:30: error: use of undefined value here causes illegal behavior
1335// :83:30: note: when computing vector element at index '0'
1336// :83:30: error: use of undefined value here causes illegal behavior
1337// :83:30: note: when computing vector element at index '0'
1338// :83:30: error: use of undefined value here causes illegal behavior
1339// :83:30: note: when computing vector element at index '0'
1340// :83:30: error: use of undefined value here causes illegal behavior
1341// :83:30: note: when computing vector element at index '0'
1342// :87:17: error: use of undefined value here causes illegal behavior
1343// :87:17: error: use of undefined value here causes illegal behavior
1344// :87:17: error: use of undefined value here causes illegal behavior
1345// :87:17: note: when computing vector element at index '0'
1346// :87:17: error: use of undefined value here causes illegal behavior
1347// :87:17: note: when computing vector element at index '0'
1348// :87:17: error: use of undefined value here causes illegal behavior
1349// :87:17: note: when computing vector element at index '0'
1350// :87:17: error: use of undefined value here causes illegal behavior
1351// :87:17: note: when computing vector element at index '0'
1352// :87:17: error: use of undefined value here causes illegal behavior
1353// :87:17: note: when computing vector element at index '1'
1354// :87:17: error: use of undefined value here causes illegal behavior
1355// :87:17: note: when computing vector element at index '1'
1356// :87:17: error: use of undefined value here causes illegal behavior
1357// :87:17: note: when computing vector element at index '0'
1358// :87:17: error: use of undefined value here causes illegal behavior
1359// :87:17: note: when computing vector element at index '0'
1360// :87:17: error: use of undefined value here causes illegal behavior
1361// :87:17: note: when computing vector element at index '0'
1362// :87:17: error: use of undefined value here causes illegal behavior
1363// :87:17: note: when computing vector element at index '0'
1364// :87:17: error: use of undefined value here causes illegal behavior
1365// :87:17: error: use of undefined value here causes illegal behavior
1366// :87:17: error: use of undefined value here causes illegal behavior
1367// :87:17: note: when computing vector element at index '0'
1368// :87:17: error: use of undefined value here causes illegal behavior
1369// :87:17: note: when computing vector element at index '0'
1370// :87:17: error: use of undefined value here causes illegal behavior
1371// :87:17: note: when computing vector element at index '0'
1372// :87:17: error: use of undefined value here causes illegal behavior
1373// :87:17: note: when computing vector element at index '0'
1374// :87:17: error: use of undefined value here causes illegal behavior
1375// :87:17: note: when computing vector element at index '1'
1376// :87:17: error: use of undefined value here causes illegal behavior
1377// :87:17: note: when computing vector element at index '1'
1378// :87:17: error: use of undefined value here causes illegal behavior
1379// :87:17: note: when computing vector element at index '0'
1380// :87:17: error: use of undefined value here causes illegal behavior
1381// :87:17: note: when computing vector element at index '0'
1382// :87:17: error: use of undefined value here causes illegal behavior
1383// :87:17: note: when computing vector element at index '0'
1384// :87:17: error: use of undefined value here causes illegal behavior
1385// :87:17: note: when computing vector element at index '0'
1386// :87:17: error: use of undefined value here causes illegal behavior
1387// :87:17: error: use of undefined value here causes illegal behavior
1388// :87:17: error: use of undefined value here causes illegal behavior
1389// :87:17: note: when computing vector element at index '0'
1390// :87:17: error: use of undefined value here causes illegal behavior
1391// :87:17: note: when computing vector element at index '0'
1392// :87:17: error: use of undefined value here causes illegal behavior
1393// :87:17: note: when computing vector element at index '0'
1394// :87:17: error: use of undefined value here causes illegal behavior
1395// :87:17: note: when computing vector element at index '0'
1396// :87:17: error: use of undefined value here causes illegal behavior
1397// :87:17: note: when computing vector element at index '1'
1398// :87:17: error: use of undefined value here causes illegal behavior
1399// :87:17: note: when computing vector element at index '1'
1400// :87:17: error: use of undefined value here causes illegal behavior
1401// :87:17: note: when computing vector element at index '0'
1402// :87:17: error: use of undefined value here causes illegal behavior
1403// :87:17: note: when computing vector element at index '0'
1404// :87:17: error: use of undefined value here causes illegal behavior
1405// :87:17: note: when computing vector element at index '0'
1406// :87:17: error: use of undefined value here causes illegal behavior
1407// :87:17: note: when computing vector element at index '0'
1408// :87:17: error: use of undefined value here causes illegal behavior
1409// :87:17: error: use of undefined value here causes illegal behavior
1410// :87:17: error: use of undefined value here causes illegal behavior
1411// :87:17: note: when computing vector element at index '0'
1412// :87:17: error: use of undefined value here causes illegal behavior
1413// :87:17: note: when computing vector element at index '0'
1414// :87:17: error: use of undefined value here causes illegal behavior
1415// :87:17: note: when computing vector element at index '0'
1416// :87:17: error: use of undefined value here causes illegal behavior
1417// :87:17: note: when computing vector element at index '0'
1418// :87:17: error: use of undefined value here causes illegal behavior
1419// :87:17: note: when computing vector element at index '1'
1420// :87:17: error: use of undefined value here causes illegal behavior
1421// :87:17: note: when computing vector element at index '1'
1422// :87:17: error: use of undefined value here causes illegal behavior
1423// :87:17: note: when computing vector element at index '0'
1424// :87:17: error: use of undefined value here causes illegal behavior
1425// :87:17: note: when computing vector element at index '0'
1426// :87:17: error: use of undefined value here causes illegal behavior
1427// :87:17: note: when computing vector element at index '0'
1428// :87:17: error: use of undefined value here causes illegal behavior
1429// :87:17: note: when computing vector element at index '0'
1430// :87:17: error: use of undefined value here causes illegal behavior
1431// :87:17: error: use of undefined value here causes illegal behavior
1432// :87:17: error: use of undefined value here causes illegal behavior
1433// :87:17: note: when computing vector element at index '0'
1434// :87:17: error: use of undefined value here causes illegal behavior
1435// :87:17: note: when computing vector element at index '0'
1436// :87:17: error: use of undefined value here causes illegal behavior
1437// :87:17: note: when computing vector element at index '0'
1438// :87:17: error: use of undefined value here causes illegal behavior
1439// :87:17: note: when computing vector element at index '0'
1440// :87:17: error: use of undefined value here causes illegal behavior
1441// :87:17: note: when computing vector element at index '1'
1442// :87:17: error: use of undefined value here causes illegal behavior
1443// :87:17: note: when computing vector element at index '1'
1444// :87:17: error: use of undefined value here causes illegal behavior
1445// :87:17: note: when computing vector element at index '0'
1446// :87:17: error: use of undefined value here causes illegal behavior
1447// :87:17: note: when computing vector element at index '0'
1448// :87:17: error: use of undefined value here causes illegal behavior
1449// :87:17: note: when computing vector element at index '0'
1450// :87:17: error: use of undefined value here causes illegal behavior
1451// :87:17: note: when computing vector element at index '0'
1452// :87:17: error: use of undefined value here causes illegal behavior
1453// :87:17: error: use of undefined value here causes illegal behavior
1454// :87:17: error: use of undefined value here causes illegal behavior
1455// :87:17: note: when computing vector element at index '0'
1456// :87:17: error: use of undefined value here causes illegal behavior
1457// :87:17: note: when computing vector element at index '0'
1458// :87:17: error: use of undefined value here causes illegal behavior
1459// :87:17: note: when computing vector element at index '0'
1460// :87:17: error: use of undefined value here causes illegal behavior
1461// :87:17: note: when computing vector element at index '0'
1462// :87:17: error: use of undefined value here causes illegal behavior
1463// :87:17: note: when computing vector element at index '1'
1464// :87:17: error: use of undefined value here causes illegal behavior
1465// :87:17: note: when computing vector element at index '1'
1466// :87:17: error: use of undefined value here causes illegal behavior
1467// :87:17: note: when computing vector element at index '0'
1468// :87:17: error: use of undefined value here causes illegal behavior
1469// :87:17: note: when computing vector element at index '0'
1470// :87:17: error: use of undefined value here causes illegal behavior
1471// :87:17: note: when computing vector element at index '0'
1472// :87:17: error: use of undefined value here causes illegal behavior
1473// :87:17: note: when computing vector element at index '0'
1474// :87:17: error: use of undefined value here causes illegal behavior
1475// :87:17: error: use of undefined value here causes illegal behavior
1476// :87:17: error: use of undefined value here causes illegal behavior
1477// :87:17: note: when computing vector element at index '0'
1478// :87:17: error: use of undefined value here causes illegal behavior
1479// :87:17: note: when computing vector element at index '0'
1480// :87:17: error: use of undefined value here causes illegal behavior
1481// :87:17: note: when computing vector element at index '0'
1482// :87:17: error: use of undefined value here causes illegal behavior
1483// :87:17: note: when computing vector element at index '0'
1484// :87:17: error: use of undefined value here causes illegal behavior
1485// :87:17: note: when computing vector element at index '1'
1486// :87:17: error: use of undefined value here causes illegal behavior
1487// :87:17: note: when computing vector element at index '1'
1488// :87:17: error: use of undefined value here causes illegal behavior
1489// :87:17: note: when computing vector element at index '0'
1490// :87:17: error: use of undefined value here causes illegal behavior
1491// :87:17: note: when computing vector element at index '0'
1492// :87:17: error: use of undefined value here causes illegal behavior
1493// :87:17: note: when computing vector element at index '0'
1494// :87:17: error: use of undefined value here causes illegal behavior
1495// :87:17: note: when computing vector element at index '0'
1496// :87:17: error: use of undefined value here causes illegal behavior
1497// :87:17: error: use of undefined value here causes illegal behavior
1498// :87:17: error: use of undefined value here causes illegal behavior
1499// :87:17: note: when computing vector element at index '0'
1500// :87:17: error: use of undefined value here causes illegal behavior
1501// :87:17: note: when computing vector element at index '0'
1502// :87:17: error: use of undefined value here causes illegal behavior
1503// :87:17: note: when computing vector element at index '0'
1504// :87:17: error: use of undefined value here causes illegal behavior
1505// :87:17: note: when computing vector element at index '0'
1506// :87:17: error: use of undefined value here causes illegal behavior
1507// :87:17: note: when computing vector element at index '1'
1508// :87:17: error: use of undefined value here causes illegal behavior
1509// :87:17: note: when computing vector element at index '1'
1510// :87:17: error: use of undefined value here causes illegal behavior
1511// :87:17: note: when computing vector element at index '0'
1512// :87:17: error: use of undefined value here causes illegal behavior
1513// :87:17: note: when computing vector element at index '0'
1514// :87:17: error: use of undefined value here causes illegal behavior
1515// :87:17: note: when computing vector element at index '0'
1516// :87:17: error: use of undefined value here causes illegal behavior
1517// :87:17: note: when computing vector element at index '0'
1518// :87:17: error: use of undefined value here causes illegal behavior
1519// :87:17: error: use of undefined value here causes illegal behavior
1520// :87:17: error: use of undefined value here causes illegal behavior
1521// :87:17: note: when computing vector element at index '0'
1522// :87:17: error: use of undefined value here causes illegal behavior
1523// :87:17: note: when computing vector element at index '0'
1524// :87:17: error: use of undefined value here causes illegal behavior
1525// :87:17: note: when computing vector element at index '0'
1526// :87:17: error: use of undefined value here causes illegal behavior
1527// :87:17: note: when computing vector element at index '0'
1528// :87:17: error: use of undefined value here causes illegal behavior
1529// :87:17: note: when computing vector element at index '1'
1530// :87:17: error: use of undefined value here causes illegal behavior
1531// :87:17: note: when computing vector element at index '1'
1532// :87:17: error: use of undefined value here causes illegal behavior
1533// :87:17: note: when computing vector element at index '0'
1534// :87:17: error: use of undefined value here causes illegal behavior
1535// :87:17: note: when computing vector element at index '0'
1536// :87:17: error: use of undefined value here causes illegal behavior
1537// :87:17: note: when computing vector element at index '0'
1538// :87:17: error: use of undefined value here causes illegal behavior
1539// :87:17: note: when computing vector element at index '0'
1540// :87:17: error: use of undefined value here causes illegal behavior
1541// :87:17: error: use of undefined value here causes illegal behavior
1542// :87:17: error: use of undefined value here causes illegal behavior
1543// :87:17: note: when computing vector element at index '0'
1544// :87:17: error: use of undefined value here causes illegal behavior
1545// :87:17: note: when computing vector element at index '0'
1546// :87:17: error: use of undefined value here causes illegal behavior
1547// :87:17: note: when computing vector element at index '0'
1548// :87:17: error: use of undefined value here causes illegal behavior
1549// :87:17: note: when computing vector element at index '0'
1550// :87:17: error: use of undefined value here causes illegal behavior
1551// :87:17: note: when computing vector element at index '1'
1552// :87:17: error: use of undefined value here causes illegal behavior
1553// :87:17: note: when computing vector element at index '1'
1554// :87:17: error: use of undefined value here causes illegal behavior
1555// :87:17: note: when computing vector element at index '0'
1556// :87:17: error: use of undefined value here causes illegal behavior
1557// :87:17: note: when computing vector element at index '0'
1558// :87:17: error: use of undefined value here causes illegal behavior
1559// :87:17: note: when computing vector element at index '0'
1560// :87:17: error: use of undefined value here causes illegal behavior
1561// :87:17: note: when computing vector element at index '0'
1562// :87:17: error: use of undefined value here causes illegal behavior
1563// :87:17: error: use of undefined value here causes illegal behavior
1564// :87:17: error: use of undefined value here causes illegal behavior
1565// :87:17: note: when computing vector element at index '0'
1566// :87:17: error: use of undefined value here causes illegal behavior
1567// :87:17: note: when computing vector element at index '0'
1568// :87:17: error: use of undefined value here causes illegal behavior
1569// :87:17: note: when computing vector element at index '0'
1570// :87:17: error: use of undefined value here causes illegal behavior
1571// :87:17: note: when computing vector element at index '0'
1572// :87:17: error: use of undefined value here causes illegal behavior
1573// :87:17: note: when computing vector element at index '1'
1574// :87:17: error: use of undefined value here causes illegal behavior
1575// :87:17: note: when computing vector element at index '1'
1576// :87:17: error: use of undefined value here causes illegal behavior
1577// :87:17: note: when computing vector element at index '0'
1578// :87:17: error: use of undefined value here causes illegal behavior
1579// :87:17: note: when computing vector element at index '0'
1580// :87:17: error: use of undefined value here causes illegal behavior
1581// :87:17: note: when computing vector element at index '0'
1582// :87:17: error: use of undefined value here causes illegal behavior
1583// :87:17: note: when computing vector element at index '0'
1584// :87:21: error: use of undefined value here causes illegal behavior
1585// :87:21: note: when computing vector element at index '0'
1586// :87:21: error: use of undefined value here causes illegal behavior
1587// :87:21: note: when computing vector element at index '0'
1588// :87:21: error: use of undefined value here causes illegal behavior
1589// :87:21: note: when computing vector element at index '0'
1590// :87:21: error: use of undefined value here causes illegal behavior
1591// :87:21: note: when computing vector element at index '0'
1592// :87:21: error: use of undefined value here causes illegal behavior
1593// :87:21: note: when computing vector element at index '0'
1594// :87:21: error: use of undefined value here causes illegal behavior
1595// :87:21: note: when computing vector element at index '0'
1596// :87:21: error: use of undefined value here causes illegal behavior
1597// :87:21: note: when computing vector element at index '0'
1598// :87:21: error: use of undefined value here causes illegal behavior
1599// :87:21: note: when computing vector element at index '0'
1600// :87:21: error: use of undefined value here causes illegal behavior
1601// :87:21: note: when computing vector element at index '0'
1602// :87:21: error: use of undefined value here causes illegal behavior
1603// :87:21: note: when computing vector element at index '0'
1604// :87:21: error: use of undefined value here causes illegal behavior
1605// :87:21: note: when computing vector element at index '0'
1606// :87:21: error: use of undefined value here causes illegal behavior
1607// :87:21: note: when computing vector element at index '0'
1608// :87:21: error: use of undefined value here causes illegal behavior
1609// :87:21: note: when computing vector element at index '0'
1610// :87:21: error: use of undefined value here causes illegal behavior
1611// :87:21: note: when computing vector element at index '0'
1612// :87:21: error: use of undefined value here causes illegal behavior
1613// :87:21: note: when computing vector element at index '0'
1614// :87:21: error: use of undefined value here causes illegal behavior
1615// :87:21: note: when computing vector element at index '0'
1616// :87:21: error: use of undefined value here causes illegal behavior
1617// :87:21: note: when computing vector element at index '0'
1618// :87:21: error: use of undefined value here causes illegal behavior
1619// :87:21: note: when computing vector element at index '0'
1620// :87:21: error: use of undefined value here causes illegal behavior
1621// :87:21: note: when computing vector element at index '0'
1622// :87:21: error: use of undefined value here causes illegal behavior
1623// :87:21: note: when computing vector element at index '0'
1624// :87:21: error: use of undefined value here causes illegal behavior
1625// :87:21: note: when computing vector element at index '0'
1626// :87:21: error: use of undefined value here causes illegal behavior
1627// :87:21: note: when computing vector element at index '0'
1628// :91:22: error: use of undefined value here causes illegal behavior
1629// :91:22: error: use of undefined value here causes illegal behavior
1630// :91:22: error: use of undefined value here causes illegal behavior
1631// :91:22: note: when computing vector element at index '0'
1632// :91:22: error: use of undefined value here causes illegal behavior
1633// :91:22: note: when computing vector element at index '0'
1634// :91:22: error: use of undefined value here causes illegal behavior
1635// :91:22: note: when computing vector element at index '0'
1636// :91:22: error: use of undefined value here causes illegal behavior
1637// :91:22: note: when computing vector element at index '0'
1638// :91:22: error: use of undefined value here causes illegal behavior
1639// :91:22: note: when computing vector element at index '1'
1640// :91:22: error: use of undefined value here causes illegal behavior
1641// :91:22: note: when computing vector element at index '1'
1642// :91:22: error: use of undefined value here causes illegal behavior
1643// :91:22: note: when computing vector element at index '0'
1644// :91:22: error: use of undefined value here causes illegal behavior
1645// :91:22: note: when computing vector element at index '0'
1646// :91:22: error: use of undefined value here causes illegal behavior
1647// :91:22: note: when computing vector element at index '0'
1648// :91:22: error: use of undefined value here causes illegal behavior
1649// :91:22: note: when computing vector element at index '0'
1650// :91:22: error: use of undefined value here causes illegal behavior
1651// :91:22: error: use of undefined value here causes illegal behavior
1652// :91:22: error: use of undefined value here causes illegal behavior
1653// :91:22: note: when computing vector element at index '0'
1654// :91:22: error: use of undefined value here causes illegal behavior
1655// :91:22: note: when computing vector element at index '0'
1656// :91:22: error: use of undefined value here causes illegal behavior
1657// :91:22: note: when computing vector element at index '0'
1658// :91:22: error: use of undefined value here causes illegal behavior
1659// :91:22: note: when computing vector element at index '0'
1660// :91:22: error: use of undefined value here causes illegal behavior
1661// :91:22: note: when computing vector element at index '1'
1662// :91:22: error: use of undefined value here causes illegal behavior
1663// :91:22: note: when computing vector element at index '1'
1664// :91:22: error: use of undefined value here causes illegal behavior
1665// :91:22: note: when computing vector element at index '0'
1666// :91:22: error: use of undefined value here causes illegal behavior
1667// :91:22: note: when computing vector element at index '0'
1668// :91:22: error: use of undefined value here causes illegal behavior
1669// :91:22: note: when computing vector element at index '0'
1670// :91:22: error: use of undefined value here causes illegal behavior
1671// :91:22: note: when computing vector element at index '0'
1672// :91:22: error: use of undefined value here causes illegal behavior
1673// :91:22: error: use of undefined value here causes illegal behavior
1674// :91:22: error: use of undefined value here causes illegal behavior
1675// :91:22: note: when computing vector element at index '0'
1676// :91:22: error: use of undefined value here causes illegal behavior
1677// :91:22: note: when computing vector element at index '0'
1678// :91:22: error: use of undefined value here causes illegal behavior
1679// :91:22: note: when computing vector element at index '0'
1680// :91:22: error: use of undefined value here causes illegal behavior
1681// :91:22: note: when computing vector element at index '0'
1682// :91:22: error: use of undefined value here causes illegal behavior
1683// :91:22: note: when computing vector element at index '1'
1684// :91:22: error: use of undefined value here causes illegal behavior
1685// :91:22: note: when computing vector element at index '1'
1686// :91:22: error: use of undefined value here causes illegal behavior
1687// :91:22: note: when computing vector element at index '0'
1688// :91:22: error: use of undefined value here causes illegal behavior
1689// :91:22: note: when computing vector element at index '0'
1690// :91:22: error: use of undefined value here causes illegal behavior
1691// :91:22: note: when computing vector element at index '0'
1692// :91:22: error: use of undefined value here causes illegal behavior
1693// :91:22: note: when computing vector element at index '0'
1694// :91:22: error: use of undefined value here causes illegal behavior
1695// :91:22: error: use of undefined value here causes illegal behavior
1696// :91:22: error: use of undefined value here causes illegal behavior
1697// :91:22: note: when computing vector element at index '0'
1698// :91:22: error: use of undefined value here causes illegal behavior
1699// :91:22: note: when computing vector element at index '0'
1700// :91:22: error: use of undefined value here causes illegal behavior
1701// :91:22: note: when computing vector element at index '0'
1702// :91:22: error: use of undefined value here causes illegal behavior
1703// :91:22: note: when computing vector element at index '0'
1704// :91:22: error: use of undefined value here causes illegal behavior
1705// :91:22: note: when computing vector element at index '1'
1706// :91:22: error: use of undefined value here causes illegal behavior
1707// :91:22: note: when computing vector element at index '1'
1708// :91:22: error: use of undefined value here causes illegal behavior
1709// :91:22: note: when computing vector element at index '0'
1710// :91:22: error: use of undefined value here causes illegal behavior
1711// :91:22: note: when computing vector element at index '0'
1712// :91:22: error: use of undefined value here causes illegal behavior
1713// :91:22: note: when computing vector element at index '0'
1714// :91:22: error: use of undefined value here causes illegal behavior
1715// :91:22: note: when computing vector element at index '0'
1716// :91:22: error: use of undefined value here causes illegal behavior
1717// :91:22: error: use of undefined value here causes illegal behavior
1718// :91:22: error: use of undefined value here causes illegal behavior
1719// :91:22: note: when computing vector element at index '0'
1720// :91:22: error: use of undefined value here causes illegal behavior
1721// :91:22: note: when computing vector element at index '0'
1722// :91:22: error: use of undefined value here causes illegal behavior
1723// :91:22: note: when computing vector element at index '0'
1724// :91:22: error: use of undefined value here causes illegal behavior
1725// :91:22: note: when computing vector element at index '0'
1726// :91:22: error: use of undefined value here causes illegal behavior
1727// :91:22: note: when computing vector element at index '1'
1728// :91:22: error: use of undefined value here causes illegal behavior
1729// :91:22: note: when computing vector element at index '1'
1730// :91:22: error: use of undefined value here causes illegal behavior
1731// :91:22: note: when computing vector element at index '0'
1732// :91:22: error: use of undefined value here causes illegal behavior
1733// :91:22: note: when computing vector element at index '0'
1734// :91:22: error: use of undefined value here causes illegal behavior
1735// :91:22: note: when computing vector element at index '0'
1736// :91:22: error: use of undefined value here causes illegal behavior
1737// :91:22: note: when computing vector element at index '0'
1738// :91:22: error: use of undefined value here causes illegal behavior
1739// :91:22: error: use of undefined value here causes illegal behavior
1740// :91:22: error: use of undefined value here causes illegal behavior
1741// :91:22: note: when computing vector element at index '0'
1742// :91:22: error: use of undefined value here causes illegal behavior
1743// :91:22: note: when computing vector element at index '0'
1744// :91:22: error: use of undefined value here causes illegal behavior
1745// :91:22: note: when computing vector element at index '0'
1746// :91:22: error: use of undefined value here causes illegal behavior
1747// :91:22: note: when computing vector element at index '0'
1748// :91:22: error: use of undefined value here causes illegal behavior
1749// :91:22: note: when computing vector element at index '1'
1750// :91:22: error: use of undefined value here causes illegal behavior
1751// :91:22: note: when computing vector element at index '1'
1752// :91:22: error: use of undefined value here causes illegal behavior
1753// :91:22: note: when computing vector element at index '0'
1754// :91:22: error: use of undefined value here causes illegal behavior
1755// :91:22: note: when computing vector element at index '0'
1756// :91:22: error: use of undefined value here causes illegal behavior
1757// :91:22: note: when computing vector element at index '0'
1758// :91:22: error: use of undefined value here causes illegal behavior
1759// :91:22: note: when computing vector element at index '0'
1760// :91:22: error: use of undefined value here causes illegal behavior
1761// :91:22: error: use of undefined value here causes illegal behavior
1762// :91:22: error: use of undefined value here causes illegal behavior
1763// :91:22: note: when computing vector element at index '0'
1764// :91:22: error: use of undefined value here causes illegal behavior
1765// :91:22: note: when computing vector element at index '0'
1766// :91:22: error: use of undefined value here causes illegal behavior
1767// :91:22: note: when computing vector element at index '0'
1768// :91:22: error: use of undefined value here causes illegal behavior
1769// :91:22: note: when computing vector element at index '0'
1770// :91:22: error: use of undefined value here causes illegal behavior
1771// :91:22: note: when computing vector element at index '1'
1772// :91:22: error: use of undefined value here causes illegal behavior
1773// :91:22: note: when computing vector element at index '1'
1774// :91:22: error: use of undefined value here causes illegal behavior
1775// :91:22: note: when computing vector element at index '0'
1776// :91:22: error: use of undefined value here causes illegal behavior
1777// :91:22: note: when computing vector element at index '0'
1778// :91:22: error: use of undefined value here causes illegal behavior
1779// :91:22: note: when computing vector element at index '0'
1780// :91:22: error: use of undefined value here causes illegal behavior
1781// :91:22: note: when computing vector element at index '0'
1782// :91:22: error: use of undefined value here causes illegal behavior
1783// :91:22: error: use of undefined value here causes illegal behavior
1784// :91:22: error: use of undefined value here causes illegal behavior
1785// :91:22: note: when computing vector element at index '0'
1786// :91:22: error: use of undefined value here causes illegal behavior
1787// :91:22: note: when computing vector element at index '0'
1788// :91:22: error: use of undefined value here causes illegal behavior
1789// :91:22: note: when computing vector element at index '0'
1790// :91:22: error: use of undefined value here causes illegal behavior
1791// :91:22: note: when computing vector element at index '0'
1792// :91:22: error: use of undefined value here causes illegal behavior
1793// :91:22: note: when computing vector element at index '1'
1794// :91:22: error: use of undefined value here causes illegal behavior
1795// :91:22: note: when computing vector element at index '1'
1796// :91:22: error: use of undefined value here causes illegal behavior
1797// :91:22: note: when computing vector element at index '0'
1798// :91:22: error: use of undefined value here causes illegal behavior
1799// :91:22: note: when computing vector element at index '0'
1800// :91:22: error: use of undefined value here causes illegal behavior
1801// :91:22: note: when computing vector element at index '0'
1802// :91:22: error: use of undefined value here causes illegal behavior
1803// :91:22: note: when computing vector element at index '0'
1804// :91:22: error: use of undefined value here causes illegal behavior
1805// :91:22: error: use of undefined value here causes illegal behavior
1806// :91:22: error: use of undefined value here causes illegal behavior
1807// :91:22: note: when computing vector element at index '0'
1808// :91:22: error: use of undefined value here causes illegal behavior
1809// :91:22: note: when computing vector element at index '0'
1810// :91:22: error: use of undefined value here causes illegal behavior
1811// :91:22: note: when computing vector element at index '0'
1812// :91:22: error: use of undefined value here causes illegal behavior
1813// :91:22: note: when computing vector element at index '0'
1814// :91:22: error: use of undefined value here causes illegal behavior
1815// :91:22: note: when computing vector element at index '1'
1816// :91:22: error: use of undefined value here causes illegal behavior
1817// :91:22: note: when computing vector element at index '1'
1818// :91:22: error: use of undefined value here causes illegal behavior
1819// :91:22: note: when computing vector element at index '0'
1820// :91:22: error: use of undefined value here causes illegal behavior
1821// :91:22: note: when computing vector element at index '0'
1822// :91:22: error: use of undefined value here causes illegal behavior
1823// :91:22: note: when computing vector element at index '0'
1824// :91:22: error: use of undefined value here causes illegal behavior
1825// :91:22: note: when computing vector element at index '0'
1826// :91:22: error: use of undefined value here causes illegal behavior
1827// :91:22: error: use of undefined value here causes illegal behavior
1828// :91:22: error: use of undefined value here causes illegal behavior
1829// :91:22: note: when computing vector element at index '0'
1830// :91:22: error: use of undefined value here causes illegal behavior
1831// :91:22: note: when computing vector element at index '0'
1832// :91:22: error: use of undefined value here causes illegal behavior
1833// :91:22: note: when computing vector element at index '0'
1834// :91:22: error: use of undefined value here causes illegal behavior
1835// :91:22: note: when computing vector element at index '0'
1836// :91:22: error: use of undefined value here causes illegal behavior
1837// :91:22: note: when computing vector element at index '1'
1838// :91:22: error: use of undefined value here causes illegal behavior
1839// :91:22: note: when computing vector element at index '1'
1840// :91:22: error: use of undefined value here causes illegal behavior
1841// :91:22: note: when computing vector element at index '0'
1842// :91:22: error: use of undefined value here causes illegal behavior
1843// :91:22: note: when computing vector element at index '0'
1844// :91:22: error: use of undefined value here causes illegal behavior
1845// :91:22: note: when computing vector element at index '0'
1846// :91:22: error: use of undefined value here causes illegal behavior
1847// :91:22: note: when computing vector element at index '0'
1848// :91:22: error: use of undefined value here causes illegal behavior
1849// :91:22: error: use of undefined value here causes illegal behavior
1850// :91:22: error: use of undefined value here causes illegal behavior
1851// :91:22: note: when computing vector element at index '0'
1852// :91:22: error: use of undefined value here causes illegal behavior
1853// :91:22: note: when computing vector element at index '0'
1854// :91:22: error: use of undefined value here causes illegal behavior
1855// :91:22: note: when computing vector element at index '0'
1856// :91:22: error: use of undefined value here causes illegal behavior
1857// :91:22: note: when computing vector element at index '0'
1858// :91:22: error: use of undefined value here causes illegal behavior
1859// :91:22: note: when computing vector element at index '1'
1860// :91:22: error: use of undefined value here causes illegal behavior
1861// :91:22: note: when computing vector element at index '1'
1862// :91:22: error: use of undefined value here causes illegal behavior
1863// :91:22: note: when computing vector element at index '0'
1864// :91:22: error: use of undefined value here causes illegal behavior
1865// :91:22: note: when computing vector element at index '0'
1866// :91:22: error: use of undefined value here causes illegal behavior
1867// :91:22: note: when computing vector element at index '0'
1868// :91:22: error: use of undefined value here causes illegal behavior
1869// :91:22: note: when computing vector element at index '0'
1870// :91:25: error: use of undefined value here causes illegal behavior
1871// :91:25: note: when computing vector element at index '0'
1872// :91:25: error: use of undefined value here causes illegal behavior
1873// :91:25: note: when computing vector element at index '0'
1874// :91:25: error: use of undefined value here causes illegal behavior
1875// :91:25: note: when computing vector element at index '0'
1876// :91:25: error: use of undefined value here causes illegal behavior
1877// :91:25: note: when computing vector element at index '0'
1878// :91:25: error: use of undefined value here causes illegal behavior
1879// :91:25: note: when computing vector element at index '0'
1880// :91:25: error: use of undefined value here causes illegal behavior
1881// :91:25: note: when computing vector element at index '0'
1882// :91:25: error: use of undefined value here causes illegal behavior
1883// :91:25: note: when computing vector element at index '0'
1884// :91:25: error: use of undefined value here causes illegal behavior
1885// :91:25: note: when computing vector element at index '0'
1886// :91:25: error: use of undefined value here causes illegal behavior
1887// :91:25: note: when computing vector element at index '0'
1888// :91:25: error: use of undefined value here causes illegal behavior
1889// :91:25: note: when computing vector element at index '0'
1890// :91:25: error: use of undefined value here causes illegal behavior
1891// :91:25: note: when computing vector element at index '0'
1892// :91:25: error: use of undefined value here causes illegal behavior
1893// :91:25: note: when computing vector element at index '0'
1894// :91:25: error: use of undefined value here causes illegal behavior
1895// :91:25: note: when computing vector element at index '0'
1896// :91:25: error: use of undefined value here causes illegal behavior
1897// :91:25: note: when computing vector element at index '0'
1898// :91:25: error: use of undefined value here causes illegal behavior
1899// :91:25: note: when computing vector element at index '0'
1900// :91:25: error: use of undefined value here causes illegal behavior
1901// :91:25: note: when computing vector element at index '0'
1902// :91:25: error: use of undefined value here causes illegal behavior
1903// :91:25: note: when computing vector element at index '0'
1904// :91:25: error: use of undefined value here causes illegal behavior
1905// :91:25: note: when computing vector element at index '0'
1906// :91:25: error: use of undefined value here causes illegal behavior
1907// :91:25: note: when computing vector element at index '0'
1908// :91:25: error: use of undefined value here causes illegal behavior
1909// :91:25: note: when computing vector element at index '0'
1910// :91:25: error: use of undefined value here causes illegal behavior
1911// :91:25: note: when computing vector element at index '0'
1912// :91:25: error: use of undefined value here causes illegal behavior
1913// :91:25: note: when computing vector element at index '0'
1914// :95:22: error: use of undefined value here causes illegal behavior
1915// :95:22: error: use of undefined value here causes illegal behavior
1916// :95:22: error: use of undefined value here causes illegal behavior
1917// :95:22: note: when computing vector element at index '0'
1918// :95:22: error: use of undefined value here causes illegal behavior
1919// :95:22: note: when computing vector element at index '0'
1920// :95:22: error: use of undefined value here causes illegal behavior
1921// :95:22: note: when computing vector element at index '0'
1922// :95:22: error: use of undefined value here causes illegal behavior
1923// :95:22: note: when computing vector element at index '0'
1924// :95:22: error: use of undefined value here causes illegal behavior
1925// :95:22: note: when computing vector element at index '1'
1926// :95:22: error: use of undefined value here causes illegal behavior
1927// :95:22: note: when computing vector element at index '1'
1928// :95:22: error: use of undefined value here causes illegal behavior
1929// :95:22: note: when computing vector element at index '0'
1930// :95:22: error: use of undefined value here causes illegal behavior
1931// :95:22: note: when computing vector element at index '0'
1932// :95:22: error: use of undefined value here causes illegal behavior
1933// :95:22: note: when computing vector element at index '0'
1934// :95:22: error: use of undefined value here causes illegal behavior
1935// :95:22: note: when computing vector element at index '0'
1936// :95:22: error: use of undefined value here causes illegal behavior
1937// :95:22: error: use of undefined value here causes illegal behavior
1938// :95:22: error: use of undefined value here causes illegal behavior
1939// :95:22: note: when computing vector element at index '0'
1940// :95:22: error: use of undefined value here causes illegal behavior
1941// :95:22: note: when computing vector element at index '0'
1942// :95:22: error: use of undefined value here causes illegal behavior
1943// :95:22: note: when computing vector element at index '0'
1944// :95:22: error: use of undefined value here causes illegal behavior
1945// :95:22: note: when computing vector element at index '0'
1946// :95:22: error: use of undefined value here causes illegal behavior
1947// :95:22: note: when computing vector element at index '1'
1948// :95:22: error: use of undefined value here causes illegal behavior
1949// :95:22: note: when computing vector element at index '1'
1950// :95:22: error: use of undefined value here causes illegal behavior
1951// :95:22: note: when computing vector element at index '0'
1952// :95:22: error: use of undefined value here causes illegal behavior
1953// :95:22: note: when computing vector element at index '0'
1954// :95:22: error: use of undefined value here causes illegal behavior
1955// :95:22: note: when computing vector element at index '0'
1956// :95:22: error: use of undefined value here causes illegal behavior
1957// :95:22: note: when computing vector element at index '0'
1958// :95:22: error: use of undefined value here causes illegal behavior
1959// :95:22: error: use of undefined value here causes illegal behavior
1960// :95:22: error: use of undefined value here causes illegal behavior
1961// :95:22: note: when computing vector element at index '0'
1962// :95:22: error: use of undefined value here causes illegal behavior
1963// :95:22: note: when computing vector element at index '0'
1964// :95:22: error: use of undefined value here causes illegal behavior
1965// :95:22: note: when computing vector element at index '0'
1966// :95:22: error: use of undefined value here causes illegal behavior
1967// :95:22: note: when computing vector element at index '0'
1968// :95:22: error: use of undefined value here causes illegal behavior
1969// :95:22: note: when computing vector element at index '1'
1970// :95:22: error: use of undefined value here causes illegal behavior
1971// :95:22: note: when computing vector element at index '1'
1972// :95:22: error: use of undefined value here causes illegal behavior
1973// :95:22: note: when computing vector element at index '0'
1974// :95:22: error: use of undefined value here causes illegal behavior
1975// :95:22: note: when computing vector element at index '0'
1976// :95:22: error: use of undefined value here causes illegal behavior
1977// :95:22: note: when computing vector element at index '0'
1978// :95:22: error: use of undefined value here causes illegal behavior
1979// :95:22: note: when computing vector element at index '0'
1980// :95:22: error: use of undefined value here causes illegal behavior
1981// :95:22: error: use of undefined value here causes illegal behavior
1982// :95:22: error: use of undefined value here causes illegal behavior
1983// :95:22: note: when computing vector element at index '0'
1984// :95:22: error: use of undefined value here causes illegal behavior
1985// :95:22: note: when computing vector element at index '0'
1986// :95:22: error: use of undefined value here causes illegal behavior
1987// :95:22: note: when computing vector element at index '0'
1988// :95:22: error: use of undefined value here causes illegal behavior
1989// :95:22: note: when computing vector element at index '0'
1990// :95:22: error: use of undefined value here causes illegal behavior
1991// :95:22: note: when computing vector element at index '1'
1992// :95:22: error: use of undefined value here causes illegal behavior
1993// :95:22: note: when computing vector element at index '1'
1994// :95:22: error: use of undefined value here causes illegal behavior
1995// :95:22: note: when computing vector element at index '0'
1996// :95:22: error: use of undefined value here causes illegal behavior
1997// :95:22: note: when computing vector element at index '0'
1998// :95:22: error: use of undefined value here causes illegal behavior
1999// :95:22: note: when computing vector element at index '0'
2000// :95:22: error: use of undefined value here causes illegal behavior
2001// :95:22: note: when computing vector element at index '0'
2002// :95:22: error: use of undefined value here causes illegal behavior
2003// :95:22: error: use of undefined value here causes illegal behavior
2004// :95:22: error: use of undefined value here causes illegal behavior
2005// :95:22: note: when computing vector element at index '0'
2006// :95:22: error: use of undefined value here causes illegal behavior
2007// :95:22: note: when computing vector element at index '0'
2008// :95:22: error: use of undefined value here causes illegal behavior
2009// :95:22: note: when computing vector element at index '0'
2010// :95:22: error: use of undefined value here causes illegal behavior
2011// :95:22: note: when computing vector element at index '0'
2012// :95:22: error: use of undefined value here causes illegal behavior
2013// :95:22: note: when computing vector element at index '1'
2014// :95:22: error: use of undefined value here causes illegal behavior
2015// :95:22: note: when computing vector element at index '1'
2016// :95:22: error: use of undefined value here causes illegal behavior
2017// :95:22: note: when computing vector element at index '0'
2018// :95:22: error: use of undefined value here causes illegal behavior
2019// :95:22: note: when computing vector element at index '0'
2020// :95:22: error: use of undefined value here causes illegal behavior
2021// :95:22: note: when computing vector element at index '0'
2022// :95:22: error: use of undefined value here causes illegal behavior
2023// :95:22: note: when computing vector element at index '0'
2024// :95:22: error: use of undefined value here causes illegal behavior
2025// :95:22: error: use of undefined value here causes illegal behavior
2026// :95:22: error: use of undefined value here causes illegal behavior
2027// :95:22: note: when computing vector element at index '0'
2028// :95:22: error: use of undefined value here causes illegal behavior
2029// :95:22: note: when computing vector element at index '0'
2030// :95:22: error: use of undefined value here causes illegal behavior
2031// :95:22: note: when computing vector element at index '0'
2032// :95:22: error: use of undefined value here causes illegal behavior
2033// :95:22: note: when computing vector element at index '0'
2034// :95:22: error: use of undefined value here causes illegal behavior
2035// :95:22: note: when computing vector element at index '1'
2036// :95:22: error: use of undefined value here causes illegal behavior
2037// :95:22: note: when computing vector element at index '1'
2038// :95:22: error: use of undefined value here causes illegal behavior
2039// :95:22: note: when computing vector element at index '0'
2040// :95:22: error: use of undefined value here causes illegal behavior
2041// :95:22: note: when computing vector element at index '0'
2042// :95:22: error: use of undefined value here causes illegal behavior
2043// :95:22: note: when computing vector element at index '0'
2044// :95:22: error: use of undefined value here causes illegal behavior
2045// :95:22: note: when computing vector element at index '0'
2046// :95:22: error: use of undefined value here causes illegal behavior
2047// :95:22: error: use of undefined value here causes illegal behavior
2048// :95:22: error: use of undefined value here causes illegal behavior
2049// :95:22: note: when computing vector element at index '0'
2050// :95:22: error: use of undefined value here causes illegal behavior
2051// :95:22: note: when computing vector element at index '0'
2052// :95:22: error: use of undefined value here causes illegal behavior
2053// :95:22: note: when computing vector element at index '0'
2054// :95:22: error: use of undefined value here causes illegal behavior
2055// :95:22: note: when computing vector element at index '0'
2056// :95:22: error: use of undefined value here causes illegal behavior
2057// :95:22: note: when computing vector element at index '1'
2058// :95:22: error: use of undefined value here causes illegal behavior
2059// :95:22: note: when computing vector element at index '1'
2060// :95:22: error: use of undefined value here causes illegal behavior
2061// :95:22: note: when computing vector element at index '0'
2062// :95:22: error: use of undefined value here causes illegal behavior
2063// :95:22: note: when computing vector element at index '0'
2064// :95:22: error: use of undefined value here causes illegal behavior
2065// :95:22: note: when computing vector element at index '0'
2066// :95:22: error: use of undefined value here causes illegal behavior
2067// :95:22: note: when computing vector element at index '0'
2068// :95:22: error: use of undefined value here causes illegal behavior
2069// :95:22: error: use of undefined value here causes illegal behavior
2070// :95:22: error: use of undefined value here causes illegal behavior
2071// :95:22: note: when computing vector element at index '0'
2072// :95:22: error: use of undefined value here causes illegal behavior
2073// :95:22: note: when computing vector element at index '0'
2074// :95:22: error: use of undefined value here causes illegal behavior
2075// :95:22: note: when computing vector element at index '0'
2076// :95:22: error: use of undefined value here causes illegal behavior
2077// :95:22: note: when computing vector element at index '0'
2078// :95:22: error: use of undefined value here causes illegal behavior
2079// :95:22: note: when computing vector element at index '1'
2080// :95:22: error: use of undefined value here causes illegal behavior
2081// :95:22: note: when computing vector element at index '1'
2082// :95:22: error: use of undefined value here causes illegal behavior
2083// :95:22: note: when computing vector element at index '0'
2084// :95:22: error: use of undefined value here causes illegal behavior
2085// :95:22: note: when computing vector element at index '0'
2086// :95:22: error: use of undefined value here causes illegal behavior
2087// :95:22: note: when computing vector element at index '0'
2088// :95:22: error: use of undefined value here causes illegal behavior
2089// :95:22: note: when computing vector element at index '0'
2090// :95:22: error: use of undefined value here causes illegal behavior
2091// :95:22: error: use of undefined value here causes illegal behavior
2092// :95:22: error: use of undefined value here causes illegal behavior
2093// :95:22: note: when computing vector element at index '0'
2094// :95:22: error: use of undefined value here causes illegal behavior
2095// :95:22: note: when computing vector element at index '0'
2096// :95:22: error: use of undefined value here causes illegal behavior
2097// :95:22: note: when computing vector element at index '0'
2098// :95:22: error: use of undefined value here causes illegal behavior
2099// :95:22: note: when computing vector element at index '0'
2100// :95:22: error: use of undefined value here causes illegal behavior
2101// :95:22: note: when computing vector element at index '1'
2102// :95:22: error: use of undefined value here causes illegal behavior
2103// :95:22: note: when computing vector element at index '1'
2104// :95:22: error: use of undefined value here causes illegal behavior
2105// :95:22: note: when computing vector element at index '0'
2106// :95:22: error: use of undefined value here causes illegal behavior
2107// :95:22: note: when computing vector element at index '0'
2108// :95:22: error: use of undefined value here causes illegal behavior
2109// :95:22: note: when computing vector element at index '0'
2110// :95:22: error: use of undefined value here causes illegal behavior
2111// :95:22: note: when computing vector element at index '0'
2112// :95:22: error: use of undefined value here causes illegal behavior
2113// :95:22: error: use of undefined value here causes illegal behavior
2114// :95:22: error: use of undefined value here causes illegal behavior
2115// :95:22: note: when computing vector element at index '0'
2116// :95:22: error: use of undefined value here causes illegal behavior
2117// :95:22: note: when computing vector element at index '0'
2118// :95:22: error: use of undefined value here causes illegal behavior
2119// :95:22: note: when computing vector element at index '0'
2120// :95:22: error: use of undefined value here causes illegal behavior
2121// :95:22: note: when computing vector element at index '0'
2122// :95:22: error: use of undefined value here causes illegal behavior
2123// :95:22: note: when computing vector element at index '1'
2124// :95:22: error: use of undefined value here causes illegal behavior
2125// :95:22: note: when computing vector element at index '1'
2126// :95:22: error: use of undefined value here causes illegal behavior
2127// :95:22: note: when computing vector element at index '0'
2128// :95:22: error: use of undefined value here causes illegal behavior
2129// :95:22: note: when computing vector element at index '0'
2130// :95:22: error: use of undefined value here causes illegal behavior
2131// :95:22: note: when computing vector element at index '0'
2132// :95:22: error: use of undefined value here causes illegal behavior
2133// :95:22: note: when computing vector element at index '0'
2134// :95:22: error: use of undefined value here causes illegal behavior
2135// :95:22: error: use of undefined value here causes illegal behavior
2136// :95:22: error: use of undefined value here causes illegal behavior
2137// :95:22: note: when computing vector element at index '0'
2138// :95:22: error: use of undefined value here causes illegal behavior
2139// :95:22: note: when computing vector element at index '0'
2140// :95:22: error: use of undefined value here causes illegal behavior
2141// :95:22: note: when computing vector element at index '0'
2142// :95:22: error: use of undefined value here causes illegal behavior
2143// :95:22: note: when computing vector element at index '0'
2144// :95:22: error: use of undefined value here causes illegal behavior
2145// :95:22: note: when computing vector element at index '1'
2146// :95:22: error: use of undefined value here causes illegal behavior
2147// :95:22: note: when computing vector element at index '1'
2148// :95:22: error: use of undefined value here causes illegal behavior
2149// :95:22: note: when computing vector element at index '0'
2150// :95:22: error: use of undefined value here causes illegal behavior
2151// :95:22: note: when computing vector element at index '0'
2152// :95:22: error: use of undefined value here causes illegal behavior
2153// :95:22: note: when computing vector element at index '0'
2154// :95:22: error: use of undefined value here causes illegal behavior
2155// :95:22: note: when computing vector element at index '0'
2156// :95:25: error: use of undefined value here causes illegal behavior
2157// :95:25: note: when computing vector element at index '0'
2158// :95:25: error: use of undefined value here causes illegal behavior
2159// :95:25: note: when computing vector element at index '0'
2160// :95:25: error: use of undefined value here causes illegal behavior
2161// :95:25: note: when computing vector element at index '0'
2162// :95:25: error: use of undefined value here causes illegal behavior
2163// :95:25: note: when computing vector element at index '0'
2164// :95:25: error: use of undefined value here causes illegal behavior
2165// :95:25: note: when computing vector element at index '0'
2166// :95:25: error: use of undefined value here causes illegal behavior
2167// :95:25: note: when computing vector element at index '0'
2168// :95:25: error: use of undefined value here causes illegal behavior
2169// :95:25: note: when computing vector element at index '0'
2170// :95:25: error: use of undefined value here causes illegal behavior
2171// :95:25: note: when computing vector element at index '0'
2172// :95:25: error: use of undefined value here causes illegal behavior
2173// :95:25: note: when computing vector element at index '0'
2174// :95:25: error: use of undefined value here causes illegal behavior
2175// :95:25: note: when computing vector element at index '0'
2176// :95:25: error: use of undefined value here causes illegal behavior
2177// :95:25: note: when computing vector element at index '0'
2178// :95:25: error: use of undefined value here causes illegal behavior
2179// :95:25: note: when computing vector element at index '0'
2180// :95:25: error: use of undefined value here causes illegal behavior
2181// :95:25: note: when computing vector element at index '0'
2182// :95:25: error: use of undefined value here causes illegal behavior
2183// :95:25: note: when computing vector element at index '0'
2184// :95:25: error: use of undefined value here causes illegal behavior
2185// :95:25: note: when computing vector element at index '0'
2186// :95:25: error: use of undefined value here causes illegal behavior
2187// :95:25: note: when computing vector element at index '0'
2188// :95:25: error: use of undefined value here causes illegal behavior
2189// :95:25: note: when computing vector element at index '0'
2190// :95:25: error: use of undefined value here causes illegal behavior
2191// :95:25: note: when computing vector element at index '0'
2192// :95:25: error: use of undefined value here causes illegal behavior
2193// :95:25: note: when computing vector element at index '0'
2194// :95:25: error: use of undefined value here causes illegal behavior
2195// :95:25: note: when computing vector element at index '0'
2196// :95:25: error: use of undefined value here causes illegal behavior
2197// :95:25: note: when computing vector element at index '0'
2198// :95:25: error: use of undefined value here causes illegal behavior
2199// :95:25: note: when computing vector element at index '0'
2200// :101:17: error: use of undefined value here causes illegal behavior
2201// :101:17: error: use of undefined value here causes illegal behavior
2202// :101:17: error: use of undefined value here causes illegal behavior
2203// :101:17: error: use of undefined value here causes illegal behavior
2204// :101:17: error: use of undefined value here causes illegal behavior
2205// :101:17: error: use of undefined value here causes illegal behavior
2206// :101:17: error: use of undefined value here causes illegal behavior
2207// :101:17: note: when computing vector element at index '1'
2208// :101:17: error: use of undefined value here causes illegal behavior
2209// :101:17: note: when computing vector element at index '1'
2210// :101:17: error: use of undefined value here causes illegal behavior
2211// :101:17: note: when computing vector element at index '1'
2212// :101:17: error: use of undefined value here causes illegal behavior
2213// :101:17: note: when computing vector element at index '1'
2214// :101:17: error: use of undefined value here causes illegal behavior
2215// :101:17: note: when computing vector element at index '0'
2216// :101:17: error: use of undefined value here causes illegal behavior
2217// :101:17: note: when computing vector element at index '0'
2218// :101:17: error: use of undefined value here causes illegal behavior
2219// :101:17: note: when computing vector element at index '0'
2220// :101:17: error: use of undefined value here causes illegal behavior
2221// :101:17: note: when computing vector element at index '0'
2222// :101:17: error: use of undefined value here causes illegal behavior
2223// :101:17: error: use of undefined value here causes illegal behavior
2224// :101:17: error: use of undefined value here causes illegal behavior
2225// :101:17: error: use of undefined value here causes illegal behavior
2226// :101:17: error: use of undefined value here causes illegal behavior
2227// :101:17: error: use of undefined value here causes illegal behavior
2228// :101:17: error: use of undefined value here causes illegal behavior
2229// :101:17: note: when computing vector element at index '1'
2230// :101:17: error: use of undefined value here causes illegal behavior
2231// :101:17: note: when computing vector element at index '1'
2232// :101:17: error: use of undefined value here causes illegal behavior
2233// :101:17: note: when computing vector element at index '1'
2234// :101:17: error: use of undefined value here causes illegal behavior
2235// :101:17: note: when computing vector element at index '1'
2236// :101:17: error: use of undefined value here causes illegal behavior
2237// :101:17: note: when computing vector element at index '0'
2238// :101:17: error: use of undefined value here causes illegal behavior
2239// :101:17: note: when computing vector element at index '0'
2240// :101:17: error: use of undefined value here causes illegal behavior
2241// :101:17: note: when computing vector element at index '0'
2242// :101:17: error: use of undefined value here causes illegal behavior
2243// :101:17: note: when computing vector element at index '0'
2244// :101:17: error: use of undefined value here causes illegal behavior
2245// :101:17: error: use of undefined value here causes illegal behavior
2246// :101:17: error: use of undefined value here causes illegal behavior
2247// :101:17: error: use of undefined value here causes illegal behavior
2248// :101:17: error: use of undefined value here causes illegal behavior
2249// :101:17: error: use of undefined value here causes illegal behavior
2250// :101:17: error: use of undefined value here causes illegal behavior
2251// :101:17: note: when computing vector element at index '1'
2252// :101:17: error: use of undefined value here causes illegal behavior
2253// :101:17: note: when computing vector element at index '1'
2254// :101:17: error: use of undefined value here causes illegal behavior
2255// :101:17: note: when computing vector element at index '1'
2256// :101:17: error: use of undefined value here causes illegal behavior
2257// :101:17: note: when computing vector element at index '1'
2258// :101:17: error: use of undefined value here causes illegal behavior
2259// :101:17: note: when computing vector element at index '0'
2260// :101:17: error: use of undefined value here causes illegal behavior
2261// :101:17: note: when computing vector element at index '0'
2262// :101:17: error: use of undefined value here causes illegal behavior
2263// :101:17: note: when computing vector element at index '0'
2264// :101:17: error: use of undefined value here causes illegal behavior
2265// :101:17: note: when computing vector element at index '0'
2266// :101:17: error: use of undefined value here causes illegal behavior
2267// :101:17: error: use of undefined value here causes illegal behavior
2268// :101:17: error: use of undefined value here causes illegal behavior
2269// :101:17: error: use of undefined value here causes illegal behavior
2270// :101:17: error: use of undefined value here causes illegal behavior
2271// :101:17: error: use of undefined value here causes illegal behavior
2272// :101:17: error: use of undefined value here causes illegal behavior
2273// :101:17: note: when computing vector element at index '1'
2274// :101:17: error: use of undefined value here causes illegal behavior
2275// :101:17: note: when computing vector element at index '1'
2276// :101:17: error: use of undefined value here causes illegal behavior
2277// :101:17: note: when computing vector element at index '1'
2278// :101:17: error: use of undefined value here causes illegal behavior
2279// :101:17: note: when computing vector element at index '1'
2280// :101:17: error: use of undefined value here causes illegal behavior
2281// :101:17: note: when computing vector element at index '0'
2282// :101:17: error: use of undefined value here causes illegal behavior
2283// :101:17: note: when computing vector element at index '0'
2284// :101:17: error: use of undefined value here causes illegal behavior
2285// :101:17: note: when computing vector element at index '0'
2286// :101:17: error: use of undefined value here causes illegal behavior
2287// :101:17: note: when computing vector element at index '0'
2288// :101:17: error: use of undefined value here causes illegal behavior
2289// :101:17: error: use of undefined value here causes illegal behavior
2290// :101:17: error: use of undefined value here causes illegal behavior
2291// :101:17: error: use of undefined value here causes illegal behavior
2292// :101:17: error: use of undefined value here causes illegal behavior
2293// :101:17: error: use of undefined value here causes illegal behavior
2294// :101:17: error: use of undefined value here causes illegal behavior
2295// :101:17: note: when computing vector element at index '1'
2296// :101:17: error: use of undefined value here causes illegal behavior
2297// :101:17: note: when computing vector element at index '1'
2298// :101:17: error: use of undefined value here causes illegal behavior
2299// :101:17: note: when computing vector element at index '1'
2300// :101:17: error: use of undefined value here causes illegal behavior
2301// :101:17: note: when computing vector element at index '1'
2302// :101:17: error: use of undefined value here causes illegal behavior
2303// :101:17: note: when computing vector element at index '0'
2304// :101:17: error: use of undefined value here causes illegal behavior
2305// :101:17: note: when computing vector element at index '0'
2306// :101:17: error: use of undefined value here causes illegal behavior
2307// :101:17: note: when computing vector element at index '0'
2308// :101:17: error: use of undefined value here causes illegal behavior
2309// :101:17: note: when computing vector element at index '0'
2310// :101:17: error: use of undefined value here causes illegal behavior
2311// :101:17: error: use of undefined value here causes illegal behavior
2312// :101:17: error: use of undefined value here causes illegal behavior
2313// :101:17: error: use of undefined value here causes illegal behavior
2314// :101:17: error: use of undefined value here causes illegal behavior
2315// :101:17: error: use of undefined value here causes illegal behavior
2316// :101:17: error: use of undefined value here causes illegal behavior
2317// :101:17: note: when computing vector element at index '1'
2318// :101:17: error: use of undefined value here causes illegal behavior
2319// :101:17: note: when computing vector element at index '1'
2320// :101:17: error: use of undefined value here causes illegal behavior
2321// :101:17: note: when computing vector element at index '1'
2322// :101:17: error: use of undefined value here causes illegal behavior
2323// :101:17: note: when computing vector element at index '1'
2324// :101:17: error: use of undefined value here causes illegal behavior
2325// :101:17: note: when computing vector element at index '0'
2326// :101:17: error: use of undefined value here causes illegal behavior
2327// :101:17: note: when computing vector element at index '0'
2328// :101:17: error: use of undefined value here causes illegal behavior
2329// :101:17: note: when computing vector element at index '0'
2330// :101:17: error: use of undefined value here causes illegal behavior
2331// :101:17: note: when computing vector element at index '0'
2332// :101:17: error: use of undefined value here causes illegal behavior
2333// :101:17: error: use of undefined value here causes illegal behavior
2334// :101:17: error: use of undefined value here causes illegal behavior
2335// :101:17: error: use of undefined value here causes illegal behavior
2336// :101:17: error: use of undefined value here causes illegal behavior
2337// :101:17: error: use of undefined value here causes illegal behavior
2338// :101:17: error: use of undefined value here causes illegal behavior
2339// :101:17: note: when computing vector element at index '1'
2340// :101:17: error: use of undefined value here causes illegal behavior
2341// :101:17: note: when computing vector element at index '1'
2342// :101:17: error: use of undefined value here causes illegal behavior
2343// :101:17: note: when computing vector element at index '1'
2344// :101:17: error: use of undefined value here causes illegal behavior
2345// :101:17: note: when computing vector element at index '1'
2346// :101:17: error: use of undefined value here causes illegal behavior
2347// :101:17: note: when computing vector element at index '0'
2348// :101:17: error: use of undefined value here causes illegal behavior
2349// :101:17: note: when computing vector element at index '0'
2350// :101:17: error: use of undefined value here causes illegal behavior
2351// :101:17: note: when computing vector element at index '0'
2352// :101:17: error: use of undefined value here causes illegal behavior
2353// :101:17: note: when computing vector element at index '0'
2354// :101:17: error: use of undefined value here causes illegal behavior
2355// :101:17: error: use of undefined value here causes illegal behavior
2356// :101:17: error: use of undefined value here causes illegal behavior
2357// :101:17: error: use of undefined value here causes illegal behavior
2358// :101:17: error: use of undefined value here causes illegal behavior
2359// :101:17: error: use of undefined value here causes illegal behavior
2360// :101:17: error: use of undefined value here causes illegal behavior
2361// :101:17: note: when computing vector element at index '1'
2362// :101:17: error: use of undefined value here causes illegal behavior
2363// :101:17: note: when computing vector element at index '1'
2364// :101:17: error: use of undefined value here causes illegal behavior
2365// :101:17: note: when computing vector element at index '1'
2366// :101:17: error: use of undefined value here causes illegal behavior
2367// :101:17: note: when computing vector element at index '1'
2368// :101:17: error: use of undefined value here causes illegal behavior
2369// :101:17: note: when computing vector element at index '0'
2370// :101:17: error: use of undefined value here causes illegal behavior
2371// :101:17: note: when computing vector element at index '0'
2372// :101:17: error: use of undefined value here causes illegal behavior
2373// :101:17: note: when computing vector element at index '0'
2374// :101:17: error: use of undefined value here causes illegal behavior
2375// :101:17: note: when computing vector element at index '0'
2376// :101:17: error: use of undefined value here causes illegal behavior
2377// :101:17: error: use of undefined value here causes illegal behavior
2378// :101:17: error: use of undefined value here causes illegal behavior
2379// :101:17: error: use of undefined value here causes illegal behavior
2380// :101:17: error: use of undefined value here causes illegal behavior
2381// :101:17: error: use of undefined value here causes illegal behavior
2382// :101:17: error: use of undefined value here causes illegal behavior
2383// :101:17: note: when computing vector element at index '1'
2384// :101:17: error: use of undefined value here causes illegal behavior
2385// :101:17: note: when computing vector element at index '1'
2386// :101:17: error: use of undefined value here causes illegal behavior
2387// :101:17: note: when computing vector element at index '1'
2388// :101:17: error: use of undefined value here causes illegal behavior
2389// :101:17: note: when computing vector element at index '1'
2390// :101:17: error: use of undefined value here causes illegal behavior
2391// :101:17: note: when computing vector element at index '0'
2392// :101:17: error: use of undefined value here causes illegal behavior
2393// :101:17: note: when computing vector element at index '0'
2394// :101:17: error: use of undefined value here causes illegal behavior
2395// :101:17: note: when computing vector element at index '0'
2396// :101:17: error: use of undefined value here causes illegal behavior
2397// :101:17: note: when computing vector element at index '0'
2398// :101:17: error: use of undefined value here causes illegal behavior
2399// :101:17: error: use of undefined value here causes illegal behavior
2400// :101:17: error: use of undefined value here causes illegal behavior
2401// :101:17: error: use of undefined value here causes illegal behavior
2402// :101:17: error: use of undefined value here causes illegal behavior
2403// :101:17: error: use of undefined value here causes illegal behavior
2404// :101:17: error: use of undefined value here causes illegal behavior
2405// :101:17: note: when computing vector element at index '1'
2406// :101:17: error: use of undefined value here causes illegal behavior
2407// :101:17: note: when computing vector element at index '1'
2408// :101:17: error: use of undefined value here causes illegal behavior
2409// :101:17: note: when computing vector element at index '1'
2410// :101:17: error: use of undefined value here causes illegal behavior
2411// :101:17: note: when computing vector element at index '1'
2412// :101:17: error: use of undefined value here causes illegal behavior
2413// :101:17: note: when computing vector element at index '0'
2414// :101:17: error: use of undefined value here causes illegal behavior
2415// :101:17: note: when computing vector element at index '0'
2416// :101:17: error: use of undefined value here causes illegal behavior
2417// :101:17: note: when computing vector element at index '0'
2418// :101:17: error: use of undefined value here causes illegal behavior
2419// :101:17: note: when computing vector element at index '0'
2420// :101:17: error: use of undefined value here causes illegal behavior
2421// :101:17: error: use of undefined value here causes illegal behavior
2422// :101:17: error: use of undefined value here causes illegal behavior
2423// :101:17: error: use of undefined value here causes illegal behavior
2424// :101:17: error: use of undefined value here causes illegal behavior
2425// :101:17: error: use of undefined value here causes illegal behavior
2426// :101:17: error: use of undefined value here causes illegal behavior
2427// :101:17: note: when computing vector element at index '1'
2428// :101:17: error: use of undefined value here causes illegal behavior
2429// :101:17: note: when computing vector element at index '1'
2430// :101:17: error: use of undefined value here causes illegal behavior
2431// :101:17: note: when computing vector element at index '1'
2432// :101:17: error: use of undefined value here causes illegal behavior
2433// :101:17: note: when computing vector element at index '1'
2434// :101:17: error: use of undefined value here causes illegal behavior
2435// :101:17: note: when computing vector element at index '0'
2436// :101:17: error: use of undefined value here causes illegal behavior
2437// :101:17: note: when computing vector element at index '0'
2438// :101:17: error: use of undefined value here causes illegal behavior
2439// :101:17: note: when computing vector element at index '0'
2440// :101:17: error: use of undefined value here causes illegal behavior
2441// :101:17: note: when computing vector element at index '0'
2442// :105:27: error: use of undefined value here causes illegal behavior
2443// :105:27: error: use of undefined value here causes illegal behavior
2444// :105:27: error: use of undefined value here causes illegal behavior
2445// :105:27: error: use of undefined value here causes illegal behavior
2446// :105:27: error: use of undefined value here causes illegal behavior
2447// :105:27: error: use of undefined value here causes illegal behavior
2448// :105:27: error: use of undefined value here causes illegal behavior
2449// :105:27: note: when computing vector element at index '1'
2450// :105:27: error: use of undefined value here causes illegal behavior
2451// :105:27: note: when computing vector element at index '1'
2452// :105:27: error: use of undefined value here causes illegal behavior
2453// :105:27: note: when computing vector element at index '1'
2454// :105:27: error: use of undefined value here causes illegal behavior
2455// :105:27: note: when computing vector element at index '1'
2456// :105:27: error: use of undefined value here causes illegal behavior
2457// :105:27: note: when computing vector element at index '0'
2458// :105:27: error: use of undefined value here causes illegal behavior
2459// :105:27: note: when computing vector element at index '0'
2460// :105:27: error: use of undefined value here causes illegal behavior
2461// :105:27: note: when computing vector element at index '0'
2462// :105:27: error: use of undefined value here causes illegal behavior
2463// :105:27: note: when computing vector element at index '0'
2464// :105:27: error: use of undefined value here causes illegal behavior
2465// :105:27: error: use of undefined value here causes illegal behavior
2466// :105:27: error: use of undefined value here causes illegal behavior
2467// :105:27: error: use of undefined value here causes illegal behavior
2468// :105:27: error: use of undefined value here causes illegal behavior
2469// :105:27: error: use of undefined value here causes illegal behavior
2470// :105:27: error: use of undefined value here causes illegal behavior
2471// :105:27: note: when computing vector element at index '1'
2472// :105:27: error: use of undefined value here causes illegal behavior
2473// :105:27: note: when computing vector element at index '1'
2474// :105:27: error: use of undefined value here causes illegal behavior
2475// :105:27: note: when computing vector element at index '1'
2476// :105:27: error: use of undefined value here causes illegal behavior
2477// :105:27: note: when computing vector element at index '1'
2478// :105:27: error: use of undefined value here causes illegal behavior
2479// :105:27: note: when computing vector element at index '0'
2480// :105:27: error: use of undefined value here causes illegal behavior
2481// :105:27: note: when computing vector element at index '0'
2482// :105:27: error: use of undefined value here causes illegal behavior
2483// :105:27: note: when computing vector element at index '0'
2484// :105:27: error: use of undefined value here causes illegal behavior
2485// :105:27: note: when computing vector element at index '0'
2486// :105:27: error: use of undefined value here causes illegal behavior
2487// :105:27: error: use of undefined value here causes illegal behavior
2488// :105:27: error: use of undefined value here causes illegal behavior
2489// :105:27: error: use of undefined value here causes illegal behavior
2490// :105:27: error: use of undefined value here causes illegal behavior
2491// :105:27: error: use of undefined value here causes illegal behavior
2492// :105:27: error: use of undefined value here causes illegal behavior
2493// :105:27: note: when computing vector element at index '1'
2494// :105:27: error: use of undefined value here causes illegal behavior
2495// :105:27: note: when computing vector element at index '1'
2496// :105:27: error: use of undefined value here causes illegal behavior
2497// :105:27: note: when computing vector element at index '1'
2498// :105:27: error: use of undefined value here causes illegal behavior
2499// :105:27: note: when computing vector element at index '1'
2500// :105:27: error: use of undefined value here causes illegal behavior
2501// :105:27: note: when computing vector element at index '0'
2502// :105:27: error: use of undefined value here causes illegal behavior
2503// :105:27: note: when computing vector element at index '0'
2504// :105:27: error: use of undefined value here causes illegal behavior
2505// :105:27: note: when computing vector element at index '0'
2506// :105:27: error: use of undefined value here causes illegal behavior
2507// :105:27: note: when computing vector element at index '0'
2508// :105:27: error: use of undefined value here causes illegal behavior
2509// :105:27: error: use of undefined value here causes illegal behavior
2510// :105:27: error: use of undefined value here causes illegal behavior
2511// :105:27: error: use of undefined value here causes illegal behavior
2512// :105:27: error: use of undefined value here causes illegal behavior
2513// :105:27: error: use of undefined value here causes illegal behavior
2514// :105:27: error: use of undefined value here causes illegal behavior
2515// :105:27: note: when computing vector element at index '1'
2516// :105:27: error: use of undefined value here causes illegal behavior
2517// :105:27: note: when computing vector element at index '1'
2518// :105:27: error: use of undefined value here causes illegal behavior
2519// :105:27: note: when computing vector element at index '1'
2520// :105:27: error: use of undefined value here causes illegal behavior
2521// :105:27: note: when computing vector element at index '1'
2522// :105:27: error: use of undefined value here causes illegal behavior
2523// :105:27: note: when computing vector element at index '0'
2524// :105:27: error: use of undefined value here causes illegal behavior
2525// :105:27: note: when computing vector element at index '0'
2526// :105:27: error: use of undefined value here causes illegal behavior
2527// :105:27: note: when computing vector element at index '0'
2528// :105:27: error: use of undefined value here causes illegal behavior
2529// :105:27: note: when computing vector element at index '0'
2530// :105:27: error: use of undefined value here causes illegal behavior
2531// :105:27: error: use of undefined value here causes illegal behavior
2532// :105:27: error: use of undefined value here causes illegal behavior
2533// :105:27: error: use of undefined value here causes illegal behavior
2534// :105:27: error: use of undefined value here causes illegal behavior
2535// :105:27: error: use of undefined value here causes illegal behavior
2536// :105:27: error: use of undefined value here causes illegal behavior
2537// :105:27: note: when computing vector element at index '1'
2538// :105:27: error: use of undefined value here causes illegal behavior
2539// :105:27: note: when computing vector element at index '1'
2540// :105:27: error: use of undefined value here causes illegal behavior
2541// :105:27: note: when computing vector element at index '1'
2542// :105:27: error: use of undefined value here causes illegal behavior
2543// :105:27: note: when computing vector element at index '1'
2544// :105:27: error: use of undefined value here causes illegal behavior
2545// :105:27: note: when computing vector element at index '0'
2546// :105:27: error: use of undefined value here causes illegal behavior
2547// :105:27: note: when computing vector element at index '0'
2548// :105:27: error: use of undefined value here causes illegal behavior
2549// :105:27: note: when computing vector element at index '0'
2550// :105:27: error: use of undefined value here causes illegal behavior
2551// :105:27: note: when computing vector element at index '0'
2552// :105:27: error: use of undefined value here causes illegal behavior
2553// :105:27: error: use of undefined value here causes illegal behavior
2554// :105:27: error: use of undefined value here causes illegal behavior
2555// :105:27: error: use of undefined value here causes illegal behavior
2556// :105:27: error: use of undefined value here causes illegal behavior
2557// :105:27: error: use of undefined value here causes illegal behavior
2558// :105:27: error: use of undefined value here causes illegal behavior
2559// :105:27: note: when computing vector element at index '1'
2560// :105:27: error: use of undefined value here causes illegal behavior
2561// :105:27: note: when computing vector element at index '1'
2562// :105:27: error: use of undefined value here causes illegal behavior
2563// :105:27: note: when computing vector element at index '1'
2564// :105:27: error: use of undefined value here causes illegal behavior
2565// :105:27: note: when computing vector element at index '1'
2566// :105:27: error: use of undefined value here causes illegal behavior
2567// :105:27: note: when computing vector element at index '0'
2568// :105:27: error: use of undefined value here causes illegal behavior
2569// :105:27: note: when computing vector element at index '0'
2570// :105:27: error: use of undefined value here causes illegal behavior
2571// :105:27: note: when computing vector element at index '0'
2572// :105:27: error: use of undefined value here causes illegal behavior
2573// :105:27: note: when computing vector element at index '0'
2574// :105:27: error: use of undefined value here causes illegal behavior
2575// :105:27: error: use of undefined value here causes illegal behavior
2576// :105:27: error: use of undefined value here causes illegal behavior
2577// :105:27: error: use of undefined value here causes illegal behavior
2578// :105:27: error: use of undefined value here causes illegal behavior
2579// :105:27: error: use of undefined value here causes illegal behavior
2580// :105:27: error: use of undefined value here causes illegal behavior
2581// :105:27: note: when computing vector element at index '1'
2582// :105:27: error: use of undefined value here causes illegal behavior
2583// :105:27: note: when computing vector element at index '1'
2584// :105:27: error: use of undefined value here causes illegal behavior
2585// :105:27: note: when computing vector element at index '1'
2586// :105:27: error: use of undefined value here causes illegal behavior
2587// :105:27: note: when computing vector element at index '1'
2588// :105:27: error: use of undefined value here causes illegal behavior
2589// :105:27: note: when computing vector element at index '0'
2590// :105:27: error: use of undefined value here causes illegal behavior
2591// :105:27: note: when computing vector element at index '0'
2592// :105:27: error: use of undefined value here causes illegal behavior
2593// :105:27: note: when computing vector element at index '0'
2594// :105:27: error: use of undefined value here causes illegal behavior
2595// :105:27: note: when computing vector element at index '0'
2596// :105:27: error: use of undefined value here causes illegal behavior
2597// :105:27: error: use of undefined value here causes illegal behavior
2598// :105:27: error: use of undefined value here causes illegal behavior
2599// :105:27: error: use of undefined value here causes illegal behavior
2600// :105:27: error: use of undefined value here causes illegal behavior
2601// :105:27: error: use of undefined value here causes illegal behavior
2602// :105:27: error: use of undefined value here causes illegal behavior
2603// :105:27: note: when computing vector element at index '1'
2604// :105:27: error: use of undefined value here causes illegal behavior
2605// :105:27: note: when computing vector element at index '1'
2606// :105:27: error: use of undefined value here causes illegal behavior
2607// :105:27: note: when computing vector element at index '1'
2608// :105:27: error: use of undefined value here causes illegal behavior
2609// :105:27: note: when computing vector element at index '1'
2610// :105:27: error: use of undefined value here causes illegal behavior
2611// :105:27: note: when computing vector element at index '0'
2612// :105:27: error: use of undefined value here causes illegal behavior
2613// :105:27: note: when computing vector element at index '0'
2614// :105:27: error: use of undefined value here causes illegal behavior
2615// :105:27: note: when computing vector element at index '0'
2616// :105:27: error: use of undefined value here causes illegal behavior
2617// :105:27: note: when computing vector element at index '0'
2618// :105:27: error: use of undefined value here causes illegal behavior
2619// :105:27: error: use of undefined value here causes illegal behavior
2620// :105:27: error: use of undefined value here causes illegal behavior
2621// :105:27: error: use of undefined value here causes illegal behavior
2622// :105:27: error: use of undefined value here causes illegal behavior
2623// :105:27: error: use of undefined value here causes illegal behavior
2624// :105:27: error: use of undefined value here causes illegal behavior
2625// :105:27: note: when computing vector element at index '1'
2626// :105:27: error: use of undefined value here causes illegal behavior
2627// :105:27: note: when computing vector element at index '1'
2628// :105:27: error: use of undefined value here causes illegal behavior
2629// :105:27: note: when computing vector element at index '1'
2630// :105:27: error: use of undefined value here causes illegal behavior
2631// :105:27: note: when computing vector element at index '1'
2632// :105:27: error: use of undefined value here causes illegal behavior
2633// :105:27: note: when computing vector element at index '0'
2634// :105:27: error: use of undefined value here causes illegal behavior
2635// :105:27: note: when computing vector element at index '0'
2636// :105:27: error: use of undefined value here causes illegal behavior
2637// :105:27: note: when computing vector element at index '0'
2638// :105:27: error: use of undefined value here causes illegal behavior
2639// :105:27: note: when computing vector element at index '0'
2640// :105:27: error: use of undefined value here causes illegal behavior
2641// :105:27: error: use of undefined value here causes illegal behavior
2642// :105:27: error: use of undefined value here causes illegal behavior
2643// :105:27: error: use of undefined value here causes illegal behavior
2644// :105:27: error: use of undefined value here causes illegal behavior
2645// :105:27: error: use of undefined value here causes illegal behavior
2646// :105:27: error: use of undefined value here causes illegal behavior
2647// :105:27: note: when computing vector element at index '1'
2648// :105:27: error: use of undefined value here causes illegal behavior
2649// :105:27: note: when computing vector element at index '1'
2650// :105:27: error: use of undefined value here causes illegal behavior
2651// :105:27: note: when computing vector element at index '1'
2652// :105:27: error: use of undefined value here causes illegal behavior
2653// :105:27: note: when computing vector element at index '1'
2654// :105:27: error: use of undefined value here causes illegal behavior
2655// :105:27: note: when computing vector element at index '0'
2656// :105:27: error: use of undefined value here causes illegal behavior
2657// :105:27: note: when computing vector element at index '0'
2658// :105:27: error: use of undefined value here causes illegal behavior
2659// :105:27: note: when computing vector element at index '0'
2660// :105:27: error: use of undefined value here causes illegal behavior
2661// :105:27: note: when computing vector element at index '0'
2662// :105:27: error: use of undefined value here causes illegal behavior
2663// :105:27: error: use of undefined value here causes illegal behavior
2664// :105:27: error: use of undefined value here causes illegal behavior
2665// :105:27: error: use of undefined value here causes illegal behavior
2666// :105:27: error: use of undefined value here causes illegal behavior
2667// :105:27: error: use of undefined value here causes illegal behavior
2668// :105:27: error: use of undefined value here causes illegal behavior
2669// :105:27: note: when computing vector element at index '1'
2670// :105:27: error: use of undefined value here causes illegal behavior
2671// :105:27: note: when computing vector element at index '1'
2672// :105:27: error: use of undefined value here causes illegal behavior
2673// :105:27: note: when computing vector element at index '1'
2674// :105:27: error: use of undefined value here causes illegal behavior
2675// :105:27: note: when computing vector element at index '1'
2676// :105:27: error: use of undefined value here causes illegal behavior
2677// :105:27: note: when computing vector element at index '0'
2678// :105:27: error: use of undefined value here causes illegal behavior
2679// :105:27: note: when computing vector element at index '0'
2680// :105:27: error: use of undefined value here causes illegal behavior
2681// :105:27: note: when computing vector element at index '0'
2682// :105:27: error: use of undefined value here causes illegal behavior
2683// :105:27: note: when computing vector element at index '0'
2684// :109:27: error: use of undefined value here causes illegal behavior
2685// :109:27: error: use of undefined value here causes illegal behavior
2686// :109:27: error: use of undefined value here causes illegal behavior
2687// :109:27: error: use of undefined value here causes illegal behavior
2688// :109:27: error: use of undefined value here causes illegal behavior
2689// :109:27: error: use of undefined value here causes illegal behavior
2690// :109:27: error: use of undefined value here causes illegal behavior
2691// :109:27: note: when computing vector element at index '1'
2692// :109:27: error: use of undefined value here causes illegal behavior
2693// :109:27: note: when computing vector element at index '1'
2694// :109:27: error: use of undefined value here causes illegal behavior
2695// :109:27: note: when computing vector element at index '1'
2696// :109:27: error: use of undefined value here causes illegal behavior
2697// :109:27: note: when computing vector element at index '1'
2698// :109:27: error: use of undefined value here causes illegal behavior
2699// :109:27: note: when computing vector element at index '0'
2700// :109:27: error: use of undefined value here causes illegal behavior
2701// :109:27: note: when computing vector element at index '0'
2702// :109:27: error: use of undefined value here causes illegal behavior
2703// :109:27: note: when computing vector element at index '0'
2704// :109:27: error: use of undefined value here causes illegal behavior
2705// :109:27: note: when computing vector element at index '0'
2706// :109:27: error: use of undefined value here causes illegal behavior
2707// :109:27: error: use of undefined value here causes illegal behavior
2708// :109:27: error: use of undefined value here causes illegal behavior
2709// :109:27: error: use of undefined value here causes illegal behavior
2710// :109:27: error: use of undefined value here causes illegal behavior
2711// :109:27: error: use of undefined value here causes illegal behavior
2712// :109:27: error: use of undefined value here causes illegal behavior
2713// :109:27: note: when computing vector element at index '1'
2714// :109:27: error: use of undefined value here causes illegal behavior
2715// :109:27: note: when computing vector element at index '1'
2716// :109:27: error: use of undefined value here causes illegal behavior
2717// :109:27: note: when computing vector element at index '1'
2718// :109:27: error: use of undefined value here causes illegal behavior
2719// :109:27: note: when computing vector element at index '1'
2720// :109:27: error: use of undefined value here causes illegal behavior
2721// :109:27: note: when computing vector element at index '0'
2722// :109:27: error: use of undefined value here causes illegal behavior
2723// :109:27: note: when computing vector element at index '0'
2724// :109:27: error: use of undefined value here causes illegal behavior
2725// :109:27: note: when computing vector element at index '0'
2726// :109:27: error: use of undefined value here causes illegal behavior
2727// :109:27: note: when computing vector element at index '0'
2728// :109:27: error: use of undefined value here causes illegal behavior
2729// :109:27: error: use of undefined value here causes illegal behavior
2730// :109:27: error: use of undefined value here causes illegal behavior
2731// :109:27: error: use of undefined value here causes illegal behavior
2732// :109:27: error: use of undefined value here causes illegal behavior
2733// :109:27: error: use of undefined value here causes illegal behavior
2734// :109:27: error: use of undefined value here causes illegal behavior
2735// :109:27: note: when computing vector element at index '1'
2736// :109:27: error: use of undefined value here causes illegal behavior
2737// :109:27: note: when computing vector element at index '1'
2738// :109:27: error: use of undefined value here causes illegal behavior
2739// :109:27: note: when computing vector element at index '1'
2740// :109:27: error: use of undefined value here causes illegal behavior
2741// :109:27: note: when computing vector element at index '1'
2742// :109:27: error: use of undefined value here causes illegal behavior
2743// :109:27: note: when computing vector element at index '0'
2744// :109:27: error: use of undefined value here causes illegal behavior
2745// :109:27: note: when computing vector element at index '0'
2746// :109:27: error: use of undefined value here causes illegal behavior
2747// :109:27: note: when computing vector element at index '0'
2748// :109:27: error: use of undefined value here causes illegal behavior
2749// :109:27: note: when computing vector element at index '0'
2750// :109:27: error: use of undefined value here causes illegal behavior
2751// :109:27: error: use of undefined value here causes illegal behavior
2752// :109:27: error: use of undefined value here causes illegal behavior
2753// :109:27: error: use of undefined value here causes illegal behavior
2754// :109:27: error: use of undefined value here causes illegal behavior
2755// :109:27: error: use of undefined value here causes illegal behavior
2756// :109:27: error: use of undefined value here causes illegal behavior
2757// :109:27: note: when computing vector element at index '1'
2758// :109:27: error: use of undefined value here causes illegal behavior
2759// :109:27: note: when computing vector element at index '1'
2760// :109:27: error: use of undefined value here causes illegal behavior
2761// :109:27: note: when computing vector element at index '1'
2762// :109:27: error: use of undefined value here causes illegal behavior
2763// :109:27: note: when computing vector element at index '1'
2764// :109:27: error: use of undefined value here causes illegal behavior
2765// :109:27: note: when computing vector element at index '0'
2766// :109:27: error: use of undefined value here causes illegal behavior
2767// :109:27: note: when computing vector element at index '0'
2768// :109:27: error: use of undefined value here causes illegal behavior
2769// :109:27: note: when computing vector element at index '0'
2770// :109:27: error: use of undefined value here causes illegal behavior
2771// :109:27: note: when computing vector element at index '0'
2772// :109:27: error: use of undefined value here causes illegal behavior
2773// :109:27: error: use of undefined value here causes illegal behavior
2774// :109:27: error: use of undefined value here causes illegal behavior
2775// :109:27: error: use of undefined value here causes illegal behavior
2776// :109:27: error: use of undefined value here causes illegal behavior
2777// :109:27: error: use of undefined value here causes illegal behavior
2778// :109:27: error: use of undefined value here causes illegal behavior
2779// :109:27: note: when computing vector element at index '1'
2780// :109:27: error: use of undefined value here causes illegal behavior
2781// :109:27: note: when computing vector element at index '1'
2782// :109:27: error: use of undefined value here causes illegal behavior
2783// :109:27: note: when computing vector element at index '1'
2784// :109:27: error: use of undefined value here causes illegal behavior
2785// :109:27: note: when computing vector element at index '1'
2786// :109:27: error: use of undefined value here causes illegal behavior
2787// :109:27: note: when computing vector element at index '0'
2788// :109:27: error: use of undefined value here causes illegal behavior
2789// :109:27: note: when computing vector element at index '0'
2790// :109:27: error: use of undefined value here causes illegal behavior
2791// :109:27: note: when computing vector element at index '0'
2792// :109:27: error: use of undefined value here causes illegal behavior
2793// :109:27: note: when computing vector element at index '0'
2794// :109:27: error: use of undefined value here causes illegal behavior
2795// :109:27: error: use of undefined value here causes illegal behavior
2796// :109:27: error: use of undefined value here causes illegal behavior
2797// :109:27: error: use of undefined value here causes illegal behavior
2798// :109:27: error: use of undefined value here causes illegal behavior
2799// :109:27: error: use of undefined value here causes illegal behavior
2800// :109:27: error: use of undefined value here causes illegal behavior
2801// :109:27: note: when computing vector element at index '1'
2802// :109:27: error: use of undefined value here causes illegal behavior
2803// :109:27: note: when computing vector element at index '1'
2804// :109:27: error: use of undefined value here causes illegal behavior
2805// :109:27: note: when computing vector element at index '1'
2806// :109:27: error: use of undefined value here causes illegal behavior
2807// :109:27: note: when computing vector element at index '1'
2808// :109:27: error: use of undefined value here causes illegal behavior
2809// :109:27: note: when computing vector element at index '0'
2810// :109:27: error: use of undefined value here causes illegal behavior
2811// :109:27: note: when computing vector element at index '0'
2812// :109:27: error: use of undefined value here causes illegal behavior
2813// :109:27: note: when computing vector element at index '0'
2814// :109:27: error: use of undefined value here causes illegal behavior
2815// :109:27: note: when computing vector element at index '0'
2816// :109:27: error: use of undefined value here causes illegal behavior
2817// :109:27: error: use of undefined value here causes illegal behavior
2818// :109:27: error: use of undefined value here causes illegal behavior
2819// :109:27: error: use of undefined value here causes illegal behavior
2820// :109:27: error: use of undefined value here causes illegal behavior
2821// :109:27: error: use of undefined value here causes illegal behavior
2822// :109:27: error: use of undefined value here causes illegal behavior
2823// :109:27: note: when computing vector element at index '1'
2824// :109:27: error: use of undefined value here causes illegal behavior
2825// :109:27: note: when computing vector element at index '1'
2826// :109:27: error: use of undefined value here causes illegal behavior
2827// :109:27: note: when computing vector element at index '1'
2828// :109:27: error: use of undefined value here causes illegal behavior
2829// :109:27: note: when computing vector element at index '1'
2830// :109:27: error: use of undefined value here causes illegal behavior
2831// :109:27: note: when computing vector element at index '0'
2832// :109:27: error: use of undefined value here causes illegal behavior
2833// :109:27: note: when computing vector element at index '0'
2834// :109:27: error: use of undefined value here causes illegal behavior
2835// :109:27: note: when computing vector element at index '0'
2836// :109:27: error: use of undefined value here causes illegal behavior
2837// :109:27: note: when computing vector element at index '0'
2838// :109:27: error: use of undefined value here causes illegal behavior
2839// :109:27: error: use of undefined value here causes illegal behavior
2840// :109:27: error: use of undefined value here causes illegal behavior
2841// :109:27: error: use of undefined value here causes illegal behavior
2842// :109:27: error: use of undefined value here causes illegal behavior
2843// :109:27: error: use of undefined value here causes illegal behavior
2844// :109:27: error: use of undefined value here causes illegal behavior
2845// :109:27: note: when computing vector element at index '1'
2846// :109:27: error: use of undefined value here causes illegal behavior
2847// :109:27: note: when computing vector element at index '1'
2848// :109:27: error: use of undefined value here causes illegal behavior
2849// :109:27: note: when computing vector element at index '1'
2850// :109:27: error: use of undefined value here causes illegal behavior
2851// :109:27: note: when computing vector element at index '1'
2852// :109:27: error: use of undefined value here causes illegal behavior
2853// :109:27: note: when computing vector element at index '0'
2854// :109:27: error: use of undefined value here causes illegal behavior
2855// :109:27: note: when computing vector element at index '0'
2856// :109:27: error: use of undefined value here causes illegal behavior
2857// :109:27: note: when computing vector element at index '0'
2858// :109:27: error: use of undefined value here causes illegal behavior
2859// :109:27: note: when computing vector element at index '0'
2860// :109:27: error: use of undefined value here causes illegal behavior
2861// :109:27: error: use of undefined value here causes illegal behavior
2862// :109:27: error: use of undefined value here causes illegal behavior
2863// :109:27: error: use of undefined value here causes illegal behavior
2864// :109:27: error: use of undefined value here causes illegal behavior
2865// :109:27: error: use of undefined value here causes illegal behavior
2866// :109:27: error: use of undefined value here causes illegal behavior
2867// :109:27: note: when computing vector element at index '1'
2868// :109:27: error: use of undefined value here causes illegal behavior
2869// :109:27: note: when computing vector element at index '1'
2870// :109:27: error: use of undefined value here causes illegal behavior
2871// :109:27: note: when computing vector element at index '1'
2872// :109:27: error: use of undefined value here causes illegal behavior
2873// :109:27: note: when computing vector element at index '1'
2874// :109:27: error: use of undefined value here causes illegal behavior
2875// :109:27: note: when computing vector element at index '0'
2876// :109:27: error: use of undefined value here causes illegal behavior
2877// :109:27: note: when computing vector element at index '0'
2878// :109:27: error: use of undefined value here causes illegal behavior
2879// :109:27: note: when computing vector element at index '0'
2880// :109:27: error: use of undefined value here causes illegal behavior
2881// :109:27: note: when computing vector element at index '0'
2882// :109:27: error: use of undefined value here causes illegal behavior
2883// :109:27: error: use of undefined value here causes illegal behavior
2884// :109:27: error: use of undefined value here causes illegal behavior
2885// :109:27: error: use of undefined value here causes illegal behavior
2886// :109:27: error: use of undefined value here causes illegal behavior
2887// :109:27: error: use of undefined value here causes illegal behavior
2888// :109:27: error: use of undefined value here causes illegal behavior
2889// :109:27: note: when computing vector element at index '1'
2890// :109:27: error: use of undefined value here causes illegal behavior
2891// :109:27: note: when computing vector element at index '1'
2892// :109:27: error: use of undefined value here causes illegal behavior
2893// :109:27: note: when computing vector element at index '1'
2894// :109:27: error: use of undefined value here causes illegal behavior
2895// :109:27: note: when computing vector element at index '1'
2896// :109:27: error: use of undefined value here causes illegal behavior
2897// :109:27: note: when computing vector element at index '0'
2898// :109:27: error: use of undefined value here causes illegal behavior
2899// :109:27: note: when computing vector element at index '0'
2900// :109:27: error: use of undefined value here causes illegal behavior
2901// :109:27: note: when computing vector element at index '0'
2902// :109:27: error: use of undefined value here causes illegal behavior
2903// :109:27: note: when computing vector element at index '0'
2904// :109:27: error: use of undefined value here causes illegal behavior
2905// :109:27: error: use of undefined value here causes illegal behavior
2906// :109:27: error: use of undefined value here causes illegal behavior
2907// :109:27: error: use of undefined value here causes illegal behavior
2908// :109:27: error: use of undefined value here causes illegal behavior
2909// :109:27: error: use of undefined value here causes illegal behavior
2910// :109:27: error: use of undefined value here causes illegal behavior
2911// :109:27: note: when computing vector element at index '1'
2912// :109:27: error: use of undefined value here causes illegal behavior
2913// :109:27: note: when computing vector element at index '1'
2914// :109:27: error: use of undefined value here causes illegal behavior
2915// :109:27: note: when computing vector element at index '1'
2916// :109:27: error: use of undefined value here causes illegal behavior
2917// :109:27: note: when computing vector element at index '1'
2918// :109:27: error: use of undefined value here causes illegal behavior
2919// :109:27: note: when computing vector element at index '0'
2920// :109:27: error: use of undefined value here causes illegal behavior
2921// :109:27: note: when computing vector element at index '0'
2922// :109:27: error: use of undefined value here causes illegal behavior
2923// :109:27: note: when computing vector element at index '0'
2924// :109:27: error: use of undefined value here causes illegal behavior
2925// :109:27: note: when computing vector element at index '0'
2926// :113:27: error: use of undefined value here causes illegal behavior
2927// :113:27: error: use of undefined value here causes illegal behavior
2928// :113:27: error: use of undefined value here causes illegal behavior
2929// :113:27: error: use of undefined value here causes illegal behavior
2930// :113:27: error: use of undefined value here causes illegal behavior
2931// :113:27: error: use of undefined value here causes illegal behavior
2932// :113:27: error: use of undefined value here causes illegal behavior
2933// :113:27: note: when computing vector element at index '1'
2934// :113:27: error: use of undefined value here causes illegal behavior
2935// :113:27: note: when computing vector element at index '1'
2936// :113:27: error: use of undefined value here causes illegal behavior
2937// :113:27: note: when computing vector element at index '1'
2938// :113:27: error: use of undefined value here causes illegal behavior
2939// :113:27: note: when computing vector element at index '1'
2940// :113:27: error: use of undefined value here causes illegal behavior
2941// :113:27: note: when computing vector element at index '0'
2942// :113:27: error: use of undefined value here causes illegal behavior
2943// :113:27: note: when computing vector element at index '0'
2944// :113:27: error: use of undefined value here causes illegal behavior
2945// :113:27: note: when computing vector element at index '0'
2946// :113:27: error: use of undefined value here causes illegal behavior
2947// :113:27: note: when computing vector element at index '0'
2948// :113:27: error: use of undefined value here causes illegal behavior
2949// :113:27: error: use of undefined value here causes illegal behavior
2950// :113:27: error: use of undefined value here causes illegal behavior
2951// :113:27: error: use of undefined value here causes illegal behavior
2952// :113:27: error: use of undefined value here causes illegal behavior
2953// :113:27: error: use of undefined value here causes illegal behavior
2954// :113:27: error: use of undefined value here causes illegal behavior
2955// :113:27: note: when computing vector element at index '1'
2956// :113:27: error: use of undefined value here causes illegal behavior
2957// :113:27: note: when computing vector element at index '1'
2958// :113:27: error: use of undefined value here causes illegal behavior
2959// :113:27: note: when computing vector element at index '1'
2960// :113:27: error: use of undefined value here causes illegal behavior
2961// :113:27: note: when computing vector element at index '1'
2962// :113:27: error: use of undefined value here causes illegal behavior
2963// :113:27: note: when computing vector element at index '0'
2964// :113:27: error: use of undefined value here causes illegal behavior
2965// :113:27: note: when computing vector element at index '0'
2966// :113:27: error: use of undefined value here causes illegal behavior
2967// :113:27: note: when computing vector element at index '0'
2968// :113:27: error: use of undefined value here causes illegal behavior
2969// :113:27: note: when computing vector element at index '0'
2970// :113:27: error: use of undefined value here causes illegal behavior
2971// :113:27: error: use of undefined value here causes illegal behavior
2972// :113:27: error: use of undefined value here causes illegal behavior
2973// :113:27: error: use of undefined value here causes illegal behavior
2974// :113:27: error: use of undefined value here causes illegal behavior
2975// :113:27: error: use of undefined value here causes illegal behavior
2976// :113:27: error: use of undefined value here causes illegal behavior
2977// :113:27: note: when computing vector element at index '1'
2978// :113:27: error: use of undefined value here causes illegal behavior
2979// :113:27: note: when computing vector element at index '1'
2980// :113:27: error: use of undefined value here causes illegal behavior
2981// :113:27: note: when computing vector element at index '1'
2982// :113:27: error: use of undefined value here causes illegal behavior
2983// :113:27: note: when computing vector element at index '1'
2984// :113:27: error: use of undefined value here causes illegal behavior
2985// :113:27: note: when computing vector element at index '0'
2986// :113:27: error: use of undefined value here causes illegal behavior
2987// :113:27: note: when computing vector element at index '0'
2988// :113:27: error: use of undefined value here causes illegal behavior
2989// :113:27: note: when computing vector element at index '0'
2990// :113:27: error: use of undefined value here causes illegal behavior
2991// :113:27: note: when computing vector element at index '0'
2992// :113:27: error: use of undefined value here causes illegal behavior
2993// :113:27: error: use of undefined value here causes illegal behavior
2994// :113:27: error: use of undefined value here causes illegal behavior
2995// :113:27: error: use of undefined value here causes illegal behavior
2996// :113:27: error: use of undefined value here causes illegal behavior
2997// :113:27: error: use of undefined value here causes illegal behavior
2998// :113:27: error: use of undefined value here causes illegal behavior
2999// :113:27: note: when computing vector element at index '1'
3000// :113:27: error: use of undefined value here causes illegal behavior
3001// :113:27: note: when computing vector element at index '1'
3002// :113:27: error: use of undefined value here causes illegal behavior
3003// :113:27: note: when computing vector element at index '1'
3004// :113:27: error: use of undefined value here causes illegal behavior
3005// :113:27: note: when computing vector element at index '1'
3006// :113:27: error: use of undefined value here causes illegal behavior
3007// :113:27: note: when computing vector element at index '0'
3008// :113:27: error: use of undefined value here causes illegal behavior
3009// :113:27: note: when computing vector element at index '0'
3010// :113:27: error: use of undefined value here causes illegal behavior
3011// :113:27: note: when computing vector element at index '0'
3012// :113:27: error: use of undefined value here causes illegal behavior
3013// :113:27: note: when computing vector element at index '0'
3014// :113:27: error: use of undefined value here causes illegal behavior
3015// :113:27: error: use of undefined value here causes illegal behavior
3016// :113:27: error: use of undefined value here causes illegal behavior
3017// :113:27: error: use of undefined value here causes illegal behavior
3018// :113:27: error: use of undefined value here causes illegal behavior
3019// :113:27: error: use of undefined value here causes illegal behavior
3020// :113:27: error: use of undefined value here causes illegal behavior
3021// :113:27: note: when computing vector element at index '1'
3022// :113:27: error: use of undefined value here causes illegal behavior
3023// :113:27: note: when computing vector element at index '1'
3024// :113:27: error: use of undefined value here causes illegal behavior
3025// :113:27: note: when computing vector element at index '1'
3026// :113:27: error: use of undefined value here causes illegal behavior
3027// :113:27: note: when computing vector element at index '1'
3028// :113:27: error: use of undefined value here causes illegal behavior
3029// :113:27: note: when computing vector element at index '0'
3030// :113:27: error: use of undefined value here causes illegal behavior
3031// :113:27: note: when computing vector element at index '0'
3032// :113:27: error: use of undefined value here causes illegal behavior
3033// :113:27: note: when computing vector element at index '0'
3034// :113:27: error: use of undefined value here causes illegal behavior
3035// :113:27: note: when computing vector element at index '0'
3036// :113:27: error: use of undefined value here causes illegal behavior
3037// :113:27: error: use of undefined value here causes illegal behavior
3038// :113:27: error: use of undefined value here causes illegal behavior
3039// :113:27: error: use of undefined value here causes illegal behavior
3040// :113:27: error: use of undefined value here causes illegal behavior
3041// :113:27: error: use of undefined value here causes illegal behavior
3042// :113:27: error: use of undefined value here causes illegal behavior
3043// :113:27: note: when computing vector element at index '1'
3044// :113:27: error: use of undefined value here causes illegal behavior
3045// :113:27: note: when computing vector element at index '1'
3046// :113:27: error: use of undefined value here causes illegal behavior
3047// :113:27: note: when computing vector element at index '1'
3048// :113:27: error: use of undefined value here causes illegal behavior
3049// :113:27: note: when computing vector element at index '1'
3050// :113:27: error: use of undefined value here causes illegal behavior
3051// :113:27: note: when computing vector element at index '0'
3052// :113:27: error: use of undefined value here causes illegal behavior
3053// :113:27: note: when computing vector element at index '0'
3054// :113:27: error: use of undefined value here causes illegal behavior
3055// :113:27: note: when computing vector element at index '0'
3056// :113:27: error: use of undefined value here causes illegal behavior
3057// :113:27: note: when computing vector element at index '0'
3058// :113:27: error: use of undefined value here causes illegal behavior
3059// :113:27: error: use of undefined value here causes illegal behavior
3060// :113:27: error: use of undefined value here causes illegal behavior
3061// :113:27: error: use of undefined value here causes illegal behavior
3062// :113:27: error: use of undefined value here causes illegal behavior
3063// :113:27: error: use of undefined value here causes illegal behavior
3064// :113:27: error: use of undefined value here causes illegal behavior
3065// :113:27: note: when computing vector element at index '1'
3066// :113:27: error: use of undefined value here causes illegal behavior
3067// :113:27: note: when computing vector element at index '1'
3068// :113:27: error: use of undefined value here causes illegal behavior
3069// :113:27: note: when computing vector element at index '1'
3070// :113:27: error: use of undefined value here causes illegal behavior
3071// :113:27: note: when computing vector element at index '1'
3072// :113:27: error: use of undefined value here causes illegal behavior
3073// :113:27: note: when computing vector element at index '0'
3074// :113:27: error: use of undefined value here causes illegal behavior
3075// :113:27: note: when computing vector element at index '0'
3076// :113:27: error: use of undefined value here causes illegal behavior
3077// :113:27: note: when computing vector element at index '0'
3078// :113:27: error: use of undefined value here causes illegal behavior
3079// :113:27: note: when computing vector element at index '0'
3080// :113:27: error: use of undefined value here causes illegal behavior
3081// :113:27: error: use of undefined value here causes illegal behavior
3082// :113:27: error: use of undefined value here causes illegal behavior
3083// :113:27: error: use of undefined value here causes illegal behavior
3084// :113:27: error: use of undefined value here causes illegal behavior
3085// :113:27: error: use of undefined value here causes illegal behavior
3086// :113:27: error: use of undefined value here causes illegal behavior
3087// :113:27: note: when computing vector element at index '1'
3088// :113:27: error: use of undefined value here causes illegal behavior
3089// :113:27: note: when computing vector element at index '1'
3090// :113:27: error: use of undefined value here causes illegal behavior
3091// :113:27: note: when computing vector element at index '1'
3092// :113:27: error: use of undefined value here causes illegal behavior
3093// :113:27: note: when computing vector element at index '1'
3094// :113:27: error: use of undefined value here causes illegal behavior
3095// :113:27: note: when computing vector element at index '0'
3096// :113:27: error: use of undefined value here causes illegal behavior
3097// :113:27: note: when computing vector element at index '0'
3098// :113:27: error: use of undefined value here causes illegal behavior
3099// :113:27: note: when computing vector element at index '0'
3100// :113:27: error: use of undefined value here causes illegal behavior
3101// :113:27: note: when computing vector element at index '0'
3102// :113:27: error: use of undefined value here causes illegal behavior
3103// :113:27: error: use of undefined value here causes illegal behavior
3104// :113:27: error: use of undefined value here causes illegal behavior
3105// :113:27: error: use of undefined value here causes illegal behavior
3106// :113:27: error: use of undefined value here causes illegal behavior
3107// :113:27: error: use of undefined value here causes illegal behavior
3108// :113:27: error: use of undefined value here causes illegal behavior
3109// :113:27: note: when computing vector element at index '1'
3110// :113:27: error: use of undefined value here causes illegal behavior
3111// :113:27: note: when computing vector element at index '1'
3112// :113:27: error: use of undefined value here causes illegal behavior
3113// :113:27: note: when computing vector element at index '1'
3114// :113:27: error: use of undefined value here causes illegal behavior
3115// :113:27: note: when computing vector element at index '1'
3116// :113:27: error: use of undefined value here causes illegal behavior
3117// :113:27: note: when computing vector element at index '0'
3118// :113:27: error: use of undefined value here causes illegal behavior
3119// :113:27: note: when computing vector element at index '0'
3120// :113:27: error: use of undefined value here causes illegal behavior
3121// :113:27: note: when computing vector element at index '0'
3122// :113:27: error: use of undefined value here causes illegal behavior
3123// :113:27: note: when computing vector element at index '0'
3124// :113:27: error: use of undefined value here causes illegal behavior
3125// :113:27: error: use of undefined value here causes illegal behavior
3126// :113:27: error: use of undefined value here causes illegal behavior
3127// :113:27: error: use of undefined value here causes illegal behavior
3128// :113:27: error: use of undefined value here causes illegal behavior
3129// :113:27: error: use of undefined value here causes illegal behavior
3130// :113:27: error: use of undefined value here causes illegal behavior
3131// :113:27: note: when computing vector element at index '1'
3132// :113:27: error: use of undefined value here causes illegal behavior
3133// :113:27: note: when computing vector element at index '1'
3134// :113:27: error: use of undefined value here causes illegal behavior
3135// :113:27: note: when computing vector element at index '1'
3136// :113:27: error: use of undefined value here causes illegal behavior
3137// :113:27: note: when computing vector element at index '1'
3138// :113:27: error: use of undefined value here causes illegal behavior
3139// :113:27: note: when computing vector element at index '0'
3140// :113:27: error: use of undefined value here causes illegal behavior
3141// :113:27: note: when computing vector element at index '0'
3142// :113:27: error: use of undefined value here causes illegal behavior
3143// :113:27: note: when computing vector element at index '0'
3144// :113:27: error: use of undefined value here causes illegal behavior
3145// :113:27: note: when computing vector element at index '0'
3146// :113:27: error: use of undefined value here causes illegal behavior
3147// :113:27: error: use of undefined value here causes illegal behavior
3148// :113:27: error: use of undefined value here causes illegal behavior
3149// :113:27: error: use of undefined value here causes illegal behavior
3150// :113:27: error: use of undefined value here causes illegal behavior
3151// :113:27: error: use of undefined value here causes illegal behavior
3152// :113:27: error: use of undefined value here causes illegal behavior
3153// :113:27: note: when computing vector element at index '1'
3154// :113:27: error: use of undefined value here causes illegal behavior
3155// :113:27: note: when computing vector element at index '1'
3156// :113:27: error: use of undefined value here causes illegal behavior
3157// :113:27: note: when computing vector element at index '1'
3158// :113:27: error: use of undefined value here causes illegal behavior
3159// :113:27: note: when computing vector element at index '1'
3160// :113:27: error: use of undefined value here causes illegal behavior
3161// :113:27: note: when computing vector element at index '0'
3162// :113:27: error: use of undefined value here causes illegal behavior
3163// :113:27: note: when computing vector element at index '0'
3164// :113:27: error: use of undefined value here causes illegal behavior
3165// :113:27: note: when computing vector element at index '0'
3166// :113:27: error: use of undefined value here causes illegal behavior
3167// :113:27: note: when computing vector element at index '0'
3168// :117:22: error: use of undefined value here causes illegal behavior
3169// :117:22: error: use of undefined value here causes illegal behavior
3170// :117:22: error: use of undefined value here causes illegal behavior
3171// :117:22: error: use of undefined value here causes illegal behavior
3172// :117:22: error: use of undefined value here causes illegal behavior
3173// :117:22: error: use of undefined value here causes illegal behavior
3174// :117:22: error: use of undefined value here causes illegal behavior
3175// :117:22: note: when computing vector element at index '1'
3176// :117:22: error: use of undefined value here causes illegal behavior
3177// :117:22: note: when computing vector element at index '1'
3178// :117:22: error: use of undefined value here causes illegal behavior
3179// :117:22: note: when computing vector element at index '1'
3180// :117:22: error: use of undefined value here causes illegal behavior
3181// :117:22: note: when computing vector element at index '1'
3182// :117:22: error: use of undefined value here causes illegal behavior
3183// :117:22: note: when computing vector element at index '0'
3184// :117:22: error: use of undefined value here causes illegal behavior
3185// :117:22: note: when computing vector element at index '0'
3186// :117:22: error: use of undefined value here causes illegal behavior
3187// :117:22: note: when computing vector element at index '0'
3188// :117:22: error: use of undefined value here causes illegal behavior
3189// :117:22: note: when computing vector element at index '0'
3190// :117:22: error: use of undefined value here causes illegal behavior
3191// :117:22: error: use of undefined value here causes illegal behavior
3192// :117:22: error: use of undefined value here causes illegal behavior
3193// :117:22: error: use of undefined value here causes illegal behavior
3194// :117:22: error: use of undefined value here causes illegal behavior
3195// :117:22: error: use of undefined value here causes illegal behavior
3196// :117:22: error: use of undefined value here causes illegal behavior
3197// :117:22: note: when computing vector element at index '1'
3198// :117:22: error: use of undefined value here causes illegal behavior
3199// :117:22: note: when computing vector element at index '1'
3200// :117:22: error: use of undefined value here causes illegal behavior
3201// :117:22: note: when computing vector element at index '1'
3202// :117:22: error: use of undefined value here causes illegal behavior
3203// :117:22: note: when computing vector element at index '1'
3204// :117:22: error: use of undefined value here causes illegal behavior
3205// :117:22: note: when computing vector element at index '0'
3206// :117:22: error: use of undefined value here causes illegal behavior
3207// :117:22: note: when computing vector element at index '0'
3208// :117:22: error: use of undefined value here causes illegal behavior
3209// :117:22: note: when computing vector element at index '0'
3210// :117:22: error: use of undefined value here causes illegal behavior
3211// :117:22: note: when computing vector element at index '0'
3212// :117:22: error: use of undefined value here causes illegal behavior
3213// :117:22: error: use of undefined value here causes illegal behavior
3214// :117:22: error: use of undefined value here causes illegal behavior
3215// :117:22: error: use of undefined value here causes illegal behavior
3216// :117:22: error: use of undefined value here causes illegal behavior
3217// :117:22: error: use of undefined value here causes illegal behavior
3218// :117:22: error: use of undefined value here causes illegal behavior
3219// :117:22: note: when computing vector element at index '1'
3220// :117:22: error: use of undefined value here causes illegal behavior
3221// :117:22: note: when computing vector element at index '1'
3222// :117:22: error: use of undefined value here causes illegal behavior
3223// :117:22: note: when computing vector element at index '1'
3224// :117:22: error: use of undefined value here causes illegal behavior
3225// :117:22: note: when computing vector element at index '1'
3226// :117:22: error: use of undefined value here causes illegal behavior
3227// :117:22: note: when computing vector element at index '0'
3228// :117:22: error: use of undefined value here causes illegal behavior
3229// :117:22: note: when computing vector element at index '0'
3230// :117:22: error: use of undefined value here causes illegal behavior
3231// :117:22: note: when computing vector element at index '0'
3232// :117:22: error: use of undefined value here causes illegal behavior
3233// :117:22: note: when computing vector element at index '0'
3234// :117:22: error: use of undefined value here causes illegal behavior
3235// :117:22: error: use of undefined value here causes illegal behavior
3236// :117:22: error: use of undefined value here causes illegal behavior
3237// :117:22: error: use of undefined value here causes illegal behavior
3238// :117:22: error: use of undefined value here causes illegal behavior
3239// :117:22: error: use of undefined value here causes illegal behavior
3240// :117:22: error: use of undefined value here causes illegal behavior
3241// :117:22: note: when computing vector element at index '1'
3242// :117:22: error: use of undefined value here causes illegal behavior
3243// :117:22: note: when computing vector element at index '1'
3244// :117:22: error: use of undefined value here causes illegal behavior
3245// :117:22: note: when computing vector element at index '1'
3246// :117:22: error: use of undefined value here causes illegal behavior
3247// :117:22: note: when computing vector element at index '1'
3248// :117:22: error: use of undefined value here causes illegal behavior
3249// :117:22: note: when computing vector element at index '0'
3250// :117:22: error: use of undefined value here causes illegal behavior
3251// :117:22: note: when computing vector element at index '0'
3252// :117:22: error: use of undefined value here causes illegal behavior
3253// :117:22: note: when computing vector element at index '0'
3254// :117:22: error: use of undefined value here causes illegal behavior
3255// :117:22: note: when computing vector element at index '0'
3256// :117:22: error: use of undefined value here causes illegal behavior
3257// :117:22: error: use of undefined value here causes illegal behavior
3258// :117:22: error: use of undefined value here causes illegal behavior
3259// :117:22: error: use of undefined value here causes illegal behavior
3260// :117:22: error: use of undefined value here causes illegal behavior
3261// :117:22: error: use of undefined value here causes illegal behavior
3262// :117:22: error: use of undefined value here causes illegal behavior
3263// :117:22: note: when computing vector element at index '1'
3264// :117:22: error: use of undefined value here causes illegal behavior
3265// :117:22: note: when computing vector element at index '1'
3266// :117:22: error: use of undefined value here causes illegal behavior
3267// :117:22: note: when computing vector element at index '1'
3268// :117:22: error: use of undefined value here causes illegal behavior
3269// :117:22: note: when computing vector element at index '1'
3270// :117:22: error: use of undefined value here causes illegal behavior
3271// :117:22: note: when computing vector element at index '0'
3272// :117:22: error: use of undefined value here causes illegal behavior
3273// :117:22: note: when computing vector element at index '0'
3274// :117:22: error: use of undefined value here causes illegal behavior
3275// :117:22: note: when computing vector element at index '0'
3276// :117:22: error: use of undefined value here causes illegal behavior
3277// :117:22: note: when computing vector element at index '0'
3278// :117:22: error: use of undefined value here causes illegal behavior
3279// :117:22: error: use of undefined value here causes illegal behavior
3280// :117:22: error: use of undefined value here causes illegal behavior
3281// :117:22: error: use of undefined value here causes illegal behavior
3282// :117:22: error: use of undefined value here causes illegal behavior
3283// :117:22: error: use of undefined value here causes illegal behavior
3284// :117:22: error: use of undefined value here causes illegal behavior
3285// :117:22: note: when computing vector element at index '1'
3286// :117:22: error: use of undefined value here causes illegal behavior
3287// :117:22: note: when computing vector element at index '1'
3288// :117:22: error: use of undefined value here causes illegal behavior
3289// :117:22: note: when computing vector element at index '1'
3290// :117:22: error: use of undefined value here causes illegal behavior
3291// :117:22: note: when computing vector element at index '1'
3292// :117:22: error: use of undefined value here causes illegal behavior
3293// :117:22: note: when computing vector element at index '0'
3294// :117:22: error: use of undefined value here causes illegal behavior
3295// :117:22: note: when computing vector element at index '0'
3296// :117:22: error: use of undefined value here causes illegal behavior
3297// :117:22: note: when computing vector element at index '0'
3298// :117:22: error: use of undefined value here causes illegal behavior
3299// :117:22: note: when computing vector element at index '0'
3300// :117:22: error: use of undefined value here causes illegal behavior
3301// :117:22: error: use of undefined value here causes illegal behavior
3302// :117:22: error: use of undefined value here causes illegal behavior
3303// :117:22: error: use of undefined value here causes illegal behavior
3304// :117:22: error: use of undefined value here causes illegal behavior
3305// :117:22: error: use of undefined value here causes illegal behavior
3306// :117:22: error: use of undefined value here causes illegal behavior
3307// :117:22: note: when computing vector element at index '1'
3308// :117:22: error: use of undefined value here causes illegal behavior
3309// :117:22: note: when computing vector element at index '1'
3310// :117:22: error: use of undefined value here causes illegal behavior
3311// :117:22: note: when computing vector element at index '1'
3312// :117:22: error: use of undefined value here causes illegal behavior
3313// :117:22: note: when computing vector element at index '1'
3314// :117:22: error: use of undefined value here causes illegal behavior
3315// :117:22: note: when computing vector element at index '0'
3316// :117:22: error: use of undefined value here causes illegal behavior
3317// :117:22: note: when computing vector element at index '0'
3318// :117:22: error: use of undefined value here causes illegal behavior
3319// :117:22: note: when computing vector element at index '0'
3320// :117:22: error: use of undefined value here causes illegal behavior
3321// :117:22: note: when computing vector element at index '0'
3322// :117:22: error: use of undefined value here causes illegal behavior
3323// :117:22: error: use of undefined value here causes illegal behavior
3324// :117:22: error: use of undefined value here causes illegal behavior
3325// :117:22: error: use of undefined value here causes illegal behavior
3326// :117:22: error: use of undefined value here causes illegal behavior
3327// :117:22: error: use of undefined value here causes illegal behavior
3328// :117:22: error: use of undefined value here causes illegal behavior
3329// :117:22: note: when computing vector element at index '1'
3330// :117:22: error: use of undefined value here causes illegal behavior
3331// :117:22: note: when computing vector element at index '1'
3332// :117:22: error: use of undefined value here causes illegal behavior
3333// :117:22: note: when computing vector element at index '1'
3334// :117:22: error: use of undefined value here causes illegal behavior
3335// :117:22: note: when computing vector element at index '1'
3336// :117:22: error: use of undefined value here causes illegal behavior
3337// :117:22: note: when computing vector element at index '0'
3338// :117:22: error: use of undefined value here causes illegal behavior
3339// :117:22: note: when computing vector element at index '0'
3340// :117:22: error: use of undefined value here causes illegal behavior
3341// :117:22: note: when computing vector element at index '0'
3342// :117:22: error: use of undefined value here causes illegal behavior
3343// :117:22: note: when computing vector element at index '0'
3344// :117:22: error: use of undefined value here causes illegal behavior
3345// :117:22: error: use of undefined value here causes illegal behavior
3346// :117:22: error: use of undefined value here causes illegal behavior
3347// :117:22: error: use of undefined value here causes illegal behavior
3348// :117:22: error: use of undefined value here causes illegal behavior
3349// :117:22: error: use of undefined value here causes illegal behavior
3350// :117:22: error: use of undefined value here causes illegal behavior
3351// :117:22: note: when computing vector element at index '1'
3352// :117:22: error: use of undefined value here causes illegal behavior
3353// :117:22: note: when computing vector element at index '1'
3354// :117:22: error: use of undefined value here causes illegal behavior
3355// :117:22: note: when computing vector element at index '1'
3356// :117:22: error: use of undefined value here causes illegal behavior
3357// :117:22: note: when computing vector element at index '1'
3358// :117:22: error: use of undefined value here causes illegal behavior
3359// :117:22: note: when computing vector element at index '0'
3360// :117:22: error: use of undefined value here causes illegal behavior
3361// :117:22: note: when computing vector element at index '0'
3362// :117:22: error: use of undefined value here causes illegal behavior
3363// :117:22: note: when computing vector element at index '0'
3364// :117:22: error: use of undefined value here causes illegal behavior
3365// :117:22: note: when computing vector element at index '0'
3366// :117:22: error: use of undefined value here causes illegal behavior
3367// :117:22: error: use of undefined value here causes illegal behavior
3368// :117:22: error: use of undefined value here causes illegal behavior
3369// :117:22: error: use of undefined value here causes illegal behavior
3370// :117:22: error: use of undefined value here causes illegal behavior
3371// :117:22: error: use of undefined value here causes illegal behavior
3372// :117:22: error: use of undefined value here causes illegal behavior
3373// :117:22: note: when computing vector element at index '1'
3374// :117:22: error: use of undefined value here causes illegal behavior
3375// :117:22: note: when computing vector element at index '1'
3376// :117:22: error: use of undefined value here causes illegal behavior
3377// :117:22: note: when computing vector element at index '1'
3378// :117:22: error: use of undefined value here causes illegal behavior
3379// :117:22: note: when computing vector element at index '1'
3380// :117:22: error: use of undefined value here causes illegal behavior
3381// :117:22: note: when computing vector element at index '0'
3382// :117:22: error: use of undefined value here causes illegal behavior
3383// :117:22: note: when computing vector element at index '0'
3384// :117:22: error: use of undefined value here causes illegal behavior
3385// :117:22: note: when computing vector element at index '0'
3386// :117:22: error: use of undefined value here causes illegal behavior
3387// :117:22: note: when computing vector element at index '0'
3388// :117:22: error: use of undefined value here causes illegal behavior
3389// :117:22: error: use of undefined value here causes illegal behavior
3390// :117:22: error: use of undefined value here causes illegal behavior
3391// :117:22: error: use of undefined value here causes illegal behavior
3392// :117:22: error: use of undefined value here causes illegal behavior
3393// :117:22: error: use of undefined value here causes illegal behavior
3394// :117:22: error: use of undefined value here causes illegal behavior
3395// :117:22: note: when computing vector element at index '1'
3396// :117:22: error: use of undefined value here causes illegal behavior
3397// :117:22: note: when computing vector element at index '1'
3398// :117:22: error: use of undefined value here causes illegal behavior
3399// :117:22: note: when computing vector element at index '1'
3400// :117:22: error: use of undefined value here causes illegal behavior
3401// :117:22: note: when computing vector element at index '1'
3402// :117:22: error: use of undefined value here causes illegal behavior
3403// :117:22: note: when computing vector element at index '0'
3404// :117:22: error: use of undefined value here causes illegal behavior
3405// :117:22: note: when computing vector element at index '0'
3406// :117:22: error: use of undefined value here causes illegal behavior
3407// :117:22: note: when computing vector element at index '0'
3408// :117:22: error: use of undefined value here causes illegal behavior
3409// :117:22: note: when computing vector element at index '0'
3410// :121:22: error: use of undefined value here causes illegal behavior
3411// :121:22: error: use of undefined value here causes illegal behavior
3412// :121:22: error: use of undefined value here causes illegal behavior
3413// :121:22: error: use of undefined value here causes illegal behavior
3414// :121:22: error: use of undefined value here causes illegal behavior
3415// :121:22: error: use of undefined value here causes illegal behavior
3416// :121:22: error: use of undefined value here causes illegal behavior
3417// :121:22: note: when computing vector element at index '1'
3418// :121:22: error: use of undefined value here causes illegal behavior
3419// :121:22: note: when computing vector element at index '1'
3420// :121:22: error: use of undefined value here causes illegal behavior
3421// :121:22: note: when computing vector element at index '1'
3422// :121:22: error: use of undefined value here causes illegal behavior
3423// :121:22: note: when computing vector element at index '1'
3424// :121:22: error: use of undefined value here causes illegal behavior
3425// :121:22: note: when computing vector element at index '0'
3426// :121:22: error: use of undefined value here causes illegal behavior
3427// :121:22: note: when computing vector element at index '0'
3428// :121:22: error: use of undefined value here causes illegal behavior
3429// :121:22: note: when computing vector element at index '0'
3430// :121:22: error: use of undefined value here causes illegal behavior
3431// :121:22: note: when computing vector element at index '0'
3432// :121:22: error: use of undefined value here causes illegal behavior
3433// :121:22: error: use of undefined value here causes illegal behavior
3434// :121:22: error: use of undefined value here causes illegal behavior
3435// :121:22: error: use of undefined value here causes illegal behavior
3436// :121:22: error: use of undefined value here causes illegal behavior
3437// :121:22: error: use of undefined value here causes illegal behavior
3438// :121:22: error: use of undefined value here causes illegal behavior
3439// :121:22: note: when computing vector element at index '1'
3440// :121:22: error: use of undefined value here causes illegal behavior
3441// :121:22: note: when computing vector element at index '1'
3442// :121:22: error: use of undefined value here causes illegal behavior
3443// :121:22: note: when computing vector element at index '1'
3444// :121:22: error: use of undefined value here causes illegal behavior
3445// :121:22: note: when computing vector element at index '1'
3446// :121:22: error: use of undefined value here causes illegal behavior
3447// :121:22: note: when computing vector element at index '0'
3448// :121:22: error: use of undefined value here causes illegal behavior
3449// :121:22: note: when computing vector element at index '0'
3450// :121:22: error: use of undefined value here causes illegal behavior
3451// :121:22: note: when computing vector element at index '0'
3452// :121:22: error: use of undefined value here causes illegal behavior
3453// :121:22: note: when computing vector element at index '0'
3454// :121:22: error: use of undefined value here causes illegal behavior
3455// :121:22: error: use of undefined value here causes illegal behavior
3456// :121:22: error: use of undefined value here causes illegal behavior
3457// :121:22: error: use of undefined value here causes illegal behavior
3458// :121:22: error: use of undefined value here causes illegal behavior
3459// :121:22: error: use of undefined value here causes illegal behavior
3460// :121:22: error: use of undefined value here causes illegal behavior
3461// :121:22: note: when computing vector element at index '1'
3462// :121:22: error: use of undefined value here causes illegal behavior
3463// :121:22: note: when computing vector element at index '1'
3464// :121:22: error: use of undefined value here causes illegal behavior
3465// :121:22: note: when computing vector element at index '1'
3466// :121:22: error: use of undefined value here causes illegal behavior
3467// :121:22: note: when computing vector element at index '1'
3468// :121:22: error: use of undefined value here causes illegal behavior
3469// :121:22: note: when computing vector element at index '0'
3470// :121:22: error: use of undefined value here causes illegal behavior
3471// :121:22: note: when computing vector element at index '0'
3472// :121:22: error: use of undefined value here causes illegal behavior
3473// :121:22: note: when computing vector element at index '0'
3474// :121:22: error: use of undefined value here causes illegal behavior
3475// :121:22: note: when computing vector element at index '0'
3476// :121:22: error: use of undefined value here causes illegal behavior
3477// :121:22: error: use of undefined value here causes illegal behavior
3478// :121:22: error: use of undefined value here causes illegal behavior
3479// :121:22: error: use of undefined value here causes illegal behavior
3480// :121:22: error: use of undefined value here causes illegal behavior
3481// :121:22: error: use of undefined value here causes illegal behavior
3482// :121:22: error: use of undefined value here causes illegal behavior
3483// :121:22: note: when computing vector element at index '1'
3484// :121:22: error: use of undefined value here causes illegal behavior
3485// :121:22: note: when computing vector element at index '1'
3486// :121:22: error: use of undefined value here causes illegal behavior
3487// :121:22: note: when computing vector element at index '1'
3488// :121:22: error: use of undefined value here causes illegal behavior
3489// :121:22: note: when computing vector element at index '1'
3490// :121:22: error: use of undefined value here causes illegal behavior
3491// :121:22: note: when computing vector element at index '0'
3492// :121:22: error: use of undefined value here causes illegal behavior
3493// :121:22: note: when computing vector element at index '0'
3494// :121:22: error: use of undefined value here causes illegal behavior
3495// :121:22: note: when computing vector element at index '0'
3496// :121:22: error: use of undefined value here causes illegal behavior
3497// :121:22: note: when computing vector element at index '0'
3498// :121:22: error: use of undefined value here causes illegal behavior
3499// :121:22: error: use of undefined value here causes illegal behavior
3500// :121:22: error: use of undefined value here causes illegal behavior
3501// :121:22: error: use of undefined value here causes illegal behavior
3502// :121:22: error: use of undefined value here causes illegal behavior
3503// :121:22: error: use of undefined value here causes illegal behavior
3504// :121:22: error: use of undefined value here causes illegal behavior
3505// :121:22: note: when computing vector element at index '1'
3506// :121:22: error: use of undefined value here causes illegal behavior
3507// :121:22: note: when computing vector element at index '1'
3508// :121:22: error: use of undefined value here causes illegal behavior
3509// :121:22: note: when computing vector element at index '1'
3510// :121:22: error: use of undefined value here causes illegal behavior
3511// :121:22: note: when computing vector element at index '1'
3512// :121:22: error: use of undefined value here causes illegal behavior
3513// :121:22: note: when computing vector element at index '0'
3514// :121:22: error: use of undefined value here causes illegal behavior
3515// :121:22: note: when computing vector element at index '0'
3516// :121:22: error: use of undefined value here causes illegal behavior
3517// :121:22: note: when computing vector element at index '0'
3518// :121:22: error: use of undefined value here causes illegal behavior
3519// :121:22: note: when computing vector element at index '0'
3520// :121:22: error: use of undefined value here causes illegal behavior
3521// :121:22: error: use of undefined value here causes illegal behavior
3522// :121:22: error: use of undefined value here causes illegal behavior
3523// :121:22: error: use of undefined value here causes illegal behavior
3524// :121:22: error: use of undefined value here causes illegal behavior
3525// :121:22: error: use of undefined value here causes illegal behavior
3526// :121:22: error: use of undefined value here causes illegal behavior
3527// :121:22: note: when computing vector element at index '1'
3528// :121:22: error: use of undefined value here causes illegal behavior
3529// :121:22: note: when computing vector element at index '1'
3530// :121:22: error: use of undefined value here causes illegal behavior
3531// :121:22: note: when computing vector element at index '1'
3532// :121:22: error: use of undefined value here causes illegal behavior
3533// :121:22: note: when computing vector element at index '1'
3534// :121:22: error: use of undefined value here causes illegal behavior
3535// :121:22: note: when computing vector element at index '0'
3536// :121:22: error: use of undefined value here causes illegal behavior
3537// :121:22: note: when computing vector element at index '0'
3538// :121:22: error: use of undefined value here causes illegal behavior
3539// :121:22: note: when computing vector element at index '0'
3540// :121:22: error: use of undefined value here causes illegal behavior
3541// :121:22: note: when computing vector element at index '0'
3542// :121:22: error: use of undefined value here causes illegal behavior
3543// :121:22: error: use of undefined value here causes illegal behavior
3544// :121:22: error: use of undefined value here causes illegal behavior
3545// :121:22: error: use of undefined value here causes illegal behavior
3546// :121:22: error: use of undefined value here causes illegal behavior
3547// :121:22: error: use of undefined value here causes illegal behavior
3548// :121:22: error: use of undefined value here causes illegal behavior
3549// :121:22: note: when computing vector element at index '1'
3550// :121:22: error: use of undefined value here causes illegal behavior
3551// :121:22: note: when computing vector element at index '1'
3552// :121:22: error: use of undefined value here causes illegal behavior
3553// :121:22: note: when computing vector element at index '1'
3554// :121:22: error: use of undefined value here causes illegal behavior
3555// :121:22: note: when computing vector element at index '1'
3556// :121:22: error: use of undefined value here causes illegal behavior
3557// :121:22: note: when computing vector element at index '0'
3558// :121:22: error: use of undefined value here causes illegal behavior
3559// :121:22: note: when computing vector element at index '0'
3560// :121:22: error: use of undefined value here causes illegal behavior
3561// :121:22: note: when computing vector element at index '0'
3562// :121:22: error: use of undefined value here causes illegal behavior
3563// :121:22: note: when computing vector element at index '0'
3564// :121:22: error: use of undefined value here causes illegal behavior
3565// :121:22: error: use of undefined value here causes illegal behavior
3566// :121:22: error: use of undefined value here causes illegal behavior
3567// :121:22: error: use of undefined value here causes illegal behavior
3568// :121:22: error: use of undefined value here causes illegal behavior
3569// :121:22: error: use of undefined value here causes illegal behavior
3570// :121:22: error: use of undefined value here causes illegal behavior
3571// :121:22: note: when computing vector element at index '1'
3572// :121:22: error: use of undefined value here causes illegal behavior
3573// :121:22: note: when computing vector element at index '1'
3574// :121:22: error: use of undefined value here causes illegal behavior
3575// :121:22: note: when computing vector element at index '1'
3576// :121:22: error: use of undefined value here causes illegal behavior
3577// :121:22: note: when computing vector element at index '1'
3578// :121:22: error: use of undefined value here causes illegal behavior
3579// :121:22: note: when computing vector element at index '0'
3580// :121:22: error: use of undefined value here causes illegal behavior
3581// :121:22: note: when computing vector element at index '0'
3582// :121:22: error: use of undefined value here causes illegal behavior
3583// :121:22: note: when computing vector element at index '0'
3584// :121:22: error: use of undefined value here causes illegal behavior
3585// :121:22: note: when computing vector element at index '0'
3586// :121:22: error: use of undefined value here causes illegal behavior
3587// :121:22: error: use of undefined value here causes illegal behavior
3588// :121:22: error: use of undefined value here causes illegal behavior
3589// :121:22: error: use of undefined value here causes illegal behavior
3590// :121:22: error: use of undefined value here causes illegal behavior
3591// :121:22: error: use of undefined value here causes illegal behavior
3592// :121:22: error: use of undefined value here causes illegal behavior
3593// :121:22: note: when computing vector element at index '1'
3594// :121:22: error: use of undefined value here causes illegal behavior
3595// :121:22: note: when computing vector element at index '1'
3596// :121:22: error: use of undefined value here causes illegal behavior
3597// :121:22: note: when computing vector element at index '1'
3598// :121:22: error: use of undefined value here causes illegal behavior
3599// :121:22: note: when computing vector element at index '1'
3600// :121:22: error: use of undefined value here causes illegal behavior
3601// :121:22: note: when computing vector element at index '0'
3602// :121:22: error: use of undefined value here causes illegal behavior
3603// :121:22: note: when computing vector element at index '0'
3604// :121:22: error: use of undefined value here causes illegal behavior
3605// :121:22: note: when computing vector element at index '0'
3606// :121:22: error: use of undefined value here causes illegal behavior
3607// :121:22: note: when computing vector element at index '0'
3608// :121:22: error: use of undefined value here causes illegal behavior
3609// :121:22: error: use of undefined value here causes illegal behavior
3610// :121:22: error: use of undefined value here causes illegal behavior
3611// :121:22: error: use of undefined value here causes illegal behavior
3612// :121:22: error: use of undefined value here causes illegal behavior
3613// :121:22: error: use of undefined value here causes illegal behavior
3614// :121:22: error: use of undefined value here causes illegal behavior
3615// :121:22: note: when computing vector element at index '1'
3616// :121:22: error: use of undefined value here causes illegal behavior
3617// :121:22: note: when computing vector element at index '1'
3618// :121:22: error: use of undefined value here causes illegal behavior
3619// :121:22: note: when computing vector element at index '1'
3620// :121:22: error: use of undefined value here causes illegal behavior
3621// :121:22: note: when computing vector element at index '1'
3622// :121:22: error: use of undefined value here causes illegal behavior
3623// :121:22: note: when computing vector element at index '0'
3624// :121:22: error: use of undefined value here causes illegal behavior
3625// :121:22: note: when computing vector element at index '0'
3626// :121:22: error: use of undefined value here causes illegal behavior
3627// :121:22: note: when computing vector element at index '0'
3628// :121:22: error: use of undefined value here causes illegal behavior
3629// :121:22: note: when computing vector element at index '0'
3630// :121:22: error: use of undefined value here causes illegal behavior
3631// :121:22: error: use of undefined value here causes illegal behavior
3632// :121:22: error: use of undefined value here causes illegal behavior
3633// :121:22: error: use of undefined value here causes illegal behavior
3634// :121:22: error: use of undefined value here causes illegal behavior
3635// :121:22: error: use of undefined value here causes illegal behavior
3636// :121:22: error: use of undefined value here causes illegal behavior
3637// :121:22: note: when computing vector element at index '1'
3638// :121:22: error: use of undefined value here causes illegal behavior
3639// :121:22: note: when computing vector element at index '1'
3640// :121:22: error: use of undefined value here causes illegal behavior
3641// :121:22: note: when computing vector element at index '1'
3642// :121:22: error: use of undefined value here causes illegal behavior
3643// :121:22: note: when computing vector element at index '1'
3644// :121:22: error: use of undefined value here causes illegal behavior
3645// :121:22: note: when computing vector element at index '0'
3646// :121:22: error: use of undefined value here causes illegal behavior
3647// :121:22: note: when computing vector element at index '0'
3648// :121:22: error: use of undefined value here causes illegal behavior
3649// :121:22: note: when computing vector element at index '0'
3650// :121:22: error: use of undefined value here causes illegal behavior
3651// :121:22: note: when computing vector element at index '0'
3652// :127:17: error: use of undefined value here causes illegal behavior
3653// :127:17: error: use of undefined value here causes illegal behavior
3654// :127:17: note: when computing vector element at index '0'
3655// :127:17: error: use of undefined value here causes illegal behavior
3656// :127:17: note: when computing vector element at index '0'
3657// :127:17: error: use of undefined value here causes illegal behavior
3658// :127:17: note: when computing vector element at index '0'
3659// :127:17: error: use of undefined value here causes illegal behavior
3660// :127:17: note: when computing vector element at index '1'
3661// :127:17: error: use of undefined value here causes illegal behavior
3662// :127:17: note: when computing vector element at index '0'
3663// :127:17: error: use of undefined value here causes illegal behavior
3664// :127:17: note: when computing vector element at index '0'
3665// :127:17: error: use of undefined value here causes illegal behavior
3666// :127:17: note: when computing vector element at index '0'
3667// :127:17: error: use of undefined value here causes illegal behavior
3668// :127:17: error: use of undefined value here causes illegal behavior
3669// :127:17: note: when computing vector element at index '0'
3670// :127:17: error: use of undefined value here causes illegal behavior
3671// :127:17: note: when computing vector element at index '0'
3672// :127:17: error: use of undefined value here causes illegal behavior
3673// :127:17: note: when computing vector element at index '0'
3674// :127:17: error: use of undefined value here causes illegal behavior
3675// :127:17: note: when computing vector element at index '1'
3676// :127:17: error: use of undefined value here causes illegal behavior
3677// :127:17: note: when computing vector element at index '0'
3678// :127:17: error: use of undefined value here causes illegal behavior
3679// :127:17: note: when computing vector element at index '0'
3680// :127:17: error: use of undefined value here causes illegal behavior
3681// :127:17: note: when computing vector element at index '0'
3682// :127:17: error: use of undefined value here causes illegal behavior
3683// :127:17: error: use of undefined value here causes illegal behavior
3684// :127:17: note: when computing vector element at index '0'
3685// :127:17: error: use of undefined value here causes illegal behavior
3686// :127:17: note: when computing vector element at index '0'
3687// :127:17: error: use of undefined value here causes illegal behavior
3688// :127:17: note: when computing vector element at index '0'
3689// :127:17: error: use of undefined value here causes illegal behavior
3690// :127:17: note: when computing vector element at index '1'
3691// :127:17: error: use of undefined value here causes illegal behavior
3692// :127:17: note: when computing vector element at index '0'
3693// :127:17: error: use of undefined value here causes illegal behavior
3694// :127:17: note: when computing vector element at index '0'
3695// :127:17: error: use of undefined value here causes illegal behavior
3696// :127:17: note: when computing vector element at index '0'
3697// :127:17: error: use of undefined value here causes illegal behavior
3698// :127:17: error: use of undefined value here causes illegal behavior
3699// :127:17: note: when computing vector element at index '0'
3700// :127:17: error: use of undefined value here causes illegal behavior
3701// :127:17: note: when computing vector element at index '0'
3702// :127:17: error: use of undefined value here causes illegal behavior
3703// :127:17: note: when computing vector element at index '0'
3704// :127:17: error: use of undefined value here causes illegal behavior
3705// :127:17: note: when computing vector element at index '1'
3706// :127:17: error: use of undefined value here causes illegal behavior
3707// :127:17: note: when computing vector element at index '0'
3708// :127:17: error: use of undefined value here causes illegal behavior
3709// :127:17: note: when computing vector element at index '0'
3710// :127:17: error: use of undefined value here causes illegal behavior
3711// :127:17: note: when computing vector element at index '0'
3712// :127:17: error: use of undefined value here causes illegal behavior
3713// :127:17: error: use of undefined value here causes illegal behavior
3714// :127:17: note: when computing vector element at index '0'
3715// :127:17: error: use of undefined value here causes illegal behavior
3716// :127:17: note: when computing vector element at index '0'
3717// :127:17: error: use of undefined value here causes illegal behavior
3718// :127:17: note: when computing vector element at index '0'
3719// :127:17: error: use of undefined value here causes illegal behavior
3720// :127:17: note: when computing vector element at index '1'
3721// :127:17: error: use of undefined value here causes illegal behavior
3722// :127:17: note: when computing vector element at index '0'
3723// :127:17: error: use of undefined value here causes illegal behavior
3724// :127:17: note: when computing vector element at index '0'
3725// :127:17: error: use of undefined value here causes illegal behavior
3726// :127:17: note: when computing vector element at index '0'
3727// :127:17: error: use of undefined value here causes illegal behavior
3728// :127:17: error: use of undefined value here causes illegal behavior
3729// :127:17: note: when computing vector element at index '0'
3730// :127:17: error: use of undefined value here causes illegal behavior
3731// :127:17: note: when computing vector element at index '0'
3732// :127:17: error: use of undefined value here causes illegal behavior
3733// :127:17: note: when computing vector element at index '0'
3734// :127:17: error: use of undefined value here causes illegal behavior
3735// :127:17: note: when computing vector element at index '1'
3736// :127:17: error: use of undefined value here causes illegal behavior
3737// :127:17: note: when computing vector element at index '0'
3738// :127:17: error: use of undefined value here causes illegal behavior
3739// :127:17: note: when computing vector element at index '0'
3740// :127:17: error: use of undefined value here causes illegal behavior
3741// :127:17: note: when computing vector element at index '0'
3742// :127:17: error: use of undefined value here causes illegal behavior
3743// :127:17: error: use of undefined value here causes illegal behavior
3744// :127:17: note: when computing vector element at index '0'
3745// :127:17: error: use of undefined value here causes illegal behavior
3746// :127:17: note: when computing vector element at index '0'
3747// :127:17: error: use of undefined value here causes illegal behavior
3748// :127:17: note: when computing vector element at index '0'
3749// :127:17: error: use of undefined value here causes illegal behavior
3750// :127:17: note: when computing vector element at index '1'
3751// :127:17: error: use of undefined value here causes illegal behavior
3752// :127:17: note: when computing vector element at index '0'
3753// :127:17: error: use of undefined value here causes illegal behavior
3754// :127:17: note: when computing vector element at index '0'
3755// :127:17: error: use of undefined value here causes illegal behavior
3756// :127:17: note: when computing vector element at index '0'
3757// :127:17: error: use of undefined value here causes illegal behavior
3758// :127:17: error: use of undefined value here causes illegal behavior
3759// :127:17: note: when computing vector element at index '0'
3760// :127:17: error: use of undefined value here causes illegal behavior
3761// :127:17: note: when computing vector element at index '0'
3762// :127:17: error: use of undefined value here causes illegal behavior
3763// :127:17: note: when computing vector element at index '0'
3764// :127:17: error: use of undefined value here causes illegal behavior
3765// :127:17: note: when computing vector element at index '1'
3766// :127:17: error: use of undefined value here causes illegal behavior
3767// :127:17: note: when computing vector element at index '0'
3768// :127:17: error: use of undefined value here causes illegal behavior
3769// :127:17: note: when computing vector element at index '0'
3770// :127:17: error: use of undefined value here causes illegal behavior
3771// :127:17: note: when computing vector element at index '0'
3772// :127:17: error: use of undefined value here causes illegal behavior
3773// :127:17: error: use of undefined value here causes illegal behavior
3774// :127:17: note: when computing vector element at index '0'
3775// :127:17: error: use of undefined value here causes illegal behavior
3776// :127:17: note: when computing vector element at index '0'
3777// :127:17: error: use of undefined value here causes illegal behavior
3778// :127:17: note: when computing vector element at index '0'
3779// :127:17: error: use of undefined value here causes illegal behavior
3780// :127:17: note: when computing vector element at index '1'
3781// :127:17: error: use of undefined value here causes illegal behavior
3782// :127:17: note: when computing vector element at index '0'
3783// :127:17: error: use of undefined value here causes illegal behavior
3784// :127:17: note: when computing vector element at index '0'
3785// :127:17: error: use of undefined value here causes illegal behavior
3786// :127:17: note: when computing vector element at index '0'
3787// :127:17: error: use of undefined value here causes illegal behavior
3788// :127:17: error: use of undefined value here causes illegal behavior
3789// :127:17: note: when computing vector element at index '0'
3790// :127:17: error: use of undefined value here causes illegal behavior
3791// :127:17: note: when computing vector element at index '0'
3792// :127:17: error: use of undefined value here causes illegal behavior
3793// :127:17: note: when computing vector element at index '0'
3794// :127:17: error: use of undefined value here causes illegal behavior
3795// :127:17: note: when computing vector element at index '1'
3796// :127:17: error: use of undefined value here causes illegal behavior
3797// :127:17: note: when computing vector element at index '0'
3798// :127:17: error: use of undefined value here causes illegal behavior
3799// :127:17: note: when computing vector element at index '0'
3800// :127:17: error: use of undefined value here causes illegal behavior
3801// :127:17: note: when computing vector element at index '0'
3802// :127:17: error: use of undefined value here causes illegal behavior
3803// :127:17: error: use of undefined value here causes illegal behavior
3804// :127:17: note: when computing vector element at index '0'
3805// :127:17: error: use of undefined value here causes illegal behavior
3806// :127:17: note: when computing vector element at index '0'
3807// :127:17: error: use of undefined value here causes illegal behavior
3808// :127:17: note: when computing vector element at index '0'
3809// :127:17: error: use of undefined value here causes illegal behavior
3810// :127:17: note: when computing vector element at index '1'
3811// :127:17: error: use of undefined value here causes illegal behavior
3812// :127:17: note: when computing vector element at index '0'
3813// :127:17: error: use of undefined value here causes illegal behavior
3814// :127:17: note: when computing vector element at index '0'
3815// :127:17: error: use of undefined value here causes illegal behavior
3816// :127:17: note: when computing vector element at index '0'
3817// :127:21: error: use of undefined value here causes illegal behavior
3818// :127:21: error: use of undefined value here causes illegal behavior
3819// :127:21: note: when computing vector element at index '0'
3820// :127:21: error: use of undefined value here causes illegal behavior
3821// :127:21: note: when computing vector element at index '0'
3822// :127:21: error: use of undefined value here causes illegal behavior
3823// :127:21: note: when computing vector element at index '1'
3824// :127:21: error: use of undefined value here causes illegal behavior
3825// :127:21: note: when computing vector element at index '0'
3826// :127:21: error: use of undefined value here causes illegal behavior
3827// :127:21: note: when computing vector element at index '0'
3828// :127:21: error: use of undefined value here causes illegal behavior
3829// :127:21: error: use of undefined value here causes illegal behavior
3830// :127:21: note: when computing vector element at index '0'
3831// :127:21: error: use of undefined value here causes illegal behavior
3832// :127:21: note: when computing vector element at index '0'
3833// :127:21: error: use of undefined value here causes illegal behavior
3834// :127:21: note: when computing vector element at index '1'
3835// :127:21: error: use of undefined value here causes illegal behavior
3836// :127:21: note: when computing vector element at index '0'
3837// :127:21: error: use of undefined value here causes illegal behavior
3838// :127:21: note: when computing vector element at index '0'
3839// :127:21: error: use of undefined value here causes illegal behavior
3840// :127:21: error: use of undefined value here causes illegal behavior
3841// :127:21: note: when computing vector element at index '0'
3842// :127:21: error: use of undefined value here causes illegal behavior
3843// :127:21: note: when computing vector element at index '0'
3844// :127:21: error: use of undefined value here causes illegal behavior
3845// :127:21: note: when computing vector element at index '1'
3846// :127:21: error: use of undefined value here causes illegal behavior
3847// :127:21: note: when computing vector element at index '0'
3848// :127:21: error: use of undefined value here causes illegal behavior
3849// :127:21: note: when computing vector element at index '0'
3850// :127:21: error: use of undefined value here causes illegal behavior
3851// :127:21: error: use of undefined value here causes illegal behavior
3852// :127:21: note: when computing vector element at index '0'
3853// :127:21: error: use of undefined value here causes illegal behavior
3854// :127:21: note: when computing vector element at index '0'
3855// :127:21: error: use of undefined value here causes illegal behavior
3856// :127:21: note: when computing vector element at index '1'
3857// :127:21: error: use of undefined value here causes illegal behavior
3858// :127:21: note: when computing vector element at index '0'
3859// :127:21: error: use of undefined value here causes illegal behavior
3860// :127:21: note: when computing vector element at index '0'
3861// :127:21: error: use of undefined value here causes illegal behavior
3862// :127:21: error: use of undefined value here causes illegal behavior
3863// :127:21: note: when computing vector element at index '0'
3864// :127:21: error: use of undefined value here causes illegal behavior
3865// :127:21: note: when computing vector element at index '0'
3866// :127:21: error: use of undefined value here causes illegal behavior
3867// :127:21: note: when computing vector element at index '1'
3868// :127:21: error: use of undefined value here causes illegal behavior
3869// :127:21: note: when computing vector element at index '0'
3870// :127:21: error: use of undefined value here causes illegal behavior
3871// :127:21: note: when computing vector element at index '0'
3872// :127:21: error: use of undefined value here causes illegal behavior
3873// :127:21: error: use of undefined value here causes illegal behavior
3874// :127:21: note: when computing vector element at index '0'
3875// :127:21: error: use of undefined value here causes illegal behavior
3876// :127:21: note: when computing vector element at index '0'
3877// :127:21: error: use of undefined value here causes illegal behavior
3878// :127:21: note: when computing vector element at index '1'
3879// :127:21: error: use of undefined value here causes illegal behavior
3880// :127:21: note: when computing vector element at index '0'
3881// :127:21: error: use of undefined value here causes illegal behavior
3882// :127:21: note: when computing vector element at index '0'
3883// :127:21: error: use of undefined value here causes illegal behavior
3884// :127:21: error: use of undefined value here causes illegal behavior
3885// :127:21: note: when computing vector element at index '0'
3886// :127:21: error: use of undefined value here causes illegal behavior
3887// :127:21: note: when computing vector element at index '0'
3888// :127:21: error: use of undefined value here causes illegal behavior
3889// :127:21: note: when computing vector element at index '1'
3890// :127:21: error: use of undefined value here causes illegal behavior
3891// :127:21: note: when computing vector element at index '0'
3892// :127:21: error: use of undefined value here causes illegal behavior
3893// :127:21: note: when computing vector element at index '0'
3894// :127:21: error: use of undefined value here causes illegal behavior
3895// :127:21: error: use of undefined value here causes illegal behavior
3896// :127:21: note: when computing vector element at index '0'
3897// :127:21: error: use of undefined value here causes illegal behavior
3898// :127:21: note: when computing vector element at index '0'
3899// :127:21: error: use of undefined value here causes illegal behavior
3900// :127:21: note: when computing vector element at index '1'
3901// :127:21: error: use of undefined value here causes illegal behavior
3902// :127:21: note: when computing vector element at index '0'
3903// :127:21: error: use of undefined value here causes illegal behavior
3904// :127:21: note: when computing vector element at index '0'
3905// :127:21: error: use of undefined value here causes illegal behavior
3906// :127:21: error: use of undefined value here causes illegal behavior
3907// :127:21: note: when computing vector element at index '0'
3908// :127:21: error: use of undefined value here causes illegal behavior
3909// :127:21: note: when computing vector element at index '0'
3910// :127:21: error: use of undefined value here causes illegal behavior
3911// :127:21: note: when computing vector element at index '1'
3912// :127:21: error: use of undefined value here causes illegal behavior
3913// :127:21: note: when computing vector element at index '0'
3914// :127:21: error: use of undefined value here causes illegal behavior
3915// :127:21: note: when computing vector element at index '0'
3916// :127:21: error: use of undefined value here causes illegal behavior
3917// :127:21: error: use of undefined value here causes illegal behavior
3918// :127:21: note: when computing vector element at index '0'
3919// :127:21: error: use of undefined value here causes illegal behavior
3920// :127:21: note: when computing vector element at index '0'
3921// :127:21: error: use of undefined value here causes illegal behavior
3922// :127:21: note: when computing vector element at index '1'
3923// :127:21: error: use of undefined value here causes illegal behavior
3924// :127:21: note: when computing vector element at index '0'
3925// :127:21: error: use of undefined value here causes illegal behavior
3926// :127:21: note: when computing vector element at index '0'
3927// :127:21: error: use of undefined value here causes illegal behavior
3928// :127:21: error: use of undefined value here causes illegal behavior
3929// :127:21: note: when computing vector element at index '0'
3930// :127:21: error: use of undefined value here causes illegal behavior
3931// :127:21: note: when computing vector element at index '0'
3932// :127:21: error: use of undefined value here causes illegal behavior
3933// :127:21: note: when computing vector element at index '1'
3934// :127:21: error: use of undefined value here causes illegal behavior
3935// :127:21: note: when computing vector element at index '0'
3936// :127:21: error: use of undefined value here causes illegal behavior
3937// :127:21: note: when computing vector element at index '0'
3938// :131:27: error: use of undefined value here causes illegal behavior
3939// :131:27: error: use of undefined value here causes illegal behavior
3940// :131:27: note: when computing vector element at index '0'
3941// :131:27: error: use of undefined value here causes illegal behavior
3942// :131:27: note: when computing vector element at index '0'
3943// :131:27: error: use of undefined value here causes illegal behavior
3944// :131:27: note: when computing vector element at index '0'
3945// :131:27: error: use of undefined value here causes illegal behavior
3946// :131:27: note: when computing vector element at index '1'
3947// :131:27: error: use of undefined value here causes illegal behavior
3948// :131:27: note: when computing vector element at index '0'
3949// :131:27: error: use of undefined value here causes illegal behavior
3950// :131:27: note: when computing vector element at index '0'
3951// :131:27: error: use of undefined value here causes illegal behavior
3952// :131:27: note: when computing vector element at index '0'
3953// :131:27: error: use of undefined value here causes illegal behavior
3954// :131:27: error: use of undefined value here causes illegal behavior
3955// :131:27: note: when computing vector element at index '0'
3956// :131:27: error: use of undefined value here causes illegal behavior
3957// :131:27: note: when computing vector element at index '0'
3958// :131:27: error: use of undefined value here causes illegal behavior
3959// :131:27: note: when computing vector element at index '0'
3960// :131:27: error: use of undefined value here causes illegal behavior
3961// :131:27: note: when computing vector element at index '1'
3962// :131:27: error: use of undefined value here causes illegal behavior
3963// :131:27: note: when computing vector element at index '0'
3964// :131:27: error: use of undefined value here causes illegal behavior
3965// :131:27: note: when computing vector element at index '0'
3966// :131:27: error: use of undefined value here causes illegal behavior
3967// :131:27: note: when computing vector element at index '0'
3968// :131:27: error: use of undefined value here causes illegal behavior
3969// :131:27: error: use of undefined value here causes illegal behavior
3970// :131:27: note: when computing vector element at index '0'
3971// :131:27: error: use of undefined value here causes illegal behavior
3972// :131:27: note: when computing vector element at index '0'
3973// :131:27: error: use of undefined value here causes illegal behavior
3974// :131:27: note: when computing vector element at index '0'
3975// :131:27: error: use of undefined value here causes illegal behavior
3976// :131:27: note: when computing vector element at index '1'
3977// :131:27: error: use of undefined value here causes illegal behavior
3978// :131:27: note: when computing vector element at index '0'
3979// :131:27: error: use of undefined value here causes illegal behavior
3980// :131:27: note: when computing vector element at index '0'
3981// :131:27: error: use of undefined value here causes illegal behavior
3982// :131:27: note: when computing vector element at index '0'
3983// :131:27: error: use of undefined value here causes illegal behavior
3984// :131:27: error: use of undefined value here causes illegal behavior
3985// :131:27: note: when computing vector element at index '0'
3986// :131:27: error: use of undefined value here causes illegal behavior
3987// :131:27: note: when computing vector element at index '0'
3988// :131:27: error: use of undefined value here causes illegal behavior
3989// :131:27: note: when computing vector element at index '0'
3990// :131:27: error: use of undefined value here causes illegal behavior
3991// :131:27: note: when computing vector element at index '1'
3992// :131:27: error: use of undefined value here causes illegal behavior
3993// :131:27: note: when computing vector element at index '0'
3994// :131:27: error: use of undefined value here causes illegal behavior
3995// :131:27: note: when computing vector element at index '0'
3996// :131:27: error: use of undefined value here causes illegal behavior
3997// :131:27: note: when computing vector element at index '0'
3998// :131:27: error: use of undefined value here causes illegal behavior
3999// :131:27: error: use of undefined value here causes illegal behavior
4000// :131:27: note: when computing vector element at index '0'
4001// :131:27: error: use of undefined value here causes illegal behavior
4002// :131:27: note: when computing vector element at index '0'
4003// :131:27: error: use of undefined value here causes illegal behavior
4004// :131:27: note: when computing vector element at index '0'
4005// :131:27: error: use of undefined value here causes illegal behavior
4006// :131:27: note: when computing vector element at index '1'
4007// :131:27: error: use of undefined value here causes illegal behavior
4008// :131:27: note: when computing vector element at index '0'
4009// :131:27: error: use of undefined value here causes illegal behavior
4010// :131:27: note: when computing vector element at index '0'
4011// :131:27: error: use of undefined value here causes illegal behavior
4012// :131:27: note: when computing vector element at index '0'
4013// :131:27: error: use of undefined value here causes illegal behavior
4014// :131:27: error: use of undefined value here causes illegal behavior
4015// :131:27: note: when computing vector element at index '0'
4016// :131:27: error: use of undefined value here causes illegal behavior
4017// :131:27: note: when computing vector element at index '0'
4018// :131:27: error: use of undefined value here causes illegal behavior
4019// :131:27: note: when computing vector element at index '0'
4020// :131:27: error: use of undefined value here causes illegal behavior
4021// :131:27: note: when computing vector element at index '1'
4022// :131:27: error: use of undefined value here causes illegal behavior
4023// :131:27: note: when computing vector element at index '0'
4024// :131:27: error: use of undefined value here causes illegal behavior
4025// :131:27: note: when computing vector element at index '0'
4026// :131:27: error: use of undefined value here causes illegal behavior
4027// :131:27: note: when computing vector element at index '0'
4028// :131:27: error: use of undefined value here causes illegal behavior
4029// :131:27: error: use of undefined value here causes illegal behavior
4030// :131:27: note: when computing vector element at index '0'
4031// :131:27: error: use of undefined value here causes illegal behavior
4032// :131:27: note: when computing vector element at index '0'
4033// :131:27: error: use of undefined value here causes illegal behavior
4034// :131:27: note: when computing vector element at index '0'
4035// :131:27: error: use of undefined value here causes illegal behavior
4036// :131:27: note: when computing vector element at index '1'
4037// :131:27: error: use of undefined value here causes illegal behavior
4038// :131:27: note: when computing vector element at index '0'
4039// :131:27: error: use of undefined value here causes illegal behavior
4040// :131:27: note: when computing vector element at index '0'
4041// :131:27: error: use of undefined value here causes illegal behavior
4042// :131:27: note: when computing vector element at index '0'
4043// :131:27: error: use of undefined value here causes illegal behavior
4044// :131:27: error: use of undefined value here causes illegal behavior
4045// :131:27: note: when computing vector element at index '0'
4046// :131:27: error: use of undefined value here causes illegal behavior
4047// :131:27: note: when computing vector element at index '0'
4048// :131:27: error: use of undefined value here causes illegal behavior
4049// :131:27: note: when computing vector element at index '0'
4050// :131:27: error: use of undefined value here causes illegal behavior
4051// :131:27: note: when computing vector element at index '1'
4052// :131:27: error: use of undefined value here causes illegal behavior
4053// :131:27: note: when computing vector element at index '0'
4054// :131:27: error: use of undefined value here causes illegal behavior
4055// :131:27: note: when computing vector element at index '0'
4056// :131:27: error: use of undefined value here causes illegal behavior
4057// :131:27: note: when computing vector element at index '0'
4058// :131:27: error: use of undefined value here causes illegal behavior
4059// :131:27: error: use of undefined value here causes illegal behavior
4060// :131:27: note: when computing vector element at index '0'
4061// :131:27: error: use of undefined value here causes illegal behavior
4062// :131:27: note: when computing vector element at index '0'
4063// :131:27: error: use of undefined value here causes illegal behavior
4064// :131:27: note: when computing vector element at index '0'
4065// :131:27: error: use of undefined value here causes illegal behavior
4066// :131:27: note: when computing vector element at index '1'
4067// :131:27: error: use of undefined value here causes illegal behavior
4068// :131:27: note: when computing vector element at index '0'
4069// :131:27: error: use of undefined value here causes illegal behavior
4070// :131:27: note: when computing vector element at index '0'
4071// :131:27: error: use of undefined value here causes illegal behavior
4072// :131:27: note: when computing vector element at index '0'
4073// :131:27: error: use of undefined value here causes illegal behavior
4074// :131:27: error: use of undefined value here causes illegal behavior
4075// :131:27: note: when computing vector element at index '0'
4076// :131:27: error: use of undefined value here causes illegal behavior
4077// :131:27: note: when computing vector element at index '0'
4078// :131:27: error: use of undefined value here causes illegal behavior
4079// :131:27: note: when computing vector element at index '0'
4080// :131:27: error: use of undefined value here causes illegal behavior
4081// :131:27: note: when computing vector element at index '1'
4082// :131:27: error: use of undefined value here causes illegal behavior
4083// :131:27: note: when computing vector element at index '0'
4084// :131:27: error: use of undefined value here causes illegal behavior
4085// :131:27: note: when computing vector element at index '0'
4086// :131:27: error: use of undefined value here causes illegal behavior
4087// :131:27: note: when computing vector element at index '0'
4088// :131:27: error: use of undefined value here causes illegal behavior
4089// :131:27: error: use of undefined value here causes illegal behavior
4090// :131:27: note: when computing vector element at index '0'
4091// :131:27: error: use of undefined value here causes illegal behavior
4092// :131:27: note: when computing vector element at index '0'
4093// :131:27: error: use of undefined value here causes illegal behavior
4094// :131:27: note: when computing vector element at index '0'
4095// :131:27: error: use of undefined value here causes illegal behavior
4096// :131:27: note: when computing vector element at index '1'
4097// :131:27: error: use of undefined value here causes illegal behavior
4098// :131:27: note: when computing vector element at index '0'
4099// :131:27: error: use of undefined value here causes illegal behavior
4100// :131:27: note: when computing vector element at index '0'
4101// :131:27: error: use of undefined value here causes illegal behavior
4102// :131:27: note: when computing vector element at index '0'
4103// :131:30: error: use of undefined value here causes illegal behavior
4104// :131:30: error: use of undefined value here causes illegal behavior
4105// :131:30: note: when computing vector element at index '0'
4106// :131:30: error: use of undefined value here causes illegal behavior
4107// :131:30: note: when computing vector element at index '0'
4108// :131:30: error: use of undefined value here causes illegal behavior
4109// :131:30: note: when computing vector element at index '1'
4110// :131:30: error: use of undefined value here causes illegal behavior
4111// :131:30: note: when computing vector element at index '0'
4112// :131:30: error: use of undefined value here causes illegal behavior
4113// :131:30: note: when computing vector element at index '0'
4114// :131:30: error: use of undefined value here causes illegal behavior
4115// :131:30: error: use of undefined value here causes illegal behavior
4116// :131:30: note: when computing vector element at index '0'
4117// :131:30: error: use of undefined value here causes illegal behavior
4118// :131:30: note: when computing vector element at index '0'
4119// :131:30: error: use of undefined value here causes illegal behavior
4120// :131:30: note: when computing vector element at index '1'
4121// :131:30: error: use of undefined value here causes illegal behavior
4122// :131:30: note: when computing vector element at index '0'
4123// :131:30: error: use of undefined value here causes illegal behavior
4124// :131:30: note: when computing vector element at index '0'
4125// :131:30: error: use of undefined value here causes illegal behavior
4126// :131:30: error: use of undefined value here causes illegal behavior
4127// :131:30: note: when computing vector element at index '0'
4128// :131:30: error: use of undefined value here causes illegal behavior
4129// :131:30: note: when computing vector element at index '0'
4130// :131:30: error: use of undefined value here causes illegal behavior
4131// :131:30: note: when computing vector element at index '1'
4132// :131:30: error: use of undefined value here causes illegal behavior
4133// :131:30: note: when computing vector element at index '0'
4134// :131:30: error: use of undefined value here causes illegal behavior
4135// :131:30: note: when computing vector element at index '0'
4136// :131:30: error: use of undefined value here causes illegal behavior
4137// :131:30: error: use of undefined value here causes illegal behavior
4138// :131:30: note: when computing vector element at index '0'
4139// :131:30: error: use of undefined value here causes illegal behavior
4140// :131:30: note: when computing vector element at index '0'
4141// :131:30: error: use of undefined value here causes illegal behavior
4142// :131:30: note: when computing vector element at index '1'
4143// :131:30: error: use of undefined value here causes illegal behavior
4144// :131:30: note: when computing vector element at index '0'
4145// :131:30: error: use of undefined value here causes illegal behavior
4146// :131:30: note: when computing vector element at index '0'
4147// :131:30: error: use of undefined value here causes illegal behavior
4148// :131:30: error: use of undefined value here causes illegal behavior
4149// :131:30: note: when computing vector element at index '0'
4150// :131:30: error: use of undefined value here causes illegal behavior
4151// :131:30: note: when computing vector element at index '0'
4152// :131:30: error: use of undefined value here causes illegal behavior
4153// :131:30: note: when computing vector element at index '1'
4154// :131:30: error: use of undefined value here causes illegal behavior
4155// :131:30: note: when computing vector element at index '0'
4156// :131:30: error: use of undefined value here causes illegal behavior
4157// :131:30: note: when computing vector element at index '0'
4158// :131:30: error: use of undefined value here causes illegal behavior
4159// :131:30: error: use of undefined value here causes illegal behavior
4160// :131:30: note: when computing vector element at index '0'
4161// :131:30: error: use of undefined value here causes illegal behavior
4162// :131:30: note: when computing vector element at index '0'
4163// :131:30: error: use of undefined value here causes illegal behavior
4164// :131:30: note: when computing vector element at index '1'
4165// :131:30: error: use of undefined value here causes illegal behavior
4166// :131:30: note: when computing vector element at index '0'
4167// :131:30: error: use of undefined value here causes illegal behavior
4168// :131:30: note: when computing vector element at index '0'
4169// :131:30: error: use of undefined value here causes illegal behavior
4170// :131:30: error: use of undefined value here causes illegal behavior
4171// :131:30: note: when computing vector element at index '0'
4172// :131:30: error: use of undefined value here causes illegal behavior
4173// :131:30: note: when computing vector element at index '0'
4174// :131:30: error: use of undefined value here causes illegal behavior
4175// :131:30: note: when computing vector element at index '1'
4176// :131:30: error: use of undefined value here causes illegal behavior
4177// :131:30: note: when computing vector element at index '0'
4178// :131:30: error: use of undefined value here causes illegal behavior
4179// :131:30: note: when computing vector element at index '0'
4180// :131:30: error: use of undefined value here causes illegal behavior
4181// :131:30: error: use of undefined value here causes illegal behavior
4182// :131:30: note: when computing vector element at index '0'
4183// :131:30: error: use of undefined value here causes illegal behavior
4184// :131:30: note: when computing vector element at index '0'
4185// :131:30: error: use of undefined value here causes illegal behavior
4186// :131:30: note: when computing vector element at index '1'
4187// :131:30: error: use of undefined value here causes illegal behavior
4188// :131:30: note: when computing vector element at index '0'
4189// :131:30: error: use of undefined value here causes illegal behavior
4190// :131:30: note: when computing vector element at index '0'
4191// :131:30: error: use of undefined value here causes illegal behavior
4192// :131:30: error: use of undefined value here causes illegal behavior
4193// :131:30: note: when computing vector element at index '0'
4194// :131:30: error: use of undefined value here causes illegal behavior
4195// :131:30: note: when computing vector element at index '0'
4196// :131:30: error: use of undefined value here causes illegal behavior
4197// :131:30: note: when computing vector element at index '1'
4198// :131:30: error: use of undefined value here causes illegal behavior
4199// :131:30: note: when computing vector element at index '0'
4200// :131:30: error: use of undefined value here causes illegal behavior
4201// :131:30: note: when computing vector element at index '0'
4202// :131:30: error: use of undefined value here causes illegal behavior
4203// :131:30: error: use of undefined value here causes illegal behavior
4204// :131:30: note: when computing vector element at index '0'
4205// :131:30: error: use of undefined value here causes illegal behavior
4206// :131:30: note: when computing vector element at index '0'
4207// :131:30: error: use of undefined value here causes illegal behavior
4208// :131:30: note: when computing vector element at index '1'
4209// :131:30: error: use of undefined value here causes illegal behavior
4210// :131:30: note: when computing vector element at index '0'
4211// :131:30: error: use of undefined value here causes illegal behavior
4212// :131:30: note: when computing vector element at index '0'
4213// :131:30: error: use of undefined value here causes illegal behavior
4214// :131:30: error: use of undefined value here causes illegal behavior
4215// :131:30: note: when computing vector element at index '0'
4216// :131:30: error: use of undefined value here causes illegal behavior
4217// :131:30: note: when computing vector element at index '0'
4218// :131:30: error: use of undefined value here causes illegal behavior
4219// :131:30: note: when computing vector element at index '1'
4220// :131:30: error: use of undefined value here causes illegal behavior
4221// :131:30: note: when computing vector element at index '0'
4222// :131:30: error: use of undefined value here causes illegal behavior
4223// :131:30: note: when computing vector element at index '0'
4224// :135:27: error: use of undefined value here causes illegal behavior
4225// :135:27: error: use of undefined value here causes illegal behavior
4226// :135:27: note: when computing vector element at index '0'
4227// :135:27: error: use of undefined value here causes illegal behavior
4228// :135:27: note: when computing vector element at index '0'
4229// :135:27: error: use of undefined value here causes illegal behavior
4230// :135:27: note: when computing vector element at index '0'
4231// :135:27: error: use of undefined value here causes illegal behavior
4232// :135:27: note: when computing vector element at index '1'
4233// :135:27: error: use of undefined value here causes illegal behavior
4234// :135:27: note: when computing vector element at index '0'
4235// :135:27: error: use of undefined value here causes illegal behavior
4236// :135:27: note: when computing vector element at index '0'
4237// :135:27: error: use of undefined value here causes illegal behavior
4238// :135:27: note: when computing vector element at index '0'
4239// :135:27: error: use of undefined value here causes illegal behavior
4240// :135:27: error: use of undefined value here causes illegal behavior
4241// :135:27: note: when computing vector element at index '0'
4242// :135:27: error: use of undefined value here causes illegal behavior
4243// :135:27: note: when computing vector element at index '0'
4244// :135:27: error: use of undefined value here causes illegal behavior
4245// :135:27: note: when computing vector element at index '0'
4246// :135:27: error: use of undefined value here causes illegal behavior
4247// :135:27: note: when computing vector element at index '1'
4248// :135:27: error: use of undefined value here causes illegal behavior
4249// :135:27: note: when computing vector element at index '0'
4250// :135:27: error: use of undefined value here causes illegal behavior
4251// :135:27: note: when computing vector element at index '0'
4252// :135:27: error: use of undefined value here causes illegal behavior
4253// :135:27: note: when computing vector element at index '0'
4254// :135:27: error: use of undefined value here causes illegal behavior
4255// :135:27: error: use of undefined value here causes illegal behavior
4256// :135:27: note: when computing vector element at index '0'
4257// :135:27: error: use of undefined value here causes illegal behavior
4258// :135:27: note: when computing vector element at index '0'
4259// :135:27: error: use of undefined value here causes illegal behavior
4260// :135:27: note: when computing vector element at index '0'
4261// :135:27: error: use of undefined value here causes illegal behavior
4262// :135:27: note: when computing vector element at index '1'
4263// :135:27: error: use of undefined value here causes illegal behavior
4264// :135:27: note: when computing vector element at index '0'
4265// :135:27: error: use of undefined value here causes illegal behavior
4266// :135:27: note: when computing vector element at index '0'
4267// :135:27: error: use of undefined value here causes illegal behavior
4268// :135:27: note: when computing vector element at index '0'
4269// :135:27: error: use of undefined value here causes illegal behavior
4270// :135:27: error: use of undefined value here causes illegal behavior
4271// :135:27: note: when computing vector element at index '0'
4272// :135:27: error: use of undefined value here causes illegal behavior
4273// :135:27: note: when computing vector element at index '0'
4274// :135:27: error: use of undefined value here causes illegal behavior
4275// :135:27: note: when computing vector element at index '0'
4276// :135:27: error: use of undefined value here causes illegal behavior
4277// :135:27: note: when computing vector element at index '1'
4278// :135:27: error: use of undefined value here causes illegal behavior
4279// :135:27: note: when computing vector element at index '0'
4280// :135:27: error: use of undefined value here causes illegal behavior
4281// :135:27: note: when computing vector element at index '0'
4282// :135:27: error: use of undefined value here causes illegal behavior
4283// :135:27: note: when computing vector element at index '0'
4284// :135:27: error: use of undefined value here causes illegal behavior
4285// :135:27: error: use of undefined value here causes illegal behavior
4286// :135:27: note: when computing vector element at index '0'
4287// :135:27: error: use of undefined value here causes illegal behavior
4288// :135:27: note: when computing vector element at index '0'
4289// :135:27: error: use of undefined value here causes illegal behavior
4290// :135:27: note: when computing vector element at index '0'
4291// :135:27: error: use of undefined value here causes illegal behavior
4292// :135:27: note: when computing vector element at index '1'
4293// :135:27: error: use of undefined value here causes illegal behavior
4294// :135:27: note: when computing vector element at index '0'
4295// :135:27: error: use of undefined value here causes illegal behavior
4296// :135:27: note: when computing vector element at index '0'
4297// :135:27: error: use of undefined value here causes illegal behavior
4298// :135:27: note: when computing vector element at index '0'
4299// :135:27: error: use of undefined value here causes illegal behavior
4300// :135:27: error: use of undefined value here causes illegal behavior
4301// :135:27: note: when computing vector element at index '0'
4302// :135:27: error: use of undefined value here causes illegal behavior
4303// :135:27: note: when computing vector element at index '0'
4304// :135:27: error: use of undefined value here causes illegal behavior
4305// :135:27: note: when computing vector element at index '0'
4306// :135:27: error: use of undefined value here causes illegal behavior
4307// :135:27: note: when computing vector element at index '1'
4308// :135:27: error: use of undefined value here causes illegal behavior
4309// :135:27: note: when computing vector element at index '0'
4310// :135:27: error: use of undefined value here causes illegal behavior
4311// :135:27: note: when computing vector element at index '0'
4312// :135:27: error: use of undefined value here causes illegal behavior
4313// :135:27: note: when computing vector element at index '0'
4314// :135:27: error: use of undefined value here causes illegal behavior
4315// :135:27: error: use of undefined value here causes illegal behavior
4316// :135:27: note: when computing vector element at index '0'
4317// :135:27: error: use of undefined value here causes illegal behavior
4318// :135:27: note: when computing vector element at index '0'
4319// :135:27: error: use of undefined value here causes illegal behavior
4320// :135:27: note: when computing vector element at index '0'
4321// :135:27: error: use of undefined value here causes illegal behavior
4322// :135:27: note: when computing vector element at index '1'
4323// :135:27: error: use of undefined value here causes illegal behavior
4324// :135:27: note: when computing vector element at index '0'
4325// :135:27: error: use of undefined value here causes illegal behavior
4326// :135:27: note: when computing vector element at index '0'
4327// :135:27: error: use of undefined value here causes illegal behavior
4328// :135:27: note: when computing vector element at index '0'
4329// :135:27: error: use of undefined value here causes illegal behavior
4330// :135:27: error: use of undefined value here causes illegal behavior
4331// :135:27: note: when computing vector element at index '0'
4332// :135:27: error: use of undefined value here causes illegal behavior
4333// :135:27: note: when computing vector element at index '0'
4334// :135:27: error: use of undefined value here causes illegal behavior
4335// :135:27: note: when computing vector element at index '0'
4336// :135:27: error: use of undefined value here causes illegal behavior
4337// :135:27: note: when computing vector element at index '1'
4338// :135:27: error: use of undefined value here causes illegal behavior
4339// :135:27: note: when computing vector element at index '0'
4340// :135:27: error: use of undefined value here causes illegal behavior
4341// :135:27: note: when computing vector element at index '0'
4342// :135:27: error: use of undefined value here causes illegal behavior
4343// :135:27: note: when computing vector element at index '0'
4344// :135:27: error: use of undefined value here causes illegal behavior
4345// :135:27: error: use of undefined value here causes illegal behavior
4346// :135:27: note: when computing vector element at index '0'
4347// :135:27: error: use of undefined value here causes illegal behavior
4348// :135:27: note: when computing vector element at index '0'
4349// :135:27: error: use of undefined value here causes illegal behavior
4350// :135:27: note: when computing vector element at index '0'
4351// :135:27: error: use of undefined value here causes illegal behavior
4352// :135:27: note: when computing vector element at index '1'
4353// :135:27: error: use of undefined value here causes illegal behavior
4354// :135:27: note: when computing vector element at index '0'
4355// :135:27: error: use of undefined value here causes illegal behavior
4356// :135:27: note: when computing vector element at index '0'
4357// :135:27: error: use of undefined value here causes illegal behavior
4358// :135:27: note: when computing vector element at index '0'
4359// :135:27: error: use of undefined value here causes illegal behavior
4360// :135:27: error: use of undefined value here causes illegal behavior
4361// :135:27: note: when computing vector element at index '0'
4362// :135:27: error: use of undefined value here causes illegal behavior
4363// :135:27: note: when computing vector element at index '0'
4364// :135:27: error: use of undefined value here causes illegal behavior
4365// :135:27: note: when computing vector element at index '0'
4366// :135:27: error: use of undefined value here causes illegal behavior
4367// :135:27: note: when computing vector element at index '1'
4368// :135:27: error: use of undefined value here causes illegal behavior
4369// :135:27: note: when computing vector element at index '0'
4370// :135:27: error: use of undefined value here causes illegal behavior
4371// :135:27: note: when computing vector element at index '0'
4372// :135:27: error: use of undefined value here causes illegal behavior
4373// :135:27: note: when computing vector element at index '0'
4374// :135:27: error: use of undefined value here causes illegal behavior
4375// :135:27: error: use of undefined value here causes illegal behavior
4376// :135:27: note: when computing vector element at index '0'
4377// :135:27: error: use of undefined value here causes illegal behavior
4378// :135:27: note: when computing vector element at index '0'
4379// :135:27: error: use of undefined value here causes illegal behavior
4380// :135:27: note: when computing vector element at index '0'
4381// :135:27: error: use of undefined value here causes illegal behavior
4382// :135:27: note: when computing vector element at index '1'
4383// :135:27: error: use of undefined value here causes illegal behavior
4384// :135:27: note: when computing vector element at index '0'
4385// :135:27: error: use of undefined value here causes illegal behavior
4386// :135:27: note: when computing vector element at index '0'
4387// :135:27: error: use of undefined value here causes illegal behavior
4388// :135:27: note: when computing vector element at index '0'
4389// :135:30: error: use of undefined value here causes illegal behavior
4390// :135:30: error: use of undefined value here causes illegal behavior
4391// :135:30: note: when computing vector element at index '0'
4392// :135:30: error: use of undefined value here causes illegal behavior
4393// :135:30: note: when computing vector element at index '0'
4394// :135:30: error: use of undefined value here causes illegal behavior
4395// :135:30: note: when computing vector element at index '1'
4396// :135:30: error: use of undefined value here causes illegal behavior
4397// :135:30: note: when computing vector element at index '0'
4398// :135:30: error: use of undefined value here causes illegal behavior
4399// :135:30: note: when computing vector element at index '0'
4400// :135:30: error: use of undefined value here causes illegal behavior
4401// :135:30: error: use of undefined value here causes illegal behavior
4402// :135:30: note: when computing vector element at index '0'
4403// :135:30: error: use of undefined value here causes illegal behavior
4404// :135:30: note: when computing vector element at index '0'
4405// :135:30: error: use of undefined value here causes illegal behavior
4406// :135:30: note: when computing vector element at index '1'
4407// :135:30: error: use of undefined value here causes illegal behavior
4408// :135:30: note: when computing vector element at index '0'
4409// :135:30: error: use of undefined value here causes illegal behavior
4410// :135:30: note: when computing vector element at index '0'
4411// :135:30: error: use of undefined value here causes illegal behavior
4412// :135:30: error: use of undefined value here causes illegal behavior
4413// :135:30: note: when computing vector element at index '0'
4414// :135:30: error: use of undefined value here causes illegal behavior
4415// :135:30: note: when computing vector element at index '0'
4416// :135:30: error: use of undefined value here causes illegal behavior
4417// :135:30: note: when computing vector element at index '1'
4418// :135:30: error: use of undefined value here causes illegal behavior
4419// :135:30: note: when computing vector element at index '0'
4420// :135:30: error: use of undefined value here causes illegal behavior
4421// :135:30: note: when computing vector element at index '0'
4422// :135:30: error: use of undefined value here causes illegal behavior
4423// :135:30: error: use of undefined value here causes illegal behavior
4424// :135:30: note: when computing vector element at index '0'
4425// :135:30: error: use of undefined value here causes illegal behavior
4426// :135:30: note: when computing vector element at index '0'
4427// :135:30: error: use of undefined value here causes illegal behavior
4428// :135:30: note: when computing vector element at index '1'
4429// :135:30: error: use of undefined value here causes illegal behavior
4430// :135:30: note: when computing vector element at index '0'
4431// :135:30: error: use of undefined value here causes illegal behavior
4432// :135:30: note: when computing vector element at index '0'
4433// :135:30: error: use of undefined value here causes illegal behavior
4434// :135:30: error: use of undefined value here causes illegal behavior
4435// :135:30: note: when computing vector element at index '0'
4436// :135:30: error: use of undefined value here causes illegal behavior
4437// :135:30: note: when computing vector element at index '0'
4438// :135:30: error: use of undefined value here causes illegal behavior
4439// :135:30: note: when computing vector element at index '1'
4440// :135:30: error: use of undefined value here causes illegal behavior
4441// :135:30: note: when computing vector element at index '0'
4442// :135:30: error: use of undefined value here causes illegal behavior
4443// :135:30: note: when computing vector element at index '0'
4444// :135:30: error: use of undefined value here causes illegal behavior
4445// :135:30: error: use of undefined value here causes illegal behavior
4446// :135:30: note: when computing vector element at index '0'
4447// :135:30: error: use of undefined value here causes illegal behavior
4448// :135:30: note: when computing vector element at index '0'
4449// :135:30: error: use of undefined value here causes illegal behavior
4450// :135:30: note: when computing vector element at index '1'
4451// :135:30: error: use of undefined value here causes illegal behavior
4452// :135:30: note: when computing vector element at index '0'
4453// :135:30: error: use of undefined value here causes illegal behavior
4454// :135:30: note: when computing vector element at index '0'
4455// :135:30: error: use of undefined value here causes illegal behavior
4456// :135:30: error: use of undefined value here causes illegal behavior
4457// :135:30: note: when computing vector element at index '0'
4458// :135:30: error: use of undefined value here causes illegal behavior
4459// :135:30: note: when computing vector element at index '0'
4460// :135:30: error: use of undefined value here causes illegal behavior
4461// :135:30: note: when computing vector element at index '1'
4462// :135:30: error: use of undefined value here causes illegal behavior
4463// :135:30: note: when computing vector element at index '0'
4464// :135:30: error: use of undefined value here causes illegal behavior
4465// :135:30: note: when computing vector element at index '0'
4466// :135:30: error: use of undefined value here causes illegal behavior
4467// :135:30: error: use of undefined value here causes illegal behavior
4468// :135:30: note: when computing vector element at index '0'
4469// :135:30: error: use of undefined value here causes illegal behavior
4470// :135:30: note: when computing vector element at index '0'
4471// :135:30: error: use of undefined value here causes illegal behavior
4472// :135:30: note: when computing vector element at index '1'
4473// :135:30: error: use of undefined value here causes illegal behavior
4474// :135:30: note: when computing vector element at index '0'
4475// :135:30: error: use of undefined value here causes illegal behavior
4476// :135:30: note: when computing vector element at index '0'
4477// :135:30: error: use of undefined value here causes illegal behavior
4478// :135:30: error: use of undefined value here causes illegal behavior
4479// :135:30: note: when computing vector element at index '0'
4480// :135:30: error: use of undefined value here causes illegal behavior
4481// :135:30: note: when computing vector element at index '0'
4482// :135:30: error: use of undefined value here causes illegal behavior
4483// :135:30: note: when computing vector element at index '1'
4484// :135:30: error: use of undefined value here causes illegal behavior
4485// :135:30: note: when computing vector element at index '0'
4486// :135:30: error: use of undefined value here causes illegal behavior
4487// :135:30: note: when computing vector element at index '0'
4488// :135:30: error: use of undefined value here causes illegal behavior
4489// :135:30: error: use of undefined value here causes illegal behavior
4490// :135:30: note: when computing vector element at index '0'
4491// :135:30: error: use of undefined value here causes illegal behavior
4492// :135:30: note: when computing vector element at index '0'
4493// :135:30: error: use of undefined value here causes illegal behavior
4494// :135:30: note: when computing vector element at index '1'
4495// :135:30: error: use of undefined value here causes illegal behavior
4496// :135:30: note: when computing vector element at index '0'
4497// :135:30: error: use of undefined value here causes illegal behavior
4498// :135:30: note: when computing vector element at index '0'
4499// :135:30: error: use of undefined value here causes illegal behavior
4500// :135:30: error: use of undefined value here causes illegal behavior
4501// :135:30: note: when computing vector element at index '0'
4502// :135:30: error: use of undefined value here causes illegal behavior
4503// :135:30: note: when computing vector element at index '0'
4504// :135:30: error: use of undefined value here causes illegal behavior
4505// :135:30: note: when computing vector element at index '1'
4506// :135:30: error: use of undefined value here causes illegal behavior
4507// :135:30: note: when computing vector element at index '0'
4508// :135:30: error: use of undefined value here causes illegal behavior
4509// :135:30: note: when computing vector element at index '0'
4510// :139:27: error: use of undefined value here causes illegal behavior
4511// :139:27: error: use of undefined value here causes illegal behavior
4512// :139:27: note: when computing vector element at index '0'
4513// :139:27: error: use of undefined value here causes illegal behavior
4514// :139:27: note: when computing vector element at index '0'
4515// :139:27: error: use of undefined value here causes illegal behavior
4516// :139:27: note: when computing vector element at index '0'
4517// :139:27: error: use of undefined value here causes illegal behavior
4518// :139:27: note: when computing vector element at index '1'
4519// :139:27: error: use of undefined value here causes illegal behavior
4520// :139:27: note: when computing vector element at index '0'
4521// :139:27: error: use of undefined value here causes illegal behavior
4522// :139:27: note: when computing vector element at index '0'
4523// :139:27: error: use of undefined value here causes illegal behavior
4524// :139:27: note: when computing vector element at index '0'
4525// :139:27: error: use of undefined value here causes illegal behavior
4526// :139:27: error: use of undefined value here causes illegal behavior
4527// :139:27: note: when computing vector element at index '0'
4528// :139:27: error: use of undefined value here causes illegal behavior
4529// :139:27: note: when computing vector element at index '0'
4530// :139:27: error: use of undefined value here causes illegal behavior
4531// :139:27: note: when computing vector element at index '0'
4532// :139:27: error: use of undefined value here causes illegal behavior
4533// :139:27: note: when computing vector element at index '1'
4534// :139:27: error: use of undefined value here causes illegal behavior
4535// :139:27: note: when computing vector element at index '0'
4536// :139:27: error: use of undefined value here causes illegal behavior
4537// :139:27: note: when computing vector element at index '0'
4538// :139:27: error: use of undefined value here causes illegal behavior
4539// :139:27: note: when computing vector element at index '0'
4540// :139:27: error: use of undefined value here causes illegal behavior
4541// :139:27: error: use of undefined value here causes illegal behavior
4542// :139:27: note: when computing vector element at index '0'
4543// :139:27: error: use of undefined value here causes illegal behavior
4544// :139:27: note: when computing vector element at index '0'
4545// :139:27: error: use of undefined value here causes illegal behavior
4546// :139:27: note: when computing vector element at index '0'
4547// :139:27: error: use of undefined value here causes illegal behavior
4548// :139:27: note: when computing vector element at index '1'
4549// :139:27: error: use of undefined value here causes illegal behavior
4550// :139:27: note: when computing vector element at index '0'
4551// :139:27: error: use of undefined value here causes illegal behavior
4552// :139:27: note: when computing vector element at index '0'
4553// :139:27: error: use of undefined value here causes illegal behavior
4554// :139:27: note: when computing vector element at index '0'
4555// :139:27: error: use of undefined value here causes illegal behavior
4556// :139:27: error: use of undefined value here causes illegal behavior
4557// :139:27: note: when computing vector element at index '0'
4558// :139:27: error: use of undefined value here causes illegal behavior
4559// :139:27: note: when computing vector element at index '0'
4560// :139:27: error: use of undefined value here causes illegal behavior
4561// :139:27: note: when computing vector element at index '0'
4562// :139:27: error: use of undefined value here causes illegal behavior
4563// :139:27: note: when computing vector element at index '1'
4564// :139:27: error: use of undefined value here causes illegal behavior
4565// :139:27: note: when computing vector element at index '0'
4566// :139:27: error: use of undefined value here causes illegal behavior
4567// :139:27: note: when computing vector element at index '0'
4568// :139:27: error: use of undefined value here causes illegal behavior
4569// :139:27: note: when computing vector element at index '0'
4570// :139:27: error: use of undefined value here causes illegal behavior
4571// :139:27: error: use of undefined value here causes illegal behavior
4572// :139:27: note: when computing vector element at index '0'
4573// :139:27: error: use of undefined value here causes illegal behavior
4574// :139:27: note: when computing vector element at index '0'
4575// :139:27: error: use of undefined value here causes illegal behavior
4576// :139:27: note: when computing vector element at index '0'
4577// :139:27: error: use of undefined value here causes illegal behavior
4578// :139:27: note: when computing vector element at index '1'
4579// :139:27: error: use of undefined value here causes illegal behavior
4580// :139:27: note: when computing vector element at index '0'
4581// :139:27: error: use of undefined value here causes illegal behavior
4582// :139:27: note: when computing vector element at index '0'
4583// :139:27: error: use of undefined value here causes illegal behavior
4584// :139:27: note: when computing vector element at index '0'
4585// :139:27: error: use of undefined value here causes illegal behavior
4586// :139:27: error: use of undefined value here causes illegal behavior
4587// :139:27: note: when computing vector element at index '0'
4588// :139:27: error: use of undefined value here causes illegal behavior
4589// :139:27: note: when computing vector element at index '0'
4590// :139:27: error: use of undefined value here causes illegal behavior
4591// :139:27: note: when computing vector element at index '0'
4592// :139:27: error: use of undefined value here causes illegal behavior
4593// :139:27: note: when computing vector element at index '1'
4594// :139:27: error: use of undefined value here causes illegal behavior
4595// :139:27: note: when computing vector element at index '0'
4596// :139:27: error: use of undefined value here causes illegal behavior
4597// :139:27: note: when computing vector element at index '0'
4598// :139:27: error: use of undefined value here causes illegal behavior
4599// :139:27: note: when computing vector element at index '0'
4600// :139:27: error: use of undefined value here causes illegal behavior
4601// :139:27: error: use of undefined value here causes illegal behavior
4602// :139:27: note: when computing vector element at index '0'
4603// :139:27: error: use of undefined value here causes illegal behavior
4604// :139:27: note: when computing vector element at index '0'
4605// :139:27: error: use of undefined value here causes illegal behavior
4606// :139:27: note: when computing vector element at index '0'
4607// :139:27: error: use of undefined value here causes illegal behavior
4608// :139:27: note: when computing vector element at index '1'
4609// :139:27: error: use of undefined value here causes illegal behavior
4610// :139:27: note: when computing vector element at index '0'
4611// :139:27: error: use of undefined value here causes illegal behavior
4612// :139:27: note: when computing vector element at index '0'
4613// :139:27: error: use of undefined value here causes illegal behavior
4614// :139:27: note: when computing vector element at index '0'
4615// :139:27: error: use of undefined value here causes illegal behavior
4616// :139:27: error: use of undefined value here causes illegal behavior
4617// :139:27: note: when computing vector element at index '0'
4618// :139:27: error: use of undefined value here causes illegal behavior
4619// :139:27: note: when computing vector element at index '0'
4620// :139:27: error: use of undefined value here causes illegal behavior
4621// :139:27: note: when computing vector element at index '0'
4622// :139:27: error: use of undefined value here causes illegal behavior
4623// :139:27: note: when computing vector element at index '1'
4624// :139:27: error: use of undefined value here causes illegal behavior
4625// :139:27: note: when computing vector element at index '0'
4626// :139:27: error: use of undefined value here causes illegal behavior
4627// :139:27: note: when computing vector element at index '0'
4628// :139:27: error: use of undefined value here causes illegal behavior
4629// :139:27: note: when computing vector element at index '0'
4630// :139:27: error: use of undefined value here causes illegal behavior
4631// :139:27: error: use of undefined value here causes illegal behavior
4632// :139:27: note: when computing vector element at index '0'
4633// :139:27: error: use of undefined value here causes illegal behavior
4634// :139:27: note: when computing vector element at index '0'
4635// :139:27: error: use of undefined value here causes illegal behavior
4636// :139:27: note: when computing vector element at index '0'
4637// :139:27: error: use of undefined value here causes illegal behavior
4638// :139:27: note: when computing vector element at index '1'
4639// :139:27: error: use of undefined value here causes illegal behavior
4640// :139:27: note: when computing vector element at index '0'
4641// :139:27: error: use of undefined value here causes illegal behavior
4642// :139:27: note: when computing vector element at index '0'
4643// :139:27: error: use of undefined value here causes illegal behavior
4644// :139:27: note: when computing vector element at index '0'
4645// :139:27: error: use of undefined value here causes illegal behavior
4646// :139:27: error: use of undefined value here causes illegal behavior
4647// :139:27: note: when computing vector element at index '0'
4648// :139:27: error: use of undefined value here causes illegal behavior
4649// :139:27: note: when computing vector element at index '0'
4650// :139:27: error: use of undefined value here causes illegal behavior
4651// :139:27: note: when computing vector element at index '0'
4652// :139:27: error: use of undefined value here causes illegal behavior
4653// :139:27: note: when computing vector element at index '1'
4654// :139:27: error: use of undefined value here causes illegal behavior
4655// :139:27: note: when computing vector element at index '0'
4656// :139:27: error: use of undefined value here causes illegal behavior
4657// :139:27: note: when computing vector element at index '0'
4658// :139:27: error: use of undefined value here causes illegal behavior
4659// :139:27: note: when computing vector element at index '0'
4660// :139:27: error: use of undefined value here causes illegal behavior
4661// :139:27: error: use of undefined value here causes illegal behavior
4662// :139:27: note: when computing vector element at index '0'
4663// :139:27: error: use of undefined value here causes illegal behavior
4664// :139:27: note: when computing vector element at index '0'
4665// :139:27: error: use of undefined value here causes illegal behavior
4666// :139:27: note: when computing vector element at index '0'
4667// :139:27: error: use of undefined value here causes illegal behavior
4668// :139:27: note: when computing vector element at index '1'
4669// :139:27: error: use of undefined value here causes illegal behavior
4670// :139:27: note: when computing vector element at index '0'
4671// :139:27: error: use of undefined value here causes illegal behavior
4672// :139:27: note: when computing vector element at index '0'
4673// :139:27: error: use of undefined value here causes illegal behavior
4674// :139:27: note: when computing vector element at index '0'
4675// :139:30: error: use of undefined value here causes illegal behavior
4676// :139:30: error: use of undefined value here causes illegal behavior
4677// :139:30: note: when computing vector element at index '0'
4678// :139:30: error: use of undefined value here causes illegal behavior
4679// :139:30: note: when computing vector element at index '0'
4680// :139:30: error: use of undefined value here causes illegal behavior
4681// :139:30: note: when computing vector element at index '1'
4682// :139:30: error: use of undefined value here causes illegal behavior
4683// :139:30: note: when computing vector element at index '0'
4684// :139:30: error: use of undefined value here causes illegal behavior
4685// :139:30: note: when computing vector element at index '0'
4686// :139:30: error: use of undefined value here causes illegal behavior
4687// :139:30: error: use of undefined value here causes illegal behavior
4688// :139:30: note: when computing vector element at index '0'
4689// :139:30: error: use of undefined value here causes illegal behavior
4690// :139:30: note: when computing vector element at index '0'
4691// :139:30: error: use of undefined value here causes illegal behavior
4692// :139:30: note: when computing vector element at index '1'
4693// :139:30: error: use of undefined value here causes illegal behavior
4694// :139:30: note: when computing vector element at index '0'
4695// :139:30: error: use of undefined value here causes illegal behavior
4696// :139:30: note: when computing vector element at index '0'
4697// :139:30: error: use of undefined value here causes illegal behavior
4698// :139:30: error: use of undefined value here causes illegal behavior
4699// :139:30: note: when computing vector element at index '0'
4700// :139:30: error: use of undefined value here causes illegal behavior
4701// :139:30: note: when computing vector element at index '0'
4702// :139:30: error: use of undefined value here causes illegal behavior
4703// :139:30: note: when computing vector element at index '1'
4704// :139:30: error: use of undefined value here causes illegal behavior
4705// :139:30: note: when computing vector element at index '0'
4706// :139:30: error: use of undefined value here causes illegal behavior
4707// :139:30: note: when computing vector element at index '0'
4708// :139:30: error: use of undefined value here causes illegal behavior
4709// :139:30: error: use of undefined value here causes illegal behavior
4710// :139:30: note: when computing vector element at index '0'
4711// :139:30: error: use of undefined value here causes illegal behavior
4712// :139:30: note: when computing vector element at index '0'
4713// :139:30: error: use of undefined value here causes illegal behavior
4714// :139:30: note: when computing vector element at index '1'
4715// :139:30: error: use of undefined value here causes illegal behavior
4716// :139:30: note: when computing vector element at index '0'
4717// :139:30: error: use of undefined value here causes illegal behavior
4718// :139:30: note: when computing vector element at index '0'
4719// :139:30: error: use of undefined value here causes illegal behavior
4720// :139:30: error: use of undefined value here causes illegal behavior
4721// :139:30: note: when computing vector element at index '0'
4722// :139:30: error: use of undefined value here causes illegal behavior
4723// :139:30: note: when computing vector element at index '0'
4724// :139:30: error: use of undefined value here causes illegal behavior
4725// :139:30: note: when computing vector element at index '1'
4726// :139:30: error: use of undefined value here causes illegal behavior
4727// :139:30: note: when computing vector element at index '0'
4728// :139:30: error: use of undefined value here causes illegal behavior
4729// :139:30: note: when computing vector element at index '0'
4730// :139:30: error: use of undefined value here causes illegal behavior
4731// :139:30: error: use of undefined value here causes illegal behavior
4732// :139:30: note: when computing vector element at index '0'
4733// :139:30: error: use of undefined value here causes illegal behavior
4734// :139:30: note: when computing vector element at index '0'
4735// :139:30: error: use of undefined value here causes illegal behavior
4736// :139:30: note: when computing vector element at index '1'
4737// :139:30: error: use of undefined value here causes illegal behavior
4738// :139:30: note: when computing vector element at index '0'
4739// :139:30: error: use of undefined value here causes illegal behavior
4740// :139:30: note: when computing vector element at index '0'
4741// :139:30: error: use of undefined value here causes illegal behavior
4742// :139:30: error: use of undefined value here causes illegal behavior
4743// :139:30: note: when computing vector element at index '0'
4744// :139:30: error: use of undefined value here causes illegal behavior
4745// :139:30: note: when computing vector element at index '0'
4746// :139:30: error: use of undefined value here causes illegal behavior
4747// :139:30: note: when computing vector element at index '1'
4748// :139:30: error: use of undefined value here causes illegal behavior
4749// :139:30: note: when computing vector element at index '0'
4750// :139:30: error: use of undefined value here causes illegal behavior
4751// :139:30: note: when computing vector element at index '0'
4752// :139:30: error: use of undefined value here causes illegal behavior
4753// :139:30: error: use of undefined value here causes illegal behavior
4754// :139:30: note: when computing vector element at index '0'
4755// :139:30: error: use of undefined value here causes illegal behavior
4756// :139:30: note: when computing vector element at index '0'
4757// :139:30: error: use of undefined value here causes illegal behavior
4758// :139:30: note: when computing vector element at index '1'
4759// :139:30: error: use of undefined value here causes illegal behavior
4760// :139:30: note: when computing vector element at index '0'
4761// :139:30: error: use of undefined value here causes illegal behavior
4762// :139:30: note: when computing vector element at index '0'
4763// :139:30: error: use of undefined value here causes illegal behavior
4764// :139:30: error: use of undefined value here causes illegal behavior
4765// :139:30: note: when computing vector element at index '0'
4766// :139:30: error: use of undefined value here causes illegal behavior
4767// :139:30: note: when computing vector element at index '0'
4768// :139:30: error: use of undefined value here causes illegal behavior
4769// :139:30: note: when computing vector element at index '1'
4770// :139:30: error: use of undefined value here causes illegal behavior
4771// :139:30: note: when computing vector element at index '0'
4772// :139:30: error: use of undefined value here causes illegal behavior
4773// :139:30: note: when computing vector element at index '0'
4774// :139:30: error: use of undefined value here causes illegal behavior
4775// :139:30: error: use of undefined value here causes illegal behavior
4776// :139:30: note: when computing vector element at index '0'
4777// :139:30: error: use of undefined value here causes illegal behavior
4778// :139:30: note: when computing vector element at index '0'
4779// :139:30: error: use of undefined value here causes illegal behavior
4780// :139:30: note: when computing vector element at index '1'
4781// :139:30: error: use of undefined value here causes illegal behavior
4782// :139:30: note: when computing vector element at index '0'
4783// :139:30: error: use of undefined value here causes illegal behavior
4784// :139:30: note: when computing vector element at index '0'
4785// :139:30: error: use of undefined value here causes illegal behavior
4786// :139:30: error: use of undefined value here causes illegal behavior
4787// :139:30: note: when computing vector element at index '0'
4788// :139:30: error: use of undefined value here causes illegal behavior
4789// :139:30: note: when computing vector element at index '0'
4790// :139:30: error: use of undefined value here causes illegal behavior
4791// :139:30: note: when computing vector element at index '1'
4792// :139:30: error: use of undefined value here causes illegal behavior
4793// :139:30: note: when computing vector element at index '0'
4794// :139:30: error: use of undefined value here causes illegal behavior
4795// :139:30: note: when computing vector element at index '0'
4796// :143:17: error: use of undefined value here causes illegal behavior
4797// :143:17: error: use of undefined value here causes illegal behavior
4798// :143:17: note: when computing vector element at index '0'
4799// :143:17: error: use of undefined value here causes illegal behavior
4800// :143:17: note: when computing vector element at index '0'
4801// :143:17: error: use of undefined value here causes illegal behavior
4802// :143:17: note: when computing vector element at index '0'
4803// :143:17: error: use of undefined value here causes illegal behavior
4804// :143:17: note: when computing vector element at index '1'
4805// :143:17: error: use of undefined value here causes illegal behavior
4806// :143:17: note: when computing vector element at index '0'
4807// :143:17: error: use of undefined value here causes illegal behavior
4808// :143:17: note: when computing vector element at index '0'
4809// :143:17: error: use of undefined value here causes illegal behavior
4810// :143:17: note: when computing vector element at index '0'
4811// :143:17: error: use of undefined value here causes illegal behavior
4812// :143:17: error: use of undefined value here causes illegal behavior
4813// :143:17: note: when computing vector element at index '0'
4814// :143:17: error: use of undefined value here causes illegal behavior
4815// :143:17: note: when computing vector element at index '0'
4816// :143:17: error: use of undefined value here causes illegal behavior
4817// :143:17: note: when computing vector element at index '0'
4818// :143:17: error: use of undefined value here causes illegal behavior
4819// :143:17: note: when computing vector element at index '1'
4820// :143:17: error: use of undefined value here causes illegal behavior
4821// :143:17: note: when computing vector element at index '0'
4822// :143:17: error: use of undefined value here causes illegal behavior
4823// :143:17: note: when computing vector element at index '0'
4824// :143:17: error: use of undefined value here causes illegal behavior
4825// :143:17: note: when computing vector element at index '0'
4826// :143:17: error: use of undefined value here causes illegal behavior
4827// :143:17: error: use of undefined value here causes illegal behavior
4828// :143:17: note: when computing vector element at index '0'
4829// :143:17: error: use of undefined value here causes illegal behavior
4830// :143:17: note: when computing vector element at index '0'
4831// :143:17: error: use of undefined value here causes illegal behavior
4832// :143:17: note: when computing vector element at index '0'
4833// :143:17: error: use of undefined value here causes illegal behavior
4834// :143:17: note: when computing vector element at index '1'
4835// :143:17: error: use of undefined value here causes illegal behavior
4836// :143:17: note: when computing vector element at index '0'
4837// :143:17: error: use of undefined value here causes illegal behavior
4838// :143:17: note: when computing vector element at index '0'
4839// :143:17: error: use of undefined value here causes illegal behavior
4840// :143:17: note: when computing vector element at index '0'
4841// :143:17: error: use of undefined value here causes illegal behavior
4842// :143:17: error: use of undefined value here causes illegal behavior
4843// :143:17: note: when computing vector element at index '0'
4844// :143:17: error: use of undefined value here causes illegal behavior
4845// :143:17: note: when computing vector element at index '0'
4846// :143:17: error: use of undefined value here causes illegal behavior
4847// :143:17: note: when computing vector element at index '0'
4848// :143:17: error: use of undefined value here causes illegal behavior
4849// :143:17: note: when computing vector element at index '1'
4850// :143:17: error: use of undefined value here causes illegal behavior
4851// :143:17: note: when computing vector element at index '0'
4852// :143:17: error: use of undefined value here causes illegal behavior
4853// :143:17: note: when computing vector element at index '0'
4854// :143:17: error: use of undefined value here causes illegal behavior
4855// :143:17: note: when computing vector element at index '0'
4856// :143:17: error: use of undefined value here causes illegal behavior
4857// :143:17: error: use of undefined value here causes illegal behavior
4858// :143:17: note: when computing vector element at index '0'
4859// :143:17: error: use of undefined value here causes illegal behavior
4860// :143:17: note: when computing vector element at index '0'
4861// :143:17: error: use of undefined value here causes illegal behavior
4862// :143:17: note: when computing vector element at index '0'
4863// :143:17: error: use of undefined value here causes illegal behavior
4864// :143:17: note: when computing vector element at index '1'
4865// :143:17: error: use of undefined value here causes illegal behavior
4866// :143:17: note: when computing vector element at index '0'
4867// :143:17: error: use of undefined value here causes illegal behavior
4868// :143:17: note: when computing vector element at index '0'
4869// :143:17: error: use of undefined value here causes illegal behavior
4870// :143:17: note: when computing vector element at index '0'
4871// :143:17: error: use of undefined value here causes illegal behavior
4872// :143:17: error: use of undefined value here causes illegal behavior
4873// :143:17: note: when computing vector element at index '0'
4874// :143:17: error: use of undefined value here causes illegal behavior
4875// :143:17: note: when computing vector element at index '0'
4876// :143:17: error: use of undefined value here causes illegal behavior
4877// :143:17: note: when computing vector element at index '0'
4878// :143:17: error: use of undefined value here causes illegal behavior
4879// :143:17: note: when computing vector element at index '1'
4880// :143:17: error: use of undefined value here causes illegal behavior
4881// :143:17: note: when computing vector element at index '0'
4882// :143:17: error: use of undefined value here causes illegal behavior
4883// :143:17: note: when computing vector element at index '0'
4884// :143:17: error: use of undefined value here causes illegal behavior
4885// :143:17: note: when computing vector element at index '0'
4886// :143:17: error: use of undefined value here causes illegal behavior
4887// :143:17: error: use of undefined value here causes illegal behavior
4888// :143:17: note: when computing vector element at index '0'
4889// :143:17: error: use of undefined value here causes illegal behavior
4890// :143:17: note: when computing vector element at index '0'
4891// :143:17: error: use of undefined value here causes illegal behavior
4892// :143:17: note: when computing vector element at index '0'
4893// :143:17: error: use of undefined value here causes illegal behavior
4894// :143:17: note: when computing vector element at index '1'
4895// :143:17: error: use of undefined value here causes illegal behavior
4896// :143:17: note: when computing vector element at index '0'
4897// :143:17: error: use of undefined value here causes illegal behavior
4898// :143:17: note: when computing vector element at index '0'
4899// :143:17: error: use of undefined value here causes illegal behavior
4900// :143:17: note: when computing vector element at index '0'
4901// :143:17: error: use of undefined value here causes illegal behavior
4902// :143:17: error: use of undefined value here causes illegal behavior
4903// :143:17: note: when computing vector element at index '0'
4904// :143:17: error: use of undefined value here causes illegal behavior
4905// :143:17: note: when computing vector element at index '0'
4906// :143:17: error: use of undefined value here causes illegal behavior
4907// :143:17: note: when computing vector element at index '0'
4908// :143:17: error: use of undefined value here causes illegal behavior
4909// :143:17: note: when computing vector element at index '1'
4910// :143:17: error: use of undefined value here causes illegal behavior
4911// :143:17: note: when computing vector element at index '0'
4912// :143:17: error: use of undefined value here causes illegal behavior
4913// :143:17: note: when computing vector element at index '0'
4914// :143:17: error: use of undefined value here causes illegal behavior
4915// :143:17: note: when computing vector element at index '0'
4916// :143:17: error: use of undefined value here causes illegal behavior
4917// :143:17: error: use of undefined value here causes illegal behavior
4918// :143:17: note: when computing vector element at index '0'
4919// :143:17: error: use of undefined value here causes illegal behavior
4920// :143:17: note: when computing vector element at index '0'
4921// :143:17: error: use of undefined value here causes illegal behavior
4922// :143:17: note: when computing vector element at index '0'
4923// :143:17: error: use of undefined value here causes illegal behavior
4924// :143:17: note: when computing vector element at index '1'
4925// :143:17: error: use of undefined value here causes illegal behavior
4926// :143:17: note: when computing vector element at index '0'
4927// :143:17: error: use of undefined value here causes illegal behavior
4928// :143:17: note: when computing vector element at index '0'
4929// :143:17: error: use of undefined value here causes illegal behavior
4930// :143:17: note: when computing vector element at index '0'
4931// :143:17: error: use of undefined value here causes illegal behavior
4932// :143:17: error: use of undefined value here causes illegal behavior
4933// :143:17: note: when computing vector element at index '0'
4934// :143:17: error: use of undefined value here causes illegal behavior
4935// :143:17: note: when computing vector element at index '0'
4936// :143:17: error: use of undefined value here causes illegal behavior
4937// :143:17: note: when computing vector element at index '0'
4938// :143:17: error: use of undefined value here causes illegal behavior
4939// :143:17: note: when computing vector element at index '1'
4940// :143:17: error: use of undefined value here causes illegal behavior
4941// :143:17: note: when computing vector element at index '0'
4942// :143:17: error: use of undefined value here causes illegal behavior
4943// :143:17: note: when computing vector element at index '0'
4944// :143:17: error: use of undefined value here causes illegal behavior
4945// :143:17: note: when computing vector element at index '0'
4946// :143:17: error: use of undefined value here causes illegal behavior
4947// :143:17: error: use of undefined value here causes illegal behavior
4948// :143:17: note: when computing vector element at index '0'
4949// :143:17: error: use of undefined value here causes illegal behavior
4950// :143:17: note: when computing vector element at index '0'
4951// :143:17: error: use of undefined value here causes illegal behavior
4952// :143:17: note: when computing vector element at index '0'
4953// :143:17: error: use of undefined value here causes illegal behavior
4954// :143:17: note: when computing vector element at index '1'
4955// :143:17: error: use of undefined value here causes illegal behavior
4956// :143:17: note: when computing vector element at index '0'
4957// :143:17: error: use of undefined value here causes illegal behavior
4958// :143:17: note: when computing vector element at index '0'
4959// :143:17: error: use of undefined value here causes illegal behavior
4960// :143:17: note: when computing vector element at index '0'
4961// :143:21: error: use of undefined value here causes illegal behavior
4962// :143:21: error: use of undefined value here causes illegal behavior
4963// :143:21: note: when computing vector element at index '0'
4964// :143:21: error: use of undefined value here causes illegal behavior
4965// :143:21: note: when computing vector element at index '0'
4966// :143:21: error: use of undefined value here causes illegal behavior
4967// :143:21: note: when computing vector element at index '1'
4968// :143:21: error: use of undefined value here causes illegal behavior
4969// :143:21: note: when computing vector element at index '0'
4970// :143:21: error: use of undefined value here causes illegal behavior
4971// :143:21: note: when computing vector element at index '0'
4972// :143:21: error: use of undefined value here causes illegal behavior
4973// :143:21: error: use of undefined value here causes illegal behavior
4974// :143:21: note: when computing vector element at index '0'
4975// :143:21: error: use of undefined value here causes illegal behavior
4976// :143:21: note: when computing vector element at index '0'
4977// :143:21: error: use of undefined value here causes illegal behavior
4978// :143:21: note: when computing vector element at index '1'
4979// :143:21: error: use of undefined value here causes illegal behavior
4980// :143:21: note: when computing vector element at index '0'
4981// :143:21: error: use of undefined value here causes illegal behavior
4982// :143:21: note: when computing vector element at index '0'
4983// :143:21: error: use of undefined value here causes illegal behavior
4984// :143:21: error: use of undefined value here causes illegal behavior
4985// :143:21: note: when computing vector element at index '0'
4986// :143:21: error: use of undefined value here causes illegal behavior
4987// :143:21: note: when computing vector element at index '0'
4988// :143:21: error: use of undefined value here causes illegal behavior
4989// :143:21: note: when computing vector element at index '1'
4990// :143:21: error: use of undefined value here causes illegal behavior
4991// :143:21: note: when computing vector element at index '0'
4992// :143:21: error: use of undefined value here causes illegal behavior
4993// :143:21: note: when computing vector element at index '0'
4994// :143:21: error: use of undefined value here causes illegal behavior
4995// :143:21: error: use of undefined value here causes illegal behavior
4996// :143:21: note: when computing vector element at index '0'
4997// :143:21: error: use of undefined value here causes illegal behavior
4998// :143:21: note: when computing vector element at index '0'
4999// :143:21: error: use of undefined value here causes illegal behavior
5000// :143:21: note: when computing vector element at index '1'
5001// :143:21: error: use of undefined value here causes illegal behavior
5002// :143:21: note: when computing vector element at index '0'
5003// :143:21: error: use of undefined value here causes illegal behavior
5004// :143:21: note: when computing vector element at index '0'
5005// :143:21: error: use of undefined value here causes illegal behavior
5006// :143:21: error: use of undefined value here causes illegal behavior
5007// :143:21: note: when computing vector element at index '0'
5008// :143:21: error: use of undefined value here causes illegal behavior
5009// :143:21: note: when computing vector element at index '0'
5010// :143:21: error: use of undefined value here causes illegal behavior
5011// :143:21: note: when computing vector element at index '1'
5012// :143:21: error: use of undefined value here causes illegal behavior
5013// :143:21: note: when computing vector element at index '0'
5014// :143:21: error: use of undefined value here causes illegal behavior
5015// :143:21: note: when computing vector element at index '0'
5016// :143:21: error: use of undefined value here causes illegal behavior
5017// :143:21: error: use of undefined value here causes illegal behavior
5018// :143:21: note: when computing vector element at index '0'
5019// :143:21: error: use of undefined value here causes illegal behavior
5020// :143:21: note: when computing vector element at index '0'
5021// :143:21: error: use of undefined value here causes illegal behavior
5022// :143:21: note: when computing vector element at index '1'
5023// :143:21: error: use of undefined value here causes illegal behavior
5024// :143:21: note: when computing vector element at index '0'
5025// :143:21: error: use of undefined value here causes illegal behavior
5026// :143:21: note: when computing vector element at index '0'
5027// :143:21: error: use of undefined value here causes illegal behavior
5028// :143:21: error: use of undefined value here causes illegal behavior
5029// :143:21: note: when computing vector element at index '0'
5030// :143:21: error: use of undefined value here causes illegal behavior
5031// :143:21: note: when computing vector element at index '0'
5032// :143:21: error: use of undefined value here causes illegal behavior
5033// :143:21: note: when computing vector element at index '1'
5034// :143:21: error: use of undefined value here causes illegal behavior
5035// :143:21: note: when computing vector element at index '0'
5036// :143:21: error: use of undefined value here causes illegal behavior
5037// :143:21: note: when computing vector element at index '0'
5038// :143:21: error: use of undefined value here causes illegal behavior
5039// :143:21: error: use of undefined value here causes illegal behavior
5040// :143:21: note: when computing vector element at index '0'
5041// :143:21: error: use of undefined value here causes illegal behavior
5042// :143:21: note: when computing vector element at index '0'
5043// :143:21: error: use of undefined value here causes illegal behavior
5044// :143:21: note: when computing vector element at index '1'
5045// :143:21: error: use of undefined value here causes illegal behavior
5046// :143:21: note: when computing vector element at index '0'
5047// :143:21: error: use of undefined value here causes illegal behavior
5048// :143:21: note: when computing vector element at index '0'
5049// :143:21: error: use of undefined value here causes illegal behavior
5050// :143:21: error: use of undefined value here causes illegal behavior
5051// :143:21: note: when computing vector element at index '0'
5052// :143:21: error: use of undefined value here causes illegal behavior
5053// :143:21: note: when computing vector element at index '0'
5054// :143:21: error: use of undefined value here causes illegal behavior
5055// :143:21: note: when computing vector element at index '1'
5056// :143:21: error: use of undefined value here causes illegal behavior
5057// :143:21: note: when computing vector element at index '0'
5058// :143:21: error: use of undefined value here causes illegal behavior
5059// :143:21: note: when computing vector element at index '0'
5060// :143:21: error: use of undefined value here causes illegal behavior
5061// :143:21: error: use of undefined value here causes illegal behavior
5062// :143:21: note: when computing vector element at index '0'
5063// :143:21: error: use of undefined value here causes illegal behavior
5064// :143:21: note: when computing vector element at index '0'
5065// :143:21: error: use of undefined value here causes illegal behavior
5066// :143:21: note: when computing vector element at index '1'
5067// :143:21: error: use of undefined value here causes illegal behavior
5068// :143:21: note: when computing vector element at index '0'
5069// :143:21: error: use of undefined value here causes illegal behavior
5070// :143:21: note: when computing vector element at index '0'
5071// :143:21: error: use of undefined value here causes illegal behavior
5072// :143:21: error: use of undefined value here causes illegal behavior
5073// :143:21: note: when computing vector element at index '0'
5074// :143:21: error: use of undefined value here causes illegal behavior
5075// :143:21: note: when computing vector element at index '0'
5076// :143:21: error: use of undefined value here causes illegal behavior
5077// :143:21: note: when computing vector element at index '1'
5078// :143:21: error: use of undefined value here causes illegal behavior
5079// :143:21: note: when computing vector element at index '0'
5080// :143:21: error: use of undefined value here causes illegal behavior
5081// :143:21: note: when computing vector element at index '0'
5082// :147:22: error: use of undefined value here causes illegal behavior
5083// :147:22: error: use of undefined value here causes illegal behavior
5084// :147:22: note: when computing vector element at index '0'
5085// :147:22: error: use of undefined value here causes illegal behavior
5086// :147:22: note: when computing vector element at index '0'
5087// :147:22: error: use of undefined value here causes illegal behavior
5088// :147:22: note: when computing vector element at index '0'
5089// :147:22: error: use of undefined value here causes illegal behavior
5090// :147:22: note: when computing vector element at index '1'
5091// :147:22: error: use of undefined value here causes illegal behavior
5092// :147:22: note: when computing vector element at index '0'
5093// :147:22: error: use of undefined value here causes illegal behavior
5094// :147:22: note: when computing vector element at index '0'
5095// :147:22: error: use of undefined value here causes illegal behavior
5096// :147:22: note: when computing vector element at index '0'
5097// :147:22: error: use of undefined value here causes illegal behavior
5098// :147:22: error: use of undefined value here causes illegal behavior
5099// :147:22: note: when computing vector element at index '0'
5100// :147:22: error: use of undefined value here causes illegal behavior
5101// :147:22: note: when computing vector element at index '0'
5102// :147:22: error: use of undefined value here causes illegal behavior
5103// :147:22: note: when computing vector element at index '0'
5104// :147:22: error: use of undefined value here causes illegal behavior
5105// :147:22: note: when computing vector element at index '1'
5106// :147:22: error: use of undefined value here causes illegal behavior
5107// :147:22: note: when computing vector element at index '0'
5108// :147:22: error: use of undefined value here causes illegal behavior
5109// :147:22: note: when computing vector element at index '0'
5110// :147:22: error: use of undefined value here causes illegal behavior
5111// :147:22: note: when computing vector element at index '0'
5112// :147:22: error: use of undefined value here causes illegal behavior
5113// :147:22: error: use of undefined value here causes illegal behavior
5114// :147:22: note: when computing vector element at index '0'
5115// :147:22: error: use of undefined value here causes illegal behavior
5116// :147:22: note: when computing vector element at index '0'
5117// :147:22: error: use of undefined value here causes illegal behavior
5118// :147:22: note: when computing vector element at index '0'
5119// :147:22: error: use of undefined value here causes illegal behavior
5120// :147:22: note: when computing vector element at index '1'
5121// :147:22: error: use of undefined value here causes illegal behavior
5122// :147:22: note: when computing vector element at index '0'
5123// :147:22: error: use of undefined value here causes illegal behavior
5124// :147:22: note: when computing vector element at index '0'
5125// :147:22: error: use of undefined value here causes illegal behavior
5126// :147:22: note: when computing vector element at index '0'
5127// :147:22: error: use of undefined value here causes illegal behavior
5128// :147:22: error: use of undefined value here causes illegal behavior
5129// :147:22: note: when computing vector element at index '0'
5130// :147:22: error: use of undefined value here causes illegal behavior
5131// :147:22: note: when computing vector element at index '0'
5132// :147:22: error: use of undefined value here causes illegal behavior
5133// :147:22: note: when computing vector element at index '0'
5134// :147:22: error: use of undefined value here causes illegal behavior
5135// :147:22: note: when computing vector element at index '1'
5136// :147:22: error: use of undefined value here causes illegal behavior
5137// :147:22: note: when computing vector element at index '0'
5138// :147:22: error: use of undefined value here causes illegal behavior
5139// :147:22: note: when computing vector element at index '0'
5140// :147:22: error: use of undefined value here causes illegal behavior
5141// :147:22: note: when computing vector element at index '0'
5142// :147:22: error: use of undefined value here causes illegal behavior
5143// :147:22: error: use of undefined value here causes illegal behavior
5144// :147:22: note: when computing vector element at index '0'
5145// :147:22: error: use of undefined value here causes illegal behavior
5146// :147:22: note: when computing vector element at index '0'
5147// :147:22: error: use of undefined value here causes illegal behavior
5148// :147:22: note: when computing vector element at index '0'
5149// :147:22: error: use of undefined value here causes illegal behavior
5150// :147:22: note: when computing vector element at index '1'
5151// :147:22: error: use of undefined value here causes illegal behavior
5152// :147:22: note: when computing vector element at index '0'
5153// :147:22: error: use of undefined value here causes illegal behavior
5154// :147:22: note: when computing vector element at index '0'
5155// :147:22: error: use of undefined value here causes illegal behavior
5156// :147:22: note: when computing vector element at index '0'
5157// :147:22: error: use of undefined value here causes illegal behavior
5158// :147:22: error: use of undefined value here causes illegal behavior
5159// :147:22: note: when computing vector element at index '0'
5160// :147:22: error: use of undefined value here causes illegal behavior
5161// :147:22: note: when computing vector element at index '0'
5162// :147:22: error: use of undefined value here causes illegal behavior
5163// :147:22: note: when computing vector element at index '0'
5164// :147:22: error: use of undefined value here causes illegal behavior
5165// :147:22: note: when computing vector element at index '1'
5166// :147:22: error: use of undefined value here causes illegal behavior
5167// :147:22: note: when computing vector element at index '0'
5168// :147:22: error: use of undefined value here causes illegal behavior
5169// :147:22: note: when computing vector element at index '0'
5170// :147:22: error: use of undefined value here causes illegal behavior
5171// :147:22: note: when computing vector element at index '0'
5172// :147:22: error: use of undefined value here causes illegal behavior
5173// :147:22: error: use of undefined value here causes illegal behavior
5174// :147:22: note: when computing vector element at index '0'
5175// :147:22: error: use of undefined value here causes illegal behavior
5176// :147:22: note: when computing vector element at index '0'
5177// :147:22: error: use of undefined value here causes illegal behavior
5178// :147:22: note: when computing vector element at index '0'
5179// :147:22: error: use of undefined value here causes illegal behavior
5180// :147:22: note: when computing vector element at index '1'
5181// :147:22: error: use of undefined value here causes illegal behavior
5182// :147:22: note: when computing vector element at index '0'
5183// :147:22: error: use of undefined value here causes illegal behavior
5184// :147:22: note: when computing vector element at index '0'
5185// :147:22: error: use of undefined value here causes illegal behavior
5186// :147:22: note: when computing vector element at index '0'
5187// :147:22: error: use of undefined value here causes illegal behavior
5188// :147:22: error: use of undefined value here causes illegal behavior
5189// :147:22: note: when computing vector element at index '0'
5190// :147:22: error: use of undefined value here causes illegal behavior
5191// :147:22: note: when computing vector element at index '0'
5192// :147:22: error: use of undefined value here causes illegal behavior
5193// :147:22: note: when computing vector element at index '0'
5194// :147:22: error: use of undefined value here causes illegal behavior
5195// :147:22: note: when computing vector element at index '1'
5196// :147:22: error: use of undefined value here causes illegal behavior
5197// :147:22: note: when computing vector element at index '0'
5198// :147:22: error: use of undefined value here causes illegal behavior
5199// :147:22: note: when computing vector element at index '0'
5200// :147:22: error: use of undefined value here causes illegal behavior
5201// :147:22: note: when computing vector element at index '0'
5202// :147:22: error: use of undefined value here causes illegal behavior
5203// :147:22: error: use of undefined value here causes illegal behavior
5204// :147:22: note: when computing vector element at index '0'
5205// :147:22: error: use of undefined value here causes illegal behavior
5206// :147:22: note: when computing vector element at index '0'
5207// :147:22: error: use of undefined value here causes illegal behavior
5208// :147:22: note: when computing vector element at index '0'
5209// :147:22: error: use of undefined value here causes illegal behavior
5210// :147:22: note: when computing vector element at index '1'
5211// :147:22: error: use of undefined value here causes illegal behavior
5212// :147:22: note: when computing vector element at index '0'
5213// :147:22: error: use of undefined value here causes illegal behavior
5214// :147:22: note: when computing vector element at index '0'
5215// :147:22: error: use of undefined value here causes illegal behavior
5216// :147:22: note: when computing vector element at index '0'
5217// :147:22: error: use of undefined value here causes illegal behavior
5218// :147:22: error: use of undefined value here causes illegal behavior
5219// :147:22: note: when computing vector element at index '0'
5220// :147:22: error: use of undefined value here causes illegal behavior
5221// :147:22: note: when computing vector element at index '0'
5222// :147:22: error: use of undefined value here causes illegal behavior
5223// :147:22: note: when computing vector element at index '0'
5224// :147:22: error: use of undefined value here causes illegal behavior
5225// :147:22: note: when computing vector element at index '1'
5226// :147:22: error: use of undefined value here causes illegal behavior
5227// :147:22: note: when computing vector element at index '0'
5228// :147:22: error: use of undefined value here causes illegal behavior
5229// :147:22: note: when computing vector element at index '0'
5230// :147:22: error: use of undefined value here causes illegal behavior
5231// :147:22: note: when computing vector element at index '0'
5232// :147:22: error: use of undefined value here causes illegal behavior
5233// :147:22: error: use of undefined value here causes illegal behavior
5234// :147:22: note: when computing vector element at index '0'
5235// :147:22: error: use of undefined value here causes illegal behavior
5236// :147:22: note: when computing vector element at index '0'
5237// :147:22: error: use of undefined value here causes illegal behavior
5238// :147:22: note: when computing vector element at index '0'
5239// :147:22: error: use of undefined value here causes illegal behavior
5240// :147:22: note: when computing vector element at index '1'
5241// :147:22: error: use of undefined value here causes illegal behavior
5242// :147:22: note: when computing vector element at index '0'
5243// :147:22: error: use of undefined value here causes illegal behavior
5244// :147:22: note: when computing vector element at index '0'
5245// :147:22: error: use of undefined value here causes illegal behavior
5246// :147:22: note: when computing vector element at index '0'
5247// :147:25: error: use of undefined value here causes illegal behavior
5248// :147:25: error: use of undefined value here causes illegal behavior
5249// :147:25: note: when computing vector element at index '0'
5250// :147:25: error: use of undefined value here causes illegal behavior
5251// :147:25: note: when computing vector element at index '0'
5252// :147:25: error: use of undefined value here causes illegal behavior
5253// :147:25: note: when computing vector element at index '1'
5254// :147:25: error: use of undefined value here causes illegal behavior
5255// :147:25: note: when computing vector element at index '0'
5256// :147:25: error: use of undefined value here causes illegal behavior
5257// :147:25: note: when computing vector element at index '0'
5258// :147:25: error: use of undefined value here causes illegal behavior
5259// :147:25: error: use of undefined value here causes illegal behavior
5260// :147:25: note: when computing vector element at index '0'
5261// :147:25: error: use of undefined value here causes illegal behavior
5262// :147:25: note: when computing vector element at index '0'
5263// :147:25: error: use of undefined value here causes illegal behavior
5264// :147:25: note: when computing vector element at index '1'
5265// :147:25: error: use of undefined value here causes illegal behavior
5266// :147:25: note: when computing vector element at index '0'
5267// :147:25: error: use of undefined value here causes illegal behavior
5268// :147:25: note: when computing vector element at index '0'
5269// :147:25: error: use of undefined value here causes illegal behavior
5270// :147:25: error: use of undefined value here causes illegal behavior
5271// :147:25: note: when computing vector element at index '0'
5272// :147:25: error: use of undefined value here causes illegal behavior
5273// :147:25: note: when computing vector element at index '0'
5274// :147:25: error: use of undefined value here causes illegal behavior
5275// :147:25: note: when computing vector element at index '1'
5276// :147:25: error: use of undefined value here causes illegal behavior
5277// :147:25: note: when computing vector element at index '0'
5278// :147:25: error: use of undefined value here causes illegal behavior
5279// :147:25: note: when computing vector element at index '0'
5280// :147:25: error: use of undefined value here causes illegal behavior
5281// :147:25: error: use of undefined value here causes illegal behavior
5282// :147:25: note: when computing vector element at index '0'
5283// :147:25: error: use of undefined value here causes illegal behavior
5284// :147:25: note: when computing vector element at index '0'
5285// :147:25: error: use of undefined value here causes illegal behavior
5286// :147:25: note: when computing vector element at index '1'
5287// :147:25: error: use of undefined value here causes illegal behavior
5288// :147:25: note: when computing vector element at index '0'
5289// :147:25: error: use of undefined value here causes illegal behavior
5290// :147:25: note: when computing vector element at index '0'
5291// :147:25: error: use of undefined value here causes illegal behavior
5292// :147:25: error: use of undefined value here causes illegal behavior
5293// :147:25: note: when computing vector element at index '0'
5294// :147:25: error: use of undefined value here causes illegal behavior
5295// :147:25: note: when computing vector element at index '0'
5296// :147:25: error: use of undefined value here causes illegal behavior
5297// :147:25: note: when computing vector element at index '1'
5298// :147:25: error: use of undefined value here causes illegal behavior
5299// :147:25: note: when computing vector element at index '0'
5300// :147:25: error: use of undefined value here causes illegal behavior
5301// :147:25: note: when computing vector element at index '0'
5302// :147:25: error: use of undefined value here causes illegal behavior
5303// :147:25: error: use of undefined value here causes illegal behavior
5304// :147:25: note: when computing vector element at index '0'
5305// :147:25: error: use of undefined value here causes illegal behavior
5306// :147:25: note: when computing vector element at index '0'
5307// :147:25: error: use of undefined value here causes illegal behavior
5308// :147:25: note: when computing vector element at index '1'
5309// :147:25: error: use of undefined value here causes illegal behavior
5310// :147:25: note: when computing vector element at index '0'
5311// :147:25: error: use of undefined value here causes illegal behavior
5312// :147:25: note: when computing vector element at index '0'
5313// :147:25: error: use of undefined value here causes illegal behavior
5314// :147:25: error: use of undefined value here causes illegal behavior
5315// :147:25: note: when computing vector element at index '0'
5316// :147:25: error: use of undefined value here causes illegal behavior
5317// :147:25: note: when computing vector element at index '0'
5318// :147:25: error: use of undefined value here causes illegal behavior
5319// :147:25: note: when computing vector element at index '1'
5320// :147:25: error: use of undefined value here causes illegal behavior
5321// :147:25: note: when computing vector element at index '0'
5322// :147:25: error: use of undefined value here causes illegal behavior
5323// :147:25: note: when computing vector element at index '0'
5324// :147:25: error: use of undefined value here causes illegal behavior
5325// :147:25: error: use of undefined value here causes illegal behavior
5326// :147:25: note: when computing vector element at index '0'
5327// :147:25: error: use of undefined value here causes illegal behavior
5328// :147:25: note: when computing vector element at index '0'
5329// :147:25: error: use of undefined value here causes illegal behavior
5330// :147:25: note: when computing vector element at index '1'
5331// :147:25: error: use of undefined value here causes illegal behavior
5332// :147:25: note: when computing vector element at index '0'
5333// :147:25: error: use of undefined value here causes illegal behavior
5334// :147:25: note: when computing vector element at index '0'
5335// :147:25: error: use of undefined value here causes illegal behavior
5336// :147:25: error: use of undefined value here causes illegal behavior
5337// :147:25: note: when computing vector element at index '0'
5338// :147:25: error: use of undefined value here causes illegal behavior
5339// :147:25: note: when computing vector element at index '0'
5340// :147:25: error: use of undefined value here causes illegal behavior
5341// :147:25: note: when computing vector element at index '1'
5342// :147:25: error: use of undefined value here causes illegal behavior
5343// :147:25: note: when computing vector element at index '0'
5344// :147:25: error: use of undefined value here causes illegal behavior
5345// :147:25: note: when computing vector element at index '0'
5346// :147:25: error: use of undefined value here causes illegal behavior
5347// :147:25: error: use of undefined value here causes illegal behavior
5348// :147:25: note: when computing vector element at index '0'
5349// :147:25: error: use of undefined value here causes illegal behavior
5350// :147:25: note: when computing vector element at index '0'
5351// :147:25: error: use of undefined value here causes illegal behavior
5352// :147:25: note: when computing vector element at index '1'
5353// :147:25: error: use of undefined value here causes illegal behavior
5354// :147:25: note: when computing vector element at index '0'
5355// :147:25: error: use of undefined value here causes illegal behavior
5356// :147:25: note: when computing vector element at index '0'
5357// :147:25: error: use of undefined value here causes illegal behavior
5358// :147:25: error: use of undefined value here causes illegal behavior
5359// :147:25: note: when computing vector element at index '0'
5360// :147:25: error: use of undefined value here causes illegal behavior
5361// :147:25: note: when computing vector element at index '0'
5362// :147:25: error: use of undefined value here causes illegal behavior
5363// :147:25: note: when computing vector element at index '1'
5364// :147:25: error: use of undefined value here causes illegal behavior
5365// :147:25: note: when computing vector element at index '0'
5366// :147:25: error: use of undefined value here causes illegal behavior
5367// :147:25: note: when computing vector element at index '0'
5368// :151:22: error: use of undefined value here causes illegal behavior
5369// :151:22: error: use of undefined value here causes illegal behavior
5370// :151:22: note: when computing vector element at index '0'
5371// :151:22: error: use of undefined value here causes illegal behavior
5372// :151:22: note: when computing vector element at index '0'
5373// :151:22: error: use of undefined value here causes illegal behavior
5374// :151:22: note: when computing vector element at index '0'
5375// :151:22: error: use of undefined value here causes illegal behavior
5376// :151:22: note: when computing vector element at index '1'
5377// :151:22: error: use of undefined value here causes illegal behavior
5378// :151:22: note: when computing vector element at index '0'
5379// :151:22: error: use of undefined value here causes illegal behavior
5380// :151:22: note: when computing vector element at index '0'
5381// :151:22: error: use of undefined value here causes illegal behavior
5382// :151:22: note: when computing vector element at index '0'
5383// :151:22: error: use of undefined value here causes illegal behavior
5384// :151:22: error: use of undefined value here causes illegal behavior
5385// :151:22: note: when computing vector element at index '0'
5386// :151:22: error: use of undefined value here causes illegal behavior
5387// :151:22: note: when computing vector element at index '0'
5388// :151:22: error: use of undefined value here causes illegal behavior
5389// :151:22: note: when computing vector element at index '0'
5390// :151:22: error: use of undefined value here causes illegal behavior
5391// :151:22: note: when computing vector element at index '1'
5392// :151:22: error: use of undefined value here causes illegal behavior
5393// :151:22: note: when computing vector element at index '0'
5394// :151:22: error: use of undefined value here causes illegal behavior
5395// :151:22: note: when computing vector element at index '0'
5396// :151:22: error: use of undefined value here causes illegal behavior
5397// :151:22: note: when computing vector element at index '0'
5398// :151:22: error: use of undefined value here causes illegal behavior
5399// :151:22: error: use of undefined value here causes illegal behavior
5400// :151:22: note: when computing vector element at index '0'
5401// :151:22: error: use of undefined value here causes illegal behavior
5402// :151:22: note: when computing vector element at index '0'
5403// :151:22: error: use of undefined value here causes illegal behavior
5404// :151:22: note: when computing vector element at index '0'
5405// :151:22: error: use of undefined value here causes illegal behavior
5406// :151:22: note: when computing vector element at index '1'
5407// :151:22: error: use of undefined value here causes illegal behavior
5408// :151:22: note: when computing vector element at index '0'
5409// :151:22: error: use of undefined value here causes illegal behavior
5410// :151:22: note: when computing vector element at index '0'
5411// :151:22: error: use of undefined value here causes illegal behavior
5412// :151:22: note: when computing vector element at index '0'
5413// :151:22: error: use of undefined value here causes illegal behavior
5414// :151:22: error: use of undefined value here causes illegal behavior
5415// :151:22: note: when computing vector element at index '0'
5416// :151:22: error: use of undefined value here causes illegal behavior
5417// :151:22: note: when computing vector element at index '0'
5418// :151:22: error: use of undefined value here causes illegal behavior
5419// :151:22: note: when computing vector element at index '0'
5420// :151:22: error: use of undefined value here causes illegal behavior
5421// :151:22: note: when computing vector element at index '1'
5422// :151:22: error: use of undefined value here causes illegal behavior
5423// :151:22: note: when computing vector element at index '0'
5424// :151:22: error: use of undefined value here causes illegal behavior
5425// :151:22: note: when computing vector element at index '0'
5426// :151:22: error: use of undefined value here causes illegal behavior
5427// :151:22: note: when computing vector element at index '0'
5428// :151:22: error: use of undefined value here causes illegal behavior
5429// :151:22: error: use of undefined value here causes illegal behavior
5430// :151:22: note: when computing vector element at index '0'
5431// :151:22: error: use of undefined value here causes illegal behavior
5432// :151:22: note: when computing vector element at index '0'
5433// :151:22: error: use of undefined value here causes illegal behavior
5434// :151:22: note: when computing vector element at index '0'
5435// :151:22: error: use of undefined value here causes illegal behavior
5436// :151:22: note: when computing vector element at index '1'
5437// :151:22: error: use of undefined value here causes illegal behavior
5438// :151:22: note: when computing vector element at index '0'
5439// :151:22: error: use of undefined value here causes illegal behavior
5440// :151:22: note: when computing vector element at index '0'
5441// :151:22: error: use of undefined value here causes illegal behavior
5442// :151:22: note: when computing vector element at index '0'
5443// :151:22: error: use of undefined value here causes illegal behavior
5444// :151:22: error: use of undefined value here causes illegal behavior
5445// :151:22: note: when computing vector element at index '0'
5446// :151:22: error: use of undefined value here causes illegal behavior
5447// :151:22: note: when computing vector element at index '0'
5448// :151:22: error: use of undefined value here causes illegal behavior
5449// :151:22: note: when computing vector element at index '0'
5450// :151:22: error: use of undefined value here causes illegal behavior
5451// :151:22: note: when computing vector element at index '1'
5452// :151:22: error: use of undefined value here causes illegal behavior
5453// :151:22: note: when computing vector element at index '0'
5454// :151:22: error: use of undefined value here causes illegal behavior
5455// :151:22: note: when computing vector element at index '0'
5456// :151:22: error: use of undefined value here causes illegal behavior
5457// :151:22: note: when computing vector element at index '0'
5458// :151:22: error: use of undefined value here causes illegal behavior
5459// :151:22: error: use of undefined value here causes illegal behavior
5460// :151:22: note: when computing vector element at index '0'
5461// :151:22: error: use of undefined value here causes illegal behavior
5462// :151:22: note: when computing vector element at index '0'
5463// :151:22: error: use of undefined value here causes illegal behavior
5464// :151:22: note: when computing vector element at index '0'
5465// :151:22: error: use of undefined value here causes illegal behavior
5466// :151:22: note: when computing vector element at index '1'
5467// :151:22: error: use of undefined value here causes illegal behavior
5468// :151:22: note: when computing vector element at index '0'
5469// :151:22: error: use of undefined value here causes illegal behavior
5470// :151:22: note: when computing vector element at index '0'
5471// :151:22: error: use of undefined value here causes illegal behavior
5472// :151:22: note: when computing vector element at index '0'
5473// :151:22: error: use of undefined value here causes illegal behavior
5474// :151:22: error: use of undefined value here causes illegal behavior
5475// :151:22: note: when computing vector element at index '0'
5476// :151:22: error: use of undefined value here causes illegal behavior
5477// :151:22: note: when computing vector element at index '0'
5478// :151:22: error: use of undefined value here causes illegal behavior
5479// :151:22: note: when computing vector element at index '0'
5480// :151:22: error: use of undefined value here causes illegal behavior
5481// :151:22: note: when computing vector element at index '1'
5482// :151:22: error: use of undefined value here causes illegal behavior
5483// :151:22: note: when computing vector element at index '0'
5484// :151:22: error: use of undefined value here causes illegal behavior
5485// :151:22: note: when computing vector element at index '0'
5486// :151:22: error: use of undefined value here causes illegal behavior
5487// :151:22: note: when computing vector element at index '0'
5488// :151:22: error: use of undefined value here causes illegal behavior
5489// :151:22: error: use of undefined value here causes illegal behavior
5490// :151:22: note: when computing vector element at index '0'
5491// :151:22: error: use of undefined value here causes illegal behavior
5492// :151:22: note: when computing vector element at index '0'
5493// :151:22: error: use of undefined value here causes illegal behavior
5494// :151:22: note: when computing vector element at index '0'
5495// :151:22: error: use of undefined value here causes illegal behavior
5496// :151:22: note: when computing vector element at index '1'
5497// :151:22: error: use of undefined value here causes illegal behavior
5498// :151:22: note: when computing vector element at index '0'
5499// :151:22: error: use of undefined value here causes illegal behavior
5500// :151:22: note: when computing vector element at index '0'
5501// :151:22: error: use of undefined value here causes illegal behavior
5502// :151:22: note: when computing vector element at index '0'
5503// :151:22: error: use of undefined value here causes illegal behavior
5504// :151:22: error: use of undefined value here causes illegal behavior
5505// :151:22: note: when computing vector element at index '0'
5506// :151:22: error: use of undefined value here causes illegal behavior
5507// :151:22: note: when computing vector element at index '0'
5508// :151:22: error: use of undefined value here causes illegal behavior
5509// :151:22: note: when computing vector element at index '0'
5510// :151:22: error: use of undefined value here causes illegal behavior
5511// :151:22: note: when computing vector element at index '1'
5512// :151:22: error: use of undefined value here causes illegal behavior
5513// :151:22: note: when computing vector element at index '0'
5514// :151:22: error: use of undefined value here causes illegal behavior
5515// :151:22: note: when computing vector element at index '0'
5516// :151:22: error: use of undefined value here causes illegal behavior
5517// :151:22: note: when computing vector element at index '0'
5518// :151:22: error: use of undefined value here causes illegal behavior
5519// :151:22: error: use of undefined value here causes illegal behavior
5520// :151:22: note: when computing vector element at index '0'
5521// :151:22: error: use of undefined value here causes illegal behavior
5522// :151:22: note: when computing vector element at index '0'
5523// :151:22: error: use of undefined value here causes illegal behavior
5524// :151:22: note: when computing vector element at index '0'
5525// :151:22: error: use of undefined value here causes illegal behavior
5526// :151:22: note: when computing vector element at index '1'
5527// :151:22: error: use of undefined value here causes illegal behavior
5528// :151:22: note: when computing vector element at index '0'
5529// :151:22: error: use of undefined value here causes illegal behavior
5530// :151:22: note: when computing vector element at index '0'
5531// :151:22: error: use of undefined value here causes illegal behavior
5532// :151:22: note: when computing vector element at index '0'
5533// :151:25: error: use of undefined value here causes illegal behavior
5534// :151:25: error: use of undefined value here causes illegal behavior
5535// :151:25: note: when computing vector element at index '0'
5536// :151:25: error: use of undefined value here causes illegal behavior
5537// :151:25: note: when computing vector element at index '0'
5538// :151:25: error: use of undefined value here causes illegal behavior
5539// :151:25: note: when computing vector element at index '1'
5540// :151:25: error: use of undefined value here causes illegal behavior
5541// :151:25: note: when computing vector element at index '0'
5542// :151:25: error: use of undefined value here causes illegal behavior
5543// :151:25: note: when computing vector element at index '0'
5544// :151:25: error: use of undefined value here causes illegal behavior
5545// :151:25: error: use of undefined value here causes illegal behavior
5546// :151:25: note: when computing vector element at index '0'
5547// :151:25: error: use of undefined value here causes illegal behavior
5548// :151:25: note: when computing vector element at index '0'
5549// :151:25: error: use of undefined value here causes illegal behavior
5550// :151:25: note: when computing vector element at index '1'
5551// :151:25: error: use of undefined value here causes illegal behavior
5552// :151:25: note: when computing vector element at index '0'
5553// :151:25: error: use of undefined value here causes illegal behavior
5554// :151:25: note: when computing vector element at index '0'
5555// :151:25: error: use of undefined value here causes illegal behavior
5556// :151:25: error: use of undefined value here causes illegal behavior
5557// :151:25: note: when computing vector element at index '0'
5558// :151:25: error: use of undefined value here causes illegal behavior
5559// :151:25: note: when computing vector element at index '0'
5560// :151:25: error: use of undefined value here causes illegal behavior
5561// :151:25: note: when computing vector element at index '1'
5562// :151:25: error: use of undefined value here causes illegal behavior
5563// :151:25: note: when computing vector element at index '0'
5564// :151:25: error: use of undefined value here causes illegal behavior
5565// :151:25: note: when computing vector element at index '0'
5566// :151:25: error: use of undefined value here causes illegal behavior
5567// :151:25: error: use of undefined value here causes illegal behavior
5568// :151:25: note: when computing vector element at index '0'
5569// :151:25: error: use of undefined value here causes illegal behavior
5570// :151:25: note: when computing vector element at index '0'
5571// :151:25: error: use of undefined value here causes illegal behavior
5572// :151:25: note: when computing vector element at index '1'
5573// :151:25: error: use of undefined value here causes illegal behavior
5574// :151:25: note: when computing vector element at index '0'
5575// :151:25: error: use of undefined value here causes illegal behavior
5576// :151:25: note: when computing vector element at index '0'
5577// :151:25: error: use of undefined value here causes illegal behavior
5578// :151:25: error: use of undefined value here causes illegal behavior
5579// :151:25: note: when computing vector element at index '0'
5580// :151:25: error: use of undefined value here causes illegal behavior
5581// :151:25: note: when computing vector element at index '0'
5582// :151:25: error: use of undefined value here causes illegal behavior
5583// :151:25: note: when computing vector element at index '1'
5584// :151:25: error: use of undefined value here causes illegal behavior
5585// :151:25: note: when computing vector element at index '0'
5586// :151:25: error: use of undefined value here causes illegal behavior
5587// :151:25: note: when computing vector element at index '0'
5588// :151:25: error: use of undefined value here causes illegal behavior
5589// :151:25: error: use of undefined value here causes illegal behavior
5590// :151:25: note: when computing vector element at index '0'
5591// :151:25: error: use of undefined value here causes illegal behavior
5592// :151:25: note: when computing vector element at index '0'
5593// :151:25: error: use of undefined value here causes illegal behavior
5594// :151:25: note: when computing vector element at index '1'
5595// :151:25: error: use of undefined value here causes illegal behavior
5596// :151:25: note: when computing vector element at index '0'
5597// :151:25: error: use of undefined value here causes illegal behavior
5598// :151:25: note: when computing vector element at index '0'
5599// :151:25: error: use of undefined value here causes illegal behavior
5600// :151:25: error: use of undefined value here causes illegal behavior
5601// :151:25: note: when computing vector element at index '0'
5602// :151:25: error: use of undefined value here causes illegal behavior
5603// :151:25: note: when computing vector element at index '0'
5604// :151:25: error: use of undefined value here causes illegal behavior
5605// :151:25: note: when computing vector element at index '1'
5606// :151:25: error: use of undefined value here causes illegal behavior
5607// :151:25: note: when computing vector element at index '0'
5608// :151:25: error: use of undefined value here causes illegal behavior
5609// :151:25: note: when computing vector element at index '0'
5610// :151:25: error: use of undefined value here causes illegal behavior
5611// :151:25: error: use of undefined value here causes illegal behavior
5612// :151:25: note: when computing vector element at index '0'
5613// :151:25: error: use of undefined value here causes illegal behavior
5614// :151:25: note: when computing vector element at index '0'
5615// :151:25: error: use of undefined value here causes illegal behavior
5616// :151:25: note: when computing vector element at index '1'
5617// :151:25: error: use of undefined value here causes illegal behavior
5618// :151:25: note: when computing vector element at index '0'
5619// :151:25: error: use of undefined value here causes illegal behavior
5620// :151:25: note: when computing vector element at index '0'
5621// :151:25: error: use of undefined value here causes illegal behavior
5622// :151:25: error: use of undefined value here causes illegal behavior
5623// :151:25: note: when computing vector element at index '0'
5624// :151:25: error: use of undefined value here causes illegal behavior
5625// :151:25: note: when computing vector element at index '0'
5626// :151:25: error: use of undefined value here causes illegal behavior
5627// :151:25: note: when computing vector element at index '1'
5628// :151:25: error: use of undefined value here causes illegal behavior
5629// :151:25: note: when computing vector element at index '0'
5630// :151:25: error: use of undefined value here causes illegal behavior
5631// :151:25: note: when computing vector element at index '0'
5632// :151:25: error: use of undefined value here causes illegal behavior
5633// :151:25: error: use of undefined value here causes illegal behavior
5634// :151:25: note: when computing vector element at index '0'
5635// :151:25: error: use of undefined value here causes illegal behavior
5636// :151:25: note: when computing vector element at index '0'
5637// :151:25: error: use of undefined value here causes illegal behavior
5638// :151:25: note: when computing vector element at index '1'
5639// :151:25: error: use of undefined value here causes illegal behavior
5640// :151:25: note: when computing vector element at index '0'
5641// :151:25: error: use of undefined value here causes illegal behavior
5642// :151:25: note: when computing vector element at index '0'
5643// :151:25: error: use of undefined value here causes illegal behavior
5644// :151:25: error: use of undefined value here causes illegal behavior
5645// :151:25: note: when computing vector element at index '0'
5646// :151:25: error: use of undefined value here causes illegal behavior
5647// :151:25: note: when computing vector element at index '0'
5648// :151:25: error: use of undefined value here causes illegal behavior
5649// :151:25: note: when computing vector element at index '1'
5650// :151:25: error: use of undefined value here causes illegal behavior
5651// :151:25: note: when computing vector element at index '0'
5652// :151:25: error: use of undefined value here causes illegal behavior
5653// :151:25: note: when computing vector element at index '0'
5654// :157:21: error: use of undefined value here causes illegal behavior
5655// :157:21: error: use of undefined value here causes illegal behavior
5656// :157:21: error: use of undefined value here causes illegal behavior
5657// :157:21: error: use of undefined value here causes illegal behavior
5658// :157:21: error: use of undefined value here causes illegal behavior
5659// :157:21: error: use of undefined value here causes illegal behavior
5660// :157:21: error: use of undefined value here causes illegal behavior
5661// :157:21: note: when computing vector element at index '1'
5662// :157:21: error: use of undefined value here causes illegal behavior
5663// :157:21: note: when computing vector element at index '1'
5664// :157:21: error: use of undefined value here causes illegal behavior
5665// :157:21: note: when computing vector element at index '1'
5666// :157:21: error: use of undefined value here causes illegal behavior
5667// :157:21: note: when computing vector element at index '1'
5668// :157:21: error: use of undefined value here causes illegal behavior
5669// :157:21: note: when computing vector element at index '0'
5670// :157:21: error: use of undefined value here causes illegal behavior
5671// :157:21: note: when computing vector element at index '0'
5672// :157:21: error: use of undefined value here causes illegal behavior
5673// :157:21: note: when computing vector element at index '0'
5674// :157:21: error: use of undefined value here causes illegal behavior
5675// :157:21: note: when computing vector element at index '0'
5676// :157:21: error: use of undefined value here causes illegal behavior
5677// :157:21: error: use of undefined value here causes illegal behavior
5678// :157:21: error: use of undefined value here causes illegal behavior
5679// :157:21: error: use of undefined value here causes illegal behavior
5680// :157:21: error: use of undefined value here causes illegal behavior
5681// :157:21: error: use of undefined value here causes illegal behavior
5682// :157:21: error: use of undefined value here causes illegal behavior
5683// :157:21: note: when computing vector element at index '1'
5684// :157:21: error: use of undefined value here causes illegal behavior
5685// :157:21: note: when computing vector element at index '1'
5686// :157:21: error: use of undefined value here causes illegal behavior
5687// :157:21: note: when computing vector element at index '1'
5688// :157:21: error: use of undefined value here causes illegal behavior
5689// :157:21: note: when computing vector element at index '1'
5690// :157:21: error: use of undefined value here causes illegal behavior
5691// :157:21: note: when computing vector element at index '0'
5692// :157:21: error: use of undefined value here causes illegal behavior
5693// :157:21: note: when computing vector element at index '0'
5694// :157:21: error: use of undefined value here causes illegal behavior
5695// :157:21: note: when computing vector element at index '0'
5696// :157:21: error: use of undefined value here causes illegal behavior
5697// :157:21: note: when computing vector element at index '0'
5698// :157:21: error: use of undefined value here causes illegal behavior
5699// :157:21: error: use of undefined value here causes illegal behavior
5700// :157:21: error: use of undefined value here causes illegal behavior
5701// :157:21: error: use of undefined value here causes illegal behavior
5702// :157:21: error: use of undefined value here causes illegal behavior
5703// :157:21: error: use of undefined value here causes illegal behavior
5704// :157:21: error: use of undefined value here causes illegal behavior
5705// :157:21: note: when computing vector element at index '1'
5706// :157:21: error: use of undefined value here causes illegal behavior
5707// :157:21: note: when computing vector element at index '1'
5708// :157:21: error: use of undefined value here causes illegal behavior
5709// :157:21: note: when computing vector element at index '1'
5710// :157:21: error: use of undefined value here causes illegal behavior
5711// :157:21: note: when computing vector element at index '1'
5712// :157:21: error: use of undefined value here causes illegal behavior
5713// :157:21: note: when computing vector element at index '0'
5714// :157:21: error: use of undefined value here causes illegal behavior
5715// :157:21: note: when computing vector element at index '0'
5716// :157:21: error: use of undefined value here causes illegal behavior
5717// :157:21: note: when computing vector element at index '0'
5718// :157:21: error: use of undefined value here causes illegal behavior
5719// :157:21: note: when computing vector element at index '0'
5720// :157:21: error: use of undefined value here causes illegal behavior
5721// :157:21: error: use of undefined value here causes illegal behavior
5722// :157:21: error: use of undefined value here causes illegal behavior
5723// :157:21: error: use of undefined value here causes illegal behavior
5724// :157:21: error: use of undefined value here causes illegal behavior
5725// :157:21: error: use of undefined value here causes illegal behavior
5726// :157:21: error: use of undefined value here causes illegal behavior
5727// :157:21: note: when computing vector element at index '1'
5728// :157:21: error: use of undefined value here causes illegal behavior
5729// :157:21: note: when computing vector element at index '1'
5730// :157:21: error: use of undefined value here causes illegal behavior
5731// :157:21: note: when computing vector element at index '1'
5732// :157:21: error: use of undefined value here causes illegal behavior
5733// :157:21: note: when computing vector element at index '1'
5734// :157:21: error: use of undefined value here causes illegal behavior
5735// :157:21: note: when computing vector element at index '0'
5736// :157:21: error: use of undefined value here causes illegal behavior
5737// :157:21: note: when computing vector element at index '0'
5738// :157:21: error: use of undefined value here causes illegal behavior
5739// :157:21: note: when computing vector element at index '0'
5740// :157:21: error: use of undefined value here causes illegal behavior
5741// :157:21: note: when computing vector element at index '0'
5742// :157:21: error: use of undefined value here causes illegal behavior
5743// :157:21: error: use of undefined value here causes illegal behavior
5744// :157:21: error: use of undefined value here causes illegal behavior
5745// :157:21: error: use of undefined value here causes illegal behavior
5746// :157:21: error: use of undefined value here causes illegal behavior
5747// :157:21: error: use of undefined value here causes illegal behavior
5748// :157:21: error: use of undefined value here causes illegal behavior
5749// :157:21: note: when computing vector element at index '1'
5750// :157:21: error: use of undefined value here causes illegal behavior
5751// :157:21: note: when computing vector element at index '1'
5752// :157:21: error: use of undefined value here causes illegal behavior
5753// :157:21: note: when computing vector element at index '1'
5754// :157:21: error: use of undefined value here causes illegal behavior
5755// :157:21: note: when computing vector element at index '1'
5756// :157:21: error: use of undefined value here causes illegal behavior
5757// :157:21: note: when computing vector element at index '0'
5758// :157:21: error: use of undefined value here causes illegal behavior
5759// :157:21: note: when computing vector element at index '0'
5760// :157:21: error: use of undefined value here causes illegal behavior
5761// :157:21: note: when computing vector element at index '0'
5762// :157:21: error: use of undefined value here causes illegal behavior
5763// :157:21: note: when computing vector element at index '0'
5764// :157:21: error: use of undefined value here causes illegal behavior
5765// :157:21: error: use of undefined value here causes illegal behavior
5766// :157:21: error: use of undefined value here causes illegal behavior
5767// :157:21: error: use of undefined value here causes illegal behavior
5768// :157:21: error: use of undefined value here causes illegal behavior
5769// :157:21: error: use of undefined value here causes illegal behavior
5770// :157:21: error: use of undefined value here causes illegal behavior
5771// :157:21: note: when computing vector element at index '1'
5772// :157:21: error: use of undefined value here causes illegal behavior
5773// :157:21: note: when computing vector element at index '1'
5774// :157:21: error: use of undefined value here causes illegal behavior
5775// :157:21: note: when computing vector element at index '1'
5776// :157:21: error: use of undefined value here causes illegal behavior
5777// :157:21: note: when computing vector element at index '1'
5778// :157:21: error: use of undefined value here causes illegal behavior
5779// :157:21: note: when computing vector element at index '0'
5780// :157:21: error: use of undefined value here causes illegal behavior
5781// :157:21: note: when computing vector element at index '0'
5782// :157:21: error: use of undefined value here causes illegal behavior
5783// :157:21: note: when computing vector element at index '0'
5784// :157:21: error: use of undefined value here causes illegal behavior
5785// :157:21: note: when computing vector element at index '0'
5786// :157:21: error: use of undefined value here causes illegal behavior
5787// :157:21: error: use of undefined value here causes illegal behavior
5788// :157:21: error: use of undefined value here causes illegal behavior
5789// :157:21: error: use of undefined value here causes illegal behavior
5790// :157:21: error: use of undefined value here causes illegal behavior
5791// :157:21: error: use of undefined value here causes illegal behavior
5792// :157:21: error: use of undefined value here causes illegal behavior
5793// :157:21: note: when computing vector element at index '1'
5794// :157:21: error: use of undefined value here causes illegal behavior
5795// :157:21: note: when computing vector element at index '1'
5796// :157:21: error: use of undefined value here causes illegal behavior
5797// :157:21: note: when computing vector element at index '1'
5798// :157:21: error: use of undefined value here causes illegal behavior
5799// :157:21: note: when computing vector element at index '1'
5800// :157:21: error: use of undefined value here causes illegal behavior
5801// :157:21: note: when computing vector element at index '0'
5802// :157:21: error: use of undefined value here causes illegal behavior
5803// :157:21: note: when computing vector element at index '0'
5804// :157:21: error: use of undefined value here causes illegal behavior
5805// :157:21: note: when computing vector element at index '0'
5806// :157:21: error: use of undefined value here causes illegal behavior
5807// :157:21: note: when computing vector element at index '0'
5808// :157:21: error: use of undefined value here causes illegal behavior
5809// :157:21: error: use of undefined value here causes illegal behavior
5810// :157:21: error: use of undefined value here causes illegal behavior
5811// :157:21: error: use of undefined value here causes illegal behavior
5812// :157:21: error: use of undefined value here causes illegal behavior
5813// :157:21: error: use of undefined value here causes illegal behavior
5814// :157:21: error: use of undefined value here causes illegal behavior
5815// :157:21: note: when computing vector element at index '1'
5816// :157:21: error: use of undefined value here causes illegal behavior
5817// :157:21: note: when computing vector element at index '1'
5818// :157:21: error: use of undefined value here causes illegal behavior
5819// :157:21: note: when computing vector element at index '1'
5820// :157:21: error: use of undefined value here causes illegal behavior
5821// :157:21: note: when computing vector element at index '1'
5822// :157:21: error: use of undefined value here causes illegal behavior
5823// :157:21: note: when computing vector element at index '0'
5824// :157:21: error: use of undefined value here causes illegal behavior
5825// :157:21: note: when computing vector element at index '0'
5826// :157:21: error: use of undefined value here causes illegal behavior
5827// :157:21: note: when computing vector element at index '0'
5828// :157:21: error: use of undefined value here causes illegal behavior
5829// :157:21: note: when computing vector element at index '0'
5830// :157:21: error: use of undefined value here causes illegal behavior
5831// :157:21: error: use of undefined value here causes illegal behavior
5832// :157:21: error: use of undefined value here causes illegal behavior
5833// :157:21: error: use of undefined value here causes illegal behavior
5834// :157:21: error: use of undefined value here causes illegal behavior
5835// :157:21: error: use of undefined value here causes illegal behavior
5836// :157:21: error: use of undefined value here causes illegal behavior
5837// :157:21: note: when computing vector element at index '1'
5838// :157:21: error: use of undefined value here causes illegal behavior
5839// :157:21: note: when computing vector element at index '1'
5840// :157:21: error: use of undefined value here causes illegal behavior
5841// :157:21: note: when computing vector element at index '1'
5842// :157:21: error: use of undefined value here causes illegal behavior
5843// :157:21: note: when computing vector element at index '1'
5844// :157:21: error: use of undefined value here causes illegal behavior
5845// :157:21: note: when computing vector element at index '0'
5846// :157:21: error: use of undefined value here causes illegal behavior
5847// :157:21: note: when computing vector element at index '0'
5848// :157:21: error: use of undefined value here causes illegal behavior
5849// :157:21: note: when computing vector element at index '0'
5850// :157:21: error: use of undefined value here causes illegal behavior
5851// :157:21: note: when computing vector element at index '0'
5852// :157:21: error: use of undefined value here causes illegal behavior
5853// :157:21: error: use of undefined value here causes illegal behavior
5854// :157:21: error: use of undefined value here causes illegal behavior
5855// :157:21: error: use of undefined value here causes illegal behavior
5856// :157:21: error: use of undefined value here causes illegal behavior
5857// :157:21: error: use of undefined value here causes illegal behavior
5858// :157:21: error: use of undefined value here causes illegal behavior
5859// :157:21: note: when computing vector element at index '1'
5860// :157:21: error: use of undefined value here causes illegal behavior
5861// :157:21: note: when computing vector element at index '1'
5862// :157:21: error: use of undefined value here causes illegal behavior
5863// :157:21: note: when computing vector element at index '1'
5864// :157:21: error: use of undefined value here causes illegal behavior
5865// :157:21: note: when computing vector element at index '1'
5866// :157:21: error: use of undefined value here causes illegal behavior
5867// :157:21: note: when computing vector element at index '0'
5868// :157:21: error: use of undefined value here causes illegal behavior
5869// :157:21: note: when computing vector element at index '0'
5870// :157:21: error: use of undefined value here causes illegal behavior
5871// :157:21: note: when computing vector element at index '0'
5872// :157:21: error: use of undefined value here causes illegal behavior
5873// :157:21: note: when computing vector element at index '0'
5874// :157:21: error: use of undefined value here causes illegal behavior
5875// :157:21: error: use of undefined value here causes illegal behavior
5876// :157:21: error: use of undefined value here causes illegal behavior
5877// :157:21: error: use of undefined value here causes illegal behavior
5878// :157:21: error: use of undefined value here causes illegal behavior
5879// :157:21: error: use of undefined value here causes illegal behavior
5880// :157:21: error: use of undefined value here causes illegal behavior
5881// :157:21: note: when computing vector element at index '1'
5882// :157:21: error: use of undefined value here causes illegal behavior
5883// :157:21: note: when computing vector element at index '1'
5884// :157:21: error: use of undefined value here causes illegal behavior
5885// :157:21: note: when computing vector element at index '1'
5886// :157:21: error: use of undefined value here causes illegal behavior
5887// :157:21: note: when computing vector element at index '1'
5888// :157:21: error: use of undefined value here causes illegal behavior
5889// :157:21: note: when computing vector element at index '0'
5890// :157:21: error: use of undefined value here causes illegal behavior
5891// :157:21: note: when computing vector element at index '0'
5892// :157:21: error: use of undefined value here causes illegal behavior
5893// :157:21: note: when computing vector element at index '0'
5894// :157:21: error: use of undefined value here causes illegal behavior
5895// :157:21: note: when computing vector element at index '0'
5896// :161:30: error: use of undefined value here causes illegal behavior
5897// :161:30: error: use of undefined value here causes illegal behavior
5898// :161:30: error: use of undefined value here causes illegal behavior
5899// :161:30: error: use of undefined value here causes illegal behavior
5900// :161:30: error: use of undefined value here causes illegal behavior
5901// :161:30: error: use of undefined value here causes illegal behavior
5902// :161:30: error: use of undefined value here causes illegal behavior
5903// :161:30: note: when computing vector element at index '1'
5904// :161:30: error: use of undefined value here causes illegal behavior
5905// :161:30: note: when computing vector element at index '1'
5906// :161:30: error: use of undefined value here causes illegal behavior
5907// :161:30: note: when computing vector element at index '1'
5908// :161:30: error: use of undefined value here causes illegal behavior
5909// :161:30: note: when computing vector element at index '1'
5910// :161:30: error: use of undefined value here causes illegal behavior
5911// :161:30: note: when computing vector element at index '0'
5912// :161:30: error: use of undefined value here causes illegal behavior
5913// :161:30: note: when computing vector element at index '0'
5914// :161:30: error: use of undefined value here causes illegal behavior
5915// :161:30: note: when computing vector element at index '0'
5916// :161:30: error: use of undefined value here causes illegal behavior
5917// :161:30: note: when computing vector element at index '0'
5918// :161:30: error: use of undefined value here causes illegal behavior
5919// :161:30: error: use of undefined value here causes illegal behavior
5920// :161:30: error: use of undefined value here causes illegal behavior
5921// :161:30: error: use of undefined value here causes illegal behavior
5922// :161:30: error: use of undefined value here causes illegal behavior
5923// :161:30: error: use of undefined value here causes illegal behavior
5924// :161:30: error: use of undefined value here causes illegal behavior
5925// :161:30: note: when computing vector element at index '1'
5926// :161:30: error: use of undefined value here causes illegal behavior
5927// :161:30: note: when computing vector element at index '1'
5928// :161:30: error: use of undefined value here causes illegal behavior
5929// :161:30: note: when computing vector element at index '1'
5930// :161:30: error: use of undefined value here causes illegal behavior
5931// :161:30: note: when computing vector element at index '1'
5932// :161:30: error: use of undefined value here causes illegal behavior
5933// :161:30: note: when computing vector element at index '0'
5934// :161:30: error: use of undefined value here causes illegal behavior
5935// :161:30: note: when computing vector element at index '0'
5936// :161:30: error: use of undefined value here causes illegal behavior
5937// :161:30: note: when computing vector element at index '0'
5938// :161:30: error: use of undefined value here causes illegal behavior
5939// :161:30: note: when computing vector element at index '0'
5940// :161:30: error: use of undefined value here causes illegal behavior
5941// :161:30: error: use of undefined value here causes illegal behavior
5942// :161:30: error: use of undefined value here causes illegal behavior
5943// :161:30: error: use of undefined value here causes illegal behavior
5944// :161:30: error: use of undefined value here causes illegal behavior
5945// :161:30: error: use of undefined value here causes illegal behavior
5946// :161:30: error: use of undefined value here causes illegal behavior
5947// :161:30: note: when computing vector element at index '1'
5948// :161:30: error: use of undefined value here causes illegal behavior
5949// :161:30: note: when computing vector element at index '1'
5950// :161:30: error: use of undefined value here causes illegal behavior
5951// :161:30: note: when computing vector element at index '1'
5952// :161:30: error: use of undefined value here causes illegal behavior
5953// :161:30: note: when computing vector element at index '1'
5954// :161:30: error: use of undefined value here causes illegal behavior
5955// :161:30: note: when computing vector element at index '0'
5956// :161:30: error: use of undefined value here causes illegal behavior
5957// :161:30: note: when computing vector element at index '0'
5958// :161:30: error: use of undefined value here causes illegal behavior
5959// :161:30: note: when computing vector element at index '0'
5960// :161:30: error: use of undefined value here causes illegal behavior
5961// :161:30: note: when computing vector element at index '0'
5962// :161:30: error: use of undefined value here causes illegal behavior
5963// :161:30: error: use of undefined value here causes illegal behavior
5964// :161:30: error: use of undefined value here causes illegal behavior
5965// :161:30: error: use of undefined value here causes illegal behavior
5966// :161:30: error: use of undefined value here causes illegal behavior
5967// :161:30: error: use of undefined value here causes illegal behavior
5968// :161:30: error: use of undefined value here causes illegal behavior
5969// :161:30: note: when computing vector element at index '1'
5970// :161:30: error: use of undefined value here causes illegal behavior
5971// :161:30: note: when computing vector element at index '1'
5972// :161:30: error: use of undefined value here causes illegal behavior
5973// :161:30: note: when computing vector element at index '1'
5974// :161:30: error: use of undefined value here causes illegal behavior
5975// :161:30: note: when computing vector element at index '1'
5976// :161:30: error: use of undefined value here causes illegal behavior
5977// :161:30: note: when computing vector element at index '0'
5978// :161:30: error: use of undefined value here causes illegal behavior
5979// :161:30: note: when computing vector element at index '0'
5980// :161:30: error: use of undefined value here causes illegal behavior
5981// :161:30: note: when computing vector element at index '0'
5982// :161:30: error: use of undefined value here causes illegal behavior
5983// :161:30: note: when computing vector element at index '0'
5984// :161:30: error: use of undefined value here causes illegal behavior
5985// :161:30: error: use of undefined value here causes illegal behavior
5986// :161:30: error: use of undefined value here causes illegal behavior
5987// :161:30: error: use of undefined value here causes illegal behavior
5988// :161:30: error: use of undefined value here causes illegal behavior
5989// :161:30: error: use of undefined value here causes illegal behavior
5990// :161:30: error: use of undefined value here causes illegal behavior
5991// :161:30: note: when computing vector element at index '1'
5992// :161:30: error: use of undefined value here causes illegal behavior
5993// :161:30: note: when computing vector element at index '1'
5994// :161:30: error: use of undefined value here causes illegal behavior
5995// :161:30: note: when computing vector element at index '1'
5996// :161:30: error: use of undefined value here causes illegal behavior
5997// :161:30: note: when computing vector element at index '1'
5998// :161:30: error: use of undefined value here causes illegal behavior
5999// :161:30: note: when computing vector element at index '0'
6000// :161:30: error: use of undefined value here causes illegal behavior
6001// :161:30: note: when computing vector element at index '0'
6002// :161:30: error: use of undefined value here causes illegal behavior
6003// :161:30: note: when computing vector element at index '0'
6004// :161:30: error: use of undefined value here causes illegal behavior
6005// :161:30: note: when computing vector element at index '0'
6006// :161:30: error: use of undefined value here causes illegal behavior
6007// :161:30: error: use of undefined value here causes illegal behavior
6008// :161:30: error: use of undefined value here causes illegal behavior
6009// :161:30: error: use of undefined value here causes illegal behavior
6010// :161:30: error: use of undefined value here causes illegal behavior
6011// :161:30: error: use of undefined value here causes illegal behavior
6012// :161:30: error: use of undefined value here causes illegal behavior
6013// :161:30: note: when computing vector element at index '1'
6014// :161:30: error: use of undefined value here causes illegal behavior
6015// :161:30: note: when computing vector element at index '1'
6016// :161:30: error: use of undefined value here causes illegal behavior
6017// :161:30: note: when computing vector element at index '1'
6018// :161:30: error: use of undefined value here causes illegal behavior
6019// :161:30: note: when computing vector element at index '1'
6020// :161:30: error: use of undefined value here causes illegal behavior
6021// :161:30: note: when computing vector element at index '0'
6022// :161:30: error: use of undefined value here causes illegal behavior
6023// :161:30: note: when computing vector element at index '0'
6024// :161:30: error: use of undefined value here causes illegal behavior
6025// :161:30: note: when computing vector element at index '0'
6026// :161:30: error: use of undefined value here causes illegal behavior
6027// :161:30: note: when computing vector element at index '0'
6028// :161:30: error: use of undefined value here causes illegal behavior
6029// :161:30: error: use of undefined value here causes illegal behavior
6030// :161:30: error: use of undefined value here causes illegal behavior
6031// :161:30: error: use of undefined value here causes illegal behavior
6032// :161:30: error: use of undefined value here causes illegal behavior
6033// :161:30: error: use of undefined value here causes illegal behavior
6034// :161:30: error: use of undefined value here causes illegal behavior
6035// :161:30: note: when computing vector element at index '1'
6036// :161:30: error: use of undefined value here causes illegal behavior
6037// :161:30: note: when computing vector element at index '1'
6038// :161:30: error: use of undefined value here causes illegal behavior
6039// :161:30: note: when computing vector element at index '1'
6040// :161:30: error: use of undefined value here causes illegal behavior
6041// :161:30: note: when computing vector element at index '1'
6042// :161:30: error: use of undefined value here causes illegal behavior
6043// :161:30: note: when computing vector element at index '0'
6044// :161:30: error: use of undefined value here causes illegal behavior
6045// :161:30: note: when computing vector element at index '0'
6046// :161:30: error: use of undefined value here causes illegal behavior
6047// :161:30: note: when computing vector element at index '0'
6048// :161:30: error: use of undefined value here causes illegal behavior
6049// :161:30: note: when computing vector element at index '0'
6050// :161:30: error: use of undefined value here causes illegal behavior
6051// :161:30: error: use of undefined value here causes illegal behavior
6052// :161:30: error: use of undefined value here causes illegal behavior
6053// :161:30: error: use of undefined value here causes illegal behavior
6054// :161:30: error: use of undefined value here causes illegal behavior
6055// :161:30: error: use of undefined value here causes illegal behavior
6056// :161:30: error: use of undefined value here causes illegal behavior
6057// :161:30: note: when computing vector element at index '1'
6058// :161:30: error: use of undefined value here causes illegal behavior
6059// :161:30: note: when computing vector element at index '1'
6060// :161:30: error: use of undefined value here causes illegal behavior
6061// :161:30: note: when computing vector element at index '1'
6062// :161:30: error: use of undefined value here causes illegal behavior
6063// :161:30: note: when computing vector element at index '1'
6064// :161:30: error: use of undefined value here causes illegal behavior
6065// :161:30: note: when computing vector element at index '0'
6066// :161:30: error: use of undefined value here causes illegal behavior
6067// :161:30: note: when computing vector element at index '0'
6068// :161:30: error: use of undefined value here causes illegal behavior
6069// :161:30: note: when computing vector element at index '0'
6070// :161:30: error: use of undefined value here causes illegal behavior
6071// :161:30: note: when computing vector element at index '0'
6072// :161:30: error: use of undefined value here causes illegal behavior
6073// :161:30: error: use of undefined value here causes illegal behavior
6074// :161:30: error: use of undefined value here causes illegal behavior
6075// :161:30: error: use of undefined value here causes illegal behavior
6076// :161:30: error: use of undefined value here causes illegal behavior
6077// :161:30: error: use of undefined value here causes illegal behavior
6078// :161:30: error: use of undefined value here causes illegal behavior
6079// :161:30: note: when computing vector element at index '1'
6080// :161:30: error: use of undefined value here causes illegal behavior
6081// :161:30: note: when computing vector element at index '1'
6082// :161:30: error: use of undefined value here causes illegal behavior
6083// :161:30: note: when computing vector element at index '1'
6084// :161:30: error: use of undefined value here causes illegal behavior
6085// :161:30: note: when computing vector element at index '1'
6086// :161:30: error: use of undefined value here causes illegal behavior
6087// :161:30: note: when computing vector element at index '0'
6088// :161:30: error: use of undefined value here causes illegal behavior
6089// :161:30: note: when computing vector element at index '0'
6090// :161:30: error: use of undefined value here causes illegal behavior
6091// :161:30: note: when computing vector element at index '0'
6092// :161:30: error: use of undefined value here causes illegal behavior
6093// :161:30: note: when computing vector element at index '0'
6094// :161:30: error: use of undefined value here causes illegal behavior
6095// :161:30: error: use of undefined value here causes illegal behavior
6096// :161:30: error: use of undefined value here causes illegal behavior
6097// :161:30: error: use of undefined value here causes illegal behavior
6098// :161:30: error: use of undefined value here causes illegal behavior
6099// :161:30: error: use of undefined value here causes illegal behavior
6100// :161:30: error: use of undefined value here causes illegal behavior
6101// :161:30: note: when computing vector element at index '1'
6102// :161:30: error: use of undefined value here causes illegal behavior
6103// :161:30: note: when computing vector element at index '1'
6104// :161:30: error: use of undefined value here causes illegal behavior
6105// :161:30: note: when computing vector element at index '1'
6106// :161:30: error: use of undefined value here causes illegal behavior
6107// :161:30: note: when computing vector element at index '1'
6108// :161:30: error: use of undefined value here causes illegal behavior
6109// :161:30: note: when computing vector element at index '0'
6110// :161:30: error: use of undefined value here causes illegal behavior
6111// :161:30: note: when computing vector element at index '0'
6112// :161:30: error: use of undefined value here causes illegal behavior
6113// :161:30: note: when computing vector element at index '0'
6114// :161:30: error: use of undefined value here causes illegal behavior
6115// :161:30: note: when computing vector element at index '0'
6116// :161:30: error: use of undefined value here causes illegal behavior
6117// :161:30: error: use of undefined value here causes illegal behavior
6118// :161:30: error: use of undefined value here causes illegal behavior
6119// :161:30: error: use of undefined value here causes illegal behavior
6120// :161:30: error: use of undefined value here causes illegal behavior
6121// :161:30: error: use of undefined value here causes illegal behavior
6122// :161:30: error: use of undefined value here causes illegal behavior
6123// :161:30: note: when computing vector element at index '1'
6124// :161:30: error: use of undefined value here causes illegal behavior
6125// :161:30: note: when computing vector element at index '1'
6126// :161:30: error: use of undefined value here causes illegal behavior
6127// :161:30: note: when computing vector element at index '1'
6128// :161:30: error: use of undefined value here causes illegal behavior
6129// :161:30: note: when computing vector element at index '1'
6130// :161:30: error: use of undefined value here causes illegal behavior
6131// :161:30: note: when computing vector element at index '0'
6132// :161:30: error: use of undefined value here causes illegal behavior
6133// :161:30: note: when computing vector element at index '0'
6134// :161:30: error: use of undefined value here causes illegal behavior
6135// :161:30: note: when computing vector element at index '0'
6136// :161:30: error: use of undefined value here causes illegal behavior
6137// :161:30: note: when computing vector element at index '0'
6138// :165:30: error: use of undefined value here causes illegal behavior
6139// :165:30: error: use of undefined value here causes illegal behavior
6140// :165:30: error: use of undefined value here causes illegal behavior
6141// :165:30: error: use of undefined value here causes illegal behavior
6142// :165:30: error: use of undefined value here causes illegal behavior
6143// :165:30: error: use of undefined value here causes illegal behavior
6144// :165:30: error: use of undefined value here causes illegal behavior
6145// :165:30: note: when computing vector element at index '1'
6146// :165:30: error: use of undefined value here causes illegal behavior
6147// :165:30: note: when computing vector element at index '1'
6148// :165:30: error: use of undefined value here causes illegal behavior
6149// :165:30: note: when computing vector element at index '1'
6150// :165:30: error: use of undefined value here causes illegal behavior
6151// :165:30: note: when computing vector element at index '1'
6152// :165:30: error: use of undefined value here causes illegal behavior
6153// :165:30: note: when computing vector element at index '0'
6154// :165:30: error: use of undefined value here causes illegal behavior
6155// :165:30: note: when computing vector element at index '0'
6156// :165:30: error: use of undefined value here causes illegal behavior
6157// :165:30: note: when computing vector element at index '0'
6158// :165:30: error: use of undefined value here causes illegal behavior
6159// :165:30: note: when computing vector element at index '0'
6160// :165:30: error: use of undefined value here causes illegal behavior
6161// :165:30: error: use of undefined value here causes illegal behavior
6162// :165:30: error: use of undefined value here causes illegal behavior
6163// :165:30: error: use of undefined value here causes illegal behavior
6164// :165:30: error: use of undefined value here causes illegal behavior
6165// :165:30: error: use of undefined value here causes illegal behavior
6166// :165:30: error: use of undefined value here causes illegal behavior
6167// :165:30: note: when computing vector element at index '1'
6168// :165:30: error: use of undefined value here causes illegal behavior
6169// :165:30: note: when computing vector element at index '1'
6170// :165:30: error: use of undefined value here causes illegal behavior
6171// :165:30: note: when computing vector element at index '1'
6172// :165:30: error: use of undefined value here causes illegal behavior
6173// :165:30: note: when computing vector element at index '1'
6174// :165:30: error: use of undefined value here causes illegal behavior
6175// :165:30: note: when computing vector element at index '0'
6176// :165:30: error: use of undefined value here causes illegal behavior
6177// :165:30: note: when computing vector element at index '0'
6178// :165:30: error: use of undefined value here causes illegal behavior
6179// :165:30: note: when computing vector element at index '0'
6180// :165:30: error: use of undefined value here causes illegal behavior
6181// :165:30: note: when computing vector element at index '0'
6182// :165:30: error: use of undefined value here causes illegal behavior
6183// :165:30: error: use of undefined value here causes illegal behavior
6184// :165:30: error: use of undefined value here causes illegal behavior
6185// :165:30: error: use of undefined value here causes illegal behavior
6186// :165:30: error: use of undefined value here causes illegal behavior
6187// :165:30: error: use of undefined value here causes illegal behavior
6188// :165:30: error: use of undefined value here causes illegal behavior
6189// :165:30: note: when computing vector element at index '1'
6190// :165:30: error: use of undefined value here causes illegal behavior
6191// :165:30: note: when computing vector element at index '1'
6192// :165:30: error: use of undefined value here causes illegal behavior
6193// :165:30: note: when computing vector element at index '1'
6194// :165:30: error: use of undefined value here causes illegal behavior
6195// :165:30: note: when computing vector element at index '1'
6196// :165:30: error: use of undefined value here causes illegal behavior
6197// :165:30: note: when computing vector element at index '0'
6198// :165:30: error: use of undefined value here causes illegal behavior
6199// :165:30: note: when computing vector element at index '0'
6200// :165:30: error: use of undefined value here causes illegal behavior
6201// :165:30: note: when computing vector element at index '0'
6202// :165:30: error: use of undefined value here causes illegal behavior
6203// :165:30: note: when computing vector element at index '0'
6204// :165:30: error: use of undefined value here causes illegal behavior
6205// :165:30: error: use of undefined value here causes illegal behavior
6206// :165:30: error: use of undefined value here causes illegal behavior
6207// :165:30: error: use of undefined value here causes illegal behavior
6208// :165:30: error: use of undefined value here causes illegal behavior
6209// :165:30: error: use of undefined value here causes illegal behavior
6210// :165:30: error: use of undefined value here causes illegal behavior
6211// :165:30: note: when computing vector element at index '1'
6212// :165:30: error: use of undefined value here causes illegal behavior
6213// :165:30: note: when computing vector element at index '1'
6214// :165:30: error: use of undefined value here causes illegal behavior
6215// :165:30: note: when computing vector element at index '1'
6216// :165:30: error: use of undefined value here causes illegal behavior
6217// :165:30: note: when computing vector element at index '1'
6218// :165:30: error: use of undefined value here causes illegal behavior
6219// :165:30: note: when computing vector element at index '0'
6220// :165:30: error: use of undefined value here causes illegal behavior
6221// :165:30: note: when computing vector element at index '0'
6222// :165:30: error: use of undefined value here causes illegal behavior
6223// :165:30: note: when computing vector element at index '0'
6224// :165:30: error: use of undefined value here causes illegal behavior
6225// :165:30: note: when computing vector element at index '0'
6226// :165:30: error: use of undefined value here causes illegal behavior
6227// :165:30: error: use of undefined value here causes illegal behavior
6228// :165:30: error: use of undefined value here causes illegal behavior
6229// :165:30: error: use of undefined value here causes illegal behavior
6230// :165:30: error: use of undefined value here causes illegal behavior
6231// :165:30: error: use of undefined value here causes illegal behavior
6232// :165:30: error: use of undefined value here causes illegal behavior
6233// :165:30: note: when computing vector element at index '1'
6234// :165:30: error: use of undefined value here causes illegal behavior
6235// :165:30: note: when computing vector element at index '1'
6236// :165:30: error: use of undefined value here causes illegal behavior
6237// :165:30: note: when computing vector element at index '1'
6238// :165:30: error: use of undefined value here causes illegal behavior
6239// :165:30: note: when computing vector element at index '1'
6240// :165:30: error: use of undefined value here causes illegal behavior
6241// :165:30: note: when computing vector element at index '0'
6242// :165:30: error: use of undefined value here causes illegal behavior
6243// :165:30: note: when computing vector element at index '0'
6244// :165:30: error: use of undefined value here causes illegal behavior
6245// :165:30: note: when computing vector element at index '0'
6246// :165:30: error: use of undefined value here causes illegal behavior
6247// :165:30: note: when computing vector element at index '0'
6248// :165:30: error: use of undefined value here causes illegal behavior
6249// :165:30: error: use of undefined value here causes illegal behavior
6250// :165:30: error: use of undefined value here causes illegal behavior
6251// :165:30: error: use of undefined value here causes illegal behavior
6252// :165:30: error: use of undefined value here causes illegal behavior
6253// :165:30: error: use of undefined value here causes illegal behavior
6254// :165:30: error: use of undefined value here causes illegal behavior
6255// :165:30: note: when computing vector element at index '1'
6256// :165:30: error: use of undefined value here causes illegal behavior
6257// :165:30: note: when computing vector element at index '1'
6258// :165:30: error: use of undefined value here causes illegal behavior
6259// :165:30: note: when computing vector element at index '1'
6260// :165:30: error: use of undefined value here causes illegal behavior
6261// :165:30: note: when computing vector element at index '1'
6262// :165:30: error: use of undefined value here causes illegal behavior
6263// :165:30: note: when computing vector element at index '0'
6264// :165:30: error: use of undefined value here causes illegal behavior
6265// :165:30: note: when computing vector element at index '0'
6266// :165:30: error: use of undefined value here causes illegal behavior
6267// :165:30: note: when computing vector element at index '0'
6268// :165:30: error: use of undefined value here causes illegal behavior
6269// :165:30: note: when computing vector element at index '0'
6270// :165:30: error: use of undefined value here causes illegal behavior
6271// :165:30: error: use of undefined value here causes illegal behavior
6272// :165:30: error: use of undefined value here causes illegal behavior
6273// :165:30: error: use of undefined value here causes illegal behavior
6274// :165:30: error: use of undefined value here causes illegal behavior
6275// :165:30: error: use of undefined value here causes illegal behavior
6276// :165:30: error: use of undefined value here causes illegal behavior
6277// :165:30: note: when computing vector element at index '1'
6278// :165:30: error: use of undefined value here causes illegal behavior
6279// :165:30: note: when computing vector element at index '1'
6280// :165:30: error: use of undefined value here causes illegal behavior
6281// :165:30: note: when computing vector element at index '1'
6282// :165:30: error: use of undefined value here causes illegal behavior
6283// :165:30: note: when computing vector element at index '1'
6284// :165:30: error: use of undefined value here causes illegal behavior
6285// :165:30: note: when computing vector element at index '0'
6286// :165:30: error: use of undefined value here causes illegal behavior
6287// :165:30: note: when computing vector element at index '0'
6288// :165:30: error: use of undefined value here causes illegal behavior
6289// :165:30: note: when computing vector element at index '0'
6290// :165:30: error: use of undefined value here causes illegal behavior
6291// :165:30: note: when computing vector element at index '0'
6292// :165:30: error: use of undefined value here causes illegal behavior
6293// :165:30: error: use of undefined value here causes illegal behavior
6294// :165:30: error: use of undefined value here causes illegal behavior
6295// :165:30: error: use of undefined value here causes illegal behavior
6296// :165:30: error: use of undefined value here causes illegal behavior
6297// :165:30: error: use of undefined value here causes illegal behavior
6298// :165:30: error: use of undefined value here causes illegal behavior
6299// :165:30: note: when computing vector element at index '1'
6300// :165:30: error: use of undefined value here causes illegal behavior
6301// :165:30: note: when computing vector element at index '1'
6302// :165:30: error: use of undefined value here causes illegal behavior
6303// :165:30: note: when computing vector element at index '1'
6304// :165:30: error: use of undefined value here causes illegal behavior
6305// :165:30: note: when computing vector element at index '1'
6306// :165:30: error: use of undefined value here causes illegal behavior
6307// :165:30: note: when computing vector element at index '0'
6308// :165:30: error: use of undefined value here causes illegal behavior
6309// :165:30: note: when computing vector element at index '0'
6310// :165:30: error: use of undefined value here causes illegal behavior
6311// :165:30: note: when computing vector element at index '0'
6312// :165:30: error: use of undefined value here causes illegal behavior
6313// :165:30: note: when computing vector element at index '0'
6314// :165:30: error: use of undefined value here causes illegal behavior
6315// :165:30: error: use of undefined value here causes illegal behavior
6316// :165:30: error: use of undefined value here causes illegal behavior
6317// :165:30: error: use of undefined value here causes illegal behavior
6318// :165:30: error: use of undefined value here causes illegal behavior
6319// :165:30: error: use of undefined value here causes illegal behavior
6320// :165:30: error: use of undefined value here causes illegal behavior
6321// :165:30: note: when computing vector element at index '1'
6322// :165:30: error: use of undefined value here causes illegal behavior
6323// :165:30: note: when computing vector element at index '1'
6324// :165:30: error: use of undefined value here causes illegal behavior
6325// :165:30: note: when computing vector element at index '1'
6326// :165:30: error: use of undefined value here causes illegal behavior
6327// :165:30: note: when computing vector element at index '1'
6328// :165:30: error: use of undefined value here causes illegal behavior
6329// :165:30: note: when computing vector element at index '0'
6330// :165:30: error: use of undefined value here causes illegal behavior
6331// :165:30: note: when computing vector element at index '0'
6332// :165:30: error: use of undefined value here causes illegal behavior
6333// :165:30: note: when computing vector element at index '0'
6334// :165:30: error: use of undefined value here causes illegal behavior
6335// :165:30: note: when computing vector element at index '0'
6336// :165:30: error: use of undefined value here causes illegal behavior
6337// :165:30: error: use of undefined value here causes illegal behavior
6338// :165:30: error: use of undefined value here causes illegal behavior
6339// :165:30: error: use of undefined value here causes illegal behavior
6340// :165:30: error: use of undefined value here causes illegal behavior
6341// :165:30: error: use of undefined value here causes illegal behavior
6342// :165:30: error: use of undefined value here causes illegal behavior
6343// :165:30: note: when computing vector element at index '1'
6344// :165:30: error: use of undefined value here causes illegal behavior
6345// :165:30: note: when computing vector element at index '1'
6346// :165:30: error: use of undefined value here causes illegal behavior
6347// :165:30: note: when computing vector element at index '1'
6348// :165:30: error: use of undefined value here causes illegal behavior
6349// :165:30: note: when computing vector element at index '1'
6350// :165:30: error: use of undefined value here causes illegal behavior
6351// :165:30: note: when computing vector element at index '0'
6352// :165:30: error: use of undefined value here causes illegal behavior
6353// :165:30: note: when computing vector element at index '0'
6354// :165:30: error: use of undefined value here causes illegal behavior
6355// :165:30: note: when computing vector element at index '0'
6356// :165:30: error: use of undefined value here causes illegal behavior
6357// :165:30: note: when computing vector element at index '0'
6358// :165:30: error: use of undefined value here causes illegal behavior
6359// :165:30: error: use of undefined value here causes illegal behavior
6360// :165:30: error: use of undefined value here causes illegal behavior
6361// :165:30: error: use of undefined value here causes illegal behavior
6362// :165:30: error: use of undefined value here causes illegal behavior
6363// :165:30: error: use of undefined value here causes illegal behavior
6364// :165:30: error: use of undefined value here causes illegal behavior
6365// :165:30: note: when computing vector element at index '1'
6366// :165:30: error: use of undefined value here causes illegal behavior
6367// :165:30: note: when computing vector element at index '1'
6368// :165:30: error: use of undefined value here causes illegal behavior
6369// :165:30: note: when computing vector element at index '1'
6370// :165:30: error: use of undefined value here causes illegal behavior
6371// :165:30: note: when computing vector element at index '1'
6372// :165:30: error: use of undefined value here causes illegal behavior
6373// :165:30: note: when computing vector element at index '0'
6374// :165:30: error: use of undefined value here causes illegal behavior
6375// :165:30: note: when computing vector element at index '0'
6376// :165:30: error: use of undefined value here causes illegal behavior
6377// :165:30: note: when computing vector element at index '0'
6378// :165:30: error: use of undefined value here causes illegal behavior
6379// :165:30: note: when computing vector element at index '0'
6380// :169:30: error: use of undefined value here causes illegal behavior
6381// :169:30: error: use of undefined value here causes illegal behavior
6382// :169:30: error: use of undefined value here causes illegal behavior
6383// :169:30: error: use of undefined value here causes illegal behavior
6384// :169:30: error: use of undefined value here causes illegal behavior
6385// :169:30: error: use of undefined value here causes illegal behavior
6386// :169:30: error: use of undefined value here causes illegal behavior
6387// :169:30: note: when computing vector element at index '1'
6388// :169:30: error: use of undefined value here causes illegal behavior
6389// :169:30: note: when computing vector element at index '1'
6390// :169:30: error: use of undefined value here causes illegal behavior
6391// :169:30: note: when computing vector element at index '1'
6392// :169:30: error: use of undefined value here causes illegal behavior
6393// :169:30: note: when computing vector element at index '1'
6394// :169:30: error: use of undefined value here causes illegal behavior
6395// :169:30: note: when computing vector element at index '0'
6396// :169:30: error: use of undefined value here causes illegal behavior
6397// :169:30: note: when computing vector element at index '0'
6398// :169:30: error: use of undefined value here causes illegal behavior
6399// :169:30: note: when computing vector element at index '0'
6400// :169:30: error: use of undefined value here causes illegal behavior
6401// :169:30: note: when computing vector element at index '0'
6402// :169:30: error: use of undefined value here causes illegal behavior
6403// :169:30: error: use of undefined value here causes illegal behavior
6404// :169:30: error: use of undefined value here causes illegal behavior
6405// :169:30: error: use of undefined value here causes illegal behavior
6406// :169:30: error: use of undefined value here causes illegal behavior
6407// :169:30: error: use of undefined value here causes illegal behavior
6408// :169:30: error: use of undefined value here causes illegal behavior
6409// :169:30: note: when computing vector element at index '1'
6410// :169:30: error: use of undefined value here causes illegal behavior
6411// :169:30: note: when computing vector element at index '1'
6412// :169:30: error: use of undefined value here causes illegal behavior
6413// :169:30: note: when computing vector element at index '1'
6414// :169:30: error: use of undefined value here causes illegal behavior
6415// :169:30: note: when computing vector element at index '1'
6416// :169:30: error: use of undefined value here causes illegal behavior
6417// :169:30: note: when computing vector element at index '0'
6418// :169:30: error: use of undefined value here causes illegal behavior
6419// :169:30: note: when computing vector element at index '0'
6420// :169:30: error: use of undefined value here causes illegal behavior
6421// :169:30: note: when computing vector element at index '0'
6422// :169:30: error: use of undefined value here causes illegal behavior
6423// :169:30: note: when computing vector element at index '0'
6424// :169:30: error: use of undefined value here causes illegal behavior
6425// :169:30: error: use of undefined value here causes illegal behavior
6426// :169:30: error: use of undefined value here causes illegal behavior
6427// :169:30: error: use of undefined value here causes illegal behavior
6428// :169:30: error: use of undefined value here causes illegal behavior
6429// :169:30: error: use of undefined value here causes illegal behavior
6430// :169:30: error: use of undefined value here causes illegal behavior
6431// :169:30: note: when computing vector element at index '1'
6432// :169:30: error: use of undefined value here causes illegal behavior
6433// :169:30: note: when computing vector element at index '1'
6434// :169:30: error: use of undefined value here causes illegal behavior
6435// :169:30: note: when computing vector element at index '1'
6436// :169:30: error: use of undefined value here causes illegal behavior
6437// :169:30: note: when computing vector element at index '1'
6438// :169:30: error: use of undefined value here causes illegal behavior
6439// :169:30: note: when computing vector element at index '0'
6440// :169:30: error: use of undefined value here causes illegal behavior
6441// :169:30: note: when computing vector element at index '0'
6442// :169:30: error: use of undefined value here causes illegal behavior
6443// :169:30: note: when computing vector element at index '0'
6444// :169:30: error: use of undefined value here causes illegal behavior
6445// :169:30: note: when computing vector element at index '0'
6446// :169:30: error: use of undefined value here causes illegal behavior
6447// :169:30: error: use of undefined value here causes illegal behavior
6448// :169:30: error: use of undefined value here causes illegal behavior
6449// :169:30: error: use of undefined value here causes illegal behavior
6450// :169:30: error: use of undefined value here causes illegal behavior
6451// :169:30: error: use of undefined value here causes illegal behavior
6452// :169:30: error: use of undefined value here causes illegal behavior
6453// :169:30: note: when computing vector element at index '1'
6454// :169:30: error: use of undefined value here causes illegal behavior
6455// :169:30: note: when computing vector element at index '1'
6456// :169:30: error: use of undefined value here causes illegal behavior
6457// :169:30: note: when computing vector element at index '1'
6458// :169:30: error: use of undefined value here causes illegal behavior
6459// :169:30: note: when computing vector element at index '1'
6460// :169:30: error: use of undefined value here causes illegal behavior
6461// :169:30: note: when computing vector element at index '0'
6462// :169:30: error: use of undefined value here causes illegal behavior
6463// :169:30: note: when computing vector element at index '0'
6464// :169:30: error: use of undefined value here causes illegal behavior
6465// :169:30: note: when computing vector element at index '0'
6466// :169:30: error: use of undefined value here causes illegal behavior
6467// :169:30: note: when computing vector element at index '0'
6468// :169:30: error: use of undefined value here causes illegal behavior
6469// :169:30: error: use of undefined value here causes illegal behavior
6470// :169:30: error: use of undefined value here causes illegal behavior
6471// :169:30: error: use of undefined value here causes illegal behavior
6472// :169:30: error: use of undefined value here causes illegal behavior
6473// :169:30: error: use of undefined value here causes illegal behavior
6474// :169:30: error: use of undefined value here causes illegal behavior
6475// :169:30: note: when computing vector element at index '1'
6476// :169:30: error: use of undefined value here causes illegal behavior
6477// :169:30: note: when computing vector element at index '1'
6478// :169:30: error: use of undefined value here causes illegal behavior
6479// :169:30: note: when computing vector element at index '1'
6480// :169:30: error: use of undefined value here causes illegal behavior
6481// :169:30: note: when computing vector element at index '1'
6482// :169:30: error: use of undefined value here causes illegal behavior
6483// :169:30: note: when computing vector element at index '0'
6484// :169:30: error: use of undefined value here causes illegal behavior
6485// :169:30: note: when computing vector element at index '0'
6486// :169:30: error: use of undefined value here causes illegal behavior
6487// :169:30: note: when computing vector element at index '0'
6488// :169:30: error: use of undefined value here causes illegal behavior
6489// :169:30: note: when computing vector element at index '0'
6490// :169:30: error: use of undefined value here causes illegal behavior
6491// :169:30: error: use of undefined value here causes illegal behavior
6492// :169:30: error: use of undefined value here causes illegal behavior
6493// :169:30: error: use of undefined value here causes illegal behavior
6494// :169:30: error: use of undefined value here causes illegal behavior
6495// :169:30: error: use of undefined value here causes illegal behavior
6496// :169:30: error: use of undefined value here causes illegal behavior
6497// :169:30: note: when computing vector element at index '1'
6498// :169:30: error: use of undefined value here causes illegal behavior
6499// :169:30: note: when computing vector element at index '1'
6500// :169:30: error: use of undefined value here causes illegal behavior
6501// :169:30: note: when computing vector element at index '1'
6502// :169:30: error: use of undefined value here causes illegal behavior
6503// :169:30: note: when computing vector element at index '1'
6504// :169:30: error: use of undefined value here causes illegal behavior
6505// :169:30: note: when computing vector element at index '0'
6506// :169:30: error: use of undefined value here causes illegal behavior
6507// :169:30: note: when computing vector element at index '0'
6508// :169:30: error: use of undefined value here causes illegal behavior
6509// :169:30: note: when computing vector element at index '0'
6510// :169:30: error: use of undefined value here causes illegal behavior
6511// :169:30: note: when computing vector element at index '0'
6512// :169:30: error: use of undefined value here causes illegal behavior
6513// :169:30: error: use of undefined value here causes illegal behavior
6514// :169:30: error: use of undefined value here causes illegal behavior
6515// :169:30: error: use of undefined value here causes illegal behavior
6516// :169:30: error: use of undefined value here causes illegal behavior
6517// :169:30: error: use of undefined value here causes illegal behavior
6518// :169:30: error: use of undefined value here causes illegal behavior
6519// :169:30: note: when computing vector element at index '1'
6520// :169:30: error: use of undefined value here causes illegal behavior
6521// :169:30: note: when computing vector element at index '1'
6522// :169:30: error: use of undefined value here causes illegal behavior
6523// :169:30: note: when computing vector element at index '1'
6524// :169:30: error: use of undefined value here causes illegal behavior
6525// :169:30: note: when computing vector element at index '1'
6526// :169:30: error: use of undefined value here causes illegal behavior
6527// :169:30: note: when computing vector element at index '0'
6528// :169:30: error: use of undefined value here causes illegal behavior
6529// :169:30: note: when computing vector element at index '0'
6530// :169:30: error: use of undefined value here causes illegal behavior
6531// :169:30: note: when computing vector element at index '0'
6532// :169:30: error: use of undefined value here causes illegal behavior
6533// :169:30: note: when computing vector element at index '0'
6534// :169:30: error: use of undefined value here causes illegal behavior
6535// :169:30: error: use of undefined value here causes illegal behavior
6536// :169:30: error: use of undefined value here causes illegal behavior
6537// :169:30: error: use of undefined value here causes illegal behavior
6538// :169:30: error: use of undefined value here causes illegal behavior
6539// :169:30: error: use of undefined value here causes illegal behavior
6540// :169:30: error: use of undefined value here causes illegal behavior
6541// :169:30: note: when computing vector element at index '1'
6542// :169:30: error: use of undefined value here causes illegal behavior
6543// :169:30: note: when computing vector element at index '1'
6544// :169:30: error: use of undefined value here causes illegal behavior
6545// :169:30: note: when computing vector element at index '1'
6546// :169:30: error: use of undefined value here causes illegal behavior
6547// :169:30: note: when computing vector element at index '1'
6548// :169:30: error: use of undefined value here causes illegal behavior
6549// :169:30: note: when computing vector element at index '0'
6550// :169:30: error: use of undefined value here causes illegal behavior
6551// :169:30: note: when computing vector element at index '0'
6552// :169:30: error: use of undefined value here causes illegal behavior
6553// :169:30: note: when computing vector element at index '0'
6554// :169:30: error: use of undefined value here causes illegal behavior
6555// :169:30: note: when computing vector element at index '0'
6556// :169:30: error: use of undefined value here causes illegal behavior
6557// :169:30: error: use of undefined value here causes illegal behavior
6558// :169:30: error: use of undefined value here causes illegal behavior
6559// :169:30: error: use of undefined value here causes illegal behavior
6560// :169:30: error: use of undefined value here causes illegal behavior
6561// :169:30: error: use of undefined value here causes illegal behavior
6562// :169:30: error: use of undefined value here causes illegal behavior
6563// :169:30: note: when computing vector element at index '1'
6564// :169:30: error: use of undefined value here causes illegal behavior
6565// :169:30: note: when computing vector element at index '1'
6566// :169:30: error: use of undefined value here causes illegal behavior
6567// :169:30: note: when computing vector element at index '1'
6568// :169:30: error: use of undefined value here causes illegal behavior
6569// :169:30: note: when computing vector element at index '1'
6570// :169:30: error: use of undefined value here causes illegal behavior
6571// :169:30: note: when computing vector element at index '0'
6572// :169:30: error: use of undefined value here causes illegal behavior
6573// :169:30: note: when computing vector element at index '0'
6574// :169:30: error: use of undefined value here causes illegal behavior
6575// :169:30: note: when computing vector element at index '0'
6576// :169:30: error: use of undefined value here causes illegal behavior
6577// :169:30: note: when computing vector element at index '0'
6578// :169:30: error: use of undefined value here causes illegal behavior
6579// :169:30: error: use of undefined value here causes illegal behavior
6580// :169:30: error: use of undefined value here causes illegal behavior
6581// :169:30: error: use of undefined value here causes illegal behavior
6582// :169:30: error: use of undefined value here causes illegal behavior
6583// :169:30: error: use of undefined value here causes illegal behavior
6584// :169:30: error: use of undefined value here causes illegal behavior
6585// :169:30: note: when computing vector element at index '1'
6586// :169:30: error: use of undefined value here causes illegal behavior
6587// :169:30: note: when computing vector element at index '1'
6588// :169:30: error: use of undefined value here causes illegal behavior
6589// :169:30: note: when computing vector element at index '1'
6590// :169:30: error: use of undefined value here causes illegal behavior
6591// :169:30: note: when computing vector element at index '1'
6592// :169:30: error: use of undefined value here causes illegal behavior
6593// :169:30: note: when computing vector element at index '0'
6594// :169:30: error: use of undefined value here causes illegal behavior
6595// :169:30: note: when computing vector element at index '0'
6596// :169:30: error: use of undefined value here causes illegal behavior
6597// :169:30: note: when computing vector element at index '0'
6598// :169:30: error: use of undefined value here causes illegal behavior
6599// :169:30: note: when computing vector element at index '0'
6600// :169:30: error: use of undefined value here causes illegal behavior
6601// :169:30: error: use of undefined value here causes illegal behavior
6602// :169:30: error: use of undefined value here causes illegal behavior
6603// :169:30: error: use of undefined value here causes illegal behavior
6604// :169:30: error: use of undefined value here causes illegal behavior
6605// :169:30: error: use of undefined value here causes illegal behavior
6606// :169:30: error: use of undefined value here causes illegal behavior
6607// :169:30: note: when computing vector element at index '1'
6608// :169:30: error: use of undefined value here causes illegal behavior
6609// :169:30: note: when computing vector element at index '1'
6610// :169:30: error: use of undefined value here causes illegal behavior
6611// :169:30: note: when computing vector element at index '1'
6612// :169:30: error: use of undefined value here causes illegal behavior
6613// :169:30: note: when computing vector element at index '1'
6614// :169:30: error: use of undefined value here causes illegal behavior
6615// :169:30: note: when computing vector element at index '0'
6616// :169:30: error: use of undefined value here causes illegal behavior
6617// :169:30: note: when computing vector element at index '0'
6618// :169:30: error: use of undefined value here causes illegal behavior
6619// :169:30: note: when computing vector element at index '0'
6620// :169:30: error: use of undefined value here causes illegal behavior
6621// :169:30: note: when computing vector element at index '0'
6622// :173:25: error: use of undefined value here causes illegal behavior
6623// :173:25: error: use of undefined value here causes illegal behavior
6624// :173:25: error: use of undefined value here causes illegal behavior
6625// :173:25: error: use of undefined value here causes illegal behavior
6626// :173:25: error: use of undefined value here causes illegal behavior
6627// :173:25: error: use of undefined value here causes illegal behavior
6628// :173:25: error: use of undefined value here causes illegal behavior
6629// :173:25: note: when computing vector element at index '1'
6630// :173:25: error: use of undefined value here causes illegal behavior
6631// :173:25: note: when computing vector element at index '1'
6632// :173:25: error: use of undefined value here causes illegal behavior
6633// :173:25: note: when computing vector element at index '1'
6634// :173:25: error: use of undefined value here causes illegal behavior
6635// :173:25: note: when computing vector element at index '1'
6636// :173:25: error: use of undefined value here causes illegal behavior
6637// :173:25: note: when computing vector element at index '0'
6638// :173:25: error: use of undefined value here causes illegal behavior
6639// :173:25: note: when computing vector element at index '0'
6640// :173:25: error: use of undefined value here causes illegal behavior
6641// :173:25: note: when computing vector element at index '0'
6642// :173:25: error: use of undefined value here causes illegal behavior
6643// :173:25: note: when computing vector element at index '0'
6644// :173:25: error: use of undefined value here causes illegal behavior
6645// :173:25: error: use of undefined value here causes illegal behavior
6646// :173:25: error: use of undefined value here causes illegal behavior
6647// :173:25: error: use of undefined value here causes illegal behavior
6648// :173:25: error: use of undefined value here causes illegal behavior
6649// :173:25: error: use of undefined value here causes illegal behavior
6650// :173:25: error: use of undefined value here causes illegal behavior
6651// :173:25: note: when computing vector element at index '1'
6652// :173:25: error: use of undefined value here causes illegal behavior
6653// :173:25: note: when computing vector element at index '1'
6654// :173:25: error: use of undefined value here causes illegal behavior
6655// :173:25: note: when computing vector element at index '1'
6656// :173:25: error: use of undefined value here causes illegal behavior
6657// :173:25: note: when computing vector element at index '1'
6658// :173:25: error: use of undefined value here causes illegal behavior
6659// :173:25: note: when computing vector element at index '0'
6660// :173:25: error: use of undefined value here causes illegal behavior
6661// :173:25: note: when computing vector element at index '0'
6662// :173:25: error: use of undefined value here causes illegal behavior
6663// :173:25: note: when computing vector element at index '0'
6664// :173:25: error: use of undefined value here causes illegal behavior
6665// :173:25: note: when computing vector element at index '0'
6666// :173:25: error: use of undefined value here causes illegal behavior
6667// :173:25: error: use of undefined value here causes illegal behavior
6668// :173:25: error: use of undefined value here causes illegal behavior
6669// :173:25: error: use of undefined value here causes illegal behavior
6670// :173:25: error: use of undefined value here causes illegal behavior
6671// :173:25: error: use of undefined value here causes illegal behavior
6672// :173:25: error: use of undefined value here causes illegal behavior
6673// :173:25: note: when computing vector element at index '1'
6674// :173:25: error: use of undefined value here causes illegal behavior
6675// :173:25: note: when computing vector element at index '1'
6676// :173:25: error: use of undefined value here causes illegal behavior
6677// :173:25: note: when computing vector element at index '1'
6678// :173:25: error: use of undefined value here causes illegal behavior
6679// :173:25: note: when computing vector element at index '1'
6680// :173:25: error: use of undefined value here causes illegal behavior
6681// :173:25: note: when computing vector element at index '0'
6682// :173:25: error: use of undefined value here causes illegal behavior
6683// :173:25: note: when computing vector element at index '0'
6684// :173:25: error: use of undefined value here causes illegal behavior
6685// :173:25: note: when computing vector element at index '0'
6686// :173:25: error: use of undefined value here causes illegal behavior
6687// :173:25: note: when computing vector element at index '0'
6688// :173:25: error: use of undefined value here causes illegal behavior
6689// :173:25: error: use of undefined value here causes illegal behavior
6690// :173:25: error: use of undefined value here causes illegal behavior
6691// :173:25: error: use of undefined value here causes illegal behavior
6692// :173:25: error: use of undefined value here causes illegal behavior
6693// :173:25: error: use of undefined value here causes illegal behavior
6694// :173:25: error: use of undefined value here causes illegal behavior
6695// :173:25: note: when computing vector element at index '1'
6696// :173:25: error: use of undefined value here causes illegal behavior
6697// :173:25: note: when computing vector element at index '1'
6698// :173:25: error: use of undefined value here causes illegal behavior
6699// :173:25: note: when computing vector element at index '1'
6700// :173:25: error: use of undefined value here causes illegal behavior
6701// :173:25: note: when computing vector element at index '1'
6702// :173:25: error: use of undefined value here causes illegal behavior
6703// :173:25: note: when computing vector element at index '0'
6704// :173:25: error: use of undefined value here causes illegal behavior
6705// :173:25: note: when computing vector element at index '0'
6706// :173:25: error: use of undefined value here causes illegal behavior
6707// :173:25: note: when computing vector element at index '0'
6708// :173:25: error: use of undefined value here causes illegal behavior
6709// :173:25: note: when computing vector element at index '0'
6710// :173:25: error: use of undefined value here causes illegal behavior
6711// :173:25: error: use of undefined value here causes illegal behavior
6712// :173:25: error: use of undefined value here causes illegal behavior
6713// :173:25: error: use of undefined value here causes illegal behavior
6714// :173:25: error: use of undefined value here causes illegal behavior
6715// :173:25: error: use of undefined value here causes illegal behavior
6716// :173:25: error: use of undefined value here causes illegal behavior
6717// :173:25: note: when computing vector element at index '1'
6718// :173:25: error: use of undefined value here causes illegal behavior
6719// :173:25: note: when computing vector element at index '1'
6720// :173:25: error: use of undefined value here causes illegal behavior
6721// :173:25: note: when computing vector element at index '1'
6722// :173:25: error: use of undefined value here causes illegal behavior
6723// :173:25: note: when computing vector element at index '1'
6724// :173:25: error: use of undefined value here causes illegal behavior
6725// :173:25: note: when computing vector element at index '0'
6726// :173:25: error: use of undefined value here causes illegal behavior
6727// :173:25: note: when computing vector element at index '0'
6728// :173:25: error: use of undefined value here causes illegal behavior
6729// :173:25: note: when computing vector element at index '0'
6730// :173:25: error: use of undefined value here causes illegal behavior
6731// :173:25: note: when computing vector element at index '0'
6732// :173:25: error: use of undefined value here causes illegal behavior
6733// :173:25: error: use of undefined value here causes illegal behavior
6734// :173:25: error: use of undefined value here causes illegal behavior
6735// :173:25: error: use of undefined value here causes illegal behavior
6736// :173:25: error: use of undefined value here causes illegal behavior
6737// :173:25: error: use of undefined value here causes illegal behavior
6738// :173:25: error: use of undefined value here causes illegal behavior
6739// :173:25: note: when computing vector element at index '1'
6740// :173:25: error: use of undefined value here causes illegal behavior
6741// :173:25: note: when computing vector element at index '1'
6742// :173:25: error: use of undefined value here causes illegal behavior
6743// :173:25: note: when computing vector element at index '1'
6744// :173:25: error: use of undefined value here causes illegal behavior
6745// :173:25: note: when computing vector element at index '1'
6746// :173:25: error: use of undefined value here causes illegal behavior
6747// :173:25: note: when computing vector element at index '0'
6748// :173:25: error: use of undefined value here causes illegal behavior
6749// :173:25: note: when computing vector element at index '0'
6750// :173:25: error: use of undefined value here causes illegal behavior
6751// :173:25: note: when computing vector element at index '0'
6752// :173:25: error: use of undefined value here causes illegal behavior
6753// :173:25: note: when computing vector element at index '0'
6754// :173:25: error: use of undefined value here causes illegal behavior
6755// :173:25: error: use of undefined value here causes illegal behavior
6756// :173:25: error: use of undefined value here causes illegal behavior
6757// :173:25: error: use of undefined value here causes illegal behavior
6758// :173:25: error: use of undefined value here causes illegal behavior
6759// :173:25: error: use of undefined value here causes illegal behavior
6760// :173:25: error: use of undefined value here causes illegal behavior
6761// :173:25: note: when computing vector element at index '1'
6762// :173:25: error: use of undefined value here causes illegal behavior
6763// :173:25: note: when computing vector element at index '1'
6764// :173:25: error: use of undefined value here causes illegal behavior
6765// :173:25: note: when computing vector element at index '1'
6766// :173:25: error: use of undefined value here causes illegal behavior
6767// :173:25: note: when computing vector element at index '1'
6768// :173:25: error: use of undefined value here causes illegal behavior
6769// :173:25: note: when computing vector element at index '0'
6770// :173:25: error: use of undefined value here causes illegal behavior
6771// :173:25: note: when computing vector element at index '0'
6772// :173:25: error: use of undefined value here causes illegal behavior
6773// :173:25: note: when computing vector element at index '0'
6774// :173:25: error: use of undefined value here causes illegal behavior
6775// :173:25: note: when computing vector element at index '0'
6776// :173:25: error: use of undefined value here causes illegal behavior
6777// :173:25: error: use of undefined value here causes illegal behavior
6778// :173:25: error: use of undefined value here causes illegal behavior
6779// :173:25: error: use of undefined value here causes illegal behavior
6780// :173:25: error: use of undefined value here causes illegal behavior
6781// :173:25: error: use of undefined value here causes illegal behavior
6782// :173:25: error: use of undefined value here causes illegal behavior
6783// :173:25: note: when computing vector element at index '1'
6784// :173:25: error: use of undefined value here causes illegal behavior
6785// :173:25: note: when computing vector element at index '1'
6786// :173:25: error: use of undefined value here causes illegal behavior
6787// :173:25: note: when computing vector element at index '1'
6788// :173:25: error: use of undefined value here causes illegal behavior
6789// :173:25: note: when computing vector element at index '1'
6790// :173:25: error: use of undefined value here causes illegal behavior
6791// :173:25: note: when computing vector element at index '0'
6792// :173:25: error: use of undefined value here causes illegal behavior
6793// :173:25: note: when computing vector element at index '0'
6794// :173:25: error: use of undefined value here causes illegal behavior
6795// :173:25: note: when computing vector element at index '0'
6796// :173:25: error: use of undefined value here causes illegal behavior
6797// :173:25: note: when computing vector element at index '0'
6798// :173:25: error: use of undefined value here causes illegal behavior
6799// :173:25: error: use of undefined value here causes illegal behavior
6800// :173:25: error: use of undefined value here causes illegal behavior
6801// :173:25: error: use of undefined value here causes illegal behavior
6802// :173:25: error: use of undefined value here causes illegal behavior
6803// :173:25: error: use of undefined value here causes illegal behavior
6804// :173:25: error: use of undefined value here causes illegal behavior
6805// :173:25: note: when computing vector element at index '1'
6806// :173:25: error: use of undefined value here causes illegal behavior
6807// :173:25: note: when computing vector element at index '1'
6808// :173:25: error: use of undefined value here causes illegal behavior
6809// :173:25: note: when computing vector element at index '1'
6810// :173:25: error: use of undefined value here causes illegal behavior
6811// :173:25: note: when computing vector element at index '1'
6812// :173:25: error: use of undefined value here causes illegal behavior
6813// :173:25: note: when computing vector element at index '0'
6814// :173:25: error: use of undefined value here causes illegal behavior
6815// :173:25: note: when computing vector element at index '0'
6816// :173:25: error: use of undefined value here causes illegal behavior
6817// :173:25: note: when computing vector element at index '0'
6818// :173:25: error: use of undefined value here causes illegal behavior
6819// :173:25: note: when computing vector element at index '0'
6820// :173:25: error: use of undefined value here causes illegal behavior
6821// :173:25: error: use of undefined value here causes illegal behavior
6822// :173:25: error: use of undefined value here causes illegal behavior
6823// :173:25: error: use of undefined value here causes illegal behavior
6824// :173:25: error: use of undefined value here causes illegal behavior
6825// :173:25: error: use of undefined value here causes illegal behavior
6826// :173:25: error: use of undefined value here causes illegal behavior
6827// :173:25: note: when computing vector element at index '1'
6828// :173:25: error: use of undefined value here causes illegal behavior
6829// :173:25: note: when computing vector element at index '1'
6830// :173:25: error: use of undefined value here causes illegal behavior
6831// :173:25: note: when computing vector element at index '1'
6832// :173:25: error: use of undefined value here causes illegal behavior
6833// :173:25: note: when computing vector element at index '1'
6834// :173:25: error: use of undefined value here causes illegal behavior
6835// :173:25: note: when computing vector element at index '0'
6836// :173:25: error: use of undefined value here causes illegal behavior
6837// :173:25: note: when computing vector element at index '0'
6838// :173:25: error: use of undefined value here causes illegal behavior
6839// :173:25: note: when computing vector element at index '0'
6840// :173:25: error: use of undefined value here causes illegal behavior
6841// :173:25: note: when computing vector element at index '0'
6842// :173:25: error: use of undefined value here causes illegal behavior
6843// :173:25: error: use of undefined value here causes illegal behavior
6844// :173:25: error: use of undefined value here causes illegal behavior
6845// :173:25: error: use of undefined value here causes illegal behavior
6846// :173:25: error: use of undefined value here causes illegal behavior
6847// :173:25: error: use of undefined value here causes illegal behavior
6848// :173:25: error: use of undefined value here causes illegal behavior
6849// :173:25: note: when computing vector element at index '1'
6850// :173:25: error: use of undefined value here causes illegal behavior
6851// :173:25: note: when computing vector element at index '1'
6852// :173:25: error: use of undefined value here causes illegal behavior
6853// :173:25: note: when computing vector element at index '1'
6854// :173:25: error: use of undefined value here causes illegal behavior
6855// :173:25: note: when computing vector element at index '1'
6856// :173:25: error: use of undefined value here causes illegal behavior
6857// :173:25: note: when computing vector element at index '0'
6858// :173:25: error: use of undefined value here causes illegal behavior
6859// :173:25: note: when computing vector element at index '0'
6860// :173:25: error: use of undefined value here causes illegal behavior
6861// :173:25: note: when computing vector element at index '0'
6862// :173:25: error: use of undefined value here causes illegal behavior
6863// :173:25: note: when computing vector element at index '0'
6864// :177:25: error: use of undefined value here causes illegal behavior
6865// :177:25: error: use of undefined value here causes illegal behavior
6866// :177:25: error: use of undefined value here causes illegal behavior
6867// :177:25: error: use of undefined value here causes illegal behavior
6868// :177:25: error: use of undefined value here causes illegal behavior
6869// :177:25: error: use of undefined value here causes illegal behavior
6870// :177:25: error: use of undefined value here causes illegal behavior
6871// :177:25: note: when computing vector element at index '1'
6872// :177:25: error: use of undefined value here causes illegal behavior
6873// :177:25: note: when computing vector element at index '1'
6874// :177:25: error: use of undefined value here causes illegal behavior
6875// :177:25: note: when computing vector element at index '1'
6876// :177:25: error: use of undefined value here causes illegal behavior
6877// :177:25: note: when computing vector element at index '1'
6878// :177:25: error: use of undefined value here causes illegal behavior
6879// :177:25: note: when computing vector element at index '0'
6880// :177:25: error: use of undefined value here causes illegal behavior
6881// :177:25: note: when computing vector element at index '0'
6882// :177:25: error: use of undefined value here causes illegal behavior
6883// :177:25: note: when computing vector element at index '0'
6884// :177:25: error: use of undefined value here causes illegal behavior
6885// :177:25: note: when computing vector element at index '0'
6886// :177:25: error: use of undefined value here causes illegal behavior
6887// :177:25: error: use of undefined value here causes illegal behavior
6888// :177:25: error: use of undefined value here causes illegal behavior
6889// :177:25: error: use of undefined value here causes illegal behavior
6890// :177:25: error: use of undefined value here causes illegal behavior
6891// :177:25: error: use of undefined value here causes illegal behavior
6892// :177:25: error: use of undefined value here causes illegal behavior
6893// :177:25: note: when computing vector element at index '1'
6894// :177:25: error: use of undefined value here causes illegal behavior
6895// :177:25: note: when computing vector element at index '1'
6896// :177:25: error: use of undefined value here causes illegal behavior
6897// :177:25: note: when computing vector element at index '1'
6898// :177:25: error: use of undefined value here causes illegal behavior
6899// :177:25: note: when computing vector element at index '1'
6900// :177:25: error: use of undefined value here causes illegal behavior
6901// :177:25: note: when computing vector element at index '0'
6902// :177:25: error: use of undefined value here causes illegal behavior
6903// :177:25: note: when computing vector element at index '0'
6904// :177:25: error: use of undefined value here causes illegal behavior
6905// :177:25: note: when computing vector element at index '0'
6906// :177:25: error: use of undefined value here causes illegal behavior
6907// :177:25: note: when computing vector element at index '0'
6908// :177:25: error: use of undefined value here causes illegal behavior
6909// :177:25: error: use of undefined value here causes illegal behavior
6910// :177:25: error: use of undefined value here causes illegal behavior
6911// :177:25: error: use of undefined value here causes illegal behavior
6912// :177:25: error: use of undefined value here causes illegal behavior
6913// :177:25: error: use of undefined value here causes illegal behavior
6914// :177:25: error: use of undefined value here causes illegal behavior
6915// :177:25: note: when computing vector element at index '1'
6916// :177:25: error: use of undefined value here causes illegal behavior
6917// :177:25: note: when computing vector element at index '1'
6918// :177:25: error: use of undefined value here causes illegal behavior
6919// :177:25: note: when computing vector element at index '1'
6920// :177:25: error: use of undefined value here causes illegal behavior
6921// :177:25: note: when computing vector element at index '1'
6922// :177:25: error: use of undefined value here causes illegal behavior
6923// :177:25: note: when computing vector element at index '0'
6924// :177:25: error: use of undefined value here causes illegal behavior
6925// :177:25: note: when computing vector element at index '0'
6926// :177:25: error: use of undefined value here causes illegal behavior
6927// :177:25: note: when computing vector element at index '0'
6928// :177:25: error: use of undefined value here causes illegal behavior
6929// :177:25: note: when computing vector element at index '0'
6930// :177:25: error: use of undefined value here causes illegal behavior
6931// :177:25: error: use of undefined value here causes illegal behavior
6932// :177:25: error: use of undefined value here causes illegal behavior
6933// :177:25: error: use of undefined value here causes illegal behavior
6934// :177:25: error: use of undefined value here causes illegal behavior
6935// :177:25: error: use of undefined value here causes illegal behavior
6936// :177:25: error: use of undefined value here causes illegal behavior
6937// :177:25: note: when computing vector element at index '1'
6938// :177:25: error: use of undefined value here causes illegal behavior
6939// :177:25: note: when computing vector element at index '1'
6940// :177:25: error: use of undefined value here causes illegal behavior
6941// :177:25: note: when computing vector element at index '1'
6942// :177:25: error: use of undefined value here causes illegal behavior
6943// :177:25: note: when computing vector element at index '1'
6944// :177:25: error: use of undefined value here causes illegal behavior
6945// :177:25: note: when computing vector element at index '0'
6946// :177:25: error: use of undefined value here causes illegal behavior
6947// :177:25: note: when computing vector element at index '0'
6948// :177:25: error: use of undefined value here causes illegal behavior
6949// :177:25: note: when computing vector element at index '0'
6950// :177:25: error: use of undefined value here causes illegal behavior
6951// :177:25: note: when computing vector element at index '0'
6952// :177:25: error: use of undefined value here causes illegal behavior
6953// :177:25: error: use of undefined value here causes illegal behavior
6954// :177:25: error: use of undefined value here causes illegal behavior
6955// :177:25: error: use of undefined value here causes illegal behavior
6956// :177:25: error: use of undefined value here causes illegal behavior
6957// :177:25: error: use of undefined value here causes illegal behavior
6958// :177:25: error: use of undefined value here causes illegal behavior
6959// :177:25: note: when computing vector element at index '1'
6960// :177:25: error: use of undefined value here causes illegal behavior
6961// :177:25: note: when computing vector element at index '1'
6962// :177:25: error: use of undefined value here causes illegal behavior
6963// :177:25: note: when computing vector element at index '1'
6964// :177:25: error: use of undefined value here causes illegal behavior
6965// :177:25: note: when computing vector element at index '1'
6966// :177:25: error: use of undefined value here causes illegal behavior
6967// :177:25: note: when computing vector element at index '0'
6968// :177:25: error: use of undefined value here causes illegal behavior
6969// :177:25: note: when computing vector element at index '0'
6970// :177:25: error: use of undefined value here causes illegal behavior
6971// :177:25: note: when computing vector element at index '0'
6972// :177:25: error: use of undefined value here causes illegal behavior
6973// :177:25: note: when computing vector element at index '0'
6974// :177:25: error: use of undefined value here causes illegal behavior
6975// :177:25: error: use of undefined value here causes illegal behavior
6976// :177:25: error: use of undefined value here causes illegal behavior
6977// :177:25: error: use of undefined value here causes illegal behavior
6978// :177:25: error: use of undefined value here causes illegal behavior
6979// :177:25: error: use of undefined value here causes illegal behavior
6980// :177:25: error: use of undefined value here causes illegal behavior
6981// :177:25: note: when computing vector element at index '1'
6982// :177:25: error: use of undefined value here causes illegal behavior
6983// :177:25: note: when computing vector element at index '1'
6984// :177:25: error: use of undefined value here causes illegal behavior
6985// :177:25: note: when computing vector element at index '1'
6986// :177:25: error: use of undefined value here causes illegal behavior
6987// :177:25: note: when computing vector element at index '1'
6988// :177:25: error: use of undefined value here causes illegal behavior
6989// :177:25: note: when computing vector element at index '0'
6990// :177:25: error: use of undefined value here causes illegal behavior
6991// :177:25: note: when computing vector element at index '0'
6992// :177:25: error: use of undefined value here causes illegal behavior
6993// :177:25: note: when computing vector element at index '0'
6994// :177:25: error: use of undefined value here causes illegal behavior
6995// :177:25: note: when computing vector element at index '0'
6996// :177:25: error: use of undefined value here causes illegal behavior
6997// :177:25: error: use of undefined value here causes illegal behavior
6998// :177:25: error: use of undefined value here causes illegal behavior
6999// :177:25: error: use of undefined value here causes illegal behavior
7000// :177:25: error: use of undefined value here causes illegal behavior
7001// :177:25: error: use of undefined value here causes illegal behavior
7002// :177:25: error: use of undefined value here causes illegal behavior
7003// :177:25: note: when computing vector element at index '1'
7004// :177:25: error: use of undefined value here causes illegal behavior
7005// :177:25: note: when computing vector element at index '1'
7006// :177:25: error: use of undefined value here causes illegal behavior
7007// :177:25: note: when computing vector element at index '1'
7008// :177:25: error: use of undefined value here causes illegal behavior
7009// :177:25: note: when computing vector element at index '1'
7010// :177:25: error: use of undefined value here causes illegal behavior
7011// :177:25: note: when computing vector element at index '0'
7012// :177:25: error: use of undefined value here causes illegal behavior
7013// :177:25: note: when computing vector element at index '0'
7014// :177:25: error: use of undefined value here causes illegal behavior
7015// :177:25: note: when computing vector element at index '0'
7016// :177:25: error: use of undefined value here causes illegal behavior
7017// :177:25: note: when computing vector element at index '0'
7018// :177:25: error: use of undefined value here causes illegal behavior
7019// :177:25: error: use of undefined value here causes illegal behavior
7020// :177:25: error: use of undefined value here causes illegal behavior
7021// :177:25: error: use of undefined value here causes illegal behavior
7022// :177:25: error: use of undefined value here causes illegal behavior
7023// :177:25: error: use of undefined value here causes illegal behavior
7024// :177:25: error: use of undefined value here causes illegal behavior
7025// :177:25: note: when computing vector element at index '1'
7026// :177:25: error: use of undefined value here causes illegal behavior
7027// :177:25: note: when computing vector element at index '1'
7028// :177:25: error: use of undefined value here causes illegal behavior
7029// :177:25: note: when computing vector element at index '1'
7030// :177:25: error: use of undefined value here causes illegal behavior
7031// :177:25: note: when computing vector element at index '1'
7032// :177:25: error: use of undefined value here causes illegal behavior
7033// :177:25: note: when computing vector element at index '0'
7034// :177:25: error: use of undefined value here causes illegal behavior
7035// :177:25: note: when computing vector element at index '0'
7036// :177:25: error: use of undefined value here causes illegal behavior
7037// :177:25: note: when computing vector element at index '0'
7038// :177:25: error: use of undefined value here causes illegal behavior
7039// :177:25: note: when computing vector element at index '0'
7040// :177:25: error: use of undefined value here causes illegal behavior
7041// :177:25: error: use of undefined value here causes illegal behavior
7042// :177:25: error: use of undefined value here causes illegal behavior
7043// :177:25: error: use of undefined value here causes illegal behavior
7044// :177:25: error: use of undefined value here causes illegal behavior
7045// :177:25: error: use of undefined value here causes illegal behavior
7046// :177:25: error: use of undefined value here causes illegal behavior
7047// :177:25: note: when computing vector element at index '1'
7048// :177:25: error: use of undefined value here causes illegal behavior
7049// :177:25: note: when computing vector element at index '1'
7050// :177:25: error: use of undefined value here causes illegal behavior
7051// :177:25: note: when computing vector element at index '1'
7052// :177:25: error: use of undefined value here causes illegal behavior
7053// :177:25: note: when computing vector element at index '1'
7054// :177:25: error: use of undefined value here causes illegal behavior
7055// :177:25: note: when computing vector element at index '0'
7056// :177:25: error: use of undefined value here causes illegal behavior
7057// :177:25: note: when computing vector element at index '0'
7058// :177:25: error: use of undefined value here causes illegal behavior
7059// :177:25: note: when computing vector element at index '0'
7060// :177:25: error: use of undefined value here causes illegal behavior
7061// :177:25: note: when computing vector element at index '0'
7062// :177:25: error: use of undefined value here causes illegal behavior
7063// :177:25: error: use of undefined value here causes illegal behavior
7064// :177:25: error: use of undefined value here causes illegal behavior
7065// :177:25: error: use of undefined value here causes illegal behavior
7066// :177:25: error: use of undefined value here causes illegal behavior
7067// :177:25: error: use of undefined value here causes illegal behavior
7068// :177:25: error: use of undefined value here causes illegal behavior
7069// :177:25: note: when computing vector element at index '1'
7070// :177:25: error: use of undefined value here causes illegal behavior
7071// :177:25: note: when computing vector element at index '1'
7072// :177:25: error: use of undefined value here causes illegal behavior
7073// :177:25: note: when computing vector element at index '1'
7074// :177:25: error: use of undefined value here causes illegal behavior
7075// :177:25: note: when computing vector element at index '1'
7076// :177:25: error: use of undefined value here causes illegal behavior
7077// :177:25: note: when computing vector element at index '0'
7078// :177:25: error: use of undefined value here causes illegal behavior
7079// :177:25: note: when computing vector element at index '0'
7080// :177:25: error: use of undefined value here causes illegal behavior
7081// :177:25: note: when computing vector element at index '0'
7082// :177:25: error: use of undefined value here causes illegal behavior
7083// :177:25: note: when computing vector element at index '0'
7084// :177:25: error: use of undefined value here causes illegal behavior
7085// :177:25: error: use of undefined value here causes illegal behavior
7086// :177:25: error: use of undefined value here causes illegal behavior
7087// :177:25: error: use of undefined value here causes illegal behavior
7088// :177:25: error: use of undefined value here causes illegal behavior
7089// :177:25: error: use of undefined value here causes illegal behavior
7090// :177:25: error: use of undefined value here causes illegal behavior
7091// :177:25: note: when computing vector element at index '1'
7092// :177:25: error: use of undefined value here causes illegal behavior
7093// :177:25: note: when computing vector element at index '1'
7094// :177:25: error: use of undefined value here causes illegal behavior
7095// :177:25: note: when computing vector element at index '1'
7096// :177:25: error: use of undefined value here causes illegal behavior
7097// :177:25: note: when computing vector element at index '1'
7098// :177:25: error: use of undefined value here causes illegal behavior
7099// :177:25: note: when computing vector element at index '0'
7100// :177:25: error: use of undefined value here causes illegal behavior
7101// :177:25: note: when computing vector element at index '0'
7102// :177:25: error: use of undefined value here causes illegal behavior
7103// :177:25: note: when computing vector element at index '0'
7104// :177:25: error: use of undefined value here causes illegal behavior
7105// :177:25: note: when computing vector element at index '0'
192// :65:17: error: use of undefined value here causes illegal behavior
193// :65:17: error: use of undefined value here causes illegal behavior
194// :65:17: error: use of undefined value here causes illegal behavior
195// :65:17: note: when computing vector element at index '0'
196// :65:17: error: use of undefined value here causes illegal behavior
197// :65:17: note: when computing vector element at index '0'
198// :65:17: error: use of undefined value here causes illegal behavior
199// :65:17: note: when computing vector element at index '0'
200// :65:17: error: use of undefined value here causes illegal behavior
201// :65:17: note: when computing vector element at index '0'
202// :65:17: error: use of undefined value here causes illegal behavior
203// :65:17: note: when computing vector element at index '1'
204// :65:17: error: use of undefined value here causes illegal behavior
205// :65:17: note: when computing vector element at index '1'
206// :65:17: error: use of undefined value here causes illegal behavior
207// :65:17: note: when computing vector element at index '0'
208// :65:17: error: use of undefined value here causes illegal behavior
209// :65:17: note: when computing vector element at index '0'
210// :65:17: error: use of undefined value here causes illegal behavior
211// :65:17: note: when computing vector element at index '0'
212// :65:17: error: use of undefined value here causes illegal behavior
213// :65:17: note: when computing vector element at index '0'
214// :65:17: error: use of undefined value here causes illegal behavior
215// :65:17: error: use of undefined value here causes illegal behavior
216// :65:17: error: use of undefined value here causes illegal behavior
217// :65:17: note: when computing vector element at index '0'
218// :65:17: error: use of undefined value here causes illegal behavior
219// :65:17: note: when computing vector element at index '0'
220// :65:17: error: use of undefined value here causes illegal behavior
221// :65:17: note: when computing vector element at index '0'
222// :65:17: error: use of undefined value here causes illegal behavior
223// :65:17: note: when computing vector element at index '0'
224// :65:17: error: use of undefined value here causes illegal behavior
225// :65:17: note: when computing vector element at index '1'
226// :65:17: error: use of undefined value here causes illegal behavior
227// :65:17: note: when computing vector element at index '1'
228// :65:17: error: use of undefined value here causes illegal behavior
229// :65:17: note: when computing vector element at index '0'
230// :65:17: error: use of undefined value here causes illegal behavior
231// :65:17: note: when computing vector element at index '0'
232// :65:17: error: use of undefined value here causes illegal behavior
233// :65:17: note: when computing vector element at index '0'
234// :65:17: error: use of undefined value here causes illegal behavior
235// :65:17: note: when computing vector element at index '0'
236// :65:17: error: use of undefined value here causes illegal behavior
237// :65:17: error: use of undefined value here causes illegal behavior
238// :65:17: error: use of undefined value here causes illegal behavior
239// :65:17: note: when computing vector element at index '0'
240// :65:17: error: use of undefined value here causes illegal behavior
241// :65:17: note: when computing vector element at index '0'
242// :65:17: error: use of undefined value here causes illegal behavior
243// :65:17: note: when computing vector element at index '0'
244// :65:17: error: use of undefined value here causes illegal behavior
245// :65:17: note: when computing vector element at index '0'
246// :65:17: error: use of undefined value here causes illegal behavior
247// :65:17: note: when computing vector element at index '1'
248// :65:17: error: use of undefined value here causes illegal behavior
249// :65:17: note: when computing vector element at index '1'
250// :65:17: error: use of undefined value here causes illegal behavior
251// :65:17: note: when computing vector element at index '0'
252// :65:17: error: use of undefined value here causes illegal behavior
253// :65:17: note: when computing vector element at index '0'
254// :65:17: error: use of undefined value here causes illegal behavior
255// :65:17: note: when computing vector element at index '0'
256// :65:17: error: use of undefined value here causes illegal behavior
257// :65:17: note: when computing vector element at index '0'
258// :65:17: error: use of undefined value here causes illegal behavior
259// :65:17: error: use of undefined value here causes illegal behavior
260// :65:17: error: use of undefined value here causes illegal behavior
261// :65:17: note: when computing vector element at index '0'
262// :65:17: error: use of undefined value here causes illegal behavior
263// :65:17: note: when computing vector element at index '0'
264// :65:17: error: use of undefined value here causes illegal behavior
265// :65:17: note: when computing vector element at index '0'
266// :65:17: error: use of undefined value here causes illegal behavior
267// :65:17: note: when computing vector element at index '0'
268// :65:17: error: use of undefined value here causes illegal behavior
269// :65:17: note: when computing vector element at index '1'
270// :65:17: error: use of undefined value here causes illegal behavior
271// :65:17: note: when computing vector element at index '1'
272// :65:17: error: use of undefined value here causes illegal behavior
273// :65:17: note: when computing vector element at index '0'
274// :65:17: error: use of undefined value here causes illegal behavior
275// :65:17: note: when computing vector element at index '0'
276// :65:17: error: use of undefined value here causes illegal behavior
277// :65:17: note: when computing vector element at index '0'
278// :65:17: error: use of undefined value here causes illegal behavior
279// :65:17: note: when computing vector element at index '0'
280// :65:17: error: use of undefined value here causes illegal behavior
281// :65:17: error: use of undefined value here causes illegal behavior
282// :65:17: error: use of undefined value here causes illegal behavior
283// :65:17: note: when computing vector element at index '0'
284// :65:17: error: use of undefined value here causes illegal behavior
285// :65:17: note: when computing vector element at index '0'
286// :65:17: error: use of undefined value here causes illegal behavior
287// :65:17: note: when computing vector element at index '0'
288// :65:17: error: use of undefined value here causes illegal behavior
289// :65:17: note: when computing vector element at index '0'
290// :65:17: error: use of undefined value here causes illegal behavior
291// :65:17: note: when computing vector element at index '1'
292// :65:17: error: use of undefined value here causes illegal behavior
293// :65:17: note: when computing vector element at index '1'
294// :65:17: error: use of undefined value here causes illegal behavior
295// :65:17: note: when computing vector element at index '0'
296// :65:17: error: use of undefined value here causes illegal behavior
297// :65:17: note: when computing vector element at index '0'
298// :65:17: error: use of undefined value here causes illegal behavior
299// :65:17: note: when computing vector element at index '0'
300// :65:17: error: use of undefined value here causes illegal behavior
301// :65:17: note: when computing vector element at index '0'
302// :65:17: error: use of undefined value here causes illegal behavior
303// :65:17: error: use of undefined value here causes illegal behavior
304// :65:17: error: use of undefined value here causes illegal behavior
305// :65:17: note: when computing vector element at index '0'
306// :65:17: error: use of undefined value here causes illegal behavior
307// :65:17: note: when computing vector element at index '0'
308// :65:17: error: use of undefined value here causes illegal behavior
309// :65:17: note: when computing vector element at index '0'
310// :65:17: error: use of undefined value here causes illegal behavior
311// :65:17: note: when computing vector element at index '0'
312// :65:17: error: use of undefined value here causes illegal behavior
313// :65:17: note: when computing vector element at index '1'
314// :65:17: error: use of undefined value here causes illegal behavior
315// :65:17: note: when computing vector element at index '1'
316// :65:17: error: use of undefined value here causes illegal behavior
317// :65:17: note: when computing vector element at index '0'
318// :65:17: error: use of undefined value here causes illegal behavior
319// :65:17: note: when computing vector element at index '0'
320// :65:17: error: use of undefined value here causes illegal behavior
321// :65:17: note: when computing vector element at index '0'
322// :65:17: error: use of undefined value here causes illegal behavior
323// :65:17: note: when computing vector element at index '0'
324// :65:17: error: use of undefined value here causes illegal behavior
325// :65:17: error: use of undefined value here causes illegal behavior
326// :65:17: error: use of undefined value here causes illegal behavior
327// :65:17: note: when computing vector element at index '0'
328// :65:17: error: use of undefined value here causes illegal behavior
329// :65:17: note: when computing vector element at index '0'
330// :65:17: error: use of undefined value here causes illegal behavior
331// :65:17: note: when computing vector element at index '0'
332// :65:17: error: use of undefined value here causes illegal behavior
333// :65:17: note: when computing vector element at index '0'
334// :65:17: error: use of undefined value here causes illegal behavior
335// :65:17: note: when computing vector element at index '1'
336// :65:17: error: use of undefined value here causes illegal behavior
337// :65:17: note: when computing vector element at index '1'
338// :65:17: error: use of undefined value here causes illegal behavior
339// :65:17: note: when computing vector element at index '0'
340// :65:17: error: use of undefined value here causes illegal behavior
341// :65:17: note: when computing vector element at index '0'
342// :65:17: error: use of undefined value here causes illegal behavior
343// :65:17: note: when computing vector element at index '0'
344// :65:17: error: use of undefined value here causes illegal behavior
345// :65:17: note: when computing vector element at index '0'
346// :65:17: error: use of undefined value here causes illegal behavior
347// :65:17: error: use of undefined value here causes illegal behavior
348// :65:17: error: use of undefined value here causes illegal behavior
349// :65:17: note: when computing vector element at index '0'
350// :65:17: error: use of undefined value here causes illegal behavior
351// :65:17: note: when computing vector element at index '0'
352// :65:17: error: use of undefined value here causes illegal behavior
353// :65:17: note: when computing vector element at index '0'
354// :65:17: error: use of undefined value here causes illegal behavior
355// :65:17: note: when computing vector element at index '0'
356// :65:17: error: use of undefined value here causes illegal behavior
357// :65:17: note: when computing vector element at index '1'
358// :65:17: error: use of undefined value here causes illegal behavior
359// :65:17: note: when computing vector element at index '1'
360// :65:17: error: use of undefined value here causes illegal behavior
361// :65:17: note: when computing vector element at index '0'
362// :65:17: error: use of undefined value here causes illegal behavior
363// :65:17: note: when computing vector element at index '0'
364// :65:17: error: use of undefined value here causes illegal behavior
365// :65:17: note: when computing vector element at index '0'
366// :65:17: error: use of undefined value here causes illegal behavior
367// :65:17: note: when computing vector element at index '0'
368// :65:17: error: use of undefined value here causes illegal behavior
369// :65:17: error: use of undefined value here causes illegal behavior
370// :65:17: error: use of undefined value here causes illegal behavior
371// :65:17: note: when computing vector element at index '0'
372// :65:17: error: use of undefined value here causes illegal behavior
373// :65:17: note: when computing vector element at index '0'
374// :65:17: error: use of undefined value here causes illegal behavior
375// :65:17: note: when computing vector element at index '0'
376// :65:17: error: use of undefined value here causes illegal behavior
377// :65:17: note: when computing vector element at index '0'
378// :65:17: error: use of undefined value here causes illegal behavior
379// :65:17: note: when computing vector element at index '1'
380// :65:17: error: use of undefined value here causes illegal behavior
381// :65:17: note: when computing vector element at index '1'
382// :65:17: error: use of undefined value here causes illegal behavior
383// :65:17: note: when computing vector element at index '0'
384// :65:17: error: use of undefined value here causes illegal behavior
385// :65:17: note: when computing vector element at index '0'
386// :65:17: error: use of undefined value here causes illegal behavior
387// :65:17: note: when computing vector element at index '0'
388// :65:17: error: use of undefined value here causes illegal behavior
389// :65:17: note: when computing vector element at index '0'
390// :65:17: error: use of undefined value here causes illegal behavior
391// :65:17: error: use of undefined value here causes illegal behavior
392// :65:17: error: use of undefined value here causes illegal behavior
393// :65:17: note: when computing vector element at index '0'
394// :65:17: error: use of undefined value here causes illegal behavior
395// :65:17: note: when computing vector element at index '0'
396// :65:17: error: use of undefined value here causes illegal behavior
397// :65:17: note: when computing vector element at index '0'
398// :65:17: error: use of undefined value here causes illegal behavior
399// :65:17: note: when computing vector element at index '0'
400// :65:17: error: use of undefined value here causes illegal behavior
401// :65:17: note: when computing vector element at index '1'
402// :65:17: error: use of undefined value here causes illegal behavior
403// :65:17: note: when computing vector element at index '1'
404// :65:17: error: use of undefined value here causes illegal behavior
405// :65:17: note: when computing vector element at index '0'
406// :65:17: error: use of undefined value here causes illegal behavior
407// :65:17: note: when computing vector element at index '0'
408// :65:17: error: use of undefined value here causes illegal behavior
409// :65:17: note: when computing vector element at index '0'
410// :65:17: error: use of undefined value here causes illegal behavior
411// :65:17: note: when computing vector element at index '0'
412// :65:17: error: use of undefined value here causes illegal behavior
413// :65:17: error: use of undefined value here causes illegal behavior
414// :65:17: error: use of undefined value here causes illegal behavior
415// :65:17: note: when computing vector element at index '0'
416// :65:17: error: use of undefined value here causes illegal behavior
417// :65:17: note: when computing vector element at index '0'
418// :65:17: error: use of undefined value here causes illegal behavior
419// :65:17: note: when computing vector element at index '0'
420// :65:17: error: use of undefined value here causes illegal behavior
421// :65:17: note: when computing vector element at index '0'
422// :65:17: error: use of undefined value here causes illegal behavior
423// :65:17: note: when computing vector element at index '1'
424// :65:17: error: use of undefined value here causes illegal behavior
425// :65:17: note: when computing vector element at index '1'
426// :65:17: error: use of undefined value here causes illegal behavior
427// :65:17: note: when computing vector element at index '0'
428// :65:17: error: use of undefined value here causes illegal behavior
429// :65:17: note: when computing vector element at index '0'
430// :65:17: error: use of undefined value here causes illegal behavior
431// :65:17: note: when computing vector element at index '0'
432// :65:17: error: use of undefined value here causes illegal behavior
433// :65:17: note: when computing vector element at index '0'
434// :65:21: error: use of undefined value here causes illegal behavior
435// :65:21: note: when computing vector element at index '0'
436// :65:21: error: use of undefined value here causes illegal behavior
437// :65:21: note: when computing vector element at index '0'
438// :65:21: error: use of undefined value here causes illegal behavior
439// :65:21: note: when computing vector element at index '0'
440// :65:21: error: use of undefined value here causes illegal behavior
441// :65:21: note: when computing vector element at index '0'
442// :65:21: error: use of undefined value here causes illegal behavior
443// :65:21: note: when computing vector element at index '0'
444// :65:21: error: use of undefined value here causes illegal behavior
445// :65:21: note: when computing vector element at index '0'
446// :65:21: error: use of undefined value here causes illegal behavior
447// :65:21: note: when computing vector element at index '0'
448// :65:21: error: use of undefined value here causes illegal behavior
449// :65:21: note: when computing vector element at index '0'
450// :65:21: error: use of undefined value here causes illegal behavior
451// :65:21: note: when computing vector element at index '0'
452// :65:21: error: use of undefined value here causes illegal behavior
453// :65:21: note: when computing vector element at index '0'
454// :65:21: error: use of undefined value here causes illegal behavior
455// :65:21: note: when computing vector element at index '0'
456// :65:21: error: use of undefined value here causes illegal behavior
457// :65:21: note: when computing vector element at index '0'
458// :65:21: error: use of undefined value here causes illegal behavior
459// :65:21: note: when computing vector element at index '0'
460// :65:21: error: use of undefined value here causes illegal behavior
461// :65:21: note: when computing vector element at index '0'
462// :65:21: error: use of undefined value here causes illegal behavior
463// :65:21: note: when computing vector element at index '0'
464// :65:21: error: use of undefined value here causes illegal behavior
465// :65:21: note: when computing vector element at index '0'
466// :65:21: error: use of undefined value here causes illegal behavior
467// :65:21: note: when computing vector element at index '0'
468// :65:21: error: use of undefined value here causes illegal behavior
469// :65:21: note: when computing vector element at index '0'
470// :65:21: error: use of undefined value here causes illegal behavior
471// :65:21: note: when computing vector element at index '0'
472// :65:21: error: use of undefined value here causes illegal behavior
473// :65:21: note: when computing vector element at index '0'
474// :65:21: error: use of undefined value here causes illegal behavior
475// :65:21: note: when computing vector element at index '0'
476// :65:21: error: use of undefined value here causes illegal behavior
477// :65:21: note: when computing vector element at index '0'
478// :69:27: error: use of undefined value here causes illegal behavior
479// :69:27: error: use of undefined value here causes illegal behavior
480// :69:27: error: use of undefined value here causes illegal behavior
481// :69:27: note: when computing vector element at index '0'
482// :69:27: error: use of undefined value here causes illegal behavior
483// :69:27: note: when computing vector element at index '0'
484// :69:27: error: use of undefined value here causes illegal behavior
485// :69:27: note: when computing vector element at index '0'
486// :69:27: error: use of undefined value here causes illegal behavior
487// :69:27: note: when computing vector element at index '0'
488// :69:27: error: use of undefined value here causes illegal behavior
489// :69:27: note: when computing vector element at index '1'
490// :69:27: error: use of undefined value here causes illegal behavior
491// :69:27: note: when computing vector element at index '1'
492// :69:27: error: use of undefined value here causes illegal behavior
493// :69:27: note: when computing vector element at index '0'
494// :69:27: error: use of undefined value here causes illegal behavior
495// :69:27: note: when computing vector element at index '0'
496// :69:27: error: use of undefined value here causes illegal behavior
497// :69:27: note: when computing vector element at index '0'
498// :69:27: error: use of undefined value here causes illegal behavior
499// :69:27: note: when computing vector element at index '0'
500// :69:27: error: use of undefined value here causes illegal behavior
501// :69:27: error: use of undefined value here causes illegal behavior
502// :69:27: error: use of undefined value here causes illegal behavior
503// :69:27: note: when computing vector element at index '0'
504// :69:27: error: use of undefined value here causes illegal behavior
505// :69:27: note: when computing vector element at index '0'
506// :69:27: error: use of undefined value here causes illegal behavior
507// :69:27: note: when computing vector element at index '0'
508// :69:27: error: use of undefined value here causes illegal behavior
509// :69:27: note: when computing vector element at index '0'
510// :69:27: error: use of undefined value here causes illegal behavior
511// :69:27: note: when computing vector element at index '1'
512// :69:27: error: use of undefined value here causes illegal behavior
513// :69:27: note: when computing vector element at index '1'
514// :69:27: error: use of undefined value here causes illegal behavior
515// :69:27: note: when computing vector element at index '0'
516// :69:27: error: use of undefined value here causes illegal behavior
517// :69:27: note: when computing vector element at index '0'
518// :69:27: error: use of undefined value here causes illegal behavior
519// :69:27: note: when computing vector element at index '0'
520// :69:27: error: use of undefined value here causes illegal behavior
521// :69:27: note: when computing vector element at index '0'
522// :69:27: error: use of undefined value here causes illegal behavior
523// :69:27: error: use of undefined value here causes illegal behavior
524// :69:27: error: use of undefined value here causes illegal behavior
525// :69:27: note: when computing vector element at index '0'
526// :69:27: error: use of undefined value here causes illegal behavior
527// :69:27: note: when computing vector element at index '0'
528// :69:27: error: use of undefined value here causes illegal behavior
529// :69:27: note: when computing vector element at index '0'
530// :69:27: error: use of undefined value here causes illegal behavior
531// :69:27: note: when computing vector element at index '0'
532// :69:27: error: use of undefined value here causes illegal behavior
533// :69:27: note: when computing vector element at index '1'
534// :69:27: error: use of undefined value here causes illegal behavior
535// :69:27: note: when computing vector element at index '1'
536// :69:27: error: use of undefined value here causes illegal behavior
537// :69:27: note: when computing vector element at index '0'
538// :69:27: error: use of undefined value here causes illegal behavior
539// :69:27: note: when computing vector element at index '0'
540// :69:27: error: use of undefined value here causes illegal behavior
541// :69:27: note: when computing vector element at index '0'
542// :69:27: error: use of undefined value here causes illegal behavior
543// :69:27: note: when computing vector element at index '0'
544// :69:27: error: use of undefined value here causes illegal behavior
545// :69:27: error: use of undefined value here causes illegal behavior
546// :69:27: error: use of undefined value here causes illegal behavior
547// :69:27: note: when computing vector element at index '0'
548// :69:27: error: use of undefined value here causes illegal behavior
549// :69:27: note: when computing vector element at index '0'
550// :69:27: error: use of undefined value here causes illegal behavior
551// :69:27: note: when computing vector element at index '0'
552// :69:27: error: use of undefined value here causes illegal behavior
553// :69:27: note: when computing vector element at index '0'
554// :69:27: error: use of undefined value here causes illegal behavior
555// :69:27: note: when computing vector element at index '1'
556// :69:27: error: use of undefined value here causes illegal behavior
557// :69:27: note: when computing vector element at index '1'
558// :69:27: error: use of undefined value here causes illegal behavior
559// :69:27: note: when computing vector element at index '0'
560// :69:27: error: use of undefined value here causes illegal behavior
561// :69:27: note: when computing vector element at index '0'
562// :69:27: error: use of undefined value here causes illegal behavior
563// :69:27: note: when computing vector element at index '0'
564// :69:27: error: use of undefined value here causes illegal behavior
565// :69:27: note: when computing vector element at index '0'
566// :69:27: error: use of undefined value here causes illegal behavior
567// :69:27: error: use of undefined value here causes illegal behavior
568// :69:27: error: use of undefined value here causes illegal behavior
569// :69:27: note: when computing vector element at index '0'
570// :69:27: error: use of undefined value here causes illegal behavior
571// :69:27: note: when computing vector element at index '0'
572// :69:27: error: use of undefined value here causes illegal behavior
573// :69:27: note: when computing vector element at index '0'
574// :69:27: error: use of undefined value here causes illegal behavior
575// :69:27: note: when computing vector element at index '0'
576// :69:27: error: use of undefined value here causes illegal behavior
577// :69:27: note: when computing vector element at index '1'
578// :69:27: error: use of undefined value here causes illegal behavior
579// :69:27: note: when computing vector element at index '1'
580// :69:27: error: use of undefined value here causes illegal behavior
581// :69:27: note: when computing vector element at index '0'
582// :69:27: error: use of undefined value here causes illegal behavior
583// :69:27: note: when computing vector element at index '0'
584// :69:27: error: use of undefined value here causes illegal behavior
585// :69:27: note: when computing vector element at index '0'
586// :69:27: error: use of undefined value here causes illegal behavior
587// :69:27: note: when computing vector element at index '0'
588// :69:27: error: use of undefined value here causes illegal behavior
589// :69:27: error: use of undefined value here causes illegal behavior
590// :69:27: error: use of undefined value here causes illegal behavior
591// :69:27: note: when computing vector element at index '0'
592// :69:27: error: use of undefined value here causes illegal behavior
593// :69:27: note: when computing vector element at index '0'
594// :69:27: error: use of undefined value here causes illegal behavior
595// :69:27: note: when computing vector element at index '0'
596// :69:27: error: use of undefined value here causes illegal behavior
597// :69:27: note: when computing vector element at index '0'
598// :69:27: error: use of undefined value here causes illegal behavior
599// :69:27: note: when computing vector element at index '1'
600// :69:27: error: use of undefined value here causes illegal behavior
601// :69:27: note: when computing vector element at index '1'
602// :69:27: error: use of undefined value here causes illegal behavior
603// :69:27: note: when computing vector element at index '0'
604// :69:27: error: use of undefined value here causes illegal behavior
605// :69:27: note: when computing vector element at index '0'
606// :69:27: error: use of undefined value here causes illegal behavior
607// :69:27: note: when computing vector element at index '0'
608// :69:27: error: use of undefined value here causes illegal behavior
609// :69:27: note: when computing vector element at index '0'
610// :69:27: error: use of undefined value here causes illegal behavior
611// :69:27: error: use of undefined value here causes illegal behavior
612// :69:27: error: use of undefined value here causes illegal behavior
613// :69:27: note: when computing vector element at index '0'
614// :69:27: error: use of undefined value here causes illegal behavior
615// :69:27: note: when computing vector element at index '0'
616// :69:27: error: use of undefined value here causes illegal behavior
617// :69:27: note: when computing vector element at index '0'
618// :69:27: error: use of undefined value here causes illegal behavior
619// :69:27: note: when computing vector element at index '0'
620// :69:27: error: use of undefined value here causes illegal behavior
621// :69:27: note: when computing vector element at index '1'
622// :69:27: error: use of undefined value here causes illegal behavior
623// :69:27: note: when computing vector element at index '1'
624// :69:27: error: use of undefined value here causes illegal behavior
625// :69:27: note: when computing vector element at index '0'
626// :69:27: error: use of undefined value here causes illegal behavior
627// :69:27: note: when computing vector element at index '0'
628// :69:27: error: use of undefined value here causes illegal behavior
629// :69:27: note: when computing vector element at index '0'
630// :69:27: error: use of undefined value here causes illegal behavior
631// :69:27: note: when computing vector element at index '0'
632// :69:27: error: use of undefined value here causes illegal behavior
633// :69:27: error: use of undefined value here causes illegal behavior
634// :69:27: error: use of undefined value here causes illegal behavior
635// :69:27: note: when computing vector element at index '0'
636// :69:27: error: use of undefined value here causes illegal behavior
637// :69:27: note: when computing vector element at index '0'
638// :69:27: error: use of undefined value here causes illegal behavior
639// :69:27: note: when computing vector element at index '0'
640// :69:27: error: use of undefined value here causes illegal behavior
641// :69:27: note: when computing vector element at index '0'
642// :69:27: error: use of undefined value here causes illegal behavior
643// :69:27: note: when computing vector element at index '1'
644// :69:27: error: use of undefined value here causes illegal behavior
645// :69:27: note: when computing vector element at index '1'
646// :69:27: error: use of undefined value here causes illegal behavior
647// :69:27: note: when computing vector element at index '0'
648// :69:27: error: use of undefined value here causes illegal behavior
649// :69:27: note: when computing vector element at index '0'
650// :69:27: error: use of undefined value here causes illegal behavior
651// :69:27: note: when computing vector element at index '0'
652// :69:27: error: use of undefined value here causes illegal behavior
653// :69:27: note: when computing vector element at index '0'
654// :69:27: error: use of undefined value here causes illegal behavior
655// :69:27: error: use of undefined value here causes illegal behavior
656// :69:27: error: use of undefined value here causes illegal behavior
657// :69:27: note: when computing vector element at index '0'
658// :69:27: error: use of undefined value here causes illegal behavior
659// :69:27: note: when computing vector element at index '0'
660// :69:27: error: use of undefined value here causes illegal behavior
661// :69:27: note: when computing vector element at index '0'
662// :69:27: error: use of undefined value here causes illegal behavior
663// :69:27: note: when computing vector element at index '0'
664// :69:27: error: use of undefined value here causes illegal behavior
665// :69:27: note: when computing vector element at index '1'
666// :69:27: error: use of undefined value here causes illegal behavior
667// :69:27: note: when computing vector element at index '1'
668// :69:27: error: use of undefined value here causes illegal behavior
669// :69:27: note: when computing vector element at index '0'
670// :69:27: error: use of undefined value here causes illegal behavior
671// :69:27: note: when computing vector element at index '0'
672// :69:27: error: use of undefined value here causes illegal behavior
673// :69:27: note: when computing vector element at index '0'
674// :69:27: error: use of undefined value here causes illegal behavior
675// :69:27: note: when computing vector element at index '0'
676// :69:27: error: use of undefined value here causes illegal behavior
677// :69:27: error: use of undefined value here causes illegal behavior
678// :69:27: error: use of undefined value here causes illegal behavior
679// :69:27: note: when computing vector element at index '0'
680// :69:27: error: use of undefined value here causes illegal behavior
681// :69:27: note: when computing vector element at index '0'
682// :69:27: error: use of undefined value here causes illegal behavior
683// :69:27: note: when computing vector element at index '0'
684// :69:27: error: use of undefined value here causes illegal behavior
685// :69:27: note: when computing vector element at index '0'
686// :69:27: error: use of undefined value here causes illegal behavior
687// :69:27: note: when computing vector element at index '1'
688// :69:27: error: use of undefined value here causes illegal behavior
689// :69:27: note: when computing vector element at index '1'
690// :69:27: error: use of undefined value here causes illegal behavior
691// :69:27: note: when computing vector element at index '0'
692// :69:27: error: use of undefined value here causes illegal behavior
693// :69:27: note: when computing vector element at index '0'
694// :69:27: error: use of undefined value here causes illegal behavior
695// :69:27: note: when computing vector element at index '0'
696// :69:27: error: use of undefined value here causes illegal behavior
697// :69:27: note: when computing vector element at index '0'
698// :69:27: error: use of undefined value here causes illegal behavior
699// :69:27: error: use of undefined value here causes illegal behavior
700// :69:27: error: use of undefined value here causes illegal behavior
701// :69:27: note: when computing vector element at index '0'
702// :69:27: error: use of undefined value here causes illegal behavior
703// :69:27: note: when computing vector element at index '0'
704// :69:27: error: use of undefined value here causes illegal behavior
705// :69:27: note: when computing vector element at index '0'
706// :69:27: error: use of undefined value here causes illegal behavior
707// :69:27: note: when computing vector element at index '0'
708// :69:27: error: use of undefined value here causes illegal behavior
709// :69:27: note: when computing vector element at index '1'
710// :69:27: error: use of undefined value here causes illegal behavior
711// :69:27: note: when computing vector element at index '1'
712// :69:27: error: use of undefined value here causes illegal behavior
713// :69:27: note: when computing vector element at index '0'
714// :69:27: error: use of undefined value here causes illegal behavior
715// :69:27: note: when computing vector element at index '0'
716// :69:27: error: use of undefined value here causes illegal behavior
717// :69:27: note: when computing vector element at index '0'
718// :69:27: error: use of undefined value here causes illegal behavior
719// :69:27: note: when computing vector element at index '0'
720// :69:30: error: use of undefined value here causes illegal behavior
721// :69:30: note: when computing vector element at index '0'
722// :69:30: error: use of undefined value here causes illegal behavior
723// :69:30: note: when computing vector element at index '0'
724// :69:30: error: use of undefined value here causes illegal behavior
725// :69:30: note: when computing vector element at index '0'
726// :69:30: error: use of undefined value here causes illegal behavior
727// :69:30: note: when computing vector element at index '0'
728// :69:30: error: use of undefined value here causes illegal behavior
729// :69:30: note: when computing vector element at index '0'
730// :69:30: error: use of undefined value here causes illegal behavior
731// :69:30: note: when computing vector element at index '0'
732// :69:30: error: use of undefined value here causes illegal behavior
733// :69:30: note: when computing vector element at index '0'
734// :69:30: error: use of undefined value here causes illegal behavior
735// :69:30: note: when computing vector element at index '0'
736// :69:30: error: use of undefined value here causes illegal behavior
737// :69:30: note: when computing vector element at index '0'
738// :69:30: error: use of undefined value here causes illegal behavior
739// :69:30: note: when computing vector element at index '0'
740// :69:30: error: use of undefined value here causes illegal behavior
741// :69:30: note: when computing vector element at index '0'
742// :69:30: error: use of undefined value here causes illegal behavior
743// :69:30: note: when computing vector element at index '0'
744// :69:30: error: use of undefined value here causes illegal behavior
745// :69:30: note: when computing vector element at index '0'
746// :69:30: error: use of undefined value here causes illegal behavior
747// :69:30: note: when computing vector element at index '0'
748// :69:30: error: use of undefined value here causes illegal behavior
749// :69:30: note: when computing vector element at index '0'
750// :69:30: error: use of undefined value here causes illegal behavior
751// :69:30: note: when computing vector element at index '0'
752// :69:30: error: use of undefined value here causes illegal behavior
753// :69:30: note: when computing vector element at index '0'
754// :69:30: error: use of undefined value here causes illegal behavior
755// :69:30: note: when computing vector element at index '0'
756// :69:30: error: use of undefined value here causes illegal behavior
757// :69:30: note: when computing vector element at index '0'
758// :69:30: error: use of undefined value here causes illegal behavior
759// :69:30: note: when computing vector element at index '0'
760// :69:30: error: use of undefined value here causes illegal behavior
761// :69:30: note: when computing vector element at index '0'
762// :69:30: error: use of undefined value here causes illegal behavior
763// :69:30: note: when computing vector element at index '0'
764// :73:27: error: use of undefined value here causes illegal behavior
765// :73:27: error: use of undefined value here causes illegal behavior
766// :73:27: error: use of undefined value here causes illegal behavior
767// :73:27: note: when computing vector element at index '0'
768// :73:27: error: use of undefined value here causes illegal behavior
769// :73:27: note: when computing vector element at index '0'
770// :73:27: error: use of undefined value here causes illegal behavior
771// :73:27: note: when computing vector element at index '0'
772// :73:27: error: use of undefined value here causes illegal behavior
773// :73:27: note: when computing vector element at index '0'
774// :73:27: error: use of undefined value here causes illegal behavior
775// :73:27: note: when computing vector element at index '1'
776// :73:27: error: use of undefined value here causes illegal behavior
777// :73:27: note: when computing vector element at index '1'
778// :73:27: error: use of undefined value here causes illegal behavior
779// :73:27: note: when computing vector element at index '0'
780// :73:27: error: use of undefined value here causes illegal behavior
781// :73:27: note: when computing vector element at index '0'
782// :73:27: error: use of undefined value here causes illegal behavior
783// :73:27: note: when computing vector element at index '0'
784// :73:27: error: use of undefined value here causes illegal behavior
785// :73:27: note: when computing vector element at index '0'
786// :73:27: error: use of undefined value here causes illegal behavior
787// :73:27: error: use of undefined value here causes illegal behavior
788// :73:27: error: use of undefined value here causes illegal behavior
789// :73:27: note: when computing vector element at index '0'
790// :73:27: error: use of undefined value here causes illegal behavior
791// :73:27: note: when computing vector element at index '0'
792// :73:27: error: use of undefined value here causes illegal behavior
793// :73:27: note: when computing vector element at index '0'
794// :73:27: error: use of undefined value here causes illegal behavior
795// :73:27: note: when computing vector element at index '0'
796// :73:27: error: use of undefined value here causes illegal behavior
797// :73:27: note: when computing vector element at index '1'
798// :73:27: error: use of undefined value here causes illegal behavior
799// :73:27: note: when computing vector element at index '1'
800// :73:27: error: use of undefined value here causes illegal behavior
801// :73:27: note: when computing vector element at index '0'
802// :73:27: error: use of undefined value here causes illegal behavior
803// :73:27: note: when computing vector element at index '0'
804// :73:27: error: use of undefined value here causes illegal behavior
805// :73:27: note: when computing vector element at index '0'
806// :73:27: error: use of undefined value here causes illegal behavior
807// :73:27: note: when computing vector element at index '0'
808// :73:27: error: use of undefined value here causes illegal behavior
809// :73:27: error: use of undefined value here causes illegal behavior
810// :73:27: error: use of undefined value here causes illegal behavior
811// :73:27: note: when computing vector element at index '0'
812// :73:27: error: use of undefined value here causes illegal behavior
813// :73:27: note: when computing vector element at index '0'
814// :73:27: error: use of undefined value here causes illegal behavior
815// :73:27: note: when computing vector element at index '0'
816// :73:27: error: use of undefined value here causes illegal behavior
817// :73:27: note: when computing vector element at index '0'
818// :73:27: error: use of undefined value here causes illegal behavior
819// :73:27: note: when computing vector element at index '1'
820// :73:27: error: use of undefined value here causes illegal behavior
821// :73:27: note: when computing vector element at index '1'
822// :73:27: error: use of undefined value here causes illegal behavior
823// :73:27: note: when computing vector element at index '0'
824// :73:27: error: use of undefined value here causes illegal behavior
825// :73:27: note: when computing vector element at index '0'
826// :73:27: error: use of undefined value here causes illegal behavior
827// :73:27: note: when computing vector element at index '0'
828// :73:27: error: use of undefined value here causes illegal behavior
829// :73:27: note: when computing vector element at index '0'
830// :73:27: error: use of undefined value here causes illegal behavior
831// :73:27: error: use of undefined value here causes illegal behavior
832// :73:27: error: use of undefined value here causes illegal behavior
833// :73:27: note: when computing vector element at index '0'
834// :73:27: error: use of undefined value here causes illegal behavior
835// :73:27: note: when computing vector element at index '0'
836// :73:27: error: use of undefined value here causes illegal behavior
837// :73:27: note: when computing vector element at index '0'
838// :73:27: error: use of undefined value here causes illegal behavior
839// :73:27: note: when computing vector element at index '0'
840// :73:27: error: use of undefined value here causes illegal behavior
841// :73:27: note: when computing vector element at index '1'
842// :73:27: error: use of undefined value here causes illegal behavior
843// :73:27: note: when computing vector element at index '1'
844// :73:27: error: use of undefined value here causes illegal behavior
845// :73:27: note: when computing vector element at index '0'
846// :73:27: error: use of undefined value here causes illegal behavior
847// :73:27: note: when computing vector element at index '0'
848// :73:27: error: use of undefined value here causes illegal behavior
849// :73:27: note: when computing vector element at index '0'
850// :73:27: error: use of undefined value here causes illegal behavior
851// :73:27: note: when computing vector element at index '0'
852// :73:27: error: use of undefined value here causes illegal behavior
853// :73:27: error: use of undefined value here causes illegal behavior
854// :73:27: error: use of undefined value here causes illegal behavior
855// :73:27: note: when computing vector element at index '0'
856// :73:27: error: use of undefined value here causes illegal behavior
857// :73:27: note: when computing vector element at index '0'
858// :73:27: error: use of undefined value here causes illegal behavior
859// :73:27: note: when computing vector element at index '0'
860// :73:27: error: use of undefined value here causes illegal behavior
861// :73:27: note: when computing vector element at index '0'
862// :73:27: error: use of undefined value here causes illegal behavior
863// :73:27: note: when computing vector element at index '1'
864// :73:27: error: use of undefined value here causes illegal behavior
865// :73:27: note: when computing vector element at index '1'
866// :73:27: error: use of undefined value here causes illegal behavior
867// :73:27: note: when computing vector element at index '0'
868// :73:27: error: use of undefined value here causes illegal behavior
869// :73:27: note: when computing vector element at index '0'
870// :73:27: error: use of undefined value here causes illegal behavior
871// :73:27: note: when computing vector element at index '0'
872// :73:27: error: use of undefined value here causes illegal behavior
873// :73:27: note: when computing vector element at index '0'
874// :73:27: error: use of undefined value here causes illegal behavior
875// :73:27: error: use of undefined value here causes illegal behavior
876// :73:27: error: use of undefined value here causes illegal behavior
877// :73:27: note: when computing vector element at index '0'
878// :73:27: error: use of undefined value here causes illegal behavior
879// :73:27: note: when computing vector element at index '0'
880// :73:27: error: use of undefined value here causes illegal behavior
881// :73:27: note: when computing vector element at index '0'
882// :73:27: error: use of undefined value here causes illegal behavior
883// :73:27: note: when computing vector element at index '0'
884// :73:27: error: use of undefined value here causes illegal behavior
885// :73:27: note: when computing vector element at index '1'
886// :73:27: error: use of undefined value here causes illegal behavior
887// :73:27: note: when computing vector element at index '1'
888// :73:27: error: use of undefined value here causes illegal behavior
889// :73:27: note: when computing vector element at index '0'
890// :73:27: error: use of undefined value here causes illegal behavior
891// :73:27: note: when computing vector element at index '0'
892// :73:27: error: use of undefined value here causes illegal behavior
893// :73:27: note: when computing vector element at index '0'
894// :73:27: error: use of undefined value here causes illegal behavior
895// :73:27: note: when computing vector element at index '0'
896// :73:27: error: use of undefined value here causes illegal behavior
897// :73:27: error: use of undefined value here causes illegal behavior
898// :73:27: error: use of undefined value here causes illegal behavior
899// :73:27: note: when computing vector element at index '0'
900// :73:27: error: use of undefined value here causes illegal behavior
901// :73:27: note: when computing vector element at index '0'
902// :73:27: error: use of undefined value here causes illegal behavior
903// :73:27: note: when computing vector element at index '0'
904// :73:27: error: use of undefined value here causes illegal behavior
905// :73:27: note: when computing vector element at index '0'
906// :73:27: error: use of undefined value here causes illegal behavior
907// :73:27: note: when computing vector element at index '1'
908// :73:27: error: use of undefined value here causes illegal behavior
909// :73:27: note: when computing vector element at index '1'
910// :73:27: error: use of undefined value here causes illegal behavior
911// :73:27: note: when computing vector element at index '0'
912// :73:27: error: use of undefined value here causes illegal behavior
913// :73:27: note: when computing vector element at index '0'
914// :73:27: error: use of undefined value here causes illegal behavior
915// :73:27: note: when computing vector element at index '0'
916// :73:27: error: use of undefined value here causes illegal behavior
917// :73:27: note: when computing vector element at index '0'
918// :73:27: error: use of undefined value here causes illegal behavior
919// :73:27: error: use of undefined value here causes illegal behavior
920// :73:27: error: use of undefined value here causes illegal behavior
921// :73:27: note: when computing vector element at index '0'
922// :73:27: error: use of undefined value here causes illegal behavior
923// :73:27: note: when computing vector element at index '0'
924// :73:27: error: use of undefined value here causes illegal behavior
925// :73:27: note: when computing vector element at index '0'
926// :73:27: error: use of undefined value here causes illegal behavior
927// :73:27: note: when computing vector element at index '0'
928// :73:27: error: use of undefined value here causes illegal behavior
929// :73:27: note: when computing vector element at index '1'
930// :73:27: error: use of undefined value here causes illegal behavior
931// :73:27: note: when computing vector element at index '1'
932// :73:27: error: use of undefined value here causes illegal behavior
933// :73:27: note: when computing vector element at index '0'
934// :73:27: error: use of undefined value here causes illegal behavior
935// :73:27: note: when computing vector element at index '0'
936// :73:27: error: use of undefined value here causes illegal behavior
937// :73:27: note: when computing vector element at index '0'
938// :73:27: error: use of undefined value here causes illegal behavior
939// :73:27: note: when computing vector element at index '0'
940// :73:27: error: use of undefined value here causes illegal behavior
941// :73:27: error: use of undefined value here causes illegal behavior
942// :73:27: error: use of undefined value here causes illegal behavior
943// :73:27: note: when computing vector element at index '0'
944// :73:27: error: use of undefined value here causes illegal behavior
945// :73:27: note: when computing vector element at index '0'
946// :73:27: error: use of undefined value here causes illegal behavior
947// :73:27: note: when computing vector element at index '0'
948// :73:27: error: use of undefined value here causes illegal behavior
949// :73:27: note: when computing vector element at index '0'
950// :73:27: error: use of undefined value here causes illegal behavior
951// :73:27: note: when computing vector element at index '1'
952// :73:27: error: use of undefined value here causes illegal behavior
953// :73:27: note: when computing vector element at index '1'
954// :73:27: error: use of undefined value here causes illegal behavior
955// :73:27: note: when computing vector element at index '0'
956// :73:27: error: use of undefined value here causes illegal behavior
957// :73:27: note: when computing vector element at index '0'
958// :73:27: error: use of undefined value here causes illegal behavior
959// :73:27: note: when computing vector element at index '0'
960// :73:27: error: use of undefined value here causes illegal behavior
961// :73:27: note: when computing vector element at index '0'
962// :73:27: error: use of undefined value here causes illegal behavior
963// :73:27: error: use of undefined value here causes illegal behavior
964// :73:27: error: use of undefined value here causes illegal behavior
965// :73:27: note: when computing vector element at index '0'
966// :73:27: error: use of undefined value here causes illegal behavior
967// :73:27: note: when computing vector element at index '0'
968// :73:27: error: use of undefined value here causes illegal behavior
969// :73:27: note: when computing vector element at index '0'
970// :73:27: error: use of undefined value here causes illegal behavior
971// :73:27: note: when computing vector element at index '0'
972// :73:27: error: use of undefined value here causes illegal behavior
973// :73:27: note: when computing vector element at index '1'
974// :73:27: error: use of undefined value here causes illegal behavior
975// :73:27: note: when computing vector element at index '1'
976// :73:27: error: use of undefined value here causes illegal behavior
977// :73:27: note: when computing vector element at index '0'
978// :73:27: error: use of undefined value here causes illegal behavior
979// :73:27: note: when computing vector element at index '0'
980// :73:27: error: use of undefined value here causes illegal behavior
981// :73:27: note: when computing vector element at index '0'
982// :73:27: error: use of undefined value here causes illegal behavior
983// :73:27: note: when computing vector element at index '0'
984// :73:27: error: use of undefined value here causes illegal behavior
985// :73:27: error: use of undefined value here causes illegal behavior
986// :73:27: error: use of undefined value here causes illegal behavior
987// :73:27: note: when computing vector element at index '0'
988// :73:27: error: use of undefined value here causes illegal behavior
989// :73:27: note: when computing vector element at index '0'
990// :73:27: error: use of undefined value here causes illegal behavior
991// :73:27: note: when computing vector element at index '0'
992// :73:27: error: use of undefined value here causes illegal behavior
993// :73:27: note: when computing vector element at index '0'
994// :73:27: error: use of undefined value here causes illegal behavior
995// :73:27: note: when computing vector element at index '1'
996// :73:27: error: use of undefined value here causes illegal behavior
997// :73:27: note: when computing vector element at index '1'
998// :73:27: error: use of undefined value here causes illegal behavior
999// :73:27: note: when computing vector element at index '0'
1000// :73:27: error: use of undefined value here causes illegal behavior
1001// :73:27: note: when computing vector element at index '0'
1002// :73:27: error: use of undefined value here causes illegal behavior
1003// :73:27: note: when computing vector element at index '0'
1004// :73:27: error: use of undefined value here causes illegal behavior
1005// :73:27: note: when computing vector element at index '0'
1006// :73:30: error: use of undefined value here causes illegal behavior
1007// :73:30: note: when computing vector element at index '0'
1008// :73:30: error: use of undefined value here causes illegal behavior
1009// :73:30: note: when computing vector element at index '0'
1010// :73:30: error: use of undefined value here causes illegal behavior
1011// :73:30: note: when computing vector element at index '0'
1012// :73:30: error: use of undefined value here causes illegal behavior
1013// :73:30: note: when computing vector element at index '0'
1014// :73:30: error: use of undefined value here causes illegal behavior
1015// :73:30: note: when computing vector element at index '0'
1016// :73:30: error: use of undefined value here causes illegal behavior
1017// :73:30: note: when computing vector element at index '0'
1018// :73:30: error: use of undefined value here causes illegal behavior
1019// :73:30: note: when computing vector element at index '0'
1020// :73:30: error: use of undefined value here causes illegal behavior
1021// :73:30: note: when computing vector element at index '0'
1022// :73:30: error: use of undefined value here causes illegal behavior
1023// :73:30: note: when computing vector element at index '0'
1024// :73:30: error: use of undefined value here causes illegal behavior
1025// :73:30: note: when computing vector element at index '0'
1026// :73:30: error: use of undefined value here causes illegal behavior
1027// :73:30: note: when computing vector element at index '0'
1028// :73:30: error: use of undefined value here causes illegal behavior
1029// :73:30: note: when computing vector element at index '0'
1030// :73:30: error: use of undefined value here causes illegal behavior
1031// :73:30: note: when computing vector element at index '0'
1032// :73:30: error: use of undefined value here causes illegal behavior
1033// :73:30: note: when computing vector element at index '0'
1034// :73:30: error: use of undefined value here causes illegal behavior
1035// :73:30: note: when computing vector element at index '0'
1036// :73:30: error: use of undefined value here causes illegal behavior
1037// :73:30: note: when computing vector element at index '0'
1038// :73:30: error: use of undefined value here causes illegal behavior
1039// :73:30: note: when computing vector element at index '0'
1040// :73:30: error: use of undefined value here causes illegal behavior
1041// :73:30: note: when computing vector element at index '0'
1042// :73:30: error: use of undefined value here causes illegal behavior
1043// :73:30: note: when computing vector element at index '0'
1044// :73:30: error: use of undefined value here causes illegal behavior
1045// :73:30: note: when computing vector element at index '0'
1046// :73:30: error: use of undefined value here causes illegal behavior
1047// :73:30: note: when computing vector element at index '0'
1048// :73:30: error: use of undefined value here causes illegal behavior
1049// :73:30: note: when computing vector element at index '0'
1050// :77:27: error: use of undefined value here causes illegal behavior
1051// :77:27: error: use of undefined value here causes illegal behavior
1052// :77:27: error: use of undefined value here causes illegal behavior
1053// :77:27: note: when computing vector element at index '0'
1054// :77:27: error: use of undefined value here causes illegal behavior
1055// :77:27: note: when computing vector element at index '0'
1056// :77:27: error: use of undefined value here causes illegal behavior
1057// :77:27: note: when computing vector element at index '0'
1058// :77:27: error: use of undefined value here causes illegal behavior
1059// :77:27: note: when computing vector element at index '0'
1060// :77:27: error: use of undefined value here causes illegal behavior
1061// :77:27: note: when computing vector element at index '1'
1062// :77:27: error: use of undefined value here causes illegal behavior
1063// :77:27: note: when computing vector element at index '1'
1064// :77:27: error: use of undefined value here causes illegal behavior
1065// :77:27: note: when computing vector element at index '0'
1066// :77:27: error: use of undefined value here causes illegal behavior
1067// :77:27: note: when computing vector element at index '0'
1068// :77:27: error: use of undefined value here causes illegal behavior
1069// :77:27: note: when computing vector element at index '0'
1070// :77:27: error: use of undefined value here causes illegal behavior
1071// :77:27: note: when computing vector element at index '0'
1072// :77:27: error: use of undefined value here causes illegal behavior
1073// :77:27: error: use of undefined value here causes illegal behavior
1074// :77:27: error: use of undefined value here causes illegal behavior
1075// :77:27: note: when computing vector element at index '0'
1076// :77:27: error: use of undefined value here causes illegal behavior
1077// :77:27: note: when computing vector element at index '0'
1078// :77:27: error: use of undefined value here causes illegal behavior
1079// :77:27: note: when computing vector element at index '0'
1080// :77:27: error: use of undefined value here causes illegal behavior
1081// :77:27: note: when computing vector element at index '0'
1082// :77:27: error: use of undefined value here causes illegal behavior
1083// :77:27: note: when computing vector element at index '1'
1084// :77:27: error: use of undefined value here causes illegal behavior
1085// :77:27: note: when computing vector element at index '1'
1086// :77:27: error: use of undefined value here causes illegal behavior
1087// :77:27: note: when computing vector element at index '0'
1088// :77:27: error: use of undefined value here causes illegal behavior
1089// :77:27: note: when computing vector element at index '0'
1090// :77:27: error: use of undefined value here causes illegal behavior
1091// :77:27: note: when computing vector element at index '0'
1092// :77:27: error: use of undefined value here causes illegal behavior
1093// :77:27: note: when computing vector element at index '0'
1094// :77:27: error: use of undefined value here causes illegal behavior
1095// :77:27: error: use of undefined value here causes illegal behavior
1096// :77:27: error: use of undefined value here causes illegal behavior
1097// :77:27: note: when computing vector element at index '0'
1098// :77:27: error: use of undefined value here causes illegal behavior
1099// :77:27: note: when computing vector element at index '0'
1100// :77:27: error: use of undefined value here causes illegal behavior
1101// :77:27: note: when computing vector element at index '0'
1102// :77:27: error: use of undefined value here causes illegal behavior
1103// :77:27: note: when computing vector element at index '0'
1104// :77:27: error: use of undefined value here causes illegal behavior
1105// :77:27: note: when computing vector element at index '1'
1106// :77:27: error: use of undefined value here causes illegal behavior
1107// :77:27: note: when computing vector element at index '1'
1108// :77:27: error: use of undefined value here causes illegal behavior
1109// :77:27: note: when computing vector element at index '0'
1110// :77:27: error: use of undefined value here causes illegal behavior
1111// :77:27: note: when computing vector element at index '0'
1112// :77:27: error: use of undefined value here causes illegal behavior
1113// :77:27: note: when computing vector element at index '0'
1114// :77:27: error: use of undefined value here causes illegal behavior
1115// :77:27: note: when computing vector element at index '0'
1116// :77:27: error: use of undefined value here causes illegal behavior
1117// :77:27: error: use of undefined value here causes illegal behavior
1118// :77:27: error: use of undefined value here causes illegal behavior
1119// :77:27: note: when computing vector element at index '0'
1120// :77:27: error: use of undefined value here causes illegal behavior
1121// :77:27: note: when computing vector element at index '0'
1122// :77:27: error: use of undefined value here causes illegal behavior
1123// :77:27: note: when computing vector element at index '0'
1124// :77:27: error: use of undefined value here causes illegal behavior
1125// :77:27: note: when computing vector element at index '0'
1126// :77:27: error: use of undefined value here causes illegal behavior
1127// :77:27: note: when computing vector element at index '1'
1128// :77:27: error: use of undefined value here causes illegal behavior
1129// :77:27: note: when computing vector element at index '1'
1130// :77:27: error: use of undefined value here causes illegal behavior
1131// :77:27: note: when computing vector element at index '0'
1132// :77:27: error: use of undefined value here causes illegal behavior
1133// :77:27: note: when computing vector element at index '0'
1134// :77:27: error: use of undefined value here causes illegal behavior
1135// :77:27: note: when computing vector element at index '0'
1136// :77:27: error: use of undefined value here causes illegal behavior
1137// :77:27: note: when computing vector element at index '0'
1138// :77:27: error: use of undefined value here causes illegal behavior
1139// :77:27: error: use of undefined value here causes illegal behavior
1140// :77:27: error: use of undefined value here causes illegal behavior
1141// :77:27: note: when computing vector element at index '0'
1142// :77:27: error: use of undefined value here causes illegal behavior
1143// :77:27: note: when computing vector element at index '0'
1144// :77:27: error: use of undefined value here causes illegal behavior
1145// :77:27: note: when computing vector element at index '0'
1146// :77:27: error: use of undefined value here causes illegal behavior
1147// :77:27: note: when computing vector element at index '0'
1148// :77:27: error: use of undefined value here causes illegal behavior
1149// :77:27: note: when computing vector element at index '1'
1150// :77:27: error: use of undefined value here causes illegal behavior
1151// :77:27: note: when computing vector element at index '1'
1152// :77:27: error: use of undefined value here causes illegal behavior
1153// :77:27: note: when computing vector element at index '0'
1154// :77:27: error: use of undefined value here causes illegal behavior
1155// :77:27: note: when computing vector element at index '0'
1156// :77:27: error: use of undefined value here causes illegal behavior
1157// :77:27: note: when computing vector element at index '0'
1158// :77:27: error: use of undefined value here causes illegal behavior
1159// :77:27: note: when computing vector element at index '0'
1160// :77:27: error: use of undefined value here causes illegal behavior
1161// :77:27: error: use of undefined value here causes illegal behavior
1162// :77:27: error: use of undefined value here causes illegal behavior
1163// :77:27: note: when computing vector element at index '0'
1164// :77:27: error: use of undefined value here causes illegal behavior
1165// :77:27: note: when computing vector element at index '0'
1166// :77:27: error: use of undefined value here causes illegal behavior
1167// :77:27: note: when computing vector element at index '0'
1168// :77:27: error: use of undefined value here causes illegal behavior
1169// :77:27: note: when computing vector element at index '0'
1170// :77:27: error: use of undefined value here causes illegal behavior
1171// :77:27: note: when computing vector element at index '1'
1172// :77:27: error: use of undefined value here causes illegal behavior
1173// :77:27: note: when computing vector element at index '1'
1174// :77:27: error: use of undefined value here causes illegal behavior
1175// :77:27: note: when computing vector element at index '0'
1176// :77:27: error: use of undefined value here causes illegal behavior
1177// :77:27: note: when computing vector element at index '0'
1178// :77:27: error: use of undefined value here causes illegal behavior
1179// :77:27: note: when computing vector element at index '0'
1180// :77:27: error: use of undefined value here causes illegal behavior
1181// :77:27: note: when computing vector element at index '0'
1182// :77:27: error: use of undefined value here causes illegal behavior
1183// :77:27: error: use of undefined value here causes illegal behavior
1184// :77:27: error: use of undefined value here causes illegal behavior
1185// :77:27: note: when computing vector element at index '0'
1186// :77:27: error: use of undefined value here causes illegal behavior
1187// :77:27: note: when computing vector element at index '0'
1188// :77:27: error: use of undefined value here causes illegal behavior
1189// :77:27: note: when computing vector element at index '0'
1190// :77:27: error: use of undefined value here causes illegal behavior
1191// :77:27: note: when computing vector element at index '0'
1192// :77:27: error: use of undefined value here causes illegal behavior
1193// :77:27: note: when computing vector element at index '1'
1194// :77:27: error: use of undefined value here causes illegal behavior
1195// :77:27: note: when computing vector element at index '1'
1196// :77:27: error: use of undefined value here causes illegal behavior
1197// :77:27: note: when computing vector element at index '0'
1198// :77:27: error: use of undefined value here causes illegal behavior
1199// :77:27: note: when computing vector element at index '0'
1200// :77:27: error: use of undefined value here causes illegal behavior
1201// :77:27: note: when computing vector element at index '0'
1202// :77:27: error: use of undefined value here causes illegal behavior
1203// :77:27: note: when computing vector element at index '0'
1204// :77:27: error: use of undefined value here causes illegal behavior
1205// :77:27: error: use of undefined value here causes illegal behavior
1206// :77:27: error: use of undefined value here causes illegal behavior
1207// :77:27: note: when computing vector element at index '0'
1208// :77:27: error: use of undefined value here causes illegal behavior
1209// :77:27: note: when computing vector element at index '0'
1210// :77:27: error: use of undefined value here causes illegal behavior
1211// :77:27: note: when computing vector element at index '0'
1212// :77:27: error: use of undefined value here causes illegal behavior
1213// :77:27: note: when computing vector element at index '0'
1214// :77:27: error: use of undefined value here causes illegal behavior
1215// :77:27: note: when computing vector element at index '1'
1216// :77:27: error: use of undefined value here causes illegal behavior
1217// :77:27: note: when computing vector element at index '1'
1218// :77:27: error: use of undefined value here causes illegal behavior
1219// :77:27: note: when computing vector element at index '0'
1220// :77:27: error: use of undefined value here causes illegal behavior
1221// :77:27: note: when computing vector element at index '0'
1222// :77:27: error: use of undefined value here causes illegal behavior
1223// :77:27: note: when computing vector element at index '0'
1224// :77:27: error: use of undefined value here causes illegal behavior
1225// :77:27: note: when computing vector element at index '0'
1226// :77:27: error: use of undefined value here causes illegal behavior
1227// :77:27: error: use of undefined value here causes illegal behavior
1228// :77:27: error: use of undefined value here causes illegal behavior
1229// :77:27: note: when computing vector element at index '0'
1230// :77:27: error: use of undefined value here causes illegal behavior
1231// :77:27: note: when computing vector element at index '0'
1232// :77:27: error: use of undefined value here causes illegal behavior
1233// :77:27: note: when computing vector element at index '0'
1234// :77:27: error: use of undefined value here causes illegal behavior
1235// :77:27: note: when computing vector element at index '0'
1236// :77:27: error: use of undefined value here causes illegal behavior
1237// :77:27: note: when computing vector element at index '1'
1238// :77:27: error: use of undefined value here causes illegal behavior
1239// :77:27: note: when computing vector element at index '1'
1240// :77:27: error: use of undefined value here causes illegal behavior
1241// :77:27: note: when computing vector element at index '0'
1242// :77:27: error: use of undefined value here causes illegal behavior
1243// :77:27: note: when computing vector element at index '0'
1244// :77:27: error: use of undefined value here causes illegal behavior
1245// :77:27: note: when computing vector element at index '0'
1246// :77:27: error: use of undefined value here causes illegal behavior
1247// :77:27: note: when computing vector element at index '0'
1248// :77:27: error: use of undefined value here causes illegal behavior
1249// :77:27: error: use of undefined value here causes illegal behavior
1250// :77:27: error: use of undefined value here causes illegal behavior
1251// :77:27: note: when computing vector element at index '0'
1252// :77:27: error: use of undefined value here causes illegal behavior
1253// :77:27: note: when computing vector element at index '0'
1254// :77:27: error: use of undefined value here causes illegal behavior
1255// :77:27: note: when computing vector element at index '0'
1256// :77:27: error: use of undefined value here causes illegal behavior
1257// :77:27: note: when computing vector element at index '0'
1258// :77:27: error: use of undefined value here causes illegal behavior
1259// :77:27: note: when computing vector element at index '1'
1260// :77:27: error: use of undefined value here causes illegal behavior
1261// :77:27: note: when computing vector element at index '1'
1262// :77:27: error: use of undefined value here causes illegal behavior
1263// :77:27: note: when computing vector element at index '0'
1264// :77:27: error: use of undefined value here causes illegal behavior
1265// :77:27: note: when computing vector element at index '0'
1266// :77:27: error: use of undefined value here causes illegal behavior
1267// :77:27: note: when computing vector element at index '0'
1268// :77:27: error: use of undefined value here causes illegal behavior
1269// :77:27: note: when computing vector element at index '0'
1270// :77:27: error: use of undefined value here causes illegal behavior
1271// :77:27: error: use of undefined value here causes illegal behavior
1272// :77:27: error: use of undefined value here causes illegal behavior
1273// :77:27: note: when computing vector element at index '0'
1274// :77:27: error: use of undefined value here causes illegal behavior
1275// :77:27: note: when computing vector element at index '0'
1276// :77:27: error: use of undefined value here causes illegal behavior
1277// :77:27: note: when computing vector element at index '0'
1278// :77:27: error: use of undefined value here causes illegal behavior
1279// :77:27: note: when computing vector element at index '0'
1280// :77:27: error: use of undefined value here causes illegal behavior
1281// :77:27: note: when computing vector element at index '1'
1282// :77:27: error: use of undefined value here causes illegal behavior
1283// :77:27: note: when computing vector element at index '1'
1284// :77:27: error: use of undefined value here causes illegal behavior
1285// :77:27: note: when computing vector element at index '0'
1286// :77:27: error: use of undefined value here causes illegal behavior
1287// :77:27: note: when computing vector element at index '0'
1288// :77:27: error: use of undefined value here causes illegal behavior
1289// :77:27: note: when computing vector element at index '0'
1290// :77:27: error: use of undefined value here causes illegal behavior
1291// :77:27: note: when computing vector element at index '0'
1292// :77:30: error: use of undefined value here causes illegal behavior
1293// :77:30: note: when computing vector element at index '0'
1294// :77:30: error: use of undefined value here causes illegal behavior
1295// :77:30: note: when computing vector element at index '0'
1296// :77:30: error: use of undefined value here causes illegal behavior
1297// :77:30: note: when computing vector element at index '0'
1298// :77:30: error: use of undefined value here causes illegal behavior
1299// :77:30: note: when computing vector element at index '0'
1300// :77:30: error: use of undefined value here causes illegal behavior
1301// :77:30: note: when computing vector element at index '0'
1302// :77:30: error: use of undefined value here causes illegal behavior
1303// :77:30: note: when computing vector element at index '0'
1304// :77:30: error: use of undefined value here causes illegal behavior
1305// :77:30: note: when computing vector element at index '0'
1306// :77:30: error: use of undefined value here causes illegal behavior
1307// :77:30: note: when computing vector element at index '0'
1308// :77:30: error: use of undefined value here causes illegal behavior
1309// :77:30: note: when computing vector element at index '0'
1310// :77:30: error: use of undefined value here causes illegal behavior
1311// :77:30: note: when computing vector element at index '0'
1312// :77:30: error: use of undefined value here causes illegal behavior
1313// :77:30: note: when computing vector element at index '0'
1314// :77:30: error: use of undefined value here causes illegal behavior
1315// :77:30: note: when computing vector element at index '0'
1316// :77:30: error: use of undefined value here causes illegal behavior
1317// :77:30: note: when computing vector element at index '0'
1318// :77:30: error: use of undefined value here causes illegal behavior
1319// :77:30: note: when computing vector element at index '0'
1320// :77:30: error: use of undefined value here causes illegal behavior
1321// :77:30: note: when computing vector element at index '0'
1322// :77:30: error: use of undefined value here causes illegal behavior
1323// :77:30: note: when computing vector element at index '0'
1324// :77:30: error: use of undefined value here causes illegal behavior
1325// :77:30: note: when computing vector element at index '0'
1326// :77:30: error: use of undefined value here causes illegal behavior
1327// :77:30: note: when computing vector element at index '0'
1328// :77:30: error: use of undefined value here causes illegal behavior
1329// :77:30: note: when computing vector element at index '0'
1330// :77:30: error: use of undefined value here causes illegal behavior
1331// :77:30: note: when computing vector element at index '0'
1332// :77:30: error: use of undefined value here causes illegal behavior
1333// :77:30: note: when computing vector element at index '0'
1334// :77:30: error: use of undefined value here causes illegal behavior
1335// :77:30: note: when computing vector element at index '0'
1336// :81:17: error: use of undefined value here causes illegal behavior
1337// :81:17: error: use of undefined value here causes illegal behavior
1338// :81:17: error: use of undefined value here causes illegal behavior
1339// :81:17: note: when computing vector element at index '0'
1340// :81:17: error: use of undefined value here causes illegal behavior
1341// :81:17: note: when computing vector element at index '0'
1342// :81:17: error: use of undefined value here causes illegal behavior
1343// :81:17: note: when computing vector element at index '0'
1344// :81:17: error: use of undefined value here causes illegal behavior
1345// :81:17: note: when computing vector element at index '0'
1346// :81:17: error: use of undefined value here causes illegal behavior
1347// :81:17: note: when computing vector element at index '1'
1348// :81:17: error: use of undefined value here causes illegal behavior
1349// :81:17: note: when computing vector element at index '1'
1350// :81:17: error: use of undefined value here causes illegal behavior
1351// :81:17: note: when computing vector element at index '0'
1352// :81:17: error: use of undefined value here causes illegal behavior
1353// :81:17: note: when computing vector element at index '0'
1354// :81:17: error: use of undefined value here causes illegal behavior
1355// :81:17: note: when computing vector element at index '0'
1356// :81:17: error: use of undefined value here causes illegal behavior
1357// :81:17: note: when computing vector element at index '0'
1358// :81:17: error: use of undefined value here causes illegal behavior
1359// :81:17: error: use of undefined value here causes illegal behavior
1360// :81:17: error: use of undefined value here causes illegal behavior
1361// :81:17: note: when computing vector element at index '0'
1362// :81:17: error: use of undefined value here causes illegal behavior
1363// :81:17: note: when computing vector element at index '0'
1364// :81:17: error: use of undefined value here causes illegal behavior
1365// :81:17: note: when computing vector element at index '0'
1366// :81:17: error: use of undefined value here causes illegal behavior
1367// :81:17: note: when computing vector element at index '0'
1368// :81:17: error: use of undefined value here causes illegal behavior
1369// :81:17: note: when computing vector element at index '1'
1370// :81:17: error: use of undefined value here causes illegal behavior
1371// :81:17: note: when computing vector element at index '1'
1372// :81:17: error: use of undefined value here causes illegal behavior
1373// :81:17: note: when computing vector element at index '0'
1374// :81:17: error: use of undefined value here causes illegal behavior
1375// :81:17: note: when computing vector element at index '0'
1376// :81:17: error: use of undefined value here causes illegal behavior
1377// :81:17: note: when computing vector element at index '0'
1378// :81:17: error: use of undefined value here causes illegal behavior
1379// :81:17: note: when computing vector element at index '0'
1380// :81:17: error: use of undefined value here causes illegal behavior
1381// :81:17: error: use of undefined value here causes illegal behavior
1382// :81:17: error: use of undefined value here causes illegal behavior
1383// :81:17: note: when computing vector element at index '0'
1384// :81:17: error: use of undefined value here causes illegal behavior
1385// :81:17: note: when computing vector element at index '0'
1386// :81:17: error: use of undefined value here causes illegal behavior
1387// :81:17: note: when computing vector element at index '0'
1388// :81:17: error: use of undefined value here causes illegal behavior
1389// :81:17: note: when computing vector element at index '0'
1390// :81:17: error: use of undefined value here causes illegal behavior
1391// :81:17: note: when computing vector element at index '1'
1392// :81:17: error: use of undefined value here causes illegal behavior
1393// :81:17: note: when computing vector element at index '1'
1394// :81:17: error: use of undefined value here causes illegal behavior
1395// :81:17: note: when computing vector element at index '0'
1396// :81:17: error: use of undefined value here causes illegal behavior
1397// :81:17: note: when computing vector element at index '0'
1398// :81:17: error: use of undefined value here causes illegal behavior
1399// :81:17: note: when computing vector element at index '0'
1400// :81:17: error: use of undefined value here causes illegal behavior
1401// :81:17: note: when computing vector element at index '0'
1402// :81:17: error: use of undefined value here causes illegal behavior
1403// :81:17: error: use of undefined value here causes illegal behavior
1404// :81:17: error: use of undefined value here causes illegal behavior
1405// :81:17: note: when computing vector element at index '0'
1406// :81:17: error: use of undefined value here causes illegal behavior
1407// :81:17: note: when computing vector element at index '0'
1408// :81:17: error: use of undefined value here causes illegal behavior
1409// :81:17: note: when computing vector element at index '0'
1410// :81:17: error: use of undefined value here causes illegal behavior
1411// :81:17: note: when computing vector element at index '0'
1412// :81:17: error: use of undefined value here causes illegal behavior
1413// :81:17: note: when computing vector element at index '1'
1414// :81:17: error: use of undefined value here causes illegal behavior
1415// :81:17: note: when computing vector element at index '1'
1416// :81:17: error: use of undefined value here causes illegal behavior
1417// :81:17: note: when computing vector element at index '0'
1418// :81:17: error: use of undefined value here causes illegal behavior
1419// :81:17: note: when computing vector element at index '0'
1420// :81:17: error: use of undefined value here causes illegal behavior
1421// :81:17: note: when computing vector element at index '0'
1422// :81:17: error: use of undefined value here causes illegal behavior
1423// :81:17: note: when computing vector element at index '0'
1424// :81:17: error: use of undefined value here causes illegal behavior
1425// :81:17: error: use of undefined value here causes illegal behavior
1426// :81:17: error: use of undefined value here causes illegal behavior
1427// :81:17: note: when computing vector element at index '0'
1428// :81:17: error: use of undefined value here causes illegal behavior
1429// :81:17: note: when computing vector element at index '0'
1430// :81:17: error: use of undefined value here causes illegal behavior
1431// :81:17: note: when computing vector element at index '0'
1432// :81:17: error: use of undefined value here causes illegal behavior
1433// :81:17: note: when computing vector element at index '0'
1434// :81:17: error: use of undefined value here causes illegal behavior
1435// :81:17: note: when computing vector element at index '1'
1436// :81:17: error: use of undefined value here causes illegal behavior
1437// :81:17: note: when computing vector element at index '1'
1438// :81:17: error: use of undefined value here causes illegal behavior
1439// :81:17: note: when computing vector element at index '0'
1440// :81:17: error: use of undefined value here causes illegal behavior
1441// :81:17: note: when computing vector element at index '0'
1442// :81:17: error: use of undefined value here causes illegal behavior
1443// :81:17: note: when computing vector element at index '0'
1444// :81:17: error: use of undefined value here causes illegal behavior
1445// :81:17: note: when computing vector element at index '0'
1446// :81:17: error: use of undefined value here causes illegal behavior
1447// :81:17: error: use of undefined value here causes illegal behavior
1448// :81:17: error: use of undefined value here causes illegal behavior
1449// :81:17: note: when computing vector element at index '0'
1450// :81:17: error: use of undefined value here causes illegal behavior
1451// :81:17: note: when computing vector element at index '0'
1452// :81:17: error: use of undefined value here causes illegal behavior
1453// :81:17: note: when computing vector element at index '0'
1454// :81:17: error: use of undefined value here causes illegal behavior
1455// :81:17: note: when computing vector element at index '0'
1456// :81:17: error: use of undefined value here causes illegal behavior
1457// :81:17: note: when computing vector element at index '1'
1458// :81:17: error: use of undefined value here causes illegal behavior
1459// :81:17: note: when computing vector element at index '1'
1460// :81:17: error: use of undefined value here causes illegal behavior
1461// :81:17: note: when computing vector element at index '0'
1462// :81:17: error: use of undefined value here causes illegal behavior
1463// :81:17: note: when computing vector element at index '0'
1464// :81:17: error: use of undefined value here causes illegal behavior
1465// :81:17: note: when computing vector element at index '0'
1466// :81:17: error: use of undefined value here causes illegal behavior
1467// :81:17: note: when computing vector element at index '0'
1468// :81:17: error: use of undefined value here causes illegal behavior
1469// :81:17: error: use of undefined value here causes illegal behavior
1470// :81:17: error: use of undefined value here causes illegal behavior
1471// :81:17: note: when computing vector element at index '0'
1472// :81:17: error: use of undefined value here causes illegal behavior
1473// :81:17: note: when computing vector element at index '0'
1474// :81:17: error: use of undefined value here causes illegal behavior
1475// :81:17: note: when computing vector element at index '0'
1476// :81:17: error: use of undefined value here causes illegal behavior
1477// :81:17: note: when computing vector element at index '0'
1478// :81:17: error: use of undefined value here causes illegal behavior
1479// :81:17: note: when computing vector element at index '1'
1480// :81:17: error: use of undefined value here causes illegal behavior
1481// :81:17: note: when computing vector element at index '1'
1482// :81:17: error: use of undefined value here causes illegal behavior
1483// :81:17: note: when computing vector element at index '0'
1484// :81:17: error: use of undefined value here causes illegal behavior
1485// :81:17: note: when computing vector element at index '0'
1486// :81:17: error: use of undefined value here causes illegal behavior
1487// :81:17: note: when computing vector element at index '0'
1488// :81:17: error: use of undefined value here causes illegal behavior
1489// :81:17: note: when computing vector element at index '0'
1490// :81:17: error: use of undefined value here causes illegal behavior
1491// :81:17: error: use of undefined value here causes illegal behavior
1492// :81:17: error: use of undefined value here causes illegal behavior
1493// :81:17: note: when computing vector element at index '0'
1494// :81:17: error: use of undefined value here causes illegal behavior
1495// :81:17: note: when computing vector element at index '0'
1496// :81:17: error: use of undefined value here causes illegal behavior
1497// :81:17: note: when computing vector element at index '0'
1498// :81:17: error: use of undefined value here causes illegal behavior
1499// :81:17: note: when computing vector element at index '0'
1500// :81:17: error: use of undefined value here causes illegal behavior
1501// :81:17: note: when computing vector element at index '1'
1502// :81:17: error: use of undefined value here causes illegal behavior
1503// :81:17: note: when computing vector element at index '1'
1504// :81:17: error: use of undefined value here causes illegal behavior
1505// :81:17: note: when computing vector element at index '0'
1506// :81:17: error: use of undefined value here causes illegal behavior
1507// :81:17: note: when computing vector element at index '0'
1508// :81:17: error: use of undefined value here causes illegal behavior
1509// :81:17: note: when computing vector element at index '0'
1510// :81:17: error: use of undefined value here causes illegal behavior
1511// :81:17: note: when computing vector element at index '0'
1512// :81:17: error: use of undefined value here causes illegal behavior
1513// :81:17: error: use of undefined value here causes illegal behavior
1514// :81:17: error: use of undefined value here causes illegal behavior
1515// :81:17: note: when computing vector element at index '0'
1516// :81:17: error: use of undefined value here causes illegal behavior
1517// :81:17: note: when computing vector element at index '0'
1518// :81:17: error: use of undefined value here causes illegal behavior
1519// :81:17: note: when computing vector element at index '0'
1520// :81:17: error: use of undefined value here causes illegal behavior
1521// :81:17: note: when computing vector element at index '0'
1522// :81:17: error: use of undefined value here causes illegal behavior
1523// :81:17: note: when computing vector element at index '1'
1524// :81:17: error: use of undefined value here causes illegal behavior
1525// :81:17: note: when computing vector element at index '1'
1526// :81:17: error: use of undefined value here causes illegal behavior
1527// :81:17: note: when computing vector element at index '0'
1528// :81:17: error: use of undefined value here causes illegal behavior
1529// :81:17: note: when computing vector element at index '0'
1530// :81:17: error: use of undefined value here causes illegal behavior
1531// :81:17: note: when computing vector element at index '0'
1532// :81:17: error: use of undefined value here causes illegal behavior
1533// :81:17: note: when computing vector element at index '0'
1534// :81:17: error: use of undefined value here causes illegal behavior
1535// :81:17: error: use of undefined value here causes illegal behavior
1536// :81:17: error: use of undefined value here causes illegal behavior
1537// :81:17: note: when computing vector element at index '0'
1538// :81:17: error: use of undefined value here causes illegal behavior
1539// :81:17: note: when computing vector element at index '0'
1540// :81:17: error: use of undefined value here causes illegal behavior
1541// :81:17: note: when computing vector element at index '0'
1542// :81:17: error: use of undefined value here causes illegal behavior
1543// :81:17: note: when computing vector element at index '0'
1544// :81:17: error: use of undefined value here causes illegal behavior
1545// :81:17: note: when computing vector element at index '1'
1546// :81:17: error: use of undefined value here causes illegal behavior
1547// :81:17: note: when computing vector element at index '1'
1548// :81:17: error: use of undefined value here causes illegal behavior
1549// :81:17: note: when computing vector element at index '0'
1550// :81:17: error: use of undefined value here causes illegal behavior
1551// :81:17: note: when computing vector element at index '0'
1552// :81:17: error: use of undefined value here causes illegal behavior
1553// :81:17: note: when computing vector element at index '0'
1554// :81:17: error: use of undefined value here causes illegal behavior
1555// :81:17: note: when computing vector element at index '0'
1556// :81:17: error: use of undefined value here causes illegal behavior
1557// :81:17: error: use of undefined value here causes illegal behavior
1558// :81:17: error: use of undefined value here causes illegal behavior
1559// :81:17: note: when computing vector element at index '0'
1560// :81:17: error: use of undefined value here causes illegal behavior
1561// :81:17: note: when computing vector element at index '0'
1562// :81:17: error: use of undefined value here causes illegal behavior
1563// :81:17: note: when computing vector element at index '0'
1564// :81:17: error: use of undefined value here causes illegal behavior
1565// :81:17: note: when computing vector element at index '0'
1566// :81:17: error: use of undefined value here causes illegal behavior
1567// :81:17: note: when computing vector element at index '1'
1568// :81:17: error: use of undefined value here causes illegal behavior
1569// :81:17: note: when computing vector element at index '1'
1570// :81:17: error: use of undefined value here causes illegal behavior
1571// :81:17: note: when computing vector element at index '0'
1572// :81:17: error: use of undefined value here causes illegal behavior
1573// :81:17: note: when computing vector element at index '0'
1574// :81:17: error: use of undefined value here causes illegal behavior
1575// :81:17: note: when computing vector element at index '0'
1576// :81:17: error: use of undefined value here causes illegal behavior
1577// :81:17: note: when computing vector element at index '0'
1578// :81:21: error: use of undefined value here causes illegal behavior
1579// :81:21: note: when computing vector element at index '0'
1580// :81:21: error: use of undefined value here causes illegal behavior
1581// :81:21: note: when computing vector element at index '0'
1582// :81:21: error: use of undefined value here causes illegal behavior
1583// :81:21: note: when computing vector element at index '0'
1584// :81:21: error: use of undefined value here causes illegal behavior
1585// :81:21: note: when computing vector element at index '0'
1586// :81:21: error: use of undefined value here causes illegal behavior
1587// :81:21: note: when computing vector element at index '0'
1588// :81:21: error: use of undefined value here causes illegal behavior
1589// :81:21: note: when computing vector element at index '0'
1590// :81:21: error: use of undefined value here causes illegal behavior
1591// :81:21: note: when computing vector element at index '0'
1592// :81:21: error: use of undefined value here causes illegal behavior
1593// :81:21: note: when computing vector element at index '0'
1594// :81:21: error: use of undefined value here causes illegal behavior
1595// :81:21: note: when computing vector element at index '0'
1596// :81:21: error: use of undefined value here causes illegal behavior
1597// :81:21: note: when computing vector element at index '0'
1598// :81:21: error: use of undefined value here causes illegal behavior
1599// :81:21: note: when computing vector element at index '0'
1600// :81:21: error: use of undefined value here causes illegal behavior
1601// :81:21: note: when computing vector element at index '0'
1602// :81:21: error: use of undefined value here causes illegal behavior
1603// :81:21: note: when computing vector element at index '0'
1604// :81:21: error: use of undefined value here causes illegal behavior
1605// :81:21: note: when computing vector element at index '0'
1606// :81:21: error: use of undefined value here causes illegal behavior
1607// :81:21: note: when computing vector element at index '0'
1608// :81:21: error: use of undefined value here causes illegal behavior
1609// :81:21: note: when computing vector element at index '0'
1610// :81:21: error: use of undefined value here causes illegal behavior
1611// :81:21: note: when computing vector element at index '0'
1612// :81:21: error: use of undefined value here causes illegal behavior
1613// :81:21: note: when computing vector element at index '0'
1614// :81:21: error: use of undefined value here causes illegal behavior
1615// :81:21: note: when computing vector element at index '0'
1616// :81:21: error: use of undefined value here causes illegal behavior
1617// :81:21: note: when computing vector element at index '0'
1618// :81:21: error: use of undefined value here causes illegal behavior
1619// :81:21: note: when computing vector element at index '0'
1620// :81:21: error: use of undefined value here causes illegal behavior
1621// :81:21: note: when computing vector element at index '0'
1622// :85:22: error: use of undefined value here causes illegal behavior
1623// :85:22: error: use of undefined value here causes illegal behavior
1624// :85:22: error: use of undefined value here causes illegal behavior
1625// :85:22: note: when computing vector element at index '0'
1626// :85:22: error: use of undefined value here causes illegal behavior
1627// :85:22: note: when computing vector element at index '0'
1628// :85:22: error: use of undefined value here causes illegal behavior
1629// :85:22: note: when computing vector element at index '0'
1630// :85:22: error: use of undefined value here causes illegal behavior
1631// :85:22: note: when computing vector element at index '0'
1632// :85:22: error: use of undefined value here causes illegal behavior
1633// :85:22: note: when computing vector element at index '1'
1634// :85:22: error: use of undefined value here causes illegal behavior
1635// :85:22: note: when computing vector element at index '1'
1636// :85:22: error: use of undefined value here causes illegal behavior
1637// :85:22: note: when computing vector element at index '0'
1638// :85:22: error: use of undefined value here causes illegal behavior
1639// :85:22: note: when computing vector element at index '0'
1640// :85:22: error: use of undefined value here causes illegal behavior
1641// :85:22: note: when computing vector element at index '0'
1642// :85:22: error: use of undefined value here causes illegal behavior
1643// :85:22: note: when computing vector element at index '0'
1644// :85:22: error: use of undefined value here causes illegal behavior
1645// :85:22: error: use of undefined value here causes illegal behavior
1646// :85:22: error: use of undefined value here causes illegal behavior
1647// :85:22: note: when computing vector element at index '0'
1648// :85:22: error: use of undefined value here causes illegal behavior
1649// :85:22: note: when computing vector element at index '0'
1650// :85:22: error: use of undefined value here causes illegal behavior
1651// :85:22: note: when computing vector element at index '0'
1652// :85:22: error: use of undefined value here causes illegal behavior
1653// :85:22: note: when computing vector element at index '0'
1654// :85:22: error: use of undefined value here causes illegal behavior
1655// :85:22: note: when computing vector element at index '1'
1656// :85:22: error: use of undefined value here causes illegal behavior
1657// :85:22: note: when computing vector element at index '1'
1658// :85:22: error: use of undefined value here causes illegal behavior
1659// :85:22: note: when computing vector element at index '0'
1660// :85:22: error: use of undefined value here causes illegal behavior
1661// :85:22: note: when computing vector element at index '0'
1662// :85:22: error: use of undefined value here causes illegal behavior
1663// :85:22: note: when computing vector element at index '0'
1664// :85:22: error: use of undefined value here causes illegal behavior
1665// :85:22: note: when computing vector element at index '0'
1666// :85:22: error: use of undefined value here causes illegal behavior
1667// :85:22: error: use of undefined value here causes illegal behavior
1668// :85:22: error: use of undefined value here causes illegal behavior
1669// :85:22: note: when computing vector element at index '0'
1670// :85:22: error: use of undefined value here causes illegal behavior
1671// :85:22: note: when computing vector element at index '0'
1672// :85:22: error: use of undefined value here causes illegal behavior
1673// :85:22: note: when computing vector element at index '0'
1674// :85:22: error: use of undefined value here causes illegal behavior
1675// :85:22: note: when computing vector element at index '0'
1676// :85:22: error: use of undefined value here causes illegal behavior
1677// :85:22: note: when computing vector element at index '1'
1678// :85:22: error: use of undefined value here causes illegal behavior
1679// :85:22: note: when computing vector element at index '1'
1680// :85:22: error: use of undefined value here causes illegal behavior
1681// :85:22: note: when computing vector element at index '0'
1682// :85:22: error: use of undefined value here causes illegal behavior
1683// :85:22: note: when computing vector element at index '0'
1684// :85:22: error: use of undefined value here causes illegal behavior
1685// :85:22: note: when computing vector element at index '0'
1686// :85:22: error: use of undefined value here causes illegal behavior
1687// :85:22: note: when computing vector element at index '0'
1688// :85:22: error: use of undefined value here causes illegal behavior
1689// :85:22: error: use of undefined value here causes illegal behavior
1690// :85:22: error: use of undefined value here causes illegal behavior
1691// :85:22: note: when computing vector element at index '0'
1692// :85:22: error: use of undefined value here causes illegal behavior
1693// :85:22: note: when computing vector element at index '0'
1694// :85:22: error: use of undefined value here causes illegal behavior
1695// :85:22: note: when computing vector element at index '0'
1696// :85:22: error: use of undefined value here causes illegal behavior
1697// :85:22: note: when computing vector element at index '0'
1698// :85:22: error: use of undefined value here causes illegal behavior
1699// :85:22: note: when computing vector element at index '1'
1700// :85:22: error: use of undefined value here causes illegal behavior
1701// :85:22: note: when computing vector element at index '1'
1702// :85:22: error: use of undefined value here causes illegal behavior
1703// :85:22: note: when computing vector element at index '0'
1704// :85:22: error: use of undefined value here causes illegal behavior
1705// :85:22: note: when computing vector element at index '0'
1706// :85:22: error: use of undefined value here causes illegal behavior
1707// :85:22: note: when computing vector element at index '0'
1708// :85:22: error: use of undefined value here causes illegal behavior
1709// :85:22: note: when computing vector element at index '0'
1710// :85:22: error: use of undefined value here causes illegal behavior
1711// :85:22: error: use of undefined value here causes illegal behavior
1712// :85:22: error: use of undefined value here causes illegal behavior
1713// :85:22: note: when computing vector element at index '0'
1714// :85:22: error: use of undefined value here causes illegal behavior
1715// :85:22: note: when computing vector element at index '0'
1716// :85:22: error: use of undefined value here causes illegal behavior
1717// :85:22: note: when computing vector element at index '0'
1718// :85:22: error: use of undefined value here causes illegal behavior
1719// :85:22: note: when computing vector element at index '0'
1720// :85:22: error: use of undefined value here causes illegal behavior
1721// :85:22: note: when computing vector element at index '1'
1722// :85:22: error: use of undefined value here causes illegal behavior
1723// :85:22: note: when computing vector element at index '1'
1724// :85:22: error: use of undefined value here causes illegal behavior
1725// :85:22: note: when computing vector element at index '0'
1726// :85:22: error: use of undefined value here causes illegal behavior
1727// :85:22: note: when computing vector element at index '0'
1728// :85:22: error: use of undefined value here causes illegal behavior
1729// :85:22: note: when computing vector element at index '0'
1730// :85:22: error: use of undefined value here causes illegal behavior
1731// :85:22: note: when computing vector element at index '0'
1732// :85:22: error: use of undefined value here causes illegal behavior
1733// :85:22: error: use of undefined value here causes illegal behavior
1734// :85:22: error: use of undefined value here causes illegal behavior
1735// :85:22: note: when computing vector element at index '0'
1736// :85:22: error: use of undefined value here causes illegal behavior
1737// :85:22: note: when computing vector element at index '0'
1738// :85:22: error: use of undefined value here causes illegal behavior
1739// :85:22: note: when computing vector element at index '0'
1740// :85:22: error: use of undefined value here causes illegal behavior
1741// :85:22: note: when computing vector element at index '0'
1742// :85:22: error: use of undefined value here causes illegal behavior
1743// :85:22: note: when computing vector element at index '1'
1744// :85:22: error: use of undefined value here causes illegal behavior
1745// :85:22: note: when computing vector element at index '1'
1746// :85:22: error: use of undefined value here causes illegal behavior
1747// :85:22: note: when computing vector element at index '0'
1748// :85:22: error: use of undefined value here causes illegal behavior
1749// :85:22: note: when computing vector element at index '0'
1750// :85:22: error: use of undefined value here causes illegal behavior
1751// :85:22: note: when computing vector element at index '0'
1752// :85:22: error: use of undefined value here causes illegal behavior
1753// :85:22: note: when computing vector element at index '0'
1754// :85:22: error: use of undefined value here causes illegal behavior
1755// :85:22: error: use of undefined value here causes illegal behavior
1756// :85:22: error: use of undefined value here causes illegal behavior
1757// :85:22: note: when computing vector element at index '0'
1758// :85:22: error: use of undefined value here causes illegal behavior
1759// :85:22: note: when computing vector element at index '0'
1760// :85:22: error: use of undefined value here causes illegal behavior
1761// :85:22: note: when computing vector element at index '0'
1762// :85:22: error: use of undefined value here causes illegal behavior
1763// :85:22: note: when computing vector element at index '0'
1764// :85:22: error: use of undefined value here causes illegal behavior
1765// :85:22: note: when computing vector element at index '1'
1766// :85:22: error: use of undefined value here causes illegal behavior
1767// :85:22: note: when computing vector element at index '1'
1768// :85:22: error: use of undefined value here causes illegal behavior
1769// :85:22: note: when computing vector element at index '0'
1770// :85:22: error: use of undefined value here causes illegal behavior
1771// :85:22: note: when computing vector element at index '0'
1772// :85:22: error: use of undefined value here causes illegal behavior
1773// :85:22: note: when computing vector element at index '0'
1774// :85:22: error: use of undefined value here causes illegal behavior
1775// :85:22: note: when computing vector element at index '0'
1776// :85:22: error: use of undefined value here causes illegal behavior
1777// :85:22: error: use of undefined value here causes illegal behavior
1778// :85:22: error: use of undefined value here causes illegal behavior
1779// :85:22: note: when computing vector element at index '0'
1780// :85:22: error: use of undefined value here causes illegal behavior
1781// :85:22: note: when computing vector element at index '0'
1782// :85:22: error: use of undefined value here causes illegal behavior
1783// :85:22: note: when computing vector element at index '0'
1784// :85:22: error: use of undefined value here causes illegal behavior
1785// :85:22: note: when computing vector element at index '0'
1786// :85:22: error: use of undefined value here causes illegal behavior
1787// :85:22: note: when computing vector element at index '1'
1788// :85:22: error: use of undefined value here causes illegal behavior
1789// :85:22: note: when computing vector element at index '1'
1790// :85:22: error: use of undefined value here causes illegal behavior
1791// :85:22: note: when computing vector element at index '0'
1792// :85:22: error: use of undefined value here causes illegal behavior
1793// :85:22: note: when computing vector element at index '0'
1794// :85:22: error: use of undefined value here causes illegal behavior
1795// :85:22: note: when computing vector element at index '0'
1796// :85:22: error: use of undefined value here causes illegal behavior
1797// :85:22: note: when computing vector element at index '0'
1798// :85:22: error: use of undefined value here causes illegal behavior
1799// :85:22: error: use of undefined value here causes illegal behavior
1800// :85:22: error: use of undefined value here causes illegal behavior
1801// :85:22: note: when computing vector element at index '0'
1802// :85:22: error: use of undefined value here causes illegal behavior
1803// :85:22: note: when computing vector element at index '0'
1804// :85:22: error: use of undefined value here causes illegal behavior
1805// :85:22: note: when computing vector element at index '0'
1806// :85:22: error: use of undefined value here causes illegal behavior
1807// :85:22: note: when computing vector element at index '0'
1808// :85:22: error: use of undefined value here causes illegal behavior
1809// :85:22: note: when computing vector element at index '1'
1810// :85:22: error: use of undefined value here causes illegal behavior
1811// :85:22: note: when computing vector element at index '1'
1812// :85:22: error: use of undefined value here causes illegal behavior
1813// :85:22: note: when computing vector element at index '0'
1814// :85:22: error: use of undefined value here causes illegal behavior
1815// :85:22: note: when computing vector element at index '0'
1816// :85:22: error: use of undefined value here causes illegal behavior
1817// :85:22: note: when computing vector element at index '0'
1818// :85:22: error: use of undefined value here causes illegal behavior
1819// :85:22: note: when computing vector element at index '0'
1820// :85:22: error: use of undefined value here causes illegal behavior
1821// :85:22: error: use of undefined value here causes illegal behavior
1822// :85:22: error: use of undefined value here causes illegal behavior
1823// :85:22: note: when computing vector element at index '0'
1824// :85:22: error: use of undefined value here causes illegal behavior
1825// :85:22: note: when computing vector element at index '0'
1826// :85:22: error: use of undefined value here causes illegal behavior
1827// :85:22: note: when computing vector element at index '0'
1828// :85:22: error: use of undefined value here causes illegal behavior
1829// :85:22: note: when computing vector element at index '0'
1830// :85:22: error: use of undefined value here causes illegal behavior
1831// :85:22: note: when computing vector element at index '1'
1832// :85:22: error: use of undefined value here causes illegal behavior
1833// :85:22: note: when computing vector element at index '1'
1834// :85:22: error: use of undefined value here causes illegal behavior
1835// :85:22: note: when computing vector element at index '0'
1836// :85:22: error: use of undefined value here causes illegal behavior
1837// :85:22: note: when computing vector element at index '0'
1838// :85:22: error: use of undefined value here causes illegal behavior
1839// :85:22: note: when computing vector element at index '0'
1840// :85:22: error: use of undefined value here causes illegal behavior
1841// :85:22: note: when computing vector element at index '0'
1842// :85:22: error: use of undefined value here causes illegal behavior
1843// :85:22: error: use of undefined value here causes illegal behavior
1844// :85:22: error: use of undefined value here causes illegal behavior
1845// :85:22: note: when computing vector element at index '0'
1846// :85:22: error: use of undefined value here causes illegal behavior
1847// :85:22: note: when computing vector element at index '0'
1848// :85:22: error: use of undefined value here causes illegal behavior
1849// :85:22: note: when computing vector element at index '0'
1850// :85:22: error: use of undefined value here causes illegal behavior
1851// :85:22: note: when computing vector element at index '0'
1852// :85:22: error: use of undefined value here causes illegal behavior
1853// :85:22: note: when computing vector element at index '1'
1854// :85:22: error: use of undefined value here causes illegal behavior
1855// :85:22: note: when computing vector element at index '1'
1856// :85:22: error: use of undefined value here causes illegal behavior
1857// :85:22: note: when computing vector element at index '0'
1858// :85:22: error: use of undefined value here causes illegal behavior
1859// :85:22: note: when computing vector element at index '0'
1860// :85:22: error: use of undefined value here causes illegal behavior
1861// :85:22: note: when computing vector element at index '0'
1862// :85:22: error: use of undefined value here causes illegal behavior
1863// :85:22: note: when computing vector element at index '0'
1864// :85:25: error: use of undefined value here causes illegal behavior
1865// :85:25: note: when computing vector element at index '0'
1866// :85:25: error: use of undefined value here causes illegal behavior
1867// :85:25: note: when computing vector element at index '0'
1868// :85:25: error: use of undefined value here causes illegal behavior
1869// :85:25: note: when computing vector element at index '0'
1870// :85:25: error: use of undefined value here causes illegal behavior
1871// :85:25: note: when computing vector element at index '0'
1872// :85:25: error: use of undefined value here causes illegal behavior
1873// :85:25: note: when computing vector element at index '0'
1874// :85:25: error: use of undefined value here causes illegal behavior
1875// :85:25: note: when computing vector element at index '0'
1876// :85:25: error: use of undefined value here causes illegal behavior
1877// :85:25: note: when computing vector element at index '0'
1878// :85:25: error: use of undefined value here causes illegal behavior
1879// :85:25: note: when computing vector element at index '0'
1880// :85:25: error: use of undefined value here causes illegal behavior
1881// :85:25: note: when computing vector element at index '0'
1882// :85:25: error: use of undefined value here causes illegal behavior
1883// :85:25: note: when computing vector element at index '0'
1884// :85:25: error: use of undefined value here causes illegal behavior
1885// :85:25: note: when computing vector element at index '0'
1886// :85:25: error: use of undefined value here causes illegal behavior
1887// :85:25: note: when computing vector element at index '0'
1888// :85:25: error: use of undefined value here causes illegal behavior
1889// :85:25: note: when computing vector element at index '0'
1890// :85:25: error: use of undefined value here causes illegal behavior
1891// :85:25: note: when computing vector element at index '0'
1892// :85:25: error: use of undefined value here causes illegal behavior
1893// :85:25: note: when computing vector element at index '0'
1894// :85:25: error: use of undefined value here causes illegal behavior
1895// :85:25: note: when computing vector element at index '0'
1896// :85:25: error: use of undefined value here causes illegal behavior
1897// :85:25: note: when computing vector element at index '0'
1898// :85:25: error: use of undefined value here causes illegal behavior
1899// :85:25: note: when computing vector element at index '0'
1900// :85:25: error: use of undefined value here causes illegal behavior
1901// :85:25: note: when computing vector element at index '0'
1902// :85:25: error: use of undefined value here causes illegal behavior
1903// :85:25: note: when computing vector element at index '0'
1904// :85:25: error: use of undefined value here causes illegal behavior
1905// :85:25: note: when computing vector element at index '0'
1906// :85:25: error: use of undefined value here causes illegal behavior
1907// :85:25: note: when computing vector element at index '0'
1908// :89:22: error: use of undefined value here causes illegal behavior
1909// :89:22: error: use of undefined value here causes illegal behavior
1910// :89:22: error: use of undefined value here causes illegal behavior
1911// :89:22: note: when computing vector element at index '0'
1912// :89:22: error: use of undefined value here causes illegal behavior
1913// :89:22: note: when computing vector element at index '0'
1914// :89:22: error: use of undefined value here causes illegal behavior
1915// :89:22: note: when computing vector element at index '0'
1916// :89:22: error: use of undefined value here causes illegal behavior
1917// :89:22: note: when computing vector element at index '0'
1918// :89:22: error: use of undefined value here causes illegal behavior
1919// :89:22: note: when computing vector element at index '1'
1920// :89:22: error: use of undefined value here causes illegal behavior
1921// :89:22: note: when computing vector element at index '1'
1922// :89:22: error: use of undefined value here causes illegal behavior
1923// :89:22: note: when computing vector element at index '0'
1924// :89:22: error: use of undefined value here causes illegal behavior
1925// :89:22: note: when computing vector element at index '0'
1926// :89:22: error: use of undefined value here causes illegal behavior
1927// :89:22: note: when computing vector element at index '0'
1928// :89:22: error: use of undefined value here causes illegal behavior
1929// :89:22: note: when computing vector element at index '0'
1930// :89:22: error: use of undefined value here causes illegal behavior
1931// :89:22: error: use of undefined value here causes illegal behavior
1932// :89:22: error: use of undefined value here causes illegal behavior
1933// :89:22: note: when computing vector element at index '0'
1934// :89:22: error: use of undefined value here causes illegal behavior
1935// :89:22: note: when computing vector element at index '0'
1936// :89:22: error: use of undefined value here causes illegal behavior
1937// :89:22: note: when computing vector element at index '0'
1938// :89:22: error: use of undefined value here causes illegal behavior
1939// :89:22: note: when computing vector element at index '0'
1940// :89:22: error: use of undefined value here causes illegal behavior
1941// :89:22: note: when computing vector element at index '1'
1942// :89:22: error: use of undefined value here causes illegal behavior
1943// :89:22: note: when computing vector element at index '1'
1944// :89:22: error: use of undefined value here causes illegal behavior
1945// :89:22: note: when computing vector element at index '0'
1946// :89:22: error: use of undefined value here causes illegal behavior
1947// :89:22: note: when computing vector element at index '0'
1948// :89:22: error: use of undefined value here causes illegal behavior
1949// :89:22: note: when computing vector element at index '0'
1950// :89:22: error: use of undefined value here causes illegal behavior
1951// :89:22: note: when computing vector element at index '0'
1952// :89:22: error: use of undefined value here causes illegal behavior
1953// :89:22: error: use of undefined value here causes illegal behavior
1954// :89:22: error: use of undefined value here causes illegal behavior
1955// :89:22: note: when computing vector element at index '0'
1956// :89:22: error: use of undefined value here causes illegal behavior
1957// :89:22: note: when computing vector element at index '0'
1958// :89:22: error: use of undefined value here causes illegal behavior
1959// :89:22: note: when computing vector element at index '0'
1960// :89:22: error: use of undefined value here causes illegal behavior
1961// :89:22: note: when computing vector element at index '0'
1962// :89:22: error: use of undefined value here causes illegal behavior
1963// :89:22: note: when computing vector element at index '1'
1964// :89:22: error: use of undefined value here causes illegal behavior
1965// :89:22: note: when computing vector element at index '1'
1966// :89:22: error: use of undefined value here causes illegal behavior
1967// :89:22: note: when computing vector element at index '0'
1968// :89:22: error: use of undefined value here causes illegal behavior
1969// :89:22: note: when computing vector element at index '0'
1970// :89:22: error: use of undefined value here causes illegal behavior
1971// :89:22: note: when computing vector element at index '0'
1972// :89:22: error: use of undefined value here causes illegal behavior
1973// :89:22: note: when computing vector element at index '0'
1974// :89:22: error: use of undefined value here causes illegal behavior
1975// :89:22: error: use of undefined value here causes illegal behavior
1976// :89:22: error: use of undefined value here causes illegal behavior
1977// :89:22: note: when computing vector element at index '0'
1978// :89:22: error: use of undefined value here causes illegal behavior
1979// :89:22: note: when computing vector element at index '0'
1980// :89:22: error: use of undefined value here causes illegal behavior
1981// :89:22: note: when computing vector element at index '0'
1982// :89:22: error: use of undefined value here causes illegal behavior
1983// :89:22: note: when computing vector element at index '0'
1984// :89:22: error: use of undefined value here causes illegal behavior
1985// :89:22: note: when computing vector element at index '1'
1986// :89:22: error: use of undefined value here causes illegal behavior
1987// :89:22: note: when computing vector element at index '1'
1988// :89:22: error: use of undefined value here causes illegal behavior
1989// :89:22: note: when computing vector element at index '0'
1990// :89:22: error: use of undefined value here causes illegal behavior
1991// :89:22: note: when computing vector element at index '0'
1992// :89:22: error: use of undefined value here causes illegal behavior
1993// :89:22: note: when computing vector element at index '0'
1994// :89:22: error: use of undefined value here causes illegal behavior
1995// :89:22: note: when computing vector element at index '0'
1996// :89:22: error: use of undefined value here causes illegal behavior
1997// :89:22: error: use of undefined value here causes illegal behavior
1998// :89:22: error: use of undefined value here causes illegal behavior
1999// :89:22: note: when computing vector element at index '0'
2000// :89:22: error: use of undefined value here causes illegal behavior
2001// :89:22: note: when computing vector element at index '0'
2002// :89:22: error: use of undefined value here causes illegal behavior
2003// :89:22: note: when computing vector element at index '0'
2004// :89:22: error: use of undefined value here causes illegal behavior
2005// :89:22: note: when computing vector element at index '0'
2006// :89:22: error: use of undefined value here causes illegal behavior
2007// :89:22: note: when computing vector element at index '1'
2008// :89:22: error: use of undefined value here causes illegal behavior
2009// :89:22: note: when computing vector element at index '1'
2010// :89:22: error: use of undefined value here causes illegal behavior
2011// :89:22: note: when computing vector element at index '0'
2012// :89:22: error: use of undefined value here causes illegal behavior
2013// :89:22: note: when computing vector element at index '0'
2014// :89:22: error: use of undefined value here causes illegal behavior
2015// :89:22: note: when computing vector element at index '0'
2016// :89:22: error: use of undefined value here causes illegal behavior
2017// :89:22: note: when computing vector element at index '0'
2018// :89:22: error: use of undefined value here causes illegal behavior
2019// :89:22: error: use of undefined value here causes illegal behavior
2020// :89:22: error: use of undefined value here causes illegal behavior
2021// :89:22: note: when computing vector element at index '0'
2022// :89:22: error: use of undefined value here causes illegal behavior
2023// :89:22: note: when computing vector element at index '0'
2024// :89:22: error: use of undefined value here causes illegal behavior
2025// :89:22: note: when computing vector element at index '0'
2026// :89:22: error: use of undefined value here causes illegal behavior
2027// :89:22: note: when computing vector element at index '0'
2028// :89:22: error: use of undefined value here causes illegal behavior
2029// :89:22: note: when computing vector element at index '1'
2030// :89:22: error: use of undefined value here causes illegal behavior
2031// :89:22: note: when computing vector element at index '1'
2032// :89:22: error: use of undefined value here causes illegal behavior
2033// :89:22: note: when computing vector element at index '0'
2034// :89:22: error: use of undefined value here causes illegal behavior
2035// :89:22: note: when computing vector element at index '0'
2036// :89:22: error: use of undefined value here causes illegal behavior
2037// :89:22: note: when computing vector element at index '0'
2038// :89:22: error: use of undefined value here causes illegal behavior
2039// :89:22: note: when computing vector element at index '0'
2040// :89:22: error: use of undefined value here causes illegal behavior
2041// :89:22: error: use of undefined value here causes illegal behavior
2042// :89:22: error: use of undefined value here causes illegal behavior
2043// :89:22: note: when computing vector element at index '0'
2044// :89:22: error: use of undefined value here causes illegal behavior
2045// :89:22: note: when computing vector element at index '0'
2046// :89:22: error: use of undefined value here causes illegal behavior
2047// :89:22: note: when computing vector element at index '0'
2048// :89:22: error: use of undefined value here causes illegal behavior
2049// :89:22: note: when computing vector element at index '0'
2050// :89:22: error: use of undefined value here causes illegal behavior
2051// :89:22: note: when computing vector element at index '1'
2052// :89:22: error: use of undefined value here causes illegal behavior
2053// :89:22: note: when computing vector element at index '1'
2054// :89:22: error: use of undefined value here causes illegal behavior
2055// :89:22: note: when computing vector element at index '0'
2056// :89:22: error: use of undefined value here causes illegal behavior
2057// :89:22: note: when computing vector element at index '0'
2058// :89:22: error: use of undefined value here causes illegal behavior
2059// :89:22: note: when computing vector element at index '0'
2060// :89:22: error: use of undefined value here causes illegal behavior
2061// :89:22: note: when computing vector element at index '0'
2062// :89:22: error: use of undefined value here causes illegal behavior
2063// :89:22: error: use of undefined value here causes illegal behavior
2064// :89:22: error: use of undefined value here causes illegal behavior
2065// :89:22: note: when computing vector element at index '0'
2066// :89:22: error: use of undefined value here causes illegal behavior
2067// :89:22: note: when computing vector element at index '0'
2068// :89:22: error: use of undefined value here causes illegal behavior
2069// :89:22: note: when computing vector element at index '0'
2070// :89:22: error: use of undefined value here causes illegal behavior
2071// :89:22: note: when computing vector element at index '0'
2072// :89:22: error: use of undefined value here causes illegal behavior
2073// :89:22: note: when computing vector element at index '1'
2074// :89:22: error: use of undefined value here causes illegal behavior
2075// :89:22: note: when computing vector element at index '1'
2076// :89:22: error: use of undefined value here causes illegal behavior
2077// :89:22: note: when computing vector element at index '0'
2078// :89:22: error: use of undefined value here causes illegal behavior
2079// :89:22: note: when computing vector element at index '0'
2080// :89:22: error: use of undefined value here causes illegal behavior
2081// :89:22: note: when computing vector element at index '0'
2082// :89:22: error: use of undefined value here causes illegal behavior
2083// :89:22: note: when computing vector element at index '0'
2084// :89:22: error: use of undefined value here causes illegal behavior
2085// :89:22: error: use of undefined value here causes illegal behavior
2086// :89:22: error: use of undefined value here causes illegal behavior
2087// :89:22: note: when computing vector element at index '0'
2088// :89:22: error: use of undefined value here causes illegal behavior
2089// :89:22: note: when computing vector element at index '0'
2090// :89:22: error: use of undefined value here causes illegal behavior
2091// :89:22: note: when computing vector element at index '0'
2092// :89:22: error: use of undefined value here causes illegal behavior
2093// :89:22: note: when computing vector element at index '0'
2094// :89:22: error: use of undefined value here causes illegal behavior
2095// :89:22: note: when computing vector element at index '1'
2096// :89:22: error: use of undefined value here causes illegal behavior
2097// :89:22: note: when computing vector element at index '1'
2098// :89:22: error: use of undefined value here causes illegal behavior
2099// :89:22: note: when computing vector element at index '0'
2100// :89:22: error: use of undefined value here causes illegal behavior
2101// :89:22: note: when computing vector element at index '0'
2102// :89:22: error: use of undefined value here causes illegal behavior
2103// :89:22: note: when computing vector element at index '0'
2104// :89:22: error: use of undefined value here causes illegal behavior
2105// :89:22: note: when computing vector element at index '0'
2106// :89:22: error: use of undefined value here causes illegal behavior
2107// :89:22: error: use of undefined value here causes illegal behavior
2108// :89:22: error: use of undefined value here causes illegal behavior
2109// :89:22: note: when computing vector element at index '0'
2110// :89:22: error: use of undefined value here causes illegal behavior
2111// :89:22: note: when computing vector element at index '0'
2112// :89:22: error: use of undefined value here causes illegal behavior
2113// :89:22: note: when computing vector element at index '0'
2114// :89:22: error: use of undefined value here causes illegal behavior
2115// :89:22: note: when computing vector element at index '0'
2116// :89:22: error: use of undefined value here causes illegal behavior
2117// :89:22: note: when computing vector element at index '1'
2118// :89:22: error: use of undefined value here causes illegal behavior
2119// :89:22: note: when computing vector element at index '1'
2120// :89:22: error: use of undefined value here causes illegal behavior
2121// :89:22: note: when computing vector element at index '0'
2122// :89:22: error: use of undefined value here causes illegal behavior
2123// :89:22: note: when computing vector element at index '0'
2124// :89:22: error: use of undefined value here causes illegal behavior
2125// :89:22: note: when computing vector element at index '0'
2126// :89:22: error: use of undefined value here causes illegal behavior
2127// :89:22: note: when computing vector element at index '0'
2128// :89:22: error: use of undefined value here causes illegal behavior
2129// :89:22: error: use of undefined value here causes illegal behavior
2130// :89:22: error: use of undefined value here causes illegal behavior
2131// :89:22: note: when computing vector element at index '0'
2132// :89:22: error: use of undefined value here causes illegal behavior
2133// :89:22: note: when computing vector element at index '0'
2134// :89:22: error: use of undefined value here causes illegal behavior
2135// :89:22: note: when computing vector element at index '0'
2136// :89:22: error: use of undefined value here causes illegal behavior
2137// :89:22: note: when computing vector element at index '0'
2138// :89:22: error: use of undefined value here causes illegal behavior
2139// :89:22: note: when computing vector element at index '1'
2140// :89:22: error: use of undefined value here causes illegal behavior
2141// :89:22: note: when computing vector element at index '1'
2142// :89:22: error: use of undefined value here causes illegal behavior
2143// :89:22: note: when computing vector element at index '0'
2144// :89:22: error: use of undefined value here causes illegal behavior
2145// :89:22: note: when computing vector element at index '0'
2146// :89:22: error: use of undefined value here causes illegal behavior
2147// :89:22: note: when computing vector element at index '0'
2148// :89:22: error: use of undefined value here causes illegal behavior
2149// :89:22: note: when computing vector element at index '0'
2150// :89:25: error: use of undefined value here causes illegal behavior
2151// :89:25: note: when computing vector element at index '0'
2152// :89:25: error: use of undefined value here causes illegal behavior
2153// :89:25: note: when computing vector element at index '0'
2154// :89:25: error: use of undefined value here causes illegal behavior
2155// :89:25: note: when computing vector element at index '0'
2156// :89:25: error: use of undefined value here causes illegal behavior
2157// :89:25: note: when computing vector element at index '0'
2158// :89:25: error: use of undefined value here causes illegal behavior
2159// :89:25: note: when computing vector element at index '0'
2160// :89:25: error: use of undefined value here causes illegal behavior
2161// :89:25: note: when computing vector element at index '0'
2162// :89:25: error: use of undefined value here causes illegal behavior
2163// :89:25: note: when computing vector element at index '0'
2164// :89:25: error: use of undefined value here causes illegal behavior
2165// :89:25: note: when computing vector element at index '0'
2166// :89:25: error: use of undefined value here causes illegal behavior
2167// :89:25: note: when computing vector element at index '0'
2168// :89:25: error: use of undefined value here causes illegal behavior
2169// :89:25: note: when computing vector element at index '0'
2170// :89:25: error: use of undefined value here causes illegal behavior
2171// :89:25: note: when computing vector element at index '0'
2172// :89:25: error: use of undefined value here causes illegal behavior
2173// :89:25: note: when computing vector element at index '0'
2174// :89:25: error: use of undefined value here causes illegal behavior
2175// :89:25: note: when computing vector element at index '0'
2176// :89:25: error: use of undefined value here causes illegal behavior
2177// :89:25: note: when computing vector element at index '0'
2178// :89:25: error: use of undefined value here causes illegal behavior
2179// :89:25: note: when computing vector element at index '0'
2180// :89:25: error: use of undefined value here causes illegal behavior
2181// :89:25: note: when computing vector element at index '0'
2182// :89:25: error: use of undefined value here causes illegal behavior
2183// :89:25: note: when computing vector element at index '0'
2184// :89:25: error: use of undefined value here causes illegal behavior
2185// :89:25: note: when computing vector element at index '0'
2186// :89:25: error: use of undefined value here causes illegal behavior
2187// :89:25: note: when computing vector element at index '0'
2188// :89:25: error: use of undefined value here causes illegal behavior
2189// :89:25: note: when computing vector element at index '0'
2190// :89:25: error: use of undefined value here causes illegal behavior
2191// :89:25: note: when computing vector element at index '0'
2192// :89:25: error: use of undefined value here causes illegal behavior
2193// :89:25: note: when computing vector element at index '0'
2194// :95:17: error: use of undefined value here causes illegal behavior
2195// :95:17: error: use of undefined value here causes illegal behavior
2196// :95:17: error: use of undefined value here causes illegal behavior
2197// :95:17: error: use of undefined value here causes illegal behavior
2198// :95:17: error: use of undefined value here causes illegal behavior
2199// :95:17: error: use of undefined value here causes illegal behavior
2200// :95:17: error: use of undefined value here causes illegal behavior
2201// :95:17: note: when computing vector element at index '1'
2202// :95:17: error: use of undefined value here causes illegal behavior
2203// :95:17: note: when computing vector element at index '1'
2204// :95:17: error: use of undefined value here causes illegal behavior
2205// :95:17: note: when computing vector element at index '1'
2206// :95:17: error: use of undefined value here causes illegal behavior
2207// :95:17: note: when computing vector element at index '1'
2208// :95:17: error: use of undefined value here causes illegal behavior
2209// :95:17: note: when computing vector element at index '0'
2210// :95:17: error: use of undefined value here causes illegal behavior
2211// :95:17: note: when computing vector element at index '0'
2212// :95:17: error: use of undefined value here causes illegal behavior
2213// :95:17: note: when computing vector element at index '0'
2214// :95:17: error: use of undefined value here causes illegal behavior
2215// :95:17: note: when computing vector element at index '0'
2216// :95:17: error: use of undefined value here causes illegal behavior
2217// :95:17: error: use of undefined value here causes illegal behavior
2218// :95:17: error: use of undefined value here causes illegal behavior
2219// :95:17: error: use of undefined value here causes illegal behavior
2220// :95:17: error: use of undefined value here causes illegal behavior
2221// :95:17: error: use of undefined value here causes illegal behavior
2222// :95:17: error: use of undefined value here causes illegal behavior
2223// :95:17: note: when computing vector element at index '1'
2224// :95:17: error: use of undefined value here causes illegal behavior
2225// :95:17: note: when computing vector element at index '1'
2226// :95:17: error: use of undefined value here causes illegal behavior
2227// :95:17: note: when computing vector element at index '1'
2228// :95:17: error: use of undefined value here causes illegal behavior
2229// :95:17: note: when computing vector element at index '1'
2230// :95:17: error: use of undefined value here causes illegal behavior
2231// :95:17: note: when computing vector element at index '0'
2232// :95:17: error: use of undefined value here causes illegal behavior
2233// :95:17: note: when computing vector element at index '0'
2234// :95:17: error: use of undefined value here causes illegal behavior
2235// :95:17: note: when computing vector element at index '0'
2236// :95:17: error: use of undefined value here causes illegal behavior
2237// :95:17: note: when computing vector element at index '0'
2238// :95:17: error: use of undefined value here causes illegal behavior
2239// :95:17: error: use of undefined value here causes illegal behavior
2240// :95:17: error: use of undefined value here causes illegal behavior
2241// :95:17: error: use of undefined value here causes illegal behavior
2242// :95:17: error: use of undefined value here causes illegal behavior
2243// :95:17: error: use of undefined value here causes illegal behavior
2244// :95:17: error: use of undefined value here causes illegal behavior
2245// :95:17: note: when computing vector element at index '1'
2246// :95:17: error: use of undefined value here causes illegal behavior
2247// :95:17: note: when computing vector element at index '1'
2248// :95:17: error: use of undefined value here causes illegal behavior
2249// :95:17: note: when computing vector element at index '1'
2250// :95:17: error: use of undefined value here causes illegal behavior
2251// :95:17: note: when computing vector element at index '1'
2252// :95:17: error: use of undefined value here causes illegal behavior
2253// :95:17: note: when computing vector element at index '0'
2254// :95:17: error: use of undefined value here causes illegal behavior
2255// :95:17: note: when computing vector element at index '0'
2256// :95:17: error: use of undefined value here causes illegal behavior
2257// :95:17: note: when computing vector element at index '0'
2258// :95:17: error: use of undefined value here causes illegal behavior
2259// :95:17: note: when computing vector element at index '0'
2260// :95:17: error: use of undefined value here causes illegal behavior
2261// :95:17: error: use of undefined value here causes illegal behavior
2262// :95:17: error: use of undefined value here causes illegal behavior
2263// :95:17: error: use of undefined value here causes illegal behavior
2264// :95:17: error: use of undefined value here causes illegal behavior
2265// :95:17: error: use of undefined value here causes illegal behavior
2266// :95:17: error: use of undefined value here causes illegal behavior
2267// :95:17: note: when computing vector element at index '1'
2268// :95:17: error: use of undefined value here causes illegal behavior
2269// :95:17: note: when computing vector element at index '1'
2270// :95:17: error: use of undefined value here causes illegal behavior
2271// :95:17: note: when computing vector element at index '1'
2272// :95:17: error: use of undefined value here causes illegal behavior
2273// :95:17: note: when computing vector element at index '1'
2274// :95:17: error: use of undefined value here causes illegal behavior
2275// :95:17: note: when computing vector element at index '0'
2276// :95:17: error: use of undefined value here causes illegal behavior
2277// :95:17: note: when computing vector element at index '0'
2278// :95:17: error: use of undefined value here causes illegal behavior
2279// :95:17: note: when computing vector element at index '0'
2280// :95:17: error: use of undefined value here causes illegal behavior
2281// :95:17: note: when computing vector element at index '0'
2282// :95:17: error: use of undefined value here causes illegal behavior
2283// :95:17: error: use of undefined value here causes illegal behavior
2284// :95:17: error: use of undefined value here causes illegal behavior
2285// :95:17: error: use of undefined value here causes illegal behavior
2286// :95:17: error: use of undefined value here causes illegal behavior
2287// :95:17: error: use of undefined value here causes illegal behavior
2288// :95:17: error: use of undefined value here causes illegal behavior
2289// :95:17: note: when computing vector element at index '1'
2290// :95:17: error: use of undefined value here causes illegal behavior
2291// :95:17: note: when computing vector element at index '1'
2292// :95:17: error: use of undefined value here causes illegal behavior
2293// :95:17: note: when computing vector element at index '1'
2294// :95:17: error: use of undefined value here causes illegal behavior
2295// :95:17: note: when computing vector element at index '1'
2296// :95:17: error: use of undefined value here causes illegal behavior
2297// :95:17: note: when computing vector element at index '0'
2298// :95:17: error: use of undefined value here causes illegal behavior
2299// :95:17: note: when computing vector element at index '0'
2300// :95:17: error: use of undefined value here causes illegal behavior
2301// :95:17: note: when computing vector element at index '0'
2302// :95:17: error: use of undefined value here causes illegal behavior
2303// :95:17: note: when computing vector element at index '0'
2304// :95:17: error: use of undefined value here causes illegal behavior
2305// :95:17: error: use of undefined value here causes illegal behavior
2306// :95:17: error: use of undefined value here causes illegal behavior
2307// :95:17: error: use of undefined value here causes illegal behavior
2308// :95:17: error: use of undefined value here causes illegal behavior
2309// :95:17: error: use of undefined value here causes illegal behavior
2310// :95:17: error: use of undefined value here causes illegal behavior
2311// :95:17: note: when computing vector element at index '1'
2312// :95:17: error: use of undefined value here causes illegal behavior
2313// :95:17: note: when computing vector element at index '1'
2314// :95:17: error: use of undefined value here causes illegal behavior
2315// :95:17: note: when computing vector element at index '1'
2316// :95:17: error: use of undefined value here causes illegal behavior
2317// :95:17: note: when computing vector element at index '1'
2318// :95:17: error: use of undefined value here causes illegal behavior
2319// :95:17: note: when computing vector element at index '0'
2320// :95:17: error: use of undefined value here causes illegal behavior
2321// :95:17: note: when computing vector element at index '0'
2322// :95:17: error: use of undefined value here causes illegal behavior
2323// :95:17: note: when computing vector element at index '0'
2324// :95:17: error: use of undefined value here causes illegal behavior
2325// :95:17: note: when computing vector element at index '0'
2326// :95:17: error: use of undefined value here causes illegal behavior
2327// :95:17: error: use of undefined value here causes illegal behavior
2328// :95:17: error: use of undefined value here causes illegal behavior
2329// :95:17: error: use of undefined value here causes illegal behavior
2330// :95:17: error: use of undefined value here causes illegal behavior
2331// :95:17: error: use of undefined value here causes illegal behavior
2332// :95:17: error: use of undefined value here causes illegal behavior
2333// :95:17: note: when computing vector element at index '1'
2334// :95:17: error: use of undefined value here causes illegal behavior
2335// :95:17: note: when computing vector element at index '1'
2336// :95:17: error: use of undefined value here causes illegal behavior
2337// :95:17: note: when computing vector element at index '1'
2338// :95:17: error: use of undefined value here causes illegal behavior
2339// :95:17: note: when computing vector element at index '1'
2340// :95:17: error: use of undefined value here causes illegal behavior
2341// :95:17: note: when computing vector element at index '0'
2342// :95:17: error: use of undefined value here causes illegal behavior
2343// :95:17: note: when computing vector element at index '0'
2344// :95:17: error: use of undefined value here causes illegal behavior
2345// :95:17: note: when computing vector element at index '0'
2346// :95:17: error: use of undefined value here causes illegal behavior
2347// :95:17: note: when computing vector element at index '0'
2348// :95:17: error: use of undefined value here causes illegal behavior
2349// :95:17: error: use of undefined value here causes illegal behavior
2350// :95:17: error: use of undefined value here causes illegal behavior
2351// :95:17: error: use of undefined value here causes illegal behavior
2352// :95:17: error: use of undefined value here causes illegal behavior
2353// :95:17: error: use of undefined value here causes illegal behavior
2354// :95:17: error: use of undefined value here causes illegal behavior
2355// :95:17: note: when computing vector element at index '1'
2356// :95:17: error: use of undefined value here causes illegal behavior
2357// :95:17: note: when computing vector element at index '1'
2358// :95:17: error: use of undefined value here causes illegal behavior
2359// :95:17: note: when computing vector element at index '1'
2360// :95:17: error: use of undefined value here causes illegal behavior
2361// :95:17: note: when computing vector element at index '1'
2362// :95:17: error: use of undefined value here causes illegal behavior
2363// :95:17: note: when computing vector element at index '0'
2364// :95:17: error: use of undefined value here causes illegal behavior
2365// :95:17: note: when computing vector element at index '0'
2366// :95:17: error: use of undefined value here causes illegal behavior
2367// :95:17: note: when computing vector element at index '0'
2368// :95:17: error: use of undefined value here causes illegal behavior
2369// :95:17: note: when computing vector element at index '0'
2370// :95:17: error: use of undefined value here causes illegal behavior
2371// :95:17: error: use of undefined value here causes illegal behavior
2372// :95:17: error: use of undefined value here causes illegal behavior
2373// :95:17: error: use of undefined value here causes illegal behavior
2374// :95:17: error: use of undefined value here causes illegal behavior
2375// :95:17: error: use of undefined value here causes illegal behavior
2376// :95:17: error: use of undefined value here causes illegal behavior
2377// :95:17: note: when computing vector element at index '1'
2378// :95:17: error: use of undefined value here causes illegal behavior
2379// :95:17: note: when computing vector element at index '1'
2380// :95:17: error: use of undefined value here causes illegal behavior
2381// :95:17: note: when computing vector element at index '1'
2382// :95:17: error: use of undefined value here causes illegal behavior
2383// :95:17: note: when computing vector element at index '1'
2384// :95:17: error: use of undefined value here causes illegal behavior
2385// :95:17: note: when computing vector element at index '0'
2386// :95:17: error: use of undefined value here causes illegal behavior
2387// :95:17: note: when computing vector element at index '0'
2388// :95:17: error: use of undefined value here causes illegal behavior
2389// :95:17: note: when computing vector element at index '0'
2390// :95:17: error: use of undefined value here causes illegal behavior
2391// :95:17: note: when computing vector element at index '0'
2392// :95:17: error: use of undefined value here causes illegal behavior
2393// :95:17: error: use of undefined value here causes illegal behavior
2394// :95:17: error: use of undefined value here causes illegal behavior
2395// :95:17: error: use of undefined value here causes illegal behavior
2396// :95:17: error: use of undefined value here causes illegal behavior
2397// :95:17: error: use of undefined value here causes illegal behavior
2398// :95:17: error: use of undefined value here causes illegal behavior
2399// :95:17: note: when computing vector element at index '1'
2400// :95:17: error: use of undefined value here causes illegal behavior
2401// :95:17: note: when computing vector element at index '1'
2402// :95:17: error: use of undefined value here causes illegal behavior
2403// :95:17: note: when computing vector element at index '1'
2404// :95:17: error: use of undefined value here causes illegal behavior
2405// :95:17: note: when computing vector element at index '1'
2406// :95:17: error: use of undefined value here causes illegal behavior
2407// :95:17: note: when computing vector element at index '0'
2408// :95:17: error: use of undefined value here causes illegal behavior
2409// :95:17: note: when computing vector element at index '0'
2410// :95:17: error: use of undefined value here causes illegal behavior
2411// :95:17: note: when computing vector element at index '0'
2412// :95:17: error: use of undefined value here causes illegal behavior
2413// :95:17: note: when computing vector element at index '0'
2414// :95:17: error: use of undefined value here causes illegal behavior
2415// :95:17: error: use of undefined value here causes illegal behavior
2416// :95:17: error: use of undefined value here causes illegal behavior
2417// :95:17: error: use of undefined value here causes illegal behavior
2418// :95:17: error: use of undefined value here causes illegal behavior
2419// :95:17: error: use of undefined value here causes illegal behavior
2420// :95:17: error: use of undefined value here causes illegal behavior
2421// :95:17: note: when computing vector element at index '1'
2422// :95:17: error: use of undefined value here causes illegal behavior
2423// :95:17: note: when computing vector element at index '1'
2424// :95:17: error: use of undefined value here causes illegal behavior
2425// :95:17: note: when computing vector element at index '1'
2426// :95:17: error: use of undefined value here causes illegal behavior
2427// :95:17: note: when computing vector element at index '1'
2428// :95:17: error: use of undefined value here causes illegal behavior
2429// :95:17: note: when computing vector element at index '0'
2430// :95:17: error: use of undefined value here causes illegal behavior
2431// :95:17: note: when computing vector element at index '0'
2432// :95:17: error: use of undefined value here causes illegal behavior
2433// :95:17: note: when computing vector element at index '0'
2434// :95:17: error: use of undefined value here causes illegal behavior
2435// :95:17: note: when computing vector element at index '0'
2436// :99:27: error: use of undefined value here causes illegal behavior
2437// :99:27: error: use of undefined value here causes illegal behavior
2438// :99:27: error: use of undefined value here causes illegal behavior
2439// :99:27: error: use of undefined value here causes illegal behavior
2440// :99:27: error: use of undefined value here causes illegal behavior
2441// :99:27: error: use of undefined value here causes illegal behavior
2442// :99:27: error: use of undefined value here causes illegal behavior
2443// :99:27: note: when computing vector element at index '1'
2444// :99:27: error: use of undefined value here causes illegal behavior
2445// :99:27: note: when computing vector element at index '1'
2446// :99:27: error: use of undefined value here causes illegal behavior
2447// :99:27: note: when computing vector element at index '1'
2448// :99:27: error: use of undefined value here causes illegal behavior
2449// :99:27: note: when computing vector element at index '1'
2450// :99:27: error: use of undefined value here causes illegal behavior
2451// :99:27: note: when computing vector element at index '0'
2452// :99:27: error: use of undefined value here causes illegal behavior
2453// :99:27: note: when computing vector element at index '0'
2454// :99:27: error: use of undefined value here causes illegal behavior
2455// :99:27: note: when computing vector element at index '0'
2456// :99:27: error: use of undefined value here causes illegal behavior
2457// :99:27: note: when computing vector element at index '0'
2458// :99:27: error: use of undefined value here causes illegal behavior
2459// :99:27: error: use of undefined value here causes illegal behavior
2460// :99:27: error: use of undefined value here causes illegal behavior
2461// :99:27: error: use of undefined value here causes illegal behavior
2462// :99:27: error: use of undefined value here causes illegal behavior
2463// :99:27: error: use of undefined value here causes illegal behavior
2464// :99:27: error: use of undefined value here causes illegal behavior
2465// :99:27: note: when computing vector element at index '1'
2466// :99:27: error: use of undefined value here causes illegal behavior
2467// :99:27: note: when computing vector element at index '1'
2468// :99:27: error: use of undefined value here causes illegal behavior
2469// :99:27: note: when computing vector element at index '1'
2470// :99:27: error: use of undefined value here causes illegal behavior
2471// :99:27: note: when computing vector element at index '1'
2472// :99:27: error: use of undefined value here causes illegal behavior
2473// :99:27: note: when computing vector element at index '0'
2474// :99:27: error: use of undefined value here causes illegal behavior
2475// :99:27: note: when computing vector element at index '0'
2476// :99:27: error: use of undefined value here causes illegal behavior
2477// :99:27: note: when computing vector element at index '0'
2478// :99:27: error: use of undefined value here causes illegal behavior
2479// :99:27: note: when computing vector element at index '0'
2480// :99:27: error: use of undefined value here causes illegal behavior
2481// :99:27: error: use of undefined value here causes illegal behavior
2482// :99:27: error: use of undefined value here causes illegal behavior
2483// :99:27: error: use of undefined value here causes illegal behavior
2484// :99:27: error: use of undefined value here causes illegal behavior
2485// :99:27: error: use of undefined value here causes illegal behavior
2486// :99:27: error: use of undefined value here causes illegal behavior
2487// :99:27: note: when computing vector element at index '1'
2488// :99:27: error: use of undefined value here causes illegal behavior
2489// :99:27: note: when computing vector element at index '1'
2490// :99:27: error: use of undefined value here causes illegal behavior
2491// :99:27: note: when computing vector element at index '1'
2492// :99:27: error: use of undefined value here causes illegal behavior
2493// :99:27: note: when computing vector element at index '1'
2494// :99:27: error: use of undefined value here causes illegal behavior
2495// :99:27: note: when computing vector element at index '0'
2496// :99:27: error: use of undefined value here causes illegal behavior
2497// :99:27: note: when computing vector element at index '0'
2498// :99:27: error: use of undefined value here causes illegal behavior
2499// :99:27: note: when computing vector element at index '0'
2500// :99:27: error: use of undefined value here causes illegal behavior
2501// :99:27: note: when computing vector element at index '0'
2502// :99:27: error: use of undefined value here causes illegal behavior
2503// :99:27: error: use of undefined value here causes illegal behavior
2504// :99:27: error: use of undefined value here causes illegal behavior
2505// :99:27: error: use of undefined value here causes illegal behavior
2506// :99:27: error: use of undefined value here causes illegal behavior
2507// :99:27: error: use of undefined value here causes illegal behavior
2508// :99:27: error: use of undefined value here causes illegal behavior
2509// :99:27: note: when computing vector element at index '1'
2510// :99:27: error: use of undefined value here causes illegal behavior
2511// :99:27: note: when computing vector element at index '1'
2512// :99:27: error: use of undefined value here causes illegal behavior
2513// :99:27: note: when computing vector element at index '1'
2514// :99:27: error: use of undefined value here causes illegal behavior
2515// :99:27: note: when computing vector element at index '1'
2516// :99:27: error: use of undefined value here causes illegal behavior
2517// :99:27: note: when computing vector element at index '0'
2518// :99:27: error: use of undefined value here causes illegal behavior
2519// :99:27: note: when computing vector element at index '0'
2520// :99:27: error: use of undefined value here causes illegal behavior
2521// :99:27: note: when computing vector element at index '0'
2522// :99:27: error: use of undefined value here causes illegal behavior
2523// :99:27: note: when computing vector element at index '0'
2524// :99:27: error: use of undefined value here causes illegal behavior
2525// :99:27: error: use of undefined value here causes illegal behavior
2526// :99:27: error: use of undefined value here causes illegal behavior
2527// :99:27: error: use of undefined value here causes illegal behavior
2528// :99:27: error: use of undefined value here causes illegal behavior
2529// :99:27: error: use of undefined value here causes illegal behavior
2530// :99:27: error: use of undefined value here causes illegal behavior
2531// :99:27: note: when computing vector element at index '1'
2532// :99:27: error: use of undefined value here causes illegal behavior
2533// :99:27: note: when computing vector element at index '1'
2534// :99:27: error: use of undefined value here causes illegal behavior
2535// :99:27: note: when computing vector element at index '1'
2536// :99:27: error: use of undefined value here causes illegal behavior
2537// :99:27: note: when computing vector element at index '1'
2538// :99:27: error: use of undefined value here causes illegal behavior
2539// :99:27: note: when computing vector element at index '0'
2540// :99:27: error: use of undefined value here causes illegal behavior
2541// :99:27: note: when computing vector element at index '0'
2542// :99:27: error: use of undefined value here causes illegal behavior
2543// :99:27: note: when computing vector element at index '0'
2544// :99:27: error: use of undefined value here causes illegal behavior
2545// :99:27: note: when computing vector element at index '0'
2546// :99:27: error: use of undefined value here causes illegal behavior
2547// :99:27: error: use of undefined value here causes illegal behavior
2548// :99:27: error: use of undefined value here causes illegal behavior
2549// :99:27: error: use of undefined value here causes illegal behavior
2550// :99:27: error: use of undefined value here causes illegal behavior
2551// :99:27: error: use of undefined value here causes illegal behavior
2552// :99:27: error: use of undefined value here causes illegal behavior
2553// :99:27: note: when computing vector element at index '1'
2554// :99:27: error: use of undefined value here causes illegal behavior
2555// :99:27: note: when computing vector element at index '1'
2556// :99:27: error: use of undefined value here causes illegal behavior
2557// :99:27: note: when computing vector element at index '1'
2558// :99:27: error: use of undefined value here causes illegal behavior
2559// :99:27: note: when computing vector element at index '1'
2560// :99:27: error: use of undefined value here causes illegal behavior
2561// :99:27: note: when computing vector element at index '0'
2562// :99:27: error: use of undefined value here causes illegal behavior
2563// :99:27: note: when computing vector element at index '0'
2564// :99:27: error: use of undefined value here causes illegal behavior
2565// :99:27: note: when computing vector element at index '0'
2566// :99:27: error: use of undefined value here causes illegal behavior
2567// :99:27: note: when computing vector element at index '0'
2568// :99:27: error: use of undefined value here causes illegal behavior
2569// :99:27: error: use of undefined value here causes illegal behavior
2570// :99:27: error: use of undefined value here causes illegal behavior
2571// :99:27: error: use of undefined value here causes illegal behavior
2572// :99:27: error: use of undefined value here causes illegal behavior
2573// :99:27: error: use of undefined value here causes illegal behavior
2574// :99:27: error: use of undefined value here causes illegal behavior
2575// :99:27: note: when computing vector element at index '1'
2576// :99:27: error: use of undefined value here causes illegal behavior
2577// :99:27: note: when computing vector element at index '1'
2578// :99:27: error: use of undefined value here causes illegal behavior
2579// :99:27: note: when computing vector element at index '1'
2580// :99:27: error: use of undefined value here causes illegal behavior
2581// :99:27: note: when computing vector element at index '1'
2582// :99:27: error: use of undefined value here causes illegal behavior
2583// :99:27: note: when computing vector element at index '0'
2584// :99:27: error: use of undefined value here causes illegal behavior
2585// :99:27: note: when computing vector element at index '0'
2586// :99:27: error: use of undefined value here causes illegal behavior
2587// :99:27: note: when computing vector element at index '0'
2588// :99:27: error: use of undefined value here causes illegal behavior
2589// :99:27: note: when computing vector element at index '0'
2590// :99:27: error: use of undefined value here causes illegal behavior
2591// :99:27: error: use of undefined value here causes illegal behavior
2592// :99:27: error: use of undefined value here causes illegal behavior
2593// :99:27: error: use of undefined value here causes illegal behavior
2594// :99:27: error: use of undefined value here causes illegal behavior
2595// :99:27: error: use of undefined value here causes illegal behavior
2596// :99:27: error: use of undefined value here causes illegal behavior
2597// :99:27: note: when computing vector element at index '1'
2598// :99:27: error: use of undefined value here causes illegal behavior
2599// :99:27: note: when computing vector element at index '1'
2600// :99:27: error: use of undefined value here causes illegal behavior
2601// :99:27: note: when computing vector element at index '1'
2602// :99:27: error: use of undefined value here causes illegal behavior
2603// :99:27: note: when computing vector element at index '1'
2604// :99:27: error: use of undefined value here causes illegal behavior
2605// :99:27: note: when computing vector element at index '0'
2606// :99:27: error: use of undefined value here causes illegal behavior
2607// :99:27: note: when computing vector element at index '0'
2608// :99:27: error: use of undefined value here causes illegal behavior
2609// :99:27: note: when computing vector element at index '0'
2610// :99:27: error: use of undefined value here causes illegal behavior
2611// :99:27: note: when computing vector element at index '0'
2612// :99:27: error: use of undefined value here causes illegal behavior
2613// :99:27: error: use of undefined value here causes illegal behavior
2614// :99:27: error: use of undefined value here causes illegal behavior
2615// :99:27: error: use of undefined value here causes illegal behavior
2616// :99:27: error: use of undefined value here causes illegal behavior
2617// :99:27: error: use of undefined value here causes illegal behavior
2618// :99:27: error: use of undefined value here causes illegal behavior
2619// :99:27: note: when computing vector element at index '1'
2620// :99:27: error: use of undefined value here causes illegal behavior
2621// :99:27: note: when computing vector element at index '1'
2622// :99:27: error: use of undefined value here causes illegal behavior
2623// :99:27: note: when computing vector element at index '1'
2624// :99:27: error: use of undefined value here causes illegal behavior
2625// :99:27: note: when computing vector element at index '1'
2626// :99:27: error: use of undefined value here causes illegal behavior
2627// :99:27: note: when computing vector element at index '0'
2628// :99:27: error: use of undefined value here causes illegal behavior
2629// :99:27: note: when computing vector element at index '0'
2630// :99:27: error: use of undefined value here causes illegal behavior
2631// :99:27: note: when computing vector element at index '0'
2632// :99:27: error: use of undefined value here causes illegal behavior
2633// :99:27: note: when computing vector element at index '0'
2634// :99:27: error: use of undefined value here causes illegal behavior
2635// :99:27: error: use of undefined value here causes illegal behavior
2636// :99:27: error: use of undefined value here causes illegal behavior
2637// :99:27: error: use of undefined value here causes illegal behavior
2638// :99:27: error: use of undefined value here causes illegal behavior
2639// :99:27: error: use of undefined value here causes illegal behavior
2640// :99:27: error: use of undefined value here causes illegal behavior
2641// :99:27: note: when computing vector element at index '1'
2642// :99:27: error: use of undefined value here causes illegal behavior
2643// :99:27: note: when computing vector element at index '1'
2644// :99:27: error: use of undefined value here causes illegal behavior
2645// :99:27: note: when computing vector element at index '1'
2646// :99:27: error: use of undefined value here causes illegal behavior
2647// :99:27: note: when computing vector element at index '1'
2648// :99:27: error: use of undefined value here causes illegal behavior
2649// :99:27: note: when computing vector element at index '0'
2650// :99:27: error: use of undefined value here causes illegal behavior
2651// :99:27: note: when computing vector element at index '0'
2652// :99:27: error: use of undefined value here causes illegal behavior
2653// :99:27: note: when computing vector element at index '0'
2654// :99:27: error: use of undefined value here causes illegal behavior
2655// :99:27: note: when computing vector element at index '0'
2656// :99:27: error: use of undefined value here causes illegal behavior
2657// :99:27: error: use of undefined value here causes illegal behavior
2658// :99:27: error: use of undefined value here causes illegal behavior
2659// :99:27: error: use of undefined value here causes illegal behavior
2660// :99:27: error: use of undefined value here causes illegal behavior
2661// :99:27: error: use of undefined value here causes illegal behavior
2662// :99:27: error: use of undefined value here causes illegal behavior
2663// :99:27: note: when computing vector element at index '1'
2664// :99:27: error: use of undefined value here causes illegal behavior
2665// :99:27: note: when computing vector element at index '1'
2666// :99:27: error: use of undefined value here causes illegal behavior
2667// :99:27: note: when computing vector element at index '1'
2668// :99:27: error: use of undefined value here causes illegal behavior
2669// :99:27: note: when computing vector element at index '1'
2670// :99:27: error: use of undefined value here causes illegal behavior
2671// :99:27: note: when computing vector element at index '0'
2672// :99:27: error: use of undefined value here causes illegal behavior
2673// :99:27: note: when computing vector element at index '0'
2674// :99:27: error: use of undefined value here causes illegal behavior
2675// :99:27: note: when computing vector element at index '0'
2676// :99:27: error: use of undefined value here causes illegal behavior
2677// :99:27: note: when computing vector element at index '0'
2678// :103:27: error: use of undefined value here causes illegal behavior
2679// :103:27: error: use of undefined value here causes illegal behavior
2680// :103:27: error: use of undefined value here causes illegal behavior
2681// :103:27: error: use of undefined value here causes illegal behavior
2682// :103:27: error: use of undefined value here causes illegal behavior
2683// :103:27: error: use of undefined value here causes illegal behavior
2684// :103:27: error: use of undefined value here causes illegal behavior
2685// :103:27: note: when computing vector element at index '1'
2686// :103:27: error: use of undefined value here causes illegal behavior
2687// :103:27: note: when computing vector element at index '1'
2688// :103:27: error: use of undefined value here causes illegal behavior
2689// :103:27: note: when computing vector element at index '1'
2690// :103:27: error: use of undefined value here causes illegal behavior
2691// :103:27: note: when computing vector element at index '1'
2692// :103:27: error: use of undefined value here causes illegal behavior
2693// :103:27: note: when computing vector element at index '0'
2694// :103:27: error: use of undefined value here causes illegal behavior
2695// :103:27: note: when computing vector element at index '0'
2696// :103:27: error: use of undefined value here causes illegal behavior
2697// :103:27: note: when computing vector element at index '0'
2698// :103:27: error: use of undefined value here causes illegal behavior
2699// :103:27: note: when computing vector element at index '0'
2700// :103:27: error: use of undefined value here causes illegal behavior
2701// :103:27: error: use of undefined value here causes illegal behavior
2702// :103:27: error: use of undefined value here causes illegal behavior
2703// :103:27: error: use of undefined value here causes illegal behavior
2704// :103:27: error: use of undefined value here causes illegal behavior
2705// :103:27: error: use of undefined value here causes illegal behavior
2706// :103:27: error: use of undefined value here causes illegal behavior
2707// :103:27: note: when computing vector element at index '1'
2708// :103:27: error: use of undefined value here causes illegal behavior
2709// :103:27: note: when computing vector element at index '1'
2710// :103:27: error: use of undefined value here causes illegal behavior
2711// :103:27: note: when computing vector element at index '1'
2712// :103:27: error: use of undefined value here causes illegal behavior
2713// :103:27: note: when computing vector element at index '1'
2714// :103:27: error: use of undefined value here causes illegal behavior
2715// :103:27: note: when computing vector element at index '0'
2716// :103:27: error: use of undefined value here causes illegal behavior
2717// :103:27: note: when computing vector element at index '0'
2718// :103:27: error: use of undefined value here causes illegal behavior
2719// :103:27: note: when computing vector element at index '0'
2720// :103:27: error: use of undefined value here causes illegal behavior
2721// :103:27: note: when computing vector element at index '0'
2722// :103:27: error: use of undefined value here causes illegal behavior
2723// :103:27: error: use of undefined value here causes illegal behavior
2724// :103:27: error: use of undefined value here causes illegal behavior
2725// :103:27: error: use of undefined value here causes illegal behavior
2726// :103:27: error: use of undefined value here causes illegal behavior
2727// :103:27: error: use of undefined value here causes illegal behavior
2728// :103:27: error: use of undefined value here causes illegal behavior
2729// :103:27: note: when computing vector element at index '1'
2730// :103:27: error: use of undefined value here causes illegal behavior
2731// :103:27: note: when computing vector element at index '1'
2732// :103:27: error: use of undefined value here causes illegal behavior
2733// :103:27: note: when computing vector element at index '1'
2734// :103:27: error: use of undefined value here causes illegal behavior
2735// :103:27: note: when computing vector element at index '1'
2736// :103:27: error: use of undefined value here causes illegal behavior
2737// :103:27: note: when computing vector element at index '0'
2738// :103:27: error: use of undefined value here causes illegal behavior
2739// :103:27: note: when computing vector element at index '0'
2740// :103:27: error: use of undefined value here causes illegal behavior
2741// :103:27: note: when computing vector element at index '0'
2742// :103:27: error: use of undefined value here causes illegal behavior
2743// :103:27: note: when computing vector element at index '0'
2744// :103:27: error: use of undefined value here causes illegal behavior
2745// :103:27: error: use of undefined value here causes illegal behavior
2746// :103:27: error: use of undefined value here causes illegal behavior
2747// :103:27: error: use of undefined value here causes illegal behavior
2748// :103:27: error: use of undefined value here causes illegal behavior
2749// :103:27: error: use of undefined value here causes illegal behavior
2750// :103:27: error: use of undefined value here causes illegal behavior
2751// :103:27: note: when computing vector element at index '1'
2752// :103:27: error: use of undefined value here causes illegal behavior
2753// :103:27: note: when computing vector element at index '1'
2754// :103:27: error: use of undefined value here causes illegal behavior
2755// :103:27: note: when computing vector element at index '1'
2756// :103:27: error: use of undefined value here causes illegal behavior
2757// :103:27: note: when computing vector element at index '1'
2758// :103:27: error: use of undefined value here causes illegal behavior
2759// :103:27: note: when computing vector element at index '0'
2760// :103:27: error: use of undefined value here causes illegal behavior
2761// :103:27: note: when computing vector element at index '0'
2762// :103:27: error: use of undefined value here causes illegal behavior
2763// :103:27: note: when computing vector element at index '0'
2764// :103:27: error: use of undefined value here causes illegal behavior
2765// :103:27: note: when computing vector element at index '0'
2766// :103:27: error: use of undefined value here causes illegal behavior
2767// :103:27: error: use of undefined value here causes illegal behavior
2768// :103:27: error: use of undefined value here causes illegal behavior
2769// :103:27: error: use of undefined value here causes illegal behavior
2770// :103:27: error: use of undefined value here causes illegal behavior
2771// :103:27: error: use of undefined value here causes illegal behavior
2772// :103:27: error: use of undefined value here causes illegal behavior
2773// :103:27: note: when computing vector element at index '1'
2774// :103:27: error: use of undefined value here causes illegal behavior
2775// :103:27: note: when computing vector element at index '1'
2776// :103:27: error: use of undefined value here causes illegal behavior
2777// :103:27: note: when computing vector element at index '1'
2778// :103:27: error: use of undefined value here causes illegal behavior
2779// :103:27: note: when computing vector element at index '1'
2780// :103:27: error: use of undefined value here causes illegal behavior
2781// :103:27: note: when computing vector element at index '0'
2782// :103:27: error: use of undefined value here causes illegal behavior
2783// :103:27: note: when computing vector element at index '0'
2784// :103:27: error: use of undefined value here causes illegal behavior
2785// :103:27: note: when computing vector element at index '0'
2786// :103:27: error: use of undefined value here causes illegal behavior
2787// :103:27: note: when computing vector element at index '0'
2788// :103:27: error: use of undefined value here causes illegal behavior
2789// :103:27: error: use of undefined value here causes illegal behavior
2790// :103:27: error: use of undefined value here causes illegal behavior
2791// :103:27: error: use of undefined value here causes illegal behavior
2792// :103:27: error: use of undefined value here causes illegal behavior
2793// :103:27: error: use of undefined value here causes illegal behavior
2794// :103:27: error: use of undefined value here causes illegal behavior
2795// :103:27: note: when computing vector element at index '1'
2796// :103:27: error: use of undefined value here causes illegal behavior
2797// :103:27: note: when computing vector element at index '1'
2798// :103:27: error: use of undefined value here causes illegal behavior
2799// :103:27: note: when computing vector element at index '1'
2800// :103:27: error: use of undefined value here causes illegal behavior
2801// :103:27: note: when computing vector element at index '1'
2802// :103:27: error: use of undefined value here causes illegal behavior
2803// :103:27: note: when computing vector element at index '0'
2804// :103:27: error: use of undefined value here causes illegal behavior
2805// :103:27: note: when computing vector element at index '0'
2806// :103:27: error: use of undefined value here causes illegal behavior
2807// :103:27: note: when computing vector element at index '0'
2808// :103:27: error: use of undefined value here causes illegal behavior
2809// :103:27: note: when computing vector element at index '0'
2810// :103:27: error: use of undefined value here causes illegal behavior
2811// :103:27: error: use of undefined value here causes illegal behavior
2812// :103:27: error: use of undefined value here causes illegal behavior
2813// :103:27: error: use of undefined value here causes illegal behavior
2814// :103:27: error: use of undefined value here causes illegal behavior
2815// :103:27: error: use of undefined value here causes illegal behavior
2816// :103:27: error: use of undefined value here causes illegal behavior
2817// :103:27: note: when computing vector element at index '1'
2818// :103:27: error: use of undefined value here causes illegal behavior
2819// :103:27: note: when computing vector element at index '1'
2820// :103:27: error: use of undefined value here causes illegal behavior
2821// :103:27: note: when computing vector element at index '1'
2822// :103:27: error: use of undefined value here causes illegal behavior
2823// :103:27: note: when computing vector element at index '1'
2824// :103:27: error: use of undefined value here causes illegal behavior
2825// :103:27: note: when computing vector element at index '0'
2826// :103:27: error: use of undefined value here causes illegal behavior
2827// :103:27: note: when computing vector element at index '0'
2828// :103:27: error: use of undefined value here causes illegal behavior
2829// :103:27: note: when computing vector element at index '0'
2830// :103:27: error: use of undefined value here causes illegal behavior
2831// :103:27: note: when computing vector element at index '0'
2832// :103:27: error: use of undefined value here causes illegal behavior
2833// :103:27: error: use of undefined value here causes illegal behavior
2834// :103:27: error: use of undefined value here causes illegal behavior
2835// :103:27: error: use of undefined value here causes illegal behavior
2836// :103:27: error: use of undefined value here causes illegal behavior
2837// :103:27: error: use of undefined value here causes illegal behavior
2838// :103:27: error: use of undefined value here causes illegal behavior
2839// :103:27: note: when computing vector element at index '1'
2840// :103:27: error: use of undefined value here causes illegal behavior
2841// :103:27: note: when computing vector element at index '1'
2842// :103:27: error: use of undefined value here causes illegal behavior
2843// :103:27: note: when computing vector element at index '1'
2844// :103:27: error: use of undefined value here causes illegal behavior
2845// :103:27: note: when computing vector element at index '1'
2846// :103:27: error: use of undefined value here causes illegal behavior
2847// :103:27: note: when computing vector element at index '0'
2848// :103:27: error: use of undefined value here causes illegal behavior
2849// :103:27: note: when computing vector element at index '0'
2850// :103:27: error: use of undefined value here causes illegal behavior
2851// :103:27: note: when computing vector element at index '0'
2852// :103:27: error: use of undefined value here causes illegal behavior
2853// :103:27: note: when computing vector element at index '0'
2854// :103:27: error: use of undefined value here causes illegal behavior
2855// :103:27: error: use of undefined value here causes illegal behavior
2856// :103:27: error: use of undefined value here causes illegal behavior
2857// :103:27: error: use of undefined value here causes illegal behavior
2858// :103:27: error: use of undefined value here causes illegal behavior
2859// :103:27: error: use of undefined value here causes illegal behavior
2860// :103:27: error: use of undefined value here causes illegal behavior
2861// :103:27: note: when computing vector element at index '1'
2862// :103:27: error: use of undefined value here causes illegal behavior
2863// :103:27: note: when computing vector element at index '1'
2864// :103:27: error: use of undefined value here causes illegal behavior
2865// :103:27: note: when computing vector element at index '1'
2866// :103:27: error: use of undefined value here causes illegal behavior
2867// :103:27: note: when computing vector element at index '1'
2868// :103:27: error: use of undefined value here causes illegal behavior
2869// :103:27: note: when computing vector element at index '0'
2870// :103:27: error: use of undefined value here causes illegal behavior
2871// :103:27: note: when computing vector element at index '0'
2872// :103:27: error: use of undefined value here causes illegal behavior
2873// :103:27: note: when computing vector element at index '0'
2874// :103:27: error: use of undefined value here causes illegal behavior
2875// :103:27: note: when computing vector element at index '0'
2876// :103:27: error: use of undefined value here causes illegal behavior
2877// :103:27: error: use of undefined value here causes illegal behavior
2878// :103:27: error: use of undefined value here causes illegal behavior
2879// :103:27: error: use of undefined value here causes illegal behavior
2880// :103:27: error: use of undefined value here causes illegal behavior
2881// :103:27: error: use of undefined value here causes illegal behavior
2882// :103:27: error: use of undefined value here causes illegal behavior
2883// :103:27: note: when computing vector element at index '1'
2884// :103:27: error: use of undefined value here causes illegal behavior
2885// :103:27: note: when computing vector element at index '1'
2886// :103:27: error: use of undefined value here causes illegal behavior
2887// :103:27: note: when computing vector element at index '1'
2888// :103:27: error: use of undefined value here causes illegal behavior
2889// :103:27: note: when computing vector element at index '1'
2890// :103:27: error: use of undefined value here causes illegal behavior
2891// :103:27: note: when computing vector element at index '0'
2892// :103:27: error: use of undefined value here causes illegal behavior
2893// :103:27: note: when computing vector element at index '0'
2894// :103:27: error: use of undefined value here causes illegal behavior
2895// :103:27: note: when computing vector element at index '0'
2896// :103:27: error: use of undefined value here causes illegal behavior
2897// :103:27: note: when computing vector element at index '0'
2898// :103:27: error: use of undefined value here causes illegal behavior
2899// :103:27: error: use of undefined value here causes illegal behavior
2900// :103:27: error: use of undefined value here causes illegal behavior
2901// :103:27: error: use of undefined value here causes illegal behavior
2902// :103:27: error: use of undefined value here causes illegal behavior
2903// :103:27: error: use of undefined value here causes illegal behavior
2904// :103:27: error: use of undefined value here causes illegal behavior
2905// :103:27: note: when computing vector element at index '1'
2906// :103:27: error: use of undefined value here causes illegal behavior
2907// :103:27: note: when computing vector element at index '1'
2908// :103:27: error: use of undefined value here causes illegal behavior
2909// :103:27: note: when computing vector element at index '1'
2910// :103:27: error: use of undefined value here causes illegal behavior
2911// :103:27: note: when computing vector element at index '1'
2912// :103:27: error: use of undefined value here causes illegal behavior
2913// :103:27: note: when computing vector element at index '0'
2914// :103:27: error: use of undefined value here causes illegal behavior
2915// :103:27: note: when computing vector element at index '0'
2916// :103:27: error: use of undefined value here causes illegal behavior
2917// :103:27: note: when computing vector element at index '0'
2918// :103:27: error: use of undefined value here causes illegal behavior
2919// :103:27: note: when computing vector element at index '0'
2920// :107:27: error: use of undefined value here causes illegal behavior
2921// :107:27: error: use of undefined value here causes illegal behavior
2922// :107:27: error: use of undefined value here causes illegal behavior
2923// :107:27: error: use of undefined value here causes illegal behavior
2924// :107:27: error: use of undefined value here causes illegal behavior
2925// :107:27: error: use of undefined value here causes illegal behavior
2926// :107:27: error: use of undefined value here causes illegal behavior
2927// :107:27: note: when computing vector element at index '1'
2928// :107:27: error: use of undefined value here causes illegal behavior
2929// :107:27: note: when computing vector element at index '1'
2930// :107:27: error: use of undefined value here causes illegal behavior
2931// :107:27: note: when computing vector element at index '1'
2932// :107:27: error: use of undefined value here causes illegal behavior
2933// :107:27: note: when computing vector element at index '1'
2934// :107:27: error: use of undefined value here causes illegal behavior
2935// :107:27: note: when computing vector element at index '0'
2936// :107:27: error: use of undefined value here causes illegal behavior
2937// :107:27: note: when computing vector element at index '0'
2938// :107:27: error: use of undefined value here causes illegal behavior
2939// :107:27: note: when computing vector element at index '0'
2940// :107:27: error: use of undefined value here causes illegal behavior
2941// :107:27: note: when computing vector element at index '0'
2942// :107:27: error: use of undefined value here causes illegal behavior
2943// :107:27: error: use of undefined value here causes illegal behavior
2944// :107:27: error: use of undefined value here causes illegal behavior
2945// :107:27: error: use of undefined value here causes illegal behavior
2946// :107:27: error: use of undefined value here causes illegal behavior
2947// :107:27: error: use of undefined value here causes illegal behavior
2948// :107:27: error: use of undefined value here causes illegal behavior
2949// :107:27: note: when computing vector element at index '1'
2950// :107:27: error: use of undefined value here causes illegal behavior
2951// :107:27: note: when computing vector element at index '1'
2952// :107:27: error: use of undefined value here causes illegal behavior
2953// :107:27: note: when computing vector element at index '1'
2954// :107:27: error: use of undefined value here causes illegal behavior
2955// :107:27: note: when computing vector element at index '1'
2956// :107:27: error: use of undefined value here causes illegal behavior
2957// :107:27: note: when computing vector element at index '0'
2958// :107:27: error: use of undefined value here causes illegal behavior
2959// :107:27: note: when computing vector element at index '0'
2960// :107:27: error: use of undefined value here causes illegal behavior
2961// :107:27: note: when computing vector element at index '0'
2962// :107:27: error: use of undefined value here causes illegal behavior
2963// :107:27: note: when computing vector element at index '0'
2964// :107:27: error: use of undefined value here causes illegal behavior
2965// :107:27: error: use of undefined value here causes illegal behavior
2966// :107:27: error: use of undefined value here causes illegal behavior
2967// :107:27: error: use of undefined value here causes illegal behavior
2968// :107:27: error: use of undefined value here causes illegal behavior
2969// :107:27: error: use of undefined value here causes illegal behavior
2970// :107:27: error: use of undefined value here causes illegal behavior
2971// :107:27: note: when computing vector element at index '1'
2972// :107:27: error: use of undefined value here causes illegal behavior
2973// :107:27: note: when computing vector element at index '1'
2974// :107:27: error: use of undefined value here causes illegal behavior
2975// :107:27: note: when computing vector element at index '1'
2976// :107:27: error: use of undefined value here causes illegal behavior
2977// :107:27: note: when computing vector element at index '1'
2978// :107:27: error: use of undefined value here causes illegal behavior
2979// :107:27: note: when computing vector element at index '0'
2980// :107:27: error: use of undefined value here causes illegal behavior
2981// :107:27: note: when computing vector element at index '0'
2982// :107:27: error: use of undefined value here causes illegal behavior
2983// :107:27: note: when computing vector element at index '0'
2984// :107:27: error: use of undefined value here causes illegal behavior
2985// :107:27: note: when computing vector element at index '0'
2986// :107:27: error: use of undefined value here causes illegal behavior
2987// :107:27: error: use of undefined value here causes illegal behavior
2988// :107:27: error: use of undefined value here causes illegal behavior
2989// :107:27: error: use of undefined value here causes illegal behavior
2990// :107:27: error: use of undefined value here causes illegal behavior
2991// :107:27: error: use of undefined value here causes illegal behavior
2992// :107:27: error: use of undefined value here causes illegal behavior
2993// :107:27: note: when computing vector element at index '1'
2994// :107:27: error: use of undefined value here causes illegal behavior
2995// :107:27: note: when computing vector element at index '1'
2996// :107:27: error: use of undefined value here causes illegal behavior
2997// :107:27: note: when computing vector element at index '1'
2998// :107:27: error: use of undefined value here causes illegal behavior
2999// :107:27: note: when computing vector element at index '1'
3000// :107:27: error: use of undefined value here causes illegal behavior
3001// :107:27: note: when computing vector element at index '0'
3002// :107:27: error: use of undefined value here causes illegal behavior
3003// :107:27: note: when computing vector element at index '0'
3004// :107:27: error: use of undefined value here causes illegal behavior
3005// :107:27: note: when computing vector element at index '0'
3006// :107:27: error: use of undefined value here causes illegal behavior
3007// :107:27: note: when computing vector element at index '0'
3008// :107:27: error: use of undefined value here causes illegal behavior
3009// :107:27: error: use of undefined value here causes illegal behavior
3010// :107:27: error: use of undefined value here causes illegal behavior
3011// :107:27: error: use of undefined value here causes illegal behavior
3012// :107:27: error: use of undefined value here causes illegal behavior
3013// :107:27: error: use of undefined value here causes illegal behavior
3014// :107:27: error: use of undefined value here causes illegal behavior
3015// :107:27: note: when computing vector element at index '1'
3016// :107:27: error: use of undefined value here causes illegal behavior
3017// :107:27: note: when computing vector element at index '1'
3018// :107:27: error: use of undefined value here causes illegal behavior
3019// :107:27: note: when computing vector element at index '1'
3020// :107:27: error: use of undefined value here causes illegal behavior
3021// :107:27: note: when computing vector element at index '1'
3022// :107:27: error: use of undefined value here causes illegal behavior
3023// :107:27: note: when computing vector element at index '0'
3024// :107:27: error: use of undefined value here causes illegal behavior
3025// :107:27: note: when computing vector element at index '0'
3026// :107:27: error: use of undefined value here causes illegal behavior
3027// :107:27: note: when computing vector element at index '0'
3028// :107:27: error: use of undefined value here causes illegal behavior
3029// :107:27: note: when computing vector element at index '0'
3030// :107:27: error: use of undefined value here causes illegal behavior
3031// :107:27: error: use of undefined value here causes illegal behavior
3032// :107:27: error: use of undefined value here causes illegal behavior
3033// :107:27: error: use of undefined value here causes illegal behavior
3034// :107:27: error: use of undefined value here causes illegal behavior
3035// :107:27: error: use of undefined value here causes illegal behavior
3036// :107:27: error: use of undefined value here causes illegal behavior
3037// :107:27: note: when computing vector element at index '1'
3038// :107:27: error: use of undefined value here causes illegal behavior
3039// :107:27: note: when computing vector element at index '1'
3040// :107:27: error: use of undefined value here causes illegal behavior
3041// :107:27: note: when computing vector element at index '1'
3042// :107:27: error: use of undefined value here causes illegal behavior
3043// :107:27: note: when computing vector element at index '1'
3044// :107:27: error: use of undefined value here causes illegal behavior
3045// :107:27: note: when computing vector element at index '0'
3046// :107:27: error: use of undefined value here causes illegal behavior
3047// :107:27: note: when computing vector element at index '0'
3048// :107:27: error: use of undefined value here causes illegal behavior
3049// :107:27: note: when computing vector element at index '0'
3050// :107:27: error: use of undefined value here causes illegal behavior
3051// :107:27: note: when computing vector element at index '0'
3052// :107:27: error: use of undefined value here causes illegal behavior
3053// :107:27: error: use of undefined value here causes illegal behavior
3054// :107:27: error: use of undefined value here causes illegal behavior
3055// :107:27: error: use of undefined value here causes illegal behavior
3056// :107:27: error: use of undefined value here causes illegal behavior
3057// :107:27: error: use of undefined value here causes illegal behavior
3058// :107:27: error: use of undefined value here causes illegal behavior
3059// :107:27: note: when computing vector element at index '1'
3060// :107:27: error: use of undefined value here causes illegal behavior
3061// :107:27: note: when computing vector element at index '1'
3062// :107:27: error: use of undefined value here causes illegal behavior
3063// :107:27: note: when computing vector element at index '1'
3064// :107:27: error: use of undefined value here causes illegal behavior
3065// :107:27: note: when computing vector element at index '1'
3066// :107:27: error: use of undefined value here causes illegal behavior
3067// :107:27: note: when computing vector element at index '0'
3068// :107:27: error: use of undefined value here causes illegal behavior
3069// :107:27: note: when computing vector element at index '0'
3070// :107:27: error: use of undefined value here causes illegal behavior
3071// :107:27: note: when computing vector element at index '0'
3072// :107:27: error: use of undefined value here causes illegal behavior
3073// :107:27: note: when computing vector element at index '0'
3074// :107:27: error: use of undefined value here causes illegal behavior
3075// :107:27: error: use of undefined value here causes illegal behavior
3076// :107:27: error: use of undefined value here causes illegal behavior
3077// :107:27: error: use of undefined value here causes illegal behavior
3078// :107:27: error: use of undefined value here causes illegal behavior
3079// :107:27: error: use of undefined value here causes illegal behavior
3080// :107:27: error: use of undefined value here causes illegal behavior
3081// :107:27: note: when computing vector element at index '1'
3082// :107:27: error: use of undefined value here causes illegal behavior
3083// :107:27: note: when computing vector element at index '1'
3084// :107:27: error: use of undefined value here causes illegal behavior
3085// :107:27: note: when computing vector element at index '1'
3086// :107:27: error: use of undefined value here causes illegal behavior
3087// :107:27: note: when computing vector element at index '1'
3088// :107:27: error: use of undefined value here causes illegal behavior
3089// :107:27: note: when computing vector element at index '0'
3090// :107:27: error: use of undefined value here causes illegal behavior
3091// :107:27: note: when computing vector element at index '0'
3092// :107:27: error: use of undefined value here causes illegal behavior
3093// :107:27: note: when computing vector element at index '0'
3094// :107:27: error: use of undefined value here causes illegal behavior
3095// :107:27: note: when computing vector element at index '0'
3096// :107:27: error: use of undefined value here causes illegal behavior
3097// :107:27: error: use of undefined value here causes illegal behavior
3098// :107:27: error: use of undefined value here causes illegal behavior
3099// :107:27: error: use of undefined value here causes illegal behavior
3100// :107:27: error: use of undefined value here causes illegal behavior
3101// :107:27: error: use of undefined value here causes illegal behavior
3102// :107:27: error: use of undefined value here causes illegal behavior
3103// :107:27: note: when computing vector element at index '1'
3104// :107:27: error: use of undefined value here causes illegal behavior
3105// :107:27: note: when computing vector element at index '1'
3106// :107:27: error: use of undefined value here causes illegal behavior
3107// :107:27: note: when computing vector element at index '1'
3108// :107:27: error: use of undefined value here causes illegal behavior
3109// :107:27: note: when computing vector element at index '1'
3110// :107:27: error: use of undefined value here causes illegal behavior
3111// :107:27: note: when computing vector element at index '0'
3112// :107:27: error: use of undefined value here causes illegal behavior
3113// :107:27: note: when computing vector element at index '0'
3114// :107:27: error: use of undefined value here causes illegal behavior
3115// :107:27: note: when computing vector element at index '0'
3116// :107:27: error: use of undefined value here causes illegal behavior
3117// :107:27: note: when computing vector element at index '0'
3118// :107:27: error: use of undefined value here causes illegal behavior
3119// :107:27: error: use of undefined value here causes illegal behavior
3120// :107:27: error: use of undefined value here causes illegal behavior
3121// :107:27: error: use of undefined value here causes illegal behavior
3122// :107:27: error: use of undefined value here causes illegal behavior
3123// :107:27: error: use of undefined value here causes illegal behavior
3124// :107:27: error: use of undefined value here causes illegal behavior
3125// :107:27: note: when computing vector element at index '1'
3126// :107:27: error: use of undefined value here causes illegal behavior
3127// :107:27: note: when computing vector element at index '1'
3128// :107:27: error: use of undefined value here causes illegal behavior
3129// :107:27: note: when computing vector element at index '1'
3130// :107:27: error: use of undefined value here causes illegal behavior
3131// :107:27: note: when computing vector element at index '1'
3132// :107:27: error: use of undefined value here causes illegal behavior
3133// :107:27: note: when computing vector element at index '0'
3134// :107:27: error: use of undefined value here causes illegal behavior
3135// :107:27: note: when computing vector element at index '0'
3136// :107:27: error: use of undefined value here causes illegal behavior
3137// :107:27: note: when computing vector element at index '0'
3138// :107:27: error: use of undefined value here causes illegal behavior
3139// :107:27: note: when computing vector element at index '0'
3140// :107:27: error: use of undefined value here causes illegal behavior
3141// :107:27: error: use of undefined value here causes illegal behavior
3142// :107:27: error: use of undefined value here causes illegal behavior
3143// :107:27: error: use of undefined value here causes illegal behavior
3144// :107:27: error: use of undefined value here causes illegal behavior
3145// :107:27: error: use of undefined value here causes illegal behavior
3146// :107:27: error: use of undefined value here causes illegal behavior
3147// :107:27: note: when computing vector element at index '1'
3148// :107:27: error: use of undefined value here causes illegal behavior
3149// :107:27: note: when computing vector element at index '1'
3150// :107:27: error: use of undefined value here causes illegal behavior
3151// :107:27: note: when computing vector element at index '1'
3152// :107:27: error: use of undefined value here causes illegal behavior
3153// :107:27: note: when computing vector element at index '1'
3154// :107:27: error: use of undefined value here causes illegal behavior
3155// :107:27: note: when computing vector element at index '0'
3156// :107:27: error: use of undefined value here causes illegal behavior
3157// :107:27: note: when computing vector element at index '0'
3158// :107:27: error: use of undefined value here causes illegal behavior
3159// :107:27: note: when computing vector element at index '0'
3160// :107:27: error: use of undefined value here causes illegal behavior
3161// :107:27: note: when computing vector element at index '0'
3162// :111:22: error: use of undefined value here causes illegal behavior
3163// :111:22: error: use of undefined value here causes illegal behavior
3164// :111:22: error: use of undefined value here causes illegal behavior
3165// :111:22: error: use of undefined value here causes illegal behavior
3166// :111:22: error: use of undefined value here causes illegal behavior
3167// :111:22: error: use of undefined value here causes illegal behavior
3168// :111:22: error: use of undefined value here causes illegal behavior
3169// :111:22: note: when computing vector element at index '1'
3170// :111:22: error: use of undefined value here causes illegal behavior
3171// :111:22: note: when computing vector element at index '1'
3172// :111:22: error: use of undefined value here causes illegal behavior
3173// :111:22: note: when computing vector element at index '1'
3174// :111:22: error: use of undefined value here causes illegal behavior
3175// :111:22: note: when computing vector element at index '1'
3176// :111:22: error: use of undefined value here causes illegal behavior
3177// :111:22: note: when computing vector element at index '0'
3178// :111:22: error: use of undefined value here causes illegal behavior
3179// :111:22: note: when computing vector element at index '0'
3180// :111:22: error: use of undefined value here causes illegal behavior
3181// :111:22: note: when computing vector element at index '0'
3182// :111:22: error: use of undefined value here causes illegal behavior
3183// :111:22: note: when computing vector element at index '0'
3184// :111:22: error: use of undefined value here causes illegal behavior
3185// :111:22: error: use of undefined value here causes illegal behavior
3186// :111:22: error: use of undefined value here causes illegal behavior
3187// :111:22: error: use of undefined value here causes illegal behavior
3188// :111:22: error: use of undefined value here causes illegal behavior
3189// :111:22: error: use of undefined value here causes illegal behavior
3190// :111:22: error: use of undefined value here causes illegal behavior
3191// :111:22: note: when computing vector element at index '1'
3192// :111:22: error: use of undefined value here causes illegal behavior
3193// :111:22: note: when computing vector element at index '1'
3194// :111:22: error: use of undefined value here causes illegal behavior
3195// :111:22: note: when computing vector element at index '1'
3196// :111:22: error: use of undefined value here causes illegal behavior
3197// :111:22: note: when computing vector element at index '1'
3198// :111:22: error: use of undefined value here causes illegal behavior
3199// :111:22: note: when computing vector element at index '0'
3200// :111:22: error: use of undefined value here causes illegal behavior
3201// :111:22: note: when computing vector element at index '0'
3202// :111:22: error: use of undefined value here causes illegal behavior
3203// :111:22: note: when computing vector element at index '0'
3204// :111:22: error: use of undefined value here causes illegal behavior
3205// :111:22: note: when computing vector element at index '0'
3206// :111:22: error: use of undefined value here causes illegal behavior
3207// :111:22: error: use of undefined value here causes illegal behavior
3208// :111:22: error: use of undefined value here causes illegal behavior
3209// :111:22: error: use of undefined value here causes illegal behavior
3210// :111:22: error: use of undefined value here causes illegal behavior
3211// :111:22: error: use of undefined value here causes illegal behavior
3212// :111:22: error: use of undefined value here causes illegal behavior
3213// :111:22: note: when computing vector element at index '1'
3214// :111:22: error: use of undefined value here causes illegal behavior
3215// :111:22: note: when computing vector element at index '1'
3216// :111:22: error: use of undefined value here causes illegal behavior
3217// :111:22: note: when computing vector element at index '1'
3218// :111:22: error: use of undefined value here causes illegal behavior
3219// :111:22: note: when computing vector element at index '1'
3220// :111:22: error: use of undefined value here causes illegal behavior
3221// :111:22: note: when computing vector element at index '0'
3222// :111:22: error: use of undefined value here causes illegal behavior
3223// :111:22: note: when computing vector element at index '0'
3224// :111:22: error: use of undefined value here causes illegal behavior
3225// :111:22: note: when computing vector element at index '0'
3226// :111:22: error: use of undefined value here causes illegal behavior
3227// :111:22: note: when computing vector element at index '0'
3228// :111:22: error: use of undefined value here causes illegal behavior
3229// :111:22: error: use of undefined value here causes illegal behavior
3230// :111:22: error: use of undefined value here causes illegal behavior
3231// :111:22: error: use of undefined value here causes illegal behavior
3232// :111:22: error: use of undefined value here causes illegal behavior
3233// :111:22: error: use of undefined value here causes illegal behavior
3234// :111:22: error: use of undefined value here causes illegal behavior
3235// :111:22: note: when computing vector element at index '1'
3236// :111:22: error: use of undefined value here causes illegal behavior
3237// :111:22: note: when computing vector element at index '1'
3238// :111:22: error: use of undefined value here causes illegal behavior
3239// :111:22: note: when computing vector element at index '1'
3240// :111:22: error: use of undefined value here causes illegal behavior
3241// :111:22: note: when computing vector element at index '1'
3242// :111:22: error: use of undefined value here causes illegal behavior
3243// :111:22: note: when computing vector element at index '0'
3244// :111:22: error: use of undefined value here causes illegal behavior
3245// :111:22: note: when computing vector element at index '0'
3246// :111:22: error: use of undefined value here causes illegal behavior
3247// :111:22: note: when computing vector element at index '0'
3248// :111:22: error: use of undefined value here causes illegal behavior
3249// :111:22: note: when computing vector element at index '0'
3250// :111:22: error: use of undefined value here causes illegal behavior
3251// :111:22: error: use of undefined value here causes illegal behavior
3252// :111:22: error: use of undefined value here causes illegal behavior
3253// :111:22: error: use of undefined value here causes illegal behavior
3254// :111:22: error: use of undefined value here causes illegal behavior
3255// :111:22: error: use of undefined value here causes illegal behavior
3256// :111:22: error: use of undefined value here causes illegal behavior
3257// :111:22: note: when computing vector element at index '1'
3258// :111:22: error: use of undefined value here causes illegal behavior
3259// :111:22: note: when computing vector element at index '1'
3260// :111:22: error: use of undefined value here causes illegal behavior
3261// :111:22: note: when computing vector element at index '1'
3262// :111:22: error: use of undefined value here causes illegal behavior
3263// :111:22: note: when computing vector element at index '1'
3264// :111:22: error: use of undefined value here causes illegal behavior
3265// :111:22: note: when computing vector element at index '0'
3266// :111:22: error: use of undefined value here causes illegal behavior
3267// :111:22: note: when computing vector element at index '0'
3268// :111:22: error: use of undefined value here causes illegal behavior
3269// :111:22: note: when computing vector element at index '0'
3270// :111:22: error: use of undefined value here causes illegal behavior
3271// :111:22: note: when computing vector element at index '0'
3272// :111:22: error: use of undefined value here causes illegal behavior
3273// :111:22: error: use of undefined value here causes illegal behavior
3274// :111:22: error: use of undefined value here causes illegal behavior
3275// :111:22: error: use of undefined value here causes illegal behavior
3276// :111:22: error: use of undefined value here causes illegal behavior
3277// :111:22: error: use of undefined value here causes illegal behavior
3278// :111:22: error: use of undefined value here causes illegal behavior
3279// :111:22: note: when computing vector element at index '1'
3280// :111:22: error: use of undefined value here causes illegal behavior
3281// :111:22: note: when computing vector element at index '1'
3282// :111:22: error: use of undefined value here causes illegal behavior
3283// :111:22: note: when computing vector element at index '1'
3284// :111:22: error: use of undefined value here causes illegal behavior
3285// :111:22: note: when computing vector element at index '1'
3286// :111:22: error: use of undefined value here causes illegal behavior
3287// :111:22: note: when computing vector element at index '0'
3288// :111:22: error: use of undefined value here causes illegal behavior
3289// :111:22: note: when computing vector element at index '0'
3290// :111:22: error: use of undefined value here causes illegal behavior
3291// :111:22: note: when computing vector element at index '0'
3292// :111:22: error: use of undefined value here causes illegal behavior
3293// :111:22: note: when computing vector element at index '0'
3294// :111:22: error: use of undefined value here causes illegal behavior
3295// :111:22: error: use of undefined value here causes illegal behavior
3296// :111:22: error: use of undefined value here causes illegal behavior
3297// :111:22: error: use of undefined value here causes illegal behavior
3298// :111:22: error: use of undefined value here causes illegal behavior
3299// :111:22: error: use of undefined value here causes illegal behavior
3300// :111:22: error: use of undefined value here causes illegal behavior
3301// :111:22: note: when computing vector element at index '1'
3302// :111:22: error: use of undefined value here causes illegal behavior
3303// :111:22: note: when computing vector element at index '1'
3304// :111:22: error: use of undefined value here causes illegal behavior
3305// :111:22: note: when computing vector element at index '1'
3306// :111:22: error: use of undefined value here causes illegal behavior
3307// :111:22: note: when computing vector element at index '1'
3308// :111:22: error: use of undefined value here causes illegal behavior
3309// :111:22: note: when computing vector element at index '0'
3310// :111:22: error: use of undefined value here causes illegal behavior
3311// :111:22: note: when computing vector element at index '0'
3312// :111:22: error: use of undefined value here causes illegal behavior
3313// :111:22: note: when computing vector element at index '0'
3314// :111:22: error: use of undefined value here causes illegal behavior
3315// :111:22: note: when computing vector element at index '0'
3316// :111:22: error: use of undefined value here causes illegal behavior
3317// :111:22: error: use of undefined value here causes illegal behavior
3318// :111:22: error: use of undefined value here causes illegal behavior
3319// :111:22: error: use of undefined value here causes illegal behavior
3320// :111:22: error: use of undefined value here causes illegal behavior
3321// :111:22: error: use of undefined value here causes illegal behavior
3322// :111:22: error: use of undefined value here causes illegal behavior
3323// :111:22: note: when computing vector element at index '1'
3324// :111:22: error: use of undefined value here causes illegal behavior
3325// :111:22: note: when computing vector element at index '1'
3326// :111:22: error: use of undefined value here causes illegal behavior
3327// :111:22: note: when computing vector element at index '1'
3328// :111:22: error: use of undefined value here causes illegal behavior
3329// :111:22: note: when computing vector element at index '1'
3330// :111:22: error: use of undefined value here causes illegal behavior
3331// :111:22: note: when computing vector element at index '0'
3332// :111:22: error: use of undefined value here causes illegal behavior
3333// :111:22: note: when computing vector element at index '0'
3334// :111:22: error: use of undefined value here causes illegal behavior
3335// :111:22: note: when computing vector element at index '0'
3336// :111:22: error: use of undefined value here causes illegal behavior
3337// :111:22: note: when computing vector element at index '0'
3338// :111:22: error: use of undefined value here causes illegal behavior
3339// :111:22: error: use of undefined value here causes illegal behavior
3340// :111:22: error: use of undefined value here causes illegal behavior
3341// :111:22: error: use of undefined value here causes illegal behavior
3342// :111:22: error: use of undefined value here causes illegal behavior
3343// :111:22: error: use of undefined value here causes illegal behavior
3344// :111:22: error: use of undefined value here causes illegal behavior
3345// :111:22: note: when computing vector element at index '1'
3346// :111:22: error: use of undefined value here causes illegal behavior
3347// :111:22: note: when computing vector element at index '1'
3348// :111:22: error: use of undefined value here causes illegal behavior
3349// :111:22: note: when computing vector element at index '1'
3350// :111:22: error: use of undefined value here causes illegal behavior
3351// :111:22: note: when computing vector element at index '1'
3352// :111:22: error: use of undefined value here causes illegal behavior
3353// :111:22: note: when computing vector element at index '0'
3354// :111:22: error: use of undefined value here causes illegal behavior
3355// :111:22: note: when computing vector element at index '0'
3356// :111:22: error: use of undefined value here causes illegal behavior
3357// :111:22: note: when computing vector element at index '0'
3358// :111:22: error: use of undefined value here causes illegal behavior
3359// :111:22: note: when computing vector element at index '0'
3360// :111:22: error: use of undefined value here causes illegal behavior
3361// :111:22: error: use of undefined value here causes illegal behavior
3362// :111:22: error: use of undefined value here causes illegal behavior
3363// :111:22: error: use of undefined value here causes illegal behavior
3364// :111:22: error: use of undefined value here causes illegal behavior
3365// :111:22: error: use of undefined value here causes illegal behavior
3366// :111:22: error: use of undefined value here causes illegal behavior
3367// :111:22: note: when computing vector element at index '1'
3368// :111:22: error: use of undefined value here causes illegal behavior
3369// :111:22: note: when computing vector element at index '1'
3370// :111:22: error: use of undefined value here causes illegal behavior
3371// :111:22: note: when computing vector element at index '1'
3372// :111:22: error: use of undefined value here causes illegal behavior
3373// :111:22: note: when computing vector element at index '1'
3374// :111:22: error: use of undefined value here causes illegal behavior
3375// :111:22: note: when computing vector element at index '0'
3376// :111:22: error: use of undefined value here causes illegal behavior
3377// :111:22: note: when computing vector element at index '0'
3378// :111:22: error: use of undefined value here causes illegal behavior
3379// :111:22: note: when computing vector element at index '0'
3380// :111:22: error: use of undefined value here causes illegal behavior
3381// :111:22: note: when computing vector element at index '0'
3382// :111:22: error: use of undefined value here causes illegal behavior
3383// :111:22: error: use of undefined value here causes illegal behavior
3384// :111:22: error: use of undefined value here causes illegal behavior
3385// :111:22: error: use of undefined value here causes illegal behavior
3386// :111:22: error: use of undefined value here causes illegal behavior
3387// :111:22: error: use of undefined value here causes illegal behavior
3388// :111:22: error: use of undefined value here causes illegal behavior
3389// :111:22: note: when computing vector element at index '1'
3390// :111:22: error: use of undefined value here causes illegal behavior
3391// :111:22: note: when computing vector element at index '1'
3392// :111:22: error: use of undefined value here causes illegal behavior
3393// :111:22: note: when computing vector element at index '1'
3394// :111:22: error: use of undefined value here causes illegal behavior
3395// :111:22: note: when computing vector element at index '1'
3396// :111:22: error: use of undefined value here causes illegal behavior
3397// :111:22: note: when computing vector element at index '0'
3398// :111:22: error: use of undefined value here causes illegal behavior
3399// :111:22: note: when computing vector element at index '0'
3400// :111:22: error: use of undefined value here causes illegal behavior
3401// :111:22: note: when computing vector element at index '0'
3402// :111:22: error: use of undefined value here causes illegal behavior
3403// :111:22: note: when computing vector element at index '0'
3404// :115:22: error: use of undefined value here causes illegal behavior
3405// :115:22: error: use of undefined value here causes illegal behavior
3406// :115:22: error: use of undefined value here causes illegal behavior
3407// :115:22: error: use of undefined value here causes illegal behavior
3408// :115:22: error: use of undefined value here causes illegal behavior
3409// :115:22: error: use of undefined value here causes illegal behavior
3410// :115:22: error: use of undefined value here causes illegal behavior
3411// :115:22: note: when computing vector element at index '1'
3412// :115:22: error: use of undefined value here causes illegal behavior
3413// :115:22: note: when computing vector element at index '1'
3414// :115:22: error: use of undefined value here causes illegal behavior
3415// :115:22: note: when computing vector element at index '1'
3416// :115:22: error: use of undefined value here causes illegal behavior
3417// :115:22: note: when computing vector element at index '1'
3418// :115:22: error: use of undefined value here causes illegal behavior
3419// :115:22: note: when computing vector element at index '0'
3420// :115:22: error: use of undefined value here causes illegal behavior
3421// :115:22: note: when computing vector element at index '0'
3422// :115:22: error: use of undefined value here causes illegal behavior
3423// :115:22: note: when computing vector element at index '0'
3424// :115:22: error: use of undefined value here causes illegal behavior
3425// :115:22: note: when computing vector element at index '0'
3426// :115:22: error: use of undefined value here causes illegal behavior
3427// :115:22: error: use of undefined value here causes illegal behavior
3428// :115:22: error: use of undefined value here causes illegal behavior
3429// :115:22: error: use of undefined value here causes illegal behavior
3430// :115:22: error: use of undefined value here causes illegal behavior
3431// :115:22: error: use of undefined value here causes illegal behavior
3432// :115:22: error: use of undefined value here causes illegal behavior
3433// :115:22: note: when computing vector element at index '1'
3434// :115:22: error: use of undefined value here causes illegal behavior
3435// :115:22: note: when computing vector element at index '1'
3436// :115:22: error: use of undefined value here causes illegal behavior
3437// :115:22: note: when computing vector element at index '1'
3438// :115:22: error: use of undefined value here causes illegal behavior
3439// :115:22: note: when computing vector element at index '1'
3440// :115:22: error: use of undefined value here causes illegal behavior
3441// :115:22: note: when computing vector element at index '0'
3442// :115:22: error: use of undefined value here causes illegal behavior
3443// :115:22: note: when computing vector element at index '0'
3444// :115:22: error: use of undefined value here causes illegal behavior
3445// :115:22: note: when computing vector element at index '0'
3446// :115:22: error: use of undefined value here causes illegal behavior
3447// :115:22: note: when computing vector element at index '0'
3448// :115:22: error: use of undefined value here causes illegal behavior
3449// :115:22: error: use of undefined value here causes illegal behavior
3450// :115:22: error: use of undefined value here causes illegal behavior
3451// :115:22: error: use of undefined value here causes illegal behavior
3452// :115:22: error: use of undefined value here causes illegal behavior
3453// :115:22: error: use of undefined value here causes illegal behavior
3454// :115:22: error: use of undefined value here causes illegal behavior
3455// :115:22: note: when computing vector element at index '1'
3456// :115:22: error: use of undefined value here causes illegal behavior
3457// :115:22: note: when computing vector element at index '1'
3458// :115:22: error: use of undefined value here causes illegal behavior
3459// :115:22: note: when computing vector element at index '1'
3460// :115:22: error: use of undefined value here causes illegal behavior
3461// :115:22: note: when computing vector element at index '1'
3462// :115:22: error: use of undefined value here causes illegal behavior
3463// :115:22: note: when computing vector element at index '0'
3464// :115:22: error: use of undefined value here causes illegal behavior
3465// :115:22: note: when computing vector element at index '0'
3466// :115:22: error: use of undefined value here causes illegal behavior
3467// :115:22: note: when computing vector element at index '0'
3468// :115:22: error: use of undefined value here causes illegal behavior
3469// :115:22: note: when computing vector element at index '0'
3470// :115:22: error: use of undefined value here causes illegal behavior
3471// :115:22: error: use of undefined value here causes illegal behavior
3472// :115:22: error: use of undefined value here causes illegal behavior
3473// :115:22: error: use of undefined value here causes illegal behavior
3474// :115:22: error: use of undefined value here causes illegal behavior
3475// :115:22: error: use of undefined value here causes illegal behavior
3476// :115:22: error: use of undefined value here causes illegal behavior
3477// :115:22: note: when computing vector element at index '1'
3478// :115:22: error: use of undefined value here causes illegal behavior
3479// :115:22: note: when computing vector element at index '1'
3480// :115:22: error: use of undefined value here causes illegal behavior
3481// :115:22: note: when computing vector element at index '1'
3482// :115:22: error: use of undefined value here causes illegal behavior
3483// :115:22: note: when computing vector element at index '1'
3484// :115:22: error: use of undefined value here causes illegal behavior
3485// :115:22: note: when computing vector element at index '0'
3486// :115:22: error: use of undefined value here causes illegal behavior
3487// :115:22: note: when computing vector element at index '0'
3488// :115:22: error: use of undefined value here causes illegal behavior
3489// :115:22: note: when computing vector element at index '0'
3490// :115:22: error: use of undefined value here causes illegal behavior
3491// :115:22: note: when computing vector element at index '0'
3492// :115:22: error: use of undefined value here causes illegal behavior
3493// :115:22: error: use of undefined value here causes illegal behavior
3494// :115:22: error: use of undefined value here causes illegal behavior
3495// :115:22: error: use of undefined value here causes illegal behavior
3496// :115:22: error: use of undefined value here causes illegal behavior
3497// :115:22: error: use of undefined value here causes illegal behavior
3498// :115:22: error: use of undefined value here causes illegal behavior
3499// :115:22: note: when computing vector element at index '1'
3500// :115:22: error: use of undefined value here causes illegal behavior
3501// :115:22: note: when computing vector element at index '1'
3502// :115:22: error: use of undefined value here causes illegal behavior
3503// :115:22: note: when computing vector element at index '1'
3504// :115:22: error: use of undefined value here causes illegal behavior
3505// :115:22: note: when computing vector element at index '1'
3506// :115:22: error: use of undefined value here causes illegal behavior
3507// :115:22: note: when computing vector element at index '0'
3508// :115:22: error: use of undefined value here causes illegal behavior
3509// :115:22: note: when computing vector element at index '0'
3510// :115:22: error: use of undefined value here causes illegal behavior
3511// :115:22: note: when computing vector element at index '0'
3512// :115:22: error: use of undefined value here causes illegal behavior
3513// :115:22: note: when computing vector element at index '0'
3514// :115:22: error: use of undefined value here causes illegal behavior
3515// :115:22: error: use of undefined value here causes illegal behavior
3516// :115:22: error: use of undefined value here causes illegal behavior
3517// :115:22: error: use of undefined value here causes illegal behavior
3518// :115:22: error: use of undefined value here causes illegal behavior
3519// :115:22: error: use of undefined value here causes illegal behavior
3520// :115:22: error: use of undefined value here causes illegal behavior
3521// :115:22: note: when computing vector element at index '1'
3522// :115:22: error: use of undefined value here causes illegal behavior
3523// :115:22: note: when computing vector element at index '1'
3524// :115:22: error: use of undefined value here causes illegal behavior
3525// :115:22: note: when computing vector element at index '1'
3526// :115:22: error: use of undefined value here causes illegal behavior
3527// :115:22: note: when computing vector element at index '1'
3528// :115:22: error: use of undefined value here causes illegal behavior
3529// :115:22: note: when computing vector element at index '0'
3530// :115:22: error: use of undefined value here causes illegal behavior
3531// :115:22: note: when computing vector element at index '0'
3532// :115:22: error: use of undefined value here causes illegal behavior
3533// :115:22: note: when computing vector element at index '0'
3534// :115:22: error: use of undefined value here causes illegal behavior
3535// :115:22: note: when computing vector element at index '0'
3536// :115:22: error: use of undefined value here causes illegal behavior
3537// :115:22: error: use of undefined value here causes illegal behavior
3538// :115:22: error: use of undefined value here causes illegal behavior
3539// :115:22: error: use of undefined value here causes illegal behavior
3540// :115:22: error: use of undefined value here causes illegal behavior
3541// :115:22: error: use of undefined value here causes illegal behavior
3542// :115:22: error: use of undefined value here causes illegal behavior
3543// :115:22: note: when computing vector element at index '1'
3544// :115:22: error: use of undefined value here causes illegal behavior
3545// :115:22: note: when computing vector element at index '1'
3546// :115:22: error: use of undefined value here causes illegal behavior
3547// :115:22: note: when computing vector element at index '1'
3548// :115:22: error: use of undefined value here causes illegal behavior
3549// :115:22: note: when computing vector element at index '1'
3550// :115:22: error: use of undefined value here causes illegal behavior
3551// :115:22: note: when computing vector element at index '0'
3552// :115:22: error: use of undefined value here causes illegal behavior
3553// :115:22: note: when computing vector element at index '0'
3554// :115:22: error: use of undefined value here causes illegal behavior
3555// :115:22: note: when computing vector element at index '0'
3556// :115:22: error: use of undefined value here causes illegal behavior
3557// :115:22: note: when computing vector element at index '0'
3558// :115:22: error: use of undefined value here causes illegal behavior
3559// :115:22: error: use of undefined value here causes illegal behavior
3560// :115:22: error: use of undefined value here causes illegal behavior
3561// :115:22: error: use of undefined value here causes illegal behavior
3562// :115:22: error: use of undefined value here causes illegal behavior
3563// :115:22: error: use of undefined value here causes illegal behavior
3564// :115:22: error: use of undefined value here causes illegal behavior
3565// :115:22: note: when computing vector element at index '1'
3566// :115:22: error: use of undefined value here causes illegal behavior
3567// :115:22: note: when computing vector element at index '1'
3568// :115:22: error: use of undefined value here causes illegal behavior
3569// :115:22: note: when computing vector element at index '1'
3570// :115:22: error: use of undefined value here causes illegal behavior
3571// :115:22: note: when computing vector element at index '1'
3572// :115:22: error: use of undefined value here causes illegal behavior
3573// :115:22: note: when computing vector element at index '0'
3574// :115:22: error: use of undefined value here causes illegal behavior
3575// :115:22: note: when computing vector element at index '0'
3576// :115:22: error: use of undefined value here causes illegal behavior
3577// :115:22: note: when computing vector element at index '0'
3578// :115:22: error: use of undefined value here causes illegal behavior
3579// :115:22: note: when computing vector element at index '0'
3580// :115:22: error: use of undefined value here causes illegal behavior
3581// :115:22: error: use of undefined value here causes illegal behavior
3582// :115:22: error: use of undefined value here causes illegal behavior
3583// :115:22: error: use of undefined value here causes illegal behavior
3584// :115:22: error: use of undefined value here causes illegal behavior
3585// :115:22: error: use of undefined value here causes illegal behavior
3586// :115:22: error: use of undefined value here causes illegal behavior
3587// :115:22: note: when computing vector element at index '1'
3588// :115:22: error: use of undefined value here causes illegal behavior
3589// :115:22: note: when computing vector element at index '1'
3590// :115:22: error: use of undefined value here causes illegal behavior
3591// :115:22: note: when computing vector element at index '1'
3592// :115:22: error: use of undefined value here causes illegal behavior
3593// :115:22: note: when computing vector element at index '1'
3594// :115:22: error: use of undefined value here causes illegal behavior
3595// :115:22: note: when computing vector element at index '0'
3596// :115:22: error: use of undefined value here causes illegal behavior
3597// :115:22: note: when computing vector element at index '0'
3598// :115:22: error: use of undefined value here causes illegal behavior
3599// :115:22: note: when computing vector element at index '0'
3600// :115:22: error: use of undefined value here causes illegal behavior
3601// :115:22: note: when computing vector element at index '0'
3602// :115:22: error: use of undefined value here causes illegal behavior
3603// :115:22: error: use of undefined value here causes illegal behavior
3604// :115:22: error: use of undefined value here causes illegal behavior
3605// :115:22: error: use of undefined value here causes illegal behavior
3606// :115:22: error: use of undefined value here causes illegal behavior
3607// :115:22: error: use of undefined value here causes illegal behavior
3608// :115:22: error: use of undefined value here causes illegal behavior
3609// :115:22: note: when computing vector element at index '1'
3610// :115:22: error: use of undefined value here causes illegal behavior
3611// :115:22: note: when computing vector element at index '1'
3612// :115:22: error: use of undefined value here causes illegal behavior
3613// :115:22: note: when computing vector element at index '1'
3614// :115:22: error: use of undefined value here causes illegal behavior
3615// :115:22: note: when computing vector element at index '1'
3616// :115:22: error: use of undefined value here causes illegal behavior
3617// :115:22: note: when computing vector element at index '0'
3618// :115:22: error: use of undefined value here causes illegal behavior
3619// :115:22: note: when computing vector element at index '0'
3620// :115:22: error: use of undefined value here causes illegal behavior
3621// :115:22: note: when computing vector element at index '0'
3622// :115:22: error: use of undefined value here causes illegal behavior
3623// :115:22: note: when computing vector element at index '0'
3624// :115:22: error: use of undefined value here causes illegal behavior
3625// :115:22: error: use of undefined value here causes illegal behavior
3626// :115:22: error: use of undefined value here causes illegal behavior
3627// :115:22: error: use of undefined value here causes illegal behavior
3628// :115:22: error: use of undefined value here causes illegal behavior
3629// :115:22: error: use of undefined value here causes illegal behavior
3630// :115:22: error: use of undefined value here causes illegal behavior
3631// :115:22: note: when computing vector element at index '1'
3632// :115:22: error: use of undefined value here causes illegal behavior
3633// :115:22: note: when computing vector element at index '1'
3634// :115:22: error: use of undefined value here causes illegal behavior
3635// :115:22: note: when computing vector element at index '1'
3636// :115:22: error: use of undefined value here causes illegal behavior
3637// :115:22: note: when computing vector element at index '1'
3638// :115:22: error: use of undefined value here causes illegal behavior
3639// :115:22: note: when computing vector element at index '0'
3640// :115:22: error: use of undefined value here causes illegal behavior
3641// :115:22: note: when computing vector element at index '0'
3642// :115:22: error: use of undefined value here causes illegal behavior
3643// :115:22: note: when computing vector element at index '0'
3644// :115:22: error: use of undefined value here causes illegal behavior
3645// :115:22: note: when computing vector element at index '0'
3646// :121:17: error: use of undefined value here causes illegal behavior
3647// :121:17: error: use of undefined value here causes illegal behavior
3648// :121:17: note: when computing vector element at index '0'
3649// :121:17: error: use of undefined value here causes illegal behavior
3650// :121:17: note: when computing vector element at index '0'
3651// :121:17: error: use of undefined value here causes illegal behavior
3652// :121:17: note: when computing vector element at index '0'
3653// :121:17: error: use of undefined value here causes illegal behavior
3654// :121:17: note: when computing vector element at index '1'
3655// :121:17: error: use of undefined value here causes illegal behavior
3656// :121:17: note: when computing vector element at index '0'
3657// :121:17: error: use of undefined value here causes illegal behavior
3658// :121:17: note: when computing vector element at index '0'
3659// :121:17: error: use of undefined value here causes illegal behavior
3660// :121:17: note: when computing vector element at index '0'
3661// :121:17: error: use of undefined value here causes illegal behavior
3662// :121:17: error: use of undefined value here causes illegal behavior
3663// :121:17: note: when computing vector element at index '0'
3664// :121:17: error: use of undefined value here causes illegal behavior
3665// :121:17: note: when computing vector element at index '0'
3666// :121:17: error: use of undefined value here causes illegal behavior
3667// :121:17: note: when computing vector element at index '0'
3668// :121:17: error: use of undefined value here causes illegal behavior
3669// :121:17: note: when computing vector element at index '1'
3670// :121:17: error: use of undefined value here causes illegal behavior
3671// :121:17: note: when computing vector element at index '0'
3672// :121:17: error: use of undefined value here causes illegal behavior
3673// :121:17: note: when computing vector element at index '0'
3674// :121:17: error: use of undefined value here causes illegal behavior
3675// :121:17: note: when computing vector element at index '0'
3676// :121:17: error: use of undefined value here causes illegal behavior
3677// :121:17: error: use of undefined value here causes illegal behavior
3678// :121:17: note: when computing vector element at index '0'
3679// :121:17: error: use of undefined value here causes illegal behavior
3680// :121:17: note: when computing vector element at index '0'
3681// :121:17: error: use of undefined value here causes illegal behavior
3682// :121:17: note: when computing vector element at index '0'
3683// :121:17: error: use of undefined value here causes illegal behavior
3684// :121:17: note: when computing vector element at index '1'
3685// :121:17: error: use of undefined value here causes illegal behavior
3686// :121:17: note: when computing vector element at index '0'
3687// :121:17: error: use of undefined value here causes illegal behavior
3688// :121:17: note: when computing vector element at index '0'
3689// :121:17: error: use of undefined value here causes illegal behavior
3690// :121:17: note: when computing vector element at index '0'
3691// :121:17: error: use of undefined value here causes illegal behavior
3692// :121:17: error: use of undefined value here causes illegal behavior
3693// :121:17: note: when computing vector element at index '0'
3694// :121:17: error: use of undefined value here causes illegal behavior
3695// :121:17: note: when computing vector element at index '0'
3696// :121:17: error: use of undefined value here causes illegal behavior
3697// :121:17: note: when computing vector element at index '0'
3698// :121:17: error: use of undefined value here causes illegal behavior
3699// :121:17: note: when computing vector element at index '1'
3700// :121:17: error: use of undefined value here causes illegal behavior
3701// :121:17: note: when computing vector element at index '0'
3702// :121:17: error: use of undefined value here causes illegal behavior
3703// :121:17: note: when computing vector element at index '0'
3704// :121:17: error: use of undefined value here causes illegal behavior
3705// :121:17: note: when computing vector element at index '0'
3706// :121:17: error: use of undefined value here causes illegal behavior
3707// :121:17: error: use of undefined value here causes illegal behavior
3708// :121:17: note: when computing vector element at index '0'
3709// :121:17: error: use of undefined value here causes illegal behavior
3710// :121:17: note: when computing vector element at index '0'
3711// :121:17: error: use of undefined value here causes illegal behavior
3712// :121:17: note: when computing vector element at index '0'
3713// :121:17: error: use of undefined value here causes illegal behavior
3714// :121:17: note: when computing vector element at index '1'
3715// :121:17: error: use of undefined value here causes illegal behavior
3716// :121:17: note: when computing vector element at index '0'
3717// :121:17: error: use of undefined value here causes illegal behavior
3718// :121:17: note: when computing vector element at index '0'
3719// :121:17: error: use of undefined value here causes illegal behavior
3720// :121:17: note: when computing vector element at index '0'
3721// :121:17: error: use of undefined value here causes illegal behavior
3722// :121:17: error: use of undefined value here causes illegal behavior
3723// :121:17: note: when computing vector element at index '0'
3724// :121:17: error: use of undefined value here causes illegal behavior
3725// :121:17: note: when computing vector element at index '0'
3726// :121:17: error: use of undefined value here causes illegal behavior
3727// :121:17: note: when computing vector element at index '0'
3728// :121:17: error: use of undefined value here causes illegal behavior
3729// :121:17: note: when computing vector element at index '1'
3730// :121:17: error: use of undefined value here causes illegal behavior
3731// :121:17: note: when computing vector element at index '0'
3732// :121:17: error: use of undefined value here causes illegal behavior
3733// :121:17: note: when computing vector element at index '0'
3734// :121:17: error: use of undefined value here causes illegal behavior
3735// :121:17: note: when computing vector element at index '0'
3736// :121:17: error: use of undefined value here causes illegal behavior
3737// :121:17: error: use of undefined value here causes illegal behavior
3738// :121:17: note: when computing vector element at index '0'
3739// :121:17: error: use of undefined value here causes illegal behavior
3740// :121:17: note: when computing vector element at index '0'
3741// :121:17: error: use of undefined value here causes illegal behavior
3742// :121:17: note: when computing vector element at index '0'
3743// :121:17: error: use of undefined value here causes illegal behavior
3744// :121:17: note: when computing vector element at index '1'
3745// :121:17: error: use of undefined value here causes illegal behavior
3746// :121:17: note: when computing vector element at index '0'
3747// :121:17: error: use of undefined value here causes illegal behavior
3748// :121:17: note: when computing vector element at index '0'
3749// :121:17: error: use of undefined value here causes illegal behavior
3750// :121:17: note: when computing vector element at index '0'
3751// :121:17: error: use of undefined value here causes illegal behavior
3752// :121:17: error: use of undefined value here causes illegal behavior
3753// :121:17: note: when computing vector element at index '0'
3754// :121:17: error: use of undefined value here causes illegal behavior
3755// :121:17: note: when computing vector element at index '0'
3756// :121:17: error: use of undefined value here causes illegal behavior
3757// :121:17: note: when computing vector element at index '0'
3758// :121:17: error: use of undefined value here causes illegal behavior
3759// :121:17: note: when computing vector element at index '1'
3760// :121:17: error: use of undefined value here causes illegal behavior
3761// :121:17: note: when computing vector element at index '0'
3762// :121:17: error: use of undefined value here causes illegal behavior
3763// :121:17: note: when computing vector element at index '0'
3764// :121:17: error: use of undefined value here causes illegal behavior
3765// :121:17: note: when computing vector element at index '0'
3766// :121:17: error: use of undefined value here causes illegal behavior
3767// :121:17: error: use of undefined value here causes illegal behavior
3768// :121:17: note: when computing vector element at index '0'
3769// :121:17: error: use of undefined value here causes illegal behavior
3770// :121:17: note: when computing vector element at index '0'
3771// :121:17: error: use of undefined value here causes illegal behavior
3772// :121:17: note: when computing vector element at index '0'
3773// :121:17: error: use of undefined value here causes illegal behavior
3774// :121:17: note: when computing vector element at index '1'
3775// :121:17: error: use of undefined value here causes illegal behavior
3776// :121:17: note: when computing vector element at index '0'
3777// :121:17: error: use of undefined value here causes illegal behavior
3778// :121:17: note: when computing vector element at index '0'
3779// :121:17: error: use of undefined value here causes illegal behavior
3780// :121:17: note: when computing vector element at index '0'
3781// :121:17: error: use of undefined value here causes illegal behavior
3782// :121:17: error: use of undefined value here causes illegal behavior
3783// :121:17: note: when computing vector element at index '0'
3784// :121:17: error: use of undefined value here causes illegal behavior
3785// :121:17: note: when computing vector element at index '0'
3786// :121:17: error: use of undefined value here causes illegal behavior
3787// :121:17: note: when computing vector element at index '0'
3788// :121:17: error: use of undefined value here causes illegal behavior
3789// :121:17: note: when computing vector element at index '1'
3790// :121:17: error: use of undefined value here causes illegal behavior
3791// :121:17: note: when computing vector element at index '0'
3792// :121:17: error: use of undefined value here causes illegal behavior
3793// :121:17: note: when computing vector element at index '0'
3794// :121:17: error: use of undefined value here causes illegal behavior
3795// :121:17: note: when computing vector element at index '0'
3796// :121:17: error: use of undefined value here causes illegal behavior
3797// :121:17: error: use of undefined value here causes illegal behavior
3798// :121:17: note: when computing vector element at index '0'
3799// :121:17: error: use of undefined value here causes illegal behavior
3800// :121:17: note: when computing vector element at index '0'
3801// :121:17: error: use of undefined value here causes illegal behavior
3802// :121:17: note: when computing vector element at index '0'
3803// :121:17: error: use of undefined value here causes illegal behavior
3804// :121:17: note: when computing vector element at index '1'
3805// :121:17: error: use of undefined value here causes illegal behavior
3806// :121:17: note: when computing vector element at index '0'
3807// :121:17: error: use of undefined value here causes illegal behavior
3808// :121:17: note: when computing vector element at index '0'
3809// :121:17: error: use of undefined value here causes illegal behavior
3810// :121:17: note: when computing vector element at index '0'
3811// :121:21: error: use of undefined value here causes illegal behavior
3812// :121:21: error: use of undefined value here causes illegal behavior
3813// :121:21: note: when computing vector element at index '0'
3814// :121:21: error: use of undefined value here causes illegal behavior
3815// :121:21: note: when computing vector element at index '0'
3816// :121:21: error: use of undefined value here causes illegal behavior
3817// :121:21: note: when computing vector element at index '1'
3818// :121:21: error: use of undefined value here causes illegal behavior
3819// :121:21: note: when computing vector element at index '0'
3820// :121:21: error: use of undefined value here causes illegal behavior
3821// :121:21: note: when computing vector element at index '0'
3822// :121:21: error: use of undefined value here causes illegal behavior
3823// :121:21: error: use of undefined value here causes illegal behavior
3824// :121:21: note: when computing vector element at index '0'
3825// :121:21: error: use of undefined value here causes illegal behavior
3826// :121:21: note: when computing vector element at index '0'
3827// :121:21: error: use of undefined value here causes illegal behavior
3828// :121:21: note: when computing vector element at index '1'
3829// :121:21: error: use of undefined value here causes illegal behavior
3830// :121:21: note: when computing vector element at index '0'
3831// :121:21: error: use of undefined value here causes illegal behavior
3832// :121:21: note: when computing vector element at index '0'
3833// :121:21: error: use of undefined value here causes illegal behavior
3834// :121:21: error: use of undefined value here causes illegal behavior
3835// :121:21: note: when computing vector element at index '0'
3836// :121:21: error: use of undefined value here causes illegal behavior
3837// :121:21: note: when computing vector element at index '0'
3838// :121:21: error: use of undefined value here causes illegal behavior
3839// :121:21: note: when computing vector element at index '1'
3840// :121:21: error: use of undefined value here causes illegal behavior
3841// :121:21: note: when computing vector element at index '0'
3842// :121:21: error: use of undefined value here causes illegal behavior
3843// :121:21: note: when computing vector element at index '0'
3844// :121:21: error: use of undefined value here causes illegal behavior
3845// :121:21: error: use of undefined value here causes illegal behavior
3846// :121:21: note: when computing vector element at index '0'
3847// :121:21: error: use of undefined value here causes illegal behavior
3848// :121:21: note: when computing vector element at index '0'
3849// :121:21: error: use of undefined value here causes illegal behavior
3850// :121:21: note: when computing vector element at index '1'
3851// :121:21: error: use of undefined value here causes illegal behavior
3852// :121:21: note: when computing vector element at index '0'
3853// :121:21: error: use of undefined value here causes illegal behavior
3854// :121:21: note: when computing vector element at index '0'
3855// :121:21: error: use of undefined value here causes illegal behavior
3856// :121:21: error: use of undefined value here causes illegal behavior
3857// :121:21: note: when computing vector element at index '0'
3858// :121:21: error: use of undefined value here causes illegal behavior
3859// :121:21: note: when computing vector element at index '0'
3860// :121:21: error: use of undefined value here causes illegal behavior
3861// :121:21: note: when computing vector element at index '1'
3862// :121:21: error: use of undefined value here causes illegal behavior
3863// :121:21: note: when computing vector element at index '0'
3864// :121:21: error: use of undefined value here causes illegal behavior
3865// :121:21: note: when computing vector element at index '0'
3866// :121:21: error: use of undefined value here causes illegal behavior
3867// :121:21: error: use of undefined value here causes illegal behavior
3868// :121:21: note: when computing vector element at index '0'
3869// :121:21: error: use of undefined value here causes illegal behavior
3870// :121:21: note: when computing vector element at index '0'
3871// :121:21: error: use of undefined value here causes illegal behavior
3872// :121:21: note: when computing vector element at index '1'
3873// :121:21: error: use of undefined value here causes illegal behavior
3874// :121:21: note: when computing vector element at index '0'
3875// :121:21: error: use of undefined value here causes illegal behavior
3876// :121:21: note: when computing vector element at index '0'
3877// :121:21: error: use of undefined value here causes illegal behavior
3878// :121:21: error: use of undefined value here causes illegal behavior
3879// :121:21: note: when computing vector element at index '0'
3880// :121:21: error: use of undefined value here causes illegal behavior
3881// :121:21: note: when computing vector element at index '0'
3882// :121:21: error: use of undefined value here causes illegal behavior
3883// :121:21: note: when computing vector element at index '1'
3884// :121:21: error: use of undefined value here causes illegal behavior
3885// :121:21: note: when computing vector element at index '0'
3886// :121:21: error: use of undefined value here causes illegal behavior
3887// :121:21: note: when computing vector element at index '0'
3888// :121:21: error: use of undefined value here causes illegal behavior
3889// :121:21: error: use of undefined value here causes illegal behavior
3890// :121:21: note: when computing vector element at index '0'
3891// :121:21: error: use of undefined value here causes illegal behavior
3892// :121:21: note: when computing vector element at index '0'
3893// :121:21: error: use of undefined value here causes illegal behavior
3894// :121:21: note: when computing vector element at index '1'
3895// :121:21: error: use of undefined value here causes illegal behavior
3896// :121:21: note: when computing vector element at index '0'
3897// :121:21: error: use of undefined value here causes illegal behavior
3898// :121:21: note: when computing vector element at index '0'
3899// :121:21: error: use of undefined value here causes illegal behavior
3900// :121:21: error: use of undefined value here causes illegal behavior
3901// :121:21: note: when computing vector element at index '0'
3902// :121:21: error: use of undefined value here causes illegal behavior
3903// :121:21: note: when computing vector element at index '0'
3904// :121:21: error: use of undefined value here causes illegal behavior
3905// :121:21: note: when computing vector element at index '1'
3906// :121:21: error: use of undefined value here causes illegal behavior
3907// :121:21: note: when computing vector element at index '0'
3908// :121:21: error: use of undefined value here causes illegal behavior
3909// :121:21: note: when computing vector element at index '0'
3910// :121:21: error: use of undefined value here causes illegal behavior
3911// :121:21: error: use of undefined value here causes illegal behavior
3912// :121:21: note: when computing vector element at index '0'
3913// :121:21: error: use of undefined value here causes illegal behavior
3914// :121:21: note: when computing vector element at index '0'
3915// :121:21: error: use of undefined value here causes illegal behavior
3916// :121:21: note: when computing vector element at index '1'
3917// :121:21: error: use of undefined value here causes illegal behavior
3918// :121:21: note: when computing vector element at index '0'
3919// :121:21: error: use of undefined value here causes illegal behavior
3920// :121:21: note: when computing vector element at index '0'
3921// :121:21: error: use of undefined value here causes illegal behavior
3922// :121:21: error: use of undefined value here causes illegal behavior
3923// :121:21: note: when computing vector element at index '0'
3924// :121:21: error: use of undefined value here causes illegal behavior
3925// :121:21: note: when computing vector element at index '0'
3926// :121:21: error: use of undefined value here causes illegal behavior
3927// :121:21: note: when computing vector element at index '1'
3928// :121:21: error: use of undefined value here causes illegal behavior
3929// :121:21: note: when computing vector element at index '0'
3930// :121:21: error: use of undefined value here causes illegal behavior
3931// :121:21: note: when computing vector element at index '0'
3932// :125:27: error: use of undefined value here causes illegal behavior
3933// :125:27: error: use of undefined value here causes illegal behavior
3934// :125:27: note: when computing vector element at index '0'
3935// :125:27: error: use of undefined value here causes illegal behavior
3936// :125:27: note: when computing vector element at index '0'
3937// :125:27: error: use of undefined value here causes illegal behavior
3938// :125:27: note: when computing vector element at index '0'
3939// :125:27: error: use of undefined value here causes illegal behavior
3940// :125:27: note: when computing vector element at index '1'
3941// :125:27: error: use of undefined value here causes illegal behavior
3942// :125:27: note: when computing vector element at index '0'
3943// :125:27: error: use of undefined value here causes illegal behavior
3944// :125:27: note: when computing vector element at index '0'
3945// :125:27: error: use of undefined value here causes illegal behavior
3946// :125:27: note: when computing vector element at index '0'
3947// :125:27: error: use of undefined value here causes illegal behavior
3948// :125:27: error: use of undefined value here causes illegal behavior
3949// :125:27: note: when computing vector element at index '0'
3950// :125:27: error: use of undefined value here causes illegal behavior
3951// :125:27: note: when computing vector element at index '0'
3952// :125:27: error: use of undefined value here causes illegal behavior
3953// :125:27: note: when computing vector element at index '0'
3954// :125:27: error: use of undefined value here causes illegal behavior
3955// :125:27: note: when computing vector element at index '1'
3956// :125:27: error: use of undefined value here causes illegal behavior
3957// :125:27: note: when computing vector element at index '0'
3958// :125:27: error: use of undefined value here causes illegal behavior
3959// :125:27: note: when computing vector element at index '0'
3960// :125:27: error: use of undefined value here causes illegal behavior
3961// :125:27: note: when computing vector element at index '0'
3962// :125:27: error: use of undefined value here causes illegal behavior
3963// :125:27: error: use of undefined value here causes illegal behavior
3964// :125:27: note: when computing vector element at index '0'
3965// :125:27: error: use of undefined value here causes illegal behavior
3966// :125:27: note: when computing vector element at index '0'
3967// :125:27: error: use of undefined value here causes illegal behavior
3968// :125:27: note: when computing vector element at index '0'
3969// :125:27: error: use of undefined value here causes illegal behavior
3970// :125:27: note: when computing vector element at index '1'
3971// :125:27: error: use of undefined value here causes illegal behavior
3972// :125:27: note: when computing vector element at index '0'
3973// :125:27: error: use of undefined value here causes illegal behavior
3974// :125:27: note: when computing vector element at index '0'
3975// :125:27: error: use of undefined value here causes illegal behavior
3976// :125:27: note: when computing vector element at index '0'
3977// :125:27: error: use of undefined value here causes illegal behavior
3978// :125:27: error: use of undefined value here causes illegal behavior
3979// :125:27: note: when computing vector element at index '0'
3980// :125:27: error: use of undefined value here causes illegal behavior
3981// :125:27: note: when computing vector element at index '0'
3982// :125:27: error: use of undefined value here causes illegal behavior
3983// :125:27: note: when computing vector element at index '0'
3984// :125:27: error: use of undefined value here causes illegal behavior
3985// :125:27: note: when computing vector element at index '1'
3986// :125:27: error: use of undefined value here causes illegal behavior
3987// :125:27: note: when computing vector element at index '0'
3988// :125:27: error: use of undefined value here causes illegal behavior
3989// :125:27: note: when computing vector element at index '0'
3990// :125:27: error: use of undefined value here causes illegal behavior
3991// :125:27: note: when computing vector element at index '0'
3992// :125:27: error: use of undefined value here causes illegal behavior
3993// :125:27: error: use of undefined value here causes illegal behavior
3994// :125:27: note: when computing vector element at index '0'
3995// :125:27: error: use of undefined value here causes illegal behavior
3996// :125:27: note: when computing vector element at index '0'
3997// :125:27: error: use of undefined value here causes illegal behavior
3998// :125:27: note: when computing vector element at index '0'
3999// :125:27: error: use of undefined value here causes illegal behavior
4000// :125:27: note: when computing vector element at index '1'
4001// :125:27: error: use of undefined value here causes illegal behavior
4002// :125:27: note: when computing vector element at index '0'
4003// :125:27: error: use of undefined value here causes illegal behavior
4004// :125:27: note: when computing vector element at index '0'
4005// :125:27: error: use of undefined value here causes illegal behavior
4006// :125:27: note: when computing vector element at index '0'
4007// :125:27: error: use of undefined value here causes illegal behavior
4008// :125:27: error: use of undefined value here causes illegal behavior
4009// :125:27: note: when computing vector element at index '0'
4010// :125:27: error: use of undefined value here causes illegal behavior
4011// :125:27: note: when computing vector element at index '0'
4012// :125:27: error: use of undefined value here causes illegal behavior
4013// :125:27: note: when computing vector element at index '0'
4014// :125:27: error: use of undefined value here causes illegal behavior
4015// :125:27: note: when computing vector element at index '1'
4016// :125:27: error: use of undefined value here causes illegal behavior
4017// :125:27: note: when computing vector element at index '0'
4018// :125:27: error: use of undefined value here causes illegal behavior
4019// :125:27: note: when computing vector element at index '0'
4020// :125:27: error: use of undefined value here causes illegal behavior
4021// :125:27: note: when computing vector element at index '0'
4022// :125:27: error: use of undefined value here causes illegal behavior
4023// :125:27: error: use of undefined value here causes illegal behavior
4024// :125:27: note: when computing vector element at index '0'
4025// :125:27: error: use of undefined value here causes illegal behavior
4026// :125:27: note: when computing vector element at index '0'
4027// :125:27: error: use of undefined value here causes illegal behavior
4028// :125:27: note: when computing vector element at index '0'
4029// :125:27: error: use of undefined value here causes illegal behavior
4030// :125:27: note: when computing vector element at index '1'
4031// :125:27: error: use of undefined value here causes illegal behavior
4032// :125:27: note: when computing vector element at index '0'
4033// :125:27: error: use of undefined value here causes illegal behavior
4034// :125:27: note: when computing vector element at index '0'
4035// :125:27: error: use of undefined value here causes illegal behavior
4036// :125:27: note: when computing vector element at index '0'
4037// :125:27: error: use of undefined value here causes illegal behavior
4038// :125:27: error: use of undefined value here causes illegal behavior
4039// :125:27: note: when computing vector element at index '0'
4040// :125:27: error: use of undefined value here causes illegal behavior
4041// :125:27: note: when computing vector element at index '0'
4042// :125:27: error: use of undefined value here causes illegal behavior
4043// :125:27: note: when computing vector element at index '0'
4044// :125:27: error: use of undefined value here causes illegal behavior
4045// :125:27: note: when computing vector element at index '1'
4046// :125:27: error: use of undefined value here causes illegal behavior
4047// :125:27: note: when computing vector element at index '0'
4048// :125:27: error: use of undefined value here causes illegal behavior
4049// :125:27: note: when computing vector element at index '0'
4050// :125:27: error: use of undefined value here causes illegal behavior
4051// :125:27: note: when computing vector element at index '0'
4052// :125:27: error: use of undefined value here causes illegal behavior
4053// :125:27: error: use of undefined value here causes illegal behavior
4054// :125:27: note: when computing vector element at index '0'
4055// :125:27: error: use of undefined value here causes illegal behavior
4056// :125:27: note: when computing vector element at index '0'
4057// :125:27: error: use of undefined value here causes illegal behavior
4058// :125:27: note: when computing vector element at index '0'
4059// :125:27: error: use of undefined value here causes illegal behavior
4060// :125:27: note: when computing vector element at index '1'
4061// :125:27: error: use of undefined value here causes illegal behavior
4062// :125:27: note: when computing vector element at index '0'
4063// :125:27: error: use of undefined value here causes illegal behavior
4064// :125:27: note: when computing vector element at index '0'
4065// :125:27: error: use of undefined value here causes illegal behavior
4066// :125:27: note: when computing vector element at index '0'
4067// :125:27: error: use of undefined value here causes illegal behavior
4068// :125:27: error: use of undefined value here causes illegal behavior
4069// :125:27: note: when computing vector element at index '0'
4070// :125:27: error: use of undefined value here causes illegal behavior
4071// :125:27: note: when computing vector element at index '0'
4072// :125:27: error: use of undefined value here causes illegal behavior
4073// :125:27: note: when computing vector element at index '0'
4074// :125:27: error: use of undefined value here causes illegal behavior
4075// :125:27: note: when computing vector element at index '1'
4076// :125:27: error: use of undefined value here causes illegal behavior
4077// :125:27: note: when computing vector element at index '0'
4078// :125:27: error: use of undefined value here causes illegal behavior
4079// :125:27: note: when computing vector element at index '0'
4080// :125:27: error: use of undefined value here causes illegal behavior
4081// :125:27: note: when computing vector element at index '0'
4082// :125:27: error: use of undefined value here causes illegal behavior
4083// :125:27: error: use of undefined value here causes illegal behavior
4084// :125:27: note: when computing vector element at index '0'
4085// :125:27: error: use of undefined value here causes illegal behavior
4086// :125:27: note: when computing vector element at index '0'
4087// :125:27: error: use of undefined value here causes illegal behavior
4088// :125:27: note: when computing vector element at index '0'
4089// :125:27: error: use of undefined value here causes illegal behavior
4090// :125:27: note: when computing vector element at index '1'
4091// :125:27: error: use of undefined value here causes illegal behavior
4092// :125:27: note: when computing vector element at index '0'
4093// :125:27: error: use of undefined value here causes illegal behavior
4094// :125:27: note: when computing vector element at index '0'
4095// :125:27: error: use of undefined value here causes illegal behavior
4096// :125:27: note: when computing vector element at index '0'
4097// :125:30: error: use of undefined value here causes illegal behavior
4098// :125:30: error: use of undefined value here causes illegal behavior
4099// :125:30: note: when computing vector element at index '0'
4100// :125:30: error: use of undefined value here causes illegal behavior
4101// :125:30: note: when computing vector element at index '0'
4102// :125:30: error: use of undefined value here causes illegal behavior
4103// :125:30: note: when computing vector element at index '1'
4104// :125:30: error: use of undefined value here causes illegal behavior
4105// :125:30: note: when computing vector element at index '0'
4106// :125:30: error: use of undefined value here causes illegal behavior
4107// :125:30: note: when computing vector element at index '0'
4108// :125:30: error: use of undefined value here causes illegal behavior
4109// :125:30: error: use of undefined value here causes illegal behavior
4110// :125:30: note: when computing vector element at index '0'
4111// :125:30: error: use of undefined value here causes illegal behavior
4112// :125:30: note: when computing vector element at index '0'
4113// :125:30: error: use of undefined value here causes illegal behavior
4114// :125:30: note: when computing vector element at index '1'
4115// :125:30: error: use of undefined value here causes illegal behavior
4116// :125:30: note: when computing vector element at index '0'
4117// :125:30: error: use of undefined value here causes illegal behavior
4118// :125:30: note: when computing vector element at index '0'
4119// :125:30: error: use of undefined value here causes illegal behavior
4120// :125:30: error: use of undefined value here causes illegal behavior
4121// :125:30: note: when computing vector element at index '0'
4122// :125:30: error: use of undefined value here causes illegal behavior
4123// :125:30: note: when computing vector element at index '0'
4124// :125:30: error: use of undefined value here causes illegal behavior
4125// :125:30: note: when computing vector element at index '1'
4126// :125:30: error: use of undefined value here causes illegal behavior
4127// :125:30: note: when computing vector element at index '0'
4128// :125:30: error: use of undefined value here causes illegal behavior
4129// :125:30: note: when computing vector element at index '0'
4130// :125:30: error: use of undefined value here causes illegal behavior
4131// :125:30: error: use of undefined value here causes illegal behavior
4132// :125:30: note: when computing vector element at index '0'
4133// :125:30: error: use of undefined value here causes illegal behavior
4134// :125:30: note: when computing vector element at index '0'
4135// :125:30: error: use of undefined value here causes illegal behavior
4136// :125:30: note: when computing vector element at index '1'
4137// :125:30: error: use of undefined value here causes illegal behavior
4138// :125:30: note: when computing vector element at index '0'
4139// :125:30: error: use of undefined value here causes illegal behavior
4140// :125:30: note: when computing vector element at index '0'
4141// :125:30: error: use of undefined value here causes illegal behavior
4142// :125:30: error: use of undefined value here causes illegal behavior
4143// :125:30: note: when computing vector element at index '0'
4144// :125:30: error: use of undefined value here causes illegal behavior
4145// :125:30: note: when computing vector element at index '0'
4146// :125:30: error: use of undefined value here causes illegal behavior
4147// :125:30: note: when computing vector element at index '1'
4148// :125:30: error: use of undefined value here causes illegal behavior
4149// :125:30: note: when computing vector element at index '0'
4150// :125:30: error: use of undefined value here causes illegal behavior
4151// :125:30: note: when computing vector element at index '0'
4152// :125:30: error: use of undefined value here causes illegal behavior
4153// :125:30: error: use of undefined value here causes illegal behavior
4154// :125:30: note: when computing vector element at index '0'
4155// :125:30: error: use of undefined value here causes illegal behavior
4156// :125:30: note: when computing vector element at index '0'
4157// :125:30: error: use of undefined value here causes illegal behavior
4158// :125:30: note: when computing vector element at index '1'
4159// :125:30: error: use of undefined value here causes illegal behavior
4160// :125:30: note: when computing vector element at index '0'
4161// :125:30: error: use of undefined value here causes illegal behavior
4162// :125:30: note: when computing vector element at index '0'
4163// :125:30: error: use of undefined value here causes illegal behavior
4164// :125:30: error: use of undefined value here causes illegal behavior
4165// :125:30: note: when computing vector element at index '0'
4166// :125:30: error: use of undefined value here causes illegal behavior
4167// :125:30: note: when computing vector element at index '0'
4168// :125:30: error: use of undefined value here causes illegal behavior
4169// :125:30: note: when computing vector element at index '1'
4170// :125:30: error: use of undefined value here causes illegal behavior
4171// :125:30: note: when computing vector element at index '0'
4172// :125:30: error: use of undefined value here causes illegal behavior
4173// :125:30: note: when computing vector element at index '0'
4174// :125:30: error: use of undefined value here causes illegal behavior
4175// :125:30: error: use of undefined value here causes illegal behavior
4176// :125:30: note: when computing vector element at index '0'
4177// :125:30: error: use of undefined value here causes illegal behavior
4178// :125:30: note: when computing vector element at index '0'
4179// :125:30: error: use of undefined value here causes illegal behavior
4180// :125:30: note: when computing vector element at index '1'
4181// :125:30: error: use of undefined value here causes illegal behavior
4182// :125:30: note: when computing vector element at index '0'
4183// :125:30: error: use of undefined value here causes illegal behavior
4184// :125:30: note: when computing vector element at index '0'
4185// :125:30: error: use of undefined value here causes illegal behavior
4186// :125:30: error: use of undefined value here causes illegal behavior
4187// :125:30: note: when computing vector element at index '0'
4188// :125:30: error: use of undefined value here causes illegal behavior
4189// :125:30: note: when computing vector element at index '0'
4190// :125:30: error: use of undefined value here causes illegal behavior
4191// :125:30: note: when computing vector element at index '1'
4192// :125:30: error: use of undefined value here causes illegal behavior
4193// :125:30: note: when computing vector element at index '0'
4194// :125:30: error: use of undefined value here causes illegal behavior
4195// :125:30: note: when computing vector element at index '0'
4196// :125:30: error: use of undefined value here causes illegal behavior
4197// :125:30: error: use of undefined value here causes illegal behavior
4198// :125:30: note: when computing vector element at index '0'
4199// :125:30: error: use of undefined value here causes illegal behavior
4200// :125:30: note: when computing vector element at index '0'
4201// :125:30: error: use of undefined value here causes illegal behavior
4202// :125:30: note: when computing vector element at index '1'
4203// :125:30: error: use of undefined value here causes illegal behavior
4204// :125:30: note: when computing vector element at index '0'
4205// :125:30: error: use of undefined value here causes illegal behavior
4206// :125:30: note: when computing vector element at index '0'
4207// :125:30: error: use of undefined value here causes illegal behavior
4208// :125:30: error: use of undefined value here causes illegal behavior
4209// :125:30: note: when computing vector element at index '0'
4210// :125:30: error: use of undefined value here causes illegal behavior
4211// :125:30: note: when computing vector element at index '0'
4212// :125:30: error: use of undefined value here causes illegal behavior
4213// :125:30: note: when computing vector element at index '1'
4214// :125:30: error: use of undefined value here causes illegal behavior
4215// :125:30: note: when computing vector element at index '0'
4216// :125:30: error: use of undefined value here causes illegal behavior
4217// :125:30: note: when computing vector element at index '0'
4218// :129:27: error: use of undefined value here causes illegal behavior
4219// :129:27: error: use of undefined value here causes illegal behavior
4220// :129:27: note: when computing vector element at index '0'
4221// :129:27: error: use of undefined value here causes illegal behavior
4222// :129:27: note: when computing vector element at index '0'
4223// :129:27: error: use of undefined value here causes illegal behavior
4224// :129:27: note: when computing vector element at index '0'
4225// :129:27: error: use of undefined value here causes illegal behavior
4226// :129:27: note: when computing vector element at index '1'
4227// :129:27: error: use of undefined value here causes illegal behavior
4228// :129:27: note: when computing vector element at index '0'
4229// :129:27: error: use of undefined value here causes illegal behavior
4230// :129:27: note: when computing vector element at index '0'
4231// :129:27: error: use of undefined value here causes illegal behavior
4232// :129:27: note: when computing vector element at index '0'
4233// :129:27: error: use of undefined value here causes illegal behavior
4234// :129:27: error: use of undefined value here causes illegal behavior
4235// :129:27: note: when computing vector element at index '0'
4236// :129:27: error: use of undefined value here causes illegal behavior
4237// :129:27: note: when computing vector element at index '0'
4238// :129:27: error: use of undefined value here causes illegal behavior
4239// :129:27: note: when computing vector element at index '0'
4240// :129:27: error: use of undefined value here causes illegal behavior
4241// :129:27: note: when computing vector element at index '1'
4242// :129:27: error: use of undefined value here causes illegal behavior
4243// :129:27: note: when computing vector element at index '0'
4244// :129:27: error: use of undefined value here causes illegal behavior
4245// :129:27: note: when computing vector element at index '0'
4246// :129:27: error: use of undefined value here causes illegal behavior
4247// :129:27: note: when computing vector element at index '0'
4248// :129:27: error: use of undefined value here causes illegal behavior
4249// :129:27: error: use of undefined value here causes illegal behavior
4250// :129:27: note: when computing vector element at index '0'
4251// :129:27: error: use of undefined value here causes illegal behavior
4252// :129:27: note: when computing vector element at index '0'
4253// :129:27: error: use of undefined value here causes illegal behavior
4254// :129:27: note: when computing vector element at index '0'
4255// :129:27: error: use of undefined value here causes illegal behavior
4256// :129:27: note: when computing vector element at index '1'
4257// :129:27: error: use of undefined value here causes illegal behavior
4258// :129:27: note: when computing vector element at index '0'
4259// :129:27: error: use of undefined value here causes illegal behavior
4260// :129:27: note: when computing vector element at index '0'
4261// :129:27: error: use of undefined value here causes illegal behavior
4262// :129:27: note: when computing vector element at index '0'
4263// :129:27: error: use of undefined value here causes illegal behavior
4264// :129:27: error: use of undefined value here causes illegal behavior
4265// :129:27: note: when computing vector element at index '0'
4266// :129:27: error: use of undefined value here causes illegal behavior
4267// :129:27: note: when computing vector element at index '0'
4268// :129:27: error: use of undefined value here causes illegal behavior
4269// :129:27: note: when computing vector element at index '0'
4270// :129:27: error: use of undefined value here causes illegal behavior
4271// :129:27: note: when computing vector element at index '1'
4272// :129:27: error: use of undefined value here causes illegal behavior
4273// :129:27: note: when computing vector element at index '0'
4274// :129:27: error: use of undefined value here causes illegal behavior
4275// :129:27: note: when computing vector element at index '0'
4276// :129:27: error: use of undefined value here causes illegal behavior
4277// :129:27: note: when computing vector element at index '0'
4278// :129:27: error: use of undefined value here causes illegal behavior
4279// :129:27: error: use of undefined value here causes illegal behavior
4280// :129:27: note: when computing vector element at index '0'
4281// :129:27: error: use of undefined value here causes illegal behavior
4282// :129:27: note: when computing vector element at index '0'
4283// :129:27: error: use of undefined value here causes illegal behavior
4284// :129:27: note: when computing vector element at index '0'
4285// :129:27: error: use of undefined value here causes illegal behavior
4286// :129:27: note: when computing vector element at index '1'
4287// :129:27: error: use of undefined value here causes illegal behavior
4288// :129:27: note: when computing vector element at index '0'
4289// :129:27: error: use of undefined value here causes illegal behavior
4290// :129:27: note: when computing vector element at index '0'
4291// :129:27: error: use of undefined value here causes illegal behavior
4292// :129:27: note: when computing vector element at index '0'
4293// :129:27: error: use of undefined value here causes illegal behavior
4294// :129:27: error: use of undefined value here causes illegal behavior
4295// :129:27: note: when computing vector element at index '0'
4296// :129:27: error: use of undefined value here causes illegal behavior
4297// :129:27: note: when computing vector element at index '0'
4298// :129:27: error: use of undefined value here causes illegal behavior
4299// :129:27: note: when computing vector element at index '0'
4300// :129:27: error: use of undefined value here causes illegal behavior
4301// :129:27: note: when computing vector element at index '1'
4302// :129:27: error: use of undefined value here causes illegal behavior
4303// :129:27: note: when computing vector element at index '0'
4304// :129:27: error: use of undefined value here causes illegal behavior
4305// :129:27: note: when computing vector element at index '0'
4306// :129:27: error: use of undefined value here causes illegal behavior
4307// :129:27: note: when computing vector element at index '0'
4308// :129:27: error: use of undefined value here causes illegal behavior
4309// :129:27: error: use of undefined value here causes illegal behavior
4310// :129:27: note: when computing vector element at index '0'
4311// :129:27: error: use of undefined value here causes illegal behavior
4312// :129:27: note: when computing vector element at index '0'
4313// :129:27: error: use of undefined value here causes illegal behavior
4314// :129:27: note: when computing vector element at index '0'
4315// :129:27: error: use of undefined value here causes illegal behavior
4316// :129:27: note: when computing vector element at index '1'
4317// :129:27: error: use of undefined value here causes illegal behavior
4318// :129:27: note: when computing vector element at index '0'
4319// :129:27: error: use of undefined value here causes illegal behavior
4320// :129:27: note: when computing vector element at index '0'
4321// :129:27: error: use of undefined value here causes illegal behavior
4322// :129:27: note: when computing vector element at index '0'
4323// :129:27: error: use of undefined value here causes illegal behavior
4324// :129:27: error: use of undefined value here causes illegal behavior
4325// :129:27: note: when computing vector element at index '0'
4326// :129:27: error: use of undefined value here causes illegal behavior
4327// :129:27: note: when computing vector element at index '0'
4328// :129:27: error: use of undefined value here causes illegal behavior
4329// :129:27: note: when computing vector element at index '0'
4330// :129:27: error: use of undefined value here causes illegal behavior
4331// :129:27: note: when computing vector element at index '1'
4332// :129:27: error: use of undefined value here causes illegal behavior
4333// :129:27: note: when computing vector element at index '0'
4334// :129:27: error: use of undefined value here causes illegal behavior
4335// :129:27: note: when computing vector element at index '0'
4336// :129:27: error: use of undefined value here causes illegal behavior
4337// :129:27: note: when computing vector element at index '0'
4338// :129:27: error: use of undefined value here causes illegal behavior
4339// :129:27: error: use of undefined value here causes illegal behavior
4340// :129:27: note: when computing vector element at index '0'
4341// :129:27: error: use of undefined value here causes illegal behavior
4342// :129:27: note: when computing vector element at index '0'
4343// :129:27: error: use of undefined value here causes illegal behavior
4344// :129:27: note: when computing vector element at index '0'
4345// :129:27: error: use of undefined value here causes illegal behavior
4346// :129:27: note: when computing vector element at index '1'
4347// :129:27: error: use of undefined value here causes illegal behavior
4348// :129:27: note: when computing vector element at index '0'
4349// :129:27: error: use of undefined value here causes illegal behavior
4350// :129:27: note: when computing vector element at index '0'
4351// :129:27: error: use of undefined value here causes illegal behavior
4352// :129:27: note: when computing vector element at index '0'
4353// :129:27: error: use of undefined value here causes illegal behavior
4354// :129:27: error: use of undefined value here causes illegal behavior
4355// :129:27: note: when computing vector element at index '0'
4356// :129:27: error: use of undefined value here causes illegal behavior
4357// :129:27: note: when computing vector element at index '0'
4358// :129:27: error: use of undefined value here causes illegal behavior
4359// :129:27: note: when computing vector element at index '0'
4360// :129:27: error: use of undefined value here causes illegal behavior
4361// :129:27: note: when computing vector element at index '1'
4362// :129:27: error: use of undefined value here causes illegal behavior
4363// :129:27: note: when computing vector element at index '0'
4364// :129:27: error: use of undefined value here causes illegal behavior
4365// :129:27: note: when computing vector element at index '0'
4366// :129:27: error: use of undefined value here causes illegal behavior
4367// :129:27: note: when computing vector element at index '0'
4368// :129:27: error: use of undefined value here causes illegal behavior
4369// :129:27: error: use of undefined value here causes illegal behavior
4370// :129:27: note: when computing vector element at index '0'
4371// :129:27: error: use of undefined value here causes illegal behavior
4372// :129:27: note: when computing vector element at index '0'
4373// :129:27: error: use of undefined value here causes illegal behavior
4374// :129:27: note: when computing vector element at index '0'
4375// :129:27: error: use of undefined value here causes illegal behavior
4376// :129:27: note: when computing vector element at index '1'
4377// :129:27: error: use of undefined value here causes illegal behavior
4378// :129:27: note: when computing vector element at index '0'
4379// :129:27: error: use of undefined value here causes illegal behavior
4380// :129:27: note: when computing vector element at index '0'
4381// :129:27: error: use of undefined value here causes illegal behavior
4382// :129:27: note: when computing vector element at index '0'
4383// :129:30: error: use of undefined value here causes illegal behavior
4384// :129:30: error: use of undefined value here causes illegal behavior
4385// :129:30: note: when computing vector element at index '0'
4386// :129:30: error: use of undefined value here causes illegal behavior
4387// :129:30: note: when computing vector element at index '0'
4388// :129:30: error: use of undefined value here causes illegal behavior
4389// :129:30: note: when computing vector element at index '1'
4390// :129:30: error: use of undefined value here causes illegal behavior
4391// :129:30: note: when computing vector element at index '0'
4392// :129:30: error: use of undefined value here causes illegal behavior
4393// :129:30: note: when computing vector element at index '0'
4394// :129:30: error: use of undefined value here causes illegal behavior
4395// :129:30: error: use of undefined value here causes illegal behavior
4396// :129:30: note: when computing vector element at index '0'
4397// :129:30: error: use of undefined value here causes illegal behavior
4398// :129:30: note: when computing vector element at index '0'
4399// :129:30: error: use of undefined value here causes illegal behavior
4400// :129:30: note: when computing vector element at index '1'
4401// :129:30: error: use of undefined value here causes illegal behavior
4402// :129:30: note: when computing vector element at index '0'
4403// :129:30: error: use of undefined value here causes illegal behavior
4404// :129:30: note: when computing vector element at index '0'
4405// :129:30: error: use of undefined value here causes illegal behavior
4406// :129:30: error: use of undefined value here causes illegal behavior
4407// :129:30: note: when computing vector element at index '0'
4408// :129:30: error: use of undefined value here causes illegal behavior
4409// :129:30: note: when computing vector element at index '0'
4410// :129:30: error: use of undefined value here causes illegal behavior
4411// :129:30: note: when computing vector element at index '1'
4412// :129:30: error: use of undefined value here causes illegal behavior
4413// :129:30: note: when computing vector element at index '0'
4414// :129:30: error: use of undefined value here causes illegal behavior
4415// :129:30: note: when computing vector element at index '0'
4416// :129:30: error: use of undefined value here causes illegal behavior
4417// :129:30: error: use of undefined value here causes illegal behavior
4418// :129:30: note: when computing vector element at index '0'
4419// :129:30: error: use of undefined value here causes illegal behavior
4420// :129:30: note: when computing vector element at index '0'
4421// :129:30: error: use of undefined value here causes illegal behavior
4422// :129:30: note: when computing vector element at index '1'
4423// :129:30: error: use of undefined value here causes illegal behavior
4424// :129:30: note: when computing vector element at index '0'
4425// :129:30: error: use of undefined value here causes illegal behavior
4426// :129:30: note: when computing vector element at index '0'
4427// :129:30: error: use of undefined value here causes illegal behavior
4428// :129:30: error: use of undefined value here causes illegal behavior
4429// :129:30: note: when computing vector element at index '0'
4430// :129:30: error: use of undefined value here causes illegal behavior
4431// :129:30: note: when computing vector element at index '0'
4432// :129:30: error: use of undefined value here causes illegal behavior
4433// :129:30: note: when computing vector element at index '1'
4434// :129:30: error: use of undefined value here causes illegal behavior
4435// :129:30: note: when computing vector element at index '0'
4436// :129:30: error: use of undefined value here causes illegal behavior
4437// :129:30: note: when computing vector element at index '0'
4438// :129:30: error: use of undefined value here causes illegal behavior
4439// :129:30: error: use of undefined value here causes illegal behavior
4440// :129:30: note: when computing vector element at index '0'
4441// :129:30: error: use of undefined value here causes illegal behavior
4442// :129:30: note: when computing vector element at index '0'
4443// :129:30: error: use of undefined value here causes illegal behavior
4444// :129:30: note: when computing vector element at index '1'
4445// :129:30: error: use of undefined value here causes illegal behavior
4446// :129:30: note: when computing vector element at index '0'
4447// :129:30: error: use of undefined value here causes illegal behavior
4448// :129:30: note: when computing vector element at index '0'
4449// :129:30: error: use of undefined value here causes illegal behavior
4450// :129:30: error: use of undefined value here causes illegal behavior
4451// :129:30: note: when computing vector element at index '0'
4452// :129:30: error: use of undefined value here causes illegal behavior
4453// :129:30: note: when computing vector element at index '0'
4454// :129:30: error: use of undefined value here causes illegal behavior
4455// :129:30: note: when computing vector element at index '1'
4456// :129:30: error: use of undefined value here causes illegal behavior
4457// :129:30: note: when computing vector element at index '0'
4458// :129:30: error: use of undefined value here causes illegal behavior
4459// :129:30: note: when computing vector element at index '0'
4460// :129:30: error: use of undefined value here causes illegal behavior
4461// :129:30: error: use of undefined value here causes illegal behavior
4462// :129:30: note: when computing vector element at index '0'
4463// :129:30: error: use of undefined value here causes illegal behavior
4464// :129:30: note: when computing vector element at index '0'
4465// :129:30: error: use of undefined value here causes illegal behavior
4466// :129:30: note: when computing vector element at index '1'
4467// :129:30: error: use of undefined value here causes illegal behavior
4468// :129:30: note: when computing vector element at index '0'
4469// :129:30: error: use of undefined value here causes illegal behavior
4470// :129:30: note: when computing vector element at index '0'
4471// :129:30: error: use of undefined value here causes illegal behavior
4472// :129:30: error: use of undefined value here causes illegal behavior
4473// :129:30: note: when computing vector element at index '0'
4474// :129:30: error: use of undefined value here causes illegal behavior
4475// :129:30: note: when computing vector element at index '0'
4476// :129:30: error: use of undefined value here causes illegal behavior
4477// :129:30: note: when computing vector element at index '1'
4478// :129:30: error: use of undefined value here causes illegal behavior
4479// :129:30: note: when computing vector element at index '0'
4480// :129:30: error: use of undefined value here causes illegal behavior
4481// :129:30: note: when computing vector element at index '0'
4482// :129:30: error: use of undefined value here causes illegal behavior
4483// :129:30: error: use of undefined value here causes illegal behavior
4484// :129:30: note: when computing vector element at index '0'
4485// :129:30: error: use of undefined value here causes illegal behavior
4486// :129:30: note: when computing vector element at index '0'
4487// :129:30: error: use of undefined value here causes illegal behavior
4488// :129:30: note: when computing vector element at index '1'
4489// :129:30: error: use of undefined value here causes illegal behavior
4490// :129:30: note: when computing vector element at index '0'
4491// :129:30: error: use of undefined value here causes illegal behavior
4492// :129:30: note: when computing vector element at index '0'
4493// :129:30: error: use of undefined value here causes illegal behavior
4494// :129:30: error: use of undefined value here causes illegal behavior
4495// :129:30: note: when computing vector element at index '0'
4496// :129:30: error: use of undefined value here causes illegal behavior
4497// :129:30: note: when computing vector element at index '0'
4498// :129:30: error: use of undefined value here causes illegal behavior
4499// :129:30: note: when computing vector element at index '1'
4500// :129:30: error: use of undefined value here causes illegal behavior
4501// :129:30: note: when computing vector element at index '0'
4502// :129:30: error: use of undefined value here causes illegal behavior
4503// :129:30: note: when computing vector element at index '0'
4504// :133:27: error: use of undefined value here causes illegal behavior
4505// :133:27: error: use of undefined value here causes illegal behavior
4506// :133:27: note: when computing vector element at index '0'
4507// :133:27: error: use of undefined value here causes illegal behavior
4508// :133:27: note: when computing vector element at index '0'
4509// :133:27: error: use of undefined value here causes illegal behavior
4510// :133:27: note: when computing vector element at index '0'
4511// :133:27: error: use of undefined value here causes illegal behavior
4512// :133:27: note: when computing vector element at index '1'
4513// :133:27: error: use of undefined value here causes illegal behavior
4514// :133:27: note: when computing vector element at index '0'
4515// :133:27: error: use of undefined value here causes illegal behavior
4516// :133:27: note: when computing vector element at index '0'
4517// :133:27: error: use of undefined value here causes illegal behavior
4518// :133:27: note: when computing vector element at index '0'
4519// :133:27: error: use of undefined value here causes illegal behavior
4520// :133:27: error: use of undefined value here causes illegal behavior
4521// :133:27: note: when computing vector element at index '0'
4522// :133:27: error: use of undefined value here causes illegal behavior
4523// :133:27: note: when computing vector element at index '0'
4524// :133:27: error: use of undefined value here causes illegal behavior
4525// :133:27: note: when computing vector element at index '0'
4526// :133:27: error: use of undefined value here causes illegal behavior
4527// :133:27: note: when computing vector element at index '1'
4528// :133:27: error: use of undefined value here causes illegal behavior
4529// :133:27: note: when computing vector element at index '0'
4530// :133:27: error: use of undefined value here causes illegal behavior
4531// :133:27: note: when computing vector element at index '0'
4532// :133:27: error: use of undefined value here causes illegal behavior
4533// :133:27: note: when computing vector element at index '0'
4534// :133:27: error: use of undefined value here causes illegal behavior
4535// :133:27: error: use of undefined value here causes illegal behavior
4536// :133:27: note: when computing vector element at index '0'
4537// :133:27: error: use of undefined value here causes illegal behavior
4538// :133:27: note: when computing vector element at index '0'
4539// :133:27: error: use of undefined value here causes illegal behavior
4540// :133:27: note: when computing vector element at index '0'
4541// :133:27: error: use of undefined value here causes illegal behavior
4542// :133:27: note: when computing vector element at index '1'
4543// :133:27: error: use of undefined value here causes illegal behavior
4544// :133:27: note: when computing vector element at index '0'
4545// :133:27: error: use of undefined value here causes illegal behavior
4546// :133:27: note: when computing vector element at index '0'
4547// :133:27: error: use of undefined value here causes illegal behavior
4548// :133:27: note: when computing vector element at index '0'
4549// :133:27: error: use of undefined value here causes illegal behavior
4550// :133:27: error: use of undefined value here causes illegal behavior
4551// :133:27: note: when computing vector element at index '0'
4552// :133:27: error: use of undefined value here causes illegal behavior
4553// :133:27: note: when computing vector element at index '0'
4554// :133:27: error: use of undefined value here causes illegal behavior
4555// :133:27: note: when computing vector element at index '0'
4556// :133:27: error: use of undefined value here causes illegal behavior
4557// :133:27: note: when computing vector element at index '1'
4558// :133:27: error: use of undefined value here causes illegal behavior
4559// :133:27: note: when computing vector element at index '0'
4560// :133:27: error: use of undefined value here causes illegal behavior
4561// :133:27: note: when computing vector element at index '0'
4562// :133:27: error: use of undefined value here causes illegal behavior
4563// :133:27: note: when computing vector element at index '0'
4564// :133:27: error: use of undefined value here causes illegal behavior
4565// :133:27: error: use of undefined value here causes illegal behavior
4566// :133:27: note: when computing vector element at index '0'
4567// :133:27: error: use of undefined value here causes illegal behavior
4568// :133:27: note: when computing vector element at index '0'
4569// :133:27: error: use of undefined value here causes illegal behavior
4570// :133:27: note: when computing vector element at index '0'
4571// :133:27: error: use of undefined value here causes illegal behavior
4572// :133:27: note: when computing vector element at index '1'
4573// :133:27: error: use of undefined value here causes illegal behavior
4574// :133:27: note: when computing vector element at index '0'
4575// :133:27: error: use of undefined value here causes illegal behavior
4576// :133:27: note: when computing vector element at index '0'
4577// :133:27: error: use of undefined value here causes illegal behavior
4578// :133:27: note: when computing vector element at index '0'
4579// :133:27: error: use of undefined value here causes illegal behavior
4580// :133:27: error: use of undefined value here causes illegal behavior
4581// :133:27: note: when computing vector element at index '0'
4582// :133:27: error: use of undefined value here causes illegal behavior
4583// :133:27: note: when computing vector element at index '0'
4584// :133:27: error: use of undefined value here causes illegal behavior
4585// :133:27: note: when computing vector element at index '0'
4586// :133:27: error: use of undefined value here causes illegal behavior
4587// :133:27: note: when computing vector element at index '1'
4588// :133:27: error: use of undefined value here causes illegal behavior
4589// :133:27: note: when computing vector element at index '0'
4590// :133:27: error: use of undefined value here causes illegal behavior
4591// :133:27: note: when computing vector element at index '0'
4592// :133:27: error: use of undefined value here causes illegal behavior
4593// :133:27: note: when computing vector element at index '0'
4594// :133:27: error: use of undefined value here causes illegal behavior
4595// :133:27: error: use of undefined value here causes illegal behavior
4596// :133:27: note: when computing vector element at index '0'
4597// :133:27: error: use of undefined value here causes illegal behavior
4598// :133:27: note: when computing vector element at index '0'
4599// :133:27: error: use of undefined value here causes illegal behavior
4600// :133:27: note: when computing vector element at index '0'
4601// :133:27: error: use of undefined value here causes illegal behavior
4602// :133:27: note: when computing vector element at index '1'
4603// :133:27: error: use of undefined value here causes illegal behavior
4604// :133:27: note: when computing vector element at index '0'
4605// :133:27: error: use of undefined value here causes illegal behavior
4606// :133:27: note: when computing vector element at index '0'
4607// :133:27: error: use of undefined value here causes illegal behavior
4608// :133:27: note: when computing vector element at index '0'
4609// :133:27: error: use of undefined value here causes illegal behavior
4610// :133:27: error: use of undefined value here causes illegal behavior
4611// :133:27: note: when computing vector element at index '0'
4612// :133:27: error: use of undefined value here causes illegal behavior
4613// :133:27: note: when computing vector element at index '0'
4614// :133:27: error: use of undefined value here causes illegal behavior
4615// :133:27: note: when computing vector element at index '0'
4616// :133:27: error: use of undefined value here causes illegal behavior
4617// :133:27: note: when computing vector element at index '1'
4618// :133:27: error: use of undefined value here causes illegal behavior
4619// :133:27: note: when computing vector element at index '0'
4620// :133:27: error: use of undefined value here causes illegal behavior
4621// :133:27: note: when computing vector element at index '0'
4622// :133:27: error: use of undefined value here causes illegal behavior
4623// :133:27: note: when computing vector element at index '0'
4624// :133:27: error: use of undefined value here causes illegal behavior
4625// :133:27: error: use of undefined value here causes illegal behavior
4626// :133:27: note: when computing vector element at index '0'
4627// :133:27: error: use of undefined value here causes illegal behavior
4628// :133:27: note: when computing vector element at index '0'
4629// :133:27: error: use of undefined value here causes illegal behavior
4630// :133:27: note: when computing vector element at index '0'
4631// :133:27: error: use of undefined value here causes illegal behavior
4632// :133:27: note: when computing vector element at index '1'
4633// :133:27: error: use of undefined value here causes illegal behavior
4634// :133:27: note: when computing vector element at index '0'
4635// :133:27: error: use of undefined value here causes illegal behavior
4636// :133:27: note: when computing vector element at index '0'
4637// :133:27: error: use of undefined value here causes illegal behavior
4638// :133:27: note: when computing vector element at index '0'
4639// :133:27: error: use of undefined value here causes illegal behavior
4640// :133:27: error: use of undefined value here causes illegal behavior
4641// :133:27: note: when computing vector element at index '0'
4642// :133:27: error: use of undefined value here causes illegal behavior
4643// :133:27: note: when computing vector element at index '0'
4644// :133:27: error: use of undefined value here causes illegal behavior
4645// :133:27: note: when computing vector element at index '0'
4646// :133:27: error: use of undefined value here causes illegal behavior
4647// :133:27: note: when computing vector element at index '1'
4648// :133:27: error: use of undefined value here causes illegal behavior
4649// :133:27: note: when computing vector element at index '0'
4650// :133:27: error: use of undefined value here causes illegal behavior
4651// :133:27: note: when computing vector element at index '0'
4652// :133:27: error: use of undefined value here causes illegal behavior
4653// :133:27: note: when computing vector element at index '0'
4654// :133:27: error: use of undefined value here causes illegal behavior
4655// :133:27: error: use of undefined value here causes illegal behavior
4656// :133:27: note: when computing vector element at index '0'
4657// :133:27: error: use of undefined value here causes illegal behavior
4658// :133:27: note: when computing vector element at index '0'
4659// :133:27: error: use of undefined value here causes illegal behavior
4660// :133:27: note: when computing vector element at index '0'
4661// :133:27: error: use of undefined value here causes illegal behavior
4662// :133:27: note: when computing vector element at index '1'
4663// :133:27: error: use of undefined value here causes illegal behavior
4664// :133:27: note: when computing vector element at index '0'
4665// :133:27: error: use of undefined value here causes illegal behavior
4666// :133:27: note: when computing vector element at index '0'
4667// :133:27: error: use of undefined value here causes illegal behavior
4668// :133:27: note: when computing vector element at index '0'
4669// :133:30: error: use of undefined value here causes illegal behavior
4670// :133:30: error: use of undefined value here causes illegal behavior
4671// :133:30: note: when computing vector element at index '0'
4672// :133:30: error: use of undefined value here causes illegal behavior
4673// :133:30: note: when computing vector element at index '0'
4674// :133:30: error: use of undefined value here causes illegal behavior
4675// :133:30: note: when computing vector element at index '1'
4676// :133:30: error: use of undefined value here causes illegal behavior
4677// :133:30: note: when computing vector element at index '0'
4678// :133:30: error: use of undefined value here causes illegal behavior
4679// :133:30: note: when computing vector element at index '0'
4680// :133:30: error: use of undefined value here causes illegal behavior
4681// :133:30: error: use of undefined value here causes illegal behavior
4682// :133:30: note: when computing vector element at index '0'
4683// :133:30: error: use of undefined value here causes illegal behavior
4684// :133:30: note: when computing vector element at index '0'
4685// :133:30: error: use of undefined value here causes illegal behavior
4686// :133:30: note: when computing vector element at index '1'
4687// :133:30: error: use of undefined value here causes illegal behavior
4688// :133:30: note: when computing vector element at index '0'
4689// :133:30: error: use of undefined value here causes illegal behavior
4690// :133:30: note: when computing vector element at index '0'
4691// :133:30: error: use of undefined value here causes illegal behavior
4692// :133:30: error: use of undefined value here causes illegal behavior
4693// :133:30: note: when computing vector element at index '0'
4694// :133:30: error: use of undefined value here causes illegal behavior
4695// :133:30: note: when computing vector element at index '0'
4696// :133:30: error: use of undefined value here causes illegal behavior
4697// :133:30: note: when computing vector element at index '1'
4698// :133:30: error: use of undefined value here causes illegal behavior
4699// :133:30: note: when computing vector element at index '0'
4700// :133:30: error: use of undefined value here causes illegal behavior
4701// :133:30: note: when computing vector element at index '0'
4702// :133:30: error: use of undefined value here causes illegal behavior
4703// :133:30: error: use of undefined value here causes illegal behavior
4704// :133:30: note: when computing vector element at index '0'
4705// :133:30: error: use of undefined value here causes illegal behavior
4706// :133:30: note: when computing vector element at index '0'
4707// :133:30: error: use of undefined value here causes illegal behavior
4708// :133:30: note: when computing vector element at index '1'
4709// :133:30: error: use of undefined value here causes illegal behavior
4710// :133:30: note: when computing vector element at index '0'
4711// :133:30: error: use of undefined value here causes illegal behavior
4712// :133:30: note: when computing vector element at index '0'
4713// :133:30: error: use of undefined value here causes illegal behavior
4714// :133:30: error: use of undefined value here causes illegal behavior
4715// :133:30: note: when computing vector element at index '0'
4716// :133:30: error: use of undefined value here causes illegal behavior
4717// :133:30: note: when computing vector element at index '0'
4718// :133:30: error: use of undefined value here causes illegal behavior
4719// :133:30: note: when computing vector element at index '1'
4720// :133:30: error: use of undefined value here causes illegal behavior
4721// :133:30: note: when computing vector element at index '0'
4722// :133:30: error: use of undefined value here causes illegal behavior
4723// :133:30: note: when computing vector element at index '0'
4724// :133:30: error: use of undefined value here causes illegal behavior
4725// :133:30: error: use of undefined value here causes illegal behavior
4726// :133:30: note: when computing vector element at index '0'
4727// :133:30: error: use of undefined value here causes illegal behavior
4728// :133:30: note: when computing vector element at index '0'
4729// :133:30: error: use of undefined value here causes illegal behavior
4730// :133:30: note: when computing vector element at index '1'
4731// :133:30: error: use of undefined value here causes illegal behavior
4732// :133:30: note: when computing vector element at index '0'
4733// :133:30: error: use of undefined value here causes illegal behavior
4734// :133:30: note: when computing vector element at index '0'
4735// :133:30: error: use of undefined value here causes illegal behavior
4736// :133:30: error: use of undefined value here causes illegal behavior
4737// :133:30: note: when computing vector element at index '0'
4738// :133:30: error: use of undefined value here causes illegal behavior
4739// :133:30: note: when computing vector element at index '0'
4740// :133:30: error: use of undefined value here causes illegal behavior
4741// :133:30: note: when computing vector element at index '1'
4742// :133:30: error: use of undefined value here causes illegal behavior
4743// :133:30: note: when computing vector element at index '0'
4744// :133:30: error: use of undefined value here causes illegal behavior
4745// :133:30: note: when computing vector element at index '0'
4746// :133:30: error: use of undefined value here causes illegal behavior
4747// :133:30: error: use of undefined value here causes illegal behavior
4748// :133:30: note: when computing vector element at index '0'
4749// :133:30: error: use of undefined value here causes illegal behavior
4750// :133:30: note: when computing vector element at index '0'
4751// :133:30: error: use of undefined value here causes illegal behavior
4752// :133:30: note: when computing vector element at index '1'
4753// :133:30: error: use of undefined value here causes illegal behavior
4754// :133:30: note: when computing vector element at index '0'
4755// :133:30: error: use of undefined value here causes illegal behavior
4756// :133:30: note: when computing vector element at index '0'
4757// :133:30: error: use of undefined value here causes illegal behavior
4758// :133:30: error: use of undefined value here causes illegal behavior
4759// :133:30: note: when computing vector element at index '0'
4760// :133:30: error: use of undefined value here causes illegal behavior
4761// :133:30: note: when computing vector element at index '0'
4762// :133:30: error: use of undefined value here causes illegal behavior
4763// :133:30: note: when computing vector element at index '1'
4764// :133:30: error: use of undefined value here causes illegal behavior
4765// :133:30: note: when computing vector element at index '0'
4766// :133:30: error: use of undefined value here causes illegal behavior
4767// :133:30: note: when computing vector element at index '0'
4768// :133:30: error: use of undefined value here causes illegal behavior
4769// :133:30: error: use of undefined value here causes illegal behavior
4770// :133:30: note: when computing vector element at index '0'
4771// :133:30: error: use of undefined value here causes illegal behavior
4772// :133:30: note: when computing vector element at index '0'
4773// :133:30: error: use of undefined value here causes illegal behavior
4774// :133:30: note: when computing vector element at index '1'
4775// :133:30: error: use of undefined value here causes illegal behavior
4776// :133:30: note: when computing vector element at index '0'
4777// :133:30: error: use of undefined value here causes illegal behavior
4778// :133:30: note: when computing vector element at index '0'
4779// :133:30: error: use of undefined value here causes illegal behavior
4780// :133:30: error: use of undefined value here causes illegal behavior
4781// :133:30: note: when computing vector element at index '0'
4782// :133:30: error: use of undefined value here causes illegal behavior
4783// :133:30: note: when computing vector element at index '0'
4784// :133:30: error: use of undefined value here causes illegal behavior
4785// :133:30: note: when computing vector element at index '1'
4786// :133:30: error: use of undefined value here causes illegal behavior
4787// :133:30: note: when computing vector element at index '0'
4788// :133:30: error: use of undefined value here causes illegal behavior
4789// :133:30: note: when computing vector element at index '0'
4790// :137:17: error: use of undefined value here causes illegal behavior
4791// :137:17: error: use of undefined value here causes illegal behavior
4792// :137:17: note: when computing vector element at index '0'
4793// :137:17: error: use of undefined value here causes illegal behavior
4794// :137:17: note: when computing vector element at index '0'
4795// :137:17: error: use of undefined value here causes illegal behavior
4796// :137:17: note: when computing vector element at index '0'
4797// :137:17: error: use of undefined value here causes illegal behavior
4798// :137:17: note: when computing vector element at index '1'
4799// :137:17: error: use of undefined value here causes illegal behavior
4800// :137:17: note: when computing vector element at index '0'
4801// :137:17: error: use of undefined value here causes illegal behavior
4802// :137:17: note: when computing vector element at index '0'
4803// :137:17: error: use of undefined value here causes illegal behavior
4804// :137:17: note: when computing vector element at index '0'
4805// :137:17: error: use of undefined value here causes illegal behavior
4806// :137:17: error: use of undefined value here causes illegal behavior
4807// :137:17: note: when computing vector element at index '0'
4808// :137:17: error: use of undefined value here causes illegal behavior
4809// :137:17: note: when computing vector element at index '0'
4810// :137:17: error: use of undefined value here causes illegal behavior
4811// :137:17: note: when computing vector element at index '0'
4812// :137:17: error: use of undefined value here causes illegal behavior
4813// :137:17: note: when computing vector element at index '1'
4814// :137:17: error: use of undefined value here causes illegal behavior
4815// :137:17: note: when computing vector element at index '0'
4816// :137:17: error: use of undefined value here causes illegal behavior
4817// :137:17: note: when computing vector element at index '0'
4818// :137:17: error: use of undefined value here causes illegal behavior
4819// :137:17: note: when computing vector element at index '0'
4820// :137:17: error: use of undefined value here causes illegal behavior
4821// :137:17: error: use of undefined value here causes illegal behavior
4822// :137:17: note: when computing vector element at index '0'
4823// :137:17: error: use of undefined value here causes illegal behavior
4824// :137:17: note: when computing vector element at index '0'
4825// :137:17: error: use of undefined value here causes illegal behavior
4826// :137:17: note: when computing vector element at index '0'
4827// :137:17: error: use of undefined value here causes illegal behavior
4828// :137:17: note: when computing vector element at index '1'
4829// :137:17: error: use of undefined value here causes illegal behavior
4830// :137:17: note: when computing vector element at index '0'
4831// :137:17: error: use of undefined value here causes illegal behavior
4832// :137:17: note: when computing vector element at index '0'
4833// :137:17: error: use of undefined value here causes illegal behavior
4834// :137:17: note: when computing vector element at index '0'
4835// :137:17: error: use of undefined value here causes illegal behavior
4836// :137:17: error: use of undefined value here causes illegal behavior
4837// :137:17: note: when computing vector element at index '0'
4838// :137:17: error: use of undefined value here causes illegal behavior
4839// :137:17: note: when computing vector element at index '0'
4840// :137:17: error: use of undefined value here causes illegal behavior
4841// :137:17: note: when computing vector element at index '0'
4842// :137:17: error: use of undefined value here causes illegal behavior
4843// :137:17: note: when computing vector element at index '1'
4844// :137:17: error: use of undefined value here causes illegal behavior
4845// :137:17: note: when computing vector element at index '0'
4846// :137:17: error: use of undefined value here causes illegal behavior
4847// :137:17: note: when computing vector element at index '0'
4848// :137:17: error: use of undefined value here causes illegal behavior
4849// :137:17: note: when computing vector element at index '0'
4850// :137:17: error: use of undefined value here causes illegal behavior
4851// :137:17: error: use of undefined value here causes illegal behavior
4852// :137:17: note: when computing vector element at index '0'
4853// :137:17: error: use of undefined value here causes illegal behavior
4854// :137:17: note: when computing vector element at index '0'
4855// :137:17: error: use of undefined value here causes illegal behavior
4856// :137:17: note: when computing vector element at index '0'
4857// :137:17: error: use of undefined value here causes illegal behavior
4858// :137:17: note: when computing vector element at index '1'
4859// :137:17: error: use of undefined value here causes illegal behavior
4860// :137:17: note: when computing vector element at index '0'
4861// :137:17: error: use of undefined value here causes illegal behavior
4862// :137:17: note: when computing vector element at index '0'
4863// :137:17: error: use of undefined value here causes illegal behavior
4864// :137:17: note: when computing vector element at index '0'
4865// :137:17: error: use of undefined value here causes illegal behavior
4866// :137:17: error: use of undefined value here causes illegal behavior
4867// :137:17: note: when computing vector element at index '0'
4868// :137:17: error: use of undefined value here causes illegal behavior
4869// :137:17: note: when computing vector element at index '0'
4870// :137:17: error: use of undefined value here causes illegal behavior
4871// :137:17: note: when computing vector element at index '0'
4872// :137:17: error: use of undefined value here causes illegal behavior
4873// :137:17: note: when computing vector element at index '1'
4874// :137:17: error: use of undefined value here causes illegal behavior
4875// :137:17: note: when computing vector element at index '0'
4876// :137:17: error: use of undefined value here causes illegal behavior
4877// :137:17: note: when computing vector element at index '0'
4878// :137:17: error: use of undefined value here causes illegal behavior
4879// :137:17: note: when computing vector element at index '0'
4880// :137:17: error: use of undefined value here causes illegal behavior
4881// :137:17: error: use of undefined value here causes illegal behavior
4882// :137:17: note: when computing vector element at index '0'
4883// :137:17: error: use of undefined value here causes illegal behavior
4884// :137:17: note: when computing vector element at index '0'
4885// :137:17: error: use of undefined value here causes illegal behavior
4886// :137:17: note: when computing vector element at index '0'
4887// :137:17: error: use of undefined value here causes illegal behavior
4888// :137:17: note: when computing vector element at index '1'
4889// :137:17: error: use of undefined value here causes illegal behavior
4890// :137:17: note: when computing vector element at index '0'
4891// :137:17: error: use of undefined value here causes illegal behavior
4892// :137:17: note: when computing vector element at index '0'
4893// :137:17: error: use of undefined value here causes illegal behavior
4894// :137:17: note: when computing vector element at index '0'
4895// :137:17: error: use of undefined value here causes illegal behavior
4896// :137:17: error: use of undefined value here causes illegal behavior
4897// :137:17: note: when computing vector element at index '0'
4898// :137:17: error: use of undefined value here causes illegal behavior
4899// :137:17: note: when computing vector element at index '0'
4900// :137:17: error: use of undefined value here causes illegal behavior
4901// :137:17: note: when computing vector element at index '0'
4902// :137:17: error: use of undefined value here causes illegal behavior
4903// :137:17: note: when computing vector element at index '1'
4904// :137:17: error: use of undefined value here causes illegal behavior
4905// :137:17: note: when computing vector element at index '0'
4906// :137:17: error: use of undefined value here causes illegal behavior
4907// :137:17: note: when computing vector element at index '0'
4908// :137:17: error: use of undefined value here causes illegal behavior
4909// :137:17: note: when computing vector element at index '0'
4910// :137:17: error: use of undefined value here causes illegal behavior
4911// :137:17: error: use of undefined value here causes illegal behavior
4912// :137:17: note: when computing vector element at index '0'
4913// :137:17: error: use of undefined value here causes illegal behavior
4914// :137:17: note: when computing vector element at index '0'
4915// :137:17: error: use of undefined value here causes illegal behavior
4916// :137:17: note: when computing vector element at index '0'
4917// :137:17: error: use of undefined value here causes illegal behavior
4918// :137:17: note: when computing vector element at index '1'
4919// :137:17: error: use of undefined value here causes illegal behavior
4920// :137:17: note: when computing vector element at index '0'
4921// :137:17: error: use of undefined value here causes illegal behavior
4922// :137:17: note: when computing vector element at index '0'
4923// :137:17: error: use of undefined value here causes illegal behavior
4924// :137:17: note: when computing vector element at index '0'
4925// :137:17: error: use of undefined value here causes illegal behavior
4926// :137:17: error: use of undefined value here causes illegal behavior
4927// :137:17: note: when computing vector element at index '0'
4928// :137:17: error: use of undefined value here causes illegal behavior
4929// :137:17: note: when computing vector element at index '0'
4930// :137:17: error: use of undefined value here causes illegal behavior
4931// :137:17: note: when computing vector element at index '0'
4932// :137:17: error: use of undefined value here causes illegal behavior
4933// :137:17: note: when computing vector element at index '1'
4934// :137:17: error: use of undefined value here causes illegal behavior
4935// :137:17: note: when computing vector element at index '0'
4936// :137:17: error: use of undefined value here causes illegal behavior
4937// :137:17: note: when computing vector element at index '0'
4938// :137:17: error: use of undefined value here causes illegal behavior
4939// :137:17: note: when computing vector element at index '0'
4940// :137:17: error: use of undefined value here causes illegal behavior
4941// :137:17: error: use of undefined value here causes illegal behavior
4942// :137:17: note: when computing vector element at index '0'
4943// :137:17: error: use of undefined value here causes illegal behavior
4944// :137:17: note: when computing vector element at index '0'
4945// :137:17: error: use of undefined value here causes illegal behavior
4946// :137:17: note: when computing vector element at index '0'
4947// :137:17: error: use of undefined value here causes illegal behavior
4948// :137:17: note: when computing vector element at index '1'
4949// :137:17: error: use of undefined value here causes illegal behavior
4950// :137:17: note: when computing vector element at index '0'
4951// :137:17: error: use of undefined value here causes illegal behavior
4952// :137:17: note: when computing vector element at index '0'
4953// :137:17: error: use of undefined value here causes illegal behavior
4954// :137:17: note: when computing vector element at index '0'
4955// :137:21: error: use of undefined value here causes illegal behavior
4956// :137:21: error: use of undefined value here causes illegal behavior
4957// :137:21: note: when computing vector element at index '0'
4958// :137:21: error: use of undefined value here causes illegal behavior
4959// :137:21: note: when computing vector element at index '0'
4960// :137:21: error: use of undefined value here causes illegal behavior
4961// :137:21: note: when computing vector element at index '1'
4962// :137:21: error: use of undefined value here causes illegal behavior
4963// :137:21: note: when computing vector element at index '0'
4964// :137:21: error: use of undefined value here causes illegal behavior
4965// :137:21: note: when computing vector element at index '0'
4966// :137:21: error: use of undefined value here causes illegal behavior
4967// :137:21: error: use of undefined value here causes illegal behavior
4968// :137:21: note: when computing vector element at index '0'
4969// :137:21: error: use of undefined value here causes illegal behavior
4970// :137:21: note: when computing vector element at index '0'
4971// :137:21: error: use of undefined value here causes illegal behavior
4972// :137:21: note: when computing vector element at index '1'
4973// :137:21: error: use of undefined value here causes illegal behavior
4974// :137:21: note: when computing vector element at index '0'
4975// :137:21: error: use of undefined value here causes illegal behavior
4976// :137:21: note: when computing vector element at index '0'
4977// :137:21: error: use of undefined value here causes illegal behavior
4978// :137:21: error: use of undefined value here causes illegal behavior
4979// :137:21: note: when computing vector element at index '0'
4980// :137:21: error: use of undefined value here causes illegal behavior
4981// :137:21: note: when computing vector element at index '0'
4982// :137:21: error: use of undefined value here causes illegal behavior
4983// :137:21: note: when computing vector element at index '1'
4984// :137:21: error: use of undefined value here causes illegal behavior
4985// :137:21: note: when computing vector element at index '0'
4986// :137:21: error: use of undefined value here causes illegal behavior
4987// :137:21: note: when computing vector element at index '0'
4988// :137:21: error: use of undefined value here causes illegal behavior
4989// :137:21: error: use of undefined value here causes illegal behavior
4990// :137:21: note: when computing vector element at index '0'
4991// :137:21: error: use of undefined value here causes illegal behavior
4992// :137:21: note: when computing vector element at index '0'
4993// :137:21: error: use of undefined value here causes illegal behavior
4994// :137:21: note: when computing vector element at index '1'
4995// :137:21: error: use of undefined value here causes illegal behavior
4996// :137:21: note: when computing vector element at index '0'
4997// :137:21: error: use of undefined value here causes illegal behavior
4998// :137:21: note: when computing vector element at index '0'
4999// :137:21: error: use of undefined value here causes illegal behavior
5000// :137:21: error: use of undefined value here causes illegal behavior
5001// :137:21: note: when computing vector element at index '0'
5002// :137:21: error: use of undefined value here causes illegal behavior
5003// :137:21: note: when computing vector element at index '0'
5004// :137:21: error: use of undefined value here causes illegal behavior
5005// :137:21: note: when computing vector element at index '1'
5006// :137:21: error: use of undefined value here causes illegal behavior
5007// :137:21: note: when computing vector element at index '0'
5008// :137:21: error: use of undefined value here causes illegal behavior
5009// :137:21: note: when computing vector element at index '0'
5010// :137:21: error: use of undefined value here causes illegal behavior
5011// :137:21: error: use of undefined value here causes illegal behavior
5012// :137:21: note: when computing vector element at index '0'
5013// :137:21: error: use of undefined value here causes illegal behavior
5014// :137:21: note: when computing vector element at index '0'
5015// :137:21: error: use of undefined value here causes illegal behavior
5016// :137:21: note: when computing vector element at index '1'
5017// :137:21: error: use of undefined value here causes illegal behavior
5018// :137:21: note: when computing vector element at index '0'
5019// :137:21: error: use of undefined value here causes illegal behavior
5020// :137:21: note: when computing vector element at index '0'
5021// :137:21: error: use of undefined value here causes illegal behavior
5022// :137:21: error: use of undefined value here causes illegal behavior
5023// :137:21: note: when computing vector element at index '0'
5024// :137:21: error: use of undefined value here causes illegal behavior
5025// :137:21: note: when computing vector element at index '0'
5026// :137:21: error: use of undefined value here causes illegal behavior
5027// :137:21: note: when computing vector element at index '1'
5028// :137:21: error: use of undefined value here causes illegal behavior
5029// :137:21: note: when computing vector element at index '0'
5030// :137:21: error: use of undefined value here causes illegal behavior
5031// :137:21: note: when computing vector element at index '0'
5032// :137:21: error: use of undefined value here causes illegal behavior
5033// :137:21: error: use of undefined value here causes illegal behavior
5034// :137:21: note: when computing vector element at index '0'
5035// :137:21: error: use of undefined value here causes illegal behavior
5036// :137:21: note: when computing vector element at index '0'
5037// :137:21: error: use of undefined value here causes illegal behavior
5038// :137:21: note: when computing vector element at index '1'
5039// :137:21: error: use of undefined value here causes illegal behavior
5040// :137:21: note: when computing vector element at index '0'
5041// :137:21: error: use of undefined value here causes illegal behavior
5042// :137:21: note: when computing vector element at index '0'
5043// :137:21: error: use of undefined value here causes illegal behavior
5044// :137:21: error: use of undefined value here causes illegal behavior
5045// :137:21: note: when computing vector element at index '0'
5046// :137:21: error: use of undefined value here causes illegal behavior
5047// :137:21: note: when computing vector element at index '0'
5048// :137:21: error: use of undefined value here causes illegal behavior
5049// :137:21: note: when computing vector element at index '1'
5050// :137:21: error: use of undefined value here causes illegal behavior
5051// :137:21: note: when computing vector element at index '0'
5052// :137:21: error: use of undefined value here causes illegal behavior
5053// :137:21: note: when computing vector element at index '0'
5054// :137:21: error: use of undefined value here causes illegal behavior
5055// :137:21: error: use of undefined value here causes illegal behavior
5056// :137:21: note: when computing vector element at index '0'
5057// :137:21: error: use of undefined value here causes illegal behavior
5058// :137:21: note: when computing vector element at index '0'
5059// :137:21: error: use of undefined value here causes illegal behavior
5060// :137:21: note: when computing vector element at index '1'
5061// :137:21: error: use of undefined value here causes illegal behavior
5062// :137:21: note: when computing vector element at index '0'
5063// :137:21: error: use of undefined value here causes illegal behavior
5064// :137:21: note: when computing vector element at index '0'
5065// :137:21: error: use of undefined value here causes illegal behavior
5066// :137:21: error: use of undefined value here causes illegal behavior
5067// :137:21: note: when computing vector element at index '0'
5068// :137:21: error: use of undefined value here causes illegal behavior
5069// :137:21: note: when computing vector element at index '0'
5070// :137:21: error: use of undefined value here causes illegal behavior
5071// :137:21: note: when computing vector element at index '1'
5072// :137:21: error: use of undefined value here causes illegal behavior
5073// :137:21: note: when computing vector element at index '0'
5074// :137:21: error: use of undefined value here causes illegal behavior
5075// :137:21: note: when computing vector element at index '0'
5076// :141:22: error: use of undefined value here causes illegal behavior
5077// :141:22: error: use of undefined value here causes illegal behavior
5078// :141:22: note: when computing vector element at index '0'
5079// :141:22: error: use of undefined value here causes illegal behavior
5080// :141:22: note: when computing vector element at index '0'
5081// :141:22: error: use of undefined value here causes illegal behavior
5082// :141:22: note: when computing vector element at index '0'
5083// :141:22: error: use of undefined value here causes illegal behavior
5084// :141:22: note: when computing vector element at index '1'
5085// :141:22: error: use of undefined value here causes illegal behavior
5086// :141:22: note: when computing vector element at index '0'
5087// :141:22: error: use of undefined value here causes illegal behavior
5088// :141:22: note: when computing vector element at index '0'
5089// :141:22: error: use of undefined value here causes illegal behavior
5090// :141:22: note: when computing vector element at index '0'
5091// :141:22: error: use of undefined value here causes illegal behavior
5092// :141:22: error: use of undefined value here causes illegal behavior
5093// :141:22: note: when computing vector element at index '0'
5094// :141:22: error: use of undefined value here causes illegal behavior
5095// :141:22: note: when computing vector element at index '0'
5096// :141:22: error: use of undefined value here causes illegal behavior
5097// :141:22: note: when computing vector element at index '0'
5098// :141:22: error: use of undefined value here causes illegal behavior
5099// :141:22: note: when computing vector element at index '1'
5100// :141:22: error: use of undefined value here causes illegal behavior
5101// :141:22: note: when computing vector element at index '0'
5102// :141:22: error: use of undefined value here causes illegal behavior
5103// :141:22: note: when computing vector element at index '0'
5104// :141:22: error: use of undefined value here causes illegal behavior
5105// :141:22: note: when computing vector element at index '0'
5106// :141:22: error: use of undefined value here causes illegal behavior
5107// :141:22: error: use of undefined value here causes illegal behavior
5108// :141:22: note: when computing vector element at index '0'
5109// :141:22: error: use of undefined value here causes illegal behavior
5110// :141:22: note: when computing vector element at index '0'
5111// :141:22: error: use of undefined value here causes illegal behavior
5112// :141:22: note: when computing vector element at index '0'
5113// :141:22: error: use of undefined value here causes illegal behavior
5114// :141:22: note: when computing vector element at index '1'
5115// :141:22: error: use of undefined value here causes illegal behavior
5116// :141:22: note: when computing vector element at index '0'
5117// :141:22: error: use of undefined value here causes illegal behavior
5118// :141:22: note: when computing vector element at index '0'
5119// :141:22: error: use of undefined value here causes illegal behavior
5120// :141:22: note: when computing vector element at index '0'
5121// :141:22: error: use of undefined value here causes illegal behavior
5122// :141:22: error: use of undefined value here causes illegal behavior
5123// :141:22: note: when computing vector element at index '0'
5124// :141:22: error: use of undefined value here causes illegal behavior
5125// :141:22: note: when computing vector element at index '0'
5126// :141:22: error: use of undefined value here causes illegal behavior
5127// :141:22: note: when computing vector element at index '0'
5128// :141:22: error: use of undefined value here causes illegal behavior
5129// :141:22: note: when computing vector element at index '1'
5130// :141:22: error: use of undefined value here causes illegal behavior
5131// :141:22: note: when computing vector element at index '0'
5132// :141:22: error: use of undefined value here causes illegal behavior
5133// :141:22: note: when computing vector element at index '0'
5134// :141:22: error: use of undefined value here causes illegal behavior
5135// :141:22: note: when computing vector element at index '0'
5136// :141:22: error: use of undefined value here causes illegal behavior
5137// :141:22: error: use of undefined value here causes illegal behavior
5138// :141:22: note: when computing vector element at index '0'
5139// :141:22: error: use of undefined value here causes illegal behavior
5140// :141:22: note: when computing vector element at index '0'
5141// :141:22: error: use of undefined value here causes illegal behavior
5142// :141:22: note: when computing vector element at index '0'
5143// :141:22: error: use of undefined value here causes illegal behavior
5144// :141:22: note: when computing vector element at index '1'
5145// :141:22: error: use of undefined value here causes illegal behavior
5146// :141:22: note: when computing vector element at index '0'
5147// :141:22: error: use of undefined value here causes illegal behavior
5148// :141:22: note: when computing vector element at index '0'
5149// :141:22: error: use of undefined value here causes illegal behavior
5150// :141:22: note: when computing vector element at index '0'
5151// :141:22: error: use of undefined value here causes illegal behavior
5152// :141:22: error: use of undefined value here causes illegal behavior
5153// :141:22: note: when computing vector element at index '0'
5154// :141:22: error: use of undefined value here causes illegal behavior
5155// :141:22: note: when computing vector element at index '0'
5156// :141:22: error: use of undefined value here causes illegal behavior
5157// :141:22: note: when computing vector element at index '0'
5158// :141:22: error: use of undefined value here causes illegal behavior
5159// :141:22: note: when computing vector element at index '1'
5160// :141:22: error: use of undefined value here causes illegal behavior
5161// :141:22: note: when computing vector element at index '0'
5162// :141:22: error: use of undefined value here causes illegal behavior
5163// :141:22: note: when computing vector element at index '0'
5164// :141:22: error: use of undefined value here causes illegal behavior
5165// :141:22: note: when computing vector element at index '0'
5166// :141:22: error: use of undefined value here causes illegal behavior
5167// :141:22: error: use of undefined value here causes illegal behavior
5168// :141:22: note: when computing vector element at index '0'
5169// :141:22: error: use of undefined value here causes illegal behavior
5170// :141:22: note: when computing vector element at index '0'
5171// :141:22: error: use of undefined value here causes illegal behavior
5172// :141:22: note: when computing vector element at index '0'
5173// :141:22: error: use of undefined value here causes illegal behavior
5174// :141:22: note: when computing vector element at index '1'
5175// :141:22: error: use of undefined value here causes illegal behavior
5176// :141:22: note: when computing vector element at index '0'
5177// :141:22: error: use of undefined value here causes illegal behavior
5178// :141:22: note: when computing vector element at index '0'
5179// :141:22: error: use of undefined value here causes illegal behavior
5180// :141:22: note: when computing vector element at index '0'
5181// :141:22: error: use of undefined value here causes illegal behavior
5182// :141:22: error: use of undefined value here causes illegal behavior
5183// :141:22: note: when computing vector element at index '0'
5184// :141:22: error: use of undefined value here causes illegal behavior
5185// :141:22: note: when computing vector element at index '0'
5186// :141:22: error: use of undefined value here causes illegal behavior
5187// :141:22: note: when computing vector element at index '0'
5188// :141:22: error: use of undefined value here causes illegal behavior
5189// :141:22: note: when computing vector element at index '1'
5190// :141:22: error: use of undefined value here causes illegal behavior
5191// :141:22: note: when computing vector element at index '0'
5192// :141:22: error: use of undefined value here causes illegal behavior
5193// :141:22: note: when computing vector element at index '0'
5194// :141:22: error: use of undefined value here causes illegal behavior
5195// :141:22: note: when computing vector element at index '0'
5196// :141:22: error: use of undefined value here causes illegal behavior
5197// :141:22: error: use of undefined value here causes illegal behavior
5198// :141:22: note: when computing vector element at index '0'
5199// :141:22: error: use of undefined value here causes illegal behavior
5200// :141:22: note: when computing vector element at index '0'
5201// :141:22: error: use of undefined value here causes illegal behavior
5202// :141:22: note: when computing vector element at index '0'
5203// :141:22: error: use of undefined value here causes illegal behavior
5204// :141:22: note: when computing vector element at index '1'
5205// :141:22: error: use of undefined value here causes illegal behavior
5206// :141:22: note: when computing vector element at index '0'
5207// :141:22: error: use of undefined value here causes illegal behavior
5208// :141:22: note: when computing vector element at index '0'
5209// :141:22: error: use of undefined value here causes illegal behavior
5210// :141:22: note: when computing vector element at index '0'
5211// :141:22: error: use of undefined value here causes illegal behavior
5212// :141:22: error: use of undefined value here causes illegal behavior
5213// :141:22: note: when computing vector element at index '0'
5214// :141:22: error: use of undefined value here causes illegal behavior
5215// :141:22: note: when computing vector element at index '0'
5216// :141:22: error: use of undefined value here causes illegal behavior
5217// :141:22: note: when computing vector element at index '0'
5218// :141:22: error: use of undefined value here causes illegal behavior
5219// :141:22: note: when computing vector element at index '1'
5220// :141:22: error: use of undefined value here causes illegal behavior
5221// :141:22: note: when computing vector element at index '0'
5222// :141:22: error: use of undefined value here causes illegal behavior
5223// :141:22: note: when computing vector element at index '0'
5224// :141:22: error: use of undefined value here causes illegal behavior
5225// :141:22: note: when computing vector element at index '0'
5226// :141:22: error: use of undefined value here causes illegal behavior
5227// :141:22: error: use of undefined value here causes illegal behavior
5228// :141:22: note: when computing vector element at index '0'
5229// :141:22: error: use of undefined value here causes illegal behavior
5230// :141:22: note: when computing vector element at index '0'
5231// :141:22: error: use of undefined value here causes illegal behavior
5232// :141:22: note: when computing vector element at index '0'
5233// :141:22: error: use of undefined value here causes illegal behavior
5234// :141:22: note: when computing vector element at index '1'
5235// :141:22: error: use of undefined value here causes illegal behavior
5236// :141:22: note: when computing vector element at index '0'
5237// :141:22: error: use of undefined value here causes illegal behavior
5238// :141:22: note: when computing vector element at index '0'
5239// :141:22: error: use of undefined value here causes illegal behavior
5240// :141:22: note: when computing vector element at index '0'
5241// :141:25: error: use of undefined value here causes illegal behavior
5242// :141:25: error: use of undefined value here causes illegal behavior
5243// :141:25: note: when computing vector element at index '0'
5244// :141:25: error: use of undefined value here causes illegal behavior
5245// :141:25: note: when computing vector element at index '0'
5246// :141:25: error: use of undefined value here causes illegal behavior
5247// :141:25: note: when computing vector element at index '1'
5248// :141:25: error: use of undefined value here causes illegal behavior
5249// :141:25: note: when computing vector element at index '0'
5250// :141:25: error: use of undefined value here causes illegal behavior
5251// :141:25: note: when computing vector element at index '0'
5252// :141:25: error: use of undefined value here causes illegal behavior
5253// :141:25: error: use of undefined value here causes illegal behavior
5254// :141:25: note: when computing vector element at index '0'
5255// :141:25: error: use of undefined value here causes illegal behavior
5256// :141:25: note: when computing vector element at index '0'
5257// :141:25: error: use of undefined value here causes illegal behavior
5258// :141:25: note: when computing vector element at index '1'
5259// :141:25: error: use of undefined value here causes illegal behavior
5260// :141:25: note: when computing vector element at index '0'
5261// :141:25: error: use of undefined value here causes illegal behavior
5262// :141:25: note: when computing vector element at index '0'
5263// :141:25: error: use of undefined value here causes illegal behavior
5264// :141:25: error: use of undefined value here causes illegal behavior
5265// :141:25: note: when computing vector element at index '0'
5266// :141:25: error: use of undefined value here causes illegal behavior
5267// :141:25: note: when computing vector element at index '0'
5268// :141:25: error: use of undefined value here causes illegal behavior
5269// :141:25: note: when computing vector element at index '1'
5270// :141:25: error: use of undefined value here causes illegal behavior
5271// :141:25: note: when computing vector element at index '0'
5272// :141:25: error: use of undefined value here causes illegal behavior
5273// :141:25: note: when computing vector element at index '0'
5274// :141:25: error: use of undefined value here causes illegal behavior
5275// :141:25: error: use of undefined value here causes illegal behavior
5276// :141:25: note: when computing vector element at index '0'
5277// :141:25: error: use of undefined value here causes illegal behavior
5278// :141:25: note: when computing vector element at index '0'
5279// :141:25: error: use of undefined value here causes illegal behavior
5280// :141:25: note: when computing vector element at index '1'
5281// :141:25: error: use of undefined value here causes illegal behavior
5282// :141:25: note: when computing vector element at index '0'
5283// :141:25: error: use of undefined value here causes illegal behavior
5284// :141:25: note: when computing vector element at index '0'
5285// :141:25: error: use of undefined value here causes illegal behavior
5286// :141:25: error: use of undefined value here causes illegal behavior
5287// :141:25: note: when computing vector element at index '0'
5288// :141:25: error: use of undefined value here causes illegal behavior
5289// :141:25: note: when computing vector element at index '0'
5290// :141:25: error: use of undefined value here causes illegal behavior
5291// :141:25: note: when computing vector element at index '1'
5292// :141:25: error: use of undefined value here causes illegal behavior
5293// :141:25: note: when computing vector element at index '0'
5294// :141:25: error: use of undefined value here causes illegal behavior
5295// :141:25: note: when computing vector element at index '0'
5296// :141:25: error: use of undefined value here causes illegal behavior
5297// :141:25: error: use of undefined value here causes illegal behavior
5298// :141:25: note: when computing vector element at index '0'
5299// :141:25: error: use of undefined value here causes illegal behavior
5300// :141:25: note: when computing vector element at index '0'
5301// :141:25: error: use of undefined value here causes illegal behavior
5302// :141:25: note: when computing vector element at index '1'
5303// :141:25: error: use of undefined value here causes illegal behavior
5304// :141:25: note: when computing vector element at index '0'
5305// :141:25: error: use of undefined value here causes illegal behavior
5306// :141:25: note: when computing vector element at index '0'
5307// :141:25: error: use of undefined value here causes illegal behavior
5308// :141:25: error: use of undefined value here causes illegal behavior
5309// :141:25: note: when computing vector element at index '0'
5310// :141:25: error: use of undefined value here causes illegal behavior
5311// :141:25: note: when computing vector element at index '0'
5312// :141:25: error: use of undefined value here causes illegal behavior
5313// :141:25: note: when computing vector element at index '1'
5314// :141:25: error: use of undefined value here causes illegal behavior
5315// :141:25: note: when computing vector element at index '0'
5316// :141:25: error: use of undefined value here causes illegal behavior
5317// :141:25: note: when computing vector element at index '0'
5318// :141:25: error: use of undefined value here causes illegal behavior
5319// :141:25: error: use of undefined value here causes illegal behavior
5320// :141:25: note: when computing vector element at index '0'
5321// :141:25: error: use of undefined value here causes illegal behavior
5322// :141:25: note: when computing vector element at index '0'
5323// :141:25: error: use of undefined value here causes illegal behavior
5324// :141:25: note: when computing vector element at index '1'
5325// :141:25: error: use of undefined value here causes illegal behavior
5326// :141:25: note: when computing vector element at index '0'
5327// :141:25: error: use of undefined value here causes illegal behavior
5328// :141:25: note: when computing vector element at index '0'
5329// :141:25: error: use of undefined value here causes illegal behavior
5330// :141:25: error: use of undefined value here causes illegal behavior
5331// :141:25: note: when computing vector element at index '0'
5332// :141:25: error: use of undefined value here causes illegal behavior
5333// :141:25: note: when computing vector element at index '0'
5334// :141:25: error: use of undefined value here causes illegal behavior
5335// :141:25: note: when computing vector element at index '1'
5336// :141:25: error: use of undefined value here causes illegal behavior
5337// :141:25: note: when computing vector element at index '0'
5338// :141:25: error: use of undefined value here causes illegal behavior
5339// :141:25: note: when computing vector element at index '0'
5340// :141:25: error: use of undefined value here causes illegal behavior
5341// :141:25: error: use of undefined value here causes illegal behavior
5342// :141:25: note: when computing vector element at index '0'
5343// :141:25: error: use of undefined value here causes illegal behavior
5344// :141:25: note: when computing vector element at index '0'
5345// :141:25: error: use of undefined value here causes illegal behavior
5346// :141:25: note: when computing vector element at index '1'
5347// :141:25: error: use of undefined value here causes illegal behavior
5348// :141:25: note: when computing vector element at index '0'
5349// :141:25: error: use of undefined value here causes illegal behavior
5350// :141:25: note: when computing vector element at index '0'
5351// :141:25: error: use of undefined value here causes illegal behavior
5352// :141:25: error: use of undefined value here causes illegal behavior
5353// :141:25: note: when computing vector element at index '0'
5354// :141:25: error: use of undefined value here causes illegal behavior
5355// :141:25: note: when computing vector element at index '0'
5356// :141:25: error: use of undefined value here causes illegal behavior
5357// :141:25: note: when computing vector element at index '1'
5358// :141:25: error: use of undefined value here causes illegal behavior
5359// :141:25: note: when computing vector element at index '0'
5360// :141:25: error: use of undefined value here causes illegal behavior
5361// :141:25: note: when computing vector element at index '0'
5362// :145:22: error: use of undefined value here causes illegal behavior
5363// :145:22: error: use of undefined value here causes illegal behavior
5364// :145:22: note: when computing vector element at index '0'
5365// :145:22: error: use of undefined value here causes illegal behavior
5366// :145:22: note: when computing vector element at index '0'
5367// :145:22: error: use of undefined value here causes illegal behavior
5368// :145:22: note: when computing vector element at index '0'
5369// :145:22: error: use of undefined value here causes illegal behavior
5370// :145:22: note: when computing vector element at index '1'
5371// :145:22: error: use of undefined value here causes illegal behavior
5372// :145:22: note: when computing vector element at index '0'
5373// :145:22: error: use of undefined value here causes illegal behavior
5374// :145:22: note: when computing vector element at index '0'
5375// :145:22: error: use of undefined value here causes illegal behavior
5376// :145:22: note: when computing vector element at index '0'
5377// :145:22: error: use of undefined value here causes illegal behavior
5378// :145:22: error: use of undefined value here causes illegal behavior
5379// :145:22: note: when computing vector element at index '0'
5380// :145:22: error: use of undefined value here causes illegal behavior
5381// :145:22: note: when computing vector element at index '0'
5382// :145:22: error: use of undefined value here causes illegal behavior
5383// :145:22: note: when computing vector element at index '0'
5384// :145:22: error: use of undefined value here causes illegal behavior
5385// :145:22: note: when computing vector element at index '1'
5386// :145:22: error: use of undefined value here causes illegal behavior
5387// :145:22: note: when computing vector element at index '0'
5388// :145:22: error: use of undefined value here causes illegal behavior
5389// :145:22: note: when computing vector element at index '0'
5390// :145:22: error: use of undefined value here causes illegal behavior
5391// :145:22: note: when computing vector element at index '0'
5392// :145:22: error: use of undefined value here causes illegal behavior
5393// :145:22: error: use of undefined value here causes illegal behavior
5394// :145:22: note: when computing vector element at index '0'
5395// :145:22: error: use of undefined value here causes illegal behavior
5396// :145:22: note: when computing vector element at index '0'
5397// :145:22: error: use of undefined value here causes illegal behavior
5398// :145:22: note: when computing vector element at index '0'
5399// :145:22: error: use of undefined value here causes illegal behavior
5400// :145:22: note: when computing vector element at index '1'
5401// :145:22: error: use of undefined value here causes illegal behavior
5402// :145:22: note: when computing vector element at index '0'
5403// :145:22: error: use of undefined value here causes illegal behavior
5404// :145:22: note: when computing vector element at index '0'
5405// :145:22: error: use of undefined value here causes illegal behavior
5406// :145:22: note: when computing vector element at index '0'
5407// :145:22: error: use of undefined value here causes illegal behavior
5408// :145:22: error: use of undefined value here causes illegal behavior
5409// :145:22: note: when computing vector element at index '0'
5410// :145:22: error: use of undefined value here causes illegal behavior
5411// :145:22: note: when computing vector element at index '0'
5412// :145:22: error: use of undefined value here causes illegal behavior
5413// :145:22: note: when computing vector element at index '0'
5414// :145:22: error: use of undefined value here causes illegal behavior
5415// :145:22: note: when computing vector element at index '1'
5416// :145:22: error: use of undefined value here causes illegal behavior
5417// :145:22: note: when computing vector element at index '0'
5418// :145:22: error: use of undefined value here causes illegal behavior
5419// :145:22: note: when computing vector element at index '0'
5420// :145:22: error: use of undefined value here causes illegal behavior
5421// :145:22: note: when computing vector element at index '0'
5422// :145:22: error: use of undefined value here causes illegal behavior
5423// :145:22: error: use of undefined value here causes illegal behavior
5424// :145:22: note: when computing vector element at index '0'
5425// :145:22: error: use of undefined value here causes illegal behavior
5426// :145:22: note: when computing vector element at index '0'
5427// :145:22: error: use of undefined value here causes illegal behavior
5428// :145:22: note: when computing vector element at index '0'
5429// :145:22: error: use of undefined value here causes illegal behavior
5430// :145:22: note: when computing vector element at index '1'
5431// :145:22: error: use of undefined value here causes illegal behavior
5432// :145:22: note: when computing vector element at index '0'
5433// :145:22: error: use of undefined value here causes illegal behavior
5434// :145:22: note: when computing vector element at index '0'
5435// :145:22: error: use of undefined value here causes illegal behavior
5436// :145:22: note: when computing vector element at index '0'
5437// :145:22: error: use of undefined value here causes illegal behavior
5438// :145:22: error: use of undefined value here causes illegal behavior
5439// :145:22: note: when computing vector element at index '0'
5440// :145:22: error: use of undefined value here causes illegal behavior
5441// :145:22: note: when computing vector element at index '0'
5442// :145:22: error: use of undefined value here causes illegal behavior
5443// :145:22: note: when computing vector element at index '0'
5444// :145:22: error: use of undefined value here causes illegal behavior
5445// :145:22: note: when computing vector element at index '1'
5446// :145:22: error: use of undefined value here causes illegal behavior
5447// :145:22: note: when computing vector element at index '0'
5448// :145:22: error: use of undefined value here causes illegal behavior
5449// :145:22: note: when computing vector element at index '0'
5450// :145:22: error: use of undefined value here causes illegal behavior
5451// :145:22: note: when computing vector element at index '0'
5452// :145:22: error: use of undefined value here causes illegal behavior
5453// :145:22: error: use of undefined value here causes illegal behavior
5454// :145:22: note: when computing vector element at index '0'
5455// :145:22: error: use of undefined value here causes illegal behavior
5456// :145:22: note: when computing vector element at index '0'
5457// :145:22: error: use of undefined value here causes illegal behavior
5458// :145:22: note: when computing vector element at index '0'
5459// :145:22: error: use of undefined value here causes illegal behavior
5460// :145:22: note: when computing vector element at index '1'
5461// :145:22: error: use of undefined value here causes illegal behavior
5462// :145:22: note: when computing vector element at index '0'
5463// :145:22: error: use of undefined value here causes illegal behavior
5464// :145:22: note: when computing vector element at index '0'
5465// :145:22: error: use of undefined value here causes illegal behavior
5466// :145:22: note: when computing vector element at index '0'
5467// :145:22: error: use of undefined value here causes illegal behavior
5468// :145:22: error: use of undefined value here causes illegal behavior
5469// :145:22: note: when computing vector element at index '0'
5470// :145:22: error: use of undefined value here causes illegal behavior
5471// :145:22: note: when computing vector element at index '0'
5472// :145:22: error: use of undefined value here causes illegal behavior
5473// :145:22: note: when computing vector element at index '0'
5474// :145:22: error: use of undefined value here causes illegal behavior
5475// :145:22: note: when computing vector element at index '1'
5476// :145:22: error: use of undefined value here causes illegal behavior
5477// :145:22: note: when computing vector element at index '0'
5478// :145:22: error: use of undefined value here causes illegal behavior
5479// :145:22: note: when computing vector element at index '0'
5480// :145:22: error: use of undefined value here causes illegal behavior
5481// :145:22: note: when computing vector element at index '0'
5482// :145:22: error: use of undefined value here causes illegal behavior
5483// :145:22: error: use of undefined value here causes illegal behavior
5484// :145:22: note: when computing vector element at index '0'
5485// :145:22: error: use of undefined value here causes illegal behavior
5486// :145:22: note: when computing vector element at index '0'
5487// :145:22: error: use of undefined value here causes illegal behavior
5488// :145:22: note: when computing vector element at index '0'
5489// :145:22: error: use of undefined value here causes illegal behavior
5490// :145:22: note: when computing vector element at index '1'
5491// :145:22: error: use of undefined value here causes illegal behavior
5492// :145:22: note: when computing vector element at index '0'
5493// :145:22: error: use of undefined value here causes illegal behavior
5494// :145:22: note: when computing vector element at index '0'
5495// :145:22: error: use of undefined value here causes illegal behavior
5496// :145:22: note: when computing vector element at index '0'
5497// :145:22: error: use of undefined value here causes illegal behavior
5498// :145:22: error: use of undefined value here causes illegal behavior
5499// :145:22: note: when computing vector element at index '0'
5500// :145:22: error: use of undefined value here causes illegal behavior
5501// :145:22: note: when computing vector element at index '0'
5502// :145:22: error: use of undefined value here causes illegal behavior
5503// :145:22: note: when computing vector element at index '0'
5504// :145:22: error: use of undefined value here causes illegal behavior
5505// :145:22: note: when computing vector element at index '1'
5506// :145:22: error: use of undefined value here causes illegal behavior
5507// :145:22: note: when computing vector element at index '0'
5508// :145:22: error: use of undefined value here causes illegal behavior
5509// :145:22: note: when computing vector element at index '0'
5510// :145:22: error: use of undefined value here causes illegal behavior
5511// :145:22: note: when computing vector element at index '0'
5512// :145:22: error: use of undefined value here causes illegal behavior
5513// :145:22: error: use of undefined value here causes illegal behavior
5514// :145:22: note: when computing vector element at index '0'
5515// :145:22: error: use of undefined value here causes illegal behavior
5516// :145:22: note: when computing vector element at index '0'
5517// :145:22: error: use of undefined value here causes illegal behavior
5518// :145:22: note: when computing vector element at index '0'
5519// :145:22: error: use of undefined value here causes illegal behavior
5520// :145:22: note: when computing vector element at index '1'
5521// :145:22: error: use of undefined value here causes illegal behavior
5522// :145:22: note: when computing vector element at index '0'
5523// :145:22: error: use of undefined value here causes illegal behavior
5524// :145:22: note: when computing vector element at index '0'
5525// :145:22: error: use of undefined value here causes illegal behavior
5526// :145:22: note: when computing vector element at index '0'
5527// :145:25: error: use of undefined value here causes illegal behavior
5528// :145:25: error: use of undefined value here causes illegal behavior
5529// :145:25: note: when computing vector element at index '0'
5530// :145:25: error: use of undefined value here causes illegal behavior
5531// :145:25: note: when computing vector element at index '0'
5532// :145:25: error: use of undefined value here causes illegal behavior
5533// :145:25: note: when computing vector element at index '1'
5534// :145:25: error: use of undefined value here causes illegal behavior
5535// :145:25: note: when computing vector element at index '0'
5536// :145:25: error: use of undefined value here causes illegal behavior
5537// :145:25: note: when computing vector element at index '0'
5538// :145:25: error: use of undefined value here causes illegal behavior
5539// :145:25: error: use of undefined value here causes illegal behavior
5540// :145:25: note: when computing vector element at index '0'
5541// :145:25: error: use of undefined value here causes illegal behavior
5542// :145:25: note: when computing vector element at index '0'
5543// :145:25: error: use of undefined value here causes illegal behavior
5544// :145:25: note: when computing vector element at index '1'
5545// :145:25: error: use of undefined value here causes illegal behavior
5546// :145:25: note: when computing vector element at index '0'
5547// :145:25: error: use of undefined value here causes illegal behavior
5548// :145:25: note: when computing vector element at index '0'
5549// :145:25: error: use of undefined value here causes illegal behavior
5550// :145:25: error: use of undefined value here causes illegal behavior
5551// :145:25: note: when computing vector element at index '0'
5552// :145:25: error: use of undefined value here causes illegal behavior
5553// :145:25: note: when computing vector element at index '0'
5554// :145:25: error: use of undefined value here causes illegal behavior
5555// :145:25: note: when computing vector element at index '1'
5556// :145:25: error: use of undefined value here causes illegal behavior
5557// :145:25: note: when computing vector element at index '0'
5558// :145:25: error: use of undefined value here causes illegal behavior
5559// :145:25: note: when computing vector element at index '0'
5560// :145:25: error: use of undefined value here causes illegal behavior
5561// :145:25: error: use of undefined value here causes illegal behavior
5562// :145:25: note: when computing vector element at index '0'
5563// :145:25: error: use of undefined value here causes illegal behavior
5564// :145:25: note: when computing vector element at index '0'
5565// :145:25: error: use of undefined value here causes illegal behavior
5566// :145:25: note: when computing vector element at index '1'
5567// :145:25: error: use of undefined value here causes illegal behavior
5568// :145:25: note: when computing vector element at index '0'
5569// :145:25: error: use of undefined value here causes illegal behavior
5570// :145:25: note: when computing vector element at index '0'
5571// :145:25: error: use of undefined value here causes illegal behavior
5572// :145:25: error: use of undefined value here causes illegal behavior
5573// :145:25: note: when computing vector element at index '0'
5574// :145:25: error: use of undefined value here causes illegal behavior
5575// :145:25: note: when computing vector element at index '0'
5576// :145:25: error: use of undefined value here causes illegal behavior
5577// :145:25: note: when computing vector element at index '1'
5578// :145:25: error: use of undefined value here causes illegal behavior
5579// :145:25: note: when computing vector element at index '0'
5580// :145:25: error: use of undefined value here causes illegal behavior
5581// :145:25: note: when computing vector element at index '0'
5582// :145:25: error: use of undefined value here causes illegal behavior
5583// :145:25: error: use of undefined value here causes illegal behavior
5584// :145:25: note: when computing vector element at index '0'
5585// :145:25: error: use of undefined value here causes illegal behavior
5586// :145:25: note: when computing vector element at index '0'
5587// :145:25: error: use of undefined value here causes illegal behavior
5588// :145:25: note: when computing vector element at index '1'
5589// :145:25: error: use of undefined value here causes illegal behavior
5590// :145:25: note: when computing vector element at index '0'
5591// :145:25: error: use of undefined value here causes illegal behavior
5592// :145:25: note: when computing vector element at index '0'
5593// :145:25: error: use of undefined value here causes illegal behavior
5594// :145:25: error: use of undefined value here causes illegal behavior
5595// :145:25: note: when computing vector element at index '0'
5596// :145:25: error: use of undefined value here causes illegal behavior
5597// :145:25: note: when computing vector element at index '0'
5598// :145:25: error: use of undefined value here causes illegal behavior
5599// :145:25: note: when computing vector element at index '1'
5600// :145:25: error: use of undefined value here causes illegal behavior
5601// :145:25: note: when computing vector element at index '0'
5602// :145:25: error: use of undefined value here causes illegal behavior
5603// :145:25: note: when computing vector element at index '0'
5604// :145:25: error: use of undefined value here causes illegal behavior
5605// :145:25: error: use of undefined value here causes illegal behavior
5606// :145:25: note: when computing vector element at index '0'
5607// :145:25: error: use of undefined value here causes illegal behavior
5608// :145:25: note: when computing vector element at index '0'
5609// :145:25: error: use of undefined value here causes illegal behavior
5610// :145:25: note: when computing vector element at index '1'
5611// :145:25: error: use of undefined value here causes illegal behavior
5612// :145:25: note: when computing vector element at index '0'
5613// :145:25: error: use of undefined value here causes illegal behavior
5614// :145:25: note: when computing vector element at index '0'
5615// :145:25: error: use of undefined value here causes illegal behavior
5616// :145:25: error: use of undefined value here causes illegal behavior
5617// :145:25: note: when computing vector element at index '0'
5618// :145:25: error: use of undefined value here causes illegal behavior
5619// :145:25: note: when computing vector element at index '0'
5620// :145:25: error: use of undefined value here causes illegal behavior
5621// :145:25: note: when computing vector element at index '1'
5622// :145:25: error: use of undefined value here causes illegal behavior
5623// :145:25: note: when computing vector element at index '0'
5624// :145:25: error: use of undefined value here causes illegal behavior
5625// :145:25: note: when computing vector element at index '0'
5626// :145:25: error: use of undefined value here causes illegal behavior
5627// :145:25: error: use of undefined value here causes illegal behavior
5628// :145:25: note: when computing vector element at index '0'
5629// :145:25: error: use of undefined value here causes illegal behavior
5630// :145:25: note: when computing vector element at index '0'
5631// :145:25: error: use of undefined value here causes illegal behavior
5632// :145:25: note: when computing vector element at index '1'
5633// :145:25: error: use of undefined value here causes illegal behavior
5634// :145:25: note: when computing vector element at index '0'
5635// :145:25: error: use of undefined value here causes illegal behavior
5636// :145:25: note: when computing vector element at index '0'
5637// :145:25: error: use of undefined value here causes illegal behavior
5638// :145:25: error: use of undefined value here causes illegal behavior
5639// :145:25: note: when computing vector element at index '0'
5640// :145:25: error: use of undefined value here causes illegal behavior
5641// :145:25: note: when computing vector element at index '0'
5642// :145:25: error: use of undefined value here causes illegal behavior
5643// :145:25: note: when computing vector element at index '1'
5644// :145:25: error: use of undefined value here causes illegal behavior
5645// :145:25: note: when computing vector element at index '0'
5646// :145:25: error: use of undefined value here causes illegal behavior
5647// :145:25: note: when computing vector element at index '0'
5648// :151:21: error: use of undefined value here causes illegal behavior
5649// :151:21: error: use of undefined value here causes illegal behavior
5650// :151:21: error: use of undefined value here causes illegal behavior
5651// :151:21: error: use of undefined value here causes illegal behavior
5652// :151:21: error: use of undefined value here causes illegal behavior
5653// :151:21: error: use of undefined value here causes illegal behavior
5654// :151:21: error: use of undefined value here causes illegal behavior
5655// :151:21: note: when computing vector element at index '1'
5656// :151:21: error: use of undefined value here causes illegal behavior
5657// :151:21: note: when computing vector element at index '1'
5658// :151:21: error: use of undefined value here causes illegal behavior
5659// :151:21: note: when computing vector element at index '1'
5660// :151:21: error: use of undefined value here causes illegal behavior
5661// :151:21: note: when computing vector element at index '1'
5662// :151:21: error: use of undefined value here causes illegal behavior
5663// :151:21: note: when computing vector element at index '0'
5664// :151:21: error: use of undefined value here causes illegal behavior
5665// :151:21: note: when computing vector element at index '0'
5666// :151:21: error: use of undefined value here causes illegal behavior
5667// :151:21: note: when computing vector element at index '0'
5668// :151:21: error: use of undefined value here causes illegal behavior
5669// :151:21: note: when computing vector element at index '0'
5670// :151:21: error: use of undefined value here causes illegal behavior
5671// :151:21: error: use of undefined value here causes illegal behavior
5672// :151:21: error: use of undefined value here causes illegal behavior
5673// :151:21: error: use of undefined value here causes illegal behavior
5674// :151:21: error: use of undefined value here causes illegal behavior
5675// :151:21: error: use of undefined value here causes illegal behavior
5676// :151:21: error: use of undefined value here causes illegal behavior
5677// :151:21: note: when computing vector element at index '1'
5678// :151:21: error: use of undefined value here causes illegal behavior
5679// :151:21: note: when computing vector element at index '1'
5680// :151:21: error: use of undefined value here causes illegal behavior
5681// :151:21: note: when computing vector element at index '1'
5682// :151:21: error: use of undefined value here causes illegal behavior
5683// :151:21: note: when computing vector element at index '1'
5684// :151:21: error: use of undefined value here causes illegal behavior
5685// :151:21: note: when computing vector element at index '0'
5686// :151:21: error: use of undefined value here causes illegal behavior
5687// :151:21: note: when computing vector element at index '0'
5688// :151:21: error: use of undefined value here causes illegal behavior
5689// :151:21: note: when computing vector element at index '0'
5690// :151:21: error: use of undefined value here causes illegal behavior
5691// :151:21: note: when computing vector element at index '0'
5692// :151:21: error: use of undefined value here causes illegal behavior
5693// :151:21: error: use of undefined value here causes illegal behavior
5694// :151:21: error: use of undefined value here causes illegal behavior
5695// :151:21: error: use of undefined value here causes illegal behavior
5696// :151:21: error: use of undefined value here causes illegal behavior
5697// :151:21: error: use of undefined value here causes illegal behavior
5698// :151:21: error: use of undefined value here causes illegal behavior
5699// :151:21: note: when computing vector element at index '1'
5700// :151:21: error: use of undefined value here causes illegal behavior
5701// :151:21: note: when computing vector element at index '1'
5702// :151:21: error: use of undefined value here causes illegal behavior
5703// :151:21: note: when computing vector element at index '1'
5704// :151:21: error: use of undefined value here causes illegal behavior
5705// :151:21: note: when computing vector element at index '1'
5706// :151:21: error: use of undefined value here causes illegal behavior
5707// :151:21: note: when computing vector element at index '0'
5708// :151:21: error: use of undefined value here causes illegal behavior
5709// :151:21: note: when computing vector element at index '0'
5710// :151:21: error: use of undefined value here causes illegal behavior
5711// :151:21: note: when computing vector element at index '0'
5712// :151:21: error: use of undefined value here causes illegal behavior
5713// :151:21: note: when computing vector element at index '0'
5714// :151:21: error: use of undefined value here causes illegal behavior
5715// :151:21: error: use of undefined value here causes illegal behavior
5716// :151:21: error: use of undefined value here causes illegal behavior
5717// :151:21: error: use of undefined value here causes illegal behavior
5718// :151:21: error: use of undefined value here causes illegal behavior
5719// :151:21: error: use of undefined value here causes illegal behavior
5720// :151:21: error: use of undefined value here causes illegal behavior
5721// :151:21: note: when computing vector element at index '1'
5722// :151:21: error: use of undefined value here causes illegal behavior
5723// :151:21: note: when computing vector element at index '1'
5724// :151:21: error: use of undefined value here causes illegal behavior
5725// :151:21: note: when computing vector element at index '1'
5726// :151:21: error: use of undefined value here causes illegal behavior
5727// :151:21: note: when computing vector element at index '1'
5728// :151:21: error: use of undefined value here causes illegal behavior
5729// :151:21: note: when computing vector element at index '0'
5730// :151:21: error: use of undefined value here causes illegal behavior
5731// :151:21: note: when computing vector element at index '0'
5732// :151:21: error: use of undefined value here causes illegal behavior
5733// :151:21: note: when computing vector element at index '0'
5734// :151:21: error: use of undefined value here causes illegal behavior
5735// :151:21: note: when computing vector element at index '0'
5736// :151:21: error: use of undefined value here causes illegal behavior
5737// :151:21: error: use of undefined value here causes illegal behavior
5738// :151:21: error: use of undefined value here causes illegal behavior
5739// :151:21: error: use of undefined value here causes illegal behavior
5740// :151:21: error: use of undefined value here causes illegal behavior
5741// :151:21: error: use of undefined value here causes illegal behavior
5742// :151:21: error: use of undefined value here causes illegal behavior
5743// :151:21: note: when computing vector element at index '1'
5744// :151:21: error: use of undefined value here causes illegal behavior
5745// :151:21: note: when computing vector element at index '1'
5746// :151:21: error: use of undefined value here causes illegal behavior
5747// :151:21: note: when computing vector element at index '1'
5748// :151:21: error: use of undefined value here causes illegal behavior
5749// :151:21: note: when computing vector element at index '1'
5750// :151:21: error: use of undefined value here causes illegal behavior
5751// :151:21: note: when computing vector element at index '0'
5752// :151:21: error: use of undefined value here causes illegal behavior
5753// :151:21: note: when computing vector element at index '0'
5754// :151:21: error: use of undefined value here causes illegal behavior
5755// :151:21: note: when computing vector element at index '0'
5756// :151:21: error: use of undefined value here causes illegal behavior
5757// :151:21: note: when computing vector element at index '0'
5758// :151:21: error: use of undefined value here causes illegal behavior
5759// :151:21: error: use of undefined value here causes illegal behavior
5760// :151:21: error: use of undefined value here causes illegal behavior
5761// :151:21: error: use of undefined value here causes illegal behavior
5762// :151:21: error: use of undefined value here causes illegal behavior
5763// :151:21: error: use of undefined value here causes illegal behavior
5764// :151:21: error: use of undefined value here causes illegal behavior
5765// :151:21: note: when computing vector element at index '1'
5766// :151:21: error: use of undefined value here causes illegal behavior
5767// :151:21: note: when computing vector element at index '1'
5768// :151:21: error: use of undefined value here causes illegal behavior
5769// :151:21: note: when computing vector element at index '1'
5770// :151:21: error: use of undefined value here causes illegal behavior
5771// :151:21: note: when computing vector element at index '1'
5772// :151:21: error: use of undefined value here causes illegal behavior
5773// :151:21: note: when computing vector element at index '0'
5774// :151:21: error: use of undefined value here causes illegal behavior
5775// :151:21: note: when computing vector element at index '0'
5776// :151:21: error: use of undefined value here causes illegal behavior
5777// :151:21: note: when computing vector element at index '0'
5778// :151:21: error: use of undefined value here causes illegal behavior
5779// :151:21: note: when computing vector element at index '0'
5780// :151:21: error: use of undefined value here causes illegal behavior
5781// :151:21: error: use of undefined value here causes illegal behavior
5782// :151:21: error: use of undefined value here causes illegal behavior
5783// :151:21: error: use of undefined value here causes illegal behavior
5784// :151:21: error: use of undefined value here causes illegal behavior
5785// :151:21: error: use of undefined value here causes illegal behavior
5786// :151:21: error: use of undefined value here causes illegal behavior
5787// :151:21: note: when computing vector element at index '1'
5788// :151:21: error: use of undefined value here causes illegal behavior
5789// :151:21: note: when computing vector element at index '1'
5790// :151:21: error: use of undefined value here causes illegal behavior
5791// :151:21: note: when computing vector element at index '1'
5792// :151:21: error: use of undefined value here causes illegal behavior
5793// :151:21: note: when computing vector element at index '1'
5794// :151:21: error: use of undefined value here causes illegal behavior
5795// :151:21: note: when computing vector element at index '0'
5796// :151:21: error: use of undefined value here causes illegal behavior
5797// :151:21: note: when computing vector element at index '0'
5798// :151:21: error: use of undefined value here causes illegal behavior
5799// :151:21: note: when computing vector element at index '0'
5800// :151:21: error: use of undefined value here causes illegal behavior
5801// :151:21: note: when computing vector element at index '0'
5802// :151:21: error: use of undefined value here causes illegal behavior
5803// :151:21: error: use of undefined value here causes illegal behavior
5804// :151:21: error: use of undefined value here causes illegal behavior
5805// :151:21: error: use of undefined value here causes illegal behavior
5806// :151:21: error: use of undefined value here causes illegal behavior
5807// :151:21: error: use of undefined value here causes illegal behavior
5808// :151:21: error: use of undefined value here causes illegal behavior
5809// :151:21: note: when computing vector element at index '1'
5810// :151:21: error: use of undefined value here causes illegal behavior
5811// :151:21: note: when computing vector element at index '1'
5812// :151:21: error: use of undefined value here causes illegal behavior
5813// :151:21: note: when computing vector element at index '1'
5814// :151:21: error: use of undefined value here causes illegal behavior
5815// :151:21: note: when computing vector element at index '1'
5816// :151:21: error: use of undefined value here causes illegal behavior
5817// :151:21: note: when computing vector element at index '0'
5818// :151:21: error: use of undefined value here causes illegal behavior
5819// :151:21: note: when computing vector element at index '0'
5820// :151:21: error: use of undefined value here causes illegal behavior
5821// :151:21: note: when computing vector element at index '0'
5822// :151:21: error: use of undefined value here causes illegal behavior
5823// :151:21: note: when computing vector element at index '0'
5824// :151:21: error: use of undefined value here causes illegal behavior
5825// :151:21: error: use of undefined value here causes illegal behavior
5826// :151:21: error: use of undefined value here causes illegal behavior
5827// :151:21: error: use of undefined value here causes illegal behavior
5828// :151:21: error: use of undefined value here causes illegal behavior
5829// :151:21: error: use of undefined value here causes illegal behavior
5830// :151:21: error: use of undefined value here causes illegal behavior
5831// :151:21: note: when computing vector element at index '1'
5832// :151:21: error: use of undefined value here causes illegal behavior
5833// :151:21: note: when computing vector element at index '1'
5834// :151:21: error: use of undefined value here causes illegal behavior
5835// :151:21: note: when computing vector element at index '1'
5836// :151:21: error: use of undefined value here causes illegal behavior
5837// :151:21: note: when computing vector element at index '1'
5838// :151:21: error: use of undefined value here causes illegal behavior
5839// :151:21: note: when computing vector element at index '0'
5840// :151:21: error: use of undefined value here causes illegal behavior
5841// :151:21: note: when computing vector element at index '0'
5842// :151:21: error: use of undefined value here causes illegal behavior
5843// :151:21: note: when computing vector element at index '0'
5844// :151:21: error: use of undefined value here causes illegal behavior
5845// :151:21: note: when computing vector element at index '0'
5846// :151:21: error: use of undefined value here causes illegal behavior
5847// :151:21: error: use of undefined value here causes illegal behavior
5848// :151:21: error: use of undefined value here causes illegal behavior
5849// :151:21: error: use of undefined value here causes illegal behavior
5850// :151:21: error: use of undefined value here causes illegal behavior
5851// :151:21: error: use of undefined value here causes illegal behavior
5852// :151:21: error: use of undefined value here causes illegal behavior
5853// :151:21: note: when computing vector element at index '1'
5854// :151:21: error: use of undefined value here causes illegal behavior
5855// :151:21: note: when computing vector element at index '1'
5856// :151:21: error: use of undefined value here causes illegal behavior
5857// :151:21: note: when computing vector element at index '1'
5858// :151:21: error: use of undefined value here causes illegal behavior
5859// :151:21: note: when computing vector element at index '1'
5860// :151:21: error: use of undefined value here causes illegal behavior
5861// :151:21: note: when computing vector element at index '0'
5862// :151:21: error: use of undefined value here causes illegal behavior
5863// :151:21: note: when computing vector element at index '0'
5864// :151:21: error: use of undefined value here causes illegal behavior
5865// :151:21: note: when computing vector element at index '0'
5866// :151:21: error: use of undefined value here causes illegal behavior
5867// :151:21: note: when computing vector element at index '0'
5868// :151:21: error: use of undefined value here causes illegal behavior
5869// :151:21: error: use of undefined value here causes illegal behavior
5870// :151:21: error: use of undefined value here causes illegal behavior
5871// :151:21: error: use of undefined value here causes illegal behavior
5872// :151:21: error: use of undefined value here causes illegal behavior
5873// :151:21: error: use of undefined value here causes illegal behavior
5874// :151:21: error: use of undefined value here causes illegal behavior
5875// :151:21: note: when computing vector element at index '1'
5876// :151:21: error: use of undefined value here causes illegal behavior
5877// :151:21: note: when computing vector element at index '1'
5878// :151:21: error: use of undefined value here causes illegal behavior
5879// :151:21: note: when computing vector element at index '1'
5880// :151:21: error: use of undefined value here causes illegal behavior
5881// :151:21: note: when computing vector element at index '1'
5882// :151:21: error: use of undefined value here causes illegal behavior
5883// :151:21: note: when computing vector element at index '0'
5884// :151:21: error: use of undefined value here causes illegal behavior
5885// :151:21: note: when computing vector element at index '0'
5886// :151:21: error: use of undefined value here causes illegal behavior
5887// :151:21: note: when computing vector element at index '0'
5888// :151:21: error: use of undefined value here causes illegal behavior
5889// :151:21: note: when computing vector element at index '0'
5890// :155:30: error: use of undefined value here causes illegal behavior
5891// :155:30: error: use of undefined value here causes illegal behavior
5892// :155:30: error: use of undefined value here causes illegal behavior
5893// :155:30: error: use of undefined value here causes illegal behavior
5894// :155:30: error: use of undefined value here causes illegal behavior
5895// :155:30: error: use of undefined value here causes illegal behavior
5896// :155:30: error: use of undefined value here causes illegal behavior
5897// :155:30: note: when computing vector element at index '1'
5898// :155:30: error: use of undefined value here causes illegal behavior
5899// :155:30: note: when computing vector element at index '1'
5900// :155:30: error: use of undefined value here causes illegal behavior
5901// :155:30: note: when computing vector element at index '1'
5902// :155:30: error: use of undefined value here causes illegal behavior
5903// :155:30: note: when computing vector element at index '1'
5904// :155:30: error: use of undefined value here causes illegal behavior
5905// :155:30: note: when computing vector element at index '0'
5906// :155:30: error: use of undefined value here causes illegal behavior
5907// :155:30: note: when computing vector element at index '0'
5908// :155:30: error: use of undefined value here causes illegal behavior
5909// :155:30: note: when computing vector element at index '0'
5910// :155:30: error: use of undefined value here causes illegal behavior
5911// :155:30: note: when computing vector element at index '0'
5912// :155:30: error: use of undefined value here causes illegal behavior
5913// :155:30: error: use of undefined value here causes illegal behavior
5914// :155:30: error: use of undefined value here causes illegal behavior
5915// :155:30: error: use of undefined value here causes illegal behavior
5916// :155:30: error: use of undefined value here causes illegal behavior
5917// :155:30: error: use of undefined value here causes illegal behavior
5918// :155:30: error: use of undefined value here causes illegal behavior
5919// :155:30: note: when computing vector element at index '1'
5920// :155:30: error: use of undefined value here causes illegal behavior
5921// :155:30: note: when computing vector element at index '1'
5922// :155:30: error: use of undefined value here causes illegal behavior
5923// :155:30: note: when computing vector element at index '1'
5924// :155:30: error: use of undefined value here causes illegal behavior
5925// :155:30: note: when computing vector element at index '1'
5926// :155:30: error: use of undefined value here causes illegal behavior
5927// :155:30: note: when computing vector element at index '0'
5928// :155:30: error: use of undefined value here causes illegal behavior
5929// :155:30: note: when computing vector element at index '0'
5930// :155:30: error: use of undefined value here causes illegal behavior
5931// :155:30: note: when computing vector element at index '0'
5932// :155:30: error: use of undefined value here causes illegal behavior
5933// :155:30: note: when computing vector element at index '0'
5934// :155:30: error: use of undefined value here causes illegal behavior
5935// :155:30: error: use of undefined value here causes illegal behavior
5936// :155:30: error: use of undefined value here causes illegal behavior
5937// :155:30: error: use of undefined value here causes illegal behavior
5938// :155:30: error: use of undefined value here causes illegal behavior
5939// :155:30: error: use of undefined value here causes illegal behavior
5940// :155:30: error: use of undefined value here causes illegal behavior
5941// :155:30: note: when computing vector element at index '1'
5942// :155:30: error: use of undefined value here causes illegal behavior
5943// :155:30: note: when computing vector element at index '1'
5944// :155:30: error: use of undefined value here causes illegal behavior
5945// :155:30: note: when computing vector element at index '1'
5946// :155:30: error: use of undefined value here causes illegal behavior
5947// :155:30: note: when computing vector element at index '1'
5948// :155:30: error: use of undefined value here causes illegal behavior
5949// :155:30: note: when computing vector element at index '0'
5950// :155:30: error: use of undefined value here causes illegal behavior
5951// :155:30: note: when computing vector element at index '0'
5952// :155:30: error: use of undefined value here causes illegal behavior
5953// :155:30: note: when computing vector element at index '0'
5954// :155:30: error: use of undefined value here causes illegal behavior
5955// :155:30: note: when computing vector element at index '0'
5956// :155:30: error: use of undefined value here causes illegal behavior
5957// :155:30: error: use of undefined value here causes illegal behavior
5958// :155:30: error: use of undefined value here causes illegal behavior
5959// :155:30: error: use of undefined value here causes illegal behavior
5960// :155:30: error: use of undefined value here causes illegal behavior
5961// :155:30: error: use of undefined value here causes illegal behavior
5962// :155:30: error: use of undefined value here causes illegal behavior
5963// :155:30: note: when computing vector element at index '1'
5964// :155:30: error: use of undefined value here causes illegal behavior
5965// :155:30: note: when computing vector element at index '1'
5966// :155:30: error: use of undefined value here causes illegal behavior
5967// :155:30: note: when computing vector element at index '1'
5968// :155:30: error: use of undefined value here causes illegal behavior
5969// :155:30: note: when computing vector element at index '1'
5970// :155:30: error: use of undefined value here causes illegal behavior
5971// :155:30: note: when computing vector element at index '0'
5972// :155:30: error: use of undefined value here causes illegal behavior
5973// :155:30: note: when computing vector element at index '0'
5974// :155:30: error: use of undefined value here causes illegal behavior
5975// :155:30: note: when computing vector element at index '0'
5976// :155:30: error: use of undefined value here causes illegal behavior
5977// :155:30: note: when computing vector element at index '0'
5978// :155:30: error: use of undefined value here causes illegal behavior
5979// :155:30: error: use of undefined value here causes illegal behavior
5980// :155:30: error: use of undefined value here causes illegal behavior
5981// :155:30: error: use of undefined value here causes illegal behavior
5982// :155:30: error: use of undefined value here causes illegal behavior
5983// :155:30: error: use of undefined value here causes illegal behavior
5984// :155:30: error: use of undefined value here causes illegal behavior
5985// :155:30: note: when computing vector element at index '1'
5986// :155:30: error: use of undefined value here causes illegal behavior
5987// :155:30: note: when computing vector element at index '1'
5988// :155:30: error: use of undefined value here causes illegal behavior
5989// :155:30: note: when computing vector element at index '1'
5990// :155:30: error: use of undefined value here causes illegal behavior
5991// :155:30: note: when computing vector element at index '1'
5992// :155:30: error: use of undefined value here causes illegal behavior
5993// :155:30: note: when computing vector element at index '0'
5994// :155:30: error: use of undefined value here causes illegal behavior
5995// :155:30: note: when computing vector element at index '0'
5996// :155:30: error: use of undefined value here causes illegal behavior
5997// :155:30: note: when computing vector element at index '0'
5998// :155:30: error: use of undefined value here causes illegal behavior
5999// :155:30: note: when computing vector element at index '0'
6000// :155:30: error: use of undefined value here causes illegal behavior
6001// :155:30: error: use of undefined value here causes illegal behavior
6002// :155:30: error: use of undefined value here causes illegal behavior
6003// :155:30: error: use of undefined value here causes illegal behavior
6004// :155:30: error: use of undefined value here causes illegal behavior
6005// :155:30: error: use of undefined value here causes illegal behavior
6006// :155:30: error: use of undefined value here causes illegal behavior
6007// :155:30: note: when computing vector element at index '1'
6008// :155:30: error: use of undefined value here causes illegal behavior
6009// :155:30: note: when computing vector element at index '1'
6010// :155:30: error: use of undefined value here causes illegal behavior
6011// :155:30: note: when computing vector element at index '1'
6012// :155:30: error: use of undefined value here causes illegal behavior
6013// :155:30: note: when computing vector element at index '1'
6014// :155:30: error: use of undefined value here causes illegal behavior
6015// :155:30: note: when computing vector element at index '0'
6016// :155:30: error: use of undefined value here causes illegal behavior
6017// :155:30: note: when computing vector element at index '0'
6018// :155:30: error: use of undefined value here causes illegal behavior
6019// :155:30: note: when computing vector element at index '0'
6020// :155:30: error: use of undefined value here causes illegal behavior
6021// :155:30: note: when computing vector element at index '0'
6022// :155:30: error: use of undefined value here causes illegal behavior
6023// :155:30: error: use of undefined value here causes illegal behavior
6024// :155:30: error: use of undefined value here causes illegal behavior
6025// :155:30: error: use of undefined value here causes illegal behavior
6026// :155:30: error: use of undefined value here causes illegal behavior
6027// :155:30: error: use of undefined value here causes illegal behavior
6028// :155:30: error: use of undefined value here causes illegal behavior
6029// :155:30: note: when computing vector element at index '1'
6030// :155:30: error: use of undefined value here causes illegal behavior
6031// :155:30: note: when computing vector element at index '1'
6032// :155:30: error: use of undefined value here causes illegal behavior
6033// :155:30: note: when computing vector element at index '1'
6034// :155:30: error: use of undefined value here causes illegal behavior
6035// :155:30: note: when computing vector element at index '1'
6036// :155:30: error: use of undefined value here causes illegal behavior
6037// :155:30: note: when computing vector element at index '0'
6038// :155:30: error: use of undefined value here causes illegal behavior
6039// :155:30: note: when computing vector element at index '0'
6040// :155:30: error: use of undefined value here causes illegal behavior
6041// :155:30: note: when computing vector element at index '0'
6042// :155:30: error: use of undefined value here causes illegal behavior
6043// :155:30: note: when computing vector element at index '0'
6044// :155:30: error: use of undefined value here causes illegal behavior
6045// :155:30: error: use of undefined value here causes illegal behavior
6046// :155:30: error: use of undefined value here causes illegal behavior
6047// :155:30: error: use of undefined value here causes illegal behavior
6048// :155:30: error: use of undefined value here causes illegal behavior
6049// :155:30: error: use of undefined value here causes illegal behavior
6050// :155:30: error: use of undefined value here causes illegal behavior
6051// :155:30: note: when computing vector element at index '1'
6052// :155:30: error: use of undefined value here causes illegal behavior
6053// :155:30: note: when computing vector element at index '1'
6054// :155:30: error: use of undefined value here causes illegal behavior
6055// :155:30: note: when computing vector element at index '1'
6056// :155:30: error: use of undefined value here causes illegal behavior
6057// :155:30: note: when computing vector element at index '1'
6058// :155:30: error: use of undefined value here causes illegal behavior
6059// :155:30: note: when computing vector element at index '0'
6060// :155:30: error: use of undefined value here causes illegal behavior
6061// :155:30: note: when computing vector element at index '0'
6062// :155:30: error: use of undefined value here causes illegal behavior
6063// :155:30: note: when computing vector element at index '0'
6064// :155:30: error: use of undefined value here causes illegal behavior
6065// :155:30: note: when computing vector element at index '0'
6066// :155:30: error: use of undefined value here causes illegal behavior
6067// :155:30: error: use of undefined value here causes illegal behavior
6068// :155:30: error: use of undefined value here causes illegal behavior
6069// :155:30: error: use of undefined value here causes illegal behavior
6070// :155:30: error: use of undefined value here causes illegal behavior
6071// :155:30: error: use of undefined value here causes illegal behavior
6072// :155:30: error: use of undefined value here causes illegal behavior
6073// :155:30: note: when computing vector element at index '1'
6074// :155:30: error: use of undefined value here causes illegal behavior
6075// :155:30: note: when computing vector element at index '1'
6076// :155:30: error: use of undefined value here causes illegal behavior
6077// :155:30: note: when computing vector element at index '1'
6078// :155:30: error: use of undefined value here causes illegal behavior
6079// :155:30: note: when computing vector element at index '1'
6080// :155:30: error: use of undefined value here causes illegal behavior
6081// :155:30: note: when computing vector element at index '0'
6082// :155:30: error: use of undefined value here causes illegal behavior
6083// :155:30: note: when computing vector element at index '0'
6084// :155:30: error: use of undefined value here causes illegal behavior
6085// :155:30: note: when computing vector element at index '0'
6086// :155:30: error: use of undefined value here causes illegal behavior
6087// :155:30: note: when computing vector element at index '0'
6088// :155:30: error: use of undefined value here causes illegal behavior
6089// :155:30: error: use of undefined value here causes illegal behavior
6090// :155:30: error: use of undefined value here causes illegal behavior
6091// :155:30: error: use of undefined value here causes illegal behavior
6092// :155:30: error: use of undefined value here causes illegal behavior
6093// :155:30: error: use of undefined value here causes illegal behavior
6094// :155:30: error: use of undefined value here causes illegal behavior
6095// :155:30: note: when computing vector element at index '1'
6096// :155:30: error: use of undefined value here causes illegal behavior
6097// :155:30: note: when computing vector element at index '1'
6098// :155:30: error: use of undefined value here causes illegal behavior
6099// :155:30: note: when computing vector element at index '1'
6100// :155:30: error: use of undefined value here causes illegal behavior
6101// :155:30: note: when computing vector element at index '1'
6102// :155:30: error: use of undefined value here causes illegal behavior
6103// :155:30: note: when computing vector element at index '0'
6104// :155:30: error: use of undefined value here causes illegal behavior
6105// :155:30: note: when computing vector element at index '0'
6106// :155:30: error: use of undefined value here causes illegal behavior
6107// :155:30: note: when computing vector element at index '0'
6108// :155:30: error: use of undefined value here causes illegal behavior
6109// :155:30: note: when computing vector element at index '0'
6110// :155:30: error: use of undefined value here causes illegal behavior
6111// :155:30: error: use of undefined value here causes illegal behavior
6112// :155:30: error: use of undefined value here causes illegal behavior
6113// :155:30: error: use of undefined value here causes illegal behavior
6114// :155:30: error: use of undefined value here causes illegal behavior
6115// :155:30: error: use of undefined value here causes illegal behavior
6116// :155:30: error: use of undefined value here causes illegal behavior
6117// :155:30: note: when computing vector element at index '1'
6118// :155:30: error: use of undefined value here causes illegal behavior
6119// :155:30: note: when computing vector element at index '1'
6120// :155:30: error: use of undefined value here causes illegal behavior
6121// :155:30: note: when computing vector element at index '1'
6122// :155:30: error: use of undefined value here causes illegal behavior
6123// :155:30: note: when computing vector element at index '1'
6124// :155:30: error: use of undefined value here causes illegal behavior
6125// :155:30: note: when computing vector element at index '0'
6126// :155:30: error: use of undefined value here causes illegal behavior
6127// :155:30: note: when computing vector element at index '0'
6128// :155:30: error: use of undefined value here causes illegal behavior
6129// :155:30: note: when computing vector element at index '0'
6130// :155:30: error: use of undefined value here causes illegal behavior
6131// :155:30: note: when computing vector element at index '0'
6132// :159:30: error: use of undefined value here causes illegal behavior
6133// :159:30: error: use of undefined value here causes illegal behavior
6134// :159:30: error: use of undefined value here causes illegal behavior
6135// :159:30: error: use of undefined value here causes illegal behavior
6136// :159:30: error: use of undefined value here causes illegal behavior
6137// :159:30: error: use of undefined value here causes illegal behavior
6138// :159:30: error: use of undefined value here causes illegal behavior
6139// :159:30: note: when computing vector element at index '1'
6140// :159:30: error: use of undefined value here causes illegal behavior
6141// :159:30: note: when computing vector element at index '1'
6142// :159:30: error: use of undefined value here causes illegal behavior
6143// :159:30: note: when computing vector element at index '1'
6144// :159:30: error: use of undefined value here causes illegal behavior
6145// :159:30: note: when computing vector element at index '1'
6146// :159:30: error: use of undefined value here causes illegal behavior
6147// :159:30: note: when computing vector element at index '0'
6148// :159:30: error: use of undefined value here causes illegal behavior
6149// :159:30: note: when computing vector element at index '0'
6150// :159:30: error: use of undefined value here causes illegal behavior
6151// :159:30: note: when computing vector element at index '0'
6152// :159:30: error: use of undefined value here causes illegal behavior
6153// :159:30: note: when computing vector element at index '0'
6154// :159:30: error: use of undefined value here causes illegal behavior
6155// :159:30: error: use of undefined value here causes illegal behavior
6156// :159:30: error: use of undefined value here causes illegal behavior
6157// :159:30: error: use of undefined value here causes illegal behavior
6158// :159:30: error: use of undefined value here causes illegal behavior
6159// :159:30: error: use of undefined value here causes illegal behavior
6160// :159:30: error: use of undefined value here causes illegal behavior
6161// :159:30: note: when computing vector element at index '1'
6162// :159:30: error: use of undefined value here causes illegal behavior
6163// :159:30: note: when computing vector element at index '1'
6164// :159:30: error: use of undefined value here causes illegal behavior
6165// :159:30: note: when computing vector element at index '1'
6166// :159:30: error: use of undefined value here causes illegal behavior
6167// :159:30: note: when computing vector element at index '1'
6168// :159:30: error: use of undefined value here causes illegal behavior
6169// :159:30: note: when computing vector element at index '0'
6170// :159:30: error: use of undefined value here causes illegal behavior
6171// :159:30: note: when computing vector element at index '0'
6172// :159:30: error: use of undefined value here causes illegal behavior
6173// :159:30: note: when computing vector element at index '0'
6174// :159:30: error: use of undefined value here causes illegal behavior
6175// :159:30: note: when computing vector element at index '0'
6176// :159:30: error: use of undefined value here causes illegal behavior
6177// :159:30: error: use of undefined value here causes illegal behavior
6178// :159:30: error: use of undefined value here causes illegal behavior
6179// :159:30: error: use of undefined value here causes illegal behavior
6180// :159:30: error: use of undefined value here causes illegal behavior
6181// :159:30: error: use of undefined value here causes illegal behavior
6182// :159:30: error: use of undefined value here causes illegal behavior
6183// :159:30: note: when computing vector element at index '1'
6184// :159:30: error: use of undefined value here causes illegal behavior
6185// :159:30: note: when computing vector element at index '1'
6186// :159:30: error: use of undefined value here causes illegal behavior
6187// :159:30: note: when computing vector element at index '1'
6188// :159:30: error: use of undefined value here causes illegal behavior
6189// :159:30: note: when computing vector element at index '1'
6190// :159:30: error: use of undefined value here causes illegal behavior
6191// :159:30: note: when computing vector element at index '0'
6192// :159:30: error: use of undefined value here causes illegal behavior
6193// :159:30: note: when computing vector element at index '0'
6194// :159:30: error: use of undefined value here causes illegal behavior
6195// :159:30: note: when computing vector element at index '0'
6196// :159:30: error: use of undefined value here causes illegal behavior
6197// :159:30: note: when computing vector element at index '0'
6198// :159:30: error: use of undefined value here causes illegal behavior
6199// :159:30: error: use of undefined value here causes illegal behavior
6200// :159:30: error: use of undefined value here causes illegal behavior
6201// :159:30: error: use of undefined value here causes illegal behavior
6202// :159:30: error: use of undefined value here causes illegal behavior
6203// :159:30: error: use of undefined value here causes illegal behavior
6204// :159:30: error: use of undefined value here causes illegal behavior
6205// :159:30: note: when computing vector element at index '1'
6206// :159:30: error: use of undefined value here causes illegal behavior
6207// :159:30: note: when computing vector element at index '1'
6208// :159:30: error: use of undefined value here causes illegal behavior
6209// :159:30: note: when computing vector element at index '1'
6210// :159:30: error: use of undefined value here causes illegal behavior
6211// :159:30: note: when computing vector element at index '1'
6212// :159:30: error: use of undefined value here causes illegal behavior
6213// :159:30: note: when computing vector element at index '0'
6214// :159:30: error: use of undefined value here causes illegal behavior
6215// :159:30: note: when computing vector element at index '0'
6216// :159:30: error: use of undefined value here causes illegal behavior
6217// :159:30: note: when computing vector element at index '0'
6218// :159:30: error: use of undefined value here causes illegal behavior
6219// :159:30: note: when computing vector element at index '0'
6220// :159:30: error: use of undefined value here causes illegal behavior
6221// :159:30: error: use of undefined value here causes illegal behavior
6222// :159:30: error: use of undefined value here causes illegal behavior
6223// :159:30: error: use of undefined value here causes illegal behavior
6224// :159:30: error: use of undefined value here causes illegal behavior
6225// :159:30: error: use of undefined value here causes illegal behavior
6226// :159:30: error: use of undefined value here causes illegal behavior
6227// :159:30: note: when computing vector element at index '1'
6228// :159:30: error: use of undefined value here causes illegal behavior
6229// :159:30: note: when computing vector element at index '1'
6230// :159:30: error: use of undefined value here causes illegal behavior
6231// :159:30: note: when computing vector element at index '1'
6232// :159:30: error: use of undefined value here causes illegal behavior
6233// :159:30: note: when computing vector element at index '1'
6234// :159:30: error: use of undefined value here causes illegal behavior
6235// :159:30: note: when computing vector element at index '0'
6236// :159:30: error: use of undefined value here causes illegal behavior
6237// :159:30: note: when computing vector element at index '0'
6238// :159:30: error: use of undefined value here causes illegal behavior
6239// :159:30: note: when computing vector element at index '0'
6240// :159:30: error: use of undefined value here causes illegal behavior
6241// :159:30: note: when computing vector element at index '0'
6242// :159:30: error: use of undefined value here causes illegal behavior
6243// :159:30: error: use of undefined value here causes illegal behavior
6244// :159:30: error: use of undefined value here causes illegal behavior
6245// :159:30: error: use of undefined value here causes illegal behavior
6246// :159:30: error: use of undefined value here causes illegal behavior
6247// :159:30: error: use of undefined value here causes illegal behavior
6248// :159:30: error: use of undefined value here causes illegal behavior
6249// :159:30: note: when computing vector element at index '1'
6250// :159:30: error: use of undefined value here causes illegal behavior
6251// :159:30: note: when computing vector element at index '1'
6252// :159:30: error: use of undefined value here causes illegal behavior
6253// :159:30: note: when computing vector element at index '1'
6254// :159:30: error: use of undefined value here causes illegal behavior
6255// :159:30: note: when computing vector element at index '1'
6256// :159:30: error: use of undefined value here causes illegal behavior
6257// :159:30: note: when computing vector element at index '0'
6258// :159:30: error: use of undefined value here causes illegal behavior
6259// :159:30: note: when computing vector element at index '0'
6260// :159:30: error: use of undefined value here causes illegal behavior
6261// :159:30: note: when computing vector element at index '0'
6262// :159:30: error: use of undefined value here causes illegal behavior
6263// :159:30: note: when computing vector element at index '0'
6264// :159:30: error: use of undefined value here causes illegal behavior
6265// :159:30: error: use of undefined value here causes illegal behavior
6266// :159:30: error: use of undefined value here causes illegal behavior
6267// :159:30: error: use of undefined value here causes illegal behavior
6268// :159:30: error: use of undefined value here causes illegal behavior
6269// :159:30: error: use of undefined value here causes illegal behavior
6270// :159:30: error: use of undefined value here causes illegal behavior
6271// :159:30: note: when computing vector element at index '1'
6272// :159:30: error: use of undefined value here causes illegal behavior
6273// :159:30: note: when computing vector element at index '1'
6274// :159:30: error: use of undefined value here causes illegal behavior
6275// :159:30: note: when computing vector element at index '1'
6276// :159:30: error: use of undefined value here causes illegal behavior
6277// :159:30: note: when computing vector element at index '1'
6278// :159:30: error: use of undefined value here causes illegal behavior
6279// :159:30: note: when computing vector element at index '0'
6280// :159:30: error: use of undefined value here causes illegal behavior
6281// :159:30: note: when computing vector element at index '0'
6282// :159:30: error: use of undefined value here causes illegal behavior
6283// :159:30: note: when computing vector element at index '0'
6284// :159:30: error: use of undefined value here causes illegal behavior
6285// :159:30: note: when computing vector element at index '0'
6286// :159:30: error: use of undefined value here causes illegal behavior
6287// :159:30: error: use of undefined value here causes illegal behavior
6288// :159:30: error: use of undefined value here causes illegal behavior
6289// :159:30: error: use of undefined value here causes illegal behavior
6290// :159:30: error: use of undefined value here causes illegal behavior
6291// :159:30: error: use of undefined value here causes illegal behavior
6292// :159:30: error: use of undefined value here causes illegal behavior
6293// :159:30: note: when computing vector element at index '1'
6294// :159:30: error: use of undefined value here causes illegal behavior
6295// :159:30: note: when computing vector element at index '1'
6296// :159:30: error: use of undefined value here causes illegal behavior
6297// :159:30: note: when computing vector element at index '1'
6298// :159:30: error: use of undefined value here causes illegal behavior
6299// :159:30: note: when computing vector element at index '1'
6300// :159:30: error: use of undefined value here causes illegal behavior
6301// :159:30: note: when computing vector element at index '0'
6302// :159:30: error: use of undefined value here causes illegal behavior
6303// :159:30: note: when computing vector element at index '0'
6304// :159:30: error: use of undefined value here causes illegal behavior
6305// :159:30: note: when computing vector element at index '0'
6306// :159:30: error: use of undefined value here causes illegal behavior
6307// :159:30: note: when computing vector element at index '0'
6308// :159:30: error: use of undefined value here causes illegal behavior
6309// :159:30: error: use of undefined value here causes illegal behavior
6310// :159:30: error: use of undefined value here causes illegal behavior
6311// :159:30: error: use of undefined value here causes illegal behavior
6312// :159:30: error: use of undefined value here causes illegal behavior
6313// :159:30: error: use of undefined value here causes illegal behavior
6314// :159:30: error: use of undefined value here causes illegal behavior
6315// :159:30: note: when computing vector element at index '1'
6316// :159:30: error: use of undefined value here causes illegal behavior
6317// :159:30: note: when computing vector element at index '1'
6318// :159:30: error: use of undefined value here causes illegal behavior
6319// :159:30: note: when computing vector element at index '1'
6320// :159:30: error: use of undefined value here causes illegal behavior
6321// :159:30: note: when computing vector element at index '1'
6322// :159:30: error: use of undefined value here causes illegal behavior
6323// :159:30: note: when computing vector element at index '0'
6324// :159:30: error: use of undefined value here causes illegal behavior
6325// :159:30: note: when computing vector element at index '0'
6326// :159:30: error: use of undefined value here causes illegal behavior
6327// :159:30: note: when computing vector element at index '0'
6328// :159:30: error: use of undefined value here causes illegal behavior
6329// :159:30: note: when computing vector element at index '0'
6330// :159:30: error: use of undefined value here causes illegal behavior
6331// :159:30: error: use of undefined value here causes illegal behavior
6332// :159:30: error: use of undefined value here causes illegal behavior
6333// :159:30: error: use of undefined value here causes illegal behavior
6334// :159:30: error: use of undefined value here causes illegal behavior
6335// :159:30: error: use of undefined value here causes illegal behavior
6336// :159:30: error: use of undefined value here causes illegal behavior
6337// :159:30: note: when computing vector element at index '1'
6338// :159:30: error: use of undefined value here causes illegal behavior
6339// :159:30: note: when computing vector element at index '1'
6340// :159:30: error: use of undefined value here causes illegal behavior
6341// :159:30: note: when computing vector element at index '1'
6342// :159:30: error: use of undefined value here causes illegal behavior
6343// :159:30: note: when computing vector element at index '1'
6344// :159:30: error: use of undefined value here causes illegal behavior
6345// :159:30: note: when computing vector element at index '0'
6346// :159:30: error: use of undefined value here causes illegal behavior
6347// :159:30: note: when computing vector element at index '0'
6348// :159:30: error: use of undefined value here causes illegal behavior
6349// :159:30: note: when computing vector element at index '0'
6350// :159:30: error: use of undefined value here causes illegal behavior
6351// :159:30: note: when computing vector element at index '0'
6352// :159:30: error: use of undefined value here causes illegal behavior
6353// :159:30: error: use of undefined value here causes illegal behavior
6354// :159:30: error: use of undefined value here causes illegal behavior
6355// :159:30: error: use of undefined value here causes illegal behavior
6356// :159:30: error: use of undefined value here causes illegal behavior
6357// :159:30: error: use of undefined value here causes illegal behavior
6358// :159:30: error: use of undefined value here causes illegal behavior
6359// :159:30: note: when computing vector element at index '1'
6360// :159:30: error: use of undefined value here causes illegal behavior
6361// :159:30: note: when computing vector element at index '1'
6362// :159:30: error: use of undefined value here causes illegal behavior
6363// :159:30: note: when computing vector element at index '1'
6364// :159:30: error: use of undefined value here causes illegal behavior
6365// :159:30: note: when computing vector element at index '1'
6366// :159:30: error: use of undefined value here causes illegal behavior
6367// :159:30: note: when computing vector element at index '0'
6368// :159:30: error: use of undefined value here causes illegal behavior
6369// :159:30: note: when computing vector element at index '0'
6370// :159:30: error: use of undefined value here causes illegal behavior
6371// :159:30: note: when computing vector element at index '0'
6372// :159:30: error: use of undefined value here causes illegal behavior
6373// :159:30: note: when computing vector element at index '0'
6374// :163:30: error: use of undefined value here causes illegal behavior
6375// :163:30: error: use of undefined value here causes illegal behavior
6376// :163:30: error: use of undefined value here causes illegal behavior
6377// :163:30: error: use of undefined value here causes illegal behavior
6378// :163:30: error: use of undefined value here causes illegal behavior
6379// :163:30: error: use of undefined value here causes illegal behavior
6380// :163:30: error: use of undefined value here causes illegal behavior
6381// :163:30: note: when computing vector element at index '1'
6382// :163:30: error: use of undefined value here causes illegal behavior
6383// :163:30: note: when computing vector element at index '1'
6384// :163:30: error: use of undefined value here causes illegal behavior
6385// :163:30: note: when computing vector element at index '1'
6386// :163:30: error: use of undefined value here causes illegal behavior
6387// :163:30: note: when computing vector element at index '1'
6388// :163:30: error: use of undefined value here causes illegal behavior
6389// :163:30: note: when computing vector element at index '0'
6390// :163:30: error: use of undefined value here causes illegal behavior
6391// :163:30: note: when computing vector element at index '0'
6392// :163:30: error: use of undefined value here causes illegal behavior
6393// :163:30: note: when computing vector element at index '0'
6394// :163:30: error: use of undefined value here causes illegal behavior
6395// :163:30: note: when computing vector element at index '0'
6396// :163:30: error: use of undefined value here causes illegal behavior
6397// :163:30: error: use of undefined value here causes illegal behavior
6398// :163:30: error: use of undefined value here causes illegal behavior
6399// :163:30: error: use of undefined value here causes illegal behavior
6400// :163:30: error: use of undefined value here causes illegal behavior
6401// :163:30: error: use of undefined value here causes illegal behavior
6402// :163:30: error: use of undefined value here causes illegal behavior
6403// :163:30: note: when computing vector element at index '1'
6404// :163:30: error: use of undefined value here causes illegal behavior
6405// :163:30: note: when computing vector element at index '1'
6406// :163:30: error: use of undefined value here causes illegal behavior
6407// :163:30: note: when computing vector element at index '1'
6408// :163:30: error: use of undefined value here causes illegal behavior
6409// :163:30: note: when computing vector element at index '1'
6410// :163:30: error: use of undefined value here causes illegal behavior
6411// :163:30: note: when computing vector element at index '0'
6412// :163:30: error: use of undefined value here causes illegal behavior
6413// :163:30: note: when computing vector element at index '0'
6414// :163:30: error: use of undefined value here causes illegal behavior
6415// :163:30: note: when computing vector element at index '0'
6416// :163:30: error: use of undefined value here causes illegal behavior
6417// :163:30: note: when computing vector element at index '0'
6418// :163:30: error: use of undefined value here causes illegal behavior
6419// :163:30: error: use of undefined value here causes illegal behavior
6420// :163:30: error: use of undefined value here causes illegal behavior
6421// :163:30: error: use of undefined value here causes illegal behavior
6422// :163:30: error: use of undefined value here causes illegal behavior
6423// :163:30: error: use of undefined value here causes illegal behavior
6424// :163:30: error: use of undefined value here causes illegal behavior
6425// :163:30: note: when computing vector element at index '1'
6426// :163:30: error: use of undefined value here causes illegal behavior
6427// :163:30: note: when computing vector element at index '1'
6428// :163:30: error: use of undefined value here causes illegal behavior
6429// :163:30: note: when computing vector element at index '1'
6430// :163:30: error: use of undefined value here causes illegal behavior
6431// :163:30: note: when computing vector element at index '1'
6432// :163:30: error: use of undefined value here causes illegal behavior
6433// :163:30: note: when computing vector element at index '0'
6434// :163:30: error: use of undefined value here causes illegal behavior
6435// :163:30: note: when computing vector element at index '0'
6436// :163:30: error: use of undefined value here causes illegal behavior
6437// :163:30: note: when computing vector element at index '0'
6438// :163:30: error: use of undefined value here causes illegal behavior
6439// :163:30: note: when computing vector element at index '0'
6440// :163:30: error: use of undefined value here causes illegal behavior
6441// :163:30: error: use of undefined value here causes illegal behavior
6442// :163:30: error: use of undefined value here causes illegal behavior
6443// :163:30: error: use of undefined value here causes illegal behavior
6444// :163:30: error: use of undefined value here causes illegal behavior
6445// :163:30: error: use of undefined value here causes illegal behavior
6446// :163:30: error: use of undefined value here causes illegal behavior
6447// :163:30: note: when computing vector element at index '1'
6448// :163:30: error: use of undefined value here causes illegal behavior
6449// :163:30: note: when computing vector element at index '1'
6450// :163:30: error: use of undefined value here causes illegal behavior
6451// :163:30: note: when computing vector element at index '1'
6452// :163:30: error: use of undefined value here causes illegal behavior
6453// :163:30: note: when computing vector element at index '1'
6454// :163:30: error: use of undefined value here causes illegal behavior
6455// :163:30: note: when computing vector element at index '0'
6456// :163:30: error: use of undefined value here causes illegal behavior
6457// :163:30: note: when computing vector element at index '0'
6458// :163:30: error: use of undefined value here causes illegal behavior
6459// :163:30: note: when computing vector element at index '0'
6460// :163:30: error: use of undefined value here causes illegal behavior
6461// :163:30: note: when computing vector element at index '0'
6462// :163:30: error: use of undefined value here causes illegal behavior
6463// :163:30: error: use of undefined value here causes illegal behavior
6464// :163:30: error: use of undefined value here causes illegal behavior
6465// :163:30: error: use of undefined value here causes illegal behavior
6466// :163:30: error: use of undefined value here causes illegal behavior
6467// :163:30: error: use of undefined value here causes illegal behavior
6468// :163:30: error: use of undefined value here causes illegal behavior
6469// :163:30: note: when computing vector element at index '1'
6470// :163:30: error: use of undefined value here causes illegal behavior
6471// :163:30: note: when computing vector element at index '1'
6472// :163:30: error: use of undefined value here causes illegal behavior
6473// :163:30: note: when computing vector element at index '1'
6474// :163:30: error: use of undefined value here causes illegal behavior
6475// :163:30: note: when computing vector element at index '1'
6476// :163:30: error: use of undefined value here causes illegal behavior
6477// :163:30: note: when computing vector element at index '0'
6478// :163:30: error: use of undefined value here causes illegal behavior
6479// :163:30: note: when computing vector element at index '0'
6480// :163:30: error: use of undefined value here causes illegal behavior
6481// :163:30: note: when computing vector element at index '0'
6482// :163:30: error: use of undefined value here causes illegal behavior
6483// :163:30: note: when computing vector element at index '0'
6484// :163:30: error: use of undefined value here causes illegal behavior
6485// :163:30: error: use of undefined value here causes illegal behavior
6486// :163:30: error: use of undefined value here causes illegal behavior
6487// :163:30: error: use of undefined value here causes illegal behavior
6488// :163:30: error: use of undefined value here causes illegal behavior
6489// :163:30: error: use of undefined value here causes illegal behavior
6490// :163:30: error: use of undefined value here causes illegal behavior
6491// :163:30: note: when computing vector element at index '1'
6492// :163:30: error: use of undefined value here causes illegal behavior
6493// :163:30: note: when computing vector element at index '1'
6494// :163:30: error: use of undefined value here causes illegal behavior
6495// :163:30: note: when computing vector element at index '1'
6496// :163:30: error: use of undefined value here causes illegal behavior
6497// :163:30: note: when computing vector element at index '1'
6498// :163:30: error: use of undefined value here causes illegal behavior
6499// :163:30: note: when computing vector element at index '0'
6500// :163:30: error: use of undefined value here causes illegal behavior
6501// :163:30: note: when computing vector element at index '0'
6502// :163:30: error: use of undefined value here causes illegal behavior
6503// :163:30: note: when computing vector element at index '0'
6504// :163:30: error: use of undefined value here causes illegal behavior
6505// :163:30: note: when computing vector element at index '0'
6506// :163:30: error: use of undefined value here causes illegal behavior
6507// :163:30: error: use of undefined value here causes illegal behavior
6508// :163:30: error: use of undefined value here causes illegal behavior
6509// :163:30: error: use of undefined value here causes illegal behavior
6510// :163:30: error: use of undefined value here causes illegal behavior
6511// :163:30: error: use of undefined value here causes illegal behavior
6512// :163:30: error: use of undefined value here causes illegal behavior
6513// :163:30: note: when computing vector element at index '1'
6514// :163:30: error: use of undefined value here causes illegal behavior
6515// :163:30: note: when computing vector element at index '1'
6516// :163:30: error: use of undefined value here causes illegal behavior
6517// :163:30: note: when computing vector element at index '1'
6518// :163:30: error: use of undefined value here causes illegal behavior
6519// :163:30: note: when computing vector element at index '1'
6520// :163:30: error: use of undefined value here causes illegal behavior
6521// :163:30: note: when computing vector element at index '0'
6522// :163:30: error: use of undefined value here causes illegal behavior
6523// :163:30: note: when computing vector element at index '0'
6524// :163:30: error: use of undefined value here causes illegal behavior
6525// :163:30: note: when computing vector element at index '0'
6526// :163:30: error: use of undefined value here causes illegal behavior
6527// :163:30: note: when computing vector element at index '0'
6528// :163:30: error: use of undefined value here causes illegal behavior
6529// :163:30: error: use of undefined value here causes illegal behavior
6530// :163:30: error: use of undefined value here causes illegal behavior
6531// :163:30: error: use of undefined value here causes illegal behavior
6532// :163:30: error: use of undefined value here causes illegal behavior
6533// :163:30: error: use of undefined value here causes illegal behavior
6534// :163:30: error: use of undefined value here causes illegal behavior
6535// :163:30: note: when computing vector element at index '1'
6536// :163:30: error: use of undefined value here causes illegal behavior
6537// :163:30: note: when computing vector element at index '1'
6538// :163:30: error: use of undefined value here causes illegal behavior
6539// :163:30: note: when computing vector element at index '1'
6540// :163:30: error: use of undefined value here causes illegal behavior
6541// :163:30: note: when computing vector element at index '1'
6542// :163:30: error: use of undefined value here causes illegal behavior
6543// :163:30: note: when computing vector element at index '0'
6544// :163:30: error: use of undefined value here causes illegal behavior
6545// :163:30: note: when computing vector element at index '0'
6546// :163:30: error: use of undefined value here causes illegal behavior
6547// :163:30: note: when computing vector element at index '0'
6548// :163:30: error: use of undefined value here causes illegal behavior
6549// :163:30: note: when computing vector element at index '0'
6550// :163:30: error: use of undefined value here causes illegal behavior
6551// :163:30: error: use of undefined value here causes illegal behavior
6552// :163:30: error: use of undefined value here causes illegal behavior
6553// :163:30: error: use of undefined value here causes illegal behavior
6554// :163:30: error: use of undefined value here causes illegal behavior
6555// :163:30: error: use of undefined value here causes illegal behavior
6556// :163:30: error: use of undefined value here causes illegal behavior
6557// :163:30: note: when computing vector element at index '1'
6558// :163:30: error: use of undefined value here causes illegal behavior
6559// :163:30: note: when computing vector element at index '1'
6560// :163:30: error: use of undefined value here causes illegal behavior
6561// :163:30: note: when computing vector element at index '1'
6562// :163:30: error: use of undefined value here causes illegal behavior
6563// :163:30: note: when computing vector element at index '1'
6564// :163:30: error: use of undefined value here causes illegal behavior
6565// :163:30: note: when computing vector element at index '0'
6566// :163:30: error: use of undefined value here causes illegal behavior
6567// :163:30: note: when computing vector element at index '0'
6568// :163:30: error: use of undefined value here causes illegal behavior
6569// :163:30: note: when computing vector element at index '0'
6570// :163:30: error: use of undefined value here causes illegal behavior
6571// :163:30: note: when computing vector element at index '0'
6572// :163:30: error: use of undefined value here causes illegal behavior
6573// :163:30: error: use of undefined value here causes illegal behavior
6574// :163:30: error: use of undefined value here causes illegal behavior
6575// :163:30: error: use of undefined value here causes illegal behavior
6576// :163:30: error: use of undefined value here causes illegal behavior
6577// :163:30: error: use of undefined value here causes illegal behavior
6578// :163:30: error: use of undefined value here causes illegal behavior
6579// :163:30: note: when computing vector element at index '1'
6580// :163:30: error: use of undefined value here causes illegal behavior
6581// :163:30: note: when computing vector element at index '1'
6582// :163:30: error: use of undefined value here causes illegal behavior
6583// :163:30: note: when computing vector element at index '1'
6584// :163:30: error: use of undefined value here causes illegal behavior
6585// :163:30: note: when computing vector element at index '1'
6586// :163:30: error: use of undefined value here causes illegal behavior
6587// :163:30: note: when computing vector element at index '0'
6588// :163:30: error: use of undefined value here causes illegal behavior
6589// :163:30: note: when computing vector element at index '0'
6590// :163:30: error: use of undefined value here causes illegal behavior
6591// :163:30: note: when computing vector element at index '0'
6592// :163:30: error: use of undefined value here causes illegal behavior
6593// :163:30: note: when computing vector element at index '0'
6594// :163:30: error: use of undefined value here causes illegal behavior
6595// :163:30: error: use of undefined value here causes illegal behavior
6596// :163:30: error: use of undefined value here causes illegal behavior
6597// :163:30: error: use of undefined value here causes illegal behavior
6598// :163:30: error: use of undefined value here causes illegal behavior
6599// :163:30: error: use of undefined value here causes illegal behavior
6600// :163:30: error: use of undefined value here causes illegal behavior
6601// :163:30: note: when computing vector element at index '1'
6602// :163:30: error: use of undefined value here causes illegal behavior
6603// :163:30: note: when computing vector element at index '1'
6604// :163:30: error: use of undefined value here causes illegal behavior
6605// :163:30: note: when computing vector element at index '1'
6606// :163:30: error: use of undefined value here causes illegal behavior
6607// :163:30: note: when computing vector element at index '1'
6608// :163:30: error: use of undefined value here causes illegal behavior
6609// :163:30: note: when computing vector element at index '0'
6610// :163:30: error: use of undefined value here causes illegal behavior
6611// :163:30: note: when computing vector element at index '0'
6612// :163:30: error: use of undefined value here causes illegal behavior
6613// :163:30: note: when computing vector element at index '0'
6614// :163:30: error: use of undefined value here causes illegal behavior
6615// :163:30: note: when computing vector element at index '0'
6616// :167:25: error: use of undefined value here causes illegal behavior
6617// :167:25: error: use of undefined value here causes illegal behavior
6618// :167:25: error: use of undefined value here causes illegal behavior
6619// :167:25: error: use of undefined value here causes illegal behavior
6620// :167:25: error: use of undefined value here causes illegal behavior
6621// :167:25: error: use of undefined value here causes illegal behavior
6622// :167:25: error: use of undefined value here causes illegal behavior
6623// :167:25: note: when computing vector element at index '1'
6624// :167:25: error: use of undefined value here causes illegal behavior
6625// :167:25: note: when computing vector element at index '1'
6626// :167:25: error: use of undefined value here causes illegal behavior
6627// :167:25: note: when computing vector element at index '1'
6628// :167:25: error: use of undefined value here causes illegal behavior
6629// :167:25: note: when computing vector element at index '1'
6630// :167:25: error: use of undefined value here causes illegal behavior
6631// :167:25: note: when computing vector element at index '0'
6632// :167:25: error: use of undefined value here causes illegal behavior
6633// :167:25: note: when computing vector element at index '0'
6634// :167:25: error: use of undefined value here causes illegal behavior
6635// :167:25: note: when computing vector element at index '0'
6636// :167:25: error: use of undefined value here causes illegal behavior
6637// :167:25: note: when computing vector element at index '0'
6638// :167:25: error: use of undefined value here causes illegal behavior
6639// :167:25: error: use of undefined value here causes illegal behavior
6640// :167:25: error: use of undefined value here causes illegal behavior
6641// :167:25: error: use of undefined value here causes illegal behavior
6642// :167:25: error: use of undefined value here causes illegal behavior
6643// :167:25: error: use of undefined value here causes illegal behavior
6644// :167:25: error: use of undefined value here causes illegal behavior
6645// :167:25: note: when computing vector element at index '1'
6646// :167:25: error: use of undefined value here causes illegal behavior
6647// :167:25: note: when computing vector element at index '1'
6648// :167:25: error: use of undefined value here causes illegal behavior
6649// :167:25: note: when computing vector element at index '1'
6650// :167:25: error: use of undefined value here causes illegal behavior
6651// :167:25: note: when computing vector element at index '1'
6652// :167:25: error: use of undefined value here causes illegal behavior
6653// :167:25: note: when computing vector element at index '0'
6654// :167:25: error: use of undefined value here causes illegal behavior
6655// :167:25: note: when computing vector element at index '0'
6656// :167:25: error: use of undefined value here causes illegal behavior
6657// :167:25: note: when computing vector element at index '0'
6658// :167:25: error: use of undefined value here causes illegal behavior
6659// :167:25: note: when computing vector element at index '0'
6660// :167:25: error: use of undefined value here causes illegal behavior
6661// :167:25: error: use of undefined value here causes illegal behavior
6662// :167:25: error: use of undefined value here causes illegal behavior
6663// :167:25: error: use of undefined value here causes illegal behavior
6664// :167:25: error: use of undefined value here causes illegal behavior
6665// :167:25: error: use of undefined value here causes illegal behavior
6666// :167:25: error: use of undefined value here causes illegal behavior
6667// :167:25: note: when computing vector element at index '1'
6668// :167:25: error: use of undefined value here causes illegal behavior
6669// :167:25: note: when computing vector element at index '1'
6670// :167:25: error: use of undefined value here causes illegal behavior
6671// :167:25: note: when computing vector element at index '1'
6672// :167:25: error: use of undefined value here causes illegal behavior
6673// :167:25: note: when computing vector element at index '1'
6674// :167:25: error: use of undefined value here causes illegal behavior
6675// :167:25: note: when computing vector element at index '0'
6676// :167:25: error: use of undefined value here causes illegal behavior
6677// :167:25: note: when computing vector element at index '0'
6678// :167:25: error: use of undefined value here causes illegal behavior
6679// :167:25: note: when computing vector element at index '0'
6680// :167:25: error: use of undefined value here causes illegal behavior
6681// :167:25: note: when computing vector element at index '0'
6682// :167:25: error: use of undefined value here causes illegal behavior
6683// :167:25: error: use of undefined value here causes illegal behavior
6684// :167:25: error: use of undefined value here causes illegal behavior
6685// :167:25: error: use of undefined value here causes illegal behavior
6686// :167:25: error: use of undefined value here causes illegal behavior
6687// :167:25: error: use of undefined value here causes illegal behavior
6688// :167:25: error: use of undefined value here causes illegal behavior
6689// :167:25: note: when computing vector element at index '1'
6690// :167:25: error: use of undefined value here causes illegal behavior
6691// :167:25: note: when computing vector element at index '1'
6692// :167:25: error: use of undefined value here causes illegal behavior
6693// :167:25: note: when computing vector element at index '1'
6694// :167:25: error: use of undefined value here causes illegal behavior
6695// :167:25: note: when computing vector element at index '1'
6696// :167:25: error: use of undefined value here causes illegal behavior
6697// :167:25: note: when computing vector element at index '0'
6698// :167:25: error: use of undefined value here causes illegal behavior
6699// :167:25: note: when computing vector element at index '0'
6700// :167:25: error: use of undefined value here causes illegal behavior
6701// :167:25: note: when computing vector element at index '0'
6702// :167:25: error: use of undefined value here causes illegal behavior
6703// :167:25: note: when computing vector element at index '0'
6704// :167:25: error: use of undefined value here causes illegal behavior
6705// :167:25: error: use of undefined value here causes illegal behavior
6706// :167:25: error: use of undefined value here causes illegal behavior
6707// :167:25: error: use of undefined value here causes illegal behavior
6708// :167:25: error: use of undefined value here causes illegal behavior
6709// :167:25: error: use of undefined value here causes illegal behavior
6710// :167:25: error: use of undefined value here causes illegal behavior
6711// :167:25: note: when computing vector element at index '1'
6712// :167:25: error: use of undefined value here causes illegal behavior
6713// :167:25: note: when computing vector element at index '1'
6714// :167:25: error: use of undefined value here causes illegal behavior
6715// :167:25: note: when computing vector element at index '1'
6716// :167:25: error: use of undefined value here causes illegal behavior
6717// :167:25: note: when computing vector element at index '1'
6718// :167:25: error: use of undefined value here causes illegal behavior
6719// :167:25: note: when computing vector element at index '0'
6720// :167:25: error: use of undefined value here causes illegal behavior
6721// :167:25: note: when computing vector element at index '0'
6722// :167:25: error: use of undefined value here causes illegal behavior
6723// :167:25: note: when computing vector element at index '0'
6724// :167:25: error: use of undefined value here causes illegal behavior
6725// :167:25: note: when computing vector element at index '0'
6726// :167:25: error: use of undefined value here causes illegal behavior
6727// :167:25: error: use of undefined value here causes illegal behavior
6728// :167:25: error: use of undefined value here causes illegal behavior
6729// :167:25: error: use of undefined value here causes illegal behavior
6730// :167:25: error: use of undefined value here causes illegal behavior
6731// :167:25: error: use of undefined value here causes illegal behavior
6732// :167:25: error: use of undefined value here causes illegal behavior
6733// :167:25: note: when computing vector element at index '1'
6734// :167:25: error: use of undefined value here causes illegal behavior
6735// :167:25: note: when computing vector element at index '1'
6736// :167:25: error: use of undefined value here causes illegal behavior
6737// :167:25: note: when computing vector element at index '1'
6738// :167:25: error: use of undefined value here causes illegal behavior
6739// :167:25: note: when computing vector element at index '1'
6740// :167:25: error: use of undefined value here causes illegal behavior
6741// :167:25: note: when computing vector element at index '0'
6742// :167:25: error: use of undefined value here causes illegal behavior
6743// :167:25: note: when computing vector element at index '0'
6744// :167:25: error: use of undefined value here causes illegal behavior
6745// :167:25: note: when computing vector element at index '0'
6746// :167:25: error: use of undefined value here causes illegal behavior
6747// :167:25: note: when computing vector element at index '0'
6748// :167:25: error: use of undefined value here causes illegal behavior
6749// :167:25: error: use of undefined value here causes illegal behavior
6750// :167:25: error: use of undefined value here causes illegal behavior
6751// :167:25: error: use of undefined value here causes illegal behavior
6752// :167:25: error: use of undefined value here causes illegal behavior
6753// :167:25: error: use of undefined value here causes illegal behavior
6754// :167:25: error: use of undefined value here causes illegal behavior
6755// :167:25: note: when computing vector element at index '1'
6756// :167:25: error: use of undefined value here causes illegal behavior
6757// :167:25: note: when computing vector element at index '1'
6758// :167:25: error: use of undefined value here causes illegal behavior
6759// :167:25: note: when computing vector element at index '1'
6760// :167:25: error: use of undefined value here causes illegal behavior
6761// :167:25: note: when computing vector element at index '1'
6762// :167:25: error: use of undefined value here causes illegal behavior
6763// :167:25: note: when computing vector element at index '0'
6764// :167:25: error: use of undefined value here causes illegal behavior
6765// :167:25: note: when computing vector element at index '0'
6766// :167:25: error: use of undefined value here causes illegal behavior
6767// :167:25: note: when computing vector element at index '0'
6768// :167:25: error: use of undefined value here causes illegal behavior
6769// :167:25: note: when computing vector element at index '0'
6770// :167:25: error: use of undefined value here causes illegal behavior
6771// :167:25: error: use of undefined value here causes illegal behavior
6772// :167:25: error: use of undefined value here causes illegal behavior
6773// :167:25: error: use of undefined value here causes illegal behavior
6774// :167:25: error: use of undefined value here causes illegal behavior
6775// :167:25: error: use of undefined value here causes illegal behavior
6776// :167:25: error: use of undefined value here causes illegal behavior
6777// :167:25: note: when computing vector element at index '1'
6778// :167:25: error: use of undefined value here causes illegal behavior
6779// :167:25: note: when computing vector element at index '1'
6780// :167:25: error: use of undefined value here causes illegal behavior
6781// :167:25: note: when computing vector element at index '1'
6782// :167:25: error: use of undefined value here causes illegal behavior
6783// :167:25: note: when computing vector element at index '1'
6784// :167:25: error: use of undefined value here causes illegal behavior
6785// :167:25: note: when computing vector element at index '0'
6786// :167:25: error: use of undefined value here causes illegal behavior
6787// :167:25: note: when computing vector element at index '0'
6788// :167:25: error: use of undefined value here causes illegal behavior
6789// :167:25: note: when computing vector element at index '0'
6790// :167:25: error: use of undefined value here causes illegal behavior
6791// :167:25: note: when computing vector element at index '0'
6792// :167:25: error: use of undefined value here causes illegal behavior
6793// :167:25: error: use of undefined value here causes illegal behavior
6794// :167:25: error: use of undefined value here causes illegal behavior
6795// :167:25: error: use of undefined value here causes illegal behavior
6796// :167:25: error: use of undefined value here causes illegal behavior
6797// :167:25: error: use of undefined value here causes illegal behavior
6798// :167:25: error: use of undefined value here causes illegal behavior
6799// :167:25: note: when computing vector element at index '1'
6800// :167:25: error: use of undefined value here causes illegal behavior
6801// :167:25: note: when computing vector element at index '1'
6802// :167:25: error: use of undefined value here causes illegal behavior
6803// :167:25: note: when computing vector element at index '1'
6804// :167:25: error: use of undefined value here causes illegal behavior
6805// :167:25: note: when computing vector element at index '1'
6806// :167:25: error: use of undefined value here causes illegal behavior
6807// :167:25: note: when computing vector element at index '0'
6808// :167:25: error: use of undefined value here causes illegal behavior
6809// :167:25: note: when computing vector element at index '0'
6810// :167:25: error: use of undefined value here causes illegal behavior
6811// :167:25: note: when computing vector element at index '0'
6812// :167:25: error: use of undefined value here causes illegal behavior
6813// :167:25: note: when computing vector element at index '0'
6814// :167:25: error: use of undefined value here causes illegal behavior
6815// :167:25: error: use of undefined value here causes illegal behavior
6816// :167:25: error: use of undefined value here causes illegal behavior
6817// :167:25: error: use of undefined value here causes illegal behavior
6818// :167:25: error: use of undefined value here causes illegal behavior
6819// :167:25: error: use of undefined value here causes illegal behavior
6820// :167:25: error: use of undefined value here causes illegal behavior
6821// :167:25: note: when computing vector element at index '1'
6822// :167:25: error: use of undefined value here causes illegal behavior
6823// :167:25: note: when computing vector element at index '1'
6824// :167:25: error: use of undefined value here causes illegal behavior
6825// :167:25: note: when computing vector element at index '1'
6826// :167:25: error: use of undefined value here causes illegal behavior
6827// :167:25: note: when computing vector element at index '1'
6828// :167:25: error: use of undefined value here causes illegal behavior
6829// :167:25: note: when computing vector element at index '0'
6830// :167:25: error: use of undefined value here causes illegal behavior
6831// :167:25: note: when computing vector element at index '0'
6832// :167:25: error: use of undefined value here causes illegal behavior
6833// :167:25: note: when computing vector element at index '0'
6834// :167:25: error: use of undefined value here causes illegal behavior
6835// :167:25: note: when computing vector element at index '0'
6836// :167:25: error: use of undefined value here causes illegal behavior
6837// :167:25: error: use of undefined value here causes illegal behavior
6838// :167:25: error: use of undefined value here causes illegal behavior
6839// :167:25: error: use of undefined value here causes illegal behavior
6840// :167:25: error: use of undefined value here causes illegal behavior
6841// :167:25: error: use of undefined value here causes illegal behavior
6842// :167:25: error: use of undefined value here causes illegal behavior
6843// :167:25: note: when computing vector element at index '1'
6844// :167:25: error: use of undefined value here causes illegal behavior
6845// :167:25: note: when computing vector element at index '1'
6846// :167:25: error: use of undefined value here causes illegal behavior
6847// :167:25: note: when computing vector element at index '1'
6848// :167:25: error: use of undefined value here causes illegal behavior
6849// :167:25: note: when computing vector element at index '1'
6850// :167:25: error: use of undefined value here causes illegal behavior
6851// :167:25: note: when computing vector element at index '0'
6852// :167:25: error: use of undefined value here causes illegal behavior
6853// :167:25: note: when computing vector element at index '0'
6854// :167:25: error: use of undefined value here causes illegal behavior
6855// :167:25: note: when computing vector element at index '0'
6856// :167:25: error: use of undefined value here causes illegal behavior
6857// :167:25: note: when computing vector element at index '0'
6858// :171:25: error: use of undefined value here causes illegal behavior
6859// :171:25: error: use of undefined value here causes illegal behavior
6860// :171:25: error: use of undefined value here causes illegal behavior
6861// :171:25: error: use of undefined value here causes illegal behavior
6862// :171:25: error: use of undefined value here causes illegal behavior
6863// :171:25: error: use of undefined value here causes illegal behavior
6864// :171:25: error: use of undefined value here causes illegal behavior
6865// :171:25: note: when computing vector element at index '1'
6866// :171:25: error: use of undefined value here causes illegal behavior
6867// :171:25: note: when computing vector element at index '1'
6868// :171:25: error: use of undefined value here causes illegal behavior
6869// :171:25: note: when computing vector element at index '1'
6870// :171:25: error: use of undefined value here causes illegal behavior
6871// :171:25: note: when computing vector element at index '1'
6872// :171:25: error: use of undefined value here causes illegal behavior
6873// :171:25: note: when computing vector element at index '0'
6874// :171:25: error: use of undefined value here causes illegal behavior
6875// :171:25: note: when computing vector element at index '0'
6876// :171:25: error: use of undefined value here causes illegal behavior
6877// :171:25: note: when computing vector element at index '0'
6878// :171:25: error: use of undefined value here causes illegal behavior
6879// :171:25: note: when computing vector element at index '0'
6880// :171:25: error: use of undefined value here causes illegal behavior
6881// :171:25: error: use of undefined value here causes illegal behavior
6882// :171:25: error: use of undefined value here causes illegal behavior
6883// :171:25: error: use of undefined value here causes illegal behavior
6884// :171:25: error: use of undefined value here causes illegal behavior
6885// :171:25: error: use of undefined value here causes illegal behavior
6886// :171:25: error: use of undefined value here causes illegal behavior
6887// :171:25: note: when computing vector element at index '1'
6888// :171:25: error: use of undefined value here causes illegal behavior
6889// :171:25: note: when computing vector element at index '1'
6890// :171:25: error: use of undefined value here causes illegal behavior
6891// :171:25: note: when computing vector element at index '1'
6892// :171:25: error: use of undefined value here causes illegal behavior
6893// :171:25: note: when computing vector element at index '1'
6894// :171:25: error: use of undefined value here causes illegal behavior
6895// :171:25: note: when computing vector element at index '0'
6896// :171:25: error: use of undefined value here causes illegal behavior
6897// :171:25: note: when computing vector element at index '0'
6898// :171:25: error: use of undefined value here causes illegal behavior
6899// :171:25: note: when computing vector element at index '0'
6900// :171:25: error: use of undefined value here causes illegal behavior
6901// :171:25: note: when computing vector element at index '0'
6902// :171:25: error: use of undefined value here causes illegal behavior
6903// :171:25: error: use of undefined value here causes illegal behavior
6904// :171:25: error: use of undefined value here causes illegal behavior
6905// :171:25: error: use of undefined value here causes illegal behavior
6906// :171:25: error: use of undefined value here causes illegal behavior
6907// :171:25: error: use of undefined value here causes illegal behavior
6908// :171:25: error: use of undefined value here causes illegal behavior
6909// :171:25: note: when computing vector element at index '1'
6910// :171:25: error: use of undefined value here causes illegal behavior
6911// :171:25: note: when computing vector element at index '1'
6912// :171:25: error: use of undefined value here causes illegal behavior
6913// :171:25: note: when computing vector element at index '1'
6914// :171:25: error: use of undefined value here causes illegal behavior
6915// :171:25: note: when computing vector element at index '1'
6916// :171:25: error: use of undefined value here causes illegal behavior
6917// :171:25: note: when computing vector element at index '0'
6918// :171:25: error: use of undefined value here causes illegal behavior
6919// :171:25: note: when computing vector element at index '0'
6920// :171:25: error: use of undefined value here causes illegal behavior
6921// :171:25: note: when computing vector element at index '0'
6922// :171:25: error: use of undefined value here causes illegal behavior
6923// :171:25: note: when computing vector element at index '0'
6924// :171:25: error: use of undefined value here causes illegal behavior
6925// :171:25: error: use of undefined value here causes illegal behavior
6926// :171:25: error: use of undefined value here causes illegal behavior
6927// :171:25: error: use of undefined value here causes illegal behavior
6928// :171:25: error: use of undefined value here causes illegal behavior
6929// :171:25: error: use of undefined value here causes illegal behavior
6930// :171:25: error: use of undefined value here causes illegal behavior
6931// :171:25: note: when computing vector element at index '1'
6932// :171:25: error: use of undefined value here causes illegal behavior
6933// :171:25: note: when computing vector element at index '1'
6934// :171:25: error: use of undefined value here causes illegal behavior
6935// :171:25: note: when computing vector element at index '1'
6936// :171:25: error: use of undefined value here causes illegal behavior
6937// :171:25: note: when computing vector element at index '1'
6938// :171:25: error: use of undefined value here causes illegal behavior
6939// :171:25: note: when computing vector element at index '0'
6940// :171:25: error: use of undefined value here causes illegal behavior
6941// :171:25: note: when computing vector element at index '0'
6942// :171:25: error: use of undefined value here causes illegal behavior
6943// :171:25: note: when computing vector element at index '0'
6944// :171:25: error: use of undefined value here causes illegal behavior
6945// :171:25: note: when computing vector element at index '0'
6946// :171:25: error: use of undefined value here causes illegal behavior
6947// :171:25: error: use of undefined value here causes illegal behavior
6948// :171:25: error: use of undefined value here causes illegal behavior
6949// :171:25: error: use of undefined value here causes illegal behavior
6950// :171:25: error: use of undefined value here causes illegal behavior
6951// :171:25: error: use of undefined value here causes illegal behavior
6952// :171:25: error: use of undefined value here causes illegal behavior
6953// :171:25: note: when computing vector element at index '1'
6954// :171:25: error: use of undefined value here causes illegal behavior
6955// :171:25: note: when computing vector element at index '1'
6956// :171:25: error: use of undefined value here causes illegal behavior
6957// :171:25: note: when computing vector element at index '1'
6958// :171:25: error: use of undefined value here causes illegal behavior
6959// :171:25: note: when computing vector element at index '1'
6960// :171:25: error: use of undefined value here causes illegal behavior
6961// :171:25: note: when computing vector element at index '0'
6962// :171:25: error: use of undefined value here causes illegal behavior
6963// :171:25: note: when computing vector element at index '0'
6964// :171:25: error: use of undefined value here causes illegal behavior
6965// :171:25: note: when computing vector element at index '0'
6966// :171:25: error: use of undefined value here causes illegal behavior
6967// :171:25: note: when computing vector element at index '0'
6968// :171:25: error: use of undefined value here causes illegal behavior
6969// :171:25: error: use of undefined value here causes illegal behavior
6970// :171:25: error: use of undefined value here causes illegal behavior
6971// :171:25: error: use of undefined value here causes illegal behavior
6972// :171:25: error: use of undefined value here causes illegal behavior
6973// :171:25: error: use of undefined value here causes illegal behavior
6974// :171:25: error: use of undefined value here causes illegal behavior
6975// :171:25: note: when computing vector element at index '1'
6976// :171:25: error: use of undefined value here causes illegal behavior
6977// :171:25: note: when computing vector element at index '1'
6978// :171:25: error: use of undefined value here causes illegal behavior
6979// :171:25: note: when computing vector element at index '1'
6980// :171:25: error: use of undefined value here causes illegal behavior
6981// :171:25: note: when computing vector element at index '1'
6982// :171:25: error: use of undefined value here causes illegal behavior
6983// :171:25: note: when computing vector element at index '0'
6984// :171:25: error: use of undefined value here causes illegal behavior
6985// :171:25: note: when computing vector element at index '0'
6986// :171:25: error: use of undefined value here causes illegal behavior
6987// :171:25: note: when computing vector element at index '0'
6988// :171:25: error: use of undefined value here causes illegal behavior
6989// :171:25: note: when computing vector element at index '0'
6990// :171:25: error: use of undefined value here causes illegal behavior
6991// :171:25: error: use of undefined value here causes illegal behavior
6992// :171:25: error: use of undefined value here causes illegal behavior
6993// :171:25: error: use of undefined value here causes illegal behavior
6994// :171:25: error: use of undefined value here causes illegal behavior
6995// :171:25: error: use of undefined value here causes illegal behavior
6996// :171:25: error: use of undefined value here causes illegal behavior
6997// :171:25: note: when computing vector element at index '1'
6998// :171:25: error: use of undefined value here causes illegal behavior
6999// :171:25: note: when computing vector element at index '1'
7000// :171:25: error: use of undefined value here causes illegal behavior
7001// :171:25: note: when computing vector element at index '1'
7002// :171:25: error: use of undefined value here causes illegal behavior
7003// :171:25: note: when computing vector element at index '1'
7004// :171:25: error: use of undefined value here causes illegal behavior
7005// :171:25: note: when computing vector element at index '0'
7006// :171:25: error: use of undefined value here causes illegal behavior
7007// :171:25: note: when computing vector element at index '0'
7008// :171:25: error: use of undefined value here causes illegal behavior
7009// :171:25: note: when computing vector element at index '0'
7010// :171:25: error: use of undefined value here causes illegal behavior
7011// :171:25: note: when computing vector element at index '0'
7012// :171:25: error: use of undefined value here causes illegal behavior
7013// :171:25: error: use of undefined value here causes illegal behavior
7014// :171:25: error: use of undefined value here causes illegal behavior
7015// :171:25: error: use of undefined value here causes illegal behavior
7016// :171:25: error: use of undefined value here causes illegal behavior
7017// :171:25: error: use of undefined value here causes illegal behavior
7018// :171:25: error: use of undefined value here causes illegal behavior
7019// :171:25: note: when computing vector element at index '1'
7020// :171:25: error: use of undefined value here causes illegal behavior
7021// :171:25: note: when computing vector element at index '1'
7022// :171:25: error: use of undefined value here causes illegal behavior
7023// :171:25: note: when computing vector element at index '1'
7024// :171:25: error: use of undefined value here causes illegal behavior
7025// :171:25: note: when computing vector element at index '1'
7026// :171:25: error: use of undefined value here causes illegal behavior
7027// :171:25: note: when computing vector element at index '0'
7028// :171:25: error: use of undefined value here causes illegal behavior
7029// :171:25: note: when computing vector element at index '0'
7030// :171:25: error: use of undefined value here causes illegal behavior
7031// :171:25: note: when computing vector element at index '0'
7032// :171:25: error: use of undefined value here causes illegal behavior
7033// :171:25: note: when computing vector element at index '0'
7034// :171:25: error: use of undefined value here causes illegal behavior
7035// :171:25: error: use of undefined value here causes illegal behavior
7036// :171:25: error: use of undefined value here causes illegal behavior
7037// :171:25: error: use of undefined value here causes illegal behavior
7038// :171:25: error: use of undefined value here causes illegal behavior
7039// :171:25: error: use of undefined value here causes illegal behavior
7040// :171:25: error: use of undefined value here causes illegal behavior
7041// :171:25: note: when computing vector element at index '1'
7042// :171:25: error: use of undefined value here causes illegal behavior
7043// :171:25: note: when computing vector element at index '1'
7044// :171:25: error: use of undefined value here causes illegal behavior
7045// :171:25: note: when computing vector element at index '1'
7046// :171:25: error: use of undefined value here causes illegal behavior
7047// :171:25: note: when computing vector element at index '1'
7048// :171:25: error: use of undefined value here causes illegal behavior
7049// :171:25: note: when computing vector element at index '0'
7050// :171:25: error: use of undefined value here causes illegal behavior
7051// :171:25: note: when computing vector element at index '0'
7052// :171:25: error: use of undefined value here causes illegal behavior
7053// :171:25: note: when computing vector element at index '0'
7054// :171:25: error: use of undefined value here causes illegal behavior
7055// :171:25: note: when computing vector element at index '0'
7056// :171:25: error: use of undefined value here causes illegal behavior
7057// :171:25: error: use of undefined value here causes illegal behavior
7058// :171:25: error: use of undefined value here causes illegal behavior
7059// :171:25: error: use of undefined value here causes illegal behavior
7060// :171:25: error: use of undefined value here causes illegal behavior
7061// :171:25: error: use of undefined value here causes illegal behavior
7062// :171:25: error: use of undefined value here causes illegal behavior
7063// :171:25: note: when computing vector element at index '1'
7064// :171:25: error: use of undefined value here causes illegal behavior
7065// :171:25: note: when computing vector element at index '1'
7066// :171:25: error: use of undefined value here causes illegal behavior
7067// :171:25: note: when computing vector element at index '1'
7068// :171:25: error: use of undefined value here causes illegal behavior
7069// :171:25: note: when computing vector element at index '1'
7070// :171:25: error: use of undefined value here causes illegal behavior
7071// :171:25: note: when computing vector element at index '0'
7072// :171:25: error: use of undefined value here causes illegal behavior
7073// :171:25: note: when computing vector element at index '0'
7074// :171:25: error: use of undefined value here causes illegal behavior
7075// :171:25: note: when computing vector element at index '0'
7076// :171:25: error: use of undefined value here causes illegal behavior
7077// :171:25: note: when computing vector element at index '0'
7078// :171:25: error: use of undefined value here causes illegal behavior
7079// :171:25: error: use of undefined value here causes illegal behavior
7080// :171:25: error: use of undefined value here causes illegal behavior
7081// :171:25: error: use of undefined value here causes illegal behavior
7082// :171:25: error: use of undefined value here causes illegal behavior
7083// :171:25: error: use of undefined value here causes illegal behavior
7084// :171:25: error: use of undefined value here causes illegal behavior
7085// :171:25: note: when computing vector element at index '1'
7086// :171:25: error: use of undefined value here causes illegal behavior
7087// :171:25: note: when computing vector element at index '1'
7088// :171:25: error: use of undefined value here causes illegal behavior
7089// :171:25: note: when computing vector element at index '1'
7090// :171:25: error: use of undefined value here causes illegal behavior
7091// :171:25: note: when computing vector element at index '1'
7092// :171:25: error: use of undefined value here causes illegal behavior
7093// :171:25: note: when computing vector element at index '0'
7094// :171:25: error: use of undefined value here causes illegal behavior
7095// :171:25: note: when computing vector element at index '0'
7096// :171:25: error: use of undefined value here causes illegal behavior
7097// :171:25: note: when computing vector element at index '0'
7098// :171:25: error: use of undefined value here causes illegal behavior
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'
71067412// :183:17: error: use of undefined value here causes illegal behavior
71077413// :183:17: error: use of undefined value here causes illegal behavior
71087414// :183:17: error: use of undefined value here causes illegal behavior
......@@ -7259,315 +7565,3 @@ const std = @import("std");
72597565// :183:21: note: when computing vector element at index '0'
72607566// :183:21: error: use of undefined value here causes illegal behavior
72617567// :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'