Commit 79756e681d
Changed files (3)
src
test
cases
compile_errors
src/Zcu/PerThread.zig
@@ -3668,8 +3668,8 @@ pub fn unionValue(pt: Zcu.PerThread, union_ty: Type, tag: Value, val: Value) All
pub fn aggregateValue(pt: Zcu.PerThread, ty: Type, elems: []const InternPool.Index) Allocator.Error!Value {
for (elems) |elem| {
if (!Value.fromInterned(elem).isUndef(pt.zcu)) break;
- } else if (elems.len > 0) { // all-undef
- return pt.undefValue(ty);
+ } else if (elems.len > 0) {
+ return pt.undefValue(ty); // all-undef
}
return .fromInterned(try pt.intern(.{ .aggregate = .{
.ty = ty.toIntern(),
src/Sema.zig
@@ -14859,7 +14859,7 @@ fn zirDiv(sema: *Sema, block: *Block, inst: Zir.Inst.Index) CompileError!Air.Ins
try sema.addDivByZeroSafety(block, src, resolved_type, maybe_rhs_val, casted_rhs, is_int);
}
- const air_tag = if (is_int) blk: {
+ const air_tag: Air.Inst.Tag = if (is_int) blk: {
if (lhs_ty.isSignedInt(zcu) or rhs_ty.isSignedInt(zcu)) {
return sema.fail(
block,
@@ -14868,10 +14868,10 @@ fn zirDiv(sema: *Sema, block: *Block, inst: Zir.Inst.Index) CompileError!Air.Ins
.{ lhs_ty.fmt(pt), rhs_ty.fmt(pt) },
);
}
- break :blk Air.Inst.Tag.div_trunc;
+ break :blk .div_trunc;
} else switch (block.float_mode) {
- .optimized => Air.Inst.Tag.div_float_optimized,
- .strict => Air.Inst.Tag.div_float,
+ .optimized => .div_float_optimized,
+ .strict => .div_float,
};
return block.addBinOp(air_tag, casted_lhs, casted_rhs);
}
test/cases/compile_errors/undef_arith_is_illegal.zig
@@ -4,7 +4,7 @@
comptime {
// Total expected errors:
- // 29*22*6 + 26*22*5 = 6688
+ // 29*15*6 + 26*14*5 = 4256
testType(u8);
testType(i8);
@@ -21,28 +21,22 @@ comptime {
}
fn testType(comptime Scalar: type) void {
- testInner(Scalar, undefined, 1);
- testInner(Scalar, undefined, undefined);
- testInner(@Vector(2, Scalar), undefined, undefined);
- testInner(@Vector(2, Scalar), undefined, .{ 1, 2 });
- testInner(@Vector(2, Scalar), undefined, .{ 1, undefined });
- testInner(@Vector(2, Scalar), undefined, .{ undefined, 2 });
- testInner(@Vector(2, Scalar), undefined, .{ undefined, undefined });
- testInner(@Vector(2, Scalar), .{ 1, undefined }, undefined);
- testInner(@Vector(2, Scalar), .{ 1, undefined }, .{ 1, 2 });
- testInner(@Vector(2, Scalar), .{ 1, undefined }, .{ 1, undefined });
- testInner(@Vector(2, Scalar), .{ 1, undefined }, .{ undefined, 2 });
- testInner(@Vector(2, Scalar), .{ 1, undefined }, .{ undefined, undefined });
- testInner(@Vector(2, Scalar), .{ undefined, 2 }, undefined);
- testInner(@Vector(2, Scalar), .{ undefined, 2 }, .{ 1, 2 });
- testInner(@Vector(2, Scalar), .{ undefined, 2 }, .{ 1, undefined });
- testInner(@Vector(2, Scalar), .{ undefined, 2 }, .{ undefined, 2 });
- testInner(@Vector(2, Scalar), .{ undefined, 2 }, .{ undefined, undefined });
- testInner(@Vector(2, Scalar), .{ undefined, undefined }, undefined);
- testInner(@Vector(2, Scalar), .{ undefined, undefined }, .{ 1, 2 });
- testInner(@Vector(2, Scalar), .{ undefined, undefined }, .{ 1, undefined });
- testInner(@Vector(2, Scalar), .{ undefined, undefined }, .{ undefined, 2 });
+ // zig fmt: off
+ testInner(Scalar, undefined, 1 );
+ testInner(Scalar, undefined, undefined );
testInner(@Vector(2, Scalar), .{ undefined, undefined }, .{ undefined, undefined });
+ testInner(@Vector(2, Scalar), .{ undefined, undefined }, .{ 1, 2 });
+ testInner(@Vector(2, Scalar), .{ undefined, undefined }, .{ 1, undefined });
+ testInner(@Vector(2, Scalar), .{ undefined, undefined }, .{ undefined, 2 });
+ testInner(@Vector(2, Scalar), .{ 1, undefined }, .{ undefined, undefined });
+ testInner(@Vector(2, Scalar), .{ 1, undefined }, .{ 1, 2 });
+ testInner(@Vector(2, Scalar), .{ 1, undefined }, .{ 1, undefined });
+ testInner(@Vector(2, Scalar), .{ 1, undefined }, .{ undefined, 2 });
+ testInner(@Vector(2, Scalar), .{ undefined, 2 }, .{ undefined, undefined });
+ testInner(@Vector(2, Scalar), .{ undefined, 2 }, .{ 1, 2 });
+ testInner(@Vector(2, Scalar), .{ undefined, 2 }, .{ 1, undefined });
+ testInner(@Vector(2, Scalar), .{ undefined, 2 }, .{ undefined, 2 });
+ // zig fmt: on
}
/// 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 {
const a: T = maybe_defined;
var b: T = maybe_defined;
- // undef LHS, comptime-known LHS
+ // undef LHS, comptime-known RHS
comptime {
@setFloatMode(mode);
_ = u / a;
@@ -95,7 +89,7 @@ fn testInner(comptime T: type, comptime u: T, comptime maybe_defined: T) void {
_ = @rem(u, a);
}
- // undef LHS, runtime-known LHS
+ // undef LHS, runtime-known RHS
comptime {
@setFloatMode(mode);
_ = u / b;
@@ -195,6914 +189,7226 @@ const std = @import("std");
// error
//
-// :71:17: error: use of undefined value here causes illegal behavior
-// :71:17: error: use of undefined value here causes illegal behavior
-// :71:17: error: use of undefined value here causes illegal behavior
-// :71:17: note: when computing vector element at index '0'
-// :71:17: error: use of undefined value here causes illegal behavior
-// :71:17: note: when computing vector element at index '0'
-// :71:17: error: use of undefined value here causes illegal behavior
-// :71:17: note: when computing vector element at index '0'
-// :71:17: error: use of undefined value here causes illegal behavior
-// :71:17: note: when computing vector element at index '0'
-// :71:17: error: use of undefined value here causes illegal behavior
-// :71:17: note: when computing vector element at index '1'
-// :71:17: error: use of undefined value here causes illegal behavior
-// :71:17: note: when computing vector element at index '1'
-// :71:17: error: use of undefined value here causes illegal behavior
-// :71:17: note: when computing vector element at index '0'
-// :71:17: error: use of undefined value here causes illegal behavior
-// :71:17: note: when computing vector element at index '0'
-// :71:17: error: use of undefined value here causes illegal behavior
-// :71:17: note: when computing vector element at index '0'
-// :71:17: error: use of undefined value here causes illegal behavior
-// :71:17: note: when computing vector element at index '0'
-// :71:17: error: use of undefined value here causes illegal behavior
-// :71:17: error: use of undefined value here causes illegal behavior
-// :71:17: error: use of undefined value here causes illegal behavior
-// :71:17: note: when computing vector element at index '0'
-// :71:17: error: use of undefined value here causes illegal behavior
-// :71:17: note: when computing vector element at index '0'
-// :71:17: error: use of undefined value here causes illegal behavior
-// :71:17: note: when computing vector element at index '0'
-// :71:17: error: use of undefined value here causes illegal behavior
-// :71:17: note: when computing vector element at index '0'
-// :71:17: error: use of undefined value here causes illegal behavior
-// :71:17: note: when computing vector element at index '1'
-// :71:17: error: use of undefined value here causes illegal behavior
-// :71:17: note: when computing vector element at index '1'
-// :71:17: error: use of undefined value here causes illegal behavior
-// :71:17: note: when computing vector element at index '0'
-// :71:17: error: use of undefined value here causes illegal behavior
-// :71:17: note: when computing vector element at index '0'
-// :71:17: error: use of undefined value here causes illegal behavior
-// :71:17: note: when computing vector element at index '0'
-// :71:17: error: use of undefined value here causes illegal behavior
-// :71:17: note: when computing vector element at index '0'
-// :71:17: error: use of undefined value here causes illegal behavior
-// :71:17: error: use of undefined value here causes illegal behavior
-// :71:17: error: use of undefined value here causes illegal behavior
-// :71:17: note: when computing vector element at index '0'
-// :71:17: error: use of undefined value here causes illegal behavior
-// :71:17: note: when computing vector element at index '0'
-// :71:17: error: use of undefined value here causes illegal behavior
-// :71:17: note: when computing vector element at index '0'
-// :71:17: error: use of undefined value here causes illegal behavior
-// :71:17: note: when computing vector element at index '0'
-// :71:17: error: use of undefined value here causes illegal behavior
-// :71:17: note: when computing vector element at index '1'
-// :71:17: error: use of undefined value here causes illegal behavior
-// :71:17: note: when computing vector element at index '1'
-// :71:17: error: use of undefined value here causes illegal behavior
-// :71:17: note: when computing vector element at index '0'
-// :71:17: error: use of undefined value here causes illegal behavior
-// :71:17: note: when computing vector element at index '0'
-// :71:17: error: use of undefined value here causes illegal behavior
-// :71:17: note: when computing vector element at index '0'
-// :71:17: error: use of undefined value here causes illegal behavior
-// :71:17: note: when computing vector element at index '0'
-// :71:17: error: use of undefined value here causes illegal behavior
-// :71:17: error: use of undefined value here causes illegal behavior
-// :71:17: error: use of undefined value here causes illegal behavior
-// :71:17: note: when computing vector element at index '0'
-// :71:17: error: use of undefined value here causes illegal behavior
-// :71:17: note: when computing vector element at index '0'
-// :71:17: error: use of undefined value here causes illegal behavior
-// :71:17: note: when computing vector element at index '0'
-// :71:17: error: use of undefined value here causes illegal behavior
-// :71:17: note: when computing vector element at index '0'
-// :71:17: error: use of undefined value here causes illegal behavior
-// :71:17: note: when computing vector element at index '1'
-// :71:17: error: use of undefined value here causes illegal behavior
-// :71:17: note: when computing vector element at index '1'
-// :71:17: error: use of undefined value here causes illegal behavior
-// :71:17: note: when computing vector element at index '0'
-// :71:17: error: use of undefined value here causes illegal behavior
-// :71:17: note: when computing vector element at index '0'
-// :71:17: error: use of undefined value here causes illegal behavior
-// :71:17: note: when computing vector element at index '0'
-// :71:17: error: use of undefined value here causes illegal behavior
-// :71:17: note: when computing vector element at index '0'
-// :71:17: error: use of undefined value here causes illegal behavior
-// :71:17: error: use of undefined value here causes illegal behavior
-// :71:17: error: use of undefined value here causes illegal behavior
-// :71:17: note: when computing vector element at index '0'
-// :71:17: error: use of undefined value here causes illegal behavior
-// :71:17: note: when computing vector element at index '0'
-// :71:17: error: use of undefined value here causes illegal behavior
-// :71:17: note: when computing vector element at index '0'
-// :71:17: error: use of undefined value here causes illegal behavior
-// :71:17: note: when computing vector element at index '0'
-// :71:17: error: use of undefined value here causes illegal behavior
-// :71:17: note: when computing vector element at index '1'
-// :71:17: error: use of undefined value here causes illegal behavior
-// :71:17: note: when computing vector element at index '1'
-// :71:17: error: use of undefined value here causes illegal behavior
-// :71:17: note: when computing vector element at index '0'
-// :71:17: error: use of undefined value here causes illegal behavior
-// :71:17: note: when computing vector element at index '0'
-// :71:17: error: use of undefined value here causes illegal behavior
-// :71:17: note: when computing vector element at index '0'
-// :71:17: error: use of undefined value here causes illegal behavior
-// :71:17: note: when computing vector element at index '0'
-// :71:17: error: use of undefined value here causes illegal behavior
-// :71:17: error: use of undefined value here causes illegal behavior
-// :71:17: error: use of undefined value here causes illegal behavior
-// :71:17: note: when computing vector element at index '0'
-// :71:17: error: use of undefined value here causes illegal behavior
-// :71:17: note: when computing vector element at index '0'
-// :71:17: error: use of undefined value here causes illegal behavior
-// :71:17: note: when computing vector element at index '0'
-// :71:17: error: use of undefined value here causes illegal behavior
-// :71:17: note: when computing vector element at index '0'
-// :71:17: error: use of undefined value here causes illegal behavior
-// :71:17: note: when computing vector element at index '1'
-// :71:17: error: use of undefined value here causes illegal behavior
-// :71:17: note: when computing vector element at index '1'
-// :71:17: error: use of undefined value here causes illegal behavior
-// :71:17: note: when computing vector element at index '0'
-// :71:17: error: use of undefined value here causes illegal behavior
-// :71:17: note: when computing vector element at index '0'
-// :71:17: error: use of undefined value here causes illegal behavior
-// :71:17: note: when computing vector element at index '0'
-// :71:17: error: use of undefined value here causes illegal behavior
-// :71:17: note: when computing vector element at index '0'
-// :71:17: error: use of undefined value here causes illegal behavior
-// :71:17: error: use of undefined value here causes illegal behavior
-// :71:17: error: use of undefined value here causes illegal behavior
-// :71:17: note: when computing vector element at index '0'
-// :71:17: error: use of undefined value here causes illegal behavior
-// :71:17: note: when computing vector element at index '0'
-// :71:17: error: use of undefined value here causes illegal behavior
-// :71:17: note: when computing vector element at index '0'
-// :71:17: error: use of undefined value here causes illegal behavior
-// :71:17: note: when computing vector element at index '0'
-// :71:17: error: use of undefined value here causes illegal behavior
-// :71:17: note: when computing vector element at index '1'
-// :71:17: error: use of undefined value here causes illegal behavior
-// :71:17: note: when computing vector element at index '1'
-// :71:17: error: use of undefined value here causes illegal behavior
-// :71:17: note: when computing vector element at index '0'
-// :71:17: error: use of undefined value here causes illegal behavior
-// :71:17: note: when computing vector element at index '0'
-// :71:17: error: use of undefined value here causes illegal behavior
-// :71:17: note: when computing vector element at index '0'
-// :71:17: error: use of undefined value here causes illegal behavior
-// :71:17: note: when computing vector element at index '0'
-// :71:17: error: use of undefined value here causes illegal behavior
-// :71:17: error: use of undefined value here causes illegal behavior
-// :71:17: error: use of undefined value here causes illegal behavior
-// :71:17: note: when computing vector element at index '0'
-// :71:17: error: use of undefined value here causes illegal behavior
-// :71:17: note: when computing vector element at index '0'
-// :71:17: error: use of undefined value here causes illegal behavior
-// :71:17: note: when computing vector element at index '0'
-// :71:17: error: use of undefined value here causes illegal behavior
-// :71:17: note: when computing vector element at index '0'
-// :71:17: error: use of undefined value here causes illegal behavior
-// :71:17: note: when computing vector element at index '1'
-// :71:17: error: use of undefined value here causes illegal behavior
-// :71:17: note: when computing vector element at index '1'
-// :71:17: error: use of undefined value here causes illegal behavior
-// :71:17: note: when computing vector element at index '0'
-// :71:17: error: use of undefined value here causes illegal behavior
-// :71:17: note: when computing vector element at index '0'
-// :71:17: error: use of undefined value here causes illegal behavior
-// :71:17: note: when computing vector element at index '0'
-// :71:17: error: use of undefined value here causes illegal behavior
-// :71:17: note: when computing vector element at index '0'
-// :71:17: error: use of undefined value here causes illegal behavior
-// :71:17: error: use of undefined value here causes illegal behavior
-// :71:17: error: use of undefined value here causes illegal behavior
-// :71:17: note: when computing vector element at index '0'
-// :71:17: error: use of undefined value here causes illegal behavior
-// :71:17: note: when computing vector element at index '0'
-// :71:17: error: use of undefined value here causes illegal behavior
-// :71:17: note: when computing vector element at index '0'
-// :71:17: error: use of undefined value here causes illegal behavior
-// :71:17: note: when computing vector element at index '0'
-// :71:17: error: use of undefined value here causes illegal behavior
-// :71:17: note: when computing vector element at index '1'
-// :71:17: error: use of undefined value here causes illegal behavior
-// :71:17: note: when computing vector element at index '1'
-// :71:17: error: use of undefined value here causes illegal behavior
-// :71:17: note: when computing vector element at index '0'
-// :71:17: error: use of undefined value here causes illegal behavior
-// :71:17: note: when computing vector element at index '0'
-// :71:17: error: use of undefined value here causes illegal behavior
-// :71:17: note: when computing vector element at index '0'
-// :71:17: error: use of undefined value here causes illegal behavior
-// :71:17: note: when computing vector element at index '0'
-// :71:17: error: use of undefined value here causes illegal behavior
-// :71:17: error: use of undefined value here causes illegal behavior
-// :71:17: error: use of undefined value here causes illegal behavior
-// :71:17: note: when computing vector element at index '0'
-// :71:17: error: use of undefined value here causes illegal behavior
-// :71:17: note: when computing vector element at index '0'
-// :71:17: error: use of undefined value here causes illegal behavior
-// :71:17: note: when computing vector element at index '0'
-// :71:17: error: use of undefined value here causes illegal behavior
-// :71:17: note: when computing vector element at index '0'
-// :71:17: error: use of undefined value here causes illegal behavior
-// :71:17: note: when computing vector element at index '1'
-// :71:17: error: use of undefined value here causes illegal behavior
-// :71:17: note: when computing vector element at index '1'
-// :71:17: error: use of undefined value here causes illegal behavior
-// :71:17: note: when computing vector element at index '0'
-// :71:17: error: use of undefined value here causes illegal behavior
-// :71:17: note: when computing vector element at index '0'
-// :71:17: error: use of undefined value here causes illegal behavior
-// :71:17: note: when computing vector element at index '0'
-// :71:17: error: use of undefined value here causes illegal behavior
-// :71:17: note: when computing vector element at index '0'
-// :71:17: error: use of undefined value here causes illegal behavior
-// :71:17: error: use of undefined value here causes illegal behavior
-// :71:17: error: use of undefined value here causes illegal behavior
-// :71:17: note: when computing vector element at index '0'
-// :71:17: error: use of undefined value here causes illegal behavior
-// :71:17: note: when computing vector element at index '0'
-// :71:17: error: use of undefined value here causes illegal behavior
-// :71:17: note: when computing vector element at index '0'
-// :71:17: error: use of undefined value here causes illegal behavior
-// :71:17: note: when computing vector element at index '0'
-// :71:17: error: use of undefined value here causes illegal behavior
-// :71:17: note: when computing vector element at index '1'
-// :71:17: error: use of undefined value here causes illegal behavior
-// :71:17: note: when computing vector element at index '1'
-// :71:17: error: use of undefined value here causes illegal behavior
-// :71:17: note: when computing vector element at index '0'
-// :71:17: error: use of undefined value here causes illegal behavior
-// :71:17: note: when computing vector element at index '0'
-// :71:17: error: use of undefined value here causes illegal behavior
-// :71:17: note: when computing vector element at index '0'
-// :71:17: error: use of undefined value here causes illegal behavior
-// :71:17: note: when computing vector element at index '0'
-// :71:21: error: use of undefined value here causes illegal behavior
-// :71:21: note: when computing vector element at index '0'
-// :71:21: error: use of undefined value here causes illegal behavior
-// :71:21: note: when computing vector element at index '0'
-// :71:21: error: use of undefined value here causes illegal behavior
-// :71:21: note: when computing vector element at index '0'
-// :71:21: error: use of undefined value here causes illegal behavior
-// :71:21: note: when computing vector element at index '0'
-// :71:21: error: use of undefined value here causes illegal behavior
-// :71:21: note: when computing vector element at index '0'
-// :71:21: error: use of undefined value here causes illegal behavior
-// :71:21: note: when computing vector element at index '0'
-// :71:21: error: use of undefined value here causes illegal behavior
-// :71:21: note: when computing vector element at index '0'
-// :71:21: error: use of undefined value here causes illegal behavior
-// :71:21: note: when computing vector element at index '0'
-// :71:21: error: use of undefined value here causes illegal behavior
-// :71:21: note: when computing vector element at index '0'
-// :71:21: error: use of undefined value here causes illegal behavior
-// :71:21: note: when computing vector element at index '0'
-// :71:21: error: use of undefined value here causes illegal behavior
-// :71:21: note: when computing vector element at index '0'
-// :71:21: error: use of undefined value here causes illegal behavior
-// :71:21: note: when computing vector element at index '0'
-// :71:21: error: use of undefined value here causes illegal behavior
-// :71:21: note: when computing vector element at index '0'
-// :71:21: error: use of undefined value here causes illegal behavior
-// :71:21: note: when computing vector element at index '0'
-// :71:21: error: use of undefined value here causes illegal behavior
-// :71:21: note: when computing vector element at index '0'
-// :71:21: error: use of undefined value here causes illegal behavior
-// :71:21: note: when computing vector element at index '0'
-// :71:21: error: use of undefined value here causes illegal behavior
-// :71:21: note: when computing vector element at index '0'
-// :71:21: error: use of undefined value here causes illegal behavior
-// :71:21: note: when computing vector element at index '0'
-// :71:21: error: use of undefined value here causes illegal behavior
-// :71:21: note: when computing vector element at index '0'
-// :71:21: error: use of undefined value here causes illegal behavior
-// :71:21: note: when computing vector element at index '0'
-// :71:21: error: use of undefined value here causes illegal behavior
-// :71:21: note: when computing vector element at index '0'
-// :71:21: error: use of undefined value here causes illegal behavior
-// :71:21: note: when computing vector element at index '0'
-// :75:27: error: use of undefined value here causes illegal behavior
-// :75:27: error: use of undefined value here causes illegal behavior
-// :75:27: error: use of undefined value here causes illegal behavior
-// :75:27: note: when computing vector element at index '0'
-// :75:27: error: use of undefined value here causes illegal behavior
-// :75:27: note: when computing vector element at index '0'
-// :75:27: error: use of undefined value here causes illegal behavior
-// :75:27: note: when computing vector element at index '0'
-// :75:27: error: use of undefined value here causes illegal behavior
-// :75:27: note: when computing vector element at index '0'
-// :75:27: error: use of undefined value here causes illegal behavior
-// :75:27: note: when computing vector element at index '1'
-// :75:27: error: use of undefined value here causes illegal behavior
-// :75:27: note: when computing vector element at index '1'
-// :75:27: error: use of undefined value here causes illegal behavior
-// :75:27: note: when computing vector element at index '0'
-// :75:27: error: use of undefined value here causes illegal behavior
-// :75:27: note: when computing vector element at index '0'
-// :75:27: error: use of undefined value here causes illegal behavior
-// :75:27: note: when computing vector element at index '0'
-// :75:27: error: use of undefined value here causes illegal behavior
-// :75:27: note: when computing vector element at index '0'
-// :75:27: error: use of undefined value here causes illegal behavior
-// :75:27: error: use of undefined value here causes illegal behavior
-// :75:27: error: use of undefined value here causes illegal behavior
-// :75:27: note: when computing vector element at index '0'
-// :75:27: error: use of undefined value here causes illegal behavior
-// :75:27: note: when computing vector element at index '0'
-// :75:27: error: use of undefined value here causes illegal behavior
-// :75:27: note: when computing vector element at index '0'
-// :75:27: error: use of undefined value here causes illegal behavior
-// :75:27: note: when computing vector element at index '0'
-// :75:27: error: use of undefined value here causes illegal behavior
-// :75:27: note: when computing vector element at index '1'
-// :75:27: error: use of undefined value here causes illegal behavior
-// :75:27: note: when computing vector element at index '1'
-// :75:27: error: use of undefined value here causes illegal behavior
-// :75:27: note: when computing vector element at index '0'
-// :75:27: error: use of undefined value here causes illegal behavior
-// :75:27: note: when computing vector element at index '0'
-// :75:27: error: use of undefined value here causes illegal behavior
-// :75:27: note: when computing vector element at index '0'
-// :75:27: error: use of undefined value here causes illegal behavior
-// :75:27: note: when computing vector element at index '0'
-// :75:27: error: use of undefined value here causes illegal behavior
-// :75:27: error: use of undefined value here causes illegal behavior
-// :75:27: error: use of undefined value here causes illegal behavior
-// :75:27: note: when computing vector element at index '0'
-// :75:27: error: use of undefined value here causes illegal behavior
-// :75:27: note: when computing vector element at index '0'
-// :75:27: error: use of undefined value here causes illegal behavior
-// :75:27: note: when computing vector element at index '0'
-// :75:27: error: use of undefined value here causes illegal behavior
-// :75:27: note: when computing vector element at index '0'
-// :75:27: error: use of undefined value here causes illegal behavior
-// :75:27: note: when computing vector element at index '1'
-// :75:27: error: use of undefined value here causes illegal behavior
-// :75:27: note: when computing vector element at index '1'
-// :75:27: error: use of undefined value here causes illegal behavior
-// :75:27: note: when computing vector element at index '0'
-// :75:27: error: use of undefined value here causes illegal behavior
-// :75:27: note: when computing vector element at index '0'
-// :75:27: error: use of undefined value here causes illegal behavior
-// :75:27: note: when computing vector element at index '0'
-// :75:27: error: use of undefined value here causes illegal behavior
-// :75:27: note: when computing vector element at index '0'
-// :75:27: error: use of undefined value here causes illegal behavior
-// :75:27: error: use of undefined value here causes illegal behavior
-// :75:27: error: use of undefined value here causes illegal behavior
-// :75:27: note: when computing vector element at index '0'
-// :75:27: error: use of undefined value here causes illegal behavior
-// :75:27: note: when computing vector element at index '0'
-// :75:27: error: use of undefined value here causes illegal behavior
-// :75:27: note: when computing vector element at index '0'
-// :75:27: error: use of undefined value here causes illegal behavior
-// :75:27: note: when computing vector element at index '0'
-// :75:27: error: use of undefined value here causes illegal behavior
-// :75:27: note: when computing vector element at index '1'
-// :75:27: error: use of undefined value here causes illegal behavior
-// :75:27: note: when computing vector element at index '1'
-// :75:27: error: use of undefined value here causes illegal behavior
-// :75:27: note: when computing vector element at index '0'
-// :75:27: error: use of undefined value here causes illegal behavior
-// :75:27: note: when computing vector element at index '0'
-// :75:27: error: use of undefined value here causes illegal behavior
-// :75:27: note: when computing vector element at index '0'
-// :75:27: error: use of undefined value here causes illegal behavior
-// :75:27: note: when computing vector element at index '0'
-// :75:27: error: use of undefined value here causes illegal behavior
-// :75:27: error: use of undefined value here causes illegal behavior
-// :75:27: error: use of undefined value here causes illegal behavior
-// :75:27: note: when computing vector element at index '0'
-// :75:27: error: use of undefined value here causes illegal behavior
-// :75:27: note: when computing vector element at index '0'
-// :75:27: error: use of undefined value here causes illegal behavior
-// :75:27: note: when computing vector element at index '0'
-// :75:27: error: use of undefined value here causes illegal behavior
-// :75:27: note: when computing vector element at index '0'
-// :75:27: error: use of undefined value here causes illegal behavior
-// :75:27: note: when computing vector element at index '1'
-// :75:27: error: use of undefined value here causes illegal behavior
-// :75:27: note: when computing vector element at index '1'
-// :75:27: error: use of undefined value here causes illegal behavior
-// :75:27: note: when computing vector element at index '0'
-// :75:27: error: use of undefined value here causes illegal behavior
-// :75:27: note: when computing vector element at index '0'
-// :75:27: error: use of undefined value here causes illegal behavior
-// :75:27: note: when computing vector element at index '0'
-// :75:27: error: use of undefined value here causes illegal behavior
-// :75:27: note: when computing vector element at index '0'
-// :75:27: error: use of undefined value here causes illegal behavior
-// :75:27: error: use of undefined value here causes illegal behavior
-// :75:27: error: use of undefined value here causes illegal behavior
-// :75:27: note: when computing vector element at index '0'
-// :75:27: error: use of undefined value here causes illegal behavior
-// :75:27: note: when computing vector element at index '0'
-// :75:27: error: use of undefined value here causes illegal behavior
-// :75:27: note: when computing vector element at index '0'
-// :75:27: error: use of undefined value here causes illegal behavior
-// :75:27: note: when computing vector element at index '0'
-// :75:27: error: use of undefined value here causes illegal behavior
-// :75:27: note: when computing vector element at index '1'
-// :75:27: error: use of undefined value here causes illegal behavior
-// :75:27: note: when computing vector element at index '1'
-// :75:27: error: use of undefined value here causes illegal behavior
-// :75:27: note: when computing vector element at index '0'
-// :75:27: error: use of undefined value here causes illegal behavior
-// :75:27: note: when computing vector element at index '0'
-// :75:27: error: use of undefined value here causes illegal behavior
-// :75:27: note: when computing vector element at index '0'
-// :75:27: error: use of undefined value here causes illegal behavior
-// :75:27: note: when computing vector element at index '0'
-// :75:27: error: use of undefined value here causes illegal behavior
-// :75:27: error: use of undefined value here causes illegal behavior
-// :75:27: error: use of undefined value here causes illegal behavior
-// :75:27: note: when computing vector element at index '0'
-// :75:27: error: use of undefined value here causes illegal behavior
-// :75:27: note: when computing vector element at index '0'
-// :75:27: error: use of undefined value here causes illegal behavior
-// :75:27: note: when computing vector element at index '0'
-// :75:27: error: use of undefined value here causes illegal behavior
-// :75:27: note: when computing vector element at index '0'
-// :75:27: error: use of undefined value here causes illegal behavior
-// :75:27: note: when computing vector element at index '1'
-// :75:27: error: use of undefined value here causes illegal behavior
-// :75:27: note: when computing vector element at index '1'
-// :75:27: error: use of undefined value here causes illegal behavior
-// :75:27: note: when computing vector element at index '0'
-// :75:27: error: use of undefined value here causes illegal behavior
-// :75:27: note: when computing vector element at index '0'
-// :75:27: error: use of undefined value here causes illegal behavior
-// :75:27: note: when computing vector element at index '0'
-// :75:27: error: use of undefined value here causes illegal behavior
-// :75:27: note: when computing vector element at index '0'
-// :75:27: error: use of undefined value here causes illegal behavior
-// :75:27: error: use of undefined value here causes illegal behavior
-// :75:27: error: use of undefined value here causes illegal behavior
-// :75:27: note: when computing vector element at index '0'
-// :75:27: error: use of undefined value here causes illegal behavior
-// :75:27: note: when computing vector element at index '0'
-// :75:27: error: use of undefined value here causes illegal behavior
-// :75:27: note: when computing vector element at index '0'
-// :75:27: error: use of undefined value here causes illegal behavior
-// :75:27: note: when computing vector element at index '0'
-// :75:27: error: use of undefined value here causes illegal behavior
-// :75:27: note: when computing vector element at index '1'
-// :75:27: error: use of undefined value here causes illegal behavior
-// :75:27: note: when computing vector element at index '1'
-// :75:27: error: use of undefined value here causes illegal behavior
-// :75:27: note: when computing vector element at index '0'
-// :75:27: error: use of undefined value here causes illegal behavior
-// :75:27: note: when computing vector element at index '0'
-// :75:27: error: use of undefined value here causes illegal behavior
-// :75:27: note: when computing vector element at index '0'
-// :75:27: error: use of undefined value here causes illegal behavior
-// :75:27: note: when computing vector element at index '0'
-// :75:27: error: use of undefined value here causes illegal behavior
-// :75:27: error: use of undefined value here causes illegal behavior
-// :75:27: error: use of undefined value here causes illegal behavior
-// :75:27: note: when computing vector element at index '0'
-// :75:27: error: use of undefined value here causes illegal behavior
-// :75:27: note: when computing vector element at index '0'
-// :75:27: error: use of undefined value here causes illegal behavior
-// :75:27: note: when computing vector element at index '0'
-// :75:27: error: use of undefined value here causes illegal behavior
-// :75:27: note: when computing vector element at index '0'
-// :75:27: error: use of undefined value here causes illegal behavior
-// :75:27: note: when computing vector element at index '1'
-// :75:27: error: use of undefined value here causes illegal behavior
-// :75:27: note: when computing vector element at index '1'
-// :75:27: error: use of undefined value here causes illegal behavior
-// :75:27: note: when computing vector element at index '0'
-// :75:27: error: use of undefined value here causes illegal behavior
-// :75:27: note: when computing vector element at index '0'
-// :75:27: error: use of undefined value here causes illegal behavior
-// :75:27: note: when computing vector element at index '0'
-// :75:27: error: use of undefined value here causes illegal behavior
-// :75:27: note: when computing vector element at index '0'
-// :75:27: error: use of undefined value here causes illegal behavior
-// :75:27: error: use of undefined value here causes illegal behavior
-// :75:27: error: use of undefined value here causes illegal behavior
-// :75:27: note: when computing vector element at index '0'
-// :75:27: error: use of undefined value here causes illegal behavior
-// :75:27: note: when computing vector element at index '0'
-// :75:27: error: use of undefined value here causes illegal behavior
-// :75:27: note: when computing vector element at index '0'
-// :75:27: error: use of undefined value here causes illegal behavior
-// :75:27: note: when computing vector element at index '0'
-// :75:27: error: use of undefined value here causes illegal behavior
-// :75:27: note: when computing vector element at index '1'
-// :75:27: error: use of undefined value here causes illegal behavior
-// :75:27: note: when computing vector element at index '1'
-// :75:27: error: use of undefined value here causes illegal behavior
-// :75:27: note: when computing vector element at index '0'
-// :75:27: error: use of undefined value here causes illegal behavior
-// :75:27: note: when computing vector element at index '0'
-// :75:27: error: use of undefined value here causes illegal behavior
-// :75:27: note: when computing vector element at index '0'
-// :75:27: error: use of undefined value here causes illegal behavior
-// :75:27: note: when computing vector element at index '0'
-// :75:27: error: use of undefined value here causes illegal behavior
-// :75:27: error: use of undefined value here causes illegal behavior
-// :75:27: error: use of undefined value here causes illegal behavior
-// :75:27: note: when computing vector element at index '0'
-// :75:27: error: use of undefined value here causes illegal behavior
-// :75:27: note: when computing vector element at index '0'
-// :75:27: error: use of undefined value here causes illegal behavior
-// :75:27: note: when computing vector element at index '0'
-// :75:27: error: use of undefined value here causes illegal behavior
-// :75:27: note: when computing vector element at index '0'
-// :75:27: error: use of undefined value here causes illegal behavior
-// :75:27: note: when computing vector element at index '1'
-// :75:27: error: use of undefined value here causes illegal behavior
-// :75:27: note: when computing vector element at index '1'
-// :75:27: error: use of undefined value here causes illegal behavior
-// :75:27: note: when computing vector element at index '0'
-// :75:27: error: use of undefined value here causes illegal behavior
-// :75:27: note: when computing vector element at index '0'
-// :75:27: error: use of undefined value here causes illegal behavior
-// :75:27: note: when computing vector element at index '0'
-// :75:27: error: use of undefined value here causes illegal behavior
-// :75:27: note: when computing vector element at index '0'
-// :75:30: error: use of undefined value here causes illegal behavior
-// :75:30: note: when computing vector element at index '0'
-// :75:30: error: use of undefined value here causes illegal behavior
-// :75:30: note: when computing vector element at index '0'
-// :75:30: error: use of undefined value here causes illegal behavior
-// :75:30: note: when computing vector element at index '0'
-// :75:30: error: use of undefined value here causes illegal behavior
-// :75:30: note: when computing vector element at index '0'
-// :75:30: error: use of undefined value here causes illegal behavior
-// :75:30: note: when computing vector element at index '0'
-// :75:30: error: use of undefined value here causes illegal behavior
-// :75:30: note: when computing vector element at index '0'
-// :75:30: error: use of undefined value here causes illegal behavior
-// :75:30: note: when computing vector element at index '0'
-// :75:30: error: use of undefined value here causes illegal behavior
-// :75:30: note: when computing vector element at index '0'
-// :75:30: error: use of undefined value here causes illegal behavior
-// :75:30: note: when computing vector element at index '0'
-// :75:30: error: use of undefined value here causes illegal behavior
-// :75:30: note: when computing vector element at index '0'
-// :75:30: error: use of undefined value here causes illegal behavior
-// :75:30: note: when computing vector element at index '0'
-// :75:30: error: use of undefined value here causes illegal behavior
-// :75:30: note: when computing vector element at index '0'
-// :75:30: error: use of undefined value here causes illegal behavior
-// :75:30: note: when computing vector element at index '0'
-// :75:30: error: use of undefined value here causes illegal behavior
-// :75:30: note: when computing vector element at index '0'
-// :75:30: error: use of undefined value here causes illegal behavior
-// :75:30: note: when computing vector element at index '0'
-// :75:30: error: use of undefined value here causes illegal behavior
-// :75:30: note: when computing vector element at index '0'
-// :75:30: error: use of undefined value here causes illegal behavior
-// :75:30: note: when computing vector element at index '0'
-// :75:30: error: use of undefined value here causes illegal behavior
-// :75:30: note: when computing vector element at index '0'
-// :75:30: error: use of undefined value here causes illegal behavior
-// :75:30: note: when computing vector element at index '0'
-// :75:30: error: use of undefined value here causes illegal behavior
-// :75:30: note: when computing vector element at index '0'
-// :75:30: error: use of undefined value here causes illegal behavior
-// :75:30: note: when computing vector element at index '0'
-// :75:30: error: use of undefined value here causes illegal behavior
-// :75:30: note: when computing vector element at index '0'
-// :79:27: error: use of undefined value here causes illegal behavior
-// :79:27: error: use of undefined value here causes illegal behavior
-// :79:27: error: use of undefined value here causes illegal behavior
-// :79:27: note: when computing vector element at index '0'
-// :79:27: error: use of undefined value here causes illegal behavior
-// :79:27: note: when computing vector element at index '0'
-// :79:27: error: use of undefined value here causes illegal behavior
-// :79:27: note: when computing vector element at index '0'
-// :79:27: error: use of undefined value here causes illegal behavior
-// :79:27: note: when computing vector element at index '0'
-// :79:27: error: use of undefined value here causes illegal behavior
-// :79:27: note: when computing vector element at index '1'
-// :79:27: error: use of undefined value here causes illegal behavior
-// :79:27: note: when computing vector element at index '1'
-// :79:27: error: use of undefined value here causes illegal behavior
-// :79:27: note: when computing vector element at index '0'
-// :79:27: error: use of undefined value here causes illegal behavior
-// :79:27: note: when computing vector element at index '0'
-// :79:27: error: use of undefined value here causes illegal behavior
-// :79:27: note: when computing vector element at index '0'
-// :79:27: error: use of undefined value here causes illegal behavior
-// :79:27: note: when computing vector element at index '0'
-// :79:27: error: use of undefined value here causes illegal behavior
-// :79:27: error: use of undefined value here causes illegal behavior
-// :79:27: error: use of undefined value here causes illegal behavior
-// :79:27: note: when computing vector element at index '0'
-// :79:27: error: use of undefined value here causes illegal behavior
-// :79:27: note: when computing vector element at index '0'
-// :79:27: error: use of undefined value here causes illegal behavior
-// :79:27: note: when computing vector element at index '0'
-// :79:27: error: use of undefined value here causes illegal behavior
-// :79:27: note: when computing vector element at index '0'
-// :79:27: error: use of undefined value here causes illegal behavior
-// :79:27: note: when computing vector element at index '1'
-// :79:27: error: use of undefined value here causes illegal behavior
-// :79:27: note: when computing vector element at index '1'
-// :79:27: error: use of undefined value here causes illegal behavior
-// :79:27: note: when computing vector element at index '0'
-// :79:27: error: use of undefined value here causes illegal behavior
-// :79:27: note: when computing vector element at index '0'
-// :79:27: error: use of undefined value here causes illegal behavior
-// :79:27: note: when computing vector element at index '0'
-// :79:27: error: use of undefined value here causes illegal behavior
-// :79:27: note: when computing vector element at index '0'
-// :79:27: error: use of undefined value here causes illegal behavior
-// :79:27: error: use of undefined value here causes illegal behavior
-// :79:27: error: use of undefined value here causes illegal behavior
-// :79:27: note: when computing vector element at index '0'
-// :79:27: error: use of undefined value here causes illegal behavior
-// :79:27: note: when computing vector element at index '0'
-// :79:27: error: use of undefined value here causes illegal behavior
-// :79:27: note: when computing vector element at index '0'
-// :79:27: error: use of undefined value here causes illegal behavior
-// :79:27: note: when computing vector element at index '0'
-// :79:27: error: use of undefined value here causes illegal behavior
-// :79:27: note: when computing vector element at index '1'
-// :79:27: error: use of undefined value here causes illegal behavior
-// :79:27: note: when computing vector element at index '1'
-// :79:27: error: use of undefined value here causes illegal behavior
-// :79:27: note: when computing vector element at index '0'
-// :79:27: error: use of undefined value here causes illegal behavior
-// :79:27: note: when computing vector element at index '0'
-// :79:27: error: use of undefined value here causes illegal behavior
-// :79:27: note: when computing vector element at index '0'
-// :79:27: error: use of undefined value here causes illegal behavior
-// :79:27: note: when computing vector element at index '0'
-// :79:27: error: use of undefined value here causes illegal behavior
-// :79:27: error: use of undefined value here causes illegal behavior
-// :79:27: error: use of undefined value here causes illegal behavior
-// :79:27: note: when computing vector element at index '0'
-// :79:27: error: use of undefined value here causes illegal behavior
-// :79:27: note: when computing vector element at index '0'
-// :79:27: error: use of undefined value here causes illegal behavior
-// :79:27: note: when computing vector element at index '0'
-// :79:27: error: use of undefined value here causes illegal behavior
-// :79:27: note: when computing vector element at index '0'
-// :79:27: error: use of undefined value here causes illegal behavior
-// :79:27: note: when computing vector element at index '1'
-// :79:27: error: use of undefined value here causes illegal behavior
-// :79:27: note: when computing vector element at index '1'
-// :79:27: error: use of undefined value here causes illegal behavior
-// :79:27: note: when computing vector element at index '0'
-// :79:27: error: use of undefined value here causes illegal behavior
-// :79:27: note: when computing vector element at index '0'
-// :79:27: error: use of undefined value here causes illegal behavior
-// :79:27: note: when computing vector element at index '0'
-// :79:27: error: use of undefined value here causes illegal behavior
-// :79:27: note: when computing vector element at index '0'
-// :79:27: error: use of undefined value here causes illegal behavior
-// :79:27: error: use of undefined value here causes illegal behavior
-// :79:27: error: use of undefined value here causes illegal behavior
-// :79:27: note: when computing vector element at index '0'
-// :79:27: error: use of undefined value here causes illegal behavior
-// :79:27: note: when computing vector element at index '0'
-// :79:27: error: use of undefined value here causes illegal behavior
-// :79:27: note: when computing vector element at index '0'
-// :79:27: error: use of undefined value here causes illegal behavior
-// :79:27: note: when computing vector element at index '0'
-// :79:27: error: use of undefined value here causes illegal behavior
-// :79:27: note: when computing vector element at index '1'
-// :79:27: error: use of undefined value here causes illegal behavior
-// :79:27: note: when computing vector element at index '1'
-// :79:27: error: use of undefined value here causes illegal behavior
-// :79:27: note: when computing vector element at index '0'
-// :79:27: error: use of undefined value here causes illegal behavior
-// :79:27: note: when computing vector element at index '0'
-// :79:27: error: use of undefined value here causes illegal behavior
-// :79:27: note: when computing vector element at index '0'
-// :79:27: error: use of undefined value here causes illegal behavior
-// :79:27: note: when computing vector element at index '0'
-// :79:27: error: use of undefined value here causes illegal behavior
-// :79:27: error: use of undefined value here causes illegal behavior
-// :79:27: error: use of undefined value here causes illegal behavior
-// :79:27: note: when computing vector element at index '0'
-// :79:27: error: use of undefined value here causes illegal behavior
-// :79:27: note: when computing vector element at index '0'
-// :79:27: error: use of undefined value here causes illegal behavior
-// :79:27: note: when computing vector element at index '0'
-// :79:27: error: use of undefined value here causes illegal behavior
-// :79:27: note: when computing vector element at index '0'
-// :79:27: error: use of undefined value here causes illegal behavior
-// :79:27: note: when computing vector element at index '1'
-// :79:27: error: use of undefined value here causes illegal behavior
-// :79:27: note: when computing vector element at index '1'
-// :79:27: error: use of undefined value here causes illegal behavior
-// :79:27: note: when computing vector element at index '0'
-// :79:27: error: use of undefined value here causes illegal behavior
-// :79:27: note: when computing vector element at index '0'
-// :79:27: error: use of undefined value here causes illegal behavior
-// :79:27: note: when computing vector element at index '0'
-// :79:27: error: use of undefined value here causes illegal behavior
-// :79:27: note: when computing vector element at index '0'
-// :79:27: error: use of undefined value here causes illegal behavior
-// :79:27: error: use of undefined value here causes illegal behavior
-// :79:27: error: use of undefined value here causes illegal behavior
-// :79:27: note: when computing vector element at index '0'
-// :79:27: error: use of undefined value here causes illegal behavior
-// :79:27: note: when computing vector element at index '0'
-// :79:27: error: use of undefined value here causes illegal behavior
-// :79:27: note: when computing vector element at index '0'
-// :79:27: error: use of undefined value here causes illegal behavior
-// :79:27: note: when computing vector element at index '0'
-// :79:27: error: use of undefined value here causes illegal behavior
-// :79:27: note: when computing vector element at index '1'
-// :79:27: error: use of undefined value here causes illegal behavior
-// :79:27: note: when computing vector element at index '1'
-// :79:27: error: use of undefined value here causes illegal behavior
-// :79:27: note: when computing vector element at index '0'
-// :79:27: error: use of undefined value here causes illegal behavior
-// :79:27: note: when computing vector element at index '0'
-// :79:27: error: use of undefined value here causes illegal behavior
-// :79:27: note: when computing vector element at index '0'
-// :79:27: error: use of undefined value here causes illegal behavior
-// :79:27: note: when computing vector element at index '0'
-// :79:27: error: use of undefined value here causes illegal behavior
-// :79:27: error: use of undefined value here causes illegal behavior
-// :79:27: error: use of undefined value here causes illegal behavior
-// :79:27: note: when computing vector element at index '0'
-// :79:27: error: use of undefined value here causes illegal behavior
-// :79:27: note: when computing vector element at index '0'
-// :79:27: error: use of undefined value here causes illegal behavior
-// :79:27: note: when computing vector element at index '0'
-// :79:27: error: use of undefined value here causes illegal behavior
-// :79:27: note: when computing vector element at index '0'
-// :79:27: error: use of undefined value here causes illegal behavior
-// :79:27: note: when computing vector element at index '1'
-// :79:27: error: use of undefined value here causes illegal behavior
-// :79:27: note: when computing vector element at index '1'
-// :79:27: error: use of undefined value here causes illegal behavior
-// :79:27: note: when computing vector element at index '0'
-// :79:27: error: use of undefined value here causes illegal behavior
-// :79:27: note: when computing vector element at index '0'
-// :79:27: error: use of undefined value here causes illegal behavior
-// :79:27: note: when computing vector element at index '0'
-// :79:27: error: use of undefined value here causes illegal behavior
-// :79:27: note: when computing vector element at index '0'
-// :79:27: error: use of undefined value here causes illegal behavior
-// :79:27: error: use of undefined value here causes illegal behavior
-// :79:27: error: use of undefined value here causes illegal behavior
-// :79:27: note: when computing vector element at index '0'
-// :79:27: error: use of undefined value here causes illegal behavior
-// :79:27: note: when computing vector element at index '0'
-// :79:27: error: use of undefined value here causes illegal behavior
-// :79:27: note: when computing vector element at index '0'
-// :79:27: error: use of undefined value here causes illegal behavior
-// :79:27: note: when computing vector element at index '0'
-// :79:27: error: use of undefined value here causes illegal behavior
-// :79:27: note: when computing vector element at index '1'
-// :79:27: error: use of undefined value here causes illegal behavior
-// :79:27: note: when computing vector element at index '1'
-// :79:27: error: use of undefined value here causes illegal behavior
-// :79:27: note: when computing vector element at index '0'
-// :79:27: error: use of undefined value here causes illegal behavior
-// :79:27: note: when computing vector element at index '0'
-// :79:27: error: use of undefined value here causes illegal behavior
-// :79:27: note: when computing vector element at index '0'
-// :79:27: error: use of undefined value here causes illegal behavior
-// :79:27: note: when computing vector element at index '0'
-// :79:27: error: use of undefined value here causes illegal behavior
-// :79:27: error: use of undefined value here causes illegal behavior
-// :79:27: error: use of undefined value here causes illegal behavior
-// :79:27: note: when computing vector element at index '0'
-// :79:27: error: use of undefined value here causes illegal behavior
-// :79:27: note: when computing vector element at index '0'
-// :79:27: error: use of undefined value here causes illegal behavior
-// :79:27: note: when computing vector element at index '0'
-// :79:27: error: use of undefined value here causes illegal behavior
-// :79:27: note: when computing vector element at index '0'
-// :79:27: error: use of undefined value here causes illegal behavior
-// :79:27: note: when computing vector element at index '1'
-// :79:27: error: use of undefined value here causes illegal behavior
-// :79:27: note: when computing vector element at index '1'
-// :79:27: error: use of undefined value here causes illegal behavior
-// :79:27: note: when computing vector element at index '0'
-// :79:27: error: use of undefined value here causes illegal behavior
-// :79:27: note: when computing vector element at index '0'
-// :79:27: error: use of undefined value here causes illegal behavior
-// :79:27: note: when computing vector element at index '0'
-// :79:27: error: use of undefined value here causes illegal behavior
-// :79:27: note: when computing vector element at index '0'
-// :79:27: error: use of undefined value here causes illegal behavior
-// :79:27: error: use of undefined value here causes illegal behavior
-// :79:27: error: use of undefined value here causes illegal behavior
-// :79:27: note: when computing vector element at index '0'
-// :79:27: error: use of undefined value here causes illegal behavior
-// :79:27: note: when computing vector element at index '0'
-// :79:27: error: use of undefined value here causes illegal behavior
-// :79:27: note: when computing vector element at index '0'
-// :79:27: error: use of undefined value here causes illegal behavior
-// :79:27: note: when computing vector element at index '0'
-// :79:27: error: use of undefined value here causes illegal behavior
-// :79:27: note: when computing vector element at index '1'
-// :79:27: error: use of undefined value here causes illegal behavior
-// :79:27: note: when computing vector element at index '1'
-// :79:27: error: use of undefined value here causes illegal behavior
-// :79:27: note: when computing vector element at index '0'
-// :79:27: error: use of undefined value here causes illegal behavior
-// :79:27: note: when computing vector element at index '0'
-// :79:27: error: use of undefined value here causes illegal behavior
-// :79:27: note: when computing vector element at index '0'
-// :79:27: error: use of undefined value here causes illegal behavior
-// :79:27: note: when computing vector element at index '0'
-// :79:30: error: use of undefined value here causes illegal behavior
-// :79:30: note: when computing vector element at index '0'
-// :79:30: error: use of undefined value here causes illegal behavior
-// :79:30: note: when computing vector element at index '0'
-// :79:30: error: use of undefined value here causes illegal behavior
-// :79:30: note: when computing vector element at index '0'
-// :79:30: error: use of undefined value here causes illegal behavior
-// :79:30: note: when computing vector element at index '0'
-// :79:30: error: use of undefined value here causes illegal behavior
-// :79:30: note: when computing vector element at index '0'
-// :79:30: error: use of undefined value here causes illegal behavior
-// :79:30: note: when computing vector element at index '0'
-// :79:30: error: use of undefined value here causes illegal behavior
-// :79:30: note: when computing vector element at index '0'
-// :79:30: error: use of undefined value here causes illegal behavior
-// :79:30: note: when computing vector element at index '0'
-// :79:30: error: use of undefined value here causes illegal behavior
-// :79:30: note: when computing vector element at index '0'
-// :79:30: error: use of undefined value here causes illegal behavior
-// :79:30: note: when computing vector element at index '0'
-// :79:30: error: use of undefined value here causes illegal behavior
-// :79:30: note: when computing vector element at index '0'
-// :79:30: error: use of undefined value here causes illegal behavior
-// :79:30: note: when computing vector element at index '0'
-// :79:30: error: use of undefined value here causes illegal behavior
-// :79:30: note: when computing vector element at index '0'
-// :79:30: error: use of undefined value here causes illegal behavior
-// :79:30: note: when computing vector element at index '0'
-// :79:30: error: use of undefined value here causes illegal behavior
-// :79:30: note: when computing vector element at index '0'
-// :79:30: error: use of undefined value here causes illegal behavior
-// :79:30: note: when computing vector element at index '0'
-// :79:30: error: use of undefined value here causes illegal behavior
-// :79:30: note: when computing vector element at index '0'
-// :79:30: error: use of undefined value here causes illegal behavior
-// :79:30: note: when computing vector element at index '0'
-// :79:30: error: use of undefined value here causes illegal behavior
-// :79:30: note: when computing vector element at index '0'
-// :79:30: error: use of undefined value here causes illegal behavior
-// :79:30: note: when computing vector element at index '0'
-// :79:30: error: use of undefined value here causes illegal behavior
-// :79:30: note: when computing vector element at index '0'
-// :79:30: error: use of undefined value here causes illegal behavior
-// :79:30: note: when computing vector element at index '0'
-// :83:27: error: use of undefined value here causes illegal behavior
-// :83:27: error: use of undefined value here causes illegal behavior
-// :83:27: error: use of undefined value here causes illegal behavior
-// :83:27: note: when computing vector element at index '0'
-// :83:27: error: use of undefined value here causes illegal behavior
-// :83:27: note: when computing vector element at index '0'
-// :83:27: error: use of undefined value here causes illegal behavior
-// :83:27: note: when computing vector element at index '0'
-// :83:27: error: use of undefined value here causes illegal behavior
-// :83:27: note: when computing vector element at index '0'
-// :83:27: error: use of undefined value here causes illegal behavior
-// :83:27: note: when computing vector element at index '1'
-// :83:27: error: use of undefined value here causes illegal behavior
-// :83:27: note: when computing vector element at index '1'
-// :83:27: error: use of undefined value here causes illegal behavior
-// :83:27: note: when computing vector element at index '0'
-// :83:27: error: use of undefined value here causes illegal behavior
-// :83:27: note: when computing vector element at index '0'
-// :83:27: error: use of undefined value here causes illegal behavior
-// :83:27: note: when computing vector element at index '0'
-// :83:27: error: use of undefined value here causes illegal behavior
-// :83:27: note: when computing vector element at index '0'
-// :83:27: error: use of undefined value here causes illegal behavior
-// :83:27: error: use of undefined value here causes illegal behavior
-// :83:27: error: use of undefined value here causes illegal behavior
-// :83:27: note: when computing vector element at index '0'
-// :83:27: error: use of undefined value here causes illegal behavior
-// :83:27: note: when computing vector element at index '0'
-// :83:27: error: use of undefined value here causes illegal behavior
-// :83:27: note: when computing vector element at index '0'
-// :83:27: error: use of undefined value here causes illegal behavior
-// :83:27: note: when computing vector element at index '0'
-// :83:27: error: use of undefined value here causes illegal behavior
-// :83:27: note: when computing vector element at index '1'
-// :83:27: error: use of undefined value here causes illegal behavior
-// :83:27: note: when computing vector element at index '1'
-// :83:27: error: use of undefined value here causes illegal behavior
-// :83:27: note: when computing vector element at index '0'
-// :83:27: error: use of undefined value here causes illegal behavior
-// :83:27: note: when computing vector element at index '0'
-// :83:27: error: use of undefined value here causes illegal behavior
-// :83:27: note: when computing vector element at index '0'
-// :83:27: error: use of undefined value here causes illegal behavior
-// :83:27: note: when computing vector element at index '0'
-// :83:27: error: use of undefined value here causes illegal behavior
-// :83:27: error: use of undefined value here causes illegal behavior
-// :83:27: error: use of undefined value here causes illegal behavior
-// :83:27: note: when computing vector element at index '0'
-// :83:27: error: use of undefined value here causes illegal behavior
-// :83:27: note: when computing vector element at index '0'
-// :83:27: error: use of undefined value here causes illegal behavior
-// :83:27: note: when computing vector element at index '0'
-// :83:27: error: use of undefined value here causes illegal behavior
-// :83:27: note: when computing vector element at index '0'
-// :83:27: error: use of undefined value here causes illegal behavior
-// :83:27: note: when computing vector element at index '1'
-// :83:27: error: use of undefined value here causes illegal behavior
-// :83:27: note: when computing vector element at index '1'
-// :83:27: error: use of undefined value here causes illegal behavior
-// :83:27: note: when computing vector element at index '0'
-// :83:27: error: use of undefined value here causes illegal behavior
-// :83:27: note: when computing vector element at index '0'
-// :83:27: error: use of undefined value here causes illegal behavior
-// :83:27: note: when computing vector element at index '0'
-// :83:27: error: use of undefined value here causes illegal behavior
-// :83:27: note: when computing vector element at index '0'
-// :83:27: error: use of undefined value here causes illegal behavior
-// :83:27: error: use of undefined value here causes illegal behavior
-// :83:27: error: use of undefined value here causes illegal behavior
-// :83:27: note: when computing vector element at index '0'
-// :83:27: error: use of undefined value here causes illegal behavior
-// :83:27: note: when computing vector element at index '0'
-// :83:27: error: use of undefined value here causes illegal behavior
-// :83:27: note: when computing vector element at index '0'
-// :83:27: error: use of undefined value here causes illegal behavior
-// :83:27: note: when computing vector element at index '0'
-// :83:27: error: use of undefined value here causes illegal behavior
-// :83:27: note: when computing vector element at index '1'
-// :83:27: error: use of undefined value here causes illegal behavior
-// :83:27: note: when computing vector element at index '1'
-// :83:27: error: use of undefined value here causes illegal behavior
-// :83:27: note: when computing vector element at index '0'
-// :83:27: error: use of undefined value here causes illegal behavior
-// :83:27: note: when computing vector element at index '0'
-// :83:27: error: use of undefined value here causes illegal behavior
-// :83:27: note: when computing vector element at index '0'
-// :83:27: error: use of undefined value here causes illegal behavior
-// :83:27: note: when computing vector element at index '0'
-// :83:27: error: use of undefined value here causes illegal behavior
-// :83:27: error: use of undefined value here causes illegal behavior
-// :83:27: error: use of undefined value here causes illegal behavior
-// :83:27: note: when computing vector element at index '0'
-// :83:27: error: use of undefined value here causes illegal behavior
-// :83:27: note: when computing vector element at index '0'
-// :83:27: error: use of undefined value here causes illegal behavior
-// :83:27: note: when computing vector element at index '0'
-// :83:27: error: use of undefined value here causes illegal behavior
-// :83:27: note: when computing vector element at index '0'
-// :83:27: error: use of undefined value here causes illegal behavior
-// :83:27: note: when computing vector element at index '1'
-// :83:27: error: use of undefined value here causes illegal behavior
-// :83:27: note: when computing vector element at index '1'
-// :83:27: error: use of undefined value here causes illegal behavior
-// :83:27: note: when computing vector element at index '0'
-// :83:27: error: use of undefined value here causes illegal behavior
-// :83:27: note: when computing vector element at index '0'
-// :83:27: error: use of undefined value here causes illegal behavior
-// :83:27: note: when computing vector element at index '0'
-// :83:27: error: use of undefined value here causes illegal behavior
-// :83:27: note: when computing vector element at index '0'
-// :83:27: error: use of undefined value here causes illegal behavior
-// :83:27: error: use of undefined value here causes illegal behavior
-// :83:27: error: use of undefined value here causes illegal behavior
-// :83:27: note: when computing vector element at index '0'
-// :83:27: error: use of undefined value here causes illegal behavior
-// :83:27: note: when computing vector element at index '0'
-// :83:27: error: use of undefined value here causes illegal behavior
-// :83:27: note: when computing vector element at index '0'
-// :83:27: error: use of undefined value here causes illegal behavior
-// :83:27: note: when computing vector element at index '0'
-// :83:27: error: use of undefined value here causes illegal behavior
-// :83:27: note: when computing vector element at index '1'
-// :83:27: error: use of undefined value here causes illegal behavior
-// :83:27: note: when computing vector element at index '1'
-// :83:27: error: use of undefined value here causes illegal behavior
-// :83:27: note: when computing vector element at index '0'
-// :83:27: error: use of undefined value here causes illegal behavior
-// :83:27: note: when computing vector element at index '0'
-// :83:27: error: use of undefined value here causes illegal behavior
-// :83:27: note: when computing vector element at index '0'
-// :83:27: error: use of undefined value here causes illegal behavior
-// :83:27: note: when computing vector element at index '0'
-// :83:27: error: use of undefined value here causes illegal behavior
-// :83:27: error: use of undefined value here causes illegal behavior
-// :83:27: error: use of undefined value here causes illegal behavior
-// :83:27: note: when computing vector element at index '0'
-// :83:27: error: use of undefined value here causes illegal behavior
-// :83:27: note: when computing vector element at index '0'
-// :83:27: error: use of undefined value here causes illegal behavior
-// :83:27: note: when computing vector element at index '0'
-// :83:27: error: use of undefined value here causes illegal behavior
-// :83:27: note: when computing vector element at index '0'
-// :83:27: error: use of undefined value here causes illegal behavior
-// :83:27: note: when computing vector element at index '1'
-// :83:27: error: use of undefined value here causes illegal behavior
-// :83:27: note: when computing vector element at index '1'
-// :83:27: error: use of undefined value here causes illegal behavior
-// :83:27: note: when computing vector element at index '0'
-// :83:27: error: use of undefined value here causes illegal behavior
-// :83:27: note: when computing vector element at index '0'
-// :83:27: error: use of undefined value here causes illegal behavior
-// :83:27: note: when computing vector element at index '0'
-// :83:27: error: use of undefined value here causes illegal behavior
-// :83:27: note: when computing vector element at index '0'
-// :83:27: error: use of undefined value here causes illegal behavior
-// :83:27: error: use of undefined value here causes illegal behavior
-// :83:27: error: use of undefined value here causes illegal behavior
-// :83:27: note: when computing vector element at index '0'
-// :83:27: error: use of undefined value here causes illegal behavior
-// :83:27: note: when computing vector element at index '0'
-// :83:27: error: use of undefined value here causes illegal behavior
-// :83:27: note: when computing vector element at index '0'
-// :83:27: error: use of undefined value here causes illegal behavior
-// :83:27: note: when computing vector element at index '0'
-// :83:27: error: use of undefined value here causes illegal behavior
-// :83:27: note: when computing vector element at index '1'
-// :83:27: error: use of undefined value here causes illegal behavior
-// :83:27: note: when computing vector element at index '1'
-// :83:27: error: use of undefined value here causes illegal behavior
-// :83:27: note: when computing vector element at index '0'
-// :83:27: error: use of undefined value here causes illegal behavior
-// :83:27: note: when computing vector element at index '0'
-// :83:27: error: use of undefined value here causes illegal behavior
-// :83:27: note: when computing vector element at index '0'
-// :83:27: error: use of undefined value here causes illegal behavior
-// :83:27: note: when computing vector element at index '0'
-// :83:27: error: use of undefined value here causes illegal behavior
-// :83:27: error: use of undefined value here causes illegal behavior
-// :83:27: error: use of undefined value here causes illegal behavior
-// :83:27: note: when computing vector element at index '0'
-// :83:27: error: use of undefined value here causes illegal behavior
-// :83:27: note: when computing vector element at index '0'
-// :83:27: error: use of undefined value here causes illegal behavior
-// :83:27: note: when computing vector element at index '0'
-// :83:27: error: use of undefined value here causes illegal behavior
-// :83:27: note: when computing vector element at index '0'
-// :83:27: error: use of undefined value here causes illegal behavior
-// :83:27: note: when computing vector element at index '1'
-// :83:27: error: use of undefined value here causes illegal behavior
-// :83:27: note: when computing vector element at index '1'
-// :83:27: error: use of undefined value here causes illegal behavior
-// :83:27: note: when computing vector element at index '0'
-// :83:27: error: use of undefined value here causes illegal behavior
-// :83:27: note: when computing vector element at index '0'
-// :83:27: error: use of undefined value here causes illegal behavior
-// :83:27: note: when computing vector element at index '0'
-// :83:27: error: use of undefined value here causes illegal behavior
-// :83:27: note: when computing vector element at index '0'
-// :83:27: error: use of undefined value here causes illegal behavior
-// :83:27: error: use of undefined value here causes illegal behavior
-// :83:27: error: use of undefined value here causes illegal behavior
-// :83:27: note: when computing vector element at index '0'
-// :83:27: error: use of undefined value here causes illegal behavior
-// :83:27: note: when computing vector element at index '0'
-// :83:27: error: use of undefined value here causes illegal behavior
-// :83:27: note: when computing vector element at index '0'
-// :83:27: error: use of undefined value here causes illegal behavior
-// :83:27: note: when computing vector element at index '0'
-// :83:27: error: use of undefined value here causes illegal behavior
-// :83:27: note: when computing vector element at index '1'
-// :83:27: error: use of undefined value here causes illegal behavior
-// :83:27: note: when computing vector element at index '1'
-// :83:27: error: use of undefined value here causes illegal behavior
-// :83:27: note: when computing vector element at index '0'
-// :83:27: error: use of undefined value here causes illegal behavior
-// :83:27: note: when computing vector element at index '0'
-// :83:27: error: use of undefined value here causes illegal behavior
-// :83:27: note: when computing vector element at index '0'
-// :83:27: error: use of undefined value here causes illegal behavior
-// :83:27: note: when computing vector element at index '0'
-// :83:27: error: use of undefined value here causes illegal behavior
-// :83:27: error: use of undefined value here causes illegal behavior
-// :83:27: error: use of undefined value here causes illegal behavior
-// :83:27: note: when computing vector element at index '0'
-// :83:27: error: use of undefined value here causes illegal behavior
-// :83:27: note: when computing vector element at index '0'
-// :83:27: error: use of undefined value here causes illegal behavior
-// :83:27: note: when computing vector element at index '0'
-// :83:27: error: use of undefined value here causes illegal behavior
-// :83:27: note: when computing vector element at index '0'
-// :83:27: error: use of undefined value here causes illegal behavior
-// :83:27: note: when computing vector element at index '1'
-// :83:27: error: use of undefined value here causes illegal behavior
-// :83:27: note: when computing vector element at index '1'
-// :83:27: error: use of undefined value here causes illegal behavior
-// :83:27: note: when computing vector element at index '0'
-// :83:27: error: use of undefined value here causes illegal behavior
-// :83:27: note: when computing vector element at index '0'
-// :83:27: error: use of undefined value here causes illegal behavior
-// :83:27: note: when computing vector element at index '0'
-// :83:27: error: use of undefined value here causes illegal behavior
-// :83:27: note: when computing vector element at index '0'
-// :83:30: error: use of undefined value here causes illegal behavior
-// :83:30: note: when computing vector element at index '0'
-// :83:30: error: use of undefined value here causes illegal behavior
-// :83:30: note: when computing vector element at index '0'
-// :83:30: error: use of undefined value here causes illegal behavior
-// :83:30: note: when computing vector element at index '0'
-// :83:30: error: use of undefined value here causes illegal behavior
-// :83:30: note: when computing vector element at index '0'
-// :83:30: error: use of undefined value here causes illegal behavior
-// :83:30: note: when computing vector element at index '0'
-// :83:30: error: use of undefined value here causes illegal behavior
-// :83:30: note: when computing vector element at index '0'
-// :83:30: error: use of undefined value here causes illegal behavior
-// :83:30: note: when computing vector element at index '0'
-// :83:30: error: use of undefined value here causes illegal behavior
-// :83:30: note: when computing vector element at index '0'
-// :83:30: error: use of undefined value here causes illegal behavior
-// :83:30: note: when computing vector element at index '0'
-// :83:30: error: use of undefined value here causes illegal behavior
-// :83:30: note: when computing vector element at index '0'
-// :83:30: error: use of undefined value here causes illegal behavior
-// :83:30: note: when computing vector element at index '0'
-// :83:30: error: use of undefined value here causes illegal behavior
-// :83:30: note: when computing vector element at index '0'
-// :83:30: error: use of undefined value here causes illegal behavior
-// :83:30: note: when computing vector element at index '0'
-// :83:30: error: use of undefined value here causes illegal behavior
-// :83:30: note: when computing vector element at index '0'
-// :83:30: error: use of undefined value here causes illegal behavior
-// :83:30: note: when computing vector element at index '0'
-// :83:30: error: use of undefined value here causes illegal behavior
-// :83:30: note: when computing vector element at index '0'
-// :83:30: error: use of undefined value here causes illegal behavior
-// :83:30: note: when computing vector element at index '0'
-// :83:30: error: use of undefined value here causes illegal behavior
-// :83:30: note: when computing vector element at index '0'
-// :83:30: error: use of undefined value here causes illegal behavior
-// :83:30: note: when computing vector element at index '0'
-// :83:30: error: use of undefined value here causes illegal behavior
-// :83:30: note: when computing vector element at index '0'
-// :83:30: error: use of undefined value here causes illegal behavior
-// :83:30: note: when computing vector element at index '0'
-// :83:30: error: use of undefined value here causes illegal behavior
-// :83:30: note: when computing vector element at index '0'
-// :87:17: error: use of undefined value here causes illegal behavior
-// :87:17: error: use of undefined value here causes illegal behavior
-// :87:17: error: use of undefined value here causes illegal behavior
-// :87:17: note: when computing vector element at index '0'
-// :87:17: error: use of undefined value here causes illegal behavior
-// :87:17: note: when computing vector element at index '0'
-// :87:17: error: use of undefined value here causes illegal behavior
-// :87:17: note: when computing vector element at index '0'
-// :87:17: error: use of undefined value here causes illegal behavior
-// :87:17: note: when computing vector element at index '0'
-// :87:17: error: use of undefined value here causes illegal behavior
-// :87:17: note: when computing vector element at index '1'
-// :87:17: error: use of undefined value here causes illegal behavior
-// :87:17: note: when computing vector element at index '1'
-// :87:17: error: use of undefined value here causes illegal behavior
-// :87:17: note: when computing vector element at index '0'
-// :87:17: error: use of undefined value here causes illegal behavior
-// :87:17: note: when computing vector element at index '0'
-// :87:17: error: use of undefined value here causes illegal behavior
-// :87:17: note: when computing vector element at index '0'
-// :87:17: error: use of undefined value here causes illegal behavior
-// :87:17: note: when computing vector element at index '0'
-// :87:17: error: use of undefined value here causes illegal behavior
-// :87:17: error: use of undefined value here causes illegal behavior
-// :87:17: error: use of undefined value here causes illegal behavior
-// :87:17: note: when computing vector element at index '0'
-// :87:17: error: use of undefined value here causes illegal behavior
-// :87:17: note: when computing vector element at index '0'
-// :87:17: error: use of undefined value here causes illegal behavior
-// :87:17: note: when computing vector element at index '0'
-// :87:17: error: use of undefined value here causes illegal behavior
-// :87:17: note: when computing vector element at index '0'
-// :87:17: error: use of undefined value here causes illegal behavior
-// :87:17: note: when computing vector element at index '1'
-// :87:17: error: use of undefined value here causes illegal behavior
-// :87:17: note: when computing vector element at index '1'
-// :87:17: error: use of undefined value here causes illegal behavior
-// :87:17: note: when computing vector element at index '0'
-// :87:17: error: use of undefined value here causes illegal behavior
-// :87:17: note: when computing vector element at index '0'
-// :87:17: error: use of undefined value here causes illegal behavior
-// :87:17: note: when computing vector element at index '0'
-// :87:17: error: use of undefined value here causes illegal behavior
-// :87:17: note: when computing vector element at index '0'
-// :87:17: error: use of undefined value here causes illegal behavior
-// :87:17: error: use of undefined value here causes illegal behavior
-// :87:17: error: use of undefined value here causes illegal behavior
-// :87:17: note: when computing vector element at index '0'
-// :87:17: error: use of undefined value here causes illegal behavior
-// :87:17: note: when computing vector element at index '0'
-// :87:17: error: use of undefined value here causes illegal behavior
-// :87:17: note: when computing vector element at index '0'
-// :87:17: error: use of undefined value here causes illegal behavior
-// :87:17: note: when computing vector element at index '0'
-// :87:17: error: use of undefined value here causes illegal behavior
-// :87:17: note: when computing vector element at index '1'
-// :87:17: error: use of undefined value here causes illegal behavior
-// :87:17: note: when computing vector element at index '1'
-// :87:17: error: use of undefined value here causes illegal behavior
-// :87:17: note: when computing vector element at index '0'
-// :87:17: error: use of undefined value here causes illegal behavior
-// :87:17: note: when computing vector element at index '0'
-// :87:17: error: use of undefined value here causes illegal behavior
-// :87:17: note: when computing vector element at index '0'
-// :87:17: error: use of undefined value here causes illegal behavior
-// :87:17: note: when computing vector element at index '0'
-// :87:17: error: use of undefined value here causes illegal behavior
-// :87:17: error: use of undefined value here causes illegal behavior
-// :87:17: error: use of undefined value here causes illegal behavior
-// :87:17: note: when computing vector element at index '0'
-// :87:17: error: use of undefined value here causes illegal behavior
-// :87:17: note: when computing vector element at index '0'
-// :87:17: error: use of undefined value here causes illegal behavior
-// :87:17: note: when computing vector element at index '0'
-// :87:17: error: use of undefined value here causes illegal behavior
-// :87:17: note: when computing vector element at index '0'
-// :87:17: error: use of undefined value here causes illegal behavior
-// :87:17: note: when computing vector element at index '1'
-// :87:17: error: use of undefined value here causes illegal behavior
-// :87:17: note: when computing vector element at index '1'
-// :87:17: error: use of undefined value here causes illegal behavior
-// :87:17: note: when computing vector element at index '0'
-// :87:17: error: use of undefined value here causes illegal behavior
-// :87:17: note: when computing vector element at index '0'
-// :87:17: error: use of undefined value here causes illegal behavior
-// :87:17: note: when computing vector element at index '0'
-// :87:17: error: use of undefined value here causes illegal behavior
-// :87:17: note: when computing vector element at index '0'
-// :87:17: error: use of undefined value here causes illegal behavior
-// :87:17: error: use of undefined value here causes illegal behavior
-// :87:17: error: use of undefined value here causes illegal behavior
-// :87:17: note: when computing vector element at index '0'
-// :87:17: error: use of undefined value here causes illegal behavior
-// :87:17: note: when computing vector element at index '0'
-// :87:17: error: use of undefined value here causes illegal behavior
-// :87:17: note: when computing vector element at index '0'
-// :87:17: error: use of undefined value here causes illegal behavior
-// :87:17: note: when computing vector element at index '0'
-// :87:17: error: use of undefined value here causes illegal behavior
-// :87:17: note: when computing vector element at index '1'
-// :87:17: error: use of undefined value here causes illegal behavior
-// :87:17: note: when computing vector element at index '1'
-// :87:17: error: use of undefined value here causes illegal behavior
-// :87:17: note: when computing vector element at index '0'
-// :87:17: error: use of undefined value here causes illegal behavior
-// :87:17: note: when computing vector element at index '0'
-// :87:17: error: use of undefined value here causes illegal behavior
-// :87:17: note: when computing vector element at index '0'
-// :87:17: error: use of undefined value here causes illegal behavior
-// :87:17: note: when computing vector element at index '0'
-// :87:17: error: use of undefined value here causes illegal behavior
-// :87:17: error: use of undefined value here causes illegal behavior
-// :87:17: error: use of undefined value here causes illegal behavior
-// :87:17: note: when computing vector element at index '0'
-// :87:17: error: use of undefined value here causes illegal behavior
-// :87:17: note: when computing vector element at index '0'
-// :87:17: error: use of undefined value here causes illegal behavior
-// :87:17: note: when computing vector element at index '0'
-// :87:17: error: use of undefined value here causes illegal behavior
-// :87:17: note: when computing vector element at index '0'
-// :87:17: error: use of undefined value here causes illegal behavior
-// :87:17: note: when computing vector element at index '1'
-// :87:17: error: use of undefined value here causes illegal behavior
-// :87:17: note: when computing vector element at index '1'
-// :87:17: error: use of undefined value here causes illegal behavior
-// :87:17: note: when computing vector element at index '0'
-// :87:17: error: use of undefined value here causes illegal behavior
-// :87:17: note: when computing vector element at index '0'
-// :87:17: error: use of undefined value here causes illegal behavior
-// :87:17: note: when computing vector element at index '0'
-// :87:17: error: use of undefined value here causes illegal behavior
-// :87:17: note: when computing vector element at index '0'
-// :87:17: error: use of undefined value here causes illegal behavior
-// :87:17: error: use of undefined value here causes illegal behavior
-// :87:17: error: use of undefined value here causes illegal behavior
-// :87:17: note: when computing vector element at index '0'
-// :87:17: error: use of undefined value here causes illegal behavior
-// :87:17: note: when computing vector element at index '0'
-// :87:17: error: use of undefined value here causes illegal behavior
-// :87:17: note: when computing vector element at index '0'
-// :87:17: error: use of undefined value here causes illegal behavior
-// :87:17: note: when computing vector element at index '0'
-// :87:17: error: use of undefined value here causes illegal behavior
-// :87:17: note: when computing vector element at index '1'
-// :87:17: error: use of undefined value here causes illegal behavior
-// :87:17: note: when computing vector element at index '1'
-// :87:17: error: use of undefined value here causes illegal behavior
-// :87:17: note: when computing vector element at index '0'
-// :87:17: error: use of undefined value here causes illegal behavior
-// :87:17: note: when computing vector element at index '0'
-// :87:17: error: use of undefined value here causes illegal behavior
-// :87:17: note: when computing vector element at index '0'
-// :87:17: error: use of undefined value here causes illegal behavior
-// :87:17: note: when computing vector element at index '0'
-// :87:17: error: use of undefined value here causes illegal behavior
-// :87:17: error: use of undefined value here causes illegal behavior
-// :87:17: error: use of undefined value here causes illegal behavior
-// :87:17: note: when computing vector element at index '0'
-// :87:17: error: use of undefined value here causes illegal behavior
-// :87:17: note: when computing vector element at index '0'
-// :87:17: error: use of undefined value here causes illegal behavior
-// :87:17: note: when computing vector element at index '0'
-// :87:17: error: use of undefined value here causes illegal behavior
-// :87:17: note: when computing vector element at index '0'
-// :87:17: error: use of undefined value here causes illegal behavior
-// :87:17: note: when computing vector element at index '1'
-// :87:17: error: use of undefined value here causes illegal behavior
-// :87:17: note: when computing vector element at index '1'
-// :87:17: error: use of undefined value here causes illegal behavior
-// :87:17: note: when computing vector element at index '0'
-// :87:17: error: use of undefined value here causes illegal behavior
-// :87:17: note: when computing vector element at index '0'
-// :87:17: error: use of undefined value here causes illegal behavior
-// :87:17: note: when computing vector element at index '0'
-// :87:17: error: use of undefined value here causes illegal behavior
-// :87:17: note: when computing vector element at index '0'
-// :87:17: error: use of undefined value here causes illegal behavior
-// :87:17: error: use of undefined value here causes illegal behavior
-// :87:17: error: use of undefined value here causes illegal behavior
-// :87:17: note: when computing vector element at index '0'
-// :87:17: error: use of undefined value here causes illegal behavior
-// :87:17: note: when computing vector element at index '0'
-// :87:17: error: use of undefined value here causes illegal behavior
-// :87:17: note: when computing vector element at index '0'
-// :87:17: error: use of undefined value here causes illegal behavior
-// :87:17: note: when computing vector element at index '0'
-// :87:17: error: use of undefined value here causes illegal behavior
-// :87:17: note: when computing vector element at index '1'
-// :87:17: error: use of undefined value here causes illegal behavior
-// :87:17: note: when computing vector element at index '1'
-// :87:17: error: use of undefined value here causes illegal behavior
-// :87:17: note: when computing vector element at index '0'
-// :87:17: error: use of undefined value here causes illegal behavior
-// :87:17: note: when computing vector element at index '0'
-// :87:17: error: use of undefined value here causes illegal behavior
-// :87:17: note: when computing vector element at index '0'
-// :87:17: error: use of undefined value here causes illegal behavior
-// :87:17: note: when computing vector element at index '0'
-// :87:17: error: use of undefined value here causes illegal behavior
-// :87:17: error: use of undefined value here causes illegal behavior
-// :87:17: error: use of undefined value here causes illegal behavior
-// :87:17: note: when computing vector element at index '0'
-// :87:17: error: use of undefined value here causes illegal behavior
-// :87:17: note: when computing vector element at index '0'
-// :87:17: error: use of undefined value here causes illegal behavior
-// :87:17: note: when computing vector element at index '0'
-// :87:17: error: use of undefined value here causes illegal behavior
-// :87:17: note: when computing vector element at index '0'
-// :87:17: error: use of undefined value here causes illegal behavior
-// :87:17: note: when computing vector element at index '1'
-// :87:17: error: use of undefined value here causes illegal behavior
-// :87:17: note: when computing vector element at index '1'
-// :87:17: error: use of undefined value here causes illegal behavior
-// :87:17: note: when computing vector element at index '0'
-// :87:17: error: use of undefined value here causes illegal behavior
-// :87:17: note: when computing vector element at index '0'
-// :87:17: error: use of undefined value here causes illegal behavior
-// :87:17: note: when computing vector element at index '0'
-// :87:17: error: use of undefined value here causes illegal behavior
-// :87:17: note: when computing vector element at index '0'
-// :87:17: error: use of undefined value here causes illegal behavior
-// :87:17: error: use of undefined value here causes illegal behavior
-// :87:17: error: use of undefined value here causes illegal behavior
-// :87:17: note: when computing vector element at index '0'
-// :87:17: error: use of undefined value here causes illegal behavior
-// :87:17: note: when computing vector element at index '0'
-// :87:17: error: use of undefined value here causes illegal behavior
-// :87:17: note: when computing vector element at index '0'
-// :87:17: error: use of undefined value here causes illegal behavior
-// :87:17: note: when computing vector element at index '0'
-// :87:17: error: use of undefined value here causes illegal behavior
-// :87:17: note: when computing vector element at index '1'
-// :87:17: error: use of undefined value here causes illegal behavior
-// :87:17: note: when computing vector element at index '1'
-// :87:17: error: use of undefined value here causes illegal behavior
-// :87:17: note: when computing vector element at index '0'
-// :87:17: error: use of undefined value here causes illegal behavior
-// :87:17: note: when computing vector element at index '0'
-// :87:17: error: use of undefined value here causes illegal behavior
-// :87:17: note: when computing vector element at index '0'
-// :87:17: error: use of undefined value here causes illegal behavior
-// :87:17: note: when computing vector element at index '0'
-// :87:21: error: use of undefined value here causes illegal behavior
-// :87:21: note: when computing vector element at index '0'
-// :87:21: error: use of undefined value here causes illegal behavior
-// :87:21: note: when computing vector element at index '0'
-// :87:21: error: use of undefined value here causes illegal behavior
-// :87:21: note: when computing vector element at index '0'
-// :87:21: error: use of undefined value here causes illegal behavior
-// :87:21: note: when computing vector element at index '0'
-// :87:21: error: use of undefined value here causes illegal behavior
-// :87:21: note: when computing vector element at index '0'
-// :87:21: error: use of undefined value here causes illegal behavior
-// :87:21: note: when computing vector element at index '0'
-// :87:21: error: use of undefined value here causes illegal behavior
-// :87:21: note: when computing vector element at index '0'
-// :87:21: error: use of undefined value here causes illegal behavior
-// :87:21: note: when computing vector element at index '0'
-// :87:21: error: use of undefined value here causes illegal behavior
-// :87:21: note: when computing vector element at index '0'
-// :87:21: error: use of undefined value here causes illegal behavior
-// :87:21: note: when computing vector element at index '0'
-// :87:21: error: use of undefined value here causes illegal behavior
-// :87:21: note: when computing vector element at index '0'
-// :87:21: error: use of undefined value here causes illegal behavior
-// :87:21: note: when computing vector element at index '0'
-// :87:21: error: use of undefined value here causes illegal behavior
-// :87:21: note: when computing vector element at index '0'
-// :87:21: error: use of undefined value here causes illegal behavior
-// :87:21: note: when computing vector element at index '0'
-// :87:21: error: use of undefined value here causes illegal behavior
-// :87:21: note: when computing vector element at index '0'
-// :87:21: error: use of undefined value here causes illegal behavior
-// :87:21: note: when computing vector element at index '0'
-// :87:21: error: use of undefined value here causes illegal behavior
-// :87:21: note: when computing vector element at index '0'
-// :87:21: error: use of undefined value here causes illegal behavior
-// :87:21: note: when computing vector element at index '0'
-// :87:21: error: use of undefined value here causes illegal behavior
-// :87:21: note: when computing vector element at index '0'
-// :87:21: error: use of undefined value here causes illegal behavior
-// :87:21: note: when computing vector element at index '0'
-// :87:21: error: use of undefined value here causes illegal behavior
-// :87:21: note: when computing vector element at index '0'
-// :87:21: error: use of undefined value here causes illegal behavior
-// :87:21: note: when computing vector element at index '0'
-// :91:22: error: use of undefined value here causes illegal behavior
-// :91:22: error: use of undefined value here causes illegal behavior
-// :91:22: error: use of undefined value here causes illegal behavior
-// :91:22: note: when computing vector element at index '0'
-// :91:22: error: use of undefined value here causes illegal behavior
-// :91:22: note: when computing vector element at index '0'
-// :91:22: error: use of undefined value here causes illegal behavior
-// :91:22: note: when computing vector element at index '0'
-// :91:22: error: use of undefined value here causes illegal behavior
-// :91:22: note: when computing vector element at index '0'
-// :91:22: error: use of undefined value here causes illegal behavior
-// :91:22: note: when computing vector element at index '1'
-// :91:22: error: use of undefined value here causes illegal behavior
-// :91:22: note: when computing vector element at index '1'
-// :91:22: error: use of undefined value here causes illegal behavior
-// :91:22: note: when computing vector element at index '0'
-// :91:22: error: use of undefined value here causes illegal behavior
-// :91:22: note: when computing vector element at index '0'
-// :91:22: error: use of undefined value here causes illegal behavior
-// :91:22: note: when computing vector element at index '0'
-// :91:22: error: use of undefined value here causes illegal behavior
-// :91:22: note: when computing vector element at index '0'
-// :91:22: error: use of undefined value here causes illegal behavior
-// :91:22: error: use of undefined value here causes illegal behavior
-// :91:22: error: use of undefined value here causes illegal behavior
-// :91:22: note: when computing vector element at index '0'
-// :91:22: error: use of undefined value here causes illegal behavior
-// :91:22: note: when computing vector element at index '0'
-// :91:22: error: use of undefined value here causes illegal behavior
-// :91:22: note: when computing vector element at index '0'
-// :91:22: error: use of undefined value here causes illegal behavior
-// :91:22: note: when computing vector element at index '0'
-// :91:22: error: use of undefined value here causes illegal behavior
-// :91:22: note: when computing vector element at index '1'
-// :91:22: error: use of undefined value here causes illegal behavior
-// :91:22: note: when computing vector element at index '1'
-// :91:22: error: use of undefined value here causes illegal behavior
-// :91:22: note: when computing vector element at index '0'
-// :91:22: error: use of undefined value here causes illegal behavior
-// :91:22: note: when computing vector element at index '0'
-// :91:22: error: use of undefined value here causes illegal behavior
-// :91:22: note: when computing vector element at index '0'
-// :91:22: error: use of undefined value here causes illegal behavior
-// :91:22: note: when computing vector element at index '0'
-// :91:22: error: use of undefined value here causes illegal behavior
-// :91:22: error: use of undefined value here causes illegal behavior
-// :91:22: error: use of undefined value here causes illegal behavior
-// :91:22: note: when computing vector element at index '0'
-// :91:22: error: use of undefined value here causes illegal behavior
-// :91:22: note: when computing vector element at index '0'
-// :91:22: error: use of undefined value here causes illegal behavior
-// :91:22: note: when computing vector element at index '0'
-// :91:22: error: use of undefined value here causes illegal behavior
-// :91:22: note: when computing vector element at index '0'
-// :91:22: error: use of undefined value here causes illegal behavior
-// :91:22: note: when computing vector element at index '1'
-// :91:22: error: use of undefined value here causes illegal behavior
-// :91:22: note: when computing vector element at index '1'
-// :91:22: error: use of undefined value here causes illegal behavior
-// :91:22: note: when computing vector element at index '0'
-// :91:22: error: use of undefined value here causes illegal behavior
-// :91:22: note: when computing vector element at index '0'
-// :91:22: error: use of undefined value here causes illegal behavior
-// :91:22: note: when computing vector element at index '0'
-// :91:22: error: use of undefined value here causes illegal behavior
-// :91:22: note: when computing vector element at index '0'
-// :91:22: error: use of undefined value here causes illegal behavior
-// :91:22: error: use of undefined value here causes illegal behavior
-// :91:22: error: use of undefined value here causes illegal behavior
-// :91:22: note: when computing vector element at index '0'
-// :91:22: error: use of undefined value here causes illegal behavior
-// :91:22: note: when computing vector element at index '0'
-// :91:22: error: use of undefined value here causes illegal behavior
-// :91:22: note: when computing vector element at index '0'
-// :91:22: error: use of undefined value here causes illegal behavior
-// :91:22: note: when computing vector element at index '0'
-// :91:22: error: use of undefined value here causes illegal behavior
-// :91:22: note: when computing vector element at index '1'
-// :91:22: error: use of undefined value here causes illegal behavior
-// :91:22: note: when computing vector element at index '1'
-// :91:22: error: use of undefined value here causes illegal behavior
-// :91:22: note: when computing vector element at index '0'
-// :91:22: error: use of undefined value here causes illegal behavior
-// :91:22: note: when computing vector element at index '0'
-// :91:22: error: use of undefined value here causes illegal behavior
-// :91:22: note: when computing vector element at index '0'
-// :91:22: error: use of undefined value here causes illegal behavior
-// :91:22: note: when computing vector element at index '0'
-// :91:22: error: use of undefined value here causes illegal behavior
-// :91:22: error: use of undefined value here causes illegal behavior
-// :91:22: error: use of undefined value here causes illegal behavior
-// :91:22: note: when computing vector element at index '0'
-// :91:22: error: use of undefined value here causes illegal behavior
-// :91:22: note: when computing vector element at index '0'
-// :91:22: error: use of undefined value here causes illegal behavior
-// :91:22: note: when computing vector element at index '0'
-// :91:22: error: use of undefined value here causes illegal behavior
-// :91:22: note: when computing vector element at index '0'
-// :91:22: error: use of undefined value here causes illegal behavior
-// :91:22: note: when computing vector element at index '1'
-// :91:22: error: use of undefined value here causes illegal behavior
-// :91:22: note: when computing vector element at index '1'
-// :91:22: error: use of undefined value here causes illegal behavior
-// :91:22: note: when computing vector element at index '0'
-// :91:22: error: use of undefined value here causes illegal behavior
-// :91:22: note: when computing vector element at index '0'
-// :91:22: error: use of undefined value here causes illegal behavior
-// :91:22: note: when computing vector element at index '0'
-// :91:22: error: use of undefined value here causes illegal behavior
-// :91:22: note: when computing vector element at index '0'
-// :91:22: error: use of undefined value here causes illegal behavior
-// :91:22: error: use of undefined value here causes illegal behavior
-// :91:22: error: use of undefined value here causes illegal behavior
-// :91:22: note: when computing vector element at index '0'
-// :91:22: error: use of undefined value here causes illegal behavior
-// :91:22: note: when computing vector element at index '0'
-// :91:22: error: use of undefined value here causes illegal behavior
-// :91:22: note: when computing vector element at index '0'
-// :91:22: error: use of undefined value here causes illegal behavior
-// :91:22: note: when computing vector element at index '0'
-// :91:22: error: use of undefined value here causes illegal behavior
-// :91:22: note: when computing vector element at index '1'
-// :91:22: error: use of undefined value here causes illegal behavior
-// :91:22: note: when computing vector element at index '1'
-// :91:22: error: use of undefined value here causes illegal behavior
-// :91:22: note: when computing vector element at index '0'
-// :91:22: error: use of undefined value here causes illegal behavior
-// :91:22: note: when computing vector element at index '0'
-// :91:22: error: use of undefined value here causes illegal behavior
-// :91:22: note: when computing vector element at index '0'
-// :91:22: error: use of undefined value here causes illegal behavior
-// :91:22: note: when computing vector element at index '0'
-// :91:22: error: use of undefined value here causes illegal behavior
-// :91:22: error: use of undefined value here causes illegal behavior
-// :91:22: error: use of undefined value here causes illegal behavior
-// :91:22: note: when computing vector element at index '0'
-// :91:22: error: use of undefined value here causes illegal behavior
-// :91:22: note: when computing vector element at index '0'
-// :91:22: error: use of undefined value here causes illegal behavior
-// :91:22: note: when computing vector element at index '0'
-// :91:22: error: use of undefined value here causes illegal behavior
-// :91:22: note: when computing vector element at index '0'
-// :91:22: error: use of undefined value here causes illegal behavior
-// :91:22: note: when computing vector element at index '1'
-// :91:22: error: use of undefined value here causes illegal behavior
-// :91:22: note: when computing vector element at index '1'
-// :91:22: error: use of undefined value here causes illegal behavior
-// :91:22: note: when computing vector element at index '0'
-// :91:22: error: use of undefined value here causes illegal behavior
-// :91:22: note: when computing vector element at index '0'
-// :91:22: error: use of undefined value here causes illegal behavior
-// :91:22: note: when computing vector element at index '0'
-// :91:22: error: use of undefined value here causes illegal behavior
-// :91:22: note: when computing vector element at index '0'
-// :91:22: error: use of undefined value here causes illegal behavior
-// :91:22: error: use of undefined value here causes illegal behavior
-// :91:22: error: use of undefined value here causes illegal behavior
-// :91:22: note: when computing vector element at index '0'
-// :91:22: error: use of undefined value here causes illegal behavior
-// :91:22: note: when computing vector element at index '0'
-// :91:22: error: use of undefined value here causes illegal behavior
-// :91:22: note: when computing vector element at index '0'
-// :91:22: error: use of undefined value here causes illegal behavior
-// :91:22: note: when computing vector element at index '0'
-// :91:22: error: use of undefined value here causes illegal behavior
-// :91:22: note: when computing vector element at index '1'
-// :91:22: error: use of undefined value here causes illegal behavior
-// :91:22: note: when computing vector element at index '1'
-// :91:22: error: use of undefined value here causes illegal behavior
-// :91:22: note: when computing vector element at index '0'
-// :91:22: error: use of undefined value here causes illegal behavior
-// :91:22: note: when computing vector element at index '0'
-// :91:22: error: use of undefined value here causes illegal behavior
-// :91:22: note: when computing vector element at index '0'
-// :91:22: error: use of undefined value here causes illegal behavior
-// :91:22: note: when computing vector element at index '0'
-// :91:22: error: use of undefined value here causes illegal behavior
-// :91:22: error: use of undefined value here causes illegal behavior
-// :91:22: error: use of undefined value here causes illegal behavior
-// :91:22: note: when computing vector element at index '0'
-// :91:22: error: use of undefined value here causes illegal behavior
-// :91:22: note: when computing vector element at index '0'
-// :91:22: error: use of undefined value here causes illegal behavior
-// :91:22: note: when computing vector element at index '0'
-// :91:22: error: use of undefined value here causes illegal behavior
-// :91:22: note: when computing vector element at index '0'
-// :91:22: error: use of undefined value here causes illegal behavior
-// :91:22: note: when computing vector element at index '1'
-// :91:22: error: use of undefined value here causes illegal behavior
-// :91:22: note: when computing vector element at index '1'
-// :91:22: error: use of undefined value here causes illegal behavior
-// :91:22: note: when computing vector element at index '0'
-// :91:22: error: use of undefined value here causes illegal behavior
-// :91:22: note: when computing vector element at index '0'
-// :91:22: error: use of undefined value here causes illegal behavior
-// :91:22: note: when computing vector element at index '0'
-// :91:22: error: use of undefined value here causes illegal behavior
-// :91:22: note: when computing vector element at index '0'
-// :91:22: error: use of undefined value here causes illegal behavior
-// :91:22: error: use of undefined value here causes illegal behavior
-// :91:22: error: use of undefined value here causes illegal behavior
-// :91:22: note: when computing vector element at index '0'
-// :91:22: error: use of undefined value here causes illegal behavior
-// :91:22: note: when computing vector element at index '0'
-// :91:22: error: use of undefined value here causes illegal behavior
-// :91:22: note: when computing vector element at index '0'
-// :91:22: error: use of undefined value here causes illegal behavior
-// :91:22: note: when computing vector element at index '0'
-// :91:22: error: use of undefined value here causes illegal behavior
-// :91:22: note: when computing vector element at index '1'
-// :91:22: error: use of undefined value here causes illegal behavior
-// :91:22: note: when computing vector element at index '1'
-// :91:22: error: use of undefined value here causes illegal behavior
-// :91:22: note: when computing vector element at index '0'
-// :91:22: error: use of undefined value here causes illegal behavior
-// :91:22: note: when computing vector element at index '0'
-// :91:22: error: use of undefined value here causes illegal behavior
-// :91:22: note: when computing vector element at index '0'
-// :91:22: error: use of undefined value here causes illegal behavior
-// :91:22: note: when computing vector element at index '0'
-// :91:22: error: use of undefined value here causes illegal behavior
-// :91:22: error: use of undefined value here causes illegal behavior
-// :91:22: error: use of undefined value here causes illegal behavior
-// :91:22: note: when computing vector element at index '0'
-// :91:22: error: use of undefined value here causes illegal behavior
-// :91:22: note: when computing vector element at index '0'
-// :91:22: error: use of undefined value here causes illegal behavior
-// :91:22: note: when computing vector element at index '0'
-// :91:22: error: use of undefined value here causes illegal behavior
-// :91:22: note: when computing vector element at index '0'
-// :91:22: error: use of undefined value here causes illegal behavior
-// :91:22: note: when computing vector element at index '1'
-// :91:22: error: use of undefined value here causes illegal behavior
-// :91:22: note: when computing vector element at index '1'
-// :91:22: error: use of undefined value here causes illegal behavior
-// :91:22: note: when computing vector element at index '0'
-// :91:22: error: use of undefined value here causes illegal behavior
-// :91:22: note: when computing vector element at index '0'
-// :91:22: error: use of undefined value here causes illegal behavior
-// :91:22: note: when computing vector element at index '0'
-// :91:22: error: use of undefined value here causes illegal behavior
-// :91:22: note: when computing vector element at index '0'
-// :91:25: error: use of undefined value here causes illegal behavior
-// :91:25: note: when computing vector element at index '0'
-// :91:25: error: use of undefined value here causes illegal behavior
-// :91:25: note: when computing vector element at index '0'
-// :91:25: error: use of undefined value here causes illegal behavior
-// :91:25: note: when computing vector element at index '0'
-// :91:25: error: use of undefined value here causes illegal behavior
-// :91:25: note: when computing vector element at index '0'
-// :91:25: error: use of undefined value here causes illegal behavior
-// :91:25: note: when computing vector element at index '0'
-// :91:25: error: use of undefined value here causes illegal behavior
-// :91:25: note: when computing vector element at index '0'
-// :91:25: error: use of undefined value here causes illegal behavior
-// :91:25: note: when computing vector element at index '0'
-// :91:25: error: use of undefined value here causes illegal behavior
-// :91:25: note: when computing vector element at index '0'
-// :91:25: error: use of undefined value here causes illegal behavior
-// :91:25: note: when computing vector element at index '0'
-// :91:25: error: use of undefined value here causes illegal behavior
-// :91:25: note: when computing vector element at index '0'
-// :91:25: error: use of undefined value here causes illegal behavior
-// :91:25: note: when computing vector element at index '0'
-// :91:25: error: use of undefined value here causes illegal behavior
-// :91:25: note: when computing vector element at index '0'
-// :91:25: error: use of undefined value here causes illegal behavior
-// :91:25: note: when computing vector element at index '0'
-// :91:25: error: use of undefined value here causes illegal behavior
-// :91:25: note: when computing vector element at index '0'
-// :91:25: error: use of undefined value here causes illegal behavior
-// :91:25: note: when computing vector element at index '0'
-// :91:25: error: use of undefined value here causes illegal behavior
-// :91:25: note: when computing vector element at index '0'
-// :91:25: error: use of undefined value here causes illegal behavior
-// :91:25: note: when computing vector element at index '0'
-// :91:25: error: use of undefined value here causes illegal behavior
-// :91:25: note: when computing vector element at index '0'
-// :91:25: error: use of undefined value here causes illegal behavior
-// :91:25: note: when computing vector element at index '0'
-// :91:25: error: use of undefined value here causes illegal behavior
-// :91:25: note: when computing vector element at index '0'
-// :91:25: error: use of undefined value here causes illegal behavior
-// :91:25: note: when computing vector element at index '0'
-// :91:25: error: use of undefined value here causes illegal behavior
-// :91:25: note: when computing vector element at index '0'
-// :95:22: error: use of undefined value here causes illegal behavior
-// :95:22: error: use of undefined value here causes illegal behavior
-// :95:22: error: use of undefined value here causes illegal behavior
-// :95:22: note: when computing vector element at index '0'
-// :95:22: error: use of undefined value here causes illegal behavior
-// :95:22: note: when computing vector element at index '0'
-// :95:22: error: use of undefined value here causes illegal behavior
-// :95:22: note: when computing vector element at index '0'
-// :95:22: error: use of undefined value here causes illegal behavior
-// :95:22: note: when computing vector element at index '0'
-// :95:22: error: use of undefined value here causes illegal behavior
-// :95:22: note: when computing vector element at index '1'
-// :95:22: error: use of undefined value here causes illegal behavior
-// :95:22: note: when computing vector element at index '1'
-// :95:22: error: use of undefined value here causes illegal behavior
-// :95:22: note: when computing vector element at index '0'
-// :95:22: error: use of undefined value here causes illegal behavior
-// :95:22: note: when computing vector element at index '0'
-// :95:22: error: use of undefined value here causes illegal behavior
-// :95:22: note: when computing vector element at index '0'
-// :95:22: error: use of undefined value here causes illegal behavior
-// :95:22: note: when computing vector element at index '0'
-// :95:22: error: use of undefined value here causes illegal behavior
-// :95:22: error: use of undefined value here causes illegal behavior
-// :95:22: error: use of undefined value here causes illegal behavior
-// :95:22: note: when computing vector element at index '0'
-// :95:22: error: use of undefined value here causes illegal behavior
-// :95:22: note: when computing vector element at index '0'
-// :95:22: error: use of undefined value here causes illegal behavior
-// :95:22: note: when computing vector element at index '0'
-// :95:22: error: use of undefined value here causes illegal behavior
-// :95:22: note: when computing vector element at index '0'
-// :95:22: error: use of undefined value here causes illegal behavior
-// :95:22: note: when computing vector element at index '1'
-// :95:22: error: use of undefined value here causes illegal behavior
-// :95:22: note: when computing vector element at index '1'
-// :95:22: error: use of undefined value here causes illegal behavior
-// :95:22: note: when computing vector element at index '0'
-// :95:22: error: use of undefined value here causes illegal behavior
-// :95:22: note: when computing vector element at index '0'
-// :95:22: error: use of undefined value here causes illegal behavior
-// :95:22: note: when computing vector element at index '0'
-// :95:22: error: use of undefined value here causes illegal behavior
-// :95:22: note: when computing vector element at index '0'
-// :95:22: error: use of undefined value here causes illegal behavior
-// :95:22: error: use of undefined value here causes illegal behavior
-// :95:22: error: use of undefined value here causes illegal behavior
-// :95:22: note: when computing vector element at index '0'
-// :95:22: error: use of undefined value here causes illegal behavior
-// :95:22: note: when computing vector element at index '0'
-// :95:22: error: use of undefined value here causes illegal behavior
-// :95:22: note: when computing vector element at index '0'
-// :95:22: error: use of undefined value here causes illegal behavior
-// :95:22: note: when computing vector element at index '0'
-// :95:22: error: use of undefined value here causes illegal behavior
-// :95:22: note: when computing vector element at index '1'
-// :95:22: error: use of undefined value here causes illegal behavior
-// :95:22: note: when computing vector element at index '1'
-// :95:22: error: use of undefined value here causes illegal behavior
-// :95:22: note: when computing vector element at index '0'
-// :95:22: error: use of undefined value here causes illegal behavior
-// :95:22: note: when computing vector element at index '0'
-// :95:22: error: use of undefined value here causes illegal behavior
-// :95:22: note: when computing vector element at index '0'
-// :95:22: error: use of undefined value here causes illegal behavior
-// :95:22: note: when computing vector element at index '0'
-// :95:22: error: use of undefined value here causes illegal behavior
-// :95:22: error: use of undefined value here causes illegal behavior
-// :95:22: error: use of undefined value here causes illegal behavior
-// :95:22: note: when computing vector element at index '0'
-// :95:22: error: use of undefined value here causes illegal behavior
-// :95:22: note: when computing vector element at index '0'
-// :95:22: error: use of undefined value here causes illegal behavior
-// :95:22: note: when computing vector element at index '0'
-// :95:22: error: use of undefined value here causes illegal behavior
-// :95:22: note: when computing vector element at index '0'
-// :95:22: error: use of undefined value here causes illegal behavior
-// :95:22: note: when computing vector element at index '1'
-// :95:22: error: use of undefined value here causes illegal behavior
-// :95:22: note: when computing vector element at index '1'
-// :95:22: error: use of undefined value here causes illegal behavior
-// :95:22: note: when computing vector element at index '0'
-// :95:22: error: use of undefined value here causes illegal behavior
-// :95:22: note: when computing vector element at index '0'
-// :95:22: error: use of undefined value here causes illegal behavior
-// :95:22: note: when computing vector element at index '0'
-// :95:22: error: use of undefined value here causes illegal behavior
-// :95:22: note: when computing vector element at index '0'
-// :95:22: error: use of undefined value here causes illegal behavior
-// :95:22: error: use of undefined value here causes illegal behavior
-// :95:22: error: use of undefined value here causes illegal behavior
-// :95:22: note: when computing vector element at index '0'
-// :95:22: error: use of undefined value here causes illegal behavior
-// :95:22: note: when computing vector element at index '0'
-// :95:22: error: use of undefined value here causes illegal behavior
-// :95:22: note: when computing vector element at index '0'
-// :95:22: error: use of undefined value here causes illegal behavior
-// :95:22: note: when computing vector element at index '0'
-// :95:22: error: use of undefined value here causes illegal behavior
-// :95:22: note: when computing vector element at index '1'
-// :95:22: error: use of undefined value here causes illegal behavior
-// :95:22: note: when computing vector element at index '1'
-// :95:22: error: use of undefined value here causes illegal behavior
-// :95:22: note: when computing vector element at index '0'
-// :95:22: error: use of undefined value here causes illegal behavior
-// :95:22: note: when computing vector element at index '0'
-// :95:22: error: use of undefined value here causes illegal behavior
-// :95:22: note: when computing vector element at index '0'
-// :95:22: error: use of undefined value here causes illegal behavior
-// :95:22: note: when computing vector element at index '0'
-// :95:22: error: use of undefined value here causes illegal behavior
-// :95:22: error: use of undefined value here causes illegal behavior
-// :95:22: error: use of undefined value here causes illegal behavior
-// :95:22: note: when computing vector element at index '0'
-// :95:22: error: use of undefined value here causes illegal behavior
-// :95:22: note: when computing vector element at index '0'
-// :95:22: error: use of undefined value here causes illegal behavior
-// :95:22: note: when computing vector element at index '0'
-// :95:22: error: use of undefined value here causes illegal behavior
-// :95:22: note: when computing vector element at index '0'
-// :95:22: error: use of undefined value here causes illegal behavior
-// :95:22: note: when computing vector element at index '1'
-// :95:22: error: use of undefined value here causes illegal behavior
-// :95:22: note: when computing vector element at index '1'
-// :95:22: error: use of undefined value here causes illegal behavior
-// :95:22: note: when computing vector element at index '0'
-// :95:22: error: use of undefined value here causes illegal behavior
-// :95:22: note: when computing vector element at index '0'
-// :95:22: error: use of undefined value here causes illegal behavior
-// :95:22: note: when computing vector element at index '0'
-// :95:22: error: use of undefined value here causes illegal behavior
-// :95:22: note: when computing vector element at index '0'
-// :95:22: error: use of undefined value here causes illegal behavior
-// :95:22: error: use of undefined value here causes illegal behavior
-// :95:22: error: use of undefined value here causes illegal behavior
-// :95:22: note: when computing vector element at index '0'
-// :95:22: error: use of undefined value here causes illegal behavior
-// :95:22: note: when computing vector element at index '0'
-// :95:22: error: use of undefined value here causes illegal behavior
-// :95:22: note: when computing vector element at index '0'
-// :95:22: error: use of undefined value here causes illegal behavior
-// :95:22: note: when computing vector element at index '0'
-// :95:22: error: use of undefined value here causes illegal behavior
-// :95:22: note: when computing vector element at index '1'
-// :95:22: error: use of undefined value here causes illegal behavior
-// :95:22: note: when computing vector element at index '1'
-// :95:22: error: use of undefined value here causes illegal behavior
-// :95:22: note: when computing vector element at index '0'
-// :95:22: error: use of undefined value here causes illegal behavior
-// :95:22: note: when computing vector element at index '0'
-// :95:22: error: use of undefined value here causes illegal behavior
-// :95:22: note: when computing vector element at index '0'
-// :95:22: error: use of undefined value here causes illegal behavior
-// :95:22: note: when computing vector element at index '0'
-// :95:22: error: use of undefined value here causes illegal behavior
-// :95:22: error: use of undefined value here causes illegal behavior
-// :95:22: error: use of undefined value here causes illegal behavior
-// :95:22: note: when computing vector element at index '0'
-// :95:22: error: use of undefined value here causes illegal behavior
-// :95:22: note: when computing vector element at index '0'
-// :95:22: error: use of undefined value here causes illegal behavior
-// :95:22: note: when computing vector element at index '0'
-// :95:22: error: use of undefined value here causes illegal behavior
-// :95:22: note: when computing vector element at index '0'
-// :95:22: error: use of undefined value here causes illegal behavior
-// :95:22: note: when computing vector element at index '1'
-// :95:22: error: use of undefined value here causes illegal behavior
-// :95:22: note: when computing vector element at index '1'
-// :95:22: error: use of undefined value here causes illegal behavior
-// :95:22: note: when computing vector element at index '0'
-// :95:22: error: use of undefined value here causes illegal behavior
-// :95:22: note: when computing vector element at index '0'
-// :95:22: error: use of undefined value here causes illegal behavior
-// :95:22: note: when computing vector element at index '0'
-// :95:22: error: use of undefined value here causes illegal behavior
-// :95:22: note: when computing vector element at index '0'
-// :95:22: error: use of undefined value here causes illegal behavior
-// :95:22: error: use of undefined value here causes illegal behavior
-// :95:22: error: use of undefined value here causes illegal behavior
-// :95:22: note: when computing vector element at index '0'
-// :95:22: error: use of undefined value here causes illegal behavior
-// :95:22: note: when computing vector element at index '0'
-// :95:22: error: use of undefined value here causes illegal behavior
-// :95:22: note: when computing vector element at index '0'
-// :95:22: error: use of undefined value here causes illegal behavior
-// :95:22: note: when computing vector element at index '0'
-// :95:22: error: use of undefined value here causes illegal behavior
-// :95:22: note: when computing vector element at index '1'
-// :95:22: error: use of undefined value here causes illegal behavior
-// :95:22: note: when computing vector element at index '1'
-// :95:22: error: use of undefined value here causes illegal behavior
-// :95:22: note: when computing vector element at index '0'
-// :95:22: error: use of undefined value here causes illegal behavior
-// :95:22: note: when computing vector element at index '0'
-// :95:22: error: use of undefined value here causes illegal behavior
-// :95:22: note: when computing vector element at index '0'
-// :95:22: error: use of undefined value here causes illegal behavior
-// :95:22: note: when computing vector element at index '0'
-// :95:22: error: use of undefined value here causes illegal behavior
-// :95:22: error: use of undefined value here causes illegal behavior
-// :95:22: error: use of undefined value here causes illegal behavior
-// :95:22: note: when computing vector element at index '0'
-// :95:22: error: use of undefined value here causes illegal behavior
-// :95:22: note: when computing vector element at index '0'
-// :95:22: error: use of undefined value here causes illegal behavior
-// :95:22: note: when computing vector element at index '0'
-// :95:22: error: use of undefined value here causes illegal behavior
-// :95:22: note: when computing vector element at index '0'
-// :95:22: error: use of undefined value here causes illegal behavior
-// :95:22: note: when computing vector element at index '1'
-// :95:22: error: use of undefined value here causes illegal behavior
-// :95:22: note: when computing vector element at index '1'
-// :95:22: error: use of undefined value here causes illegal behavior
-// :95:22: note: when computing vector element at index '0'
-// :95:22: error: use of undefined value here causes illegal behavior
-// :95:22: note: when computing vector element at index '0'
-// :95:22: error: use of undefined value here causes illegal behavior
-// :95:22: note: when computing vector element at index '0'
-// :95:22: error: use of undefined value here causes illegal behavior
-// :95:22: note: when computing vector element at index '0'
-// :95:22: error: use of undefined value here causes illegal behavior
-// :95:22: error: use of undefined value here causes illegal behavior
-// :95:22: error: use of undefined value here causes illegal behavior
-// :95:22: note: when computing vector element at index '0'
-// :95:22: error: use of undefined value here causes illegal behavior
-// :95:22: note: when computing vector element at index '0'
-// :95:22: error: use of undefined value here causes illegal behavior
-// :95:22: note: when computing vector element at index '0'
-// :95:22: error: use of undefined value here causes illegal behavior
-// :95:22: note: when computing vector element at index '0'
-// :95:22: error: use of undefined value here causes illegal behavior
-// :95:22: note: when computing vector element at index '1'
-// :95:22: error: use of undefined value here causes illegal behavior
-// :95:22: note: when computing vector element at index '1'
-// :95:22: error: use of undefined value here causes illegal behavior
-// :95:22: note: when computing vector element at index '0'
-// :95:22: error: use of undefined value here causes illegal behavior
-// :95:22: note: when computing vector element at index '0'
-// :95:22: error: use of undefined value here causes illegal behavior
-// :95:22: note: when computing vector element at index '0'
-// :95:22: error: use of undefined value here causes illegal behavior
-// :95:22: note: when computing vector element at index '0'
-// :95:25: error: use of undefined value here causes illegal behavior
-// :95:25: note: when computing vector element at index '0'
-// :95:25: error: use of undefined value here causes illegal behavior
-// :95:25: note: when computing vector element at index '0'
-// :95:25: error: use of undefined value here causes illegal behavior
-// :95:25: note: when computing vector element at index '0'
-// :95:25: error: use of undefined value here causes illegal behavior
-// :95:25: note: when computing vector element at index '0'
-// :95:25: error: use of undefined value here causes illegal behavior
-// :95:25: note: when computing vector element at index '0'
-// :95:25: error: use of undefined value here causes illegal behavior
-// :95:25: note: when computing vector element at index '0'
-// :95:25: error: use of undefined value here causes illegal behavior
-// :95:25: note: when computing vector element at index '0'
-// :95:25: error: use of undefined value here causes illegal behavior
-// :95:25: note: when computing vector element at index '0'
-// :95:25: error: use of undefined value here causes illegal behavior
-// :95:25: note: when computing vector element at index '0'
-// :95:25: error: use of undefined value here causes illegal behavior
-// :95:25: note: when computing vector element at index '0'
-// :95:25: error: use of undefined value here causes illegal behavior
-// :95:25: note: when computing vector element at index '0'
-// :95:25: error: use of undefined value here causes illegal behavior
-// :95:25: note: when computing vector element at index '0'
-// :95:25: error: use of undefined value here causes illegal behavior
-// :95:25: note: when computing vector element at index '0'
-// :95:25: error: use of undefined value here causes illegal behavior
-// :95:25: note: when computing vector element at index '0'
-// :95:25: error: use of undefined value here causes illegal behavior
-// :95:25: note: when computing vector element at index '0'
-// :95:25: error: use of undefined value here causes illegal behavior
-// :95:25: note: when computing vector element at index '0'
-// :95:25: error: use of undefined value here causes illegal behavior
-// :95:25: note: when computing vector element at index '0'
-// :95:25: error: use of undefined value here causes illegal behavior
-// :95:25: note: when computing vector element at index '0'
-// :95:25: error: use of undefined value here causes illegal behavior
-// :95:25: note: when computing vector element at index '0'
-// :95:25: error: use of undefined value here causes illegal behavior
-// :95:25: note: when computing vector element at index '0'
-// :95:25: error: use of undefined value here causes illegal behavior
-// :95:25: note: when computing vector element at index '0'
-// :95:25: error: use of undefined value here causes illegal behavior
-// :95:25: note: when computing vector element at index '0'
-// :101:17: error: use of undefined value here causes illegal behavior
-// :101:17: error: use of undefined value here causes illegal behavior
-// :101:17: error: use of undefined value here causes illegal behavior
-// :101:17: error: use of undefined value here causes illegal behavior
-// :101:17: error: use of undefined value here causes illegal behavior
-// :101:17: error: use of undefined value here causes illegal behavior
-// :101:17: error: use of undefined value here causes illegal behavior
-// :101:17: note: when computing vector element at index '1'
-// :101:17: error: use of undefined value here causes illegal behavior
-// :101:17: note: when computing vector element at index '1'
-// :101:17: error: use of undefined value here causes illegal behavior
-// :101:17: note: when computing vector element at index '1'
-// :101:17: error: use of undefined value here causes illegal behavior
-// :101:17: note: when computing vector element at index '1'
-// :101:17: error: use of undefined value here causes illegal behavior
-// :101:17: note: when computing vector element at index '0'
-// :101:17: error: use of undefined value here causes illegal behavior
-// :101:17: note: when computing vector element at index '0'
-// :101:17: error: use of undefined value here causes illegal behavior
-// :101:17: note: when computing vector element at index '0'
-// :101:17: error: use of undefined value here causes illegal behavior
-// :101:17: note: when computing vector element at index '0'
-// :101:17: error: use of undefined value here causes illegal behavior
-// :101:17: error: use of undefined value here causes illegal behavior
-// :101:17: error: use of undefined value here causes illegal behavior
-// :101:17: error: use of undefined value here causes illegal behavior
-// :101:17: error: use of undefined value here causes illegal behavior
-// :101:17: error: use of undefined value here causes illegal behavior
-// :101:17: error: use of undefined value here causes illegal behavior
-// :101:17: note: when computing vector element at index '1'
-// :101:17: error: use of undefined value here causes illegal behavior
-// :101:17: note: when computing vector element at index '1'
-// :101:17: error: use of undefined value here causes illegal behavior
-// :101:17: note: when computing vector element at index '1'
-// :101:17: error: use of undefined value here causes illegal behavior
-// :101:17: note: when computing vector element at index '1'
-// :101:17: error: use of undefined value here causes illegal behavior
-// :101:17: note: when computing vector element at index '0'
-// :101:17: error: use of undefined value here causes illegal behavior
-// :101:17: note: when computing vector element at index '0'
-// :101:17: error: use of undefined value here causes illegal behavior
-// :101:17: note: when computing vector element at index '0'
-// :101:17: error: use of undefined value here causes illegal behavior
-// :101:17: note: when computing vector element at index '0'
-// :101:17: error: use of undefined value here causes illegal behavior
-// :101:17: error: use of undefined value here causes illegal behavior
-// :101:17: error: use of undefined value here causes illegal behavior
-// :101:17: error: use of undefined value here causes illegal behavior
-// :101:17: error: use of undefined value here causes illegal behavior
-// :101:17: error: use of undefined value here causes illegal behavior
-// :101:17: error: use of undefined value here causes illegal behavior
-// :101:17: note: when computing vector element at index '1'
-// :101:17: error: use of undefined value here causes illegal behavior
-// :101:17: note: when computing vector element at index '1'
-// :101:17: error: use of undefined value here causes illegal behavior
-// :101:17: note: when computing vector element at index '1'
-// :101:17: error: use of undefined value here causes illegal behavior
-// :101:17: note: when computing vector element at index '1'
-// :101:17: error: use of undefined value here causes illegal behavior
-// :101:17: note: when computing vector element at index '0'
-// :101:17: error: use of undefined value here causes illegal behavior
-// :101:17: note: when computing vector element at index '0'
-// :101:17: error: use of undefined value here causes illegal behavior
-// :101:17: note: when computing vector element at index '0'
-// :101:17: error: use of undefined value here causes illegal behavior
-// :101:17: note: when computing vector element at index '0'
-// :101:17: error: use of undefined value here causes illegal behavior
-// :101:17: error: use of undefined value here causes illegal behavior
-// :101:17: error: use of undefined value here causes illegal behavior
-// :101:17: error: use of undefined value here causes illegal behavior
-// :101:17: error: use of undefined value here causes illegal behavior
-// :101:17: error: use of undefined value here causes illegal behavior
-// :101:17: error: use of undefined value here causes illegal behavior
-// :101:17: note: when computing vector element at index '1'
-// :101:17: error: use of undefined value here causes illegal behavior
-// :101:17: note: when computing vector element at index '1'
-// :101:17: error: use of undefined value here causes illegal behavior
-// :101:17: note: when computing vector element at index '1'
-// :101:17: error: use of undefined value here causes illegal behavior
-// :101:17: note: when computing vector element at index '1'
-// :101:17: error: use of undefined value here causes illegal behavior
-// :101:17: note: when computing vector element at index '0'
-// :101:17: error: use of undefined value here causes illegal behavior
-// :101:17: note: when computing vector element at index '0'
-// :101:17: error: use of undefined value here causes illegal behavior
-// :101:17: note: when computing vector element at index '0'
-// :101:17: error: use of undefined value here causes illegal behavior
-// :101:17: note: when computing vector element at index '0'
-// :101:17: error: use of undefined value here causes illegal behavior
-// :101:17: error: use of undefined value here causes illegal behavior
-// :101:17: error: use of undefined value here causes illegal behavior
-// :101:17: error: use of undefined value here causes illegal behavior
-// :101:17: error: use of undefined value here causes illegal behavior
-// :101:17: error: use of undefined value here causes illegal behavior
-// :101:17: error: use of undefined value here causes illegal behavior
-// :101:17: note: when computing vector element at index '1'
-// :101:17: error: use of undefined value here causes illegal behavior
-// :101:17: note: when computing vector element at index '1'
-// :101:17: error: use of undefined value here causes illegal behavior
-// :101:17: note: when computing vector element at index '1'
-// :101:17: error: use of undefined value here causes illegal behavior
-// :101:17: note: when computing vector element at index '1'
-// :101:17: error: use of undefined value here causes illegal behavior
-// :101:17: note: when computing vector element at index '0'
-// :101:17: error: use of undefined value here causes illegal behavior
-// :101:17: note: when computing vector element at index '0'
-// :101:17: error: use of undefined value here causes illegal behavior
-// :101:17: note: when computing vector element at index '0'
-// :101:17: error: use of undefined value here causes illegal behavior
-// :101:17: note: when computing vector element at index '0'
-// :101:17: error: use of undefined value here causes illegal behavior
-// :101:17: error: use of undefined value here causes illegal behavior
-// :101:17: error: use of undefined value here causes illegal behavior
-// :101:17: error: use of undefined value here causes illegal behavior
-// :101:17: error: use of undefined value here causes illegal behavior
-// :101:17: error: use of undefined value here causes illegal behavior
-// :101:17: error: use of undefined value here causes illegal behavior
-// :101:17: note: when computing vector element at index '1'
-// :101:17: error: use of undefined value here causes illegal behavior
-// :101:17: note: when computing vector element at index '1'
-// :101:17: error: use of undefined value here causes illegal behavior
-// :101:17: note: when computing vector element at index '1'
-// :101:17: error: use of undefined value here causes illegal behavior
-// :101:17: note: when computing vector element at index '1'
-// :101:17: error: use of undefined value here causes illegal behavior
-// :101:17: note: when computing vector element at index '0'
-// :101:17: error: use of undefined value here causes illegal behavior
-// :101:17: note: when computing vector element at index '0'
-// :101:17: error: use of undefined value here causes illegal behavior
-// :101:17: note: when computing vector element at index '0'
-// :101:17: error: use of undefined value here causes illegal behavior
-// :101:17: note: when computing vector element at index '0'
-// :101:17: error: use of undefined value here causes illegal behavior
-// :101:17: error: use of undefined value here causes illegal behavior
-// :101:17: error: use of undefined value here causes illegal behavior
-// :101:17: error: use of undefined value here causes illegal behavior
-// :101:17: error: use of undefined value here causes illegal behavior
-// :101:17: error: use of undefined value here causes illegal behavior
-// :101:17: error: use of undefined value here causes illegal behavior
-// :101:17: note: when computing vector element at index '1'
-// :101:17: error: use of undefined value here causes illegal behavior
-// :101:17: note: when computing vector element at index '1'
-// :101:17: error: use of undefined value here causes illegal behavior
-// :101:17: note: when computing vector element at index '1'
-// :101:17: error: use of undefined value here causes illegal behavior
-// :101:17: note: when computing vector element at index '1'
-// :101:17: error: use of undefined value here causes illegal behavior
-// :101:17: note: when computing vector element at index '0'
-// :101:17: error: use of undefined value here causes illegal behavior
-// :101:17: note: when computing vector element at index '0'
-// :101:17: error: use of undefined value here causes illegal behavior
-// :101:17: note: when computing vector element at index '0'
-// :101:17: error: use of undefined value here causes illegal behavior
-// :101:17: note: when computing vector element at index '0'
-// :101:17: error: use of undefined value here causes illegal behavior
-// :101:17: error: use of undefined value here causes illegal behavior
-// :101:17: error: use of undefined value here causes illegal behavior
-// :101:17: error: use of undefined value here causes illegal behavior
-// :101:17: error: use of undefined value here causes illegal behavior
-// :101:17: error: use of undefined value here causes illegal behavior
-// :101:17: error: use of undefined value here causes illegal behavior
-// :101:17: note: when computing vector element at index '1'
-// :101:17: error: use of undefined value here causes illegal behavior
-// :101:17: note: when computing vector element at index '1'
-// :101:17: error: use of undefined value here causes illegal behavior
-// :101:17: note: when computing vector element at index '1'
-// :101:17: error: use of undefined value here causes illegal behavior
-// :101:17: note: when computing vector element at index '1'
-// :101:17: error: use of undefined value here causes illegal behavior
-// :101:17: note: when computing vector element at index '0'
-// :101:17: error: use of undefined value here causes illegal behavior
-// :101:17: note: when computing vector element at index '0'
-// :101:17: error: use of undefined value here causes illegal behavior
-// :101:17: note: when computing vector element at index '0'
-// :101:17: error: use of undefined value here causes illegal behavior
-// :101:17: note: when computing vector element at index '0'
-// :101:17: error: use of undefined value here causes illegal behavior
-// :101:17: error: use of undefined value here causes illegal behavior
-// :101:17: error: use of undefined value here causes illegal behavior
-// :101:17: error: use of undefined value here causes illegal behavior
-// :101:17: error: use of undefined value here causes illegal behavior
-// :101:17: error: use of undefined value here causes illegal behavior
-// :101:17: error: use of undefined value here causes illegal behavior
-// :101:17: note: when computing vector element at index '1'
-// :101:17: error: use of undefined value here causes illegal behavior
-// :101:17: note: when computing vector element at index '1'
-// :101:17: error: use of undefined value here causes illegal behavior
-// :101:17: note: when computing vector element at index '1'
-// :101:17: error: use of undefined value here causes illegal behavior
-// :101:17: note: when computing vector element at index '1'
-// :101:17: error: use of undefined value here causes illegal behavior
-// :101:17: note: when computing vector element at index '0'
-// :101:17: error: use of undefined value here causes illegal behavior
-// :101:17: note: when computing vector element at index '0'
-// :101:17: error: use of undefined value here causes illegal behavior
-// :101:17: note: when computing vector element at index '0'
-// :101:17: error: use of undefined value here causes illegal behavior
-// :101:17: note: when computing vector element at index '0'
-// :101:17: error: use of undefined value here causes illegal behavior
-// :101:17: error: use of undefined value here causes illegal behavior
-// :101:17: error: use of undefined value here causes illegal behavior
-// :101:17: error: use of undefined value here causes illegal behavior
-// :101:17: error: use of undefined value here causes illegal behavior
-// :101:17: error: use of undefined value here causes illegal behavior
-// :101:17: error: use of undefined value here causes illegal behavior
-// :101:17: note: when computing vector element at index '1'
-// :101:17: error: use of undefined value here causes illegal behavior
-// :101:17: note: when computing vector element at index '1'
-// :101:17: error: use of undefined value here causes illegal behavior
-// :101:17: note: when computing vector element at index '1'
-// :101:17: error: use of undefined value here causes illegal behavior
-// :101:17: note: when computing vector element at index '1'
-// :101:17: error: use of undefined value here causes illegal behavior
-// :101:17: note: when computing vector element at index '0'
-// :101:17: error: use of undefined value here causes illegal behavior
-// :101:17: note: when computing vector element at index '0'
-// :101:17: error: use of undefined value here causes illegal behavior
-// :101:17: note: when computing vector element at index '0'
-// :101:17: error: use of undefined value here causes illegal behavior
-// :101:17: note: when computing vector element at index '0'
-// :101:17: error: use of undefined value here causes illegal behavior
-// :101:17: error: use of undefined value here causes illegal behavior
-// :101:17: error: use of undefined value here causes illegal behavior
-// :101:17: error: use of undefined value here causes illegal behavior
-// :101:17: error: use of undefined value here causes illegal behavior
-// :101:17: error: use of undefined value here causes illegal behavior
-// :101:17: error: use of undefined value here causes illegal behavior
-// :101:17: note: when computing vector element at index '1'
-// :101:17: error: use of undefined value here causes illegal behavior
-// :101:17: note: when computing vector element at index '1'
-// :101:17: error: use of undefined value here causes illegal behavior
-// :101:17: note: when computing vector element at index '1'
-// :101:17: error: use of undefined value here causes illegal behavior
-// :101:17: note: when computing vector element at index '1'
-// :101:17: error: use of undefined value here causes illegal behavior
-// :101:17: note: when computing vector element at index '0'
-// :101:17: error: use of undefined value here causes illegal behavior
-// :101:17: note: when computing vector element at index '0'
-// :101:17: error: use of undefined value here causes illegal behavior
-// :101:17: note: when computing vector element at index '0'
-// :101:17: error: use of undefined value here causes illegal behavior
-// :101:17: note: when computing vector element at index '0'
-// :105:27: error: use of undefined value here causes illegal behavior
-// :105:27: error: use of undefined value here causes illegal behavior
-// :105:27: error: use of undefined value here causes illegal behavior
-// :105:27: error: use of undefined value here causes illegal behavior
-// :105:27: error: use of undefined value here causes illegal behavior
-// :105:27: error: use of undefined value here causes illegal behavior
-// :105:27: error: use of undefined value here causes illegal behavior
-// :105:27: note: when computing vector element at index '1'
-// :105:27: error: use of undefined value here causes illegal behavior
-// :105:27: note: when computing vector element at index '1'
-// :105:27: error: use of undefined value here causes illegal behavior
-// :105:27: note: when computing vector element at index '1'
-// :105:27: error: use of undefined value here causes illegal behavior
-// :105:27: note: when computing vector element at index '1'
-// :105:27: error: use of undefined value here causes illegal behavior
-// :105:27: note: when computing vector element at index '0'
-// :105:27: error: use of undefined value here causes illegal behavior
-// :105:27: note: when computing vector element at index '0'
-// :105:27: error: use of undefined value here causes illegal behavior
-// :105:27: note: when computing vector element at index '0'
-// :105:27: error: use of undefined value here causes illegal behavior
-// :105:27: note: when computing vector element at index '0'
-// :105:27: error: use of undefined value here causes illegal behavior
-// :105:27: error: use of undefined value here causes illegal behavior
-// :105:27: error: use of undefined value here causes illegal behavior
-// :105:27: error: use of undefined value here causes illegal behavior
-// :105:27: error: use of undefined value here causes illegal behavior
-// :105:27: error: use of undefined value here causes illegal behavior
-// :105:27: error: use of undefined value here causes illegal behavior
-// :105:27: note: when computing vector element at index '1'
-// :105:27: error: use of undefined value here causes illegal behavior
-// :105:27: note: when computing vector element at index '1'
-// :105:27: error: use of undefined value here causes illegal behavior
-// :105:27: note: when computing vector element at index '1'
-// :105:27: error: use of undefined value here causes illegal behavior
-// :105:27: note: when computing vector element at index '1'
-// :105:27: error: use of undefined value here causes illegal behavior
-// :105:27: note: when computing vector element at index '0'
-// :105:27: error: use of undefined value here causes illegal behavior
-// :105:27: note: when computing vector element at index '0'
-// :105:27: error: use of undefined value here causes illegal behavior
-// :105:27: note: when computing vector element at index '0'
-// :105:27: error: use of undefined value here causes illegal behavior
-// :105:27: note: when computing vector element at index '0'
-// :105:27: error: use of undefined value here causes illegal behavior
-// :105:27: error: use of undefined value here causes illegal behavior
-// :105:27: error: use of undefined value here causes illegal behavior
-// :105:27: error: use of undefined value here causes illegal behavior
-// :105:27: error: use of undefined value here causes illegal behavior
-// :105:27: error: use of undefined value here causes illegal behavior
-// :105:27: error: use of undefined value here causes illegal behavior
-// :105:27: note: when computing vector element at index '1'
-// :105:27: error: use of undefined value here causes illegal behavior
-// :105:27: note: when computing vector element at index '1'
-// :105:27: error: use of undefined value here causes illegal behavior
-// :105:27: note: when computing vector element at index '1'
-// :105:27: error: use of undefined value here causes illegal behavior
-// :105:27: note: when computing vector element at index '1'
-// :105:27: error: use of undefined value here causes illegal behavior
-// :105:27: note: when computing vector element at index '0'
-// :105:27: error: use of undefined value here causes illegal behavior
-// :105:27: note: when computing vector element at index '0'
-// :105:27: error: use of undefined value here causes illegal behavior
-// :105:27: note: when computing vector element at index '0'
-// :105:27: error: use of undefined value here causes illegal behavior
-// :105:27: note: when computing vector element at index '0'
-// :105:27: error: use of undefined value here causes illegal behavior
-// :105:27: error: use of undefined value here causes illegal behavior
-// :105:27: error: use of undefined value here causes illegal behavior
-// :105:27: error: use of undefined value here causes illegal behavior
-// :105:27: error: use of undefined value here causes illegal behavior
-// :105:27: error: use of undefined value here causes illegal behavior
-// :105:27: error: use of undefined value here causes illegal behavior
-// :105:27: note: when computing vector element at index '1'
-// :105:27: error: use of undefined value here causes illegal behavior
-// :105:27: note: when computing vector element at index '1'
-// :105:27: error: use of undefined value here causes illegal behavior
-// :105:27: note: when computing vector element at index '1'
-// :105:27: error: use of undefined value here causes illegal behavior
-// :105:27: note: when computing vector element at index '1'
-// :105:27: error: use of undefined value here causes illegal behavior
-// :105:27: note: when computing vector element at index '0'
-// :105:27: error: use of undefined value here causes illegal behavior
-// :105:27: note: when computing vector element at index '0'
-// :105:27: error: use of undefined value here causes illegal behavior
-// :105:27: note: when computing vector element at index '0'
-// :105:27: error: use of undefined value here causes illegal behavior
-// :105:27: note: when computing vector element at index '0'
-// :105:27: error: use of undefined value here causes illegal behavior
-// :105:27: error: use of undefined value here causes illegal behavior
-// :105:27: error: use of undefined value here causes illegal behavior
-// :105:27: error: use of undefined value here causes illegal behavior
-// :105:27: error: use of undefined value here causes illegal behavior
-// :105:27: error: use of undefined value here causes illegal behavior
-// :105:27: error: use of undefined value here causes illegal behavior
-// :105:27: note: when computing vector element at index '1'
-// :105:27: error: use of undefined value here causes illegal behavior
-// :105:27: note: when computing vector element at index '1'
-// :105:27: error: use of undefined value here causes illegal behavior
-// :105:27: note: when computing vector element at index '1'
-// :105:27: error: use of undefined value here causes illegal behavior
-// :105:27: note: when computing vector element at index '1'
-// :105:27: error: use of undefined value here causes illegal behavior
-// :105:27: note: when computing vector element at index '0'
-// :105:27: error: use of undefined value here causes illegal behavior
-// :105:27: note: when computing vector element at index '0'
-// :105:27: error: use of undefined value here causes illegal behavior
-// :105:27: note: when computing vector element at index '0'
-// :105:27: error: use of undefined value here causes illegal behavior
-// :105:27: note: when computing vector element at index '0'
-// :105:27: error: use of undefined value here causes illegal behavior
-// :105:27: error: use of undefined value here causes illegal behavior
-// :105:27: error: use of undefined value here causes illegal behavior
-// :105:27: error: use of undefined value here causes illegal behavior
-// :105:27: error: use of undefined value here causes illegal behavior
-// :105:27: error: use of undefined value here causes illegal behavior
-// :105:27: error: use of undefined value here causes illegal behavior
-// :105:27: note: when computing vector element at index '1'
-// :105:27: error: use of undefined value here causes illegal behavior
-// :105:27: note: when computing vector element at index '1'
-// :105:27: error: use of undefined value here causes illegal behavior
-// :105:27: note: when computing vector element at index '1'
-// :105:27: error: use of undefined value here causes illegal behavior
-// :105:27: note: when computing vector element at index '1'
-// :105:27: error: use of undefined value here causes illegal behavior
-// :105:27: note: when computing vector element at index '0'
-// :105:27: error: use of undefined value here causes illegal behavior
-// :105:27: note: when computing vector element at index '0'
-// :105:27: error: use of undefined value here causes illegal behavior
-// :105:27: note: when computing vector element at index '0'
-// :105:27: error: use of undefined value here causes illegal behavior
-// :105:27: note: when computing vector element at index '0'
-// :105:27: error: use of undefined value here causes illegal behavior
-// :105:27: error: use of undefined value here causes illegal behavior
-// :105:27: error: use of undefined value here causes illegal behavior
-// :105:27: error: use of undefined value here causes illegal behavior
-// :105:27: error: use of undefined value here causes illegal behavior
-// :105:27: error: use of undefined value here causes illegal behavior
-// :105:27: error: use of undefined value here causes illegal behavior
-// :105:27: note: when computing vector element at index '1'
-// :105:27: error: use of undefined value here causes illegal behavior
-// :105:27: note: when computing vector element at index '1'
-// :105:27: error: use of undefined value here causes illegal behavior
-// :105:27: note: when computing vector element at index '1'
-// :105:27: error: use of undefined value here causes illegal behavior
-// :105:27: note: when computing vector element at index '1'
-// :105:27: error: use of undefined value here causes illegal behavior
-// :105:27: note: when computing vector element at index '0'
-// :105:27: error: use of undefined value here causes illegal behavior
-// :105:27: note: when computing vector element at index '0'
-// :105:27: error: use of undefined value here causes illegal behavior
-// :105:27: note: when computing vector element at index '0'
-// :105:27: error: use of undefined value here causes illegal behavior
-// :105:27: note: when computing vector element at index '0'
-// :105:27: error: use of undefined value here causes illegal behavior
-// :105:27: error: use of undefined value here causes illegal behavior
-// :105:27: error: use of undefined value here causes illegal behavior
-// :105:27: error: use of undefined value here causes illegal behavior
-// :105:27: error: use of undefined value here causes illegal behavior
-// :105:27: error: use of undefined value here causes illegal behavior
-// :105:27: error: use of undefined value here causes illegal behavior
-// :105:27: note: when computing vector element at index '1'
-// :105:27: error: use of undefined value here causes illegal behavior
-// :105:27: note: when computing vector element at index '1'
-// :105:27: error: use of undefined value here causes illegal behavior
-// :105:27: note: when computing vector element at index '1'
-// :105:27: error: use of undefined value here causes illegal behavior
-// :105:27: note: when computing vector element at index '1'
-// :105:27: error: use of undefined value here causes illegal behavior
-// :105:27: note: when computing vector element at index '0'
-// :105:27: error: use of undefined value here causes illegal behavior
-// :105:27: note: when computing vector element at index '0'
-// :105:27: error: use of undefined value here causes illegal behavior
-// :105:27: note: when computing vector element at index '0'
-// :105:27: error: use of undefined value here causes illegal behavior
-// :105:27: note: when computing vector element at index '0'
-// :105:27: error: use of undefined value here causes illegal behavior
-// :105:27: error: use of undefined value here causes illegal behavior
-// :105:27: error: use of undefined value here causes illegal behavior
-// :105:27: error: use of undefined value here causes illegal behavior
-// :105:27: error: use of undefined value here causes illegal behavior
-// :105:27: error: use of undefined value here causes illegal behavior
-// :105:27: error: use of undefined value here causes illegal behavior
-// :105:27: note: when computing vector element at index '1'
-// :105:27: error: use of undefined value here causes illegal behavior
-// :105:27: note: when computing vector element at index '1'
-// :105:27: error: use of undefined value here causes illegal behavior
-// :105:27: note: when computing vector element at index '1'
-// :105:27: error: use of undefined value here causes illegal behavior
-// :105:27: note: when computing vector element at index '1'
-// :105:27: error: use of undefined value here causes illegal behavior
-// :105:27: note: when computing vector element at index '0'
-// :105:27: error: use of undefined value here causes illegal behavior
-// :105:27: note: when computing vector element at index '0'
-// :105:27: error: use of undefined value here causes illegal behavior
-// :105:27: note: when computing vector element at index '0'
-// :105:27: error: use of undefined value here causes illegal behavior
-// :105:27: note: when computing vector element at index '0'
-// :105:27: error: use of undefined value here causes illegal behavior
-// :105:27: error: use of undefined value here causes illegal behavior
-// :105:27: error: use of undefined value here causes illegal behavior
-// :105:27: error: use of undefined value here causes illegal behavior
-// :105:27: error: use of undefined value here causes illegal behavior
-// :105:27: error: use of undefined value here causes illegal behavior
-// :105:27: error: use of undefined value here causes illegal behavior
-// :105:27: note: when computing vector element at index '1'
-// :105:27: error: use of undefined value here causes illegal behavior
-// :105:27: note: when computing vector element at index '1'
-// :105:27: error: use of undefined value here causes illegal behavior
-// :105:27: note: when computing vector element at index '1'
-// :105:27: error: use of undefined value here causes illegal behavior
-// :105:27: note: when computing vector element at index '1'
-// :105:27: error: use of undefined value here causes illegal behavior
-// :105:27: note: when computing vector element at index '0'
-// :105:27: error: use of undefined value here causes illegal behavior
-// :105:27: note: when computing vector element at index '0'
-// :105:27: error: use of undefined value here causes illegal behavior
-// :105:27: note: when computing vector element at index '0'
-// :105:27: error: use of undefined value here causes illegal behavior
-// :105:27: note: when computing vector element at index '0'
-// :105:27: error: use of undefined value here causes illegal behavior
-// :105:27: error: use of undefined value here causes illegal behavior
-// :105:27: error: use of undefined value here causes illegal behavior
-// :105:27: error: use of undefined value here causes illegal behavior
-// :105:27: error: use of undefined value here causes illegal behavior
-// :105:27: error: use of undefined value here causes illegal behavior
-// :105:27: error: use of undefined value here causes illegal behavior
-// :105:27: note: when computing vector element at index '1'
-// :105:27: error: use of undefined value here causes illegal behavior
-// :105:27: note: when computing vector element at index '1'
-// :105:27: error: use of undefined value here causes illegal behavior
-// :105:27: note: when computing vector element at index '1'
-// :105:27: error: use of undefined value here causes illegal behavior
-// :105:27: note: when computing vector element at index '1'
-// :105:27: error: use of undefined value here causes illegal behavior
-// :105:27: note: when computing vector element at index '0'
-// :105:27: error: use of undefined value here causes illegal behavior
-// :105:27: note: when computing vector element at index '0'
-// :105:27: error: use of undefined value here causes illegal behavior
-// :105:27: note: when computing vector element at index '0'
-// :105:27: error: use of undefined value here causes illegal behavior
-// :105:27: note: when computing vector element at index '0'
-// :109:27: error: use of undefined value here causes illegal behavior
-// :109:27: error: use of undefined value here causes illegal behavior
-// :109:27: error: use of undefined value here causes illegal behavior
-// :109:27: error: use of undefined value here causes illegal behavior
-// :109:27: error: use of undefined value here causes illegal behavior
-// :109:27: error: use of undefined value here causes illegal behavior
-// :109:27: error: use of undefined value here causes illegal behavior
-// :109:27: note: when computing vector element at index '1'
-// :109:27: error: use of undefined value here causes illegal behavior
-// :109:27: note: when computing vector element at index '1'
-// :109:27: error: use of undefined value here causes illegal behavior
-// :109:27: note: when computing vector element at index '1'
-// :109:27: error: use of undefined value here causes illegal behavior
-// :109:27: note: when computing vector element at index '1'
-// :109:27: error: use of undefined value here causes illegal behavior
-// :109:27: note: when computing vector element at index '0'
-// :109:27: error: use of undefined value here causes illegal behavior
-// :109:27: note: when computing vector element at index '0'
-// :109:27: error: use of undefined value here causes illegal behavior
-// :109:27: note: when computing vector element at index '0'
-// :109:27: error: use of undefined value here causes illegal behavior
-// :109:27: note: when computing vector element at index '0'
-// :109:27: error: use of undefined value here causes illegal behavior
-// :109:27: error: use of undefined value here causes illegal behavior
-// :109:27: error: use of undefined value here causes illegal behavior
-// :109:27: error: use of undefined value here causes illegal behavior
-// :109:27: error: use of undefined value here causes illegal behavior
-// :109:27: error: use of undefined value here causes illegal behavior
-// :109:27: error: use of undefined value here causes illegal behavior
-// :109:27: note: when computing vector element at index '1'
-// :109:27: error: use of undefined value here causes illegal behavior
-// :109:27: note: when computing vector element at index '1'
-// :109:27: error: use of undefined value here causes illegal behavior
-// :109:27: note: when computing vector element at index '1'
-// :109:27: error: use of undefined value here causes illegal behavior
-// :109:27: note: when computing vector element at index '1'
-// :109:27: error: use of undefined value here causes illegal behavior
-// :109:27: note: when computing vector element at index '0'
-// :109:27: error: use of undefined value here causes illegal behavior
-// :109:27: note: when computing vector element at index '0'
-// :109:27: error: use of undefined value here causes illegal behavior
-// :109:27: note: when computing vector element at index '0'
-// :109:27: error: use of undefined value here causes illegal behavior
-// :109:27: note: when computing vector element at index '0'
-// :109:27: error: use of undefined value here causes illegal behavior
-// :109:27: error: use of undefined value here causes illegal behavior
-// :109:27: error: use of undefined value here causes illegal behavior
-// :109:27: error: use of undefined value here causes illegal behavior
-// :109:27: error: use of undefined value here causes illegal behavior
-// :109:27: error: use of undefined value here causes illegal behavior
-// :109:27: error: use of undefined value here causes illegal behavior
-// :109:27: note: when computing vector element at index '1'
-// :109:27: error: use of undefined value here causes illegal behavior
-// :109:27: note: when computing vector element at index '1'
-// :109:27: error: use of undefined value here causes illegal behavior
-// :109:27: note: when computing vector element at index '1'
-// :109:27: error: use of undefined value here causes illegal behavior
-// :109:27: note: when computing vector element at index '1'
-// :109:27: error: use of undefined value here causes illegal behavior
-// :109:27: note: when computing vector element at index '0'
-// :109:27: error: use of undefined value here causes illegal behavior
-// :109:27: note: when computing vector element at index '0'
-// :109:27: error: use of undefined value here causes illegal behavior
-// :109:27: note: when computing vector element at index '0'
-// :109:27: error: use of undefined value here causes illegal behavior
-// :109:27: note: when computing vector element at index '0'
-// :109:27: error: use of undefined value here causes illegal behavior
-// :109:27: error: use of undefined value here causes illegal behavior
-// :109:27: error: use of undefined value here causes illegal behavior
-// :109:27: error: use of undefined value here causes illegal behavior
-// :109:27: error: use of undefined value here causes illegal behavior
-// :109:27: error: use of undefined value here causes illegal behavior
-// :109:27: error: use of undefined value here causes illegal behavior
-// :109:27: note: when computing vector element at index '1'
-// :109:27: error: use of undefined value here causes illegal behavior
-// :109:27: note: when computing vector element at index '1'
-// :109:27: error: use of undefined value here causes illegal behavior
-// :109:27: note: when computing vector element at index '1'
-// :109:27: error: use of undefined value here causes illegal behavior
-// :109:27: note: when computing vector element at index '1'
-// :109:27: error: use of undefined value here causes illegal behavior
-// :109:27: note: when computing vector element at index '0'
-// :109:27: error: use of undefined value here causes illegal behavior
-// :109:27: note: when computing vector element at index '0'
-// :109:27: error: use of undefined value here causes illegal behavior
-// :109:27: note: when computing vector element at index '0'
-// :109:27: error: use of undefined value here causes illegal behavior
-// :109:27: note: when computing vector element at index '0'
-// :109:27: error: use of undefined value here causes illegal behavior
-// :109:27: error: use of undefined value here causes illegal behavior
-// :109:27: error: use of undefined value here causes illegal behavior
-// :109:27: error: use of undefined value here causes illegal behavior
-// :109:27: error: use of undefined value here causes illegal behavior
-// :109:27: error: use of undefined value here causes illegal behavior
-// :109:27: error: use of undefined value here causes illegal behavior
-// :109:27: note: when computing vector element at index '1'
-// :109:27: error: use of undefined value here causes illegal behavior
-// :109:27: note: when computing vector element at index '1'
-// :109:27: error: use of undefined value here causes illegal behavior
-// :109:27: note: when computing vector element at index '1'
-// :109:27: error: use of undefined value here causes illegal behavior
-// :109:27: note: when computing vector element at index '1'
-// :109:27: error: use of undefined value here causes illegal behavior
-// :109:27: note: when computing vector element at index '0'
-// :109:27: error: use of undefined value here causes illegal behavior
-// :109:27: note: when computing vector element at index '0'
-// :109:27: error: use of undefined value here causes illegal behavior
-// :109:27: note: when computing vector element at index '0'
-// :109:27: error: use of undefined value here causes illegal behavior
-// :109:27: note: when computing vector element at index '0'
-// :109:27: error: use of undefined value here causes illegal behavior
-// :109:27: error: use of undefined value here causes illegal behavior
-// :109:27: error: use of undefined value here causes illegal behavior
-// :109:27: error: use of undefined value here causes illegal behavior
-// :109:27: error: use of undefined value here causes illegal behavior
-// :109:27: error: use of undefined value here causes illegal behavior
-// :109:27: error: use of undefined value here causes illegal behavior
-// :109:27: note: when computing vector element at index '1'
-// :109:27: error: use of undefined value here causes illegal behavior
-// :109:27: note: when computing vector element at index '1'
-// :109:27: error: use of undefined value here causes illegal behavior
-// :109:27: note: when computing vector element at index '1'
-// :109:27: error: use of undefined value here causes illegal behavior
-// :109:27: note: when computing vector element at index '1'
-// :109:27: error: use of undefined value here causes illegal behavior
-// :109:27: note: when computing vector element at index '0'
-// :109:27: error: use of undefined value here causes illegal behavior
-// :109:27: note: when computing vector element at index '0'
-// :109:27: error: use of undefined value here causes illegal behavior
-// :109:27: note: when computing vector element at index '0'
-// :109:27: error: use of undefined value here causes illegal behavior
-// :109:27: note: when computing vector element at index '0'
-// :109:27: error: use of undefined value here causes illegal behavior
-// :109:27: error: use of undefined value here causes illegal behavior
-// :109:27: error: use of undefined value here causes illegal behavior
-// :109:27: error: use of undefined value here causes illegal behavior
-// :109:27: error: use of undefined value here causes illegal behavior
-// :109:27: error: use of undefined value here causes illegal behavior
-// :109:27: error: use of undefined value here causes illegal behavior
-// :109:27: note: when computing vector element at index '1'
-// :109:27: error: use of undefined value here causes illegal behavior
-// :109:27: note: when computing vector element at index '1'
-// :109:27: error: use of undefined value here causes illegal behavior
-// :109:27: note: when computing vector element at index '1'
-// :109:27: error: use of undefined value here causes illegal behavior
-// :109:27: note: when computing vector element at index '1'
-// :109:27: error: use of undefined value here causes illegal behavior
-// :109:27: note: when computing vector element at index '0'
-// :109:27: error: use of undefined value here causes illegal behavior
-// :109:27: note: when computing vector element at index '0'
-// :109:27: error: use of undefined value here causes illegal behavior
-// :109:27: note: when computing vector element at index '0'
-// :109:27: error: use of undefined value here causes illegal behavior
-// :109:27: note: when computing vector element at index '0'
-// :109:27: error: use of undefined value here causes illegal behavior
-// :109:27: error: use of undefined value here causes illegal behavior
-// :109:27: error: use of undefined value here causes illegal behavior
-// :109:27: error: use of undefined value here causes illegal behavior
-// :109:27: error: use of undefined value here causes illegal behavior
-// :109:27: error: use of undefined value here causes illegal behavior
-// :109:27: error: use of undefined value here causes illegal behavior
-// :109:27: note: when computing vector element at index '1'
-// :109:27: error: use of undefined value here causes illegal behavior
-// :109:27: note: when computing vector element at index '1'
-// :109:27: error: use of undefined value here causes illegal behavior
-// :109:27: note: when computing vector element at index '1'
-// :109:27: error: use of undefined value here causes illegal behavior
-// :109:27: note: when computing vector element at index '1'
-// :109:27: error: use of undefined value here causes illegal behavior
-// :109:27: note: when computing vector element at index '0'
-// :109:27: error: use of undefined value here causes illegal behavior
-// :109:27: note: when computing vector element at index '0'
-// :109:27: error: use of undefined value here causes illegal behavior
-// :109:27: note: when computing vector element at index '0'
-// :109:27: error: use of undefined value here causes illegal behavior
-// :109:27: note: when computing vector element at index '0'
-// :109:27: error: use of undefined value here causes illegal behavior
-// :109:27: error: use of undefined value here causes illegal behavior
-// :109:27: error: use of undefined value here causes illegal behavior
-// :109:27: error: use of undefined value here causes illegal behavior
-// :109:27: error: use of undefined value here causes illegal behavior
-// :109:27: error: use of undefined value here causes illegal behavior
-// :109:27: error: use of undefined value here causes illegal behavior
-// :109:27: note: when computing vector element at index '1'
-// :109:27: error: use of undefined value here causes illegal behavior
-// :109:27: note: when computing vector element at index '1'
-// :109:27: error: use of undefined value here causes illegal behavior
-// :109:27: note: when computing vector element at index '1'
-// :109:27: error: use of undefined value here causes illegal behavior
-// :109:27: note: when computing vector element at index '1'
-// :109:27: error: use of undefined value here causes illegal behavior
-// :109:27: note: when computing vector element at index '0'
-// :109:27: error: use of undefined value here causes illegal behavior
-// :109:27: note: when computing vector element at index '0'
-// :109:27: error: use of undefined value here causes illegal behavior
-// :109:27: note: when computing vector element at index '0'
-// :109:27: error: use of undefined value here causes illegal behavior
-// :109:27: note: when computing vector element at index '0'
-// :109:27: error: use of undefined value here causes illegal behavior
-// :109:27: error: use of undefined value here causes illegal behavior
-// :109:27: error: use of undefined value here causes illegal behavior
-// :109:27: error: use of undefined value here causes illegal behavior
-// :109:27: error: use of undefined value here causes illegal behavior
-// :109:27: error: use of undefined value here causes illegal behavior
-// :109:27: error: use of undefined value here causes illegal behavior
-// :109:27: note: when computing vector element at index '1'
-// :109:27: error: use of undefined value here causes illegal behavior
-// :109:27: note: when computing vector element at index '1'
-// :109:27: error: use of undefined value here causes illegal behavior
-// :109:27: note: when computing vector element at index '1'
-// :109:27: error: use of undefined value here causes illegal behavior
-// :109:27: note: when computing vector element at index '1'
-// :109:27: error: use of undefined value here causes illegal behavior
-// :109:27: note: when computing vector element at index '0'
-// :109:27: error: use of undefined value here causes illegal behavior
-// :109:27: note: when computing vector element at index '0'
-// :109:27: error: use of undefined value here causes illegal behavior
-// :109:27: note: when computing vector element at index '0'
-// :109:27: error: use of undefined value here causes illegal behavior
-// :109:27: note: when computing vector element at index '0'
-// :109:27: error: use of undefined value here causes illegal behavior
-// :109:27: error: use of undefined value here causes illegal behavior
-// :109:27: error: use of undefined value here causes illegal behavior
-// :109:27: error: use of undefined value here causes illegal behavior
-// :109:27: error: use of undefined value here causes illegal behavior
-// :109:27: error: use of undefined value here causes illegal behavior
-// :109:27: error: use of undefined value here causes illegal behavior
-// :109:27: note: when computing vector element at index '1'
-// :109:27: error: use of undefined value here causes illegal behavior
-// :109:27: note: when computing vector element at index '1'
-// :109:27: error: use of undefined value here causes illegal behavior
-// :109:27: note: when computing vector element at index '1'
-// :109:27: error: use of undefined value here causes illegal behavior
-// :109:27: note: when computing vector element at index '1'
-// :109:27: error: use of undefined value here causes illegal behavior
-// :109:27: note: when computing vector element at index '0'
-// :109:27: error: use of undefined value here causes illegal behavior
-// :109:27: note: when computing vector element at index '0'
-// :109:27: error: use of undefined value here causes illegal behavior
-// :109:27: note: when computing vector element at index '0'
-// :109:27: error: use of undefined value here causes illegal behavior
-// :109:27: note: when computing vector element at index '0'
-// :113:27: error: use of undefined value here causes illegal behavior
-// :113:27: error: use of undefined value here causes illegal behavior
-// :113:27: error: use of undefined value here causes illegal behavior
-// :113:27: error: use of undefined value here causes illegal behavior
-// :113:27: error: use of undefined value here causes illegal behavior
-// :113:27: error: use of undefined value here causes illegal behavior
-// :113:27: error: use of undefined value here causes illegal behavior
-// :113:27: note: when computing vector element at index '1'
-// :113:27: error: use of undefined value here causes illegal behavior
-// :113:27: note: when computing vector element at index '1'
-// :113:27: error: use of undefined value here causes illegal behavior
-// :113:27: note: when computing vector element at index '1'
-// :113:27: error: use of undefined value here causes illegal behavior
-// :113:27: note: when computing vector element at index '1'
-// :113:27: error: use of undefined value here causes illegal behavior
-// :113:27: note: when computing vector element at index '0'
-// :113:27: error: use of undefined value here causes illegal behavior
-// :113:27: note: when computing vector element at index '0'
-// :113:27: error: use of undefined value here causes illegal behavior
-// :113:27: note: when computing vector element at index '0'
-// :113:27: error: use of undefined value here causes illegal behavior
-// :113:27: note: when computing vector element at index '0'
-// :113:27: error: use of undefined value here causes illegal behavior
-// :113:27: error: use of undefined value here causes illegal behavior
-// :113:27: error: use of undefined value here causes illegal behavior
-// :113:27: error: use of undefined value here causes illegal behavior
-// :113:27: error: use of undefined value here causes illegal behavior
-// :113:27: error: use of undefined value here causes illegal behavior
-// :113:27: error: use of undefined value here causes illegal behavior
-// :113:27: note: when computing vector element at index '1'
-// :113:27: error: use of undefined value here causes illegal behavior
-// :113:27: note: when computing vector element at index '1'
-// :113:27: error: use of undefined value here causes illegal behavior
-// :113:27: note: when computing vector element at index '1'
-// :113:27: error: use of undefined value here causes illegal behavior
-// :113:27: note: when computing vector element at index '1'
-// :113:27: error: use of undefined value here causes illegal behavior
-// :113:27: note: when computing vector element at index '0'
-// :113:27: error: use of undefined value here causes illegal behavior
-// :113:27: note: when computing vector element at index '0'
-// :113:27: error: use of undefined value here causes illegal behavior
-// :113:27: note: when computing vector element at index '0'
-// :113:27: error: use of undefined value here causes illegal behavior
-// :113:27: note: when computing vector element at index '0'
-// :113:27: error: use of undefined value here causes illegal behavior
-// :113:27: error: use of undefined value here causes illegal behavior
-// :113:27: error: use of undefined value here causes illegal behavior
-// :113:27: error: use of undefined value here causes illegal behavior
-// :113:27: error: use of undefined value here causes illegal behavior
-// :113:27: error: use of undefined value here causes illegal behavior
-// :113:27: error: use of undefined value here causes illegal behavior
-// :113:27: note: when computing vector element at index '1'
-// :113:27: error: use of undefined value here causes illegal behavior
-// :113:27: note: when computing vector element at index '1'
-// :113:27: error: use of undefined value here causes illegal behavior
-// :113:27: note: when computing vector element at index '1'
-// :113:27: error: use of undefined value here causes illegal behavior
-// :113:27: note: when computing vector element at index '1'
-// :113:27: error: use of undefined value here causes illegal behavior
-// :113:27: note: when computing vector element at index '0'
-// :113:27: error: use of undefined value here causes illegal behavior
-// :113:27: note: when computing vector element at index '0'
-// :113:27: error: use of undefined value here causes illegal behavior
-// :113:27: note: when computing vector element at index '0'
-// :113:27: error: use of undefined value here causes illegal behavior
-// :113:27: note: when computing vector element at index '0'
-// :113:27: error: use of undefined value here causes illegal behavior
-// :113:27: error: use of undefined value here causes illegal behavior
-// :113:27: error: use of undefined value here causes illegal behavior
-// :113:27: error: use of undefined value here causes illegal behavior
-// :113:27: error: use of undefined value here causes illegal behavior
-// :113:27: error: use of undefined value here causes illegal behavior
-// :113:27: error: use of undefined value here causes illegal behavior
-// :113:27: note: when computing vector element at index '1'
-// :113:27: error: use of undefined value here causes illegal behavior
-// :113:27: note: when computing vector element at index '1'
-// :113:27: error: use of undefined value here causes illegal behavior
-// :113:27: note: when computing vector element at index '1'
-// :113:27: error: use of undefined value here causes illegal behavior
-// :113:27: note: when computing vector element at index '1'
-// :113:27: error: use of undefined value here causes illegal behavior
-// :113:27: note: when computing vector element at index '0'
-// :113:27: error: use of undefined value here causes illegal behavior
-// :113:27: note: when computing vector element at index '0'
-// :113:27: error: use of undefined value here causes illegal behavior
-// :113:27: note: when computing vector element at index '0'
-// :113:27: error: use of undefined value here causes illegal behavior
-// :113:27: note: when computing vector element at index '0'
-// :113:27: error: use of undefined value here causes illegal behavior
-// :113:27: error: use of undefined value here causes illegal behavior
-// :113:27: error: use of undefined value here causes illegal behavior
-// :113:27: error: use of undefined value here causes illegal behavior
-// :113:27: error: use of undefined value here causes illegal behavior
-// :113:27: error: use of undefined value here causes illegal behavior
-// :113:27: error: use of undefined value here causes illegal behavior
-// :113:27: note: when computing vector element at index '1'
-// :113:27: error: use of undefined value here causes illegal behavior
-// :113:27: note: when computing vector element at index '1'
-// :113:27: error: use of undefined value here causes illegal behavior
-// :113:27: note: when computing vector element at index '1'
-// :113:27: error: use of undefined value here causes illegal behavior
-// :113:27: note: when computing vector element at index '1'
-// :113:27: error: use of undefined value here causes illegal behavior
-// :113:27: note: when computing vector element at index '0'
-// :113:27: error: use of undefined value here causes illegal behavior
-// :113:27: note: when computing vector element at index '0'
-// :113:27: error: use of undefined value here causes illegal behavior
-// :113:27: note: when computing vector element at index '0'
-// :113:27: error: use of undefined value here causes illegal behavior
-// :113:27: note: when computing vector element at index '0'
-// :113:27: error: use of undefined value here causes illegal behavior
-// :113:27: error: use of undefined value here causes illegal behavior
-// :113:27: error: use of undefined value here causes illegal behavior
-// :113:27: error: use of undefined value here causes illegal behavior
-// :113:27: error: use of undefined value here causes illegal behavior
-// :113:27: error: use of undefined value here causes illegal behavior
-// :113:27: error: use of undefined value here causes illegal behavior
-// :113:27: note: when computing vector element at index '1'
-// :113:27: error: use of undefined value here causes illegal behavior
-// :113:27: note: when computing vector element at index '1'
-// :113:27: error: use of undefined value here causes illegal behavior
-// :113:27: note: when computing vector element at index '1'
-// :113:27: error: use of undefined value here causes illegal behavior
-// :113:27: note: when computing vector element at index '1'
-// :113:27: error: use of undefined value here causes illegal behavior
-// :113:27: note: when computing vector element at index '0'
-// :113:27: error: use of undefined value here causes illegal behavior
-// :113:27: note: when computing vector element at index '0'
-// :113:27: error: use of undefined value here causes illegal behavior
-// :113:27: note: when computing vector element at index '0'
-// :113:27: error: use of undefined value here causes illegal behavior
-// :113:27: note: when computing vector element at index '0'
-// :113:27: error: use of undefined value here causes illegal behavior
-// :113:27: error: use of undefined value here causes illegal behavior
-// :113:27: error: use of undefined value here causes illegal behavior
-// :113:27: error: use of undefined value here causes illegal behavior
-// :113:27: error: use of undefined value here causes illegal behavior
-// :113:27: error: use of undefined value here causes illegal behavior
-// :113:27: error: use of undefined value here causes illegal behavior
-// :113:27: note: when computing vector element at index '1'
-// :113:27: error: use of undefined value here causes illegal behavior
-// :113:27: note: when computing vector element at index '1'
-// :113:27: error: use of undefined value here causes illegal behavior
-// :113:27: note: when computing vector element at index '1'
-// :113:27: error: use of undefined value here causes illegal behavior
-// :113:27: note: when computing vector element at index '1'
-// :113:27: error: use of undefined value here causes illegal behavior
-// :113:27: note: when computing vector element at index '0'
-// :113:27: error: use of undefined value here causes illegal behavior
-// :113:27: note: when computing vector element at index '0'
-// :113:27: error: use of undefined value here causes illegal behavior
-// :113:27: note: when computing vector element at index '0'
-// :113:27: error: use of undefined value here causes illegal behavior
-// :113:27: note: when computing vector element at index '0'
-// :113:27: error: use of undefined value here causes illegal behavior
-// :113:27: error: use of undefined value here causes illegal behavior
-// :113:27: error: use of undefined value here causes illegal behavior
-// :113:27: error: use of undefined value here causes illegal behavior
-// :113:27: error: use of undefined value here causes illegal behavior
-// :113:27: error: use of undefined value here causes illegal behavior
-// :113:27: error: use of undefined value here causes illegal behavior
-// :113:27: note: when computing vector element at index '1'
-// :113:27: error: use of undefined value here causes illegal behavior
-// :113:27: note: when computing vector element at index '1'
-// :113:27: error: use of undefined value here causes illegal behavior
-// :113:27: note: when computing vector element at index '1'
-// :113:27: error: use of undefined value here causes illegal behavior
-// :113:27: note: when computing vector element at index '1'
-// :113:27: error: use of undefined value here causes illegal behavior
-// :113:27: note: when computing vector element at index '0'
-// :113:27: error: use of undefined value here causes illegal behavior
-// :113:27: note: when computing vector element at index '0'
-// :113:27: error: use of undefined value here causes illegal behavior
-// :113:27: note: when computing vector element at index '0'
-// :113:27: error: use of undefined value here causes illegal behavior
-// :113:27: note: when computing vector element at index '0'
-// :113:27: error: use of undefined value here causes illegal behavior
-// :113:27: error: use of undefined value here causes illegal behavior
-// :113:27: error: use of undefined value here causes illegal behavior
-// :113:27: error: use of undefined value here causes illegal behavior
-// :113:27: error: use of undefined value here causes illegal behavior
-// :113:27: error: use of undefined value here causes illegal behavior
-// :113:27: error: use of undefined value here causes illegal behavior
-// :113:27: note: when computing vector element at index '1'
-// :113:27: error: use of undefined value here causes illegal behavior
-// :113:27: note: when computing vector element at index '1'
-// :113:27: error: use of undefined value here causes illegal behavior
-// :113:27: note: when computing vector element at index '1'
-// :113:27: error: use of undefined value here causes illegal behavior
-// :113:27: note: when computing vector element at index '1'
-// :113:27: error: use of undefined value here causes illegal behavior
-// :113:27: note: when computing vector element at index '0'
-// :113:27: error: use of undefined value here causes illegal behavior
-// :113:27: note: when computing vector element at index '0'
-// :113:27: error: use of undefined value here causes illegal behavior
-// :113:27: note: when computing vector element at index '0'
-// :113:27: error: use of undefined value here causes illegal behavior
-// :113:27: note: when computing vector element at index '0'
-// :113:27: error: use of undefined value here causes illegal behavior
-// :113:27: error: use of undefined value here causes illegal behavior
-// :113:27: error: use of undefined value here causes illegal behavior
-// :113:27: error: use of undefined value here causes illegal behavior
-// :113:27: error: use of undefined value here causes illegal behavior
-// :113:27: error: use of undefined value here causes illegal behavior
-// :113:27: error: use of undefined value here causes illegal behavior
-// :113:27: note: when computing vector element at index '1'
-// :113:27: error: use of undefined value here causes illegal behavior
-// :113:27: note: when computing vector element at index '1'
-// :113:27: error: use of undefined value here causes illegal behavior
-// :113:27: note: when computing vector element at index '1'
-// :113:27: error: use of undefined value here causes illegal behavior
-// :113:27: note: when computing vector element at index '1'
-// :113:27: error: use of undefined value here causes illegal behavior
-// :113:27: note: when computing vector element at index '0'
-// :113:27: error: use of undefined value here causes illegal behavior
-// :113:27: note: when computing vector element at index '0'
-// :113:27: error: use of undefined value here causes illegal behavior
-// :113:27: note: when computing vector element at index '0'
-// :113:27: error: use of undefined value here causes illegal behavior
-// :113:27: note: when computing vector element at index '0'
-// :113:27: error: use of undefined value here causes illegal behavior
-// :113:27: error: use of undefined value here causes illegal behavior
-// :113:27: error: use of undefined value here causes illegal behavior
-// :113:27: error: use of undefined value here causes illegal behavior
-// :113:27: error: use of undefined value here causes illegal behavior
-// :113:27: error: use of undefined value here causes illegal behavior
-// :113:27: error: use of undefined value here causes illegal behavior
-// :113:27: note: when computing vector element at index '1'
-// :113:27: error: use of undefined value here causes illegal behavior
-// :113:27: note: when computing vector element at index '1'
-// :113:27: error: use of undefined value here causes illegal behavior
-// :113:27: note: when computing vector element at index '1'
-// :113:27: error: use of undefined value here causes illegal behavior
-// :113:27: note: when computing vector element at index '1'
-// :113:27: error: use of undefined value here causes illegal behavior
-// :113:27: note: when computing vector element at index '0'
-// :113:27: error: use of undefined value here causes illegal behavior
-// :113:27: note: when computing vector element at index '0'
-// :113:27: error: use of undefined value here causes illegal behavior
-// :113:27: note: when computing vector element at index '0'
-// :113:27: error: use of undefined value here causes illegal behavior
-// :113:27: note: when computing vector element at index '0'
-// :117:22: error: use of undefined value here causes illegal behavior
-// :117:22: error: use of undefined value here causes illegal behavior
-// :117:22: error: use of undefined value here causes illegal behavior
-// :117:22: error: use of undefined value here causes illegal behavior
-// :117:22: error: use of undefined value here causes illegal behavior
-// :117:22: error: use of undefined value here causes illegal behavior
-// :117:22: error: use of undefined value here causes illegal behavior
-// :117:22: note: when computing vector element at index '1'
-// :117:22: error: use of undefined value here causes illegal behavior
-// :117:22: note: when computing vector element at index '1'
-// :117:22: error: use of undefined value here causes illegal behavior
-// :117:22: note: when computing vector element at index '1'
-// :117:22: error: use of undefined value here causes illegal behavior
-// :117:22: note: when computing vector element at index '1'
-// :117:22: error: use of undefined value here causes illegal behavior
-// :117:22: note: when computing vector element at index '0'
-// :117:22: error: use of undefined value here causes illegal behavior
-// :117:22: note: when computing vector element at index '0'
-// :117:22: error: use of undefined value here causes illegal behavior
-// :117:22: note: when computing vector element at index '0'
-// :117:22: error: use of undefined value here causes illegal behavior
-// :117:22: note: when computing vector element at index '0'
-// :117:22: error: use of undefined value here causes illegal behavior
-// :117:22: error: use of undefined value here causes illegal behavior
-// :117:22: error: use of undefined value here causes illegal behavior
-// :117:22: error: use of undefined value here causes illegal behavior
-// :117:22: error: use of undefined value here causes illegal behavior
-// :117:22: error: use of undefined value here causes illegal behavior
-// :117:22: error: use of undefined value here causes illegal behavior
-// :117:22: note: when computing vector element at index '1'
-// :117:22: error: use of undefined value here causes illegal behavior
-// :117:22: note: when computing vector element at index '1'
-// :117:22: error: use of undefined value here causes illegal behavior
-// :117:22: note: when computing vector element at index '1'
-// :117:22: error: use of undefined value here causes illegal behavior
-// :117:22: note: when computing vector element at index '1'
-// :117:22: error: use of undefined value here causes illegal behavior
-// :117:22: note: when computing vector element at index '0'
-// :117:22: error: use of undefined value here causes illegal behavior
-// :117:22: note: when computing vector element at index '0'
-// :117:22: error: use of undefined value here causes illegal behavior
-// :117:22: note: when computing vector element at index '0'
-// :117:22: error: use of undefined value here causes illegal behavior
-// :117:22: note: when computing vector element at index '0'
-// :117:22: error: use of undefined value here causes illegal behavior
-// :117:22: error: use of undefined value here causes illegal behavior
-// :117:22: error: use of undefined value here causes illegal behavior
-// :117:22: error: use of undefined value here causes illegal behavior
-// :117:22: error: use of undefined value here causes illegal behavior
-// :117:22: error: use of undefined value here causes illegal behavior
-// :117:22: error: use of undefined value here causes illegal behavior
-// :117:22: note: when computing vector element at index '1'
-// :117:22: error: use of undefined value here causes illegal behavior
-// :117:22: note: when computing vector element at index '1'
-// :117:22: error: use of undefined value here causes illegal behavior
-// :117:22: note: when computing vector element at index '1'
-// :117:22: error: use of undefined value here causes illegal behavior
-// :117:22: note: when computing vector element at index '1'
-// :117:22: error: use of undefined value here causes illegal behavior
-// :117:22: note: when computing vector element at index '0'
-// :117:22: error: use of undefined value here causes illegal behavior
-// :117:22: note: when computing vector element at index '0'
-// :117:22: error: use of undefined value here causes illegal behavior
-// :117:22: note: when computing vector element at index '0'
-// :117:22: error: use of undefined value here causes illegal behavior
-// :117:22: note: when computing vector element at index '0'
-// :117:22: error: use of undefined value here causes illegal behavior
-// :117:22: error: use of undefined value here causes illegal behavior
-// :117:22: error: use of undefined value here causes illegal behavior
-// :117:22: error: use of undefined value here causes illegal behavior
-// :117:22: error: use of undefined value here causes illegal behavior
-// :117:22: error: use of undefined value here causes illegal behavior
-// :117:22: error: use of undefined value here causes illegal behavior
-// :117:22: note: when computing vector element at index '1'
-// :117:22: error: use of undefined value here causes illegal behavior
-// :117:22: note: when computing vector element at index '1'
-// :117:22: error: use of undefined value here causes illegal behavior
-// :117:22: note: when computing vector element at index '1'
-// :117:22: error: use of undefined value here causes illegal behavior
-// :117:22: note: when computing vector element at index '1'
-// :117:22: error: use of undefined value here causes illegal behavior
-// :117:22: note: when computing vector element at index '0'
-// :117:22: error: use of undefined value here causes illegal behavior
-// :117:22: note: when computing vector element at index '0'
-// :117:22: error: use of undefined value here causes illegal behavior
-// :117:22: note: when computing vector element at index '0'
-// :117:22: error: use of undefined value here causes illegal behavior
-// :117:22: note: when computing vector element at index '0'
-// :117:22: error: use of undefined value here causes illegal behavior
-// :117:22: error: use of undefined value here causes illegal behavior
-// :117:22: error: use of undefined value here causes illegal behavior
-// :117:22: error: use of undefined value here causes illegal behavior
-// :117:22: error: use of undefined value here causes illegal behavior
-// :117:22: error: use of undefined value here causes illegal behavior
-// :117:22: error: use of undefined value here causes illegal behavior
-// :117:22: note: when computing vector element at index '1'
-// :117:22: error: use of undefined value here causes illegal behavior
-// :117:22: note: when computing vector element at index '1'
-// :117:22: error: use of undefined value here causes illegal behavior
-// :117:22: note: when computing vector element at index '1'
-// :117:22: error: use of undefined value here causes illegal behavior
-// :117:22: note: when computing vector element at index '1'
-// :117:22: error: use of undefined value here causes illegal behavior
-// :117:22: note: when computing vector element at index '0'
-// :117:22: error: use of undefined value here causes illegal behavior
-// :117:22: note: when computing vector element at index '0'
-// :117:22: error: use of undefined value here causes illegal behavior
-// :117:22: note: when computing vector element at index '0'
-// :117:22: error: use of undefined value here causes illegal behavior
-// :117:22: note: when computing vector element at index '0'
-// :117:22: error: use of undefined value here causes illegal behavior
-// :117:22: error: use of undefined value here causes illegal behavior
-// :117:22: error: use of undefined value here causes illegal behavior
-// :117:22: error: use of undefined value here causes illegal behavior
-// :117:22: error: use of undefined value here causes illegal behavior
-// :117:22: error: use of undefined value here causes illegal behavior
-// :117:22: error: use of undefined value here causes illegal behavior
-// :117:22: note: when computing vector element at index '1'
-// :117:22: error: use of undefined value here causes illegal behavior
-// :117:22: note: when computing vector element at index '1'
-// :117:22: error: use of undefined value here causes illegal behavior
-// :117:22: note: when computing vector element at index '1'
-// :117:22: error: use of undefined value here causes illegal behavior
-// :117:22: note: when computing vector element at index '1'
-// :117:22: error: use of undefined value here causes illegal behavior
-// :117:22: note: when computing vector element at index '0'
-// :117:22: error: use of undefined value here causes illegal behavior
-// :117:22: note: when computing vector element at index '0'
-// :117:22: error: use of undefined value here causes illegal behavior
-// :117:22: note: when computing vector element at index '0'
-// :117:22: error: use of undefined value here causes illegal behavior
-// :117:22: note: when computing vector element at index '0'
-// :117:22: error: use of undefined value here causes illegal behavior
-// :117:22: error: use of undefined value here causes illegal behavior
-// :117:22: error: use of undefined value here causes illegal behavior
-// :117:22: error: use of undefined value here causes illegal behavior
-// :117:22: error: use of undefined value here causes illegal behavior
-// :117:22: error: use of undefined value here causes illegal behavior
-// :117:22: error: use of undefined value here causes illegal behavior
-// :117:22: note: when computing vector element at index '1'
-// :117:22: error: use of undefined value here causes illegal behavior
-// :117:22: note: when computing vector element at index '1'
-// :117:22: error: use of undefined value here causes illegal behavior
-// :117:22: note: when computing vector element at index '1'
-// :117:22: error: use of undefined value here causes illegal behavior
-// :117:22: note: when computing vector element at index '1'
-// :117:22: error: use of undefined value here causes illegal behavior
-// :117:22: note: when computing vector element at index '0'
-// :117:22: error: use of undefined value here causes illegal behavior
-// :117:22: note: when computing vector element at index '0'
-// :117:22: error: use of undefined value here causes illegal behavior
-// :117:22: note: when computing vector element at index '0'
-// :117:22: error: use of undefined value here causes illegal behavior
-// :117:22: note: when computing vector element at index '0'
-// :117:22: error: use of undefined value here causes illegal behavior
-// :117:22: error: use of undefined value here causes illegal behavior
-// :117:22: error: use of undefined value here causes illegal behavior
-// :117:22: error: use of undefined value here causes illegal behavior
-// :117:22: error: use of undefined value here causes illegal behavior
-// :117:22: error: use of undefined value here causes illegal behavior
-// :117:22: error: use of undefined value here causes illegal behavior
-// :117:22: note: when computing vector element at index '1'
-// :117:22: error: use of undefined value here causes illegal behavior
-// :117:22: note: when computing vector element at index '1'
-// :117:22: error: use of undefined value here causes illegal behavior
-// :117:22: note: when computing vector element at index '1'
-// :117:22: error: use of undefined value here causes illegal behavior
-// :117:22: note: when computing vector element at index '1'
-// :117:22: error: use of undefined value here causes illegal behavior
-// :117:22: note: when computing vector element at index '0'
-// :117:22: error: use of undefined value here causes illegal behavior
-// :117:22: note: when computing vector element at index '0'
-// :117:22: error: use of undefined value here causes illegal behavior
-// :117:22: note: when computing vector element at index '0'
-// :117:22: error: use of undefined value here causes illegal behavior
-// :117:22: note: when computing vector element at index '0'
-// :117:22: error: use of undefined value here causes illegal behavior
-// :117:22: error: use of undefined value here causes illegal behavior
-// :117:22: error: use of undefined value here causes illegal behavior
-// :117:22: error: use of undefined value here causes illegal behavior
-// :117:22: error: use of undefined value here causes illegal behavior
-// :117:22: error: use of undefined value here causes illegal behavior
-// :117:22: error: use of undefined value here causes illegal behavior
-// :117:22: note: when computing vector element at index '1'
-// :117:22: error: use of undefined value here causes illegal behavior
-// :117:22: note: when computing vector element at index '1'
-// :117:22: error: use of undefined value here causes illegal behavior
-// :117:22: note: when computing vector element at index '1'
-// :117:22: error: use of undefined value here causes illegal behavior
-// :117:22: note: when computing vector element at index '1'
-// :117:22: error: use of undefined value here causes illegal behavior
-// :117:22: note: when computing vector element at index '0'
-// :117:22: error: use of undefined value here causes illegal behavior
-// :117:22: note: when computing vector element at index '0'
-// :117:22: error: use of undefined value here causes illegal behavior
-// :117:22: note: when computing vector element at index '0'
-// :117:22: error: use of undefined value here causes illegal behavior
-// :117:22: note: when computing vector element at index '0'
-// :117:22: error: use of undefined value here causes illegal behavior
-// :117:22: error: use of undefined value here causes illegal behavior
-// :117:22: error: use of undefined value here causes illegal behavior
-// :117:22: error: use of undefined value here causes illegal behavior
-// :117:22: error: use of undefined value here causes illegal behavior
-// :117:22: error: use of undefined value here causes illegal behavior
-// :117:22: error: use of undefined value here causes illegal behavior
-// :117:22: note: when computing vector element at index '1'
-// :117:22: error: use of undefined value here causes illegal behavior
-// :117:22: note: when computing vector element at index '1'
-// :117:22: error: use of undefined value here causes illegal behavior
-// :117:22: note: when computing vector element at index '1'
-// :117:22: error: use of undefined value here causes illegal behavior
-// :117:22: note: when computing vector element at index '1'
-// :117:22: error: use of undefined value here causes illegal behavior
-// :117:22: note: when computing vector element at index '0'
-// :117:22: error: use of undefined value here causes illegal behavior
-// :117:22: note: when computing vector element at index '0'
-// :117:22: error: use of undefined value here causes illegal behavior
-// :117:22: note: when computing vector element at index '0'
-// :117:22: error: use of undefined value here causes illegal behavior
-// :117:22: note: when computing vector element at index '0'
-// :117:22: error: use of undefined value here causes illegal behavior
-// :117:22: error: use of undefined value here causes illegal behavior
-// :117:22: error: use of undefined value here causes illegal behavior
-// :117:22: error: use of undefined value here causes illegal behavior
-// :117:22: error: use of undefined value here causes illegal behavior
-// :117:22: error: use of undefined value here causes illegal behavior
-// :117:22: error: use of undefined value here causes illegal behavior
-// :117:22: note: when computing vector element at index '1'
-// :117:22: error: use of undefined value here causes illegal behavior
-// :117:22: note: when computing vector element at index '1'
-// :117:22: error: use of undefined value here causes illegal behavior
-// :117:22: note: when computing vector element at index '1'
-// :117:22: error: use of undefined value here causes illegal behavior
-// :117:22: note: when computing vector element at index '1'
-// :117:22: error: use of undefined value here causes illegal behavior
-// :117:22: note: when computing vector element at index '0'
-// :117:22: error: use of undefined value here causes illegal behavior
-// :117:22: note: when computing vector element at index '0'
-// :117:22: error: use of undefined value here causes illegal behavior
-// :117:22: note: when computing vector element at index '0'
-// :117:22: error: use of undefined value here causes illegal behavior
-// :117:22: note: when computing vector element at index '0'
-// :121:22: error: use of undefined value here causes illegal behavior
-// :121:22: error: use of undefined value here causes illegal behavior
-// :121:22: error: use of undefined value here causes illegal behavior
-// :121:22: error: use of undefined value here causes illegal behavior
-// :121:22: error: use of undefined value here causes illegal behavior
-// :121:22: error: use of undefined value here causes illegal behavior
-// :121:22: error: use of undefined value here causes illegal behavior
-// :121:22: note: when computing vector element at index '1'
-// :121:22: error: use of undefined value here causes illegal behavior
-// :121:22: note: when computing vector element at index '1'
-// :121:22: error: use of undefined value here causes illegal behavior
-// :121:22: note: when computing vector element at index '1'
-// :121:22: error: use of undefined value here causes illegal behavior
-// :121:22: note: when computing vector element at index '1'
-// :121:22: error: use of undefined value here causes illegal behavior
-// :121:22: note: when computing vector element at index '0'
-// :121:22: error: use of undefined value here causes illegal behavior
-// :121:22: note: when computing vector element at index '0'
-// :121:22: error: use of undefined value here causes illegal behavior
-// :121:22: note: when computing vector element at index '0'
-// :121:22: error: use of undefined value here causes illegal behavior
-// :121:22: note: when computing vector element at index '0'
-// :121:22: error: use of undefined value here causes illegal behavior
-// :121:22: error: use of undefined value here causes illegal behavior
-// :121:22: error: use of undefined value here causes illegal behavior
-// :121:22: error: use of undefined value here causes illegal behavior
-// :121:22: error: use of undefined value here causes illegal behavior
-// :121:22: error: use of undefined value here causes illegal behavior
-// :121:22: error: use of undefined value here causes illegal behavior
-// :121:22: note: when computing vector element at index '1'
-// :121:22: error: use of undefined value here causes illegal behavior
-// :121:22: note: when computing vector element at index '1'
-// :121:22: error: use of undefined value here causes illegal behavior
-// :121:22: note: when computing vector element at index '1'
-// :121:22: error: use of undefined value here causes illegal behavior
-// :121:22: note: when computing vector element at index '1'
-// :121:22: error: use of undefined value here causes illegal behavior
-// :121:22: note: when computing vector element at index '0'
-// :121:22: error: use of undefined value here causes illegal behavior
-// :121:22: note: when computing vector element at index '0'
-// :121:22: error: use of undefined value here causes illegal behavior
-// :121:22: note: when computing vector element at index '0'
-// :121:22: error: use of undefined value here causes illegal behavior
-// :121:22: note: when computing vector element at index '0'
-// :121:22: error: use of undefined value here causes illegal behavior
-// :121:22: error: use of undefined value here causes illegal behavior
-// :121:22: error: use of undefined value here causes illegal behavior
-// :121:22: error: use of undefined value here causes illegal behavior
-// :121:22: error: use of undefined value here causes illegal behavior
-// :121:22: error: use of undefined value here causes illegal behavior
-// :121:22: error: use of undefined value here causes illegal behavior
-// :121:22: note: when computing vector element at index '1'
-// :121:22: error: use of undefined value here causes illegal behavior
-// :121:22: note: when computing vector element at index '1'
-// :121:22: error: use of undefined value here causes illegal behavior
-// :121:22: note: when computing vector element at index '1'
-// :121:22: error: use of undefined value here causes illegal behavior
-// :121:22: note: when computing vector element at index '1'
-// :121:22: error: use of undefined value here causes illegal behavior
-// :121:22: note: when computing vector element at index '0'
-// :121:22: error: use of undefined value here causes illegal behavior
-// :121:22: note: when computing vector element at index '0'
-// :121:22: error: use of undefined value here causes illegal behavior
-// :121:22: note: when computing vector element at index '0'
-// :121:22: error: use of undefined value here causes illegal behavior
-// :121:22: note: when computing vector element at index '0'
-// :121:22: error: use of undefined value here causes illegal behavior
-// :121:22: error: use of undefined value here causes illegal behavior
-// :121:22: error: use of undefined value here causes illegal behavior
-// :121:22: error: use of undefined value here causes illegal behavior
-// :121:22: error: use of undefined value here causes illegal behavior
-// :121:22: error: use of undefined value here causes illegal behavior
-// :121:22: error: use of undefined value here causes illegal behavior
-// :121:22: note: when computing vector element at index '1'
-// :121:22: error: use of undefined value here causes illegal behavior
-// :121:22: note: when computing vector element at index '1'
-// :121:22: error: use of undefined value here causes illegal behavior
-// :121:22: note: when computing vector element at index '1'
-// :121:22: error: use of undefined value here causes illegal behavior
-// :121:22: note: when computing vector element at index '1'
-// :121:22: error: use of undefined value here causes illegal behavior
-// :121:22: note: when computing vector element at index '0'
-// :121:22: error: use of undefined value here causes illegal behavior
-// :121:22: note: when computing vector element at index '0'
-// :121:22: error: use of undefined value here causes illegal behavior
-// :121:22: note: when computing vector element at index '0'
-// :121:22: error: use of undefined value here causes illegal behavior
-// :121:22: note: when computing vector element at index '0'
-// :121:22: error: use of undefined value here causes illegal behavior
-// :121:22: error: use of undefined value here causes illegal behavior
-// :121:22: error: use of undefined value here causes illegal behavior
-// :121:22: error: use of undefined value here causes illegal behavior
-// :121:22: error: use of undefined value here causes illegal behavior
-// :121:22: error: use of undefined value here causes illegal behavior
-// :121:22: error: use of undefined value here causes illegal behavior
-// :121:22: note: when computing vector element at index '1'
-// :121:22: error: use of undefined value here causes illegal behavior
-// :121:22: note: when computing vector element at index '1'
-// :121:22: error: use of undefined value here causes illegal behavior
-// :121:22: note: when computing vector element at index '1'
-// :121:22: error: use of undefined value here causes illegal behavior
-// :121:22: note: when computing vector element at index '1'
-// :121:22: error: use of undefined value here causes illegal behavior
-// :121:22: note: when computing vector element at index '0'
-// :121:22: error: use of undefined value here causes illegal behavior
-// :121:22: note: when computing vector element at index '0'
-// :121:22: error: use of undefined value here causes illegal behavior
-// :121:22: note: when computing vector element at index '0'
-// :121:22: error: use of undefined value here causes illegal behavior
-// :121:22: note: when computing vector element at index '0'
-// :121:22: error: use of undefined value here causes illegal behavior
-// :121:22: error: use of undefined value here causes illegal behavior
-// :121:22: error: use of undefined value here causes illegal behavior
-// :121:22: error: use of undefined value here causes illegal behavior
-// :121:22: error: use of undefined value here causes illegal behavior
-// :121:22: error: use of undefined value here causes illegal behavior
-// :121:22: error: use of undefined value here causes illegal behavior
-// :121:22: note: when computing vector element at index '1'
-// :121:22: error: use of undefined value here causes illegal behavior
-// :121:22: note: when computing vector element at index '1'
-// :121:22: error: use of undefined value here causes illegal behavior
-// :121:22: note: when computing vector element at index '1'
-// :121:22: error: use of undefined value here causes illegal behavior
-// :121:22: note: when computing vector element at index '1'
-// :121:22: error: use of undefined value here causes illegal behavior
-// :121:22: note: when computing vector element at index '0'
-// :121:22: error: use of undefined value here causes illegal behavior
-// :121:22: note: when computing vector element at index '0'
-// :121:22: error: use of undefined value here causes illegal behavior
-// :121:22: note: when computing vector element at index '0'
-// :121:22: error: use of undefined value here causes illegal behavior
-// :121:22: note: when computing vector element at index '0'
-// :121:22: error: use of undefined value here causes illegal behavior
-// :121:22: error: use of undefined value here causes illegal behavior
-// :121:22: error: use of undefined value here causes illegal behavior
-// :121:22: error: use of undefined value here causes illegal behavior
-// :121:22: error: use of undefined value here causes illegal behavior
-// :121:22: error: use of undefined value here causes illegal behavior
-// :121:22: error: use of undefined value here causes illegal behavior
-// :121:22: note: when computing vector element at index '1'
-// :121:22: error: use of undefined value here causes illegal behavior
-// :121:22: note: when computing vector element at index '1'
-// :121:22: error: use of undefined value here causes illegal behavior
-// :121:22: note: when computing vector element at index '1'
-// :121:22: error: use of undefined value here causes illegal behavior
-// :121:22: note: when computing vector element at index '1'
-// :121:22: error: use of undefined value here causes illegal behavior
-// :121:22: note: when computing vector element at index '0'
-// :121:22: error: use of undefined value here causes illegal behavior
-// :121:22: note: when computing vector element at index '0'
-// :121:22: error: use of undefined value here causes illegal behavior
-// :121:22: note: when computing vector element at index '0'
-// :121:22: error: use of undefined value here causes illegal behavior
-// :121:22: note: when computing vector element at index '0'
-// :121:22: error: use of undefined value here causes illegal behavior
-// :121:22: error: use of undefined value here causes illegal behavior
-// :121:22: error: use of undefined value here causes illegal behavior
-// :121:22: error: use of undefined value here causes illegal behavior
-// :121:22: error: use of undefined value here causes illegal behavior
-// :121:22: error: use of undefined value here causes illegal behavior
-// :121:22: error: use of undefined value here causes illegal behavior
-// :121:22: note: when computing vector element at index '1'
-// :121:22: error: use of undefined value here causes illegal behavior
-// :121:22: note: when computing vector element at index '1'
-// :121:22: error: use of undefined value here causes illegal behavior
-// :121:22: note: when computing vector element at index '1'
-// :121:22: error: use of undefined value here causes illegal behavior
-// :121:22: note: when computing vector element at index '1'
-// :121:22: error: use of undefined value here causes illegal behavior
-// :121:22: note: when computing vector element at index '0'
-// :121:22: error: use of undefined value here causes illegal behavior
-// :121:22: note: when computing vector element at index '0'
-// :121:22: error: use of undefined value here causes illegal behavior
-// :121:22: note: when computing vector element at index '0'
-// :121:22: error: use of undefined value here causes illegal behavior
-// :121:22: note: when computing vector element at index '0'
-// :121:22: error: use of undefined value here causes illegal behavior
-// :121:22: error: use of undefined value here causes illegal behavior
-// :121:22: error: use of undefined value here causes illegal behavior
-// :121:22: error: use of undefined value here causes illegal behavior
-// :121:22: error: use of undefined value here causes illegal behavior
-// :121:22: error: use of undefined value here causes illegal behavior
-// :121:22: error: use of undefined value here causes illegal behavior
-// :121:22: note: when computing vector element at index '1'
-// :121:22: error: use of undefined value here causes illegal behavior
-// :121:22: note: when computing vector element at index '1'
-// :121:22: error: use of undefined value here causes illegal behavior
-// :121:22: note: when computing vector element at index '1'
-// :121:22: error: use of undefined value here causes illegal behavior
-// :121:22: note: when computing vector element at index '1'
-// :121:22: error: use of undefined value here causes illegal behavior
-// :121:22: note: when computing vector element at index '0'
-// :121:22: error: use of undefined value here causes illegal behavior
-// :121:22: note: when computing vector element at index '0'
-// :121:22: error: use of undefined value here causes illegal behavior
-// :121:22: note: when computing vector element at index '0'
-// :121:22: error: use of undefined value here causes illegal behavior
-// :121:22: note: when computing vector element at index '0'
-// :121:22: error: use of undefined value here causes illegal behavior
-// :121:22: error: use of undefined value here causes illegal behavior
-// :121:22: error: use of undefined value here causes illegal behavior
-// :121:22: error: use of undefined value here causes illegal behavior
-// :121:22: error: use of undefined value here causes illegal behavior
-// :121:22: error: use of undefined value here causes illegal behavior
-// :121:22: error: use of undefined value here causes illegal behavior
-// :121:22: note: when computing vector element at index '1'
-// :121:22: error: use of undefined value here causes illegal behavior
-// :121:22: note: when computing vector element at index '1'
-// :121:22: error: use of undefined value here causes illegal behavior
-// :121:22: note: when computing vector element at index '1'
-// :121:22: error: use of undefined value here causes illegal behavior
-// :121:22: note: when computing vector element at index '1'
-// :121:22: error: use of undefined value here causes illegal behavior
-// :121:22: note: when computing vector element at index '0'
-// :121:22: error: use of undefined value here causes illegal behavior
-// :121:22: note: when computing vector element at index '0'
-// :121:22: error: use of undefined value here causes illegal behavior
-// :121:22: note: when computing vector element at index '0'
-// :121:22: error: use of undefined value here causes illegal behavior
-// :121:22: note: when computing vector element at index '0'
-// :121:22: error: use of undefined value here causes illegal behavior
-// :121:22: error: use of undefined value here causes illegal behavior
-// :121:22: error: use of undefined value here causes illegal behavior
-// :121:22: error: use of undefined value here causes illegal behavior
-// :121:22: error: use of undefined value here causes illegal behavior
-// :121:22: error: use of undefined value here causes illegal behavior
-// :121:22: error: use of undefined value here causes illegal behavior
-// :121:22: note: when computing vector element at index '1'
-// :121:22: error: use of undefined value here causes illegal behavior
-// :121:22: note: when computing vector element at index '1'
-// :121:22: error: use of undefined value here causes illegal behavior
-// :121:22: note: when computing vector element at index '1'
-// :121:22: error: use of undefined value here causes illegal behavior
-// :121:22: note: when computing vector element at index '1'
-// :121:22: error: use of undefined value here causes illegal behavior
-// :121:22: note: when computing vector element at index '0'
-// :121:22: error: use of undefined value here causes illegal behavior
-// :121:22: note: when computing vector element at index '0'
-// :121:22: error: use of undefined value here causes illegal behavior
-// :121:22: note: when computing vector element at index '0'
-// :121:22: error: use of undefined value here causes illegal behavior
-// :121:22: note: when computing vector element at index '0'
-// :127:17: error: use of undefined value here causes illegal behavior
-// :127:17: error: use of undefined value here causes illegal behavior
-// :127:17: note: when computing vector element at index '0'
-// :127:17: error: use of undefined value here causes illegal behavior
-// :127:17: note: when computing vector element at index '0'
-// :127:17: error: use of undefined value here causes illegal behavior
-// :127:17: note: when computing vector element at index '0'
-// :127:17: error: use of undefined value here causes illegal behavior
-// :127:17: note: when computing vector element at index '1'
-// :127:17: error: use of undefined value here causes illegal behavior
-// :127:17: note: when computing vector element at index '0'
-// :127:17: error: use of undefined value here causes illegal behavior
-// :127:17: note: when computing vector element at index '0'
-// :127:17: error: use of undefined value here causes illegal behavior
-// :127:17: note: when computing vector element at index '0'
-// :127:17: error: use of undefined value here causes illegal behavior
-// :127:17: error: use of undefined value here causes illegal behavior
-// :127:17: note: when computing vector element at index '0'
-// :127:17: error: use of undefined value here causes illegal behavior
-// :127:17: note: when computing vector element at index '0'
-// :127:17: error: use of undefined value here causes illegal behavior
-// :127:17: note: when computing vector element at index '0'
-// :127:17: error: use of undefined value here causes illegal behavior
-// :127:17: note: when computing vector element at index '1'
-// :127:17: error: use of undefined value here causes illegal behavior
-// :127:17: note: when computing vector element at index '0'
-// :127:17: error: use of undefined value here causes illegal behavior
-// :127:17: note: when computing vector element at index '0'
-// :127:17: error: use of undefined value here causes illegal behavior
-// :127:17: note: when computing vector element at index '0'
-// :127:17: error: use of undefined value here causes illegal behavior
-// :127:17: error: use of undefined value here causes illegal behavior
-// :127:17: note: when computing vector element at index '0'
-// :127:17: error: use of undefined value here causes illegal behavior
-// :127:17: note: when computing vector element at index '0'
-// :127:17: error: use of undefined value here causes illegal behavior
-// :127:17: note: when computing vector element at index '0'
-// :127:17: error: use of undefined value here causes illegal behavior
-// :127:17: note: when computing vector element at index '1'
-// :127:17: error: use of undefined value here causes illegal behavior
-// :127:17: note: when computing vector element at index '0'
-// :127:17: error: use of undefined value here causes illegal behavior
-// :127:17: note: when computing vector element at index '0'
-// :127:17: error: use of undefined value here causes illegal behavior
-// :127:17: note: when computing vector element at index '0'
-// :127:17: error: use of undefined value here causes illegal behavior
-// :127:17: error: use of undefined value here causes illegal behavior
-// :127:17: note: when computing vector element at index '0'
-// :127:17: error: use of undefined value here causes illegal behavior
-// :127:17: note: when computing vector element at index '0'
-// :127:17: error: use of undefined value here causes illegal behavior
-// :127:17: note: when computing vector element at index '0'
-// :127:17: error: use of undefined value here causes illegal behavior
-// :127:17: note: when computing vector element at index '1'
-// :127:17: error: use of undefined value here causes illegal behavior
-// :127:17: note: when computing vector element at index '0'
-// :127:17: error: use of undefined value here causes illegal behavior
-// :127:17: note: when computing vector element at index '0'
-// :127:17: error: use of undefined value here causes illegal behavior
-// :127:17: note: when computing vector element at index '0'
-// :127:17: error: use of undefined value here causes illegal behavior
-// :127:17: error: use of undefined value here causes illegal behavior
-// :127:17: note: when computing vector element at index '0'
-// :127:17: error: use of undefined value here causes illegal behavior
-// :127:17: note: when computing vector element at index '0'
-// :127:17: error: use of undefined value here causes illegal behavior
-// :127:17: note: when computing vector element at index '0'
-// :127:17: error: use of undefined value here causes illegal behavior
-// :127:17: note: when computing vector element at index '1'
-// :127:17: error: use of undefined value here causes illegal behavior
-// :127:17: note: when computing vector element at index '0'
-// :127:17: error: use of undefined value here causes illegal behavior
-// :127:17: note: when computing vector element at index '0'
-// :127:17: error: use of undefined value here causes illegal behavior
-// :127:17: note: when computing vector element at index '0'
-// :127:17: error: use of undefined value here causes illegal behavior
-// :127:17: error: use of undefined value here causes illegal behavior
-// :127:17: note: when computing vector element at index '0'
-// :127:17: error: use of undefined value here causes illegal behavior
-// :127:17: note: when computing vector element at index '0'
-// :127:17: error: use of undefined value here causes illegal behavior
-// :127:17: note: when computing vector element at index '0'
-// :127:17: error: use of undefined value here causes illegal behavior
-// :127:17: note: when computing vector element at index '1'
-// :127:17: error: use of undefined value here causes illegal behavior
-// :127:17: note: when computing vector element at index '0'
-// :127:17: error: use of undefined value here causes illegal behavior
-// :127:17: note: when computing vector element at index '0'
-// :127:17: error: use of undefined value here causes illegal behavior
-// :127:17: note: when computing vector element at index '0'
-// :127:17: error: use of undefined value here causes illegal behavior
-// :127:17: error: use of undefined value here causes illegal behavior
-// :127:17: note: when computing vector element at index '0'
-// :127:17: error: use of undefined value here causes illegal behavior
-// :127:17: note: when computing vector element at index '0'
-// :127:17: error: use of undefined value here causes illegal behavior
-// :127:17: note: when computing vector element at index '0'
-// :127:17: error: use of undefined value here causes illegal behavior
-// :127:17: note: when computing vector element at index '1'
-// :127:17: error: use of undefined value here causes illegal behavior
-// :127:17: note: when computing vector element at index '0'
-// :127:17: error: use of undefined value here causes illegal behavior
-// :127:17: note: when computing vector element at index '0'
-// :127:17: error: use of undefined value here causes illegal behavior
-// :127:17: note: when computing vector element at index '0'
-// :127:17: error: use of undefined value here causes illegal behavior
-// :127:17: error: use of undefined value here causes illegal behavior
-// :127:17: note: when computing vector element at index '0'
-// :127:17: error: use of undefined value here causes illegal behavior
-// :127:17: note: when computing vector element at index '0'
-// :127:17: error: use of undefined value here causes illegal behavior
-// :127:17: note: when computing vector element at index '0'
-// :127:17: error: use of undefined value here causes illegal behavior
-// :127:17: note: when computing vector element at index '1'
-// :127:17: error: use of undefined value here causes illegal behavior
-// :127:17: note: when computing vector element at index '0'
-// :127:17: error: use of undefined value here causes illegal behavior
-// :127:17: note: when computing vector element at index '0'
-// :127:17: error: use of undefined value here causes illegal behavior
-// :127:17: note: when computing vector element at index '0'
-// :127:17: error: use of undefined value here causes illegal behavior
-// :127:17: error: use of undefined value here causes illegal behavior
-// :127:17: note: when computing vector element at index '0'
-// :127:17: error: use of undefined value here causes illegal behavior
-// :127:17: note: when computing vector element at index '0'
-// :127:17: error: use of undefined value here causes illegal behavior
-// :127:17: note: when computing vector element at index '0'
-// :127:17: error: use of undefined value here causes illegal behavior
-// :127:17: note: when computing vector element at index '1'
-// :127:17: error: use of undefined value here causes illegal behavior
-// :127:17: note: when computing vector element at index '0'
-// :127:17: error: use of undefined value here causes illegal behavior
-// :127:17: note: when computing vector element at index '0'
-// :127:17: error: use of undefined value here causes illegal behavior
-// :127:17: note: when computing vector element at index '0'
-// :127:17: error: use of undefined value here causes illegal behavior
-// :127:17: error: use of undefined value here causes illegal behavior
-// :127:17: note: when computing vector element at index '0'
-// :127:17: error: use of undefined value here causes illegal behavior
-// :127:17: note: when computing vector element at index '0'
-// :127:17: error: use of undefined value here causes illegal behavior
-// :127:17: note: when computing vector element at index '0'
-// :127:17: error: use of undefined value here causes illegal behavior
-// :127:17: note: when computing vector element at index '1'
-// :127:17: error: use of undefined value here causes illegal behavior
-// :127:17: note: when computing vector element at index '0'
-// :127:17: error: use of undefined value here causes illegal behavior
-// :127:17: note: when computing vector element at index '0'
-// :127:17: error: use of undefined value here causes illegal behavior
-// :127:17: note: when computing vector element at index '0'
-// :127:17: error: use of undefined value here causes illegal behavior
-// :127:17: error: use of undefined value here causes illegal behavior
-// :127:17: note: when computing vector element at index '0'
-// :127:17: error: use of undefined value here causes illegal behavior
-// :127:17: note: when computing vector element at index '0'
-// :127:17: error: use of undefined value here causes illegal behavior
-// :127:17: note: when computing vector element at index '0'
-// :127:17: error: use of undefined value here causes illegal behavior
-// :127:17: note: when computing vector element at index '1'
-// :127:17: error: use of undefined value here causes illegal behavior
-// :127:17: note: when computing vector element at index '0'
-// :127:17: error: use of undefined value here causes illegal behavior
-// :127:17: note: when computing vector element at index '0'
-// :127:17: error: use of undefined value here causes illegal behavior
-// :127:17: note: when computing vector element at index '0'
-// :127:21: error: use of undefined value here causes illegal behavior
-// :127:21: error: use of undefined value here causes illegal behavior
-// :127:21: note: when computing vector element at index '0'
-// :127:21: error: use of undefined value here causes illegal behavior
-// :127:21: note: when computing vector element at index '0'
-// :127:21: error: use of undefined value here causes illegal behavior
-// :127:21: note: when computing vector element at index '1'
-// :127:21: error: use of undefined value here causes illegal behavior
-// :127:21: note: when computing vector element at index '0'
-// :127:21: error: use of undefined value here causes illegal behavior
-// :127:21: note: when computing vector element at index '0'
-// :127:21: error: use of undefined value here causes illegal behavior
-// :127:21: error: use of undefined value here causes illegal behavior
-// :127:21: note: when computing vector element at index '0'
-// :127:21: error: use of undefined value here causes illegal behavior
-// :127:21: note: when computing vector element at index '0'
-// :127:21: error: use of undefined value here causes illegal behavior
-// :127:21: note: when computing vector element at index '1'
-// :127:21: error: use of undefined value here causes illegal behavior
-// :127:21: note: when computing vector element at index '0'
-// :127:21: error: use of undefined value here causes illegal behavior
-// :127:21: note: when computing vector element at index '0'
-// :127:21: error: use of undefined value here causes illegal behavior
-// :127:21: error: use of undefined value here causes illegal behavior
-// :127:21: note: when computing vector element at index '0'
-// :127:21: error: use of undefined value here causes illegal behavior
-// :127:21: note: when computing vector element at index '0'
-// :127:21: error: use of undefined value here causes illegal behavior
-// :127:21: note: when computing vector element at index '1'
-// :127:21: error: use of undefined value here causes illegal behavior
-// :127:21: note: when computing vector element at index '0'
-// :127:21: error: use of undefined value here causes illegal behavior
-// :127:21: note: when computing vector element at index '0'
-// :127:21: error: use of undefined value here causes illegal behavior
-// :127:21: error: use of undefined value here causes illegal behavior
-// :127:21: note: when computing vector element at index '0'
-// :127:21: error: use of undefined value here causes illegal behavior
-// :127:21: note: when computing vector element at index '0'
-// :127:21: error: use of undefined value here causes illegal behavior
-// :127:21: note: when computing vector element at index '1'
-// :127:21: error: use of undefined value here causes illegal behavior
-// :127:21: note: when computing vector element at index '0'
-// :127:21: error: use of undefined value here causes illegal behavior
-// :127:21: note: when computing vector element at index '0'
-// :127:21: error: use of undefined value here causes illegal behavior
-// :127:21: error: use of undefined value here causes illegal behavior
-// :127:21: note: when computing vector element at index '0'
-// :127:21: error: use of undefined value here causes illegal behavior
-// :127:21: note: when computing vector element at index '0'
-// :127:21: error: use of undefined value here causes illegal behavior
-// :127:21: note: when computing vector element at index '1'
-// :127:21: error: use of undefined value here causes illegal behavior
-// :127:21: note: when computing vector element at index '0'
-// :127:21: error: use of undefined value here causes illegal behavior
-// :127:21: note: when computing vector element at index '0'
-// :127:21: error: use of undefined value here causes illegal behavior
-// :127:21: error: use of undefined value here causes illegal behavior
-// :127:21: note: when computing vector element at index '0'
-// :127:21: error: use of undefined value here causes illegal behavior
-// :127:21: note: when computing vector element at index '0'
-// :127:21: error: use of undefined value here causes illegal behavior
-// :127:21: note: when computing vector element at index '1'
-// :127:21: error: use of undefined value here causes illegal behavior
-// :127:21: note: when computing vector element at index '0'
-// :127:21: error: use of undefined value here causes illegal behavior
-// :127:21: note: when computing vector element at index '0'
-// :127:21: error: use of undefined value here causes illegal behavior
-// :127:21: error: use of undefined value here causes illegal behavior
-// :127:21: note: when computing vector element at index '0'
-// :127:21: error: use of undefined value here causes illegal behavior
-// :127:21: note: when computing vector element at index '0'
-// :127:21: error: use of undefined value here causes illegal behavior
-// :127:21: note: when computing vector element at index '1'
-// :127:21: error: use of undefined value here causes illegal behavior
-// :127:21: note: when computing vector element at index '0'
-// :127:21: error: use of undefined value here causes illegal behavior
-// :127:21: note: when computing vector element at index '0'
-// :127:21: error: use of undefined value here causes illegal behavior
-// :127:21: error: use of undefined value here causes illegal behavior
-// :127:21: note: when computing vector element at index '0'
-// :127:21: error: use of undefined value here causes illegal behavior
-// :127:21: note: when computing vector element at index '0'
-// :127:21: error: use of undefined value here causes illegal behavior
-// :127:21: note: when computing vector element at index '1'
-// :127:21: error: use of undefined value here causes illegal behavior
-// :127:21: note: when computing vector element at index '0'
-// :127:21: error: use of undefined value here causes illegal behavior
-// :127:21: note: when computing vector element at index '0'
-// :127:21: error: use of undefined value here causes illegal behavior
-// :127:21: error: use of undefined value here causes illegal behavior
-// :127:21: note: when computing vector element at index '0'
-// :127:21: error: use of undefined value here causes illegal behavior
-// :127:21: note: when computing vector element at index '0'
-// :127:21: error: use of undefined value here causes illegal behavior
-// :127:21: note: when computing vector element at index '1'
-// :127:21: error: use of undefined value here causes illegal behavior
-// :127:21: note: when computing vector element at index '0'
-// :127:21: error: use of undefined value here causes illegal behavior
-// :127:21: note: when computing vector element at index '0'
-// :127:21: error: use of undefined value here causes illegal behavior
-// :127:21: error: use of undefined value here causes illegal behavior
-// :127:21: note: when computing vector element at index '0'
-// :127:21: error: use of undefined value here causes illegal behavior
-// :127:21: note: when computing vector element at index '0'
-// :127:21: error: use of undefined value here causes illegal behavior
-// :127:21: note: when computing vector element at index '1'
-// :127:21: error: use of undefined value here causes illegal behavior
-// :127:21: note: when computing vector element at index '0'
-// :127:21: error: use of undefined value here causes illegal behavior
-// :127:21: note: when computing vector element at index '0'
-// :127:21: error: use of undefined value here causes illegal behavior
-// :127:21: error: use of undefined value here causes illegal behavior
-// :127:21: note: when computing vector element at index '0'
-// :127:21: error: use of undefined value here causes illegal behavior
-// :127:21: note: when computing vector element at index '0'
-// :127:21: error: use of undefined value here causes illegal behavior
-// :127:21: note: when computing vector element at index '1'
-// :127:21: error: use of undefined value here causes illegal behavior
-// :127:21: note: when computing vector element at index '0'
-// :127:21: error: use of undefined value here causes illegal behavior
-// :127:21: note: when computing vector element at index '0'
-// :131:27: error: use of undefined value here causes illegal behavior
-// :131:27: error: use of undefined value here causes illegal behavior
-// :131:27: note: when computing vector element at index '0'
-// :131:27: error: use of undefined value here causes illegal behavior
-// :131:27: note: when computing vector element at index '0'
-// :131:27: error: use of undefined value here causes illegal behavior
-// :131:27: note: when computing vector element at index '0'
-// :131:27: error: use of undefined value here causes illegal behavior
-// :131:27: note: when computing vector element at index '1'
-// :131:27: error: use of undefined value here causes illegal behavior
-// :131:27: note: when computing vector element at index '0'
-// :131:27: error: use of undefined value here causes illegal behavior
-// :131:27: note: when computing vector element at index '0'
-// :131:27: error: use of undefined value here causes illegal behavior
-// :131:27: note: when computing vector element at index '0'
-// :131:27: error: use of undefined value here causes illegal behavior
-// :131:27: error: use of undefined value here causes illegal behavior
-// :131:27: note: when computing vector element at index '0'
-// :131:27: error: use of undefined value here causes illegal behavior
-// :131:27: note: when computing vector element at index '0'
-// :131:27: error: use of undefined value here causes illegal behavior
-// :131:27: note: when computing vector element at index '0'
-// :131:27: error: use of undefined value here causes illegal behavior
-// :131:27: note: when computing vector element at index '1'
-// :131:27: error: use of undefined value here causes illegal behavior
-// :131:27: note: when computing vector element at index '0'
-// :131:27: error: use of undefined value here causes illegal behavior
-// :131:27: note: when computing vector element at index '0'
-// :131:27: error: use of undefined value here causes illegal behavior
-// :131:27: note: when computing vector element at index '0'
-// :131:27: error: use of undefined value here causes illegal behavior
-// :131:27: error: use of undefined value here causes illegal behavior
-// :131:27: note: when computing vector element at index '0'
-// :131:27: error: use of undefined value here causes illegal behavior
-// :131:27: note: when computing vector element at index '0'
-// :131:27: error: use of undefined value here causes illegal behavior
-// :131:27: note: when computing vector element at index '0'
-// :131:27: error: use of undefined value here causes illegal behavior
-// :131:27: note: when computing vector element at index '1'
-// :131:27: error: use of undefined value here causes illegal behavior
-// :131:27: note: when computing vector element at index '0'
-// :131:27: error: use of undefined value here causes illegal behavior
-// :131:27: note: when computing vector element at index '0'
-// :131:27: error: use of undefined value here causes illegal behavior
-// :131:27: note: when computing vector element at index '0'
-// :131:27: error: use of undefined value here causes illegal behavior
-// :131:27: error: use of undefined value here causes illegal behavior
-// :131:27: note: when computing vector element at index '0'
-// :131:27: error: use of undefined value here causes illegal behavior
-// :131:27: note: when computing vector element at index '0'
-// :131:27: error: use of undefined value here causes illegal behavior
-// :131:27: note: when computing vector element at index '0'
-// :131:27: error: use of undefined value here causes illegal behavior
-// :131:27: note: when computing vector element at index '1'
-// :131:27: error: use of undefined value here causes illegal behavior
-// :131:27: note: when computing vector element at index '0'
-// :131:27: error: use of undefined value here causes illegal behavior
-// :131:27: note: when computing vector element at index '0'
-// :131:27: error: use of undefined value here causes illegal behavior
-// :131:27: note: when computing vector element at index '0'
-// :131:27: error: use of undefined value here causes illegal behavior
-// :131:27: error: use of undefined value here causes illegal behavior
-// :131:27: note: when computing vector element at index '0'
-// :131:27: error: use of undefined value here causes illegal behavior
-// :131:27: note: when computing vector element at index '0'
-// :131:27: error: use of undefined value here causes illegal behavior
-// :131:27: note: when computing vector element at index '0'
-// :131:27: error: use of undefined value here causes illegal behavior
-// :131:27: note: when computing vector element at index '1'
-// :131:27: error: use of undefined value here causes illegal behavior
-// :131:27: note: when computing vector element at index '0'
-// :131:27: error: use of undefined value here causes illegal behavior
-// :131:27: note: when computing vector element at index '0'
-// :131:27: error: use of undefined value here causes illegal behavior
-// :131:27: note: when computing vector element at index '0'
-// :131:27: error: use of undefined value here causes illegal behavior
-// :131:27: error: use of undefined value here causes illegal behavior
-// :131:27: note: when computing vector element at index '0'
-// :131:27: error: use of undefined value here causes illegal behavior
-// :131:27: note: when computing vector element at index '0'
-// :131:27: error: use of undefined value here causes illegal behavior
-// :131:27: note: when computing vector element at index '0'
-// :131:27: error: use of undefined value here causes illegal behavior
-// :131:27: note: when computing vector element at index '1'
-// :131:27: error: use of undefined value here causes illegal behavior
-// :131:27: note: when computing vector element at index '0'
-// :131:27: error: use of undefined value here causes illegal behavior
-// :131:27: note: when computing vector element at index '0'
-// :131:27: error: use of undefined value here causes illegal behavior
-// :131:27: note: when computing vector element at index '0'
-// :131:27: error: use of undefined value here causes illegal behavior
-// :131:27: error: use of undefined value here causes illegal behavior
-// :131:27: note: when computing vector element at index '0'
-// :131:27: error: use of undefined value here causes illegal behavior
-// :131:27: note: when computing vector element at index '0'
-// :131:27: error: use of undefined value here causes illegal behavior
-// :131:27: note: when computing vector element at index '0'
-// :131:27: error: use of undefined value here causes illegal behavior
-// :131:27: note: when computing vector element at index '1'
-// :131:27: error: use of undefined value here causes illegal behavior
-// :131:27: note: when computing vector element at index '0'
-// :131:27: error: use of undefined value here causes illegal behavior
-// :131:27: note: when computing vector element at index '0'
-// :131:27: error: use of undefined value here causes illegal behavior
-// :131:27: note: when computing vector element at index '0'
-// :131:27: error: use of undefined value here causes illegal behavior
-// :131:27: error: use of undefined value here causes illegal behavior
-// :131:27: note: when computing vector element at index '0'
-// :131:27: error: use of undefined value here causes illegal behavior
-// :131:27: note: when computing vector element at index '0'
-// :131:27: error: use of undefined value here causes illegal behavior
-// :131:27: note: when computing vector element at index '0'
-// :131:27: error: use of undefined value here causes illegal behavior
-// :131:27: note: when computing vector element at index '1'
-// :131:27: error: use of undefined value here causes illegal behavior
-// :131:27: note: when computing vector element at index '0'
-// :131:27: error: use of undefined value here causes illegal behavior
-// :131:27: note: when computing vector element at index '0'
-// :131:27: error: use of undefined value here causes illegal behavior
-// :131:27: note: when computing vector element at index '0'
-// :131:27: error: use of undefined value here causes illegal behavior
-// :131:27: error: use of undefined value here causes illegal behavior
-// :131:27: note: when computing vector element at index '0'
-// :131:27: error: use of undefined value here causes illegal behavior
-// :131:27: note: when computing vector element at index '0'
-// :131:27: error: use of undefined value here causes illegal behavior
-// :131:27: note: when computing vector element at index '0'
-// :131:27: error: use of undefined value here causes illegal behavior
-// :131:27: note: when computing vector element at index '1'
-// :131:27: error: use of undefined value here causes illegal behavior
-// :131:27: note: when computing vector element at index '0'
-// :131:27: error: use of undefined value here causes illegal behavior
-// :131:27: note: when computing vector element at index '0'
-// :131:27: error: use of undefined value here causes illegal behavior
-// :131:27: note: when computing vector element at index '0'
-// :131:27: error: use of undefined value here causes illegal behavior
-// :131:27: error: use of undefined value here causes illegal behavior
-// :131:27: note: when computing vector element at index '0'
-// :131:27: error: use of undefined value here causes illegal behavior
-// :131:27: note: when computing vector element at index '0'
-// :131:27: error: use of undefined value here causes illegal behavior
-// :131:27: note: when computing vector element at index '0'
-// :131:27: error: use of undefined value here causes illegal behavior
-// :131:27: note: when computing vector element at index '1'
-// :131:27: error: use of undefined value here causes illegal behavior
-// :131:27: note: when computing vector element at index '0'
-// :131:27: error: use of undefined value here causes illegal behavior
-// :131:27: note: when computing vector element at index '0'
-// :131:27: error: use of undefined value here causes illegal behavior
-// :131:27: note: when computing vector element at index '0'
-// :131:27: error: use of undefined value here causes illegal behavior
-// :131:27: error: use of undefined value here causes illegal behavior
-// :131:27: note: when computing vector element at index '0'
-// :131:27: error: use of undefined value here causes illegal behavior
-// :131:27: note: when computing vector element at index '0'
-// :131:27: error: use of undefined value here causes illegal behavior
-// :131:27: note: when computing vector element at index '0'
-// :131:27: error: use of undefined value here causes illegal behavior
-// :131:27: note: when computing vector element at index '1'
-// :131:27: error: use of undefined value here causes illegal behavior
-// :131:27: note: when computing vector element at index '0'
-// :131:27: error: use of undefined value here causes illegal behavior
-// :131:27: note: when computing vector element at index '0'
-// :131:27: error: use of undefined value here causes illegal behavior
-// :131:27: note: when computing vector element at index '0'
-// :131:30: error: use of undefined value here causes illegal behavior
-// :131:30: error: use of undefined value here causes illegal behavior
-// :131:30: note: when computing vector element at index '0'
-// :131:30: error: use of undefined value here causes illegal behavior
-// :131:30: note: when computing vector element at index '0'
-// :131:30: error: use of undefined value here causes illegal behavior
-// :131:30: note: when computing vector element at index '1'
-// :131:30: error: use of undefined value here causes illegal behavior
-// :131:30: note: when computing vector element at index '0'
-// :131:30: error: use of undefined value here causes illegal behavior
-// :131:30: note: when computing vector element at index '0'
-// :131:30: error: use of undefined value here causes illegal behavior
-// :131:30: error: use of undefined value here causes illegal behavior
-// :131:30: note: when computing vector element at index '0'
-// :131:30: error: use of undefined value here causes illegal behavior
-// :131:30: note: when computing vector element at index '0'
-// :131:30: error: use of undefined value here causes illegal behavior
-// :131:30: note: when computing vector element at index '1'
-// :131:30: error: use of undefined value here causes illegal behavior
-// :131:30: note: when computing vector element at index '0'
-// :131:30: error: use of undefined value here causes illegal behavior
-// :131:30: note: when computing vector element at index '0'
-// :131:30: error: use of undefined value here causes illegal behavior
-// :131:30: error: use of undefined value here causes illegal behavior
-// :131:30: note: when computing vector element at index '0'
-// :131:30: error: use of undefined value here causes illegal behavior
-// :131:30: note: when computing vector element at index '0'
-// :131:30: error: use of undefined value here causes illegal behavior
-// :131:30: note: when computing vector element at index '1'
-// :131:30: error: use of undefined value here causes illegal behavior
-// :131:30: note: when computing vector element at index '0'
-// :131:30: error: use of undefined value here causes illegal behavior
-// :131:30: note: when computing vector element at index '0'
-// :131:30: error: use of undefined value here causes illegal behavior
-// :131:30: error: use of undefined value here causes illegal behavior
-// :131:30: note: when computing vector element at index '0'
-// :131:30: error: use of undefined value here causes illegal behavior
-// :131:30: note: when computing vector element at index '0'
-// :131:30: error: use of undefined value here causes illegal behavior
-// :131:30: note: when computing vector element at index '1'
-// :131:30: error: use of undefined value here causes illegal behavior
-// :131:30: note: when computing vector element at index '0'
-// :131:30: error: use of undefined value here causes illegal behavior
-// :131:30: note: when computing vector element at index '0'
-// :131:30: error: use of undefined value here causes illegal behavior
-// :131:30: error: use of undefined value here causes illegal behavior
-// :131:30: note: when computing vector element at index '0'
-// :131:30: error: use of undefined value here causes illegal behavior
-// :131:30: note: when computing vector element at index '0'
-// :131:30: error: use of undefined value here causes illegal behavior
-// :131:30: note: when computing vector element at index '1'
-// :131:30: error: use of undefined value here causes illegal behavior
-// :131:30: note: when computing vector element at index '0'
-// :131:30: error: use of undefined value here causes illegal behavior
-// :131:30: note: when computing vector element at index '0'
-// :131:30: error: use of undefined value here causes illegal behavior
-// :131:30: error: use of undefined value here causes illegal behavior
-// :131:30: note: when computing vector element at index '0'
-// :131:30: error: use of undefined value here causes illegal behavior
-// :131:30: note: when computing vector element at index '0'
-// :131:30: error: use of undefined value here causes illegal behavior
-// :131:30: note: when computing vector element at index '1'
-// :131:30: error: use of undefined value here causes illegal behavior
-// :131:30: note: when computing vector element at index '0'
-// :131:30: error: use of undefined value here causes illegal behavior
-// :131:30: note: when computing vector element at index '0'
-// :131:30: error: use of undefined value here causes illegal behavior
-// :131:30: error: use of undefined value here causes illegal behavior
-// :131:30: note: when computing vector element at index '0'
-// :131:30: error: use of undefined value here causes illegal behavior
-// :131:30: note: when computing vector element at index '0'
-// :131:30: error: use of undefined value here causes illegal behavior
-// :131:30: note: when computing vector element at index '1'
-// :131:30: error: use of undefined value here causes illegal behavior
-// :131:30: note: when computing vector element at index '0'
-// :131:30: error: use of undefined value here causes illegal behavior
-// :131:30: note: when computing vector element at index '0'
-// :131:30: error: use of undefined value here causes illegal behavior
-// :131:30: error: use of undefined value here causes illegal behavior
-// :131:30: note: when computing vector element at index '0'
-// :131:30: error: use of undefined value here causes illegal behavior
-// :131:30: note: when computing vector element at index '0'
-// :131:30: error: use of undefined value here causes illegal behavior
-// :131:30: note: when computing vector element at index '1'
-// :131:30: error: use of undefined value here causes illegal behavior
-// :131:30: note: when computing vector element at index '0'
-// :131:30: error: use of undefined value here causes illegal behavior
-// :131:30: note: when computing vector element at index '0'
-// :131:30: error: use of undefined value here causes illegal behavior
-// :131:30: error: use of undefined value here causes illegal behavior
-// :131:30: note: when computing vector element at index '0'
-// :131:30: error: use of undefined value here causes illegal behavior
-// :131:30: note: when computing vector element at index '0'
-// :131:30: error: use of undefined value here causes illegal behavior
-// :131:30: note: when computing vector element at index '1'
-// :131:30: error: use of undefined value here causes illegal behavior
-// :131:30: note: when computing vector element at index '0'
-// :131:30: error: use of undefined value here causes illegal behavior
-// :131:30: note: when computing vector element at index '0'
-// :131:30: error: use of undefined value here causes illegal behavior
-// :131:30: error: use of undefined value here causes illegal behavior
-// :131:30: note: when computing vector element at index '0'
-// :131:30: error: use of undefined value here causes illegal behavior
-// :131:30: note: when computing vector element at index '0'
-// :131:30: error: use of undefined value here causes illegal behavior
-// :131:30: note: when computing vector element at index '1'
-// :131:30: error: use of undefined value here causes illegal behavior
-// :131:30: note: when computing vector element at index '0'
-// :131:30: error: use of undefined value here causes illegal behavior
-// :131:30: note: when computing vector element at index '0'
-// :131:30: error: use of undefined value here causes illegal behavior
-// :131:30: error: use of undefined value here causes illegal behavior
-// :131:30: note: when computing vector element at index '0'
-// :131:30: error: use of undefined value here causes illegal behavior
-// :131:30: note: when computing vector element at index '0'
-// :131:30: error: use of undefined value here causes illegal behavior
-// :131:30: note: when computing vector element at index '1'
-// :131:30: error: use of undefined value here causes illegal behavior
-// :131:30: note: when computing vector element at index '0'
-// :131:30: error: use of undefined value here causes illegal behavior
-// :131:30: note: when computing vector element at index '0'
-// :135:27: error: use of undefined value here causes illegal behavior
-// :135:27: error: use of undefined value here causes illegal behavior
-// :135:27: note: when computing vector element at index '0'
-// :135:27: error: use of undefined value here causes illegal behavior
-// :135:27: note: when computing vector element at index '0'
-// :135:27: error: use of undefined value here causes illegal behavior
-// :135:27: note: when computing vector element at index '0'
-// :135:27: error: use of undefined value here causes illegal behavior
-// :135:27: note: when computing vector element at index '1'
-// :135:27: error: use of undefined value here causes illegal behavior
-// :135:27: note: when computing vector element at index '0'
-// :135:27: error: use of undefined value here causes illegal behavior
-// :135:27: note: when computing vector element at index '0'
-// :135:27: error: use of undefined value here causes illegal behavior
-// :135:27: note: when computing vector element at index '0'
-// :135:27: error: use of undefined value here causes illegal behavior
-// :135:27: error: use of undefined value here causes illegal behavior
-// :135:27: note: when computing vector element at index '0'
-// :135:27: error: use of undefined value here causes illegal behavior
-// :135:27: note: when computing vector element at index '0'
-// :135:27: error: use of undefined value here causes illegal behavior
-// :135:27: note: when computing vector element at index '0'
-// :135:27: error: use of undefined value here causes illegal behavior
-// :135:27: note: when computing vector element at index '1'
-// :135:27: error: use of undefined value here causes illegal behavior
-// :135:27: note: when computing vector element at index '0'
-// :135:27: error: use of undefined value here causes illegal behavior
-// :135:27: note: when computing vector element at index '0'
-// :135:27: error: use of undefined value here causes illegal behavior
-// :135:27: note: when computing vector element at index '0'
-// :135:27: error: use of undefined value here causes illegal behavior
-// :135:27: error: use of undefined value here causes illegal behavior
-// :135:27: note: when computing vector element at index '0'
-// :135:27: error: use of undefined value here causes illegal behavior
-// :135:27: note: when computing vector element at index '0'
-// :135:27: error: use of undefined value here causes illegal behavior
-// :135:27: note: when computing vector element at index '0'
-// :135:27: error: use of undefined value here causes illegal behavior
-// :135:27: note: when computing vector element at index '1'
-// :135:27: error: use of undefined value here causes illegal behavior
-// :135:27: note: when computing vector element at index '0'
-// :135:27: error: use of undefined value here causes illegal behavior
-// :135:27: note: when computing vector element at index '0'
-// :135:27: error: use of undefined value here causes illegal behavior
-// :135:27: note: when computing vector element at index '0'
-// :135:27: error: use of undefined value here causes illegal behavior
-// :135:27: error: use of undefined value here causes illegal behavior
-// :135:27: note: when computing vector element at index '0'
-// :135:27: error: use of undefined value here causes illegal behavior
-// :135:27: note: when computing vector element at index '0'
-// :135:27: error: use of undefined value here causes illegal behavior
-// :135:27: note: when computing vector element at index '0'
-// :135:27: error: use of undefined value here causes illegal behavior
-// :135:27: note: when computing vector element at index '1'
-// :135:27: error: use of undefined value here causes illegal behavior
-// :135:27: note: when computing vector element at index '0'
-// :135:27: error: use of undefined value here causes illegal behavior
-// :135:27: note: when computing vector element at index '0'
-// :135:27: error: use of undefined value here causes illegal behavior
-// :135:27: note: when computing vector element at index '0'
-// :135:27: error: use of undefined value here causes illegal behavior
-// :135:27: error: use of undefined value here causes illegal behavior
-// :135:27: note: when computing vector element at index '0'
-// :135:27: error: use of undefined value here causes illegal behavior
-// :135:27: note: when computing vector element at index '0'
-// :135:27: error: use of undefined value here causes illegal behavior
-// :135:27: note: when computing vector element at index '0'
-// :135:27: error: use of undefined value here causes illegal behavior
-// :135:27: note: when computing vector element at index '1'
-// :135:27: error: use of undefined value here causes illegal behavior
-// :135:27: note: when computing vector element at index '0'
-// :135:27: error: use of undefined value here causes illegal behavior
-// :135:27: note: when computing vector element at index '0'
-// :135:27: error: use of undefined value here causes illegal behavior
-// :135:27: note: when computing vector element at index '0'
-// :135:27: error: use of undefined value here causes illegal behavior
-// :135:27: error: use of undefined value here causes illegal behavior
-// :135:27: note: when computing vector element at index '0'
-// :135:27: error: use of undefined value here causes illegal behavior
-// :135:27: note: when computing vector element at index '0'
-// :135:27: error: use of undefined value here causes illegal behavior
-// :135:27: note: when computing vector element at index '0'
-// :135:27: error: use of undefined value here causes illegal behavior
-// :135:27: note: when computing vector element at index '1'
-// :135:27: error: use of undefined value here causes illegal behavior
-// :135:27: note: when computing vector element at index '0'
-// :135:27: error: use of undefined value here causes illegal behavior
-// :135:27: note: when computing vector element at index '0'
-// :135:27: error: use of undefined value here causes illegal behavior
-// :135:27: note: when computing vector element at index '0'
-// :135:27: error: use of undefined value here causes illegal behavior
-// :135:27: error: use of undefined value here causes illegal behavior
-// :135:27: note: when computing vector element at index '0'
-// :135:27: error: use of undefined value here causes illegal behavior
-// :135:27: note: when computing vector element at index '0'
-// :135:27: error: use of undefined value here causes illegal behavior
-// :135:27: note: when computing vector element at index '0'
-// :135:27: error: use of undefined value here causes illegal behavior
-// :135:27: note: when computing vector element at index '1'
-// :135:27: error: use of undefined value here causes illegal behavior
-// :135:27: note: when computing vector element at index '0'
-// :135:27: error: use of undefined value here causes illegal behavior
-// :135:27: note: when computing vector element at index '0'
-// :135:27: error: use of undefined value here causes illegal behavior
-// :135:27: note: when computing vector element at index '0'
-// :135:27: error: use of undefined value here causes illegal behavior
-// :135:27: error: use of undefined value here causes illegal behavior
-// :135:27: note: when computing vector element at index '0'
-// :135:27: error: use of undefined value here causes illegal behavior
-// :135:27: note: when computing vector element at index '0'
-// :135:27: error: use of undefined value here causes illegal behavior
-// :135:27: note: when computing vector element at index '0'
-// :135:27: error: use of undefined value here causes illegal behavior
-// :135:27: note: when computing vector element at index '1'
-// :135:27: error: use of undefined value here causes illegal behavior
-// :135:27: note: when computing vector element at index '0'
-// :135:27: error: use of undefined value here causes illegal behavior
-// :135:27: note: when computing vector element at index '0'
-// :135:27: error: use of undefined value here causes illegal behavior
-// :135:27: note: when computing vector element at index '0'
-// :135:27: error: use of undefined value here causes illegal behavior
-// :135:27: error: use of undefined value here causes illegal behavior
-// :135:27: note: when computing vector element at index '0'
-// :135:27: error: use of undefined value here causes illegal behavior
-// :135:27: note: when computing vector element at index '0'
-// :135:27: error: use of undefined value here causes illegal behavior
-// :135:27: note: when computing vector element at index '0'
-// :135:27: error: use of undefined value here causes illegal behavior
-// :135:27: note: when computing vector element at index '1'
-// :135:27: error: use of undefined value here causes illegal behavior
-// :135:27: note: when computing vector element at index '0'
-// :135:27: error: use of undefined value here causes illegal behavior
-// :135:27: note: when computing vector element at index '0'
-// :135:27: error: use of undefined value here causes illegal behavior
-// :135:27: note: when computing vector element at index '0'
-// :135:27: error: use of undefined value here causes illegal behavior
-// :135:27: error: use of undefined value here causes illegal behavior
-// :135:27: note: when computing vector element at index '0'
-// :135:27: error: use of undefined value here causes illegal behavior
-// :135:27: note: when computing vector element at index '0'
-// :135:27: error: use of undefined value here causes illegal behavior
-// :135:27: note: when computing vector element at index '0'
-// :135:27: error: use of undefined value here causes illegal behavior
-// :135:27: note: when computing vector element at index '1'
-// :135:27: error: use of undefined value here causes illegal behavior
-// :135:27: note: when computing vector element at index '0'
-// :135:27: error: use of undefined value here causes illegal behavior
-// :135:27: note: when computing vector element at index '0'
-// :135:27: error: use of undefined value here causes illegal behavior
-// :135:27: note: when computing vector element at index '0'
-// :135:27: error: use of undefined value here causes illegal behavior
-// :135:27: error: use of undefined value here causes illegal behavior
-// :135:27: note: when computing vector element at index '0'
-// :135:27: error: use of undefined value here causes illegal behavior
-// :135:27: note: when computing vector element at index '0'
-// :135:27: error: use of undefined value here causes illegal behavior
-// :135:27: note: when computing vector element at index '0'
-// :135:27: error: use of undefined value here causes illegal behavior
-// :135:27: note: when computing vector element at index '1'
-// :135:27: error: use of undefined value here causes illegal behavior
-// :135:27: note: when computing vector element at index '0'
-// :135:27: error: use of undefined value here causes illegal behavior
-// :135:27: note: when computing vector element at index '0'
-// :135:27: error: use of undefined value here causes illegal behavior
-// :135:27: note: when computing vector element at index '0'
-// :135:30: error: use of undefined value here causes illegal behavior
-// :135:30: error: use of undefined value here causes illegal behavior
-// :135:30: note: when computing vector element at index '0'
-// :135:30: error: use of undefined value here causes illegal behavior
-// :135:30: note: when computing vector element at index '0'
-// :135:30: error: use of undefined value here causes illegal behavior
-// :135:30: note: when computing vector element at index '1'
-// :135:30: error: use of undefined value here causes illegal behavior
-// :135:30: note: when computing vector element at index '0'
-// :135:30: error: use of undefined value here causes illegal behavior
-// :135:30: note: when computing vector element at index '0'
-// :135:30: error: use of undefined value here causes illegal behavior
-// :135:30: error: use of undefined value here causes illegal behavior
-// :135:30: note: when computing vector element at index '0'
-// :135:30: error: use of undefined value here causes illegal behavior
-// :135:30: note: when computing vector element at index '0'
-// :135:30: error: use of undefined value here causes illegal behavior
-// :135:30: note: when computing vector element at index '1'
-// :135:30: error: use of undefined value here causes illegal behavior
-// :135:30: note: when computing vector element at index '0'
-// :135:30: error: use of undefined value here causes illegal behavior
-// :135:30: note: when computing vector element at index '0'
-// :135:30: error: use of undefined value here causes illegal behavior
-// :135:30: error: use of undefined value here causes illegal behavior
-// :135:30: note: when computing vector element at index '0'
-// :135:30: error: use of undefined value here causes illegal behavior
-// :135:30: note: when computing vector element at index '0'
-// :135:30: error: use of undefined value here causes illegal behavior
-// :135:30: note: when computing vector element at index '1'
-// :135:30: error: use of undefined value here causes illegal behavior
-// :135:30: note: when computing vector element at index '0'
-// :135:30: error: use of undefined value here causes illegal behavior
-// :135:30: note: when computing vector element at index '0'
-// :135:30: error: use of undefined value here causes illegal behavior
-// :135:30: error: use of undefined value here causes illegal behavior
-// :135:30: note: when computing vector element at index '0'
-// :135:30: error: use of undefined value here causes illegal behavior
-// :135:30: note: when computing vector element at index '0'
-// :135:30: error: use of undefined value here causes illegal behavior
-// :135:30: note: when computing vector element at index '1'
-// :135:30: error: use of undefined value here causes illegal behavior
-// :135:30: note: when computing vector element at index '0'
-// :135:30: error: use of undefined value here causes illegal behavior
-// :135:30: note: when computing vector element at index '0'
-// :135:30: error: use of undefined value here causes illegal behavior
-// :135:30: error: use of undefined value here causes illegal behavior
-// :135:30: note: when computing vector element at index '0'
-// :135:30: error: use of undefined value here causes illegal behavior
-// :135:30: note: when computing vector element at index '0'
-// :135:30: error: use of undefined value here causes illegal behavior
-// :135:30: note: when computing vector element at index '1'
-// :135:30: error: use of undefined value here causes illegal behavior
-// :135:30: note: when computing vector element at index '0'
-// :135:30: error: use of undefined value here causes illegal behavior
-// :135:30: note: when computing vector element at index '0'
-// :135:30: error: use of undefined value here causes illegal behavior
-// :135:30: error: use of undefined value here causes illegal behavior
-// :135:30: note: when computing vector element at index '0'
-// :135:30: error: use of undefined value here causes illegal behavior
-// :135:30: note: when computing vector element at index '0'
-// :135:30: error: use of undefined value here causes illegal behavior
-// :135:30: note: when computing vector element at index '1'
-// :135:30: error: use of undefined value here causes illegal behavior
-// :135:30: note: when computing vector element at index '0'
-// :135:30: error: use of undefined value here causes illegal behavior
-// :135:30: note: when computing vector element at index '0'
-// :135:30: error: use of undefined value here causes illegal behavior
-// :135:30: error: use of undefined value here causes illegal behavior
-// :135:30: note: when computing vector element at index '0'
-// :135:30: error: use of undefined value here causes illegal behavior
-// :135:30: note: when computing vector element at index '0'
-// :135:30: error: use of undefined value here causes illegal behavior
-// :135:30: note: when computing vector element at index '1'
-// :135:30: error: use of undefined value here causes illegal behavior
-// :135:30: note: when computing vector element at index '0'
-// :135:30: error: use of undefined value here causes illegal behavior
-// :135:30: note: when computing vector element at index '0'
-// :135:30: error: use of undefined value here causes illegal behavior
-// :135:30: error: use of undefined value here causes illegal behavior
-// :135:30: note: when computing vector element at index '0'
-// :135:30: error: use of undefined value here causes illegal behavior
-// :135:30: note: when computing vector element at index '0'
-// :135:30: error: use of undefined value here causes illegal behavior
-// :135:30: note: when computing vector element at index '1'
-// :135:30: error: use of undefined value here causes illegal behavior
-// :135:30: note: when computing vector element at index '0'
-// :135:30: error: use of undefined value here causes illegal behavior
-// :135:30: note: when computing vector element at index '0'
-// :135:30: error: use of undefined value here causes illegal behavior
-// :135:30: error: use of undefined value here causes illegal behavior
-// :135:30: note: when computing vector element at index '0'
-// :135:30: error: use of undefined value here causes illegal behavior
-// :135:30: note: when computing vector element at index '0'
-// :135:30: error: use of undefined value here causes illegal behavior
-// :135:30: note: when computing vector element at index '1'
-// :135:30: error: use of undefined value here causes illegal behavior
-// :135:30: note: when computing vector element at index '0'
-// :135:30: error: use of undefined value here causes illegal behavior
-// :135:30: note: when computing vector element at index '0'
-// :135:30: error: use of undefined value here causes illegal behavior
-// :135:30: error: use of undefined value here causes illegal behavior
-// :135:30: note: when computing vector element at index '0'
-// :135:30: error: use of undefined value here causes illegal behavior
-// :135:30: note: when computing vector element at index '0'
-// :135:30: error: use of undefined value here causes illegal behavior
-// :135:30: note: when computing vector element at index '1'
-// :135:30: error: use of undefined value here causes illegal behavior
-// :135:30: note: when computing vector element at index '0'
-// :135:30: error: use of undefined value here causes illegal behavior
-// :135:30: note: when computing vector element at index '0'
-// :135:30: error: use of undefined value here causes illegal behavior
-// :135:30: error: use of undefined value here causes illegal behavior
-// :135:30: note: when computing vector element at index '0'
-// :135:30: error: use of undefined value here causes illegal behavior
-// :135:30: note: when computing vector element at index '0'
-// :135:30: error: use of undefined value here causes illegal behavior
-// :135:30: note: when computing vector element at index '1'
-// :135:30: error: use of undefined value here causes illegal behavior
-// :135:30: note: when computing vector element at index '0'
-// :135:30: error: use of undefined value here causes illegal behavior
-// :135:30: note: when computing vector element at index '0'
-// :139:27: error: use of undefined value here causes illegal behavior
-// :139:27: error: use of undefined value here causes illegal behavior
-// :139:27: note: when computing vector element at index '0'
-// :139:27: error: use of undefined value here causes illegal behavior
-// :139:27: note: when computing vector element at index '0'
-// :139:27: error: use of undefined value here causes illegal behavior
-// :139:27: note: when computing vector element at index '0'
-// :139:27: error: use of undefined value here causes illegal behavior
-// :139:27: note: when computing vector element at index '1'
-// :139:27: error: use of undefined value here causes illegal behavior
-// :139:27: note: when computing vector element at index '0'
-// :139:27: error: use of undefined value here causes illegal behavior
-// :139:27: note: when computing vector element at index '0'
-// :139:27: error: use of undefined value here causes illegal behavior
-// :139:27: note: when computing vector element at index '0'
-// :139:27: error: use of undefined value here causes illegal behavior
-// :139:27: error: use of undefined value here causes illegal behavior
-// :139:27: note: when computing vector element at index '0'
-// :139:27: error: use of undefined value here causes illegal behavior
-// :139:27: note: when computing vector element at index '0'
-// :139:27: error: use of undefined value here causes illegal behavior
-// :139:27: note: when computing vector element at index '0'
-// :139:27: error: use of undefined value here causes illegal behavior
-// :139:27: note: when computing vector element at index '1'
-// :139:27: error: use of undefined value here causes illegal behavior
-// :139:27: note: when computing vector element at index '0'
-// :139:27: error: use of undefined value here causes illegal behavior
-// :139:27: note: when computing vector element at index '0'
-// :139:27: error: use of undefined value here causes illegal behavior
-// :139:27: note: when computing vector element at index '0'
-// :139:27: error: use of undefined value here causes illegal behavior
-// :139:27: error: use of undefined value here causes illegal behavior
-// :139:27: note: when computing vector element at index '0'
-// :139:27: error: use of undefined value here causes illegal behavior
-// :139:27: note: when computing vector element at index '0'
-// :139:27: error: use of undefined value here causes illegal behavior
-// :139:27: note: when computing vector element at index '0'
-// :139:27: error: use of undefined value here causes illegal behavior
-// :139:27: note: when computing vector element at index '1'
-// :139:27: error: use of undefined value here causes illegal behavior
-// :139:27: note: when computing vector element at index '0'
-// :139:27: error: use of undefined value here causes illegal behavior
-// :139:27: note: when computing vector element at index '0'
-// :139:27: error: use of undefined value here causes illegal behavior
-// :139:27: note: when computing vector element at index '0'
-// :139:27: error: use of undefined value here causes illegal behavior
-// :139:27: error: use of undefined value here causes illegal behavior
-// :139:27: note: when computing vector element at index '0'
-// :139:27: error: use of undefined value here causes illegal behavior
-// :139:27: note: when computing vector element at index '0'
-// :139:27: error: use of undefined value here causes illegal behavior
-// :139:27: note: when computing vector element at index '0'
-// :139:27: error: use of undefined value here causes illegal behavior
-// :139:27: note: when computing vector element at index '1'
-// :139:27: error: use of undefined value here causes illegal behavior
-// :139:27: note: when computing vector element at index '0'
-// :139:27: error: use of undefined value here causes illegal behavior
-// :139:27: note: when computing vector element at index '0'
-// :139:27: error: use of undefined value here causes illegal behavior
-// :139:27: note: when computing vector element at index '0'
-// :139:27: error: use of undefined value here causes illegal behavior
-// :139:27: error: use of undefined value here causes illegal behavior
-// :139:27: note: when computing vector element at index '0'
-// :139:27: error: use of undefined value here causes illegal behavior
-// :139:27: note: when computing vector element at index '0'
-// :139:27: error: use of undefined value here causes illegal behavior
-// :139:27: note: when computing vector element at index '0'
-// :139:27: error: use of undefined value here causes illegal behavior
-// :139:27: note: when computing vector element at index '1'
-// :139:27: error: use of undefined value here causes illegal behavior
-// :139:27: note: when computing vector element at index '0'
-// :139:27: error: use of undefined value here causes illegal behavior
-// :139:27: note: when computing vector element at index '0'
-// :139:27: error: use of undefined value here causes illegal behavior
-// :139:27: note: when computing vector element at index '0'
-// :139:27: error: use of undefined value here causes illegal behavior
-// :139:27: error: use of undefined value here causes illegal behavior
-// :139:27: note: when computing vector element at index '0'
-// :139:27: error: use of undefined value here causes illegal behavior
-// :139:27: note: when computing vector element at index '0'
-// :139:27: error: use of undefined value here causes illegal behavior
-// :139:27: note: when computing vector element at index '0'
-// :139:27: error: use of undefined value here causes illegal behavior
-// :139:27: note: when computing vector element at index '1'
-// :139:27: error: use of undefined value here causes illegal behavior
-// :139:27: note: when computing vector element at index '0'
-// :139:27: error: use of undefined value here causes illegal behavior
-// :139:27: note: when computing vector element at index '0'
-// :139:27: error: use of undefined value here causes illegal behavior
-// :139:27: note: when computing vector element at index '0'
-// :139:27: error: use of undefined value here causes illegal behavior
-// :139:27: error: use of undefined value here causes illegal behavior
-// :139:27: note: when computing vector element at index '0'
-// :139:27: error: use of undefined value here causes illegal behavior
-// :139:27: note: when computing vector element at index '0'
-// :139:27: error: use of undefined value here causes illegal behavior
-// :139:27: note: when computing vector element at index '0'
-// :139:27: error: use of undefined value here causes illegal behavior
-// :139:27: note: when computing vector element at index '1'
-// :139:27: error: use of undefined value here causes illegal behavior
-// :139:27: note: when computing vector element at index '0'
-// :139:27: error: use of undefined value here causes illegal behavior
-// :139:27: note: when computing vector element at index '0'
-// :139:27: error: use of undefined value here causes illegal behavior
-// :139:27: note: when computing vector element at index '0'
-// :139:27: error: use of undefined value here causes illegal behavior
-// :139:27: error: use of undefined value here causes illegal behavior
-// :139:27: note: when computing vector element at index '0'
-// :139:27: error: use of undefined value here causes illegal behavior
-// :139:27: note: when computing vector element at index '0'
-// :139:27: error: use of undefined value here causes illegal behavior
-// :139:27: note: when computing vector element at index '0'
-// :139:27: error: use of undefined value here causes illegal behavior
-// :139:27: note: when computing vector element at index '1'
-// :139:27: error: use of undefined value here causes illegal behavior
-// :139:27: note: when computing vector element at index '0'
-// :139:27: error: use of undefined value here causes illegal behavior
-// :139:27: note: when computing vector element at index '0'
-// :139:27: error: use of undefined value here causes illegal behavior
-// :139:27: note: when computing vector element at index '0'
-// :139:27: error: use of undefined value here causes illegal behavior
-// :139:27: error: use of undefined value here causes illegal behavior
-// :139:27: note: when computing vector element at index '0'
-// :139:27: error: use of undefined value here causes illegal behavior
-// :139:27: note: when computing vector element at index '0'
-// :139:27: error: use of undefined value here causes illegal behavior
-// :139:27: note: when computing vector element at index '0'
-// :139:27: error: use of undefined value here causes illegal behavior
-// :139:27: note: when computing vector element at index '1'
-// :139:27: error: use of undefined value here causes illegal behavior
-// :139:27: note: when computing vector element at index '0'
-// :139:27: error: use of undefined value here causes illegal behavior
-// :139:27: note: when computing vector element at index '0'
-// :139:27: error: use of undefined value here causes illegal behavior
-// :139:27: note: when computing vector element at index '0'
-// :139:27: error: use of undefined value here causes illegal behavior
-// :139:27: error: use of undefined value here causes illegal behavior
-// :139:27: note: when computing vector element at index '0'
-// :139:27: error: use of undefined value here causes illegal behavior
-// :139:27: note: when computing vector element at index '0'
-// :139:27: error: use of undefined value here causes illegal behavior
-// :139:27: note: when computing vector element at index '0'
-// :139:27: error: use of undefined value here causes illegal behavior
-// :139:27: note: when computing vector element at index '1'
-// :139:27: error: use of undefined value here causes illegal behavior
-// :139:27: note: when computing vector element at index '0'
-// :139:27: error: use of undefined value here causes illegal behavior
-// :139:27: note: when computing vector element at index '0'
-// :139:27: error: use of undefined value here causes illegal behavior
-// :139:27: note: when computing vector element at index '0'
-// :139:27: error: use of undefined value here causes illegal behavior
-// :139:27: error: use of undefined value here causes illegal behavior
-// :139:27: note: when computing vector element at index '0'
-// :139:27: error: use of undefined value here causes illegal behavior
-// :139:27: note: when computing vector element at index '0'
-// :139:27: error: use of undefined value here causes illegal behavior
-// :139:27: note: when computing vector element at index '0'
-// :139:27: error: use of undefined value here causes illegal behavior
-// :139:27: note: when computing vector element at index '1'
-// :139:27: error: use of undefined value here causes illegal behavior
-// :139:27: note: when computing vector element at index '0'
-// :139:27: error: use of undefined value here causes illegal behavior
-// :139:27: note: when computing vector element at index '0'
-// :139:27: error: use of undefined value here causes illegal behavior
-// :139:27: note: when computing vector element at index '0'
-// :139:30: error: use of undefined value here causes illegal behavior
-// :139:30: error: use of undefined value here causes illegal behavior
-// :139:30: note: when computing vector element at index '0'
-// :139:30: error: use of undefined value here causes illegal behavior
-// :139:30: note: when computing vector element at index '0'
-// :139:30: error: use of undefined value here causes illegal behavior
-// :139:30: note: when computing vector element at index '1'
-// :139:30: error: use of undefined value here causes illegal behavior
-// :139:30: note: when computing vector element at index '0'
-// :139:30: error: use of undefined value here causes illegal behavior
-// :139:30: note: when computing vector element at index '0'
-// :139:30: error: use of undefined value here causes illegal behavior
-// :139:30: error: use of undefined value here causes illegal behavior
-// :139:30: note: when computing vector element at index '0'
-// :139:30: error: use of undefined value here causes illegal behavior
-// :139:30: note: when computing vector element at index '0'
-// :139:30: error: use of undefined value here causes illegal behavior
-// :139:30: note: when computing vector element at index '1'
-// :139:30: error: use of undefined value here causes illegal behavior
-// :139:30: note: when computing vector element at index '0'
-// :139:30: error: use of undefined value here causes illegal behavior
-// :139:30: note: when computing vector element at index '0'
-// :139:30: error: use of undefined value here causes illegal behavior
-// :139:30: error: use of undefined value here causes illegal behavior
-// :139:30: note: when computing vector element at index '0'
-// :139:30: error: use of undefined value here causes illegal behavior
-// :139:30: note: when computing vector element at index '0'
-// :139:30: error: use of undefined value here causes illegal behavior
-// :139:30: note: when computing vector element at index '1'
-// :139:30: error: use of undefined value here causes illegal behavior
-// :139:30: note: when computing vector element at index '0'
-// :139:30: error: use of undefined value here causes illegal behavior
-// :139:30: note: when computing vector element at index '0'
-// :139:30: error: use of undefined value here causes illegal behavior
-// :139:30: error: use of undefined value here causes illegal behavior
-// :139:30: note: when computing vector element at index '0'
-// :139:30: error: use of undefined value here causes illegal behavior
-// :139:30: note: when computing vector element at index '0'
-// :139:30: error: use of undefined value here causes illegal behavior
-// :139:30: note: when computing vector element at index '1'
-// :139:30: error: use of undefined value here causes illegal behavior
-// :139:30: note: when computing vector element at index '0'
-// :139:30: error: use of undefined value here causes illegal behavior
-// :139:30: note: when computing vector element at index '0'
-// :139:30: error: use of undefined value here causes illegal behavior
-// :139:30: error: use of undefined value here causes illegal behavior
-// :139:30: note: when computing vector element at index '0'
-// :139:30: error: use of undefined value here causes illegal behavior
-// :139:30: note: when computing vector element at index '0'
-// :139:30: error: use of undefined value here causes illegal behavior
-// :139:30: note: when computing vector element at index '1'
-// :139:30: error: use of undefined value here causes illegal behavior
-// :139:30: note: when computing vector element at index '0'
-// :139:30: error: use of undefined value here causes illegal behavior
-// :139:30: note: when computing vector element at index '0'
-// :139:30: error: use of undefined value here causes illegal behavior
-// :139:30: error: use of undefined value here causes illegal behavior
-// :139:30: note: when computing vector element at index '0'
-// :139:30: error: use of undefined value here causes illegal behavior
-// :139:30: note: when computing vector element at index '0'
-// :139:30: error: use of undefined value here causes illegal behavior
-// :139:30: note: when computing vector element at index '1'
-// :139:30: error: use of undefined value here causes illegal behavior
-// :139:30: note: when computing vector element at index '0'
-// :139:30: error: use of undefined value here causes illegal behavior
-// :139:30: note: when computing vector element at index '0'
-// :139:30: error: use of undefined value here causes illegal behavior
-// :139:30: error: use of undefined value here causes illegal behavior
-// :139:30: note: when computing vector element at index '0'
-// :139:30: error: use of undefined value here causes illegal behavior
-// :139:30: note: when computing vector element at index '0'
-// :139:30: error: use of undefined value here causes illegal behavior
-// :139:30: note: when computing vector element at index '1'
-// :139:30: error: use of undefined value here causes illegal behavior
-// :139:30: note: when computing vector element at index '0'
-// :139:30: error: use of undefined value here causes illegal behavior
-// :139:30: note: when computing vector element at index '0'
-// :139:30: error: use of undefined value here causes illegal behavior
-// :139:30: error: use of undefined value here causes illegal behavior
-// :139:30: note: when computing vector element at index '0'
-// :139:30: error: use of undefined value here causes illegal behavior
-// :139:30: note: when computing vector element at index '0'
-// :139:30: error: use of undefined value here causes illegal behavior
-// :139:30: note: when computing vector element at index '1'
-// :139:30: error: use of undefined value here causes illegal behavior
-// :139:30: note: when computing vector element at index '0'
-// :139:30: error: use of undefined value here causes illegal behavior
-// :139:30: note: when computing vector element at index '0'
-// :139:30: error: use of undefined value here causes illegal behavior
-// :139:30: error: use of undefined value here causes illegal behavior
-// :139:30: note: when computing vector element at index '0'
-// :139:30: error: use of undefined value here causes illegal behavior
-// :139:30: note: when computing vector element at index '0'
-// :139:30: error: use of undefined value here causes illegal behavior
-// :139:30: note: when computing vector element at index '1'
-// :139:30: error: use of undefined value here causes illegal behavior
-// :139:30: note: when computing vector element at index '0'
-// :139:30: error: use of undefined value here causes illegal behavior
-// :139:30: note: when computing vector element at index '0'
-// :139:30: error: use of undefined value here causes illegal behavior
-// :139:30: error: use of undefined value here causes illegal behavior
-// :139:30: note: when computing vector element at index '0'
-// :139:30: error: use of undefined value here causes illegal behavior
-// :139:30: note: when computing vector element at index '0'
-// :139:30: error: use of undefined value here causes illegal behavior
-// :139:30: note: when computing vector element at index '1'
-// :139:30: error: use of undefined value here causes illegal behavior
-// :139:30: note: when computing vector element at index '0'
-// :139:30: error: use of undefined value here causes illegal behavior
-// :139:30: note: when computing vector element at index '0'
-// :139:30: error: use of undefined value here causes illegal behavior
-// :139:30: error: use of undefined value here causes illegal behavior
-// :139:30: note: when computing vector element at index '0'
-// :139:30: error: use of undefined value here causes illegal behavior
-// :139:30: note: when computing vector element at index '0'
-// :139:30: error: use of undefined value here causes illegal behavior
-// :139:30: note: when computing vector element at index '1'
-// :139:30: error: use of undefined value here causes illegal behavior
-// :139:30: note: when computing vector element at index '0'
-// :139:30: error: use of undefined value here causes illegal behavior
-// :139:30: note: when computing vector element at index '0'
-// :143:17: error: use of undefined value here causes illegal behavior
-// :143:17: error: use of undefined value here causes illegal behavior
-// :143:17: note: when computing vector element at index '0'
-// :143:17: error: use of undefined value here causes illegal behavior
-// :143:17: note: when computing vector element at index '0'
-// :143:17: error: use of undefined value here causes illegal behavior
-// :143:17: note: when computing vector element at index '0'
-// :143:17: error: use of undefined value here causes illegal behavior
-// :143:17: note: when computing vector element at index '1'
-// :143:17: error: use of undefined value here causes illegal behavior
-// :143:17: note: when computing vector element at index '0'
-// :143:17: error: use of undefined value here causes illegal behavior
-// :143:17: note: when computing vector element at index '0'
-// :143:17: error: use of undefined value here causes illegal behavior
-// :143:17: note: when computing vector element at index '0'
-// :143:17: error: use of undefined value here causes illegal behavior
-// :143:17: error: use of undefined value here causes illegal behavior
-// :143:17: note: when computing vector element at index '0'
-// :143:17: error: use of undefined value here causes illegal behavior
-// :143:17: note: when computing vector element at index '0'
-// :143:17: error: use of undefined value here causes illegal behavior
-// :143:17: note: when computing vector element at index '0'
-// :143:17: error: use of undefined value here causes illegal behavior
-// :143:17: note: when computing vector element at index '1'
-// :143:17: error: use of undefined value here causes illegal behavior
-// :143:17: note: when computing vector element at index '0'
-// :143:17: error: use of undefined value here causes illegal behavior
-// :143:17: note: when computing vector element at index '0'
-// :143:17: error: use of undefined value here causes illegal behavior
-// :143:17: note: when computing vector element at index '0'
-// :143:17: error: use of undefined value here causes illegal behavior
-// :143:17: error: use of undefined value here causes illegal behavior
-// :143:17: note: when computing vector element at index '0'
-// :143:17: error: use of undefined value here causes illegal behavior
-// :143:17: note: when computing vector element at index '0'
-// :143:17: error: use of undefined value here causes illegal behavior
-// :143:17: note: when computing vector element at index '0'
-// :143:17: error: use of undefined value here causes illegal behavior
-// :143:17: note: when computing vector element at index '1'
-// :143:17: error: use of undefined value here causes illegal behavior
-// :143:17: note: when computing vector element at index '0'
-// :143:17: error: use of undefined value here causes illegal behavior
-// :143:17: note: when computing vector element at index '0'
-// :143:17: error: use of undefined value here causes illegal behavior
-// :143:17: note: when computing vector element at index '0'
-// :143:17: error: use of undefined value here causes illegal behavior
-// :143:17: error: use of undefined value here causes illegal behavior
-// :143:17: note: when computing vector element at index '0'
-// :143:17: error: use of undefined value here causes illegal behavior
-// :143:17: note: when computing vector element at index '0'
-// :143:17: error: use of undefined value here causes illegal behavior
-// :143:17: note: when computing vector element at index '0'
-// :143:17: error: use of undefined value here causes illegal behavior
-// :143:17: note: when computing vector element at index '1'
-// :143:17: error: use of undefined value here causes illegal behavior
-// :143:17: note: when computing vector element at index '0'
-// :143:17: error: use of undefined value here causes illegal behavior
-// :143:17: note: when computing vector element at index '0'
-// :143:17: error: use of undefined value here causes illegal behavior
-// :143:17: note: when computing vector element at index '0'
-// :143:17: error: use of undefined value here causes illegal behavior
-// :143:17: error: use of undefined value here causes illegal behavior
-// :143:17: note: when computing vector element at index '0'
-// :143:17: error: use of undefined value here causes illegal behavior
-// :143:17: note: when computing vector element at index '0'
-// :143:17: error: use of undefined value here causes illegal behavior
-// :143:17: note: when computing vector element at index '0'
-// :143:17: error: use of undefined value here causes illegal behavior
-// :143:17: note: when computing vector element at index '1'
-// :143:17: error: use of undefined value here causes illegal behavior
-// :143:17: note: when computing vector element at index '0'
-// :143:17: error: use of undefined value here causes illegal behavior
-// :143:17: note: when computing vector element at index '0'
-// :143:17: error: use of undefined value here causes illegal behavior
-// :143:17: note: when computing vector element at index '0'
-// :143:17: error: use of undefined value here causes illegal behavior
-// :143:17: error: use of undefined value here causes illegal behavior
-// :143:17: note: when computing vector element at index '0'
-// :143:17: error: use of undefined value here causes illegal behavior
-// :143:17: note: when computing vector element at index '0'
-// :143:17: error: use of undefined value here causes illegal behavior
-// :143:17: note: when computing vector element at index '0'
-// :143:17: error: use of undefined value here causes illegal behavior
-// :143:17: note: when computing vector element at index '1'
-// :143:17: error: use of undefined value here causes illegal behavior
-// :143:17: note: when computing vector element at index '0'
-// :143:17: error: use of undefined value here causes illegal behavior
-// :143:17: note: when computing vector element at index '0'
-// :143:17: error: use of undefined value here causes illegal behavior
-// :143:17: note: when computing vector element at index '0'
-// :143:17: error: use of undefined value here causes illegal behavior
-// :143:17: error: use of undefined value here causes illegal behavior
-// :143:17: note: when computing vector element at index '0'
-// :143:17: error: use of undefined value here causes illegal behavior
-// :143:17: note: when computing vector element at index '0'
-// :143:17: error: use of undefined value here causes illegal behavior
-// :143:17: note: when computing vector element at index '0'
-// :143:17: error: use of undefined value here causes illegal behavior
-// :143:17: note: when computing vector element at index '1'
-// :143:17: error: use of undefined value here causes illegal behavior
-// :143:17: note: when computing vector element at index '0'
-// :143:17: error: use of undefined value here causes illegal behavior
-// :143:17: note: when computing vector element at index '0'
-// :143:17: error: use of undefined value here causes illegal behavior
-// :143:17: note: when computing vector element at index '0'
-// :143:17: error: use of undefined value here causes illegal behavior
-// :143:17: error: use of undefined value here causes illegal behavior
-// :143:17: note: when computing vector element at index '0'
-// :143:17: error: use of undefined value here causes illegal behavior
-// :143:17: note: when computing vector element at index '0'
-// :143:17: error: use of undefined value here causes illegal behavior
-// :143:17: note: when computing vector element at index '0'
-// :143:17: error: use of undefined value here causes illegal behavior
-// :143:17: note: when computing vector element at index '1'
-// :143:17: error: use of undefined value here causes illegal behavior
-// :143:17: note: when computing vector element at index '0'
-// :143:17: error: use of undefined value here causes illegal behavior
-// :143:17: note: when computing vector element at index '0'
-// :143:17: error: use of undefined value here causes illegal behavior
-// :143:17: note: when computing vector element at index '0'
-// :143:17: error: use of undefined value here causes illegal behavior
-// :143:17: error: use of undefined value here causes illegal behavior
-// :143:17: note: when computing vector element at index '0'
-// :143:17: error: use of undefined value here causes illegal behavior
-// :143:17: note: when computing vector element at index '0'
-// :143:17: error: use of undefined value here causes illegal behavior
-// :143:17: note: when computing vector element at index '0'
-// :143:17: error: use of undefined value here causes illegal behavior
-// :143:17: note: when computing vector element at index '1'
-// :143:17: error: use of undefined value here causes illegal behavior
-// :143:17: note: when computing vector element at index '0'
-// :143:17: error: use of undefined value here causes illegal behavior
-// :143:17: note: when computing vector element at index '0'
-// :143:17: error: use of undefined value here causes illegal behavior
-// :143:17: note: when computing vector element at index '0'
-// :143:17: error: use of undefined value here causes illegal behavior
-// :143:17: error: use of undefined value here causes illegal behavior
-// :143:17: note: when computing vector element at index '0'
-// :143:17: error: use of undefined value here causes illegal behavior
-// :143:17: note: when computing vector element at index '0'
-// :143:17: error: use of undefined value here causes illegal behavior
-// :143:17: note: when computing vector element at index '0'
-// :143:17: error: use of undefined value here causes illegal behavior
-// :143:17: note: when computing vector element at index '1'
-// :143:17: error: use of undefined value here causes illegal behavior
-// :143:17: note: when computing vector element at index '0'
-// :143:17: error: use of undefined value here causes illegal behavior
-// :143:17: note: when computing vector element at index '0'
-// :143:17: error: use of undefined value here causes illegal behavior
-// :143:17: note: when computing vector element at index '0'
-// :143:17: error: use of undefined value here causes illegal behavior
-// :143:17: error: use of undefined value here causes illegal behavior
-// :143:17: note: when computing vector element at index '0'
-// :143:17: error: use of undefined value here causes illegal behavior
-// :143:17: note: when computing vector element at index '0'
-// :143:17: error: use of undefined value here causes illegal behavior
-// :143:17: note: when computing vector element at index '0'
-// :143:17: error: use of undefined value here causes illegal behavior
-// :143:17: note: when computing vector element at index '1'
-// :143:17: error: use of undefined value here causes illegal behavior
-// :143:17: note: when computing vector element at index '0'
-// :143:17: error: use of undefined value here causes illegal behavior
-// :143:17: note: when computing vector element at index '0'
-// :143:17: error: use of undefined value here causes illegal behavior
-// :143:17: note: when computing vector element at index '0'
-// :143:21: error: use of undefined value here causes illegal behavior
-// :143:21: error: use of undefined value here causes illegal behavior
-// :143:21: note: when computing vector element at index '0'
-// :143:21: error: use of undefined value here causes illegal behavior
-// :143:21: note: when computing vector element at index '0'
-// :143:21: error: use of undefined value here causes illegal behavior
-// :143:21: note: when computing vector element at index '1'
-// :143:21: error: use of undefined value here causes illegal behavior
-// :143:21: note: when computing vector element at index '0'
-// :143:21: error: use of undefined value here causes illegal behavior
-// :143:21: note: when computing vector element at index '0'
-// :143:21: error: use of undefined value here causes illegal behavior
-// :143:21: error: use of undefined value here causes illegal behavior
-// :143:21: note: when computing vector element at index '0'
-// :143:21: error: use of undefined value here causes illegal behavior
-// :143:21: note: when computing vector element at index '0'
-// :143:21: error: use of undefined value here causes illegal behavior
-// :143:21: note: when computing vector element at index '1'
-// :143:21: error: use of undefined value here causes illegal behavior
-// :143:21: note: when computing vector element at index '0'
-// :143:21: error: use of undefined value here causes illegal behavior
-// :143:21: note: when computing vector element at index '0'
-// :143:21: error: use of undefined value here causes illegal behavior
-// :143:21: error: use of undefined value here causes illegal behavior
-// :143:21: note: when computing vector element at index '0'
-// :143:21: error: use of undefined value here causes illegal behavior
-// :143:21: note: when computing vector element at index '0'
-// :143:21: error: use of undefined value here causes illegal behavior
-// :143:21: note: when computing vector element at index '1'
-// :143:21: error: use of undefined value here causes illegal behavior
-// :143:21: note: when computing vector element at index '0'
-// :143:21: error: use of undefined value here causes illegal behavior
-// :143:21: note: when computing vector element at index '0'
-// :143:21: error: use of undefined value here causes illegal behavior
-// :143:21: error: use of undefined value here causes illegal behavior
-// :143:21: note: when computing vector element at index '0'
-// :143:21: error: use of undefined value here causes illegal behavior
-// :143:21: note: when computing vector element at index '0'
-// :143:21: error: use of undefined value here causes illegal behavior
-// :143:21: note: when computing vector element at index '1'
-// :143:21: error: use of undefined value here causes illegal behavior
-// :143:21: note: when computing vector element at index '0'
-// :143:21: error: use of undefined value here causes illegal behavior
-// :143:21: note: when computing vector element at index '0'
-// :143:21: error: use of undefined value here causes illegal behavior
-// :143:21: error: use of undefined value here causes illegal behavior
-// :143:21: note: when computing vector element at index '0'
-// :143:21: error: use of undefined value here causes illegal behavior
-// :143:21: note: when computing vector element at index '0'
-// :143:21: error: use of undefined value here causes illegal behavior
-// :143:21: note: when computing vector element at index '1'
-// :143:21: error: use of undefined value here causes illegal behavior
-// :143:21: note: when computing vector element at index '0'
-// :143:21: error: use of undefined value here causes illegal behavior
-// :143:21: note: when computing vector element at index '0'
-// :143:21: error: use of undefined value here causes illegal behavior
-// :143:21: error: use of undefined value here causes illegal behavior
-// :143:21: note: when computing vector element at index '0'
-// :143:21: error: use of undefined value here causes illegal behavior
-// :143:21: note: when computing vector element at index '0'
-// :143:21: error: use of undefined value here causes illegal behavior
-// :143:21: note: when computing vector element at index '1'
-// :143:21: error: use of undefined value here causes illegal behavior
-// :143:21: note: when computing vector element at index '0'
-// :143:21: error: use of undefined value here causes illegal behavior
-// :143:21: note: when computing vector element at index '0'
-// :143:21: error: use of undefined value here causes illegal behavior
-// :143:21: error: use of undefined value here causes illegal behavior
-// :143:21: note: when computing vector element at index '0'
-// :143:21: error: use of undefined value here causes illegal behavior
-// :143:21: note: when computing vector element at index '0'
-// :143:21: error: use of undefined value here causes illegal behavior
-// :143:21: note: when computing vector element at index '1'
-// :143:21: error: use of undefined value here causes illegal behavior
-// :143:21: note: when computing vector element at index '0'
-// :143:21: error: use of undefined value here causes illegal behavior
-// :143:21: note: when computing vector element at index '0'
-// :143:21: error: use of undefined value here causes illegal behavior
-// :143:21: error: use of undefined value here causes illegal behavior
-// :143:21: note: when computing vector element at index '0'
-// :143:21: error: use of undefined value here causes illegal behavior
-// :143:21: note: when computing vector element at index '0'
-// :143:21: error: use of undefined value here causes illegal behavior
-// :143:21: note: when computing vector element at index '1'
-// :143:21: error: use of undefined value here causes illegal behavior
-// :143:21: note: when computing vector element at index '0'
-// :143:21: error: use of undefined value here causes illegal behavior
-// :143:21: note: when computing vector element at index '0'
-// :143:21: error: use of undefined value here causes illegal behavior
-// :143:21: error: use of undefined value here causes illegal behavior
-// :143:21: note: when computing vector element at index '0'
-// :143:21: error: use of undefined value here causes illegal behavior
-// :143:21: note: when computing vector element at index '0'
-// :143:21: error: use of undefined value here causes illegal behavior
-// :143:21: note: when computing vector element at index '1'
-// :143:21: error: use of undefined value here causes illegal behavior
-// :143:21: note: when computing vector element at index '0'
-// :143:21: error: use of undefined value here causes illegal behavior
-// :143:21: note: when computing vector element at index '0'
-// :143:21: error: use of undefined value here causes illegal behavior
-// :143:21: error: use of undefined value here causes illegal behavior
-// :143:21: note: when computing vector element at index '0'
-// :143:21: error: use of undefined value here causes illegal behavior
-// :143:21: note: when computing vector element at index '0'
-// :143:21: error: use of undefined value here causes illegal behavior
-// :143:21: note: when computing vector element at index '1'
-// :143:21: error: use of undefined value here causes illegal behavior
-// :143:21: note: when computing vector element at index '0'
-// :143:21: error: use of undefined value here causes illegal behavior
-// :143:21: note: when computing vector element at index '0'
-// :143:21: error: use of undefined value here causes illegal behavior
-// :143:21: error: use of undefined value here causes illegal behavior
-// :143:21: note: when computing vector element at index '0'
-// :143:21: error: use of undefined value here causes illegal behavior
-// :143:21: note: when computing vector element at index '0'
-// :143:21: error: use of undefined value here causes illegal behavior
-// :143:21: note: when computing vector element at index '1'
-// :143:21: error: use of undefined value here causes illegal behavior
-// :143:21: note: when computing vector element at index '0'
-// :143:21: error: use of undefined value here causes illegal behavior
-// :143:21: note: when computing vector element at index '0'
-// :147:22: error: use of undefined value here causes illegal behavior
-// :147:22: error: use of undefined value here causes illegal behavior
-// :147:22: note: when computing vector element at index '0'
-// :147:22: error: use of undefined value here causes illegal behavior
-// :147:22: note: when computing vector element at index '0'
-// :147:22: error: use of undefined value here causes illegal behavior
-// :147:22: note: when computing vector element at index '0'
-// :147:22: error: use of undefined value here causes illegal behavior
-// :147:22: note: when computing vector element at index '1'
-// :147:22: error: use of undefined value here causes illegal behavior
-// :147:22: note: when computing vector element at index '0'
-// :147:22: error: use of undefined value here causes illegal behavior
-// :147:22: note: when computing vector element at index '0'
-// :147:22: error: use of undefined value here causes illegal behavior
-// :147:22: note: when computing vector element at index '0'
-// :147:22: error: use of undefined value here causes illegal behavior
-// :147:22: error: use of undefined value here causes illegal behavior
-// :147:22: note: when computing vector element at index '0'
-// :147:22: error: use of undefined value here causes illegal behavior
-// :147:22: note: when computing vector element at index '0'
-// :147:22: error: use of undefined value here causes illegal behavior
-// :147:22: note: when computing vector element at index '0'
-// :147:22: error: use of undefined value here causes illegal behavior
-// :147:22: note: when computing vector element at index '1'
-// :147:22: error: use of undefined value here causes illegal behavior
-// :147:22: note: when computing vector element at index '0'
-// :147:22: error: use of undefined value here causes illegal behavior
-// :147:22: note: when computing vector element at index '0'
-// :147:22: error: use of undefined value here causes illegal behavior
-// :147:22: note: when computing vector element at index '0'
-// :147:22: error: use of undefined value here causes illegal behavior
-// :147:22: error: use of undefined value here causes illegal behavior
-// :147:22: note: when computing vector element at index '0'
-// :147:22: error: use of undefined value here causes illegal behavior
-// :147:22: note: when computing vector element at index '0'
-// :147:22: error: use of undefined value here causes illegal behavior
-// :147:22: note: when computing vector element at index '0'
-// :147:22: error: use of undefined value here causes illegal behavior
-// :147:22: note: when computing vector element at index '1'
-// :147:22: error: use of undefined value here causes illegal behavior
-// :147:22: note: when computing vector element at index '0'
-// :147:22: error: use of undefined value here causes illegal behavior
-// :147:22: note: when computing vector element at index '0'
-// :147:22: error: use of undefined value here causes illegal behavior
-// :147:22: note: when computing vector element at index '0'
-// :147:22: error: use of undefined value here causes illegal behavior
-// :147:22: error: use of undefined value here causes illegal behavior
-// :147:22: note: when computing vector element at index '0'
-// :147:22: error: use of undefined value here causes illegal behavior
-// :147:22: note: when computing vector element at index '0'
-// :147:22: error: use of undefined value here causes illegal behavior
-// :147:22: note: when computing vector element at index '0'
-// :147:22: error: use of undefined value here causes illegal behavior
-// :147:22: note: when computing vector element at index '1'
-// :147:22: error: use of undefined value here causes illegal behavior
-// :147:22: note: when computing vector element at index '0'
-// :147:22: error: use of undefined value here causes illegal behavior
-// :147:22: note: when computing vector element at index '0'
-// :147:22: error: use of undefined value here causes illegal behavior
-// :147:22: note: when computing vector element at index '0'
-// :147:22: error: use of undefined value here causes illegal behavior
-// :147:22: error: use of undefined value here causes illegal behavior
-// :147:22: note: when computing vector element at index '0'
-// :147:22: error: use of undefined value here causes illegal behavior
-// :147:22: note: when computing vector element at index '0'
-// :147:22: error: use of undefined value here causes illegal behavior
-// :147:22: note: when computing vector element at index '0'
-// :147:22: error: use of undefined value here causes illegal behavior
-// :147:22: note: when computing vector element at index '1'
-// :147:22: error: use of undefined value here causes illegal behavior
-// :147:22: note: when computing vector element at index '0'
-// :147:22: error: use of undefined value here causes illegal behavior
-// :147:22: note: when computing vector element at index '0'
-// :147:22: error: use of undefined value here causes illegal behavior
-// :147:22: note: when computing vector element at index '0'
-// :147:22: error: use of undefined value here causes illegal behavior
-// :147:22: error: use of undefined value here causes illegal behavior
-// :147:22: note: when computing vector element at index '0'
-// :147:22: error: use of undefined value here causes illegal behavior
-// :147:22: note: when computing vector element at index '0'
-// :147:22: error: use of undefined value here causes illegal behavior
-// :147:22: note: when computing vector element at index '0'
-// :147:22: error: use of undefined value here causes illegal behavior
-// :147:22: note: when computing vector element at index '1'
-// :147:22: error: use of undefined value here causes illegal behavior
-// :147:22: note: when computing vector element at index '0'
-// :147:22: error: use of undefined value here causes illegal behavior
-// :147:22: note: when computing vector element at index '0'
-// :147:22: error: use of undefined value here causes illegal behavior
-// :147:22: note: when computing vector element at index '0'
-// :147:22: error: use of undefined value here causes illegal behavior
-// :147:22: error: use of undefined value here causes illegal behavior
-// :147:22: note: when computing vector element at index '0'
-// :147:22: error: use of undefined value here causes illegal behavior
-// :147:22: note: when computing vector element at index '0'
-// :147:22: error: use of undefined value here causes illegal behavior
-// :147:22: note: when computing vector element at index '0'
-// :147:22: error: use of undefined value here causes illegal behavior
-// :147:22: note: when computing vector element at index '1'
-// :147:22: error: use of undefined value here causes illegal behavior
-// :147:22: note: when computing vector element at index '0'
-// :147:22: error: use of undefined value here causes illegal behavior
-// :147:22: note: when computing vector element at index '0'
-// :147:22: error: use of undefined value here causes illegal behavior
-// :147:22: note: when computing vector element at index '0'
-// :147:22: error: use of undefined value here causes illegal behavior
-// :147:22: error: use of undefined value here causes illegal behavior
-// :147:22: note: when computing vector element at index '0'
-// :147:22: error: use of undefined value here causes illegal behavior
-// :147:22: note: when computing vector element at index '0'
-// :147:22: error: use of undefined value here causes illegal behavior
-// :147:22: note: when computing vector element at index '0'
-// :147:22: error: use of undefined value here causes illegal behavior
-// :147:22: note: when computing vector element at index '1'
-// :147:22: error: use of undefined value here causes illegal behavior
-// :147:22: note: when computing vector element at index '0'
-// :147:22: error: use of undefined value here causes illegal behavior
-// :147:22: note: when computing vector element at index '0'
-// :147:22: error: use of undefined value here causes illegal behavior
-// :147:22: note: when computing vector element at index '0'
-// :147:22: error: use of undefined value here causes illegal behavior
-// :147:22: error: use of undefined value here causes illegal behavior
-// :147:22: note: when computing vector element at index '0'
-// :147:22: error: use of undefined value here causes illegal behavior
-// :147:22: note: when computing vector element at index '0'
-// :147:22: error: use of undefined value here causes illegal behavior
-// :147:22: note: when computing vector element at index '0'
-// :147:22: error: use of undefined value here causes illegal behavior
-// :147:22: note: when computing vector element at index '1'
-// :147:22: error: use of undefined value here causes illegal behavior
-// :147:22: note: when computing vector element at index '0'
-// :147:22: error: use of undefined value here causes illegal behavior
-// :147:22: note: when computing vector element at index '0'
-// :147:22: error: use of undefined value here causes illegal behavior
-// :147:22: note: when computing vector element at index '0'
-// :147:22: error: use of undefined value here causes illegal behavior
-// :147:22: error: use of undefined value here causes illegal behavior
-// :147:22: note: when computing vector element at index '0'
-// :147:22: error: use of undefined value here causes illegal behavior
-// :147:22: note: when computing vector element at index '0'
-// :147:22: error: use of undefined value here causes illegal behavior
-// :147:22: note: when computing vector element at index '0'
-// :147:22: error: use of undefined value here causes illegal behavior
-// :147:22: note: when computing vector element at index '1'
-// :147:22: error: use of undefined value here causes illegal behavior
-// :147:22: note: when computing vector element at index '0'
-// :147:22: error: use of undefined value here causes illegal behavior
-// :147:22: note: when computing vector element at index '0'
-// :147:22: error: use of undefined value here causes illegal behavior
-// :147:22: note: when computing vector element at index '0'
-// :147:22: error: use of undefined value here causes illegal behavior
-// :147:22: error: use of undefined value here causes illegal behavior
-// :147:22: note: when computing vector element at index '0'
-// :147:22: error: use of undefined value here causes illegal behavior
-// :147:22: note: when computing vector element at index '0'
-// :147:22: error: use of undefined value here causes illegal behavior
-// :147:22: note: when computing vector element at index '0'
-// :147:22: error: use of undefined value here causes illegal behavior
-// :147:22: note: when computing vector element at index '1'
-// :147:22: error: use of undefined value here causes illegal behavior
-// :147:22: note: when computing vector element at index '0'
-// :147:22: error: use of undefined value here causes illegal behavior
-// :147:22: note: when computing vector element at index '0'
-// :147:22: error: use of undefined value here causes illegal behavior
-// :147:22: note: when computing vector element at index '0'
-// :147:25: error: use of undefined value here causes illegal behavior
-// :147:25: error: use of undefined value here causes illegal behavior
-// :147:25: note: when computing vector element at index '0'
-// :147:25: error: use of undefined value here causes illegal behavior
-// :147:25: note: when computing vector element at index '0'
-// :147:25: error: use of undefined value here causes illegal behavior
-// :147:25: note: when computing vector element at index '1'
-// :147:25: error: use of undefined value here causes illegal behavior
-// :147:25: note: when computing vector element at index '0'
-// :147:25: error: use of undefined value here causes illegal behavior
-// :147:25: note: when computing vector element at index '0'
-// :147:25: error: use of undefined value here causes illegal behavior
-// :147:25: error: use of undefined value here causes illegal behavior
-// :147:25: note: when computing vector element at index '0'
-// :147:25: error: use of undefined value here causes illegal behavior
-// :147:25: note: when computing vector element at index '0'
-// :147:25: error: use of undefined value here causes illegal behavior
-// :147:25: note: when computing vector element at index '1'
-// :147:25: error: use of undefined value here causes illegal behavior
-// :147:25: note: when computing vector element at index '0'
-// :147:25: error: use of undefined value here causes illegal behavior
-// :147:25: note: when computing vector element at index '0'
-// :147:25: error: use of undefined value here causes illegal behavior
-// :147:25: error: use of undefined value here causes illegal behavior
-// :147:25: note: when computing vector element at index '0'
-// :147:25: error: use of undefined value here causes illegal behavior
-// :147:25: note: when computing vector element at index '0'
-// :147:25: error: use of undefined value here causes illegal behavior
-// :147:25: note: when computing vector element at index '1'
-// :147:25: error: use of undefined value here causes illegal behavior
-// :147:25: note: when computing vector element at index '0'
-// :147:25: error: use of undefined value here causes illegal behavior
-// :147:25: note: when computing vector element at index '0'
-// :147:25: error: use of undefined value here causes illegal behavior
-// :147:25: error: use of undefined value here causes illegal behavior
-// :147:25: note: when computing vector element at index '0'
-// :147:25: error: use of undefined value here causes illegal behavior
-// :147:25: note: when computing vector element at index '0'
-// :147:25: error: use of undefined value here causes illegal behavior
-// :147:25: note: when computing vector element at index '1'
-// :147:25: error: use of undefined value here causes illegal behavior
-// :147:25: note: when computing vector element at index '0'
-// :147:25: error: use of undefined value here causes illegal behavior
-// :147:25: note: when computing vector element at index '0'
-// :147:25: error: use of undefined value here causes illegal behavior
-// :147:25: error: use of undefined value here causes illegal behavior
-// :147:25: note: when computing vector element at index '0'
-// :147:25: error: use of undefined value here causes illegal behavior
-// :147:25: note: when computing vector element at index '0'
-// :147:25: error: use of undefined value here causes illegal behavior
-// :147:25: note: when computing vector element at index '1'
-// :147:25: error: use of undefined value here causes illegal behavior
-// :147:25: note: when computing vector element at index '0'
-// :147:25: error: use of undefined value here causes illegal behavior
-// :147:25: note: when computing vector element at index '0'
-// :147:25: error: use of undefined value here causes illegal behavior
-// :147:25: error: use of undefined value here causes illegal behavior
-// :147:25: note: when computing vector element at index '0'
-// :147:25: error: use of undefined value here causes illegal behavior
-// :147:25: note: when computing vector element at index '0'
-// :147:25: error: use of undefined value here causes illegal behavior
-// :147:25: note: when computing vector element at index '1'
-// :147:25: error: use of undefined value here causes illegal behavior
-// :147:25: note: when computing vector element at index '0'
-// :147:25: error: use of undefined value here causes illegal behavior
-// :147:25: note: when computing vector element at index '0'
-// :147:25: error: use of undefined value here causes illegal behavior
-// :147:25: error: use of undefined value here causes illegal behavior
-// :147:25: note: when computing vector element at index '0'
-// :147:25: error: use of undefined value here causes illegal behavior
-// :147:25: note: when computing vector element at index '0'
-// :147:25: error: use of undefined value here causes illegal behavior
-// :147:25: note: when computing vector element at index '1'
-// :147:25: error: use of undefined value here causes illegal behavior
-// :147:25: note: when computing vector element at index '0'
-// :147:25: error: use of undefined value here causes illegal behavior
-// :147:25: note: when computing vector element at index '0'
-// :147:25: error: use of undefined value here causes illegal behavior
-// :147:25: error: use of undefined value here causes illegal behavior
-// :147:25: note: when computing vector element at index '0'
-// :147:25: error: use of undefined value here causes illegal behavior
-// :147:25: note: when computing vector element at index '0'
-// :147:25: error: use of undefined value here causes illegal behavior
-// :147:25: note: when computing vector element at index '1'
-// :147:25: error: use of undefined value here causes illegal behavior
-// :147:25: note: when computing vector element at index '0'
-// :147:25: error: use of undefined value here causes illegal behavior
-// :147:25: note: when computing vector element at index '0'
-// :147:25: error: use of undefined value here causes illegal behavior
-// :147:25: error: use of undefined value here causes illegal behavior
-// :147:25: note: when computing vector element at index '0'
-// :147:25: error: use of undefined value here causes illegal behavior
-// :147:25: note: when computing vector element at index '0'
-// :147:25: error: use of undefined value here causes illegal behavior
-// :147:25: note: when computing vector element at index '1'
-// :147:25: error: use of undefined value here causes illegal behavior
-// :147:25: note: when computing vector element at index '0'
-// :147:25: error: use of undefined value here causes illegal behavior
-// :147:25: note: when computing vector element at index '0'
-// :147:25: error: use of undefined value here causes illegal behavior
-// :147:25: error: use of undefined value here causes illegal behavior
-// :147:25: note: when computing vector element at index '0'
-// :147:25: error: use of undefined value here causes illegal behavior
-// :147:25: note: when computing vector element at index '0'
-// :147:25: error: use of undefined value here causes illegal behavior
-// :147:25: note: when computing vector element at index '1'
-// :147:25: error: use of undefined value here causes illegal behavior
-// :147:25: note: when computing vector element at index '0'
-// :147:25: error: use of undefined value here causes illegal behavior
-// :147:25: note: when computing vector element at index '0'
-// :147:25: error: use of undefined value here causes illegal behavior
-// :147:25: error: use of undefined value here causes illegal behavior
-// :147:25: note: when computing vector element at index '0'
-// :147:25: error: use of undefined value here causes illegal behavior
-// :147:25: note: when computing vector element at index '0'
-// :147:25: error: use of undefined value here causes illegal behavior
-// :147:25: note: when computing vector element at index '1'
-// :147:25: error: use of undefined value here causes illegal behavior
-// :147:25: note: when computing vector element at index '0'
-// :147:25: error: use of undefined value here causes illegal behavior
-// :147:25: note: when computing vector element at index '0'
-// :151:22: error: use of undefined value here causes illegal behavior
-// :151:22: error: use of undefined value here causes illegal behavior
-// :151:22: note: when computing vector element at index '0'
-// :151:22: error: use of undefined value here causes illegal behavior
-// :151:22: note: when computing vector element at index '0'
-// :151:22: error: use of undefined value here causes illegal behavior
-// :151:22: note: when computing vector element at index '0'
-// :151:22: error: use of undefined value here causes illegal behavior
-// :151:22: note: when computing vector element at index '1'
-// :151:22: error: use of undefined value here causes illegal behavior
-// :151:22: note: when computing vector element at index '0'
-// :151:22: error: use of undefined value here causes illegal behavior
-// :151:22: note: when computing vector element at index '0'
-// :151:22: error: use of undefined value here causes illegal behavior
-// :151:22: note: when computing vector element at index '0'
-// :151:22: error: use of undefined value here causes illegal behavior
-// :151:22: error: use of undefined value here causes illegal behavior
-// :151:22: note: when computing vector element at index '0'
-// :151:22: error: use of undefined value here causes illegal behavior
-// :151:22: note: when computing vector element at index '0'
-// :151:22: error: use of undefined value here causes illegal behavior
-// :151:22: note: when computing vector element at index '0'
-// :151:22: error: use of undefined value here causes illegal behavior
-// :151:22: note: when computing vector element at index '1'
-// :151:22: error: use of undefined value here causes illegal behavior
-// :151:22: note: when computing vector element at index '0'
-// :151:22: error: use of undefined value here causes illegal behavior
-// :151:22: note: when computing vector element at index '0'
-// :151:22: error: use of undefined value here causes illegal behavior
-// :151:22: note: when computing vector element at index '0'
-// :151:22: error: use of undefined value here causes illegal behavior
-// :151:22: error: use of undefined value here causes illegal behavior
-// :151:22: note: when computing vector element at index '0'
-// :151:22: error: use of undefined value here causes illegal behavior
-// :151:22: note: when computing vector element at index '0'
-// :151:22: error: use of undefined value here causes illegal behavior
-// :151:22: note: when computing vector element at index '0'
-// :151:22: error: use of undefined value here causes illegal behavior
-// :151:22: note: when computing vector element at index '1'
-// :151:22: error: use of undefined value here causes illegal behavior
-// :151:22: note: when computing vector element at index '0'
-// :151:22: error: use of undefined value here causes illegal behavior
-// :151:22: note: when computing vector element at index '0'
-// :151:22: error: use of undefined value here causes illegal behavior
-// :151:22: note: when computing vector element at index '0'
-// :151:22: error: use of undefined value here causes illegal behavior
-// :151:22: error: use of undefined value here causes illegal behavior
-// :151:22: note: when computing vector element at index '0'
-// :151:22: error: use of undefined value here causes illegal behavior
-// :151:22: note: when computing vector element at index '0'
-// :151:22: error: use of undefined value here causes illegal behavior
-// :151:22: note: when computing vector element at index '0'
-// :151:22: error: use of undefined value here causes illegal behavior
-// :151:22: note: when computing vector element at index '1'
-// :151:22: error: use of undefined value here causes illegal behavior
-// :151:22: note: when computing vector element at index '0'
-// :151:22: error: use of undefined value here causes illegal behavior
-// :151:22: note: when computing vector element at index '0'
-// :151:22: error: use of undefined value here causes illegal behavior
-// :151:22: note: when computing vector element at index '0'
-// :151:22: error: use of undefined value here causes illegal behavior
-// :151:22: error: use of undefined value here causes illegal behavior
-// :151:22: note: when computing vector element at index '0'
-// :151:22: error: use of undefined value here causes illegal behavior
-// :151:22: note: when computing vector element at index '0'
-// :151:22: error: use of undefined value here causes illegal behavior
-// :151:22: note: when computing vector element at index '0'
-// :151:22: error: use of undefined value here causes illegal behavior
-// :151:22: note: when computing vector element at index '1'
-// :151:22: error: use of undefined value here causes illegal behavior
-// :151:22: note: when computing vector element at index '0'
-// :151:22: error: use of undefined value here causes illegal behavior
-// :151:22: note: when computing vector element at index '0'
-// :151:22: error: use of undefined value here causes illegal behavior
-// :151:22: note: when computing vector element at index '0'
-// :151:22: error: use of undefined value here causes illegal behavior
-// :151:22: error: use of undefined value here causes illegal behavior
-// :151:22: note: when computing vector element at index '0'
-// :151:22: error: use of undefined value here causes illegal behavior
-// :151:22: note: when computing vector element at index '0'
-// :151:22: error: use of undefined value here causes illegal behavior
-// :151:22: note: when computing vector element at index '0'
-// :151:22: error: use of undefined value here causes illegal behavior
-// :151:22: note: when computing vector element at index '1'
-// :151:22: error: use of undefined value here causes illegal behavior
-// :151:22: note: when computing vector element at index '0'
-// :151:22: error: use of undefined value here causes illegal behavior
-// :151:22: note: when computing vector element at index '0'
-// :151:22: error: use of undefined value here causes illegal behavior
-// :151:22: note: when computing vector element at index '0'
-// :151:22: error: use of undefined value here causes illegal behavior
-// :151:22: error: use of undefined value here causes illegal behavior
-// :151:22: note: when computing vector element at index '0'
-// :151:22: error: use of undefined value here causes illegal behavior
-// :151:22: note: when computing vector element at index '0'
-// :151:22: error: use of undefined value here causes illegal behavior
-// :151:22: note: when computing vector element at index '0'
-// :151:22: error: use of undefined value here causes illegal behavior
-// :151:22: note: when computing vector element at index '1'
-// :151:22: error: use of undefined value here causes illegal behavior
-// :151:22: note: when computing vector element at index '0'
-// :151:22: error: use of undefined value here causes illegal behavior
-// :151:22: note: when computing vector element at index '0'
-// :151:22: error: use of undefined value here causes illegal behavior
-// :151:22: note: when computing vector element at index '0'
-// :151:22: error: use of undefined value here causes illegal behavior
-// :151:22: error: use of undefined value here causes illegal behavior
-// :151:22: note: when computing vector element at index '0'
-// :151:22: error: use of undefined value here causes illegal behavior
-// :151:22: note: when computing vector element at index '0'
-// :151:22: error: use of undefined value here causes illegal behavior
-// :151:22: note: when computing vector element at index '0'
-// :151:22: error: use of undefined value here causes illegal behavior
-// :151:22: note: when computing vector element at index '1'
-// :151:22: error: use of undefined value here causes illegal behavior
-// :151:22: note: when computing vector element at index '0'
-// :151:22: error: use of undefined value here causes illegal behavior
-// :151:22: note: when computing vector element at index '0'
-// :151:22: error: use of undefined value here causes illegal behavior
-// :151:22: note: when computing vector element at index '0'
-// :151:22: error: use of undefined value here causes illegal behavior
-// :151:22: error: use of undefined value here causes illegal behavior
-// :151:22: note: when computing vector element at index '0'
-// :151:22: error: use of undefined value here causes illegal behavior
-// :151:22: note: when computing vector element at index '0'
-// :151:22: error: use of undefined value here causes illegal behavior
-// :151:22: note: when computing vector element at index '0'
-// :151:22: error: use of undefined value here causes illegal behavior
-// :151:22: note: when computing vector element at index '1'
-// :151:22: error: use of undefined value here causes illegal behavior
-// :151:22: note: when computing vector element at index '0'
-// :151:22: error: use of undefined value here causes illegal behavior
-// :151:22: note: when computing vector element at index '0'
-// :151:22: error: use of undefined value here causes illegal behavior
-// :151:22: note: when computing vector element at index '0'
-// :151:22: error: use of undefined value here causes illegal behavior
-// :151:22: error: use of undefined value here causes illegal behavior
-// :151:22: note: when computing vector element at index '0'
-// :151:22: error: use of undefined value here causes illegal behavior
-// :151:22: note: when computing vector element at index '0'
-// :151:22: error: use of undefined value here causes illegal behavior
-// :151:22: note: when computing vector element at index '0'
-// :151:22: error: use of undefined value here causes illegal behavior
-// :151:22: note: when computing vector element at index '1'
-// :151:22: error: use of undefined value here causes illegal behavior
-// :151:22: note: when computing vector element at index '0'
-// :151:22: error: use of undefined value here causes illegal behavior
-// :151:22: note: when computing vector element at index '0'
-// :151:22: error: use of undefined value here causes illegal behavior
-// :151:22: note: when computing vector element at index '0'
-// :151:22: error: use of undefined value here causes illegal behavior
-// :151:22: error: use of undefined value here causes illegal behavior
-// :151:22: note: when computing vector element at index '0'
-// :151:22: error: use of undefined value here causes illegal behavior
-// :151:22: note: when computing vector element at index '0'
-// :151:22: error: use of undefined value here causes illegal behavior
-// :151:22: note: when computing vector element at index '0'
-// :151:22: error: use of undefined value here causes illegal behavior
-// :151:22: note: when computing vector element at index '1'
-// :151:22: error: use of undefined value here causes illegal behavior
-// :151:22: note: when computing vector element at index '0'
-// :151:22: error: use of undefined value here causes illegal behavior
-// :151:22: note: when computing vector element at index '0'
-// :151:22: error: use of undefined value here causes illegal behavior
-// :151:22: note: when computing vector element at index '0'
-// :151:25: error: use of undefined value here causes illegal behavior
-// :151:25: error: use of undefined value here causes illegal behavior
-// :151:25: note: when computing vector element at index '0'
-// :151:25: error: use of undefined value here causes illegal behavior
-// :151:25: note: when computing vector element at index '0'
-// :151:25: error: use of undefined value here causes illegal behavior
-// :151:25: note: when computing vector element at index '1'
-// :151:25: error: use of undefined value here causes illegal behavior
-// :151:25: note: when computing vector element at index '0'
-// :151:25: error: use of undefined value here causes illegal behavior
-// :151:25: note: when computing vector element at index '0'
-// :151:25: error: use of undefined value here causes illegal behavior
-// :151:25: error: use of undefined value here causes illegal behavior
-// :151:25: note: when computing vector element at index '0'
-// :151:25: error: use of undefined value here causes illegal behavior
-// :151:25: note: when computing vector element at index '0'
-// :151:25: error: use of undefined value here causes illegal behavior
-// :151:25: note: when computing vector element at index '1'
-// :151:25: error: use of undefined value here causes illegal behavior
-// :151:25: note: when computing vector element at index '0'
-// :151:25: error: use of undefined value here causes illegal behavior
-// :151:25: note: when computing vector element at index '0'
-// :151:25: error: use of undefined value here causes illegal behavior
-// :151:25: error: use of undefined value here causes illegal behavior
-// :151:25: note: when computing vector element at index '0'
-// :151:25: error: use of undefined value here causes illegal behavior
-// :151:25: note: when computing vector element at index '0'
-// :151:25: error: use of undefined value here causes illegal behavior
-// :151:25: note: when computing vector element at index '1'
-// :151:25: error: use of undefined value here causes illegal behavior
-// :151:25: note: when computing vector element at index '0'
-// :151:25: error: use of undefined value here causes illegal behavior
-// :151:25: note: when computing vector element at index '0'
-// :151:25: error: use of undefined value here causes illegal behavior
-// :151:25: error: use of undefined value here causes illegal behavior
-// :151:25: note: when computing vector element at index '0'
-// :151:25: error: use of undefined value here causes illegal behavior
-// :151:25: note: when computing vector element at index '0'
-// :151:25: error: use of undefined value here causes illegal behavior
-// :151:25: note: when computing vector element at index '1'
-// :151:25: error: use of undefined value here causes illegal behavior
-// :151:25: note: when computing vector element at index '0'
-// :151:25: error: use of undefined value here causes illegal behavior
-// :151:25: note: when computing vector element at index '0'
-// :151:25: error: use of undefined value here causes illegal behavior
-// :151:25: error: use of undefined value here causes illegal behavior
-// :151:25: note: when computing vector element at index '0'
-// :151:25: error: use of undefined value here causes illegal behavior
-// :151:25: note: when computing vector element at index '0'
-// :151:25: error: use of undefined value here causes illegal behavior
-// :151:25: note: when computing vector element at index '1'
-// :151:25: error: use of undefined value here causes illegal behavior
-// :151:25: note: when computing vector element at index '0'
-// :151:25: error: use of undefined value here causes illegal behavior
-// :151:25: note: when computing vector element at index '0'
-// :151:25: error: use of undefined value here causes illegal behavior
-// :151:25: error: use of undefined value here causes illegal behavior
-// :151:25: note: when computing vector element at index '0'
-// :151:25: error: use of undefined value here causes illegal behavior
-// :151:25: note: when computing vector element at index '0'
-// :151:25: error: use of undefined value here causes illegal behavior
-// :151:25: note: when computing vector element at index '1'
-// :151:25: error: use of undefined value here causes illegal behavior
-// :151:25: note: when computing vector element at index '0'
-// :151:25: error: use of undefined value here causes illegal behavior
-// :151:25: note: when computing vector element at index '0'
-// :151:25: error: use of undefined value here causes illegal behavior
-// :151:25: error: use of undefined value here causes illegal behavior
-// :151:25: note: when computing vector element at index '0'
-// :151:25: error: use of undefined value here causes illegal behavior
-// :151:25: note: when computing vector element at index '0'
-// :151:25: error: use of undefined value here causes illegal behavior
-// :151:25: note: when computing vector element at index '1'
-// :151:25: error: use of undefined value here causes illegal behavior
-// :151:25: note: when computing vector element at index '0'
-// :151:25: error: use of undefined value here causes illegal behavior
-// :151:25: note: when computing vector element at index '0'
-// :151:25: error: use of undefined value here causes illegal behavior
-// :151:25: error: use of undefined value here causes illegal behavior
-// :151:25: note: when computing vector element at index '0'
-// :151:25: error: use of undefined value here causes illegal behavior
-// :151:25: note: when computing vector element at index '0'
-// :151:25: error: use of undefined value here causes illegal behavior
-// :151:25: note: when computing vector element at index '1'
-// :151:25: error: use of undefined value here causes illegal behavior
-// :151:25: note: when computing vector element at index '0'
-// :151:25: error: use of undefined value here causes illegal behavior
-// :151:25: note: when computing vector element at index '0'
-// :151:25: error: use of undefined value here causes illegal behavior
-// :151:25: error: use of undefined value here causes illegal behavior
-// :151:25: note: when computing vector element at index '0'
-// :151:25: error: use of undefined value here causes illegal behavior
-// :151:25: note: when computing vector element at index '0'
-// :151:25: error: use of undefined value here causes illegal behavior
-// :151:25: note: when computing vector element at index '1'
-// :151:25: error: use of undefined value here causes illegal behavior
-// :151:25: note: when computing vector element at index '0'
-// :151:25: error: use of undefined value here causes illegal behavior
-// :151:25: note: when computing vector element at index '0'
-// :151:25: error: use of undefined value here causes illegal behavior
-// :151:25: error: use of undefined value here causes illegal behavior
-// :151:25: note: when computing vector element at index '0'
-// :151:25: error: use of undefined value here causes illegal behavior
-// :151:25: note: when computing vector element at index '0'
-// :151:25: error: use of undefined value here causes illegal behavior
-// :151:25: note: when computing vector element at index '1'
-// :151:25: error: use of undefined value here causes illegal behavior
-// :151:25: note: when computing vector element at index '0'
-// :151:25: error: use of undefined value here causes illegal behavior
-// :151:25: note: when computing vector element at index '0'
-// :151:25: error: use of undefined value here causes illegal behavior
-// :151:25: error: use of undefined value here causes illegal behavior
-// :151:25: note: when computing vector element at index '0'
-// :151:25: error: use of undefined value here causes illegal behavior
-// :151:25: note: when computing vector element at index '0'
-// :151:25: error: use of undefined value here causes illegal behavior
-// :151:25: note: when computing vector element at index '1'
-// :151:25: error: use of undefined value here causes illegal behavior
-// :151:25: note: when computing vector element at index '0'
-// :151:25: error: use of undefined value here causes illegal behavior
-// :151:25: note: when computing vector element at index '0'
-// :157:21: error: use of undefined value here causes illegal behavior
-// :157:21: error: use of undefined value here causes illegal behavior
-// :157:21: error: use of undefined value here causes illegal behavior
-// :157:21: error: use of undefined value here causes illegal behavior
-// :157:21: error: use of undefined value here causes illegal behavior
-// :157:21: error: use of undefined value here causes illegal behavior
-// :157:21: error: use of undefined value here causes illegal behavior
-// :157:21: note: when computing vector element at index '1'
-// :157:21: error: use of undefined value here causes illegal behavior
-// :157:21: note: when computing vector element at index '1'
-// :157:21: error: use of undefined value here causes illegal behavior
-// :157:21: note: when computing vector element at index '1'
-// :157:21: error: use of undefined value here causes illegal behavior
-// :157:21: note: when computing vector element at index '1'
-// :157:21: error: use of undefined value here causes illegal behavior
-// :157:21: note: when computing vector element at index '0'
-// :157:21: error: use of undefined value here causes illegal behavior
-// :157:21: note: when computing vector element at index '0'
-// :157:21: error: use of undefined value here causes illegal behavior
-// :157:21: note: when computing vector element at index '0'
-// :157:21: error: use of undefined value here causes illegal behavior
-// :157:21: note: when computing vector element at index '0'
-// :157:21: error: use of undefined value here causes illegal behavior
-// :157:21: error: use of undefined value here causes illegal behavior
-// :157:21: error: use of undefined value here causes illegal behavior
-// :157:21: error: use of undefined value here causes illegal behavior
-// :157:21: error: use of undefined value here causes illegal behavior
-// :157:21: error: use of undefined value here causes illegal behavior
-// :157:21: error: use of undefined value here causes illegal behavior
-// :157:21: note: when computing vector element at index '1'
-// :157:21: error: use of undefined value here causes illegal behavior
-// :157:21: note: when computing vector element at index '1'
-// :157:21: error: use of undefined value here causes illegal behavior
-// :157:21: note: when computing vector element at index '1'
-// :157:21: error: use of undefined value here causes illegal behavior
-// :157:21: note: when computing vector element at index '1'
-// :157:21: error: use of undefined value here causes illegal behavior
-// :157:21: note: when computing vector element at index '0'
-// :157:21: error: use of undefined value here causes illegal behavior
-// :157:21: note: when computing vector element at index '0'
-// :157:21: error: use of undefined value here causes illegal behavior
-// :157:21: note: when computing vector element at index '0'
-// :157:21: error: use of undefined value here causes illegal behavior
-// :157:21: note: when computing vector element at index '0'
-// :157:21: error: use of undefined value here causes illegal behavior
-// :157:21: error: use of undefined value here causes illegal behavior
-// :157:21: error: use of undefined value here causes illegal behavior
-// :157:21: error: use of undefined value here causes illegal behavior
-// :157:21: error: use of undefined value here causes illegal behavior
-// :157:21: error: use of undefined value here causes illegal behavior
-// :157:21: error: use of undefined value here causes illegal behavior
-// :157:21: note: when computing vector element at index '1'
-// :157:21: error: use of undefined value here causes illegal behavior
-// :157:21: note: when computing vector element at index '1'
-// :157:21: error: use of undefined value here causes illegal behavior
-// :157:21: note: when computing vector element at index '1'
-// :157:21: error: use of undefined value here causes illegal behavior
-// :157:21: note: when computing vector element at index '1'
-// :157:21: error: use of undefined value here causes illegal behavior
-// :157:21: note: when computing vector element at index '0'
-// :157:21: error: use of undefined value here causes illegal behavior
-// :157:21: note: when computing vector element at index '0'
-// :157:21: error: use of undefined value here causes illegal behavior
-// :157:21: note: when computing vector element at index '0'
-// :157:21: error: use of undefined value here causes illegal behavior
-// :157:21: note: when computing vector element at index '0'
-// :157:21: error: use of undefined value here causes illegal behavior
-// :157:21: error: use of undefined value here causes illegal behavior
-// :157:21: error: use of undefined value here causes illegal behavior
-// :157:21: error: use of undefined value here causes illegal behavior
-// :157:21: error: use of undefined value here causes illegal behavior
-// :157:21: error: use of undefined value here causes illegal behavior
-// :157:21: error: use of undefined value here causes illegal behavior
-// :157:21: note: when computing vector element at index '1'
-// :157:21: error: use of undefined value here causes illegal behavior
-// :157:21: note: when computing vector element at index '1'
-// :157:21: error: use of undefined value here causes illegal behavior
-// :157:21: note: when computing vector element at index '1'
-// :157:21: error: use of undefined value here causes illegal behavior
-// :157:21: note: when computing vector element at index '1'
-// :157:21: error: use of undefined value here causes illegal behavior
-// :157:21: note: when computing vector element at index '0'
-// :157:21: error: use of undefined value here causes illegal behavior
-// :157:21: note: when computing vector element at index '0'
-// :157:21: error: use of undefined value here causes illegal behavior
-// :157:21: note: when computing vector element at index '0'
-// :157:21: error: use of undefined value here causes illegal behavior
-// :157:21: note: when computing vector element at index '0'
-// :157:21: error: use of undefined value here causes illegal behavior
-// :157:21: error: use of undefined value here causes illegal behavior
-// :157:21: error: use of undefined value here causes illegal behavior
-// :157:21: error: use of undefined value here causes illegal behavior
-// :157:21: error: use of undefined value here causes illegal behavior
-// :157:21: error: use of undefined value here causes illegal behavior
-// :157:21: error: use of undefined value here causes illegal behavior
-// :157:21: note: when computing vector element at index '1'
-// :157:21: error: use of undefined value here causes illegal behavior
-// :157:21: note: when computing vector element at index '1'
-// :157:21: error: use of undefined value here causes illegal behavior
-// :157:21: note: when computing vector element at index '1'
-// :157:21: error: use of undefined value here causes illegal behavior
-// :157:21: note: when computing vector element at index '1'
-// :157:21: error: use of undefined value here causes illegal behavior
-// :157:21: note: when computing vector element at index '0'
-// :157:21: error: use of undefined value here causes illegal behavior
-// :157:21: note: when computing vector element at index '0'
-// :157:21: error: use of undefined value here causes illegal behavior
-// :157:21: note: when computing vector element at index '0'
-// :157:21: error: use of undefined value here causes illegal behavior
-// :157:21: note: when computing vector element at index '0'
-// :157:21: error: use of undefined value here causes illegal behavior
-// :157:21: error: use of undefined value here causes illegal behavior
-// :157:21: error: use of undefined value here causes illegal behavior
-// :157:21: error: use of undefined value here causes illegal behavior
-// :157:21: error: use of undefined value here causes illegal behavior
-// :157:21: error: use of undefined value here causes illegal behavior
-// :157:21: error: use of undefined value here causes illegal behavior
-// :157:21: note: when computing vector element at index '1'
-// :157:21: error: use of undefined value here causes illegal behavior
-// :157:21: note: when computing vector element at index '1'
-// :157:21: error: use of undefined value here causes illegal behavior
-// :157:21: note: when computing vector element at index '1'
-// :157:21: error: use of undefined value here causes illegal behavior
-// :157:21: note: when computing vector element at index '1'
-// :157:21: error: use of undefined value here causes illegal behavior
-// :157:21: note: when computing vector element at index '0'
-// :157:21: error: use of undefined value here causes illegal behavior
-// :157:21: note: when computing vector element at index '0'
-// :157:21: error: use of undefined value here causes illegal behavior
-// :157:21: note: when computing vector element at index '0'
-// :157:21: error: use of undefined value here causes illegal behavior
-// :157:21: note: when computing vector element at index '0'
-// :157:21: error: use of undefined value here causes illegal behavior
-// :157:21: error: use of undefined value here causes illegal behavior
-// :157:21: error: use of undefined value here causes illegal behavior
-// :157:21: error: use of undefined value here causes illegal behavior
-// :157:21: error: use of undefined value here causes illegal behavior
-// :157:21: error: use of undefined value here causes illegal behavior
-// :157:21: error: use of undefined value here causes illegal behavior
-// :157:21: note: when computing vector element at index '1'
-// :157:21: error: use of undefined value here causes illegal behavior
-// :157:21: note: when computing vector element at index '1'
-// :157:21: error: use of undefined value here causes illegal behavior
-// :157:21: note: when computing vector element at index '1'
-// :157:21: error: use of undefined value here causes illegal behavior
-// :157:21: note: when computing vector element at index '1'
-// :157:21: error: use of undefined value here causes illegal behavior
-// :157:21: note: when computing vector element at index '0'
-// :157:21: error: use of undefined value here causes illegal behavior
-// :157:21: note: when computing vector element at index '0'
-// :157:21: error: use of undefined value here causes illegal behavior
-// :157:21: note: when computing vector element at index '0'
-// :157:21: error: use of undefined value here causes illegal behavior
-// :157:21: note: when computing vector element at index '0'
-// :157:21: error: use of undefined value here causes illegal behavior
-// :157:21: error: use of undefined value here causes illegal behavior
-// :157:21: error: use of undefined value here causes illegal behavior
-// :157:21: error: use of undefined value here causes illegal behavior
-// :157:21: error: use of undefined value here causes illegal behavior
-// :157:21: error: use of undefined value here causes illegal behavior
-// :157:21: error: use of undefined value here causes illegal behavior
-// :157:21: note: when computing vector element at index '1'
-// :157:21: error: use of undefined value here causes illegal behavior
-// :157:21: note: when computing vector element at index '1'
-// :157:21: error: use of undefined value here causes illegal behavior
-// :157:21: note: when computing vector element at index '1'
-// :157:21: error: use of undefined value here causes illegal behavior
-// :157:21: note: when computing vector element at index '1'
-// :157:21: error: use of undefined value here causes illegal behavior
-// :157:21: note: when computing vector element at index '0'
-// :157:21: error: use of undefined value here causes illegal behavior
-// :157:21: note: when computing vector element at index '0'
-// :157:21: error: use of undefined value here causes illegal behavior
-// :157:21: note: when computing vector element at index '0'
-// :157:21: error: use of undefined value here causes illegal behavior
-// :157:21: note: when computing vector element at index '0'
-// :157:21: error: use of undefined value here causes illegal behavior
-// :157:21: error: use of undefined value here causes illegal behavior
-// :157:21: error: use of undefined value here causes illegal behavior
-// :157:21: error: use of undefined value here causes illegal behavior
-// :157:21: error: use of undefined value here causes illegal behavior
-// :157:21: error: use of undefined value here causes illegal behavior
-// :157:21: error: use of undefined value here causes illegal behavior
-// :157:21: note: when computing vector element at index '1'
-// :157:21: error: use of undefined value here causes illegal behavior
-// :157:21: note: when computing vector element at index '1'
-// :157:21: error: use of undefined value here causes illegal behavior
-// :157:21: note: when computing vector element at index '1'
-// :157:21: error: use of undefined value here causes illegal behavior
-// :157:21: note: when computing vector element at index '1'
-// :157:21: error: use of undefined value here causes illegal behavior
-// :157:21: note: when computing vector element at index '0'
-// :157:21: error: use of undefined value here causes illegal behavior
-// :157:21: note: when computing vector element at index '0'
-// :157:21: error: use of undefined value here causes illegal behavior
-// :157:21: note: when computing vector element at index '0'
-// :157:21: error: use of undefined value here causes illegal behavior
-// :157:21: note: when computing vector element at index '0'
-// :157:21: error: use of undefined value here causes illegal behavior
-// :157:21: error: use of undefined value here causes illegal behavior
-// :157:21: error: use of undefined value here causes illegal behavior
-// :157:21: error: use of undefined value here causes illegal behavior
-// :157:21: error: use of undefined value here causes illegal behavior
-// :157:21: error: use of undefined value here causes illegal behavior
-// :157:21: error: use of undefined value here causes illegal behavior
-// :157:21: note: when computing vector element at index '1'
-// :157:21: error: use of undefined value here causes illegal behavior
-// :157:21: note: when computing vector element at index '1'
-// :157:21: error: use of undefined value here causes illegal behavior
-// :157:21: note: when computing vector element at index '1'
-// :157:21: error: use of undefined value here causes illegal behavior
-// :157:21: note: when computing vector element at index '1'
-// :157:21: error: use of undefined value here causes illegal behavior
-// :157:21: note: when computing vector element at index '0'
-// :157:21: error: use of undefined value here causes illegal behavior
-// :157:21: note: when computing vector element at index '0'
-// :157:21: error: use of undefined value here causes illegal behavior
-// :157:21: note: when computing vector element at index '0'
-// :157:21: error: use of undefined value here causes illegal behavior
-// :157:21: note: when computing vector element at index '0'
-// :157:21: error: use of undefined value here causes illegal behavior
-// :157:21: error: use of undefined value here causes illegal behavior
-// :157:21: error: use of undefined value here causes illegal behavior
-// :157:21: error: use of undefined value here causes illegal behavior
-// :157:21: error: use of undefined value here causes illegal behavior
-// :157:21: error: use of undefined value here causes illegal behavior
-// :157:21: error: use of undefined value here causes illegal behavior
-// :157:21: note: when computing vector element at index '1'
-// :157:21: error: use of undefined value here causes illegal behavior
-// :157:21: note: when computing vector element at index '1'
-// :157:21: error: use of undefined value here causes illegal behavior
-// :157:21: note: when computing vector element at index '1'
-// :157:21: error: use of undefined value here causes illegal behavior
-// :157:21: note: when computing vector element at index '1'
-// :157:21: error: use of undefined value here causes illegal behavior
-// :157:21: note: when computing vector element at index '0'
-// :157:21: error: use of undefined value here causes illegal behavior
-// :157:21: note: when computing vector element at index '0'
-// :157:21: error: use of undefined value here causes illegal behavior
-// :157:21: note: when computing vector element at index '0'
-// :157:21: error: use of undefined value here causes illegal behavior
-// :157:21: note: when computing vector element at index '0'
-// :161:30: error: use of undefined value here causes illegal behavior
-// :161:30: error: use of undefined value here causes illegal behavior
-// :161:30: error: use of undefined value here causes illegal behavior
-// :161:30: error: use of undefined value here causes illegal behavior
-// :161:30: error: use of undefined value here causes illegal behavior
-// :161:30: error: use of undefined value here causes illegal behavior
-// :161:30: error: use of undefined value here causes illegal behavior
-// :161:30: note: when computing vector element at index '1'
-// :161:30: error: use of undefined value here causes illegal behavior
-// :161:30: note: when computing vector element at index '1'
-// :161:30: error: use of undefined value here causes illegal behavior
-// :161:30: note: when computing vector element at index '1'
-// :161:30: error: use of undefined value here causes illegal behavior
-// :161:30: note: when computing vector element at index '1'
-// :161:30: error: use of undefined value here causes illegal behavior
-// :161:30: note: when computing vector element at index '0'
-// :161:30: error: use of undefined value here causes illegal behavior
-// :161:30: note: when computing vector element at index '0'
-// :161:30: error: use of undefined value here causes illegal behavior
-// :161:30: note: when computing vector element at index '0'
-// :161:30: error: use of undefined value here causes illegal behavior
-// :161:30: note: when computing vector element at index '0'
-// :161:30: error: use of undefined value here causes illegal behavior
-// :161:30: error: use of undefined value here causes illegal behavior
-// :161:30: error: use of undefined value here causes illegal behavior
-// :161:30: error: use of undefined value here causes illegal behavior
-// :161:30: error: use of undefined value here causes illegal behavior
-// :161:30: error: use of undefined value here causes illegal behavior
-// :161:30: error: use of undefined value here causes illegal behavior
-// :161:30: note: when computing vector element at index '1'
-// :161:30: error: use of undefined value here causes illegal behavior
-// :161:30: note: when computing vector element at index '1'
-// :161:30: error: use of undefined value here causes illegal behavior
-// :161:30: note: when computing vector element at index '1'
-// :161:30: error: use of undefined value here causes illegal behavior
-// :161:30: note: when computing vector element at index '1'
-// :161:30: error: use of undefined value here causes illegal behavior
-// :161:30: note: when computing vector element at index '0'
-// :161:30: error: use of undefined value here causes illegal behavior
-// :161:30: note: when computing vector element at index '0'
-// :161:30: error: use of undefined value here causes illegal behavior
-// :161:30: note: when computing vector element at index '0'
-// :161:30: error: use of undefined value here causes illegal behavior
-// :161:30: note: when computing vector element at index '0'
-// :161:30: error: use of undefined value here causes illegal behavior
-// :161:30: error: use of undefined value here causes illegal behavior
-// :161:30: error: use of undefined value here causes illegal behavior
-// :161:30: error: use of undefined value here causes illegal behavior
-// :161:30: error: use of undefined value here causes illegal behavior
-// :161:30: error: use of undefined value here causes illegal behavior
-// :161:30: error: use of undefined value here causes illegal behavior
-// :161:30: note: when computing vector element at index '1'
-// :161:30: error: use of undefined value here causes illegal behavior
-// :161:30: note: when computing vector element at index '1'
-// :161:30: error: use of undefined value here causes illegal behavior
-// :161:30: note: when computing vector element at index '1'
-// :161:30: error: use of undefined value here causes illegal behavior
-// :161:30: note: when computing vector element at index '1'
-// :161:30: error: use of undefined value here causes illegal behavior
-// :161:30: note: when computing vector element at index '0'
-// :161:30: error: use of undefined value here causes illegal behavior
-// :161:30: note: when computing vector element at index '0'
-// :161:30: error: use of undefined value here causes illegal behavior
-// :161:30: note: when computing vector element at index '0'
-// :161:30: error: use of undefined value here causes illegal behavior
-// :161:30: note: when computing vector element at index '0'
-// :161:30: error: use of undefined value here causes illegal behavior
-// :161:30: error: use of undefined value here causes illegal behavior
-// :161:30: error: use of undefined value here causes illegal behavior
-// :161:30: error: use of undefined value here causes illegal behavior
-// :161:30: error: use of undefined value here causes illegal behavior
-// :161:30: error: use of undefined value here causes illegal behavior
-// :161:30: error: use of undefined value here causes illegal behavior
-// :161:30: note: when computing vector element at index '1'
-// :161:30: error: use of undefined value here causes illegal behavior
-// :161:30: note: when computing vector element at index '1'
-// :161:30: error: use of undefined value here causes illegal behavior
-// :161:30: note: when computing vector element at index '1'
-// :161:30: error: use of undefined value here causes illegal behavior
-// :161:30: note: when computing vector element at index '1'
-// :161:30: error: use of undefined value here causes illegal behavior
-// :161:30: note: when computing vector element at index '0'
-// :161:30: error: use of undefined value here causes illegal behavior
-// :161:30: note: when computing vector element at index '0'
-// :161:30: error: use of undefined value here causes illegal behavior
-// :161:30: note: when computing vector element at index '0'
-// :161:30: error: use of undefined value here causes illegal behavior
-// :161:30: note: when computing vector element at index '0'
-// :161:30: error: use of undefined value here causes illegal behavior
-// :161:30: error: use of undefined value here causes illegal behavior
-// :161:30: error: use of undefined value here causes illegal behavior
-// :161:30: error: use of undefined value here causes illegal behavior
-// :161:30: error: use of undefined value here causes illegal behavior
-// :161:30: error: use of undefined value here causes illegal behavior
-// :161:30: error: use of undefined value here causes illegal behavior
-// :161:30: note: when computing vector element at index '1'
-// :161:30: error: use of undefined value here causes illegal behavior
-// :161:30: note: when computing vector element at index '1'
-// :161:30: error: use of undefined value here causes illegal behavior
-// :161:30: note: when computing vector element at index '1'
-// :161:30: error: use of undefined value here causes illegal behavior
-// :161:30: note: when computing vector element at index '1'
-// :161:30: error: use of undefined value here causes illegal behavior
-// :161:30: note: when computing vector element at index '0'
-// :161:30: error: use of undefined value here causes illegal behavior
-// :161:30: note: when computing vector element at index '0'
-// :161:30: error: use of undefined value here causes illegal behavior
-// :161:30: note: when computing vector element at index '0'
-// :161:30: error: use of undefined value here causes illegal behavior
-// :161:30: note: when computing vector element at index '0'
-// :161:30: error: use of undefined value here causes illegal behavior
-// :161:30: error: use of undefined value here causes illegal behavior
-// :161:30: error: use of undefined value here causes illegal behavior
-// :161:30: error: use of undefined value here causes illegal behavior
-// :161:30: error: use of undefined value here causes illegal behavior
-// :161:30: error: use of undefined value here causes illegal behavior
-// :161:30: error: use of undefined value here causes illegal behavior
-// :161:30: note: when computing vector element at index '1'
-// :161:30: error: use of undefined value here causes illegal behavior
-// :161:30: note: when computing vector element at index '1'
-// :161:30: error: use of undefined value here causes illegal behavior
-// :161:30: note: when computing vector element at index '1'
-// :161:30: error: use of undefined value here causes illegal behavior
-// :161:30: note: when computing vector element at index '1'
-// :161:30: error: use of undefined value here causes illegal behavior
-// :161:30: note: when computing vector element at index '0'
-// :161:30: error: use of undefined value here causes illegal behavior
-// :161:30: note: when computing vector element at index '0'
-// :161:30: error: use of undefined value here causes illegal behavior
-// :161:30: note: when computing vector element at index '0'
-// :161:30: error: use of undefined value here causes illegal behavior
-// :161:30: note: when computing vector element at index '0'
-// :161:30: error: use of undefined value here causes illegal behavior
-// :161:30: error: use of undefined value here causes illegal behavior
-// :161:30: error: use of undefined value here causes illegal behavior
-// :161:30: error: use of undefined value here causes illegal behavior
-// :161:30: error: use of undefined value here causes illegal behavior
-// :161:30: error: use of undefined value here causes illegal behavior
-// :161:30: error: use of undefined value here causes illegal behavior
-// :161:30: note: when computing vector element at index '1'
-// :161:30: error: use of undefined value here causes illegal behavior
-// :161:30: note: when computing vector element at index '1'
-// :161:30: error: use of undefined value here causes illegal behavior
-// :161:30: note: when computing vector element at index '1'
-// :161:30: error: use of undefined value here causes illegal behavior
-// :161:30: note: when computing vector element at index '1'
-// :161:30: error: use of undefined value here causes illegal behavior
-// :161:30: note: when computing vector element at index '0'
-// :161:30: error: use of undefined value here causes illegal behavior
-// :161:30: note: when computing vector element at index '0'
-// :161:30: error: use of undefined value here causes illegal behavior
-// :161:30: note: when computing vector element at index '0'
-// :161:30: error: use of undefined value here causes illegal behavior
-// :161:30: note: when computing vector element at index '0'
-// :161:30: error: use of undefined value here causes illegal behavior
-// :161:30: error: use of undefined value here causes illegal behavior
-// :161:30: error: use of undefined value here causes illegal behavior
-// :161:30: error: use of undefined value here causes illegal behavior
-// :161:30: error: use of undefined value here causes illegal behavior
-// :161:30: error: use of undefined value here causes illegal behavior
-// :161:30: error: use of undefined value here causes illegal behavior
-// :161:30: note: when computing vector element at index '1'
-// :161:30: error: use of undefined value here causes illegal behavior
-// :161:30: note: when computing vector element at index '1'
-// :161:30: error: use of undefined value here causes illegal behavior
-// :161:30: note: when computing vector element at index '1'
-// :161:30: error: use of undefined value here causes illegal behavior
-// :161:30: note: when computing vector element at index '1'
-// :161:30: error: use of undefined value here causes illegal behavior
-// :161:30: note: when computing vector element at index '0'
-// :161:30: error: use of undefined value here causes illegal behavior
-// :161:30: note: when computing vector element at index '0'
-// :161:30: error: use of undefined value here causes illegal behavior
-// :161:30: note: when computing vector element at index '0'
-// :161:30: error: use of undefined value here causes illegal behavior
-// :161:30: note: when computing vector element at index '0'
-// :161:30: error: use of undefined value here causes illegal behavior
-// :161:30: error: use of undefined value here causes illegal behavior
-// :161:30: error: use of undefined value here causes illegal behavior
-// :161:30: error: use of undefined value here causes illegal behavior
-// :161:30: error: use of undefined value here causes illegal behavior
-// :161:30: error: use of undefined value here causes illegal behavior
-// :161:30: error: use of undefined value here causes illegal behavior
-// :161:30: note: when computing vector element at index '1'
-// :161:30: error: use of undefined value here causes illegal behavior
-// :161:30: note: when computing vector element at index '1'
-// :161:30: error: use of undefined value here causes illegal behavior
-// :161:30: note: when computing vector element at index '1'
-// :161:30: error: use of undefined value here causes illegal behavior
-// :161:30: note: when computing vector element at index '1'
-// :161:30: error: use of undefined value here causes illegal behavior
-// :161:30: note: when computing vector element at index '0'
-// :161:30: error: use of undefined value here causes illegal behavior
-// :161:30: note: when computing vector element at index '0'
-// :161:30: error: use of undefined value here causes illegal behavior
-// :161:30: note: when computing vector element at index '0'
-// :161:30: error: use of undefined value here causes illegal behavior
-// :161:30: note: when computing vector element at index '0'
-// :161:30: error: use of undefined value here causes illegal behavior
-// :161:30: error: use of undefined value here causes illegal behavior
-// :161:30: error: use of undefined value here causes illegal behavior
-// :161:30: error: use of undefined value here causes illegal behavior
-// :161:30: error: use of undefined value here causes illegal behavior
-// :161:30: error: use of undefined value here causes illegal behavior
-// :161:30: error: use of undefined value here causes illegal behavior
-// :161:30: note: when computing vector element at index '1'
-// :161:30: error: use of undefined value here causes illegal behavior
-// :161:30: note: when computing vector element at index '1'
-// :161:30: error: use of undefined value here causes illegal behavior
-// :161:30: note: when computing vector element at index '1'
-// :161:30: error: use of undefined value here causes illegal behavior
-// :161:30: note: when computing vector element at index '1'
-// :161:30: error: use of undefined value here causes illegal behavior
-// :161:30: note: when computing vector element at index '0'
-// :161:30: error: use of undefined value here causes illegal behavior
-// :161:30: note: when computing vector element at index '0'
-// :161:30: error: use of undefined value here causes illegal behavior
-// :161:30: note: when computing vector element at index '0'
-// :161:30: error: use of undefined value here causes illegal behavior
-// :161:30: note: when computing vector element at index '0'
-// :161:30: error: use of undefined value here causes illegal behavior
-// :161:30: error: use of undefined value here causes illegal behavior
-// :161:30: error: use of undefined value here causes illegal behavior
-// :161:30: error: use of undefined value here causes illegal behavior
-// :161:30: error: use of undefined value here causes illegal behavior
-// :161:30: error: use of undefined value here causes illegal behavior
-// :161:30: error: use of undefined value here causes illegal behavior
-// :161:30: note: when computing vector element at index '1'
-// :161:30: error: use of undefined value here causes illegal behavior
-// :161:30: note: when computing vector element at index '1'
-// :161:30: error: use of undefined value here causes illegal behavior
-// :161:30: note: when computing vector element at index '1'
-// :161:30: error: use of undefined value here causes illegal behavior
-// :161:30: note: when computing vector element at index '1'
-// :161:30: error: use of undefined value here causes illegal behavior
-// :161:30: note: when computing vector element at index '0'
-// :161:30: error: use of undefined value here causes illegal behavior
-// :161:30: note: when computing vector element at index '0'
-// :161:30: error: use of undefined value here causes illegal behavior
-// :161:30: note: when computing vector element at index '0'
-// :161:30: error: use of undefined value here causes illegal behavior
-// :161:30: note: when computing vector element at index '0'
-// :165:30: error: use of undefined value here causes illegal behavior
-// :165:30: error: use of undefined value here causes illegal behavior
-// :165:30: error: use of undefined value here causes illegal behavior
-// :165:30: error: use of undefined value here causes illegal behavior
-// :165:30: error: use of undefined value here causes illegal behavior
-// :165:30: error: use of undefined value here causes illegal behavior
-// :165:30: error: use of undefined value here causes illegal behavior
-// :165:30: note: when computing vector element at index '1'
-// :165:30: error: use of undefined value here causes illegal behavior
-// :165:30: note: when computing vector element at index '1'
-// :165:30: error: use of undefined value here causes illegal behavior
-// :165:30: note: when computing vector element at index '1'
-// :165:30: error: use of undefined value here causes illegal behavior
-// :165:30: note: when computing vector element at index '1'
-// :165:30: error: use of undefined value here causes illegal behavior
-// :165:30: note: when computing vector element at index '0'
-// :165:30: error: use of undefined value here causes illegal behavior
-// :165:30: note: when computing vector element at index '0'
-// :165:30: error: use of undefined value here causes illegal behavior
-// :165:30: note: when computing vector element at index '0'
-// :165:30: error: use of undefined value here causes illegal behavior
-// :165:30: note: when computing vector element at index '0'
-// :165:30: error: use of undefined value here causes illegal behavior
-// :165:30: error: use of undefined value here causes illegal behavior
-// :165:30: error: use of undefined value here causes illegal behavior
-// :165:30: error: use of undefined value here causes illegal behavior
-// :165:30: error: use of undefined value here causes illegal behavior
-// :165:30: error: use of undefined value here causes illegal behavior
-// :165:30: error: use of undefined value here causes illegal behavior
-// :165:30: note: when computing vector element at index '1'
-// :165:30: error: use of undefined value here causes illegal behavior
-// :165:30: note: when computing vector element at index '1'
-// :165:30: error: use of undefined value here causes illegal behavior
-// :165:30: note: when computing vector element at index '1'
-// :165:30: error: use of undefined value here causes illegal behavior
-// :165:30: note: when computing vector element at index '1'
-// :165:30: error: use of undefined value here causes illegal behavior
-// :165:30: note: when computing vector element at index '0'
-// :165:30: error: use of undefined value here causes illegal behavior
-// :165:30: note: when computing vector element at index '0'
-// :165:30: error: use of undefined value here causes illegal behavior
-// :165:30: note: when computing vector element at index '0'
-// :165:30: error: use of undefined value here causes illegal behavior
-// :165:30: note: when computing vector element at index '0'
-// :165:30: error: use of undefined value here causes illegal behavior
-// :165:30: error: use of undefined value here causes illegal behavior
-// :165:30: error: use of undefined value here causes illegal behavior
-// :165:30: error: use of undefined value here causes illegal behavior
-// :165:30: error: use of undefined value here causes illegal behavior
-// :165:30: error: use of undefined value here causes illegal behavior
-// :165:30: error: use of undefined value here causes illegal behavior
-// :165:30: note: when computing vector element at index '1'
-// :165:30: error: use of undefined value here causes illegal behavior
-// :165:30: note: when computing vector element at index '1'
-// :165:30: error: use of undefined value here causes illegal behavior
-// :165:30: note: when computing vector element at index '1'
-// :165:30: error: use of undefined value here causes illegal behavior
-// :165:30: note: when computing vector element at index '1'
-// :165:30: error: use of undefined value here causes illegal behavior
-// :165:30: note: when computing vector element at index '0'
-// :165:30: error: use of undefined value here causes illegal behavior
-// :165:30: note: when computing vector element at index '0'
-// :165:30: error: use of undefined value here causes illegal behavior
-// :165:30: note: when computing vector element at index '0'
-// :165:30: error: use of undefined value here causes illegal behavior
-// :165:30: note: when computing vector element at index '0'
-// :165:30: error: use of undefined value here causes illegal behavior
-// :165:30: error: use of undefined value here causes illegal behavior
-// :165:30: error: use of undefined value here causes illegal behavior
-// :165:30: error: use of undefined value here causes illegal behavior
-// :165:30: error: use of undefined value here causes illegal behavior
-// :165:30: error: use of undefined value here causes illegal behavior
-// :165:30: error: use of undefined value here causes illegal behavior
-// :165:30: note: when computing vector element at index '1'
-// :165:30: error: use of undefined value here causes illegal behavior
-// :165:30: note: when computing vector element at index '1'
-// :165:30: error: use of undefined value here causes illegal behavior
-// :165:30: note: when computing vector element at index '1'
-// :165:30: error: use of undefined value here causes illegal behavior
-// :165:30: note: when computing vector element at index '1'
-// :165:30: error: use of undefined value here causes illegal behavior
-// :165:30: note: when computing vector element at index '0'
-// :165:30: error: use of undefined value here causes illegal behavior
-// :165:30: note: when computing vector element at index '0'
-// :165:30: error: use of undefined value here causes illegal behavior
-// :165:30: note: when computing vector element at index '0'
-// :165:30: error: use of undefined value here causes illegal behavior
-// :165:30: note: when computing vector element at index '0'
-// :165:30: error: use of undefined value here causes illegal behavior
-// :165:30: error: use of undefined value here causes illegal behavior
-// :165:30: error: use of undefined value here causes illegal behavior
-// :165:30: error: use of undefined value here causes illegal behavior
-// :165:30: error: use of undefined value here causes illegal behavior
-// :165:30: error: use of undefined value here causes illegal behavior
-// :165:30: error: use of undefined value here causes illegal behavior
-// :165:30: note: when computing vector element at index '1'
-// :165:30: error: use of undefined value here causes illegal behavior
-// :165:30: note: when computing vector element at index '1'
-// :165:30: error: use of undefined value here causes illegal behavior
-// :165:30: note: when computing vector element at index '1'
-// :165:30: error: use of undefined value here causes illegal behavior
-// :165:30: note: when computing vector element at index '1'
-// :165:30: error: use of undefined value here causes illegal behavior
-// :165:30: note: when computing vector element at index '0'
-// :165:30: error: use of undefined value here causes illegal behavior
-// :165:30: note: when computing vector element at index '0'
-// :165:30: error: use of undefined value here causes illegal behavior
-// :165:30: note: when computing vector element at index '0'
-// :165:30: error: use of undefined value here causes illegal behavior
-// :165:30: note: when computing vector element at index '0'
-// :165:30: error: use of undefined value here causes illegal behavior
-// :165:30: error: use of undefined value here causes illegal behavior
-// :165:30: error: use of undefined value here causes illegal behavior
-// :165:30: error: use of undefined value here causes illegal behavior
-// :165:30: error: use of undefined value here causes illegal behavior
-// :165:30: error: use of undefined value here causes illegal behavior
-// :165:30: error: use of undefined value here causes illegal behavior
-// :165:30: note: when computing vector element at index '1'
-// :165:30: error: use of undefined value here causes illegal behavior
-// :165:30: note: when computing vector element at index '1'
-// :165:30: error: use of undefined value here causes illegal behavior
-// :165:30: note: when computing vector element at index '1'
-// :165:30: error: use of undefined value here causes illegal behavior
-// :165:30: note: when computing vector element at index '1'
-// :165:30: error: use of undefined value here causes illegal behavior
-// :165:30: note: when computing vector element at index '0'
-// :165:30: error: use of undefined value here causes illegal behavior
-// :165:30: note: when computing vector element at index '0'
-// :165:30: error: use of undefined value here causes illegal behavior
-// :165:30: note: when computing vector element at index '0'
-// :165:30: error: use of undefined value here causes illegal behavior
-// :165:30: note: when computing vector element at index '0'
-// :165:30: error: use of undefined value here causes illegal behavior
-// :165:30: error: use of undefined value here causes illegal behavior
-// :165:30: error: use of undefined value here causes illegal behavior
-// :165:30: error: use of undefined value here causes illegal behavior
-// :165:30: error: use of undefined value here causes illegal behavior
-// :165:30: error: use of undefined value here causes illegal behavior
-// :165:30: error: use of undefined value here causes illegal behavior
-// :165:30: note: when computing vector element at index '1'
-// :165:30: error: use of undefined value here causes illegal behavior
-// :165:30: note: when computing vector element at index '1'
-// :165:30: error: use of undefined value here causes illegal behavior
-// :165:30: note: when computing vector element at index '1'
-// :165:30: error: use of undefined value here causes illegal behavior
-// :165:30: note: when computing vector element at index '1'
-// :165:30: error: use of undefined value here causes illegal behavior
-// :165:30: note: when computing vector element at index '0'
-// :165:30: error: use of undefined value here causes illegal behavior
-// :165:30: note: when computing vector element at index '0'
-// :165:30: error: use of undefined value here causes illegal behavior
-// :165:30: note: when computing vector element at index '0'
-// :165:30: error: use of undefined value here causes illegal behavior
-// :165:30: note: when computing vector element at index '0'
-// :165:30: error: use of undefined value here causes illegal behavior
-// :165:30: error: use of undefined value here causes illegal behavior
-// :165:30: error: use of undefined value here causes illegal behavior
-// :165:30: error: use of undefined value here causes illegal behavior
-// :165:30: error: use of undefined value here causes illegal behavior
-// :165:30: error: use of undefined value here causes illegal behavior
-// :165:30: error: use of undefined value here causes illegal behavior
-// :165:30: note: when computing vector element at index '1'
-// :165:30: error: use of undefined value here causes illegal behavior
-// :165:30: note: when computing vector element at index '1'
-// :165:30: error: use of undefined value here causes illegal behavior
-// :165:30: note: when computing vector element at index '1'
-// :165:30: error: use of undefined value here causes illegal behavior
-// :165:30: note: when computing vector element at index '1'
-// :165:30: error: use of undefined value here causes illegal behavior
-// :165:30: note: when computing vector element at index '0'
-// :165:30: error: use of undefined value here causes illegal behavior
-// :165:30: note: when computing vector element at index '0'
-// :165:30: error: use of undefined value here causes illegal behavior
-// :165:30: note: when computing vector element at index '0'
-// :165:30: error: use of undefined value here causes illegal behavior
-// :165:30: note: when computing vector element at index '0'
-// :165:30: error: use of undefined value here causes illegal behavior
-// :165:30: error: use of undefined value here causes illegal behavior
-// :165:30: error: use of undefined value here causes illegal behavior
-// :165:30: error: use of undefined value here causes illegal behavior
-// :165:30: error: use of undefined value here causes illegal behavior
-// :165:30: error: use of undefined value here causes illegal behavior
-// :165:30: error: use of undefined value here causes illegal behavior
-// :165:30: note: when computing vector element at index '1'
-// :165:30: error: use of undefined value here causes illegal behavior
-// :165:30: note: when computing vector element at index '1'
-// :165:30: error: use of undefined value here causes illegal behavior
-// :165:30: note: when computing vector element at index '1'
-// :165:30: error: use of undefined value here causes illegal behavior
-// :165:30: note: when computing vector element at index '1'
-// :165:30: error: use of undefined value here causes illegal behavior
-// :165:30: note: when computing vector element at index '0'
-// :165:30: error: use of undefined value here causes illegal behavior
-// :165:30: note: when computing vector element at index '0'
-// :165:30: error: use of undefined value here causes illegal behavior
-// :165:30: note: when computing vector element at index '0'
-// :165:30: error: use of undefined value here causes illegal behavior
-// :165:30: note: when computing vector element at index '0'
-// :165:30: error: use of undefined value here causes illegal behavior
-// :165:30: error: use of undefined value here causes illegal behavior
-// :165:30: error: use of undefined value here causes illegal behavior
-// :165:30: error: use of undefined value here causes illegal behavior
-// :165:30: error: use of undefined value here causes illegal behavior
-// :165:30: error: use of undefined value here causes illegal behavior
-// :165:30: error: use of undefined value here causes illegal behavior
-// :165:30: note: when computing vector element at index '1'
-// :165:30: error: use of undefined value here causes illegal behavior
-// :165:30: note: when computing vector element at index '1'
-// :165:30: error: use of undefined value here causes illegal behavior
-// :165:30: note: when computing vector element at index '1'
-// :165:30: error: use of undefined value here causes illegal behavior
-// :165:30: note: when computing vector element at index '1'
-// :165:30: error: use of undefined value here causes illegal behavior
-// :165:30: note: when computing vector element at index '0'
-// :165:30: error: use of undefined value here causes illegal behavior
-// :165:30: note: when computing vector element at index '0'
-// :165:30: error: use of undefined value here causes illegal behavior
-// :165:30: note: when computing vector element at index '0'
-// :165:30: error: use of undefined value here causes illegal behavior
-// :165:30: note: when computing vector element at index '0'
-// :165:30: error: use of undefined value here causes illegal behavior
-// :165:30: error: use of undefined value here causes illegal behavior
-// :165:30: error: use of undefined value here causes illegal behavior
-// :165:30: error: use of undefined value here causes illegal behavior
-// :165:30: error: use of undefined value here causes illegal behavior
-// :165:30: error: use of undefined value here causes illegal behavior
-// :165:30: error: use of undefined value here causes illegal behavior
-// :165:30: note: when computing vector element at index '1'
-// :165:30: error: use of undefined value here causes illegal behavior
-// :165:30: note: when computing vector element at index '1'
-// :165:30: error: use of undefined value here causes illegal behavior
-// :165:30: note: when computing vector element at index '1'
-// :165:30: error: use of undefined value here causes illegal behavior
-// :165:30: note: when computing vector element at index '1'
-// :165:30: error: use of undefined value here causes illegal behavior
-// :165:30: note: when computing vector element at index '0'
-// :165:30: error: use of undefined value here causes illegal behavior
-// :165:30: note: when computing vector element at index '0'
-// :165:30: error: use of undefined value here causes illegal behavior
-// :165:30: note: when computing vector element at index '0'
-// :165:30: error: use of undefined value here causes illegal behavior
-// :165:30: note: when computing vector element at index '0'
-// :169:30: error: use of undefined value here causes illegal behavior
-// :169:30: error: use of undefined value here causes illegal behavior
-// :169:30: error: use of undefined value here causes illegal behavior
-// :169:30: error: use of undefined value here causes illegal behavior
-// :169:30: error: use of undefined value here causes illegal behavior
-// :169:30: error: use of undefined value here causes illegal behavior
-// :169:30: error: use of undefined value here causes illegal behavior
-// :169:30: note: when computing vector element at index '1'
-// :169:30: error: use of undefined value here causes illegal behavior
-// :169:30: note: when computing vector element at index '1'
-// :169:30: error: use of undefined value here causes illegal behavior
-// :169:30: note: when computing vector element at index '1'
-// :169:30: error: use of undefined value here causes illegal behavior
-// :169:30: note: when computing vector element at index '1'
-// :169:30: error: use of undefined value here causes illegal behavior
-// :169:30: note: when computing vector element at index '0'
-// :169:30: error: use of undefined value here causes illegal behavior
-// :169:30: note: when computing vector element at index '0'
-// :169:30: error: use of undefined value here causes illegal behavior
-// :169:30: note: when computing vector element at index '0'
-// :169:30: error: use of undefined value here causes illegal behavior
-// :169:30: note: when computing vector element at index '0'
-// :169:30: error: use of undefined value here causes illegal behavior
-// :169:30: error: use of undefined value here causes illegal behavior
-// :169:30: error: use of undefined value here causes illegal behavior
-// :169:30: error: use of undefined value here causes illegal behavior
-// :169:30: error: use of undefined value here causes illegal behavior
-// :169:30: error: use of undefined value here causes illegal behavior
-// :169:30: error: use of undefined value here causes illegal behavior
-// :169:30: note: when computing vector element at index '1'
-// :169:30: error: use of undefined value here causes illegal behavior
-// :169:30: note: when computing vector element at index '1'
-// :169:30: error: use of undefined value here causes illegal behavior
-// :169:30: note: when computing vector element at index '1'
-// :169:30: error: use of undefined value here causes illegal behavior
-// :169:30: note: when computing vector element at index '1'
-// :169:30: error: use of undefined value here causes illegal behavior
-// :169:30: note: when computing vector element at index '0'
-// :169:30: error: use of undefined value here causes illegal behavior
-// :169:30: note: when computing vector element at index '0'
-// :169:30: error: use of undefined value here causes illegal behavior
-// :169:30: note: when computing vector element at index '0'
-// :169:30: error: use of undefined value here causes illegal behavior
-// :169:30: note: when computing vector element at index '0'
-// :169:30: error: use of undefined value here causes illegal behavior
-// :169:30: error: use of undefined value here causes illegal behavior
-// :169:30: error: use of undefined value here causes illegal behavior
-// :169:30: error: use of undefined value here causes illegal behavior
-// :169:30: error: use of undefined value here causes illegal behavior
-// :169:30: error: use of undefined value here causes illegal behavior
-// :169:30: error: use of undefined value here causes illegal behavior
-// :169:30: note: when computing vector element at index '1'
-// :169:30: error: use of undefined value here causes illegal behavior
-// :169:30: note: when computing vector element at index '1'
-// :169:30: error: use of undefined value here causes illegal behavior
-// :169:30: note: when computing vector element at index '1'
-// :169:30: error: use of undefined value here causes illegal behavior
-// :169:30: note: when computing vector element at index '1'
-// :169:30: error: use of undefined value here causes illegal behavior
-// :169:30: note: when computing vector element at index '0'
-// :169:30: error: use of undefined value here causes illegal behavior
-// :169:30: note: when computing vector element at index '0'
-// :169:30: error: use of undefined value here causes illegal behavior
-// :169:30: note: when computing vector element at index '0'
-// :169:30: error: use of undefined value here causes illegal behavior
-// :169:30: note: when computing vector element at index '0'
-// :169:30: error: use of undefined value here causes illegal behavior
-// :169:30: error: use of undefined value here causes illegal behavior
-// :169:30: error: use of undefined value here causes illegal behavior
-// :169:30: error: use of undefined value here causes illegal behavior
-// :169:30: error: use of undefined value here causes illegal behavior
-// :169:30: error: use of undefined value here causes illegal behavior
-// :169:30: error: use of undefined value here causes illegal behavior
-// :169:30: note: when computing vector element at index '1'
-// :169:30: error: use of undefined value here causes illegal behavior
-// :169:30: note: when computing vector element at index '1'
-// :169:30: error: use of undefined value here causes illegal behavior
-// :169:30: note: when computing vector element at index '1'
-// :169:30: error: use of undefined value here causes illegal behavior
-// :169:30: note: when computing vector element at index '1'
-// :169:30: error: use of undefined value here causes illegal behavior
-// :169:30: note: when computing vector element at index '0'
-// :169:30: error: use of undefined value here causes illegal behavior
-// :169:30: note: when computing vector element at index '0'
-// :169:30: error: use of undefined value here causes illegal behavior
-// :169:30: note: when computing vector element at index '0'
-// :169:30: error: use of undefined value here causes illegal behavior
-// :169:30: note: when computing vector element at index '0'
-// :169:30: error: use of undefined value here causes illegal behavior
-// :169:30: error: use of undefined value here causes illegal behavior
-// :169:30: error: use of undefined value here causes illegal behavior
-// :169:30: error: use of undefined value here causes illegal behavior
-// :169:30: error: use of undefined value here causes illegal behavior
-// :169:30: error: use of undefined value here causes illegal behavior
-// :169:30: error: use of undefined value here causes illegal behavior
-// :169:30: note: when computing vector element at index '1'
-// :169:30: error: use of undefined value here causes illegal behavior
-// :169:30: note: when computing vector element at index '1'
-// :169:30: error: use of undefined value here causes illegal behavior
-// :169:30: note: when computing vector element at index '1'
-// :169:30: error: use of undefined value here causes illegal behavior
-// :169:30: note: when computing vector element at index '1'
-// :169:30: error: use of undefined value here causes illegal behavior
-// :169:30: note: when computing vector element at index '0'
-// :169:30: error: use of undefined value here causes illegal behavior
-// :169:30: note: when computing vector element at index '0'
-// :169:30: error: use of undefined value here causes illegal behavior
-// :169:30: note: when computing vector element at index '0'
-// :169:30: error: use of undefined value here causes illegal behavior
-// :169:30: note: when computing vector element at index '0'
-// :169:30: error: use of undefined value here causes illegal behavior
-// :169:30: error: use of undefined value here causes illegal behavior
-// :169:30: error: use of undefined value here causes illegal behavior
-// :169:30: error: use of undefined value here causes illegal behavior
-// :169:30: error: use of undefined value here causes illegal behavior
-// :169:30: error: use of undefined value here causes illegal behavior
-// :169:30: error: use of undefined value here causes illegal behavior
-// :169:30: note: when computing vector element at index '1'
-// :169:30: error: use of undefined value here causes illegal behavior
-// :169:30: note: when computing vector element at index '1'
-// :169:30: error: use of undefined value here causes illegal behavior
-// :169:30: note: when computing vector element at index '1'
-// :169:30: error: use of undefined value here causes illegal behavior
-// :169:30: note: when computing vector element at index '1'
-// :169:30: error: use of undefined value here causes illegal behavior
-// :169:30: note: when computing vector element at index '0'
-// :169:30: error: use of undefined value here causes illegal behavior
-// :169:30: note: when computing vector element at index '0'
-// :169:30: error: use of undefined value here causes illegal behavior
-// :169:30: note: when computing vector element at index '0'
-// :169:30: error: use of undefined value here causes illegal behavior
-// :169:30: note: when computing vector element at index '0'
-// :169:30: error: use of undefined value here causes illegal behavior
-// :169:30: error: use of undefined value here causes illegal behavior
-// :169:30: error: use of undefined value here causes illegal behavior
-// :169:30: error: use of undefined value here causes illegal behavior
-// :169:30: error: use of undefined value here causes illegal behavior
-// :169:30: error: use of undefined value here causes illegal behavior
-// :169:30: error: use of undefined value here causes illegal behavior
-// :169:30: note: when computing vector element at index '1'
-// :169:30: error: use of undefined value here causes illegal behavior
-// :169:30: note: when computing vector element at index '1'
-// :169:30: error: use of undefined value here causes illegal behavior
-// :169:30: note: when computing vector element at index '1'
-// :169:30: error: use of undefined value here causes illegal behavior
-// :169:30: note: when computing vector element at index '1'
-// :169:30: error: use of undefined value here causes illegal behavior
-// :169:30: note: when computing vector element at index '0'
-// :169:30: error: use of undefined value here causes illegal behavior
-// :169:30: note: when computing vector element at index '0'
-// :169:30: error: use of undefined value here causes illegal behavior
-// :169:30: note: when computing vector element at index '0'
-// :169:30: error: use of undefined value here causes illegal behavior
-// :169:30: note: when computing vector element at index '0'
-// :169:30: error: use of undefined value here causes illegal behavior
-// :169:30: error: use of undefined value here causes illegal behavior
-// :169:30: error: use of undefined value here causes illegal behavior
-// :169:30: error: use of undefined value here causes illegal behavior
-// :169:30: error: use of undefined value here causes illegal behavior
-// :169:30: error: use of undefined value here causes illegal behavior
-// :169:30: error: use of undefined value here causes illegal behavior
-// :169:30: note: when computing vector element at index '1'
-// :169:30: error: use of undefined value here causes illegal behavior
-// :169:30: note: when computing vector element at index '1'
-// :169:30: error: use of undefined value here causes illegal behavior
-// :169:30: note: when computing vector element at index '1'
-// :169:30: error: use of undefined value here causes illegal behavior
-// :169:30: note: when computing vector element at index '1'
-// :169:30: error: use of undefined value here causes illegal behavior
-// :169:30: note: when computing vector element at index '0'
-// :169:30: error: use of undefined value here causes illegal behavior
-// :169:30: note: when computing vector element at index '0'
-// :169:30: error: use of undefined value here causes illegal behavior
-// :169:30: note: when computing vector element at index '0'
-// :169:30: error: use of undefined value here causes illegal behavior
-// :169:30: note: when computing vector element at index '0'
-// :169:30: error: use of undefined value here causes illegal behavior
-// :169:30: error: use of undefined value here causes illegal behavior
-// :169:30: error: use of undefined value here causes illegal behavior
-// :169:30: error: use of undefined value here causes illegal behavior
-// :169:30: error: use of undefined value here causes illegal behavior
-// :169:30: error: use of undefined value here causes illegal behavior
-// :169:30: error: use of undefined value here causes illegal behavior
-// :169:30: note: when computing vector element at index '1'
-// :169:30: error: use of undefined value here causes illegal behavior
-// :169:30: note: when computing vector element at index '1'
-// :169:30: error: use of undefined value here causes illegal behavior
-// :169:30: note: when computing vector element at index '1'
-// :169:30: error: use of undefined value here causes illegal behavior
-// :169:30: note: when computing vector element at index '1'
-// :169:30: error: use of undefined value here causes illegal behavior
-// :169:30: note: when computing vector element at index '0'
-// :169:30: error: use of undefined value here causes illegal behavior
-// :169:30: note: when computing vector element at index '0'
-// :169:30: error: use of undefined value here causes illegal behavior
-// :169:30: note: when computing vector element at index '0'
-// :169:30: error: use of undefined value here causes illegal behavior
-// :169:30: note: when computing vector element at index '0'
-// :169:30: error: use of undefined value here causes illegal behavior
-// :169:30: error: use of undefined value here causes illegal behavior
-// :169:30: error: use of undefined value here causes illegal behavior
-// :169:30: error: use of undefined value here causes illegal behavior
-// :169:30: error: use of undefined value here causes illegal behavior
-// :169:30: error: use of undefined value here causes illegal behavior
-// :169:30: error: use of undefined value here causes illegal behavior
-// :169:30: note: when computing vector element at index '1'
-// :169:30: error: use of undefined value here causes illegal behavior
-// :169:30: note: when computing vector element at index '1'
-// :169:30: error: use of undefined value here causes illegal behavior
-// :169:30: note: when computing vector element at index '1'
-// :169:30: error: use of undefined value here causes illegal behavior
-// :169:30: note: when computing vector element at index '1'
-// :169:30: error: use of undefined value here causes illegal behavior
-// :169:30: note: when computing vector element at index '0'
-// :169:30: error: use of undefined value here causes illegal behavior
-// :169:30: note: when computing vector element at index '0'
-// :169:30: error: use of undefined value here causes illegal behavior
-// :169:30: note: when computing vector element at index '0'
-// :169:30: error: use of undefined value here causes illegal behavior
-// :169:30: note: when computing vector element at index '0'
-// :169:30: error: use of undefined value here causes illegal behavior
-// :169:30: error: use of undefined value here causes illegal behavior
-// :169:30: error: use of undefined value here causes illegal behavior
-// :169:30: error: use of undefined value here causes illegal behavior
-// :169:30: error: use of undefined value here causes illegal behavior
-// :169:30: error: use of undefined value here causes illegal behavior
-// :169:30: error: use of undefined value here causes illegal behavior
-// :169:30: note: when computing vector element at index '1'
-// :169:30: error: use of undefined value here causes illegal behavior
-// :169:30: note: when computing vector element at index '1'
-// :169:30: error: use of undefined value here causes illegal behavior
-// :169:30: note: when computing vector element at index '1'
-// :169:30: error: use of undefined value here causes illegal behavior
-// :169:30: note: when computing vector element at index '1'
-// :169:30: error: use of undefined value here causes illegal behavior
-// :169:30: note: when computing vector element at index '0'
-// :169:30: error: use of undefined value here causes illegal behavior
-// :169:30: note: when computing vector element at index '0'
-// :169:30: error: use of undefined value here causes illegal behavior
-// :169:30: note: when computing vector element at index '0'
-// :169:30: error: use of undefined value here causes illegal behavior
-// :169:30: note: when computing vector element at index '0'
-// :173:25: error: use of undefined value here causes illegal behavior
-// :173:25: error: use of undefined value here causes illegal behavior
-// :173:25: error: use of undefined value here causes illegal behavior
-// :173:25: error: use of undefined value here causes illegal behavior
-// :173:25: error: use of undefined value here causes illegal behavior
-// :173:25: error: use of undefined value here causes illegal behavior
-// :173:25: error: use of undefined value here causes illegal behavior
-// :173:25: note: when computing vector element at index '1'
-// :173:25: error: use of undefined value here causes illegal behavior
-// :173:25: note: when computing vector element at index '1'
-// :173:25: error: use of undefined value here causes illegal behavior
-// :173:25: note: when computing vector element at index '1'
-// :173:25: error: use of undefined value here causes illegal behavior
-// :173:25: note: when computing vector element at index '1'
-// :173:25: error: use of undefined value here causes illegal behavior
-// :173:25: note: when computing vector element at index '0'
-// :173:25: error: use of undefined value here causes illegal behavior
-// :173:25: note: when computing vector element at index '0'
-// :173:25: error: use of undefined value here causes illegal behavior
-// :173:25: note: when computing vector element at index '0'
-// :173:25: error: use of undefined value here causes illegal behavior
-// :173:25: note: when computing vector element at index '0'
-// :173:25: error: use of undefined value here causes illegal behavior
-// :173:25: error: use of undefined value here causes illegal behavior
-// :173:25: error: use of undefined value here causes illegal behavior
-// :173:25: error: use of undefined value here causes illegal behavior
-// :173:25: error: use of undefined value here causes illegal behavior
-// :173:25: error: use of undefined value here causes illegal behavior
-// :173:25: error: use of undefined value here causes illegal behavior
-// :173:25: note: when computing vector element at index '1'
-// :173:25: error: use of undefined value here causes illegal behavior
-// :173:25: note: when computing vector element at index '1'
-// :173:25: error: use of undefined value here causes illegal behavior
-// :173:25: note: when computing vector element at index '1'
-// :173:25: error: use of undefined value here causes illegal behavior
-// :173:25: note: when computing vector element at index '1'
-// :173:25: error: use of undefined value here causes illegal behavior
-// :173:25: note: when computing vector element at index '0'
-// :173:25: error: use of undefined value here causes illegal behavior
-// :173:25: note: when computing vector element at index '0'
-// :173:25: error: use of undefined value here causes illegal behavior
-// :173:25: note: when computing vector element at index '0'
-// :173:25: error: use of undefined value here causes illegal behavior
-// :173:25: note: when computing vector element at index '0'
-// :173:25: error: use of undefined value here causes illegal behavior
-// :173:25: error: use of undefined value here causes illegal behavior
-// :173:25: error: use of undefined value here causes illegal behavior
-// :173:25: error: use of undefined value here causes illegal behavior
-// :173:25: error: use of undefined value here causes illegal behavior
-// :173:25: error: use of undefined value here causes illegal behavior
-// :173:25: error: use of undefined value here causes illegal behavior
-// :173:25: note: when computing vector element at index '1'
-// :173:25: error: use of undefined value here causes illegal behavior
-// :173:25: note: when computing vector element at index '1'
-// :173:25: error: use of undefined value here causes illegal behavior
-// :173:25: note: when computing vector element at index '1'
-// :173:25: error: use of undefined value here causes illegal behavior
-// :173:25: note: when computing vector element at index '1'
-// :173:25: error: use of undefined value here causes illegal behavior
-// :173:25: note: when computing vector element at index '0'
-// :173:25: error: use of undefined value here causes illegal behavior
-// :173:25: note: when computing vector element at index '0'
-// :173:25: error: use of undefined value here causes illegal behavior
-// :173:25: note: when computing vector element at index '0'
-// :173:25: error: use of undefined value here causes illegal behavior
-// :173:25: note: when computing vector element at index '0'
-// :173:25: error: use of undefined value here causes illegal behavior
-// :173:25: error: use of undefined value here causes illegal behavior
-// :173:25: error: use of undefined value here causes illegal behavior
-// :173:25: error: use of undefined value here causes illegal behavior
-// :173:25: error: use of undefined value here causes illegal behavior
-// :173:25: error: use of undefined value here causes illegal behavior
-// :173:25: error: use of undefined value here causes illegal behavior
-// :173:25: note: when computing vector element at index '1'
-// :173:25: error: use of undefined value here causes illegal behavior
-// :173:25: note: when computing vector element at index '1'
-// :173:25: error: use of undefined value here causes illegal behavior
-// :173:25: note: when computing vector element at index '1'
-// :173:25: error: use of undefined value here causes illegal behavior
-// :173:25: note: when computing vector element at index '1'
-// :173:25: error: use of undefined value here causes illegal behavior
-// :173:25: note: when computing vector element at index '0'
-// :173:25: error: use of undefined value here causes illegal behavior
-// :173:25: note: when computing vector element at index '0'
-// :173:25: error: use of undefined value here causes illegal behavior
-// :173:25: note: when computing vector element at index '0'
-// :173:25: error: use of undefined value here causes illegal behavior
-// :173:25: note: when computing vector element at index '0'
-// :173:25: error: use of undefined value here causes illegal behavior
-// :173:25: error: use of undefined value here causes illegal behavior
-// :173:25: error: use of undefined value here causes illegal behavior
-// :173:25: error: use of undefined value here causes illegal behavior
-// :173:25: error: use of undefined value here causes illegal behavior
-// :173:25: error: use of undefined value here causes illegal behavior
-// :173:25: error: use of undefined value here causes illegal behavior
-// :173:25: note: when computing vector element at index '1'
-// :173:25: error: use of undefined value here causes illegal behavior
-// :173:25: note: when computing vector element at index '1'
-// :173:25: error: use of undefined value here causes illegal behavior
-// :173:25: note: when computing vector element at index '1'
-// :173:25: error: use of undefined value here causes illegal behavior
-// :173:25: note: when computing vector element at index '1'
-// :173:25: error: use of undefined value here causes illegal behavior
-// :173:25: note: when computing vector element at index '0'
-// :173:25: error: use of undefined value here causes illegal behavior
-// :173:25: note: when computing vector element at index '0'
-// :173:25: error: use of undefined value here causes illegal behavior
-// :173:25: note: when computing vector element at index '0'
-// :173:25: error: use of undefined value here causes illegal behavior
-// :173:25: note: when computing vector element at index '0'
-// :173:25: error: use of undefined value here causes illegal behavior
-// :173:25: error: use of undefined value here causes illegal behavior
-// :173:25: error: use of undefined value here causes illegal behavior
-// :173:25: error: use of undefined value here causes illegal behavior
-// :173:25: error: use of undefined value here causes illegal behavior
-// :173:25: error: use of undefined value here causes illegal behavior
-// :173:25: error: use of undefined value here causes illegal behavior
-// :173:25: note: when computing vector element at index '1'
-// :173:25: error: use of undefined value here causes illegal behavior
-// :173:25: note: when computing vector element at index '1'
-// :173:25: error: use of undefined value here causes illegal behavior
-// :173:25: note: when computing vector element at index '1'
-// :173:25: error: use of undefined value here causes illegal behavior
-// :173:25: note: when computing vector element at index '1'
-// :173:25: error: use of undefined value here causes illegal behavior
-// :173:25: note: when computing vector element at index '0'
-// :173:25: error: use of undefined value here causes illegal behavior
-// :173:25: note: when computing vector element at index '0'
-// :173:25: error: use of undefined value here causes illegal behavior
-// :173:25: note: when computing vector element at index '0'
-// :173:25: error: use of undefined value here causes illegal behavior
-// :173:25: note: when computing vector element at index '0'
-// :173:25: error: use of undefined value here causes illegal behavior
-// :173:25: error: use of undefined value here causes illegal behavior
-// :173:25: error: use of undefined value here causes illegal behavior
-// :173:25: error: use of undefined value here causes illegal behavior
-// :173:25: error: use of undefined value here causes illegal behavior
-// :173:25: error: use of undefined value here causes illegal behavior
-// :173:25: error: use of undefined value here causes illegal behavior
-// :173:25: note: when computing vector element at index '1'
-// :173:25: error: use of undefined value here causes illegal behavior
-// :173:25: note: when computing vector element at index '1'
-// :173:25: error: use of undefined value here causes illegal behavior
-// :173:25: note: when computing vector element at index '1'
-// :173:25: error: use of undefined value here causes illegal behavior
-// :173:25: note: when computing vector element at index '1'
-// :173:25: error: use of undefined value here causes illegal behavior
-// :173:25: note: when computing vector element at index '0'
-// :173:25: error: use of undefined value here causes illegal behavior
-// :173:25: note: when computing vector element at index '0'
-// :173:25: error: use of undefined value here causes illegal behavior
-// :173:25: note: when computing vector element at index '0'
-// :173:25: error: use of undefined value here causes illegal behavior
-// :173:25: note: when computing vector element at index '0'
-// :173:25: error: use of undefined value here causes illegal behavior
-// :173:25: error: use of undefined value here causes illegal behavior
-// :173:25: error: use of undefined value here causes illegal behavior
-// :173:25: error: use of undefined value here causes illegal behavior
-// :173:25: error: use of undefined value here causes illegal behavior
-// :173:25: error: use of undefined value here causes illegal behavior
-// :173:25: error: use of undefined value here causes illegal behavior
-// :173:25: note: when computing vector element at index '1'
-// :173:25: error: use of undefined value here causes illegal behavior
-// :173:25: note: when computing vector element at index '1'
-// :173:25: error: use of undefined value here causes illegal behavior
-// :173:25: note: when computing vector element at index '1'
-// :173:25: error: use of undefined value here causes illegal behavior
-// :173:25: note: when computing vector element at index '1'
-// :173:25: error: use of undefined value here causes illegal behavior
-// :173:25: note: when computing vector element at index '0'
-// :173:25: error: use of undefined value here causes illegal behavior
-// :173:25: note: when computing vector element at index '0'
-// :173:25: error: use of undefined value here causes illegal behavior
-// :173:25: note: when computing vector element at index '0'
-// :173:25: error: use of undefined value here causes illegal behavior
-// :173:25: note: when computing vector element at index '0'
-// :173:25: error: use of undefined value here causes illegal behavior
-// :173:25: error: use of undefined value here causes illegal behavior
-// :173:25: error: use of undefined value here causes illegal behavior
-// :173:25: error: use of undefined value here causes illegal behavior
-// :173:25: error: use of undefined value here causes illegal behavior
-// :173:25: error: use of undefined value here causes illegal behavior
-// :173:25: error: use of undefined value here causes illegal behavior
-// :173:25: note: when computing vector element at index '1'
-// :173:25: error: use of undefined value here causes illegal behavior
-// :173:25: note: when computing vector element at index '1'
-// :173:25: error: use of undefined value here causes illegal behavior
-// :173:25: note: when computing vector element at index '1'
-// :173:25: error: use of undefined value here causes illegal behavior
-// :173:25: note: when computing vector element at index '1'
-// :173:25: error: use of undefined value here causes illegal behavior
-// :173:25: note: when computing vector element at index '0'
-// :173:25: error: use of undefined value here causes illegal behavior
-// :173:25: note: when computing vector element at index '0'
-// :173:25: error: use of undefined value here causes illegal behavior
-// :173:25: note: when computing vector element at index '0'
-// :173:25: error: use of undefined value here causes illegal behavior
-// :173:25: note: when computing vector element at index '0'
-// :173:25: error: use of undefined value here causes illegal behavior
-// :173:25: error: use of undefined value here causes illegal behavior
-// :173:25: error: use of undefined value here causes illegal behavior
-// :173:25: error: use of undefined value here causes illegal behavior
-// :173:25: error: use of undefined value here causes illegal behavior
-// :173:25: error: use of undefined value here causes illegal behavior
-// :173:25: error: use of undefined value here causes illegal behavior
-// :173:25: note: when computing vector element at index '1'
-// :173:25: error: use of undefined value here causes illegal behavior
-// :173:25: note: when computing vector element at index '1'
-// :173:25: error: use of undefined value here causes illegal behavior
-// :173:25: note: when computing vector element at index '1'
-// :173:25: error: use of undefined value here causes illegal behavior
-// :173:25: note: when computing vector element at index '1'
-// :173:25: error: use of undefined value here causes illegal behavior
-// :173:25: note: when computing vector element at index '0'
-// :173:25: error: use of undefined value here causes illegal behavior
-// :173:25: note: when computing vector element at index '0'
-// :173:25: error: use of undefined value here causes illegal behavior
-// :173:25: note: when computing vector element at index '0'
-// :173:25: error: use of undefined value here causes illegal behavior
-// :173:25: note: when computing vector element at index '0'
-// :173:25: error: use of undefined value here causes illegal behavior
-// :173:25: error: use of undefined value here causes illegal behavior
-// :173:25: error: use of undefined value here causes illegal behavior
-// :173:25: error: use of undefined value here causes illegal behavior
-// :173:25: error: use of undefined value here causes illegal behavior
-// :173:25: error: use of undefined value here causes illegal behavior
-// :173:25: error: use of undefined value here causes illegal behavior
-// :173:25: note: when computing vector element at index '1'
-// :173:25: error: use of undefined value here causes illegal behavior
-// :173:25: note: when computing vector element at index '1'
-// :173:25: error: use of undefined value here causes illegal behavior
-// :173:25: note: when computing vector element at index '1'
-// :173:25: error: use of undefined value here causes illegal behavior
-// :173:25: note: when computing vector element at index '1'
-// :173:25: error: use of undefined value here causes illegal behavior
-// :173:25: note: when computing vector element at index '0'
-// :173:25: error: use of undefined value here causes illegal behavior
-// :173:25: note: when computing vector element at index '0'
-// :173:25: error: use of undefined value here causes illegal behavior
-// :173:25: note: when computing vector element at index '0'
-// :173:25: error: use of undefined value here causes illegal behavior
-// :173:25: note: when computing vector element at index '0'
-// :177:25: error: use of undefined value here causes illegal behavior
-// :177:25: error: use of undefined value here causes illegal behavior
-// :177:25: error: use of undefined value here causes illegal behavior
-// :177:25: error: use of undefined value here causes illegal behavior
-// :177:25: error: use of undefined value here causes illegal behavior
-// :177:25: error: use of undefined value here causes illegal behavior
-// :177:25: error: use of undefined value here causes illegal behavior
-// :177:25: note: when computing vector element at index '1'
-// :177:25: error: use of undefined value here causes illegal behavior
-// :177:25: note: when computing vector element at index '1'
-// :177:25: error: use of undefined value here causes illegal behavior
-// :177:25: note: when computing vector element at index '1'
-// :177:25: error: use of undefined value here causes illegal behavior
-// :177:25: note: when computing vector element at index '1'
-// :177:25: error: use of undefined value here causes illegal behavior
-// :177:25: note: when computing vector element at index '0'
-// :177:25: error: use of undefined value here causes illegal behavior
-// :177:25: note: when computing vector element at index '0'
-// :177:25: error: use of undefined value here causes illegal behavior
-// :177:25: note: when computing vector element at index '0'
-// :177:25: error: use of undefined value here causes illegal behavior
-// :177:25: note: when computing vector element at index '0'
-// :177:25: error: use of undefined value here causes illegal behavior
-// :177:25: error: use of undefined value here causes illegal behavior
-// :177:25: error: use of undefined value here causes illegal behavior
-// :177:25: error: use of undefined value here causes illegal behavior
-// :177:25: error: use of undefined value here causes illegal behavior
-// :177:25: error: use of undefined value here causes illegal behavior
-// :177:25: error: use of undefined value here causes illegal behavior
-// :177:25: note: when computing vector element at index '1'
-// :177:25: error: use of undefined value here causes illegal behavior
-// :177:25: note: when computing vector element at index '1'
-// :177:25: error: use of undefined value here causes illegal behavior
-// :177:25: note: when computing vector element at index '1'
-// :177:25: error: use of undefined value here causes illegal behavior
-// :177:25: note: when computing vector element at index '1'
-// :177:25: error: use of undefined value here causes illegal behavior
-// :177:25: note: when computing vector element at index '0'
-// :177:25: error: use of undefined value here causes illegal behavior
-// :177:25: note: when computing vector element at index '0'
-// :177:25: error: use of undefined value here causes illegal behavior
-// :177:25: note: when computing vector element at index '0'
-// :177:25: error: use of undefined value here causes illegal behavior
-// :177:25: note: when computing vector element at index '0'
-// :177:25: error: use of undefined value here causes illegal behavior
-// :177:25: error: use of undefined value here causes illegal behavior
-// :177:25: error: use of undefined value here causes illegal behavior
-// :177:25: error: use of undefined value here causes illegal behavior
-// :177:25: error: use of undefined value here causes illegal behavior
-// :177:25: error: use of undefined value here causes illegal behavior
-// :177:25: error: use of undefined value here causes illegal behavior
-// :177:25: note: when computing vector element at index '1'
-// :177:25: error: use of undefined value here causes illegal behavior
-// :177:25: note: when computing vector element at index '1'
-// :177:25: error: use of undefined value here causes illegal behavior
-// :177:25: note: when computing vector element at index '1'
-// :177:25: error: use of undefined value here causes illegal behavior
-// :177:25: note: when computing vector element at index '1'
-// :177:25: error: use of undefined value here causes illegal behavior
-// :177:25: note: when computing vector element at index '0'
-// :177:25: error: use of undefined value here causes illegal behavior
-// :177:25: note: when computing vector element at index '0'
-// :177:25: error: use of undefined value here causes illegal behavior
-// :177:25: note: when computing vector element at index '0'
-// :177:25: error: use of undefined value here causes illegal behavior
-// :177:25: note: when computing vector element at index '0'
-// :177:25: error: use of undefined value here causes illegal behavior
-// :177:25: error: use of undefined value here causes illegal behavior
-// :177:25: error: use of undefined value here causes illegal behavior
-// :177:25: error: use of undefined value here causes illegal behavior
-// :177:25: error: use of undefined value here causes illegal behavior
-// :177:25: error: use of undefined value here causes illegal behavior
-// :177:25: error: use of undefined value here causes illegal behavior
-// :177:25: note: when computing vector element at index '1'
-// :177:25: error: use of undefined value here causes illegal behavior
-// :177:25: note: when computing vector element at index '1'
-// :177:25: error: use of undefined value here causes illegal behavior
-// :177:25: note: when computing vector element at index '1'
-// :177:25: error: use of undefined value here causes illegal behavior
-// :177:25: note: when computing vector element at index '1'
-// :177:25: error: use of undefined value here causes illegal behavior
-// :177:25: note: when computing vector element at index '0'
-// :177:25: error: use of undefined value here causes illegal behavior
-// :177:25: note: when computing vector element at index '0'
-// :177:25: error: use of undefined value here causes illegal behavior
-// :177:25: note: when computing vector element at index '0'
-// :177:25: error: use of undefined value here causes illegal behavior
-// :177:25: note: when computing vector element at index '0'
-// :177:25: error: use of undefined value here causes illegal behavior
-// :177:25: error: use of undefined value here causes illegal behavior
-// :177:25: error: use of undefined value here causes illegal behavior
-// :177:25: error: use of undefined value here causes illegal behavior
-// :177:25: error: use of undefined value here causes illegal behavior
-// :177:25: error: use of undefined value here causes illegal behavior
-// :177:25: error: use of undefined value here causes illegal behavior
-// :177:25: note: when computing vector element at index '1'
-// :177:25: error: use of undefined value here causes illegal behavior
-// :177:25: note: when computing vector element at index '1'
-// :177:25: error: use of undefined value here causes illegal behavior
-// :177:25: note: when computing vector element at index '1'
-// :177:25: error: use of undefined value here causes illegal behavior
-// :177:25: note: when computing vector element at index '1'
-// :177:25: error: use of undefined value here causes illegal behavior
-// :177:25: note: when computing vector element at index '0'
-// :177:25: error: use of undefined value here causes illegal behavior
-// :177:25: note: when computing vector element at index '0'
-// :177:25: error: use of undefined value here causes illegal behavior
-// :177:25: note: when computing vector element at index '0'
-// :177:25: error: use of undefined value here causes illegal behavior
-// :177:25: note: when computing vector element at index '0'
-// :177:25: error: use of undefined value here causes illegal behavior
-// :177:25: error: use of undefined value here causes illegal behavior
-// :177:25: error: use of undefined value here causes illegal behavior
-// :177:25: error: use of undefined value here causes illegal behavior
-// :177:25: error: use of undefined value here causes illegal behavior
-// :177:25: error: use of undefined value here causes illegal behavior
-// :177:25: error: use of undefined value here causes illegal behavior
-// :177:25: note: when computing vector element at index '1'
-// :177:25: error: use of undefined value here causes illegal behavior
-// :177:25: note: when computing vector element at index '1'
-// :177:25: error: use of undefined value here causes illegal behavior
-// :177:25: note: when computing vector element at index '1'
-// :177:25: error: use of undefined value here causes illegal behavior
-// :177:25: note: when computing vector element at index '1'
-// :177:25: error: use of undefined value here causes illegal behavior
-// :177:25: note: when computing vector element at index '0'
-// :177:25: error: use of undefined value here causes illegal behavior
-// :177:25: note: when computing vector element at index '0'
-// :177:25: error: use of undefined value here causes illegal behavior
-// :177:25: note: when computing vector element at index '0'
-// :177:25: error: use of undefined value here causes illegal behavior
-// :177:25: note: when computing vector element at index '0'
-// :177:25: error: use of undefined value here causes illegal behavior
-// :177:25: error: use of undefined value here causes illegal behavior
-// :177:25: error: use of undefined value here causes illegal behavior
-// :177:25: error: use of undefined value here causes illegal behavior
-// :177:25: error: use of undefined value here causes illegal behavior
-// :177:25: error: use of undefined value here causes illegal behavior
-// :177:25: error: use of undefined value here causes illegal behavior
-// :177:25: note: when computing vector element at index '1'
-// :177:25: error: use of undefined value here causes illegal behavior
-// :177:25: note: when computing vector element at index '1'
-// :177:25: error: use of undefined value here causes illegal behavior
-// :177:25: note: when computing vector element at index '1'
-// :177:25: error: use of undefined value here causes illegal behavior
-// :177:25: note: when computing vector element at index '1'
-// :177:25: error: use of undefined value here causes illegal behavior
-// :177:25: note: when computing vector element at index '0'
-// :177:25: error: use of undefined value here causes illegal behavior
-// :177:25: note: when computing vector element at index '0'
-// :177:25: error: use of undefined value here causes illegal behavior
-// :177:25: note: when computing vector element at index '0'
-// :177:25: error: use of undefined value here causes illegal behavior
-// :177:25: note: when computing vector element at index '0'
-// :177:25: error: use of undefined value here causes illegal behavior
-// :177:25: error: use of undefined value here causes illegal behavior
-// :177:25: error: use of undefined value here causes illegal behavior
-// :177:25: error: use of undefined value here causes illegal behavior
-// :177:25: error: use of undefined value here causes illegal behavior
-// :177:25: error: use of undefined value here causes illegal behavior
-// :177:25: error: use of undefined value here causes illegal behavior
-// :177:25: note: when computing vector element at index '1'
-// :177:25: error: use of undefined value here causes illegal behavior
-// :177:25: note: when computing vector element at index '1'
-// :177:25: error: use of undefined value here causes illegal behavior
-// :177:25: note: when computing vector element at index '1'
-// :177:25: error: use of undefined value here causes illegal behavior
-// :177:25: note: when computing vector element at index '1'
-// :177:25: error: use of undefined value here causes illegal behavior
-// :177:25: note: when computing vector element at index '0'
-// :177:25: error: use of undefined value here causes illegal behavior
-// :177:25: note: when computing vector element at index '0'
-// :177:25: error: use of undefined value here causes illegal behavior
-// :177:25: note: when computing vector element at index '0'
-// :177:25: error: use of undefined value here causes illegal behavior
-// :177:25: note: when computing vector element at index '0'
-// :177:25: error: use of undefined value here causes illegal behavior
-// :177:25: error: use of undefined value here causes illegal behavior
-// :177:25: error: use of undefined value here causes illegal behavior
-// :177:25: error: use of undefined value here causes illegal behavior
-// :177:25: error: use of undefined value here causes illegal behavior
-// :177:25: error: use of undefined value here causes illegal behavior
-// :177:25: error: use of undefined value here causes illegal behavior
-// :177:25: note: when computing vector element at index '1'
-// :177:25: error: use of undefined value here causes illegal behavior
-// :177:25: note: when computing vector element at index '1'
-// :177:25: error: use of undefined value here causes illegal behavior
-// :177:25: note: when computing vector element at index '1'
-// :177:25: error: use of undefined value here causes illegal behavior
-// :177:25: note: when computing vector element at index '1'
-// :177:25: error: use of undefined value here causes illegal behavior
-// :177:25: note: when computing vector element at index '0'
-// :177:25: error: use of undefined value here causes illegal behavior
-// :177:25: note: when computing vector element at index '0'
-// :177:25: error: use of undefined value here causes illegal behavior
-// :177:25: note: when computing vector element at index '0'
-// :177:25: error: use of undefined value here causes illegal behavior
-// :177:25: note: when computing vector element at index '0'
-// :177:25: error: use of undefined value here causes illegal behavior
-// :177:25: error: use of undefined value here causes illegal behavior
-// :177:25: error: use of undefined value here causes illegal behavior
-// :177:25: error: use of undefined value here causes illegal behavior
-// :177:25: error: use of undefined value here causes illegal behavior
-// :177:25: error: use of undefined value here causes illegal behavior
-// :177:25: error: use of undefined value here causes illegal behavior
-// :177:25: note: when computing vector element at index '1'
-// :177:25: error: use of undefined value here causes illegal behavior
-// :177:25: note: when computing vector element at index '1'
-// :177:25: error: use of undefined value here causes illegal behavior
-// :177:25: note: when computing vector element at index '1'
-// :177:25: error: use of undefined value here causes illegal behavior
-// :177:25: note: when computing vector element at index '1'
-// :177:25: error: use of undefined value here causes illegal behavior
-// :177:25: note: when computing vector element at index '0'
-// :177:25: error: use of undefined value here causes illegal behavior
-// :177:25: note: when computing vector element at index '0'
-// :177:25: error: use of undefined value here causes illegal behavior
-// :177:25: note: when computing vector element at index '0'
-// :177:25: error: use of undefined value here causes illegal behavior
-// :177:25: note: when computing vector element at index '0'
-// :177:25: error: use of undefined value here causes illegal behavior
-// :177:25: error: use of undefined value here causes illegal behavior
-// :177:25: error: use of undefined value here causes illegal behavior
-// :177:25: error: use of undefined value here causes illegal behavior
-// :177:25: error: use of undefined value here causes illegal behavior
-// :177:25: error: use of undefined value here causes illegal behavior
-// :177:25: error: use of undefined value here causes illegal behavior
-// :177:25: note: when computing vector element at index '1'
-// :177:25: error: use of undefined value here causes illegal behavior
-// :177:25: note: when computing vector element at index '1'
-// :177:25: error: use of undefined value here causes illegal behavior
-// :177:25: note: when computing vector element at index '1'
-// :177:25: error: use of undefined value here causes illegal behavior
-// :177:25: note: when computing vector element at index '1'
-// :177:25: error: use of undefined value here causes illegal behavior
-// :177:25: note: when computing vector element at index '0'
-// :177:25: error: use of undefined value here causes illegal behavior
-// :177:25: note: when computing vector element at index '0'
-// :177:25: error: use of undefined value here causes illegal behavior
-// :177:25: note: when computing vector element at index '0'
-// :177:25: error: use of undefined value here causes illegal behavior
-// :177:25: note: when computing vector element at index '0'
+// :65:17: error: use of undefined value here causes illegal behavior
+// :65:17: error: use of undefined value here causes illegal behavior
+// :65:17: error: use of undefined value here causes illegal behavior
+// :65:17: note: when computing vector element at index '0'
+// :65:17: error: use of undefined value here causes illegal behavior
+// :65:17: note: when computing vector element at index '0'
+// :65:17: error: use of undefined value here causes illegal behavior
+// :65:17: note: when computing vector element at index '0'
+// :65:17: error: use of undefined value here causes illegal behavior
+// :65:17: note: when computing vector element at index '0'
+// :65:17: error: use of undefined value here causes illegal behavior
+// :65:17: note: when computing vector element at index '1'
+// :65:17: error: use of undefined value here causes illegal behavior
+// :65:17: note: when computing vector element at index '1'
+// :65:17: error: use of undefined value here causes illegal behavior
+// :65:17: note: when computing vector element at index '0'
+// :65:17: error: use of undefined value here causes illegal behavior
+// :65:17: note: when computing vector element at index '0'
+// :65:17: error: use of undefined value here causes illegal behavior
+// :65:17: note: when computing vector element at index '0'
+// :65:17: error: use of undefined value here causes illegal behavior
+// :65:17: note: when computing vector element at index '0'
+// :65:17: error: use of undefined value here causes illegal behavior
+// :65:17: error: use of undefined value here causes illegal behavior
+// :65:17: error: use of undefined value here causes illegal behavior
+// :65:17: note: when computing vector element at index '0'
+// :65:17: error: use of undefined value here causes illegal behavior
+// :65:17: note: when computing vector element at index '0'
+// :65:17: error: use of undefined value here causes illegal behavior
+// :65:17: note: when computing vector element at index '0'
+// :65:17: error: use of undefined value here causes illegal behavior
+// :65:17: note: when computing vector element at index '0'
+// :65:17: error: use of undefined value here causes illegal behavior
+// :65:17: note: when computing vector element at index '1'
+// :65:17: error: use of undefined value here causes illegal behavior
+// :65:17: note: when computing vector element at index '1'
+// :65:17: error: use of undefined value here causes illegal behavior
+// :65:17: note: when computing vector element at index '0'
+// :65:17: error: use of undefined value here causes illegal behavior
+// :65:17: note: when computing vector element at index '0'
+// :65:17: error: use of undefined value here causes illegal behavior
+// :65:17: note: when computing vector element at index '0'
+// :65:17: error: use of undefined value here causes illegal behavior
+// :65:17: note: when computing vector element at index '0'
+// :65:17: error: use of undefined value here causes illegal behavior
+// :65:17: error: use of undefined value here causes illegal behavior
+// :65:17: error: use of undefined value here causes illegal behavior
+// :65:17: note: when computing vector element at index '0'
+// :65:17: error: use of undefined value here causes illegal behavior
+// :65:17: note: when computing vector element at index '0'
+// :65:17: error: use of undefined value here causes illegal behavior
+// :65:17: note: when computing vector element at index '0'
+// :65:17: error: use of undefined value here causes illegal behavior
+// :65:17: note: when computing vector element at index '0'
+// :65:17: error: use of undefined value here causes illegal behavior
+// :65:17: note: when computing vector element at index '1'
+// :65:17: error: use of undefined value here causes illegal behavior
+// :65:17: note: when computing vector element at index '1'
+// :65:17: error: use of undefined value here causes illegal behavior
+// :65:17: note: when computing vector element at index '0'
+// :65:17: error: use of undefined value here causes illegal behavior
+// :65:17: note: when computing vector element at index '0'
+// :65:17: error: use of undefined value here causes illegal behavior
+// :65:17: note: when computing vector element at index '0'
+// :65:17: error: use of undefined value here causes illegal behavior
+// :65:17: note: when computing vector element at index '0'
+// :65:17: error: use of undefined value here causes illegal behavior
+// :65:17: error: use of undefined value here causes illegal behavior
+// :65:17: error: use of undefined value here causes illegal behavior
+// :65:17: note: when computing vector element at index '0'
+// :65:17: error: use of undefined value here causes illegal behavior
+// :65:17: note: when computing vector element at index '0'
+// :65:17: error: use of undefined value here causes illegal behavior
+// :65:17: note: when computing vector element at index '0'
+// :65:17: error: use of undefined value here causes illegal behavior
+// :65:17: note: when computing vector element at index '0'
+// :65:17: error: use of undefined value here causes illegal behavior
+// :65:17: note: when computing vector element at index '1'
+// :65:17: error: use of undefined value here causes illegal behavior
+// :65:17: note: when computing vector element at index '1'
+// :65:17: error: use of undefined value here causes illegal behavior
+// :65:17: note: when computing vector element at index '0'
+// :65:17: error: use of undefined value here causes illegal behavior
+// :65:17: note: when computing vector element at index '0'
+// :65:17: error: use of undefined value here causes illegal behavior
+// :65:17: note: when computing vector element at index '0'
+// :65:17: error: use of undefined value here causes illegal behavior
+// :65:17: note: when computing vector element at index '0'
+// :65:17: error: use of undefined value here causes illegal behavior
+// :65:17: error: use of undefined value here causes illegal behavior
+// :65:17: error: use of undefined value here causes illegal behavior
+// :65:17: note: when computing vector element at index '0'
+// :65:17: error: use of undefined value here causes illegal behavior
+// :65:17: note: when computing vector element at index '0'
+// :65:17: error: use of undefined value here causes illegal behavior
+// :65:17: note: when computing vector element at index '0'
+// :65:17: error: use of undefined value here causes illegal behavior
+// :65:17: note: when computing vector element at index '0'
+// :65:17: error: use of undefined value here causes illegal behavior
+// :65:17: note: when computing vector element at index '1'
+// :65:17: error: use of undefined value here causes illegal behavior
+// :65:17: note: when computing vector element at index '1'
+// :65:17: error: use of undefined value here causes illegal behavior
+// :65:17: note: when computing vector element at index '0'
+// :65:17: error: use of undefined value here causes illegal behavior
+// :65:17: note: when computing vector element at index '0'
+// :65:17: error: use of undefined value here causes illegal behavior
+// :65:17: note: when computing vector element at index '0'
+// :65:17: error: use of undefined value here causes illegal behavior
+// :65:17: note: when computing vector element at index '0'
+// :65:17: error: use of undefined value here causes illegal behavior
+// :65:17: error: use of undefined value here causes illegal behavior
+// :65:17: error: use of undefined value here causes illegal behavior
+// :65:17: note: when computing vector element at index '0'
+// :65:17: error: use of undefined value here causes illegal behavior
+// :65:17: note: when computing vector element at index '0'
+// :65:17: error: use of undefined value here causes illegal behavior
+// :65:17: note: when computing vector element at index '0'
+// :65:17: error: use of undefined value here causes illegal behavior
+// :65:17: note: when computing vector element at index '0'
+// :65:17: error: use of undefined value here causes illegal behavior
+// :65:17: note: when computing vector element at index '1'
+// :65:17: error: use of undefined value here causes illegal behavior
+// :65:17: note: when computing vector element at index '1'
+// :65:17: error: use of undefined value here causes illegal behavior
+// :65:17: note: when computing vector element at index '0'
+// :65:17: error: use of undefined value here causes illegal behavior
+// :65:17: note: when computing vector element at index '0'
+// :65:17: error: use of undefined value here causes illegal behavior
+// :65:17: note: when computing vector element at index '0'
+// :65:17: error: use of undefined value here causes illegal behavior
+// :65:17: note: when computing vector element at index '0'
+// :65:17: error: use of undefined value here causes illegal behavior
+// :65:17: error: use of undefined value here causes illegal behavior
+// :65:17: error: use of undefined value here causes illegal behavior
+// :65:17: note: when computing vector element at index '0'
+// :65:17: error: use of undefined value here causes illegal behavior
+// :65:17: note: when computing vector element at index '0'
+// :65:17: error: use of undefined value here causes illegal behavior
+// :65:17: note: when computing vector element at index '0'
+// :65:17: error: use of undefined value here causes illegal behavior
+// :65:17: note: when computing vector element at index '0'
+// :65:17: error: use of undefined value here causes illegal behavior
+// :65:17: note: when computing vector element at index '1'
+// :65:17: error: use of undefined value here causes illegal behavior
+// :65:17: note: when computing vector element at index '1'
+// :65:17: error: use of undefined value here causes illegal behavior
+// :65:17: note: when computing vector element at index '0'
+// :65:17: error: use of undefined value here causes illegal behavior
+// :65:17: note: when computing vector element at index '0'
+// :65:17: error: use of undefined value here causes illegal behavior
+// :65:17: note: when computing vector element at index '0'
+// :65:17: error: use of undefined value here causes illegal behavior
+// :65:17: note: when computing vector element at index '0'
+// :65:17: error: use of undefined value here causes illegal behavior
+// :65:17: error: use of undefined value here causes illegal behavior
+// :65:17: error: use of undefined value here causes illegal behavior
+// :65:17: note: when computing vector element at index '0'
+// :65:17: error: use of undefined value here causes illegal behavior
+// :65:17: note: when computing vector element at index '0'
+// :65:17: error: use of undefined value here causes illegal behavior
+// :65:17: note: when computing vector element at index '0'
+// :65:17: error: use of undefined value here causes illegal behavior
+// :65:17: note: when computing vector element at index '0'
+// :65:17: error: use of undefined value here causes illegal behavior
+// :65:17: note: when computing vector element at index '1'
+// :65:17: error: use of undefined value here causes illegal behavior
+// :65:17: note: when computing vector element at index '1'
+// :65:17: error: use of undefined value here causes illegal behavior
+// :65:17: note: when computing vector element at index '0'
+// :65:17: error: use of undefined value here causes illegal behavior
+// :65:17: note: when computing vector element at index '0'
+// :65:17: error: use of undefined value here causes illegal behavior
+// :65:17: note: when computing vector element at index '0'
+// :65:17: error: use of undefined value here causes illegal behavior
+// :65:17: note: when computing vector element at index '0'
+// :65:17: error: use of undefined value here causes illegal behavior
+// :65:17: error: use of undefined value here causes illegal behavior
+// :65:17: error: use of undefined value here causes illegal behavior
+// :65:17: note: when computing vector element at index '0'
+// :65:17: error: use of undefined value here causes illegal behavior
+// :65:17: note: when computing vector element at index '0'
+// :65:17: error: use of undefined value here causes illegal behavior
+// :65:17: note: when computing vector element at index '0'
+// :65:17: error: use of undefined value here causes illegal behavior
+// :65:17: note: when computing vector element at index '0'
+// :65:17: error: use of undefined value here causes illegal behavior
+// :65:17: note: when computing vector element at index '1'
+// :65:17: error: use of undefined value here causes illegal behavior
+// :65:17: note: when computing vector element at index '1'
+// :65:17: error: use of undefined value here causes illegal behavior
+// :65:17: note: when computing vector element at index '0'
+// :65:17: error: use of undefined value here causes illegal behavior
+// :65:17: note: when computing vector element at index '0'
+// :65:17: error: use of undefined value here causes illegal behavior
+// :65:17: note: when computing vector element at index '0'
+// :65:17: error: use of undefined value here causes illegal behavior
+// :65:17: note: when computing vector element at index '0'
+// :65:17: error: use of undefined value here causes illegal behavior
+// :65:17: error: use of undefined value here causes illegal behavior
+// :65:17: error: use of undefined value here causes illegal behavior
+// :65:17: note: when computing vector element at index '0'
+// :65:17: error: use of undefined value here causes illegal behavior
+// :65:17: note: when computing vector element at index '0'
+// :65:17: error: use of undefined value here causes illegal behavior
+// :65:17: note: when computing vector element at index '0'
+// :65:17: error: use of undefined value here causes illegal behavior
+// :65:17: note: when computing vector element at index '0'
+// :65:17: error: use of undefined value here causes illegal behavior
+// :65:17: note: when computing vector element at index '1'
+// :65:17: error: use of undefined value here causes illegal behavior
+// :65:17: note: when computing vector element at index '1'
+// :65:17: error: use of undefined value here causes illegal behavior
+// :65:17: note: when computing vector element at index '0'
+// :65:17: error: use of undefined value here causes illegal behavior
+// :65:17: note: when computing vector element at index '0'
+// :65:17: error: use of undefined value here causes illegal behavior
+// :65:17: note: when computing vector element at index '0'
+// :65:17: error: use of undefined value here causes illegal behavior
+// :65:17: note: when computing vector element at index '0'
+// :65:17: error: use of undefined value here causes illegal behavior
+// :65:17: error: use of undefined value here causes illegal behavior
+// :65:17: error: use of undefined value here causes illegal behavior
+// :65:17: note: when computing vector element at index '0'
+// :65:17: error: use of undefined value here causes illegal behavior
+// :65:17: note: when computing vector element at index '0'
+// :65:17: error: use of undefined value here causes illegal behavior
+// :65:17: note: when computing vector element at index '0'
+// :65:17: error: use of undefined value here causes illegal behavior
+// :65:17: note: when computing vector element at index '0'
+// :65:17: error: use of undefined value here causes illegal behavior
+// :65:17: note: when computing vector element at index '1'
+// :65:17: error: use of undefined value here causes illegal behavior
+// :65:17: note: when computing vector element at index '1'
+// :65:17: error: use of undefined value here causes illegal behavior
+// :65:17: note: when computing vector element at index '0'
+// :65:17: error: use of undefined value here causes illegal behavior
+// :65:17: note: when computing vector element at index '0'
+// :65:17: error: use of undefined value here causes illegal behavior
+// :65:17: note: when computing vector element at index '0'
+// :65:17: error: use of undefined value here causes illegal behavior
+// :65:17: note: when computing vector element at index '0'
+// :65:21: error: use of undefined value here causes illegal behavior
+// :65:21: note: when computing vector element at index '0'
+// :65:21: error: use of undefined value here causes illegal behavior
+// :65:21: note: when computing vector element at index '0'
+// :65:21: error: use of undefined value here causes illegal behavior
+// :65:21: note: when computing vector element at index '0'
+// :65:21: error: use of undefined value here causes illegal behavior
+// :65:21: note: when computing vector element at index '0'
+// :65:21: error: use of undefined value here causes illegal behavior
+// :65:21: note: when computing vector element at index '0'
+// :65:21: error: use of undefined value here causes illegal behavior
+// :65:21: note: when computing vector element at index '0'
+// :65:21: error: use of undefined value here causes illegal behavior
+// :65:21: note: when computing vector element at index '0'
+// :65:21: error: use of undefined value here causes illegal behavior
+// :65:21: note: when computing vector element at index '0'
+// :65:21: error: use of undefined value here causes illegal behavior
+// :65:21: note: when computing vector element at index '0'
+// :65:21: error: use of undefined value here causes illegal behavior
+// :65:21: note: when computing vector element at index '0'
+// :65:21: error: use of undefined value here causes illegal behavior
+// :65:21: note: when computing vector element at index '0'
+// :65:21: error: use of undefined value here causes illegal behavior
+// :65:21: note: when computing vector element at index '0'
+// :65:21: error: use of undefined value here causes illegal behavior
+// :65:21: note: when computing vector element at index '0'
+// :65:21: error: use of undefined value here causes illegal behavior
+// :65:21: note: when computing vector element at index '0'
+// :65:21: error: use of undefined value here causes illegal behavior
+// :65:21: note: when computing vector element at index '0'
+// :65:21: error: use of undefined value here causes illegal behavior
+// :65:21: note: when computing vector element at index '0'
+// :65:21: error: use of undefined value here causes illegal behavior
+// :65:21: note: when computing vector element at index '0'
+// :65:21: error: use of undefined value here causes illegal behavior
+// :65:21: note: when computing vector element at index '0'
+// :65:21: error: use of undefined value here causes illegal behavior
+// :65:21: note: when computing vector element at index '0'
+// :65:21: error: use of undefined value here causes illegal behavior
+// :65:21: note: when computing vector element at index '0'
+// :65:21: error: use of undefined value here causes illegal behavior
+// :65:21: note: when computing vector element at index '0'
+// :65:21: error: use of undefined value here causes illegal behavior
+// :65:21: note: when computing vector element at index '0'
+// :69:27: error: use of undefined value here causes illegal behavior
+// :69:27: error: use of undefined value here causes illegal behavior
+// :69:27: error: use of undefined value here causes illegal behavior
+// :69:27: note: when computing vector element at index '0'
+// :69:27: error: use of undefined value here causes illegal behavior
+// :69:27: note: when computing vector element at index '0'
+// :69:27: error: use of undefined value here causes illegal behavior
+// :69:27: note: when computing vector element at index '0'
+// :69:27: error: use of undefined value here causes illegal behavior
+// :69:27: note: when computing vector element at index '0'
+// :69:27: error: use of undefined value here causes illegal behavior
+// :69:27: note: when computing vector element at index '1'
+// :69:27: error: use of undefined value here causes illegal behavior
+// :69:27: note: when computing vector element at index '1'
+// :69:27: error: use of undefined value here causes illegal behavior
+// :69:27: note: when computing vector element at index '0'
+// :69:27: error: use of undefined value here causes illegal behavior
+// :69:27: note: when computing vector element at index '0'
+// :69:27: error: use of undefined value here causes illegal behavior
+// :69:27: note: when computing vector element at index '0'
+// :69:27: error: use of undefined value here causes illegal behavior
+// :69:27: note: when computing vector element at index '0'
+// :69:27: error: use of undefined value here causes illegal behavior
+// :69:27: error: use of undefined value here causes illegal behavior
+// :69:27: error: use of undefined value here causes illegal behavior
+// :69:27: note: when computing vector element at index '0'
+// :69:27: error: use of undefined value here causes illegal behavior
+// :69:27: note: when computing vector element at index '0'
+// :69:27: error: use of undefined value here causes illegal behavior
+// :69:27: note: when computing vector element at index '0'
+// :69:27: error: use of undefined value here causes illegal behavior
+// :69:27: note: when computing vector element at index '0'
+// :69:27: error: use of undefined value here causes illegal behavior
+// :69:27: note: when computing vector element at index '1'
+// :69:27: error: use of undefined value here causes illegal behavior
+// :69:27: note: when computing vector element at index '1'
+// :69:27: error: use of undefined value here causes illegal behavior
+// :69:27: note: when computing vector element at index '0'
+// :69:27: error: use of undefined value here causes illegal behavior
+// :69:27: note: when computing vector element at index '0'
+// :69:27: error: use of undefined value here causes illegal behavior
+// :69:27: note: when computing vector element at index '0'
+// :69:27: error: use of undefined value here causes illegal behavior
+// :69:27: note: when computing vector element at index '0'
+// :69:27: error: use of undefined value here causes illegal behavior
+// :69:27: error: use of undefined value here causes illegal behavior
+// :69:27: error: use of undefined value here causes illegal behavior
+// :69:27: note: when computing vector element at index '0'
+// :69:27: error: use of undefined value here causes illegal behavior
+// :69:27: note: when computing vector element at index '0'
+// :69:27: error: use of undefined value here causes illegal behavior
+// :69:27: note: when computing vector element at index '0'
+// :69:27: error: use of undefined value here causes illegal behavior
+// :69:27: note: when computing vector element at index '0'
+// :69:27: error: use of undefined value here causes illegal behavior
+// :69:27: note: when computing vector element at index '1'
+// :69:27: error: use of undefined value here causes illegal behavior
+// :69:27: note: when computing vector element at index '1'
+// :69:27: error: use of undefined value here causes illegal behavior
+// :69:27: note: when computing vector element at index '0'
+// :69:27: error: use of undefined value here causes illegal behavior
+// :69:27: note: when computing vector element at index '0'
+// :69:27: error: use of undefined value here causes illegal behavior
+// :69:27: note: when computing vector element at index '0'
+// :69:27: error: use of undefined value here causes illegal behavior
+// :69:27: note: when computing vector element at index '0'
+// :69:27: error: use of undefined value here causes illegal behavior
+// :69:27: error: use of undefined value here causes illegal behavior
+// :69:27: error: use of undefined value here causes illegal behavior
+// :69:27: note: when computing vector element at index '0'
+// :69:27: error: use of undefined value here causes illegal behavior
+// :69:27: note: when computing vector element at index '0'
+// :69:27: error: use of undefined value here causes illegal behavior
+// :69:27: note: when computing vector element at index '0'
+// :69:27: error: use of undefined value here causes illegal behavior
+// :69:27: note: when computing vector element at index '0'
+// :69:27: error: use of undefined value here causes illegal behavior
+// :69:27: note: when computing vector element at index '1'
+// :69:27: error: use of undefined value here causes illegal behavior
+// :69:27: note: when computing vector element at index '1'
+// :69:27: error: use of undefined value here causes illegal behavior
+// :69:27: note: when computing vector element at index '0'
+// :69:27: error: use of undefined value here causes illegal behavior
+// :69:27: note: when computing vector element at index '0'
+// :69:27: error: use of undefined value here causes illegal behavior
+// :69:27: note: when computing vector element at index '0'
+// :69:27: error: use of undefined value here causes illegal behavior
+// :69:27: note: when computing vector element at index '0'
+// :69:27: error: use of undefined value here causes illegal behavior
+// :69:27: error: use of undefined value here causes illegal behavior
+// :69:27: error: use of undefined value here causes illegal behavior
+// :69:27: note: when computing vector element at index '0'
+// :69:27: error: use of undefined value here causes illegal behavior
+// :69:27: note: when computing vector element at index '0'
+// :69:27: error: use of undefined value here causes illegal behavior
+// :69:27: note: when computing vector element at index '0'
+// :69:27: error: use of undefined value here causes illegal behavior
+// :69:27: note: when computing vector element at index '0'
+// :69:27: error: use of undefined value here causes illegal behavior
+// :69:27: note: when computing vector element at index '1'
+// :69:27: error: use of undefined value here causes illegal behavior
+// :69:27: note: when computing vector element at index '1'
+// :69:27: error: use of undefined value here causes illegal behavior
+// :69:27: note: when computing vector element at index '0'
+// :69:27: error: use of undefined value here causes illegal behavior
+// :69:27: note: when computing vector element at index '0'
+// :69:27: error: use of undefined value here causes illegal behavior
+// :69:27: note: when computing vector element at index '0'
+// :69:27: error: use of undefined value here causes illegal behavior
+// :69:27: note: when computing vector element at index '0'
+// :69:27: error: use of undefined value here causes illegal behavior
+// :69:27: error: use of undefined value here causes illegal behavior
+// :69:27: error: use of undefined value here causes illegal behavior
+// :69:27: note: when computing vector element at index '0'
+// :69:27: error: use of undefined value here causes illegal behavior
+// :69:27: note: when computing vector element at index '0'
+// :69:27: error: use of undefined value here causes illegal behavior
+// :69:27: note: when computing vector element at index '0'
+// :69:27: error: use of undefined value here causes illegal behavior
+// :69:27: note: when computing vector element at index '0'
+// :69:27: error: use of undefined value here causes illegal behavior
+// :69:27: note: when computing vector element at index '1'
+// :69:27: error: use of undefined value here causes illegal behavior
+// :69:27: note: when computing vector element at index '1'
+// :69:27: error: use of undefined value here causes illegal behavior
+// :69:27: note: when computing vector element at index '0'
+// :69:27: error: use of undefined value here causes illegal behavior
+// :69:27: note: when computing vector element at index '0'
+// :69:27: error: use of undefined value here causes illegal behavior
+// :69:27: note: when computing vector element at index '0'
+// :69:27: error: use of undefined value here causes illegal behavior
+// :69:27: note: when computing vector element at index '0'
+// :69:27: error: use of undefined value here causes illegal behavior
+// :69:27: error: use of undefined value here causes illegal behavior
+// :69:27: error: use of undefined value here causes illegal behavior
+// :69:27: note: when computing vector element at index '0'
+// :69:27: error: use of undefined value here causes illegal behavior
+// :69:27: note: when computing vector element at index '0'
+// :69:27: error: use of undefined value here causes illegal behavior
+// :69:27: note: when computing vector element at index '0'
+// :69:27: error: use of undefined value here causes illegal behavior
+// :69:27: note: when computing vector element at index '0'
+// :69:27: error: use of undefined value here causes illegal behavior
+// :69:27: note: when computing vector element at index '1'
+// :69:27: error: use of undefined value here causes illegal behavior
+// :69:27: note: when computing vector element at index '1'
+// :69:27: error: use of undefined value here causes illegal behavior
+// :69:27: note: when computing vector element at index '0'
+// :69:27: error: use of undefined value here causes illegal behavior
+// :69:27: note: when computing vector element at index '0'
+// :69:27: error: use of undefined value here causes illegal behavior
+// :69:27: note: when computing vector element at index '0'
+// :69:27: error: use of undefined value here causes illegal behavior
+// :69:27: note: when computing vector element at index '0'
+// :69:27: error: use of undefined value here causes illegal behavior
+// :69:27: error: use of undefined value here causes illegal behavior
+// :69:27: error: use of undefined value here causes illegal behavior
+// :69:27: note: when computing vector element at index '0'
+// :69:27: error: use of undefined value here causes illegal behavior
+// :69:27: note: when computing vector element at index '0'
+// :69:27: error: use of undefined value here causes illegal behavior
+// :69:27: note: when computing vector element at index '0'
+// :69:27: error: use of undefined value here causes illegal behavior
+// :69:27: note: when computing vector element at index '0'
+// :69:27: error: use of undefined value here causes illegal behavior
+// :69:27: note: when computing vector element at index '1'
+// :69:27: error: use of undefined value here causes illegal behavior
+// :69:27: note: when computing vector element at index '1'
+// :69:27: error: use of undefined value here causes illegal behavior
+// :69:27: note: when computing vector element at index '0'
+// :69:27: error: use of undefined value here causes illegal behavior
+// :69:27: note: when computing vector element at index '0'
+// :69:27: error: use of undefined value here causes illegal behavior
+// :69:27: note: when computing vector element at index '0'
+// :69:27: error: use of undefined value here causes illegal behavior
+// :69:27: note: when computing vector element at index '0'
+// :69:27: error: use of undefined value here causes illegal behavior
+// :69:27: error: use of undefined value here causes illegal behavior
+// :69:27: error: use of undefined value here causes illegal behavior
+// :69:27: note: when computing vector element at index '0'
+// :69:27: error: use of undefined value here causes illegal behavior
+// :69:27: note: when computing vector element at index '0'
+// :69:27: error: use of undefined value here causes illegal behavior
+// :69:27: note: when computing vector element at index '0'
+// :69:27: error: use of undefined value here causes illegal behavior
+// :69:27: note: when computing vector element at index '0'
+// :69:27: error: use of undefined value here causes illegal behavior
+// :69:27: note: when computing vector element at index '1'
+// :69:27: error: use of undefined value here causes illegal behavior
+// :69:27: note: when computing vector element at index '1'
+// :69:27: error: use of undefined value here causes illegal behavior
+// :69:27: note: when computing vector element at index '0'
+// :69:27: error: use of undefined value here causes illegal behavior
+// :69:27: note: when computing vector element at index '0'
+// :69:27: error: use of undefined value here causes illegal behavior
+// :69:27: note: when computing vector element at index '0'
+// :69:27: error: use of undefined value here causes illegal behavior
+// :69:27: note: when computing vector element at index '0'
+// :69:27: error: use of undefined value here causes illegal behavior
+// :69:27: error: use of undefined value here causes illegal behavior
+// :69:27: error: use of undefined value here causes illegal behavior
+// :69:27: note: when computing vector element at index '0'
+// :69:27: error: use of undefined value here causes illegal behavior
+// :69:27: note: when computing vector element at index '0'
+// :69:27: error: use of undefined value here causes illegal behavior
+// :69:27: note: when computing vector element at index '0'
+// :69:27: error: use of undefined value here causes illegal behavior
+// :69:27: note: when computing vector element at index '0'
+// :69:27: error: use of undefined value here causes illegal behavior
+// :69:27: note: when computing vector element at index '1'
+// :69:27: error: use of undefined value here causes illegal behavior
+// :69:27: note: when computing vector element at index '1'
+// :69:27: error: use of undefined value here causes illegal behavior
+// :69:27: note: when computing vector element at index '0'
+// :69:27: error: use of undefined value here causes illegal behavior
+// :69:27: note: when computing vector element at index '0'
+// :69:27: error: use of undefined value here causes illegal behavior
+// :69:27: note: when computing vector element at index '0'
+// :69:27: error: use of undefined value here causes illegal behavior
+// :69:27: note: when computing vector element at index '0'
+// :69:27: error: use of undefined value here causes illegal behavior
+// :69:27: error: use of undefined value here causes illegal behavior
+// :69:27: error: use of undefined value here causes illegal behavior
+// :69:27: note: when computing vector element at index '0'
+// :69:27: error: use of undefined value here causes illegal behavior
+// :69:27: note: when computing vector element at index '0'
+// :69:27: error: use of undefined value here causes illegal behavior
+// :69:27: note: when computing vector element at index '0'
+// :69:27: error: use of undefined value here causes illegal behavior
+// :69:27: note: when computing vector element at index '0'
+// :69:27: error: use of undefined value here causes illegal behavior
+// :69:27: note: when computing vector element at index '1'
+// :69:27: error: use of undefined value here causes illegal behavior
+// :69:27: note: when computing vector element at index '1'
+// :69:27: error: use of undefined value here causes illegal behavior
+// :69:27: note: when computing vector element at index '0'
+// :69:27: error: use of undefined value here causes illegal behavior
+// :69:27: note: when computing vector element at index '0'
+// :69:27: error: use of undefined value here causes illegal behavior
+// :69:27: note: when computing vector element at index '0'
+// :69:27: error: use of undefined value here causes illegal behavior
+// :69:27: note: when computing vector element at index '0'
+// :69:30: error: use of undefined value here causes illegal behavior
+// :69:30: note: when computing vector element at index '0'
+// :69:30: error: use of undefined value here causes illegal behavior
+// :69:30: note: when computing vector element at index '0'
+// :69:30: error: use of undefined value here causes illegal behavior
+// :69:30: note: when computing vector element at index '0'
+// :69:30: error: use of undefined value here causes illegal behavior
+// :69:30: note: when computing vector element at index '0'
+// :69:30: error: use of undefined value here causes illegal behavior
+// :69:30: note: when computing vector element at index '0'
+// :69:30: error: use of undefined value here causes illegal behavior
+// :69:30: note: when computing vector element at index '0'
+// :69:30: error: use of undefined value here causes illegal behavior
+// :69:30: note: when computing vector element at index '0'
+// :69:30: error: use of undefined value here causes illegal behavior
+// :69:30: note: when computing vector element at index '0'
+// :69:30: error: use of undefined value here causes illegal behavior
+// :69:30: note: when computing vector element at index '0'
+// :69:30: error: use of undefined value here causes illegal behavior
+// :69:30: note: when computing vector element at index '0'
+// :69:30: error: use of undefined value here causes illegal behavior
+// :69:30: note: when computing vector element at index '0'
+// :69:30: error: use of undefined value here causes illegal behavior
+// :69:30: note: when computing vector element at index '0'
+// :69:30: error: use of undefined value here causes illegal behavior
+// :69:30: note: when computing vector element at index '0'
+// :69:30: error: use of undefined value here causes illegal behavior
+// :69:30: note: when computing vector element at index '0'
+// :69:30: error: use of undefined value here causes illegal behavior
+// :69:30: note: when computing vector element at index '0'
+// :69:30: error: use of undefined value here causes illegal behavior
+// :69:30: note: when computing vector element at index '0'
+// :69:30: error: use of undefined value here causes illegal behavior
+// :69:30: note: when computing vector element at index '0'
+// :69:30: error: use of undefined value here causes illegal behavior
+// :69:30: note: when computing vector element at index '0'
+// :69:30: error: use of undefined value here causes illegal behavior
+// :69:30: note: when computing vector element at index '0'
+// :69:30: error: use of undefined value here causes illegal behavior
+// :69:30: note: when computing vector element at index '0'
+// :69:30: error: use of undefined value here causes illegal behavior
+// :69:30: note: when computing vector element at index '0'
+// :69:30: error: use of undefined value here causes illegal behavior
+// :69:30: note: when computing vector element at index '0'
+// :73:27: error: use of undefined value here causes illegal behavior
+// :73:27: error: use of undefined value here causes illegal behavior
+// :73:27: error: use of undefined value here causes illegal behavior
+// :73:27: note: when computing vector element at index '0'
+// :73:27: error: use of undefined value here causes illegal behavior
+// :73:27: note: when computing vector element at index '0'
+// :73:27: error: use of undefined value here causes illegal behavior
+// :73:27: note: when computing vector element at index '0'
+// :73:27: error: use of undefined value here causes illegal behavior
+// :73:27: note: when computing vector element at index '0'
+// :73:27: error: use of undefined value here causes illegal behavior
+// :73:27: note: when computing vector element at index '1'
+// :73:27: error: use of undefined value here causes illegal behavior
+// :73:27: note: when computing vector element at index '1'
+// :73:27: error: use of undefined value here causes illegal behavior
+// :73:27: note: when computing vector element at index '0'
+// :73:27: error: use of undefined value here causes illegal behavior
+// :73:27: note: when computing vector element at index '0'
+// :73:27: error: use of undefined value here causes illegal behavior
+// :73:27: note: when computing vector element at index '0'
+// :73:27: error: use of undefined value here causes illegal behavior
+// :73:27: note: when computing vector element at index '0'
+// :73:27: error: use of undefined value here causes illegal behavior
+// :73:27: error: use of undefined value here causes illegal behavior
+// :73:27: error: use of undefined value here causes illegal behavior
+// :73:27: note: when computing vector element at index '0'
+// :73:27: error: use of undefined value here causes illegal behavior
+// :73:27: note: when computing vector element at index '0'
+// :73:27: error: use of undefined value here causes illegal behavior
+// :73:27: note: when computing vector element at index '0'
+// :73:27: error: use of undefined value here causes illegal behavior
+// :73:27: note: when computing vector element at index '0'
+// :73:27: error: use of undefined value here causes illegal behavior
+// :73:27: note: when computing vector element at index '1'
+// :73:27: error: use of undefined value here causes illegal behavior
+// :73:27: note: when computing vector element at index '1'
+// :73:27: error: use of undefined value here causes illegal behavior
+// :73:27: note: when computing vector element at index '0'
+// :73:27: error: use of undefined value here causes illegal behavior
+// :73:27: note: when computing vector element at index '0'
+// :73:27: error: use of undefined value here causes illegal behavior
+// :73:27: note: when computing vector element at index '0'
+// :73:27: error: use of undefined value here causes illegal behavior
+// :73:27: note: when computing vector element at index '0'
+// :73:27: error: use of undefined value here causes illegal behavior
+// :73:27: error: use of undefined value here causes illegal behavior
+// :73:27: error: use of undefined value here causes illegal behavior
+// :73:27: note: when computing vector element at index '0'
+// :73:27: error: use of undefined value here causes illegal behavior
+// :73:27: note: when computing vector element at index '0'
+// :73:27: error: use of undefined value here causes illegal behavior
+// :73:27: note: when computing vector element at index '0'
+// :73:27: error: use of undefined value here causes illegal behavior
+// :73:27: note: when computing vector element at index '0'
+// :73:27: error: use of undefined value here causes illegal behavior
+// :73:27: note: when computing vector element at index '1'
+// :73:27: error: use of undefined value here causes illegal behavior
+// :73:27: note: when computing vector element at index '1'
+// :73:27: error: use of undefined value here causes illegal behavior
+// :73:27: note: when computing vector element at index '0'
+// :73:27: error: use of undefined value here causes illegal behavior
+// :73:27: note: when computing vector element at index '0'
+// :73:27: error: use of undefined value here causes illegal behavior
+// :73:27: note: when computing vector element at index '0'
+// :73:27: error: use of undefined value here causes illegal behavior
+// :73:27: note: when computing vector element at index '0'
+// :73:27: error: use of undefined value here causes illegal behavior
+// :73:27: error: use of undefined value here causes illegal behavior
+// :73:27: error: use of undefined value here causes illegal behavior
+// :73:27: note: when computing vector element at index '0'
+// :73:27: error: use of undefined value here causes illegal behavior
+// :73:27: note: when computing vector element at index '0'
+// :73:27: error: use of undefined value here causes illegal behavior
+// :73:27: note: when computing vector element at index '0'
+// :73:27: error: use of undefined value here causes illegal behavior
+// :73:27: note: when computing vector element at index '0'
+// :73:27: error: use of undefined value here causes illegal behavior
+// :73:27: note: when computing vector element at index '1'
+// :73:27: error: use of undefined value here causes illegal behavior
+// :73:27: note: when computing vector element at index '1'
+// :73:27: error: use of undefined value here causes illegal behavior
+// :73:27: note: when computing vector element at index '0'
+// :73:27: error: use of undefined value here causes illegal behavior
+// :73:27: note: when computing vector element at index '0'
+// :73:27: error: use of undefined value here causes illegal behavior
+// :73:27: note: when computing vector element at index '0'
+// :73:27: error: use of undefined value here causes illegal behavior
+// :73:27: note: when computing vector element at index '0'
+// :73:27: error: use of undefined value here causes illegal behavior
+// :73:27: error: use of undefined value here causes illegal behavior
+// :73:27: error: use of undefined value here causes illegal behavior
+// :73:27: note: when computing vector element at index '0'
+// :73:27: error: use of undefined value here causes illegal behavior
+// :73:27: note: when computing vector element at index '0'
+// :73:27: error: use of undefined value here causes illegal behavior
+// :73:27: note: when computing vector element at index '0'
+// :73:27: error: use of undefined value here causes illegal behavior
+// :73:27: note: when computing vector element at index '0'
+// :73:27: error: use of undefined value here causes illegal behavior
+// :73:27: note: when computing vector element at index '1'
+// :73:27: error: use of undefined value here causes illegal behavior
+// :73:27: note: when computing vector element at index '1'
+// :73:27: error: use of undefined value here causes illegal behavior
+// :73:27: note: when computing vector element at index '0'
+// :73:27: error: use of undefined value here causes illegal behavior
+// :73:27: note: when computing vector element at index '0'
+// :73:27: error: use of undefined value here causes illegal behavior
+// :73:27: note: when computing vector element at index '0'
+// :73:27: error: use of undefined value here causes illegal behavior
+// :73:27: note: when computing vector element at index '0'
+// :73:27: error: use of undefined value here causes illegal behavior
+// :73:27: error: use of undefined value here causes illegal behavior
+// :73:27: error: use of undefined value here causes illegal behavior
+// :73:27: note: when computing vector element at index '0'
+// :73:27: error: use of undefined value here causes illegal behavior
+// :73:27: note: when computing vector element at index '0'
+// :73:27: error: use of undefined value here causes illegal behavior
+// :73:27: note: when computing vector element at index '0'
+// :73:27: error: use of undefined value here causes illegal behavior
+// :73:27: note: when computing vector element at index '0'
+// :73:27: error: use of undefined value here causes illegal behavior
+// :73:27: note: when computing vector element at index '1'
+// :73:27: error: use of undefined value here causes illegal behavior
+// :73:27: note: when computing vector element at index '1'
+// :73:27: error: use of undefined value here causes illegal behavior
+// :73:27: note: when computing vector element at index '0'
+// :73:27: error: use of undefined value here causes illegal behavior
+// :73:27: note: when computing vector element at index '0'
+// :73:27: error: use of undefined value here causes illegal behavior
+// :73:27: note: when computing vector element at index '0'
+// :73:27: error: use of undefined value here causes illegal behavior
+// :73:27: note: when computing vector element at index '0'
+// :73:27: error: use of undefined value here causes illegal behavior
+// :73:27: error: use of undefined value here causes illegal behavior
+// :73:27: error: use of undefined value here causes illegal behavior
+// :73:27: note: when computing vector element at index '0'
+// :73:27: error: use of undefined value here causes illegal behavior
+// :73:27: note: when computing vector element at index '0'
+// :73:27: error: use of undefined value here causes illegal behavior
+// :73:27: note: when computing vector element at index '0'
+// :73:27: error: use of undefined value here causes illegal behavior
+// :73:27: note: when computing vector element at index '0'
+// :73:27: error: use of undefined value here causes illegal behavior
+// :73:27: note: when computing vector element at index '1'
+// :73:27: error: use of undefined value here causes illegal behavior
+// :73:27: note: when computing vector element at index '1'
+// :73:27: error: use of undefined value here causes illegal behavior
+// :73:27: note: when computing vector element at index '0'
+// :73:27: error: use of undefined value here causes illegal behavior
+// :73:27: note: when computing vector element at index '0'
+// :73:27: error: use of undefined value here causes illegal behavior
+// :73:27: note: when computing vector element at index '0'
+// :73:27: error: use of undefined value here causes illegal behavior
+// :73:27: note: when computing vector element at index '0'
+// :73:27: error: use of undefined value here causes illegal behavior
+// :73:27: error: use of undefined value here causes illegal behavior
+// :73:27: error: use of undefined value here causes illegal behavior
+// :73:27: note: when computing vector element at index '0'
+// :73:27: error: use of undefined value here causes illegal behavior
+// :73:27: note: when computing vector element at index '0'
+// :73:27: error: use of undefined value here causes illegal behavior
+// :73:27: note: when computing vector element at index '0'
+// :73:27: error: use of undefined value here causes illegal behavior
+// :73:27: note: when computing vector element at index '0'
+// :73:27: error: use of undefined value here causes illegal behavior
+// :73:27: note: when computing vector element at index '1'
+// :73:27: error: use of undefined value here causes illegal behavior
+// :73:27: note: when computing vector element at index '1'
+// :73:27: error: use of undefined value here causes illegal behavior
+// :73:27: note: when computing vector element at index '0'
+// :73:27: error: use of undefined value here causes illegal behavior
+// :73:27: note: when computing vector element at index '0'
+// :73:27: error: use of undefined value here causes illegal behavior
+// :73:27: note: when computing vector element at index '0'
+// :73:27: error: use of undefined value here causes illegal behavior
+// :73:27: note: when computing vector element at index '0'
+// :73:27: error: use of undefined value here causes illegal behavior
+// :73:27: error: use of undefined value here causes illegal behavior
+// :73:27: error: use of undefined value here causes illegal behavior
+// :73:27: note: when computing vector element at index '0'
+// :73:27: error: use of undefined value here causes illegal behavior
+// :73:27: note: when computing vector element at index '0'
+// :73:27: error: use of undefined value here causes illegal behavior
+// :73:27: note: when computing vector element at index '0'
+// :73:27: error: use of undefined value here causes illegal behavior
+// :73:27: note: when computing vector element at index '0'
+// :73:27: error: use of undefined value here causes illegal behavior
+// :73:27: note: when computing vector element at index '1'
+// :73:27: error: use of undefined value here causes illegal behavior
+// :73:27: note: when computing vector element at index '1'
+// :73:27: error: use of undefined value here causes illegal behavior
+// :73:27: note: when computing vector element at index '0'
+// :73:27: error: use of undefined value here causes illegal behavior
+// :73:27: note: when computing vector element at index '0'
+// :73:27: error: use of undefined value here causes illegal behavior
+// :73:27: note: when computing vector element at index '0'
+// :73:27: error: use of undefined value here causes illegal behavior
+// :73:27: note: when computing vector element at index '0'
+// :73:27: error: use of undefined value here causes illegal behavior
+// :73:27: error: use of undefined value here causes illegal behavior
+// :73:27: error: use of undefined value here causes illegal behavior
+// :73:27: note: when computing vector element at index '0'
+// :73:27: error: use of undefined value here causes illegal behavior
+// :73:27: note: when computing vector element at index '0'
+// :73:27: error: use of undefined value here causes illegal behavior
+// :73:27: note: when computing vector element at index '0'
+// :73:27: error: use of undefined value here causes illegal behavior
+// :73:27: note: when computing vector element at index '0'
+// :73:27: error: use of undefined value here causes illegal behavior
+// :73:27: note: when computing vector element at index '1'
+// :73:27: error: use of undefined value here causes illegal behavior
+// :73:27: note: when computing vector element at index '1'
+// :73:27: error: use of undefined value here causes illegal behavior
+// :73:27: note: when computing vector element at index '0'
+// :73:27: error: use of undefined value here causes illegal behavior
+// :73:27: note: when computing vector element at index '0'
+// :73:27: error: use of undefined value here causes illegal behavior
+// :73:27: note: when computing vector element at index '0'
+// :73:27: error: use of undefined value here causes illegal behavior
+// :73:27: note: when computing vector element at index '0'
+// :73:27: error: use of undefined value here causes illegal behavior
+// :73:27: error: use of undefined value here causes illegal behavior
+// :73:27: error: use of undefined value here causes illegal behavior
+// :73:27: note: when computing vector element at index '0'
+// :73:27: error: use of undefined value here causes illegal behavior
+// :73:27: note: when computing vector element at index '0'
+// :73:27: error: use of undefined value here causes illegal behavior
+// :73:27: note: when computing vector element at index '0'
+// :73:27: error: use of undefined value here causes illegal behavior
+// :73:27: note: when computing vector element at index '0'
+// :73:27: error: use of undefined value here causes illegal behavior
+// :73:27: note: when computing vector element at index '1'
+// :73:27: error: use of undefined value here causes illegal behavior
+// :73:27: note: when computing vector element at index '1'
+// :73:27: error: use of undefined value here causes illegal behavior
+// :73:27: note: when computing vector element at index '0'
+// :73:27: error: use of undefined value here causes illegal behavior
+// :73:27: note: when computing vector element at index '0'
+// :73:27: error: use of undefined value here causes illegal behavior
+// :73:27: note: when computing vector element at index '0'
+// :73:27: error: use of undefined value here causes illegal behavior
+// :73:27: note: when computing vector element at index '0'
+// :73:30: error: use of undefined value here causes illegal behavior
+// :73:30: note: when computing vector element at index '0'
+// :73:30: error: use of undefined value here causes illegal behavior
+// :73:30: note: when computing vector element at index '0'
+// :73:30: error: use of undefined value here causes illegal behavior
+// :73:30: note: when computing vector element at index '0'
+// :73:30: error: use of undefined value here causes illegal behavior
+// :73:30: note: when computing vector element at index '0'
+// :73:30: error: use of undefined value here causes illegal behavior
+// :73:30: note: when computing vector element at index '0'
+// :73:30: error: use of undefined value here causes illegal behavior
+// :73:30: note: when computing vector element at index '0'
+// :73:30: error: use of undefined value here causes illegal behavior
+// :73:30: note: when computing vector element at index '0'
+// :73:30: error: use of undefined value here causes illegal behavior
+// :73:30: note: when computing vector element at index '0'
+// :73:30: error: use of undefined value here causes illegal behavior
+// :73:30: note: when computing vector element at index '0'
+// :73:30: error: use of undefined value here causes illegal behavior
+// :73:30: note: when computing vector element at index '0'
+// :73:30: error: use of undefined value here causes illegal behavior
+// :73:30: note: when computing vector element at index '0'
+// :73:30: error: use of undefined value here causes illegal behavior
+// :73:30: note: when computing vector element at index '0'
+// :73:30: error: use of undefined value here causes illegal behavior
+// :73:30: note: when computing vector element at index '0'
+// :73:30: error: use of undefined value here causes illegal behavior
+// :73:30: note: when computing vector element at index '0'
+// :73:30: error: use of undefined value here causes illegal behavior
+// :73:30: note: when computing vector element at index '0'
+// :73:30: error: use of undefined value here causes illegal behavior
+// :73:30: note: when computing vector element at index '0'
+// :73:30: error: use of undefined value here causes illegal behavior
+// :73:30: note: when computing vector element at index '0'
+// :73:30: error: use of undefined value here causes illegal behavior
+// :73:30: note: when computing vector element at index '0'
+// :73:30: error: use of undefined value here causes illegal behavior
+// :73:30: note: when computing vector element at index '0'
+// :73:30: error: use of undefined value here causes illegal behavior
+// :73:30: note: when computing vector element at index '0'
+// :73:30: error: use of undefined value here causes illegal behavior
+// :73:30: note: when computing vector element at index '0'
+// :73:30: error: use of undefined value here causes illegal behavior
+// :73:30: note: when computing vector element at index '0'
+// :77:27: error: use of undefined value here causes illegal behavior
+// :77:27: error: use of undefined value here causes illegal behavior
+// :77:27: error: use of undefined value here causes illegal behavior
+// :77:27: note: when computing vector element at index '0'
+// :77:27: error: use of undefined value here causes illegal behavior
+// :77:27: note: when computing vector element at index '0'
+// :77:27: error: use of undefined value here causes illegal behavior
+// :77:27: note: when computing vector element at index '0'
+// :77:27: error: use of undefined value here causes illegal behavior
+// :77:27: note: when computing vector element at index '0'
+// :77:27: error: use of undefined value here causes illegal behavior
+// :77:27: note: when computing vector element at index '1'
+// :77:27: error: use of undefined value here causes illegal behavior
+// :77:27: note: when computing vector element at index '1'
+// :77:27: error: use of undefined value here causes illegal behavior
+// :77:27: note: when computing vector element at index '0'
+// :77:27: error: use of undefined value here causes illegal behavior
+// :77:27: note: when computing vector element at index '0'
+// :77:27: error: use of undefined value here causes illegal behavior
+// :77:27: note: when computing vector element at index '0'
+// :77:27: error: use of undefined value here causes illegal behavior
+// :77:27: note: when computing vector element at index '0'
+// :77:27: error: use of undefined value here causes illegal behavior
+// :77:27: error: use of undefined value here causes illegal behavior
+// :77:27: error: use of undefined value here causes illegal behavior
+// :77:27: note: when computing vector element at index '0'
+// :77:27: error: use of undefined value here causes illegal behavior
+// :77:27: note: when computing vector element at index '0'
+// :77:27: error: use of undefined value here causes illegal behavior
+// :77:27: note: when computing vector element at index '0'
+// :77:27: error: use of undefined value here causes illegal behavior
+// :77:27: note: when computing vector element at index '0'
+// :77:27: error: use of undefined value here causes illegal behavior
+// :77:27: note: when computing vector element at index '1'
+// :77:27: error: use of undefined value here causes illegal behavior
+// :77:27: note: when computing vector element at index '1'
+// :77:27: error: use of undefined value here causes illegal behavior
+// :77:27: note: when computing vector element at index '0'
+// :77:27: error: use of undefined value here causes illegal behavior
+// :77:27: note: when computing vector element at index '0'
+// :77:27: error: use of undefined value here causes illegal behavior
+// :77:27: note: when computing vector element at index '0'
+// :77:27: error: use of undefined value here causes illegal behavior
+// :77:27: note: when computing vector element at index '0'
+// :77:27: error: use of undefined value here causes illegal behavior
+// :77:27: error: use of undefined value here causes illegal behavior
+// :77:27: error: use of undefined value here causes illegal behavior
+// :77:27: note: when computing vector element at index '0'
+// :77:27: error: use of undefined value here causes illegal behavior
+// :77:27: note: when computing vector element at index '0'
+// :77:27: error: use of undefined value here causes illegal behavior
+// :77:27: note: when computing vector element at index '0'
+// :77:27: error: use of undefined value here causes illegal behavior
+// :77:27: note: when computing vector element at index '0'
+// :77:27: error: use of undefined value here causes illegal behavior
+// :77:27: note: when computing vector element at index '1'
+// :77:27: error: use of undefined value here causes illegal behavior
+// :77:27: note: when computing vector element at index '1'
+// :77:27: error: use of undefined value here causes illegal behavior
+// :77:27: note: when computing vector element at index '0'
+// :77:27: error: use of undefined value here causes illegal behavior
+// :77:27: note: when computing vector element at index '0'
+// :77:27: error: use of undefined value here causes illegal behavior
+// :77:27: note: when computing vector element at index '0'
+// :77:27: error: use of undefined value here causes illegal behavior
+// :77:27: note: when computing vector element at index '0'
+// :77:27: error: use of undefined value here causes illegal behavior
+// :77:27: error: use of undefined value here causes illegal behavior
+// :77:27: error: use of undefined value here causes illegal behavior
+// :77:27: note: when computing vector element at index '0'
+// :77:27: error: use of undefined value here causes illegal behavior
+// :77:27: note: when computing vector element at index '0'
+// :77:27: error: use of undefined value here causes illegal behavior
+// :77:27: note: when computing vector element at index '0'
+// :77:27: error: use of undefined value here causes illegal behavior
+// :77:27: note: when computing vector element at index '0'
+// :77:27: error: use of undefined value here causes illegal behavior
+// :77:27: note: when computing vector element at index '1'
+// :77:27: error: use of undefined value here causes illegal behavior
+// :77:27: note: when computing vector element at index '1'
+// :77:27: error: use of undefined value here causes illegal behavior
+// :77:27: note: when computing vector element at index '0'
+// :77:27: error: use of undefined value here causes illegal behavior
+// :77:27: note: when computing vector element at index '0'
+// :77:27: error: use of undefined value here causes illegal behavior
+// :77:27: note: when computing vector element at index '0'
+// :77:27: error: use of undefined value here causes illegal behavior
+// :77:27: note: when computing vector element at index '0'
+// :77:27: error: use of undefined value here causes illegal behavior
+// :77:27: error: use of undefined value here causes illegal behavior
+// :77:27: error: use of undefined value here causes illegal behavior
+// :77:27: note: when computing vector element at index '0'
+// :77:27: error: use of undefined value here causes illegal behavior
+// :77:27: note: when computing vector element at index '0'
+// :77:27: error: use of undefined value here causes illegal behavior
+// :77:27: note: when computing vector element at index '0'
+// :77:27: error: use of undefined value here causes illegal behavior
+// :77:27: note: when computing vector element at index '0'
+// :77:27: error: use of undefined value here causes illegal behavior
+// :77:27: note: when computing vector element at index '1'
+// :77:27: error: use of undefined value here causes illegal behavior
+// :77:27: note: when computing vector element at index '1'
+// :77:27: error: use of undefined value here causes illegal behavior
+// :77:27: note: when computing vector element at index '0'
+// :77:27: error: use of undefined value here causes illegal behavior
+// :77:27: note: when computing vector element at index '0'
+// :77:27: error: use of undefined value here causes illegal behavior
+// :77:27: note: when computing vector element at index '0'
+// :77:27: error: use of undefined value here causes illegal behavior
+// :77:27: note: when computing vector element at index '0'
+// :77:27: error: use of undefined value here causes illegal behavior
+// :77:27: error: use of undefined value here causes illegal behavior
+// :77:27: error: use of undefined value here causes illegal behavior
+// :77:27: note: when computing vector element at index '0'
+// :77:27: error: use of undefined value here causes illegal behavior
+// :77:27: note: when computing vector element at index '0'
+// :77:27: error: use of undefined value here causes illegal behavior
+// :77:27: note: when computing vector element at index '0'
+// :77:27: error: use of undefined value here causes illegal behavior
+// :77:27: note: when computing vector element at index '0'
+// :77:27: error: use of undefined value here causes illegal behavior
+// :77:27: note: when computing vector element at index '1'
+// :77:27: error: use of undefined value here causes illegal behavior
+// :77:27: note: when computing vector element at index '1'
+// :77:27: error: use of undefined value here causes illegal behavior
+// :77:27: note: when computing vector element at index '0'
+// :77:27: error: use of undefined value here causes illegal behavior
+// :77:27: note: when computing vector element at index '0'
+// :77:27: error: use of undefined value here causes illegal behavior
+// :77:27: note: when computing vector element at index '0'
+// :77:27: error: use of undefined value here causes illegal behavior
+// :77:27: note: when computing vector element at index '0'
+// :77:27: error: use of undefined value here causes illegal behavior
+// :77:27: error: use of undefined value here causes illegal behavior
+// :77:27: error: use of undefined value here causes illegal behavior
+// :77:27: note: when computing vector element at index '0'
+// :77:27: error: use of undefined value here causes illegal behavior
+// :77:27: note: when computing vector element at index '0'
+// :77:27: error: use of undefined value here causes illegal behavior
+// :77:27: note: when computing vector element at index '0'
+// :77:27: error: use of undefined value here causes illegal behavior
+// :77:27: note: when computing vector element at index '0'
+// :77:27: error: use of undefined value here causes illegal behavior
+// :77:27: note: when computing vector element at index '1'
+// :77:27: error: use of undefined value here causes illegal behavior
+// :77:27: note: when computing vector element at index '1'
+// :77:27: error: use of undefined value here causes illegal behavior
+// :77:27: note: when computing vector element at index '0'
+// :77:27: error: use of undefined value here causes illegal behavior
+// :77:27: note: when computing vector element at index '0'
+// :77:27: error: use of undefined value here causes illegal behavior
+// :77:27: note: when computing vector element at index '0'
+// :77:27: error: use of undefined value here causes illegal behavior
+// :77:27: note: when computing vector element at index '0'
+// :77:27: error: use of undefined value here causes illegal behavior
+// :77:27: error: use of undefined value here causes illegal behavior
+// :77:27: error: use of undefined value here causes illegal behavior
+// :77:27: note: when computing vector element at index '0'
+// :77:27: error: use of undefined value here causes illegal behavior
+// :77:27: note: when computing vector element at index '0'
+// :77:27: error: use of undefined value here causes illegal behavior
+// :77:27: note: when computing vector element at index '0'
+// :77:27: error: use of undefined value here causes illegal behavior
+// :77:27: note: when computing vector element at index '0'
+// :77:27: error: use of undefined value here causes illegal behavior
+// :77:27: note: when computing vector element at index '1'
+// :77:27: error: use of undefined value here causes illegal behavior
+// :77:27: note: when computing vector element at index '1'
+// :77:27: error: use of undefined value here causes illegal behavior
+// :77:27: note: when computing vector element at index '0'
+// :77:27: error: use of undefined value here causes illegal behavior
+// :77:27: note: when computing vector element at index '0'
+// :77:27: error: use of undefined value here causes illegal behavior
+// :77:27: note: when computing vector element at index '0'
+// :77:27: error: use of undefined value here causes illegal behavior
+// :77:27: note: when computing vector element at index '0'
+// :77:27: error: use of undefined value here causes illegal behavior
+// :77:27: error: use of undefined value here causes illegal behavior
+// :77:27: error: use of undefined value here causes illegal behavior
+// :77:27: note: when computing vector element at index '0'
+// :77:27: error: use of undefined value here causes illegal behavior
+// :77:27: note: when computing vector element at index '0'
+// :77:27: error: use of undefined value here causes illegal behavior
+// :77:27: note: when computing vector element at index '0'
+// :77:27: error: use of undefined value here causes illegal behavior
+// :77:27: note: when computing vector element at index '0'
+// :77:27: error: use of undefined value here causes illegal behavior
+// :77:27: note: when computing vector element at index '1'
+// :77:27: error: use of undefined value here causes illegal behavior
+// :77:27: note: when computing vector element at index '1'
+// :77:27: error: use of undefined value here causes illegal behavior
+// :77:27: note: when computing vector element at index '0'
+// :77:27: error: use of undefined value here causes illegal behavior
+// :77:27: note: when computing vector element at index '0'
+// :77:27: error: use of undefined value here causes illegal behavior
+// :77:27: note: when computing vector element at index '0'
+// :77:27: error: use of undefined value here causes illegal behavior
+// :77:27: note: when computing vector element at index '0'
+// :77:27: error: use of undefined value here causes illegal behavior
+// :77:27: error: use of undefined value here causes illegal behavior
+// :77:27: error: use of undefined value here causes illegal behavior
+// :77:27: note: when computing vector element at index '0'
+// :77:27: error: use of undefined value here causes illegal behavior
+// :77:27: note: when computing vector element at index '0'
+// :77:27: error: use of undefined value here causes illegal behavior
+// :77:27: note: when computing vector element at index '0'
+// :77:27: error: use of undefined value here causes illegal behavior
+// :77:27: note: when computing vector element at index '0'
+// :77:27: error: use of undefined value here causes illegal behavior
+// :77:27: note: when computing vector element at index '1'
+// :77:27: error: use of undefined value here causes illegal behavior
+// :77:27: note: when computing vector element at index '1'
+// :77:27: error: use of undefined value here causes illegal behavior
+// :77:27: note: when computing vector element at index '0'
+// :77:27: error: use of undefined value here causes illegal behavior
+// :77:27: note: when computing vector element at index '0'
+// :77:27: error: use of undefined value here causes illegal behavior
+// :77:27: note: when computing vector element at index '0'
+// :77:27: error: use of undefined value here causes illegal behavior
+// :77:27: note: when computing vector element at index '0'
+// :77:27: error: use of undefined value here causes illegal behavior
+// :77:27: error: use of undefined value here causes illegal behavior
+// :77:27: error: use of undefined value here causes illegal behavior
+// :77:27: note: when computing vector element at index '0'
+// :77:27: error: use of undefined value here causes illegal behavior
+// :77:27: note: when computing vector element at index '0'
+// :77:27: error: use of undefined value here causes illegal behavior
+// :77:27: note: when computing vector element at index '0'
+// :77:27: error: use of undefined value here causes illegal behavior
+// :77:27: note: when computing vector element at index '0'
+// :77:27: error: use of undefined value here causes illegal behavior
+// :77:27: note: when computing vector element at index '1'
+// :77:27: error: use of undefined value here causes illegal behavior
+// :77:27: note: when computing vector element at index '1'
+// :77:27: error: use of undefined value here causes illegal behavior
+// :77:27: note: when computing vector element at index '0'
+// :77:27: error: use of undefined value here causes illegal behavior
+// :77:27: note: when computing vector element at index '0'
+// :77:27: error: use of undefined value here causes illegal behavior
+// :77:27: note: when computing vector element at index '0'
+// :77:27: error: use of undefined value here causes illegal behavior
+// :77:27: note: when computing vector element at index '0'
+// :77:30: error: use of undefined value here causes illegal behavior
+// :77:30: note: when computing vector element at index '0'
+// :77:30: error: use of undefined value here causes illegal behavior
+// :77:30: note: when computing vector element at index '0'
+// :77:30: error: use of undefined value here causes illegal behavior
+// :77:30: note: when computing vector element at index '0'
+// :77:30: error: use of undefined value here causes illegal behavior
+// :77:30: note: when computing vector element at index '0'
+// :77:30: error: use of undefined value here causes illegal behavior
+// :77:30: note: when computing vector element at index '0'
+// :77:30: error: use of undefined value here causes illegal behavior
+// :77:30: note: when computing vector element at index '0'
+// :77:30: error: use of undefined value here causes illegal behavior
+// :77:30: note: when computing vector element at index '0'
+// :77:30: error: use of undefined value here causes illegal behavior
+// :77:30: note: when computing vector element at index '0'
+// :77:30: error: use of undefined value here causes illegal behavior
+// :77:30: note: when computing vector element at index '0'
+// :77:30: error: use of undefined value here causes illegal behavior
+// :77:30: note: when computing vector element at index '0'
+// :77:30: error: use of undefined value here causes illegal behavior
+// :77:30: note: when computing vector element at index '0'
+// :77:30: error: use of undefined value here causes illegal behavior
+// :77:30: note: when computing vector element at index '0'
+// :77:30: error: use of undefined value here causes illegal behavior
+// :77:30: note: when computing vector element at index '0'
+// :77:30: error: use of undefined value here causes illegal behavior
+// :77:30: note: when computing vector element at index '0'
+// :77:30: error: use of undefined value here causes illegal behavior
+// :77:30: note: when computing vector element at index '0'
+// :77:30: error: use of undefined value here causes illegal behavior
+// :77:30: note: when computing vector element at index '0'
+// :77:30: error: use of undefined value here causes illegal behavior
+// :77:30: note: when computing vector element at index '0'
+// :77:30: error: use of undefined value here causes illegal behavior
+// :77:30: note: when computing vector element at index '0'
+// :77:30: error: use of undefined value here causes illegal behavior
+// :77:30: note: when computing vector element at index '0'
+// :77:30: error: use of undefined value here causes illegal behavior
+// :77:30: note: when computing vector element at index '0'
+// :77:30: error: use of undefined value here causes illegal behavior
+// :77:30: note: when computing vector element at index '0'
+// :77:30: error: use of undefined value here causes illegal behavior
+// :77:30: note: when computing vector element at index '0'
+// :81:17: error: use of undefined value here causes illegal behavior
+// :81:17: error: use of undefined value here causes illegal behavior
+// :81:17: error: use of undefined value here causes illegal behavior
+// :81:17: note: when computing vector element at index '0'
+// :81:17: error: use of undefined value here causes illegal behavior
+// :81:17: note: when computing vector element at index '0'
+// :81:17: error: use of undefined value here causes illegal behavior
+// :81:17: note: when computing vector element at index '0'
+// :81:17: error: use of undefined value here causes illegal behavior
+// :81:17: note: when computing vector element at index '0'
+// :81:17: error: use of undefined value here causes illegal behavior
+// :81:17: note: when computing vector element at index '1'
+// :81:17: error: use of undefined value here causes illegal behavior
+// :81:17: note: when computing vector element at index '1'
+// :81:17: error: use of undefined value here causes illegal behavior
+// :81:17: note: when computing vector element at index '0'
+// :81:17: error: use of undefined value here causes illegal behavior
+// :81:17: note: when computing vector element at index '0'
+// :81:17: error: use of undefined value here causes illegal behavior
+// :81:17: note: when computing vector element at index '0'
+// :81:17: error: use of undefined value here causes illegal behavior
+// :81:17: note: when computing vector element at index '0'
+// :81:17: error: use of undefined value here causes illegal behavior
+// :81:17: error: use of undefined value here causes illegal behavior
+// :81:17: error: use of undefined value here causes illegal behavior
+// :81:17: note: when computing vector element at index '0'
+// :81:17: error: use of undefined value here causes illegal behavior
+// :81:17: note: when computing vector element at index '0'
+// :81:17: error: use of undefined value here causes illegal behavior
+// :81:17: note: when computing vector element at index '0'
+// :81:17: error: use of undefined value here causes illegal behavior
+// :81:17: note: when computing vector element at index '0'
+// :81:17: error: use of undefined value here causes illegal behavior
+// :81:17: note: when computing vector element at index '1'
+// :81:17: error: use of undefined value here causes illegal behavior
+// :81:17: note: when computing vector element at index '1'
+// :81:17: error: use of undefined value here causes illegal behavior
+// :81:17: note: when computing vector element at index '0'
+// :81:17: error: use of undefined value here causes illegal behavior
+// :81:17: note: when computing vector element at index '0'
+// :81:17: error: use of undefined value here causes illegal behavior
+// :81:17: note: when computing vector element at index '0'
+// :81:17: error: use of undefined value here causes illegal behavior
+// :81:17: note: when computing vector element at index '0'
+// :81:17: error: use of undefined value here causes illegal behavior
+// :81:17: error: use of undefined value here causes illegal behavior
+// :81:17: error: use of undefined value here causes illegal behavior
+// :81:17: note: when computing vector element at index '0'
+// :81:17: error: use of undefined value here causes illegal behavior
+// :81:17: note: when computing vector element at index '0'
+// :81:17: error: use of undefined value here causes illegal behavior
+// :81:17: note: when computing vector element at index '0'
+// :81:17: error: use of undefined value here causes illegal behavior
+// :81:17: note: when computing vector element at index '0'
+// :81:17: error: use of undefined value here causes illegal behavior
+// :81:17: note: when computing vector element at index '1'
+// :81:17: error: use of undefined value here causes illegal behavior
+// :81:17: note: when computing vector element at index '1'
+// :81:17: error: use of undefined value here causes illegal behavior
+// :81:17: note: when computing vector element at index '0'
+// :81:17: error: use of undefined value here causes illegal behavior
+// :81:17: note: when computing vector element at index '0'
+// :81:17: error: use of undefined value here causes illegal behavior
+// :81:17: note: when computing vector element at index '0'
+// :81:17: error: use of undefined value here causes illegal behavior
+// :81:17: note: when computing vector element at index '0'
+// :81:17: error: use of undefined value here causes illegal behavior
+// :81:17: error: use of undefined value here causes illegal behavior
+// :81:17: error: use of undefined value here causes illegal behavior
+// :81:17: note: when computing vector element at index '0'
+// :81:17: error: use of undefined value here causes illegal behavior
+// :81:17: note: when computing vector element at index '0'
+// :81:17: error: use of undefined value here causes illegal behavior
+// :81:17: note: when computing vector element at index '0'
+// :81:17: error: use of undefined value here causes illegal behavior
+// :81:17: note: when computing vector element at index '0'
+// :81:17: error: use of undefined value here causes illegal behavior
+// :81:17: note: when computing vector element at index '1'
+// :81:17: error: use of undefined value here causes illegal behavior
+// :81:17: note: when computing vector element at index '1'
+// :81:17: error: use of undefined value here causes illegal behavior
+// :81:17: note: when computing vector element at index '0'
+// :81:17: error: use of undefined value here causes illegal behavior
+// :81:17: note: when computing vector element at index '0'
+// :81:17: error: use of undefined value here causes illegal behavior
+// :81:17: note: when computing vector element at index '0'
+// :81:17: error: use of undefined value here causes illegal behavior
+// :81:17: note: when computing vector element at index '0'
+// :81:17: error: use of undefined value here causes illegal behavior
+// :81:17: error: use of undefined value here causes illegal behavior
+// :81:17: error: use of undefined value here causes illegal behavior
+// :81:17: note: when computing vector element at index '0'
+// :81:17: error: use of undefined value here causes illegal behavior
+// :81:17: note: when computing vector element at index '0'
+// :81:17: error: use of undefined value here causes illegal behavior
+// :81:17: note: when computing vector element at index '0'
+// :81:17: error: use of undefined value here causes illegal behavior
+// :81:17: note: when computing vector element at index '0'
+// :81:17: error: use of undefined value here causes illegal behavior
+// :81:17: note: when computing vector element at index '1'
+// :81:17: error: use of undefined value here causes illegal behavior
+// :81:17: note: when computing vector element at index '1'
+// :81:17: error: use of undefined value here causes illegal behavior
+// :81:17: note: when computing vector element at index '0'
+// :81:17: error: use of undefined value here causes illegal behavior
+// :81:17: note: when computing vector element at index '0'
+// :81:17: error: use of undefined value here causes illegal behavior
+// :81:17: note: when computing vector element at index '0'
+// :81:17: error: use of undefined value here causes illegal behavior
+// :81:17: note: when computing vector element at index '0'
+// :81:17: error: use of undefined value here causes illegal behavior
+// :81:17: error: use of undefined value here causes illegal behavior
+// :81:17: error: use of undefined value here causes illegal behavior
+// :81:17: note: when computing vector element at index '0'
+// :81:17: error: use of undefined value here causes illegal behavior
+// :81:17: note: when computing vector element at index '0'
+// :81:17: error: use of undefined value here causes illegal behavior
+// :81:17: note: when computing vector element at index '0'
+// :81:17: error: use of undefined value here causes illegal behavior
+// :81:17: note: when computing vector element at index '0'
+// :81:17: error: use of undefined value here causes illegal behavior
+// :81:17: note: when computing vector element at index '1'
+// :81:17: error: use of undefined value here causes illegal behavior
+// :81:17: note: when computing vector element at index '1'
+// :81:17: error: use of undefined value here causes illegal behavior
+// :81:17: note: when computing vector element at index '0'
+// :81:17: error: use of undefined value here causes illegal behavior
+// :81:17: note: when computing vector element at index '0'
+// :81:17: error: use of undefined value here causes illegal behavior
+// :81:17: note: when computing vector element at index '0'
+// :81:17: error: use of undefined value here causes illegal behavior
+// :81:17: note: when computing vector element at index '0'
+// :81:17: error: use of undefined value here causes illegal behavior
+// :81:17: error: use of undefined value here causes illegal behavior
+// :81:17: error: use of undefined value here causes illegal behavior
+// :81:17: note: when computing vector element at index '0'
+// :81:17: error: use of undefined value here causes illegal behavior
+// :81:17: note: when computing vector element at index '0'
+// :81:17: error: use of undefined value here causes illegal behavior
+// :81:17: note: when computing vector element at index '0'
+// :81:17: error: use of undefined value here causes illegal behavior
+// :81:17: note: when computing vector element at index '0'
+// :81:17: error: use of undefined value here causes illegal behavior
+// :81:17: note: when computing vector element at index '1'
+// :81:17: error: use of undefined value here causes illegal behavior
+// :81:17: note: when computing vector element at index '1'
+// :81:17: error: use of undefined value here causes illegal behavior
+// :81:17: note: when computing vector element at index '0'
+// :81:17: error: use of undefined value here causes illegal behavior
+// :81:17: note: when computing vector element at index '0'
+// :81:17: error: use of undefined value here causes illegal behavior
+// :81:17: note: when computing vector element at index '0'
+// :81:17: error: use of undefined value here causes illegal behavior
+// :81:17: note: when computing vector element at index '0'
+// :81:17: error: use of undefined value here causes illegal behavior
+// :81:17: error: use of undefined value here causes illegal behavior
+// :81:17: error: use of undefined value here causes illegal behavior
+// :81:17: note: when computing vector element at index '0'
+// :81:17: error: use of undefined value here causes illegal behavior
+// :81:17: note: when computing vector element at index '0'
+// :81:17: error: use of undefined value here causes illegal behavior
+// :81:17: note: when computing vector element at index '0'
+// :81:17: error: use of undefined value here causes illegal behavior
+// :81:17: note: when computing vector element at index '0'
+// :81:17: error: use of undefined value here causes illegal behavior
+// :81:17: note: when computing vector element at index '1'
+// :81:17: error: use of undefined value here causes illegal behavior
+// :81:17: note: when computing vector element at index '1'
+// :81:17: error: use of undefined value here causes illegal behavior
+// :81:17: note: when computing vector element at index '0'
+// :81:17: error: use of undefined value here causes illegal behavior
+// :81:17: note: when computing vector element at index '0'
+// :81:17: error: use of undefined value here causes illegal behavior
+// :81:17: note: when computing vector element at index '0'
+// :81:17: error: use of undefined value here causes illegal behavior
+// :81:17: note: when computing vector element at index '0'
+// :81:17: error: use of undefined value here causes illegal behavior
+// :81:17: error: use of undefined value here causes illegal behavior
+// :81:17: error: use of undefined value here causes illegal behavior
+// :81:17: note: when computing vector element at index '0'
+// :81:17: error: use of undefined value here causes illegal behavior
+// :81:17: note: when computing vector element at index '0'
+// :81:17: error: use of undefined value here causes illegal behavior
+// :81:17: note: when computing vector element at index '0'
+// :81:17: error: use of undefined value here causes illegal behavior
+// :81:17: note: when computing vector element at index '0'
+// :81:17: error: use of undefined value here causes illegal behavior
+// :81:17: note: when computing vector element at index '1'
+// :81:17: error: use of undefined value here causes illegal behavior
+// :81:17: note: when computing vector element at index '1'
+// :81:17: error: use of undefined value here causes illegal behavior
+// :81:17: note: when computing vector element at index '0'
+// :81:17: error: use of undefined value here causes illegal behavior
+// :81:17: note: when computing vector element at index '0'
+// :81:17: error: use of undefined value here causes illegal behavior
+// :81:17: note: when computing vector element at index '0'
+// :81:17: error: use of undefined value here causes illegal behavior
+// :81:17: note: when computing vector element at index '0'
+// :81:17: error: use of undefined value here causes illegal behavior
+// :81:17: error: use of undefined value here causes illegal behavior
+// :81:17: error: use of undefined value here causes illegal behavior
+// :81:17: note: when computing vector element at index '0'
+// :81:17: error: use of undefined value here causes illegal behavior
+// :81:17: note: when computing vector element at index '0'
+// :81:17: error: use of undefined value here causes illegal behavior
+// :81:17: note: when computing vector element at index '0'
+// :81:17: error: use of undefined value here causes illegal behavior
+// :81:17: note: when computing vector element at index '0'
+// :81:17: error: use of undefined value here causes illegal behavior
+// :81:17: note: when computing vector element at index '1'
+// :81:17: error: use of undefined value here causes illegal behavior
+// :81:17: note: when computing vector element at index '1'
+// :81:17: error: use of undefined value here causes illegal behavior
+// :81:17: note: when computing vector element at index '0'
+// :81:17: error: use of undefined value here causes illegal behavior
+// :81:17: note: when computing vector element at index '0'
+// :81:17: error: use of undefined value here causes illegal behavior
+// :81:17: note: when computing vector element at index '0'
+// :81:17: error: use of undefined value here causes illegal behavior
+// :81:17: note: when computing vector element at index '0'
+// :81:17: error: use of undefined value here causes illegal behavior
+// :81:17: error: use of undefined value here causes illegal behavior
+// :81:17: error: use of undefined value here causes illegal behavior
+// :81:17: note: when computing vector element at index '0'
+// :81:17: error: use of undefined value here causes illegal behavior
+// :81:17: note: when computing vector element at index '0'
+// :81:17: error: use of undefined value here causes illegal behavior
+// :81:17: note: when computing vector element at index '0'
+// :81:17: error: use of undefined value here causes illegal behavior
+// :81:17: note: when computing vector element at index '0'
+// :81:17: error: use of undefined value here causes illegal behavior
+// :81:17: note: when computing vector element at index '1'
+// :81:17: error: use of undefined value here causes illegal behavior
+// :81:17: note: when computing vector element at index '1'
+// :81:17: error: use of undefined value here causes illegal behavior
+// :81:17: note: when computing vector element at index '0'
+// :81:17: error: use of undefined value here causes illegal behavior
+// :81:17: note: when computing vector element at index '0'
+// :81:17: error: use of undefined value here causes illegal behavior
+// :81:17: note: when computing vector element at index '0'
+// :81:17: error: use of undefined value here causes illegal behavior
+// :81:17: note: when computing vector element at index '0'
+// :81:21: error: use of undefined value here causes illegal behavior
+// :81:21: note: when computing vector element at index '0'
+// :81:21: error: use of undefined value here causes illegal behavior
+// :81:21: note: when computing vector element at index '0'
+// :81:21: error: use of undefined value here causes illegal behavior
+// :81:21: note: when computing vector element at index '0'
+// :81:21: error: use of undefined value here causes illegal behavior
+// :81:21: note: when computing vector element at index '0'
+// :81:21: error: use of undefined value here causes illegal behavior
+// :81:21: note: when computing vector element at index '0'
+// :81:21: error: use of undefined value here causes illegal behavior
+// :81:21: note: when computing vector element at index '0'
+// :81:21: error: use of undefined value here causes illegal behavior
+// :81:21: note: when computing vector element at index '0'
+// :81:21: error: use of undefined value here causes illegal behavior
+// :81:21: note: when computing vector element at index '0'
+// :81:21: error: use of undefined value here causes illegal behavior
+// :81:21: note: when computing vector element at index '0'
+// :81:21: error: use of undefined value here causes illegal behavior
+// :81:21: note: when computing vector element at index '0'
+// :81:21: error: use of undefined value here causes illegal behavior
+// :81:21: note: when computing vector element at index '0'
+// :81:21: error: use of undefined value here causes illegal behavior
+// :81:21: note: when computing vector element at index '0'
+// :81:21: error: use of undefined value here causes illegal behavior
+// :81:21: note: when computing vector element at index '0'
+// :81:21: error: use of undefined value here causes illegal behavior
+// :81:21: note: when computing vector element at index '0'
+// :81:21: error: use of undefined value here causes illegal behavior
+// :81:21: note: when computing vector element at index '0'
+// :81:21: error: use of undefined value here causes illegal behavior
+// :81:21: note: when computing vector element at index '0'
+// :81:21: error: use of undefined value here causes illegal behavior
+// :81:21: note: when computing vector element at index '0'
+// :81:21: error: use of undefined value here causes illegal behavior
+// :81:21: note: when computing vector element at index '0'
+// :81:21: error: use of undefined value here causes illegal behavior
+// :81:21: note: when computing vector element at index '0'
+// :81:21: error: use of undefined value here causes illegal behavior
+// :81:21: note: when computing vector element at index '0'
+// :81:21: error: use of undefined value here causes illegal behavior
+// :81:21: note: when computing vector element at index '0'
+// :81:21: error: use of undefined value here causes illegal behavior
+// :81:21: note: when computing vector element at index '0'
+// :85:22: error: use of undefined value here causes illegal behavior
+// :85:22: error: use of undefined value here causes illegal behavior
+// :85:22: error: use of undefined value here causes illegal behavior
+// :85:22: note: when computing vector element at index '0'
+// :85:22: error: use of undefined value here causes illegal behavior
+// :85:22: note: when computing vector element at index '0'
+// :85:22: error: use of undefined value here causes illegal behavior
+// :85:22: note: when computing vector element at index '0'
+// :85:22: error: use of undefined value here causes illegal behavior
+// :85:22: note: when computing vector element at index '0'
+// :85:22: error: use of undefined value here causes illegal behavior
+// :85:22: note: when computing vector element at index '1'
+// :85:22: error: use of undefined value here causes illegal behavior
+// :85:22: note: when computing vector element at index '1'
+// :85:22: error: use of undefined value here causes illegal behavior
+// :85:22: note: when computing vector element at index '0'
+// :85:22: error: use of undefined value here causes illegal behavior
+// :85:22: note: when computing vector element at index '0'
+// :85:22: error: use of undefined value here causes illegal behavior
+// :85:22: note: when computing vector element at index '0'
+// :85:22: error: use of undefined value here causes illegal behavior
+// :85:22: note: when computing vector element at index '0'
+// :85:22: error: use of undefined value here causes illegal behavior
+// :85:22: error: use of undefined value here causes illegal behavior
+// :85:22: error: use of undefined value here causes illegal behavior
+// :85:22: note: when computing vector element at index '0'
+// :85:22: error: use of undefined value here causes illegal behavior
+// :85:22: note: when computing vector element at index '0'
+// :85:22: error: use of undefined value here causes illegal behavior
+// :85:22: note: when computing vector element at index '0'
+// :85:22: error: use of undefined value here causes illegal behavior
+// :85:22: note: when computing vector element at index '0'
+// :85:22: error: use of undefined value here causes illegal behavior
+// :85:22: note: when computing vector element at index '1'
+// :85:22: error: use of undefined value here causes illegal behavior
+// :85:22: note: when computing vector element at index '1'
+// :85:22: error: use of undefined value here causes illegal behavior
+// :85:22: note: when computing vector element at index '0'
+// :85:22: error: use of undefined value here causes illegal behavior
+// :85:22: note: when computing vector element at index '0'
+// :85:22: error: use of undefined value here causes illegal behavior
+// :85:22: note: when computing vector element at index '0'
+// :85:22: error: use of undefined value here causes illegal behavior
+// :85:22: note: when computing vector element at index '0'
+// :85:22: error: use of undefined value here causes illegal behavior
+// :85:22: error: use of undefined value here causes illegal behavior
+// :85:22: error: use of undefined value here causes illegal behavior
+// :85:22: note: when computing vector element at index '0'
+// :85:22: error: use of undefined value here causes illegal behavior
+// :85:22: note: when computing vector element at index '0'
+// :85:22: error: use of undefined value here causes illegal behavior
+// :85:22: note: when computing vector element at index '0'
+// :85:22: error: use of undefined value here causes illegal behavior
+// :85:22: note: when computing vector element at index '0'
+// :85:22: error: use of undefined value here causes illegal behavior
+// :85:22: note: when computing vector element at index '1'
+// :85:22: error: use of undefined value here causes illegal behavior
+// :85:22: note: when computing vector element at index '1'
+// :85:22: error: use of undefined value here causes illegal behavior
+// :85:22: note: when computing vector element at index '0'
+// :85:22: error: use of undefined value here causes illegal behavior
+// :85:22: note: when computing vector element at index '0'
+// :85:22: error: use of undefined value here causes illegal behavior
+// :85:22: note: when computing vector element at index '0'
+// :85:22: error: use of undefined value here causes illegal behavior
+// :85:22: note: when computing vector element at index '0'
+// :85:22: error: use of undefined value here causes illegal behavior
+// :85:22: error: use of undefined value here causes illegal behavior
+// :85:22: error: use of undefined value here causes illegal behavior
+// :85:22: note: when computing vector element at index '0'
+// :85:22: error: use of undefined value here causes illegal behavior
+// :85:22: note: when computing vector element at index '0'
+// :85:22: error: use of undefined value here causes illegal behavior
+// :85:22: note: when computing vector element at index '0'
+// :85:22: error: use of undefined value here causes illegal behavior
+// :85:22: note: when computing vector element at index '0'
+// :85:22: error: use of undefined value here causes illegal behavior
+// :85:22: note: when computing vector element at index '1'
+// :85:22: error: use of undefined value here causes illegal behavior
+// :85:22: note: when computing vector element at index '1'
+// :85:22: error: use of undefined value here causes illegal behavior
+// :85:22: note: when computing vector element at index '0'
+// :85:22: error: use of undefined value here causes illegal behavior
+// :85:22: note: when computing vector element at index '0'
+// :85:22: error: use of undefined value here causes illegal behavior
+// :85:22: note: when computing vector element at index '0'
+// :85:22: error: use of undefined value here causes illegal behavior
+// :85:22: note: when computing vector element at index '0'
+// :85:22: error: use of undefined value here causes illegal behavior
+// :85:22: error: use of undefined value here causes illegal behavior
+// :85:22: error: use of undefined value here causes illegal behavior
+// :85:22: note: when computing vector element at index '0'
+// :85:22: error: use of undefined value here causes illegal behavior
+// :85:22: note: when computing vector element at index '0'
+// :85:22: error: use of undefined value here causes illegal behavior
+// :85:22: note: when computing vector element at index '0'
+// :85:22: error: use of undefined value here causes illegal behavior
+// :85:22: note: when computing vector element at index '0'
+// :85:22: error: use of undefined value here causes illegal behavior
+// :85:22: note: when computing vector element at index '1'
+// :85:22: error: use of undefined value here causes illegal behavior
+// :85:22: note: when computing vector element at index '1'
+// :85:22: error: use of undefined value here causes illegal behavior
+// :85:22: note: when computing vector element at index '0'
+// :85:22: error: use of undefined value here causes illegal behavior
+// :85:22: note: when computing vector element at index '0'
+// :85:22: error: use of undefined value here causes illegal behavior
+// :85:22: note: when computing vector element at index '0'
+// :85:22: error: use of undefined value here causes illegal behavior
+// :85:22: note: when computing vector element at index '0'
+// :85:22: error: use of undefined value here causes illegal behavior
+// :85:22: error: use of undefined value here causes illegal behavior
+// :85:22: error: use of undefined value here causes illegal behavior
+// :85:22: note: when computing vector element at index '0'
+// :85:22: error: use of undefined value here causes illegal behavior
+// :85:22: note: when computing vector element at index '0'
+// :85:22: error: use of undefined value here causes illegal behavior
+// :85:22: note: when computing vector element at index '0'
+// :85:22: error: use of undefined value here causes illegal behavior
+// :85:22: note: when computing vector element at index '0'
+// :85:22: error: use of undefined value here causes illegal behavior
+// :85:22: note: when computing vector element at index '1'
+// :85:22: error: use of undefined value here causes illegal behavior
+// :85:22: note: when computing vector element at index '1'
+// :85:22: error: use of undefined value here causes illegal behavior
+// :85:22: note: when computing vector element at index '0'
+// :85:22: error: use of undefined value here causes illegal behavior
+// :85:22: note: when computing vector element at index '0'
+// :85:22: error: use of undefined value here causes illegal behavior
+// :85:22: note: when computing vector element at index '0'
+// :85:22: error: use of undefined value here causes illegal behavior
+// :85:22: note: when computing vector element at index '0'
+// :85:22: error: use of undefined value here causes illegal behavior
+// :85:22: error: use of undefined value here causes illegal behavior
+// :85:22: error: use of undefined value here causes illegal behavior
+// :85:22: note: when computing vector element at index '0'
+// :85:22: error: use of undefined value here causes illegal behavior
+// :85:22: note: when computing vector element at index '0'
+// :85:22: error: use of undefined value here causes illegal behavior
+// :85:22: note: when computing vector element at index '0'
+// :85:22: error: use of undefined value here causes illegal behavior
+// :85:22: note: when computing vector element at index '0'
+// :85:22: error: use of undefined value here causes illegal behavior
+// :85:22: note: when computing vector element at index '1'
+// :85:22: error: use of undefined value here causes illegal behavior
+// :85:22: note: when computing vector element at index '1'
+// :85:22: error: use of undefined value here causes illegal behavior
+// :85:22: note: when computing vector element at index '0'
+// :85:22: error: use of undefined value here causes illegal behavior
+// :85:22: note: when computing vector element at index '0'
+// :85:22: error: use of undefined value here causes illegal behavior
+// :85:22: note: when computing vector element at index '0'
+// :85:22: error: use of undefined value here causes illegal behavior
+// :85:22: note: when computing vector element at index '0'
+// :85:22: error: use of undefined value here causes illegal behavior
+// :85:22: error: use of undefined value here causes illegal behavior
+// :85:22: error: use of undefined value here causes illegal behavior
+// :85:22: note: when computing vector element at index '0'
+// :85:22: error: use of undefined value here causes illegal behavior
+// :85:22: note: when computing vector element at index '0'
+// :85:22: error: use of undefined value here causes illegal behavior
+// :85:22: note: when computing vector element at index '0'
+// :85:22: error: use of undefined value here causes illegal behavior
+// :85:22: note: when computing vector element at index '0'
+// :85:22: error: use of undefined value here causes illegal behavior
+// :85:22: note: when computing vector element at index '1'
+// :85:22: error: use of undefined value here causes illegal behavior
+// :85:22: note: when computing vector element at index '1'
+// :85:22: error: use of undefined value here causes illegal behavior
+// :85:22: note: when computing vector element at index '0'
+// :85:22: error: use of undefined value here causes illegal behavior
+// :85:22: note: when computing vector element at index '0'
+// :85:22: error: use of undefined value here causes illegal behavior
+// :85:22: note: when computing vector element at index '0'
+// :85:22: error: use of undefined value here causes illegal behavior
+// :85:22: note: when computing vector element at index '0'
+// :85:22: error: use of undefined value here causes illegal behavior
+// :85:22: error: use of undefined value here causes illegal behavior
+// :85:22: error: use of undefined value here causes illegal behavior
+// :85:22: note: when computing vector element at index '0'
+// :85:22: error: use of undefined value here causes illegal behavior
+// :85:22: note: when computing vector element at index '0'
+// :85:22: error: use of undefined value here causes illegal behavior
+// :85:22: note: when computing vector element at index '0'
+// :85:22: error: use of undefined value here causes illegal behavior
+// :85:22: note: when computing vector element at index '0'
+// :85:22: error: use of undefined value here causes illegal behavior
+// :85:22: note: when computing vector element at index '1'
+// :85:22: error: use of undefined value here causes illegal behavior
+// :85:22: note: when computing vector element at index '1'
+// :85:22: error: use of undefined value here causes illegal behavior
+// :85:22: note: when computing vector element at index '0'
+// :85:22: error: use of undefined value here causes illegal behavior
+// :85:22: note: when computing vector element at index '0'
+// :85:22: error: use of undefined value here causes illegal behavior
+// :85:22: note: when computing vector element at index '0'
+// :85:22: error: use of undefined value here causes illegal behavior
+// :85:22: note: when computing vector element at index '0'
+// :85:22: error: use of undefined value here causes illegal behavior
+// :85:22: error: use of undefined value here causes illegal behavior
+// :85:22: error: use of undefined value here causes illegal behavior
+// :85:22: note: when computing vector element at index '0'
+// :85:22: error: use of undefined value here causes illegal behavior
+// :85:22: note: when computing vector element at index '0'
+// :85:22: error: use of undefined value here causes illegal behavior
+// :85:22: note: when computing vector element at index '0'
+// :85:22: error: use of undefined value here causes illegal behavior
+// :85:22: note: when computing vector element at index '0'
+// :85:22: error: use of undefined value here causes illegal behavior
+// :85:22: note: when computing vector element at index '1'
+// :85:22: error: use of undefined value here causes illegal behavior
+// :85:22: note: when computing vector element at index '1'
+// :85:22: error: use of undefined value here causes illegal behavior
+// :85:22: note: when computing vector element at index '0'
+// :85:22: error: use of undefined value here causes illegal behavior
+// :85:22: note: when computing vector element at index '0'
+// :85:22: error: use of undefined value here causes illegal behavior
+// :85:22: note: when computing vector element at index '0'
+// :85:22: error: use of undefined value here causes illegal behavior
+// :85:22: note: when computing vector element at index '0'
+// :85:22: error: use of undefined value here causes illegal behavior
+// :85:22: error: use of undefined value here causes illegal behavior
+// :85:22: error: use of undefined value here causes illegal behavior
+// :85:22: note: when computing vector element at index '0'
+// :85:22: error: use of undefined value here causes illegal behavior
+// :85:22: note: when computing vector element at index '0'
+// :85:22: error: use of undefined value here causes illegal behavior
+// :85:22: note: when computing vector element at index '0'
+// :85:22: error: use of undefined value here causes illegal behavior
+// :85:22: note: when computing vector element at index '0'
+// :85:22: error: use of undefined value here causes illegal behavior
+// :85:22: note: when computing vector element at index '1'
+// :85:22: error: use of undefined value here causes illegal behavior
+// :85:22: note: when computing vector element at index '1'
+// :85:22: error: use of undefined value here causes illegal behavior
+// :85:22: note: when computing vector element at index '0'
+// :85:22: error: use of undefined value here causes illegal behavior
+// :85:22: note: when computing vector element at index '0'
+// :85:22: error: use of undefined value here causes illegal behavior
+// :85:22: note: when computing vector element at index '0'
+// :85:22: error: use of undefined value here causes illegal behavior
+// :85:22: note: when computing vector element at index '0'
+// :85:25: error: use of undefined value here causes illegal behavior
+// :85:25: note: when computing vector element at index '0'
+// :85:25: error: use of undefined value here causes illegal behavior
+// :85:25: note: when computing vector element at index '0'
+// :85:25: error: use of undefined value here causes illegal behavior
+// :85:25: note: when computing vector element at index '0'
+// :85:25: error: use of undefined value here causes illegal behavior
+// :85:25: note: when computing vector element at index '0'
+// :85:25: error: use of undefined value here causes illegal behavior
+// :85:25: note: when computing vector element at index '0'
+// :85:25: error: use of undefined value here causes illegal behavior
+// :85:25: note: when computing vector element at index '0'
+// :85:25: error: use of undefined value here causes illegal behavior
+// :85:25: note: when computing vector element at index '0'
+// :85:25: error: use of undefined value here causes illegal behavior
+// :85:25: note: when computing vector element at index '0'
+// :85:25: error: use of undefined value here causes illegal behavior
+// :85:25: note: when computing vector element at index '0'
+// :85:25: error: use of undefined value here causes illegal behavior
+// :85:25: note: when computing vector element at index '0'
+// :85:25: error: use of undefined value here causes illegal behavior
+// :85:25: note: when computing vector element at index '0'
+// :85:25: error: use of undefined value here causes illegal behavior
+// :85:25: note: when computing vector element at index '0'
+// :85:25: error: use of undefined value here causes illegal behavior
+// :85:25: note: when computing vector element at index '0'
+// :85:25: error: use of undefined value here causes illegal behavior
+// :85:25: note: when computing vector element at index '0'
+// :85:25: error: use of undefined value here causes illegal behavior
+// :85:25: note: when computing vector element at index '0'
+// :85:25: error: use of undefined value here causes illegal behavior
+// :85:25: note: when computing vector element at index '0'
+// :85:25: error: use of undefined value here causes illegal behavior
+// :85:25: note: when computing vector element at index '0'
+// :85:25: error: use of undefined value here causes illegal behavior
+// :85:25: note: when computing vector element at index '0'
+// :85:25: error: use of undefined value here causes illegal behavior
+// :85:25: note: when computing vector element at index '0'
+// :85:25: error: use of undefined value here causes illegal behavior
+// :85:25: note: when computing vector element at index '0'
+// :85:25: error: use of undefined value here causes illegal behavior
+// :85:25: note: when computing vector element at index '0'
+// :85:25: error: use of undefined value here causes illegal behavior
+// :85:25: note: when computing vector element at index '0'
+// :89:22: error: use of undefined value here causes illegal behavior
+// :89:22: error: use of undefined value here causes illegal behavior
+// :89:22: error: use of undefined value here causes illegal behavior
+// :89:22: note: when computing vector element at index '0'
+// :89:22: error: use of undefined value here causes illegal behavior
+// :89:22: note: when computing vector element at index '0'
+// :89:22: error: use of undefined value here causes illegal behavior
+// :89:22: note: when computing vector element at index '0'
+// :89:22: error: use of undefined value here causes illegal behavior
+// :89:22: note: when computing vector element at index '0'
+// :89:22: error: use of undefined value here causes illegal behavior
+// :89:22: note: when computing vector element at index '1'
+// :89:22: error: use of undefined value here causes illegal behavior
+// :89:22: note: when computing vector element at index '1'
+// :89:22: error: use of undefined value here causes illegal behavior
+// :89:22: note: when computing vector element at index '0'
+// :89:22: error: use of undefined value here causes illegal behavior
+// :89:22: note: when computing vector element at index '0'
+// :89:22: error: use of undefined value here causes illegal behavior
+// :89:22: note: when computing vector element at index '0'
+// :89:22: error: use of undefined value here causes illegal behavior
+// :89:22: note: when computing vector element at index '0'
+// :89:22: error: use of undefined value here causes illegal behavior
+// :89:22: error: use of undefined value here causes illegal behavior
+// :89:22: error: use of undefined value here causes illegal behavior
+// :89:22: note: when computing vector element at index '0'
+// :89:22: error: use of undefined value here causes illegal behavior
+// :89:22: note: when computing vector element at index '0'
+// :89:22: error: use of undefined value here causes illegal behavior
+// :89:22: note: when computing vector element at index '0'
+// :89:22: error: use of undefined value here causes illegal behavior
+// :89:22: note: when computing vector element at index '0'
+// :89:22: error: use of undefined value here causes illegal behavior
+// :89:22: note: when computing vector element at index '1'
+// :89:22: error: use of undefined value here causes illegal behavior
+// :89:22: note: when computing vector element at index '1'
+// :89:22: error: use of undefined value here causes illegal behavior
+// :89:22: note: when computing vector element at index '0'
+// :89:22: error: use of undefined value here causes illegal behavior
+// :89:22: note: when computing vector element at index '0'
+// :89:22: error: use of undefined value here causes illegal behavior
+// :89:22: note: when computing vector element at index '0'
+// :89:22: error: use of undefined value here causes illegal behavior
+// :89:22: note: when computing vector element at index '0'
+// :89:22: error: use of undefined value here causes illegal behavior
+// :89:22: error: use of undefined value here causes illegal behavior
+// :89:22: error: use of undefined value here causes illegal behavior
+// :89:22: note: when computing vector element at index '0'
+// :89:22: error: use of undefined value here causes illegal behavior
+// :89:22: note: when computing vector element at index '0'
+// :89:22: error: use of undefined value here causes illegal behavior
+// :89:22: note: when computing vector element at index '0'
+// :89:22: error: use of undefined value here causes illegal behavior
+// :89:22: note: when computing vector element at index '0'
+// :89:22: error: use of undefined value here causes illegal behavior
+// :89:22: note: when computing vector element at index '1'
+// :89:22: error: use of undefined value here causes illegal behavior
+// :89:22: note: when computing vector element at index '1'
+// :89:22: error: use of undefined value here causes illegal behavior
+// :89:22: note: when computing vector element at index '0'
+// :89:22: error: use of undefined value here causes illegal behavior
+// :89:22: note: when computing vector element at index '0'
+// :89:22: error: use of undefined value here causes illegal behavior
+// :89:22: note: when computing vector element at index '0'
+// :89:22: error: use of undefined value here causes illegal behavior
+// :89:22: note: when computing vector element at index '0'
+// :89:22: error: use of undefined value here causes illegal behavior
+// :89:22: error: use of undefined value here causes illegal behavior
+// :89:22: error: use of undefined value here causes illegal behavior
+// :89:22: note: when computing vector element at index '0'
+// :89:22: error: use of undefined value here causes illegal behavior
+// :89:22: note: when computing vector element at index '0'
+// :89:22: error: use of undefined value here causes illegal behavior
+// :89:22: note: when computing vector element at index '0'
+// :89:22: error: use of undefined value here causes illegal behavior
+// :89:22: note: when computing vector element at index '0'
+// :89:22: error: use of undefined value here causes illegal behavior
+// :89:22: note: when computing vector element at index '1'
+// :89:22: error: use of undefined value here causes illegal behavior
+// :89:22: note: when computing vector element at index '1'
+// :89:22: error: use of undefined value here causes illegal behavior
+// :89:22: note: when computing vector element at index '0'
+// :89:22: error: use of undefined value here causes illegal behavior
+// :89:22: note: when computing vector element at index '0'
+// :89:22: error: use of undefined value here causes illegal behavior
+// :89:22: note: when computing vector element at index '0'
+// :89:22: error: use of undefined value here causes illegal behavior
+// :89:22: note: when computing vector element at index '0'
+// :89:22: error: use of undefined value here causes illegal behavior
+// :89:22: error: use of undefined value here causes illegal behavior
+// :89:22: error: use of undefined value here causes illegal behavior
+// :89:22: note: when computing vector element at index '0'
+// :89:22: error: use of undefined value here causes illegal behavior
+// :89:22: note: when computing vector element at index '0'
+// :89:22: error: use of undefined value here causes illegal behavior
+// :89:22: note: when computing vector element at index '0'
+// :89:22: error: use of undefined value here causes illegal behavior
+// :89:22: note: when computing vector element at index '0'
+// :89:22: error: use of undefined value here causes illegal behavior
+// :89:22: note: when computing vector element at index '1'
+// :89:22: error: use of undefined value here causes illegal behavior
+// :89:22: note: when computing vector element at index '1'
+// :89:22: error: use of undefined value here causes illegal behavior
+// :89:22: note: when computing vector element at index '0'
+// :89:22: error: use of undefined value here causes illegal behavior
+// :89:22: note: when computing vector element at index '0'
+// :89:22: error: use of undefined value here causes illegal behavior
+// :89:22: note: when computing vector element at index '0'
+// :89:22: error: use of undefined value here causes illegal behavior
+// :89:22: note: when computing vector element at index '0'
+// :89:22: error: use of undefined value here causes illegal behavior
+// :89:22: error: use of undefined value here causes illegal behavior
+// :89:22: error: use of undefined value here causes illegal behavior
+// :89:22: note: when computing vector element at index '0'
+// :89:22: error: use of undefined value here causes illegal behavior
+// :89:22: note: when computing vector element at index '0'
+// :89:22: error: use of undefined value here causes illegal behavior
+// :89:22: note: when computing vector element at index '0'
+// :89:22: error: use of undefined value here causes illegal behavior
+// :89:22: note: when computing vector element at index '0'
+// :89:22: error: use of undefined value here causes illegal behavior
+// :89:22: note: when computing vector element at index '1'
+// :89:22: error: use of undefined value here causes illegal behavior
+// :89:22: note: when computing vector element at index '1'
+// :89:22: error: use of undefined value here causes illegal behavior
+// :89:22: note: when computing vector element at index '0'
+// :89:22: error: use of undefined value here causes illegal behavior
+// :89:22: note: when computing vector element at index '0'
+// :89:22: error: use of undefined value here causes illegal behavior
+// :89:22: note: when computing vector element at index '0'
+// :89:22: error: use of undefined value here causes illegal behavior
+// :89:22: note: when computing vector element at index '0'
+// :89:22: error: use of undefined value here causes illegal behavior
+// :89:22: error: use of undefined value here causes illegal behavior
+// :89:22: error: use of undefined value here causes illegal behavior
+// :89:22: note: when computing vector element at index '0'
+// :89:22: error: use of undefined value here causes illegal behavior
+// :89:22: note: when computing vector element at index '0'
+// :89:22: error: use of undefined value here causes illegal behavior
+// :89:22: note: when computing vector element at index '0'
+// :89:22: error: use of undefined value here causes illegal behavior
+// :89:22: note: when computing vector element at index '0'
+// :89:22: error: use of undefined value here causes illegal behavior
+// :89:22: note: when computing vector element at index '1'
+// :89:22: error: use of undefined value here causes illegal behavior
+// :89:22: note: when computing vector element at index '1'
+// :89:22: error: use of undefined value here causes illegal behavior
+// :89:22: note: when computing vector element at index '0'
+// :89:22: error: use of undefined value here causes illegal behavior
+// :89:22: note: when computing vector element at index '0'
+// :89:22: error: use of undefined value here causes illegal behavior
+// :89:22: note: when computing vector element at index '0'
+// :89:22: error: use of undefined value here causes illegal behavior
+// :89:22: note: when computing vector element at index '0'
+// :89:22: error: use of undefined value here causes illegal behavior
+// :89:22: error: use of undefined value here causes illegal behavior
+// :89:22: error: use of undefined value here causes illegal behavior
+// :89:22: note: when computing vector element at index '0'
+// :89:22: error: use of undefined value here causes illegal behavior
+// :89:22: note: when computing vector element at index '0'
+// :89:22: error: use of undefined value here causes illegal behavior
+// :89:22: note: when computing vector element at index '0'
+// :89:22: error: use of undefined value here causes illegal behavior
+// :89:22: note: when computing vector element at index '0'
+// :89:22: error: use of undefined value here causes illegal behavior
+// :89:22: note: when computing vector element at index '1'
+// :89:22: error: use of undefined value here causes illegal behavior
+// :89:22: note: when computing vector element at index '1'
+// :89:22: error: use of undefined value here causes illegal behavior
+// :89:22: note: when computing vector element at index '0'
+// :89:22: error: use of undefined value here causes illegal behavior
+// :89:22: note: when computing vector element at index '0'
+// :89:22: error: use of undefined value here causes illegal behavior
+// :89:22: note: when computing vector element at index '0'
+// :89:22: error: use of undefined value here causes illegal behavior
+// :89:22: note: when computing vector element at index '0'
+// :89:22: error: use of undefined value here causes illegal behavior
+// :89:22: error: use of undefined value here causes illegal behavior
+// :89:22: error: use of undefined value here causes illegal behavior
+// :89:22: note: when computing vector element at index '0'
+// :89:22: error: use of undefined value here causes illegal behavior
+// :89:22: note: when computing vector element at index '0'
+// :89:22: error: use of undefined value here causes illegal behavior
+// :89:22: note: when computing vector element at index '0'
+// :89:22: error: use of undefined value here causes illegal behavior
+// :89:22: note: when computing vector element at index '0'
+// :89:22: error: use of undefined value here causes illegal behavior
+// :89:22: note: when computing vector element at index '1'
+// :89:22: error: use of undefined value here causes illegal behavior
+// :89:22: note: when computing vector element at index '1'
+// :89:22: error: use of undefined value here causes illegal behavior
+// :89:22: note: when computing vector element at index '0'
+// :89:22: error: use of undefined value here causes illegal behavior
+// :89:22: note: when computing vector element at index '0'
+// :89:22: error: use of undefined value here causes illegal behavior
+// :89:22: note: when computing vector element at index '0'
+// :89:22: error: use of undefined value here causes illegal behavior
+// :89:22: note: when computing vector element at index '0'
+// :89:22: error: use of undefined value here causes illegal behavior
+// :89:22: error: use of undefined value here causes illegal behavior
+// :89:22: error: use of undefined value here causes illegal behavior
+// :89:22: note: when computing vector element at index '0'
+// :89:22: error: use of undefined value here causes illegal behavior
+// :89:22: note: when computing vector element at index '0'
+// :89:22: error: use of undefined value here causes illegal behavior
+// :89:22: note: when computing vector element at index '0'
+// :89:22: error: use of undefined value here causes illegal behavior
+// :89:22: note: when computing vector element at index '0'
+// :89:22: error: use of undefined value here causes illegal behavior
+// :89:22: note: when computing vector element at index '1'
+// :89:22: error: use of undefined value here causes illegal behavior
+// :89:22: note: when computing vector element at index '1'
+// :89:22: error: use of undefined value here causes illegal behavior
+// :89:22: note: when computing vector element at index '0'
+// :89:22: error: use of undefined value here causes illegal behavior
+// :89:22: note: when computing vector element at index '0'
+// :89:22: error: use of undefined value here causes illegal behavior
+// :89:22: note: when computing vector element at index '0'
+// :89:22: error: use of undefined value here causes illegal behavior
+// :89:22: note: when computing vector element at index '0'
+// :89:22: error: use of undefined value here causes illegal behavior
+// :89:22: error: use of undefined value here causes illegal behavior
+// :89:22: error: use of undefined value here causes illegal behavior
+// :89:22: note: when computing vector element at index '0'
+// :89:22: error: use of undefined value here causes illegal behavior
+// :89:22: note: when computing vector element at index '0'
+// :89:22: error: use of undefined value here causes illegal behavior
+// :89:22: note: when computing vector element at index '0'
+// :89:22: error: use of undefined value here causes illegal behavior
+// :89:22: note: when computing vector element at index '0'
+// :89:22: error: use of undefined value here causes illegal behavior
+// :89:22: note: when computing vector element at index '1'
+// :89:22: error: use of undefined value here causes illegal behavior
+// :89:22: note: when computing vector element at index '1'
+// :89:22: error: use of undefined value here causes illegal behavior
+// :89:22: note: when computing vector element at index '0'
+// :89:22: error: use of undefined value here causes illegal behavior
+// :89:22: note: when computing vector element at index '0'
+// :89:22: error: use of undefined value here causes illegal behavior
+// :89:22: note: when computing vector element at index '0'
+// :89:22: error: use of undefined value here causes illegal behavior
+// :89:22: note: when computing vector element at index '0'
+// :89:25: error: use of undefined value here causes illegal behavior
+// :89:25: note: when computing vector element at index '0'
+// :89:25: error: use of undefined value here causes illegal behavior
+// :89:25: note: when computing vector element at index '0'
+// :89:25: error: use of undefined value here causes illegal behavior
+// :89:25: note: when computing vector element at index '0'
+// :89:25: error: use of undefined value here causes illegal behavior
+// :89:25: note: when computing vector element at index '0'
+// :89:25: error: use of undefined value here causes illegal behavior
+// :89:25: note: when computing vector element at index '0'
+// :89:25: error: use of undefined value here causes illegal behavior
+// :89:25: note: when computing vector element at index '0'
+// :89:25: error: use of undefined value here causes illegal behavior
+// :89:25: note: when computing vector element at index '0'
+// :89:25: error: use of undefined value here causes illegal behavior
+// :89:25: note: when computing vector element at index '0'
+// :89:25: error: use of undefined value here causes illegal behavior
+// :89:25: note: when computing vector element at index '0'
+// :89:25: error: use of undefined value here causes illegal behavior
+// :89:25: note: when computing vector element at index '0'
+// :89:25: error: use of undefined value here causes illegal behavior
+// :89:25: note: when computing vector element at index '0'
+// :89:25: error: use of undefined value here causes illegal behavior
+// :89:25: note: when computing vector element at index '0'
+// :89:25: error: use of undefined value here causes illegal behavior
+// :89:25: note: when computing vector element at index '0'
+// :89:25: error: use of undefined value here causes illegal behavior
+// :89:25: note: when computing vector element at index '0'
+// :89:25: error: use of undefined value here causes illegal behavior
+// :89:25: note: when computing vector element at index '0'
+// :89:25: error: use of undefined value here causes illegal behavior
+// :89:25: note: when computing vector element at index '0'
+// :89:25: error: use of undefined value here causes illegal behavior
+// :89:25: note: when computing vector element at index '0'
+// :89:25: error: use of undefined value here causes illegal behavior
+// :89:25: note: when computing vector element at index '0'
+// :89:25: error: use of undefined value here causes illegal behavior
+// :89:25: note: when computing vector element at index '0'
+// :89:25: error: use of undefined value here causes illegal behavior
+// :89:25: note: when computing vector element at index '0'
+// :89:25: error: use of undefined value here causes illegal behavior
+// :89:25: note: when computing vector element at index '0'
+// :89:25: error: use of undefined value here causes illegal behavior
+// :89:25: note: when computing vector element at index '0'
+// :95:17: error: use of undefined value here causes illegal behavior
+// :95:17: error: use of undefined value here causes illegal behavior
+// :95:17: error: use of undefined value here causes illegal behavior
+// :95:17: error: use of undefined value here causes illegal behavior
+// :95:17: error: use of undefined value here causes illegal behavior
+// :95:17: error: use of undefined value here causes illegal behavior
+// :95:17: error: use of undefined value here causes illegal behavior
+// :95:17: note: when computing vector element at index '1'
+// :95:17: error: use of undefined value here causes illegal behavior
+// :95:17: note: when computing vector element at index '1'
+// :95:17: error: use of undefined value here causes illegal behavior
+// :95:17: note: when computing vector element at index '1'
+// :95:17: error: use of undefined value here causes illegal behavior
+// :95:17: note: when computing vector element at index '1'
+// :95:17: error: use of undefined value here causes illegal behavior
+// :95:17: note: when computing vector element at index '0'
+// :95:17: error: use of undefined value here causes illegal behavior
+// :95:17: note: when computing vector element at index '0'
+// :95:17: error: use of undefined value here causes illegal behavior
+// :95:17: note: when computing vector element at index '0'
+// :95:17: error: use of undefined value here causes illegal behavior
+// :95:17: note: when computing vector element at index '0'
+// :95:17: error: use of undefined value here causes illegal behavior
+// :95:17: error: use of undefined value here causes illegal behavior
+// :95:17: error: use of undefined value here causes illegal behavior
+// :95:17: error: use of undefined value here causes illegal behavior
+// :95:17: error: use of undefined value here causes illegal behavior
+// :95:17: error: use of undefined value here causes illegal behavior
+// :95:17: error: use of undefined value here causes illegal behavior
+// :95:17: note: when computing vector element at index '1'
+// :95:17: error: use of undefined value here causes illegal behavior
+// :95:17: note: when computing vector element at index '1'
+// :95:17: error: use of undefined value here causes illegal behavior
+// :95:17: note: when computing vector element at index '1'
+// :95:17: error: use of undefined value here causes illegal behavior
+// :95:17: note: when computing vector element at index '1'
+// :95:17: error: use of undefined value here causes illegal behavior
+// :95:17: note: when computing vector element at index '0'
+// :95:17: error: use of undefined value here causes illegal behavior
+// :95:17: note: when computing vector element at index '0'
+// :95:17: error: use of undefined value here causes illegal behavior
+// :95:17: note: when computing vector element at index '0'
+// :95:17: error: use of undefined value here causes illegal behavior
+// :95:17: note: when computing vector element at index '0'
+// :95:17: error: use of undefined value here causes illegal behavior
+// :95:17: error: use of undefined value here causes illegal behavior
+// :95:17: error: use of undefined value here causes illegal behavior
+// :95:17: error: use of undefined value here causes illegal behavior
+// :95:17: error: use of undefined value here causes illegal behavior
+// :95:17: error: use of undefined value here causes illegal behavior
+// :95:17: error: use of undefined value here causes illegal behavior
+// :95:17: note: when computing vector element at index '1'
+// :95:17: error: use of undefined value here causes illegal behavior
+// :95:17: note: when computing vector element at index '1'
+// :95:17: error: use of undefined value here causes illegal behavior
+// :95:17: note: when computing vector element at index '1'
+// :95:17: error: use of undefined value here causes illegal behavior
+// :95:17: note: when computing vector element at index '1'
+// :95:17: error: use of undefined value here causes illegal behavior
+// :95:17: note: when computing vector element at index '0'
+// :95:17: error: use of undefined value here causes illegal behavior
+// :95:17: note: when computing vector element at index '0'
+// :95:17: error: use of undefined value here causes illegal behavior
+// :95:17: note: when computing vector element at index '0'
+// :95:17: error: use of undefined value here causes illegal behavior
+// :95:17: note: when computing vector element at index '0'
+// :95:17: error: use of undefined value here causes illegal behavior
+// :95:17: error: use of undefined value here causes illegal behavior
+// :95:17: error: use of undefined value here causes illegal behavior
+// :95:17: error: use of undefined value here causes illegal behavior
+// :95:17: error: use of undefined value here causes illegal behavior
+// :95:17: error: use of undefined value here causes illegal behavior
+// :95:17: error: use of undefined value here causes illegal behavior
+// :95:17: note: when computing vector element at index '1'
+// :95:17: error: use of undefined value here causes illegal behavior
+// :95:17: note: when computing vector element at index '1'
+// :95:17: error: use of undefined value here causes illegal behavior
+// :95:17: note: when computing vector element at index '1'
+// :95:17: error: use of undefined value here causes illegal behavior
+// :95:17: note: when computing vector element at index '1'
+// :95:17: error: use of undefined value here causes illegal behavior
+// :95:17: note: when computing vector element at index '0'
+// :95:17: error: use of undefined value here causes illegal behavior
+// :95:17: note: when computing vector element at index '0'
+// :95:17: error: use of undefined value here causes illegal behavior
+// :95:17: note: when computing vector element at index '0'
+// :95:17: error: use of undefined value here causes illegal behavior
+// :95:17: note: when computing vector element at index '0'
+// :95:17: error: use of undefined value here causes illegal behavior
+// :95:17: error: use of undefined value here causes illegal behavior
+// :95:17: error: use of undefined value here causes illegal behavior
+// :95:17: error: use of undefined value here causes illegal behavior
+// :95:17: error: use of undefined value here causes illegal behavior
+// :95:17: error: use of undefined value here causes illegal behavior
+// :95:17: error: use of undefined value here causes illegal behavior
+// :95:17: note: when computing vector element at index '1'
+// :95:17: error: use of undefined value here causes illegal behavior
+// :95:17: note: when computing vector element at index '1'
+// :95:17: error: use of undefined value here causes illegal behavior
+// :95:17: note: when computing vector element at index '1'
+// :95:17: error: use of undefined value here causes illegal behavior
+// :95:17: note: when computing vector element at index '1'
+// :95:17: error: use of undefined value here causes illegal behavior
+// :95:17: note: when computing vector element at index '0'
+// :95:17: error: use of undefined value here causes illegal behavior
+// :95:17: note: when computing vector element at index '0'
+// :95:17: error: use of undefined value here causes illegal behavior
+// :95:17: note: when computing vector element at index '0'
+// :95:17: error: use of undefined value here causes illegal behavior
+// :95:17: note: when computing vector element at index '0'
+// :95:17: error: use of undefined value here causes illegal behavior
+// :95:17: error: use of undefined value here causes illegal behavior
+// :95:17: error: use of undefined value here causes illegal behavior
+// :95:17: error: use of undefined value here causes illegal behavior
+// :95:17: error: use of undefined value here causes illegal behavior
+// :95:17: error: use of undefined value here causes illegal behavior
+// :95:17: error: use of undefined value here causes illegal behavior
+// :95:17: note: when computing vector element at index '1'
+// :95:17: error: use of undefined value here causes illegal behavior
+// :95:17: note: when computing vector element at index '1'
+// :95:17: error: use of undefined value here causes illegal behavior
+// :95:17: note: when computing vector element at index '1'
+// :95:17: error: use of undefined value here causes illegal behavior
+// :95:17: note: when computing vector element at index '1'
+// :95:17: error: use of undefined value here causes illegal behavior
+// :95:17: note: when computing vector element at index '0'
+// :95:17: error: use of undefined value here causes illegal behavior
+// :95:17: note: when computing vector element at index '0'
+// :95:17: error: use of undefined value here causes illegal behavior
+// :95:17: note: when computing vector element at index '0'
+// :95:17: error: use of undefined value here causes illegal behavior
+// :95:17: note: when computing vector element at index '0'
+// :95:17: error: use of undefined value here causes illegal behavior
+// :95:17: error: use of undefined value here causes illegal behavior
+// :95:17: error: use of undefined value here causes illegal behavior
+// :95:17: error: use of undefined value here causes illegal behavior
+// :95:17: error: use of undefined value here causes illegal behavior
+// :95:17: error: use of undefined value here causes illegal behavior
+// :95:17: error: use of undefined value here causes illegal behavior
+// :95:17: note: when computing vector element at index '1'
+// :95:17: error: use of undefined value here causes illegal behavior
+// :95:17: note: when computing vector element at index '1'
+// :95:17: error: use of undefined value here causes illegal behavior
+// :95:17: note: when computing vector element at index '1'
+// :95:17: error: use of undefined value here causes illegal behavior
+// :95:17: note: when computing vector element at index '1'
+// :95:17: error: use of undefined value here causes illegal behavior
+// :95:17: note: when computing vector element at index '0'
+// :95:17: error: use of undefined value here causes illegal behavior
+// :95:17: note: when computing vector element at index '0'
+// :95:17: error: use of undefined value here causes illegal behavior
+// :95:17: note: when computing vector element at index '0'
+// :95:17: error: use of undefined value here causes illegal behavior
+// :95:17: note: when computing vector element at index '0'
+// :95:17: error: use of undefined value here causes illegal behavior
+// :95:17: error: use of undefined value here causes illegal behavior
+// :95:17: error: use of undefined value here causes illegal behavior
+// :95:17: error: use of undefined value here causes illegal behavior
+// :95:17: error: use of undefined value here causes illegal behavior
+// :95:17: error: use of undefined value here causes illegal behavior
+// :95:17: error: use of undefined value here causes illegal behavior
+// :95:17: note: when computing vector element at index '1'
+// :95:17: error: use of undefined value here causes illegal behavior
+// :95:17: note: when computing vector element at index '1'
+// :95:17: error: use of undefined value here causes illegal behavior
+// :95:17: note: when computing vector element at index '1'
+// :95:17: error: use of undefined value here causes illegal behavior
+// :95:17: note: when computing vector element at index '1'
+// :95:17: error: use of undefined value here causes illegal behavior
+// :95:17: note: when computing vector element at index '0'
+// :95:17: error: use of undefined value here causes illegal behavior
+// :95:17: note: when computing vector element at index '0'
+// :95:17: error: use of undefined value here causes illegal behavior
+// :95:17: note: when computing vector element at index '0'
+// :95:17: error: use of undefined value here causes illegal behavior
+// :95:17: note: when computing vector element at index '0'
+// :95:17: error: use of undefined value here causes illegal behavior
+// :95:17: error: use of undefined value here causes illegal behavior
+// :95:17: error: use of undefined value here causes illegal behavior
+// :95:17: error: use of undefined value here causes illegal behavior
+// :95:17: error: use of undefined value here causes illegal behavior
+// :95:17: error: use of undefined value here causes illegal behavior
+// :95:17: error: use of undefined value here causes illegal behavior
+// :95:17: note: when computing vector element at index '1'
+// :95:17: error: use of undefined value here causes illegal behavior
+// :95:17: note: when computing vector element at index '1'
+// :95:17: error: use of undefined value here causes illegal behavior
+// :95:17: note: when computing vector element at index '1'
+// :95:17: error: use of undefined value here causes illegal behavior
+// :95:17: note: when computing vector element at index '1'
+// :95:17: error: use of undefined value here causes illegal behavior
+// :95:17: note: when computing vector element at index '0'
+// :95:17: error: use of undefined value here causes illegal behavior
+// :95:17: note: when computing vector element at index '0'
+// :95:17: error: use of undefined value here causes illegal behavior
+// :95:17: note: when computing vector element at index '0'
+// :95:17: error: use of undefined value here causes illegal behavior
+// :95:17: note: when computing vector element at index '0'
+// :95:17: error: use of undefined value here causes illegal behavior
+// :95:17: error: use of undefined value here causes illegal behavior
+// :95:17: error: use of undefined value here causes illegal behavior
+// :95:17: error: use of undefined value here causes illegal behavior
+// :95:17: error: use of undefined value here causes illegal behavior
+// :95:17: error: use of undefined value here causes illegal behavior
+// :95:17: error: use of undefined value here causes illegal behavior
+// :95:17: note: when computing vector element at index '1'
+// :95:17: error: use of undefined value here causes illegal behavior
+// :95:17: note: when computing vector element at index '1'
+// :95:17: error: use of undefined value here causes illegal behavior
+// :95:17: note: when computing vector element at index '1'
+// :95:17: error: use of undefined value here causes illegal behavior
+// :95:17: note: when computing vector element at index '1'
+// :95:17: error: use of undefined value here causes illegal behavior
+// :95:17: note: when computing vector element at index '0'
+// :95:17: error: use of undefined value here causes illegal behavior
+// :95:17: note: when computing vector element at index '0'
+// :95:17: error: use of undefined value here causes illegal behavior
+// :95:17: note: when computing vector element at index '0'
+// :95:17: error: use of undefined value here causes illegal behavior
+// :95:17: note: when computing vector element at index '0'
+// :95:17: error: use of undefined value here causes illegal behavior
+// :95:17: error: use of undefined value here causes illegal behavior
+// :95:17: error: use of undefined value here causes illegal behavior
+// :95:17: error: use of undefined value here causes illegal behavior
+// :95:17: error: use of undefined value here causes illegal behavior
+// :95:17: error: use of undefined value here causes illegal behavior
+// :95:17: error: use of undefined value here causes illegal behavior
+// :95:17: note: when computing vector element at index '1'
+// :95:17: error: use of undefined value here causes illegal behavior
+// :95:17: note: when computing vector element at index '1'
+// :95:17: error: use of undefined value here causes illegal behavior
+// :95:17: note: when computing vector element at index '1'
+// :95:17: error: use of undefined value here causes illegal behavior
+// :95:17: note: when computing vector element at index '1'
+// :95:17: error: use of undefined value here causes illegal behavior
+// :95:17: note: when computing vector element at index '0'
+// :95:17: error: use of undefined value here causes illegal behavior
+// :95:17: note: when computing vector element at index '0'
+// :95:17: error: use of undefined value here causes illegal behavior
+// :95:17: note: when computing vector element at index '0'
+// :95:17: error: use of undefined value here causes illegal behavior
+// :95:17: note: when computing vector element at index '0'
+// :99:27: error: use of undefined value here causes illegal behavior
+// :99:27: error: use of undefined value here causes illegal behavior
+// :99:27: error: use of undefined value here causes illegal behavior
+// :99:27: error: use of undefined value here causes illegal behavior
+// :99:27: error: use of undefined value here causes illegal behavior
+// :99:27: error: use of undefined value here causes illegal behavior
+// :99:27: error: use of undefined value here causes illegal behavior
+// :99:27: note: when computing vector element at index '1'
+// :99:27: error: use of undefined value here causes illegal behavior
+// :99:27: note: when computing vector element at index '1'
+// :99:27: error: use of undefined value here causes illegal behavior
+// :99:27: note: when computing vector element at index '1'
+// :99:27: error: use of undefined value here causes illegal behavior
+// :99:27: note: when computing vector element at index '1'
+// :99:27: error: use of undefined value here causes illegal behavior
+// :99:27: note: when computing vector element at index '0'
+// :99:27: error: use of undefined value here causes illegal behavior
+// :99:27: note: when computing vector element at index '0'
+// :99:27: error: use of undefined value here causes illegal behavior
+// :99:27: note: when computing vector element at index '0'
+// :99:27: error: use of undefined value here causes illegal behavior
+// :99:27: note: when computing vector element at index '0'
+// :99:27: error: use of undefined value here causes illegal behavior
+// :99:27: error: use of undefined value here causes illegal behavior
+// :99:27: error: use of undefined value here causes illegal behavior
+// :99:27: error: use of undefined value here causes illegal behavior
+// :99:27: error: use of undefined value here causes illegal behavior
+// :99:27: error: use of undefined value here causes illegal behavior
+// :99:27: error: use of undefined value here causes illegal behavior
+// :99:27: note: when computing vector element at index '1'
+// :99:27: error: use of undefined value here causes illegal behavior
+// :99:27: note: when computing vector element at index '1'
+// :99:27: error: use of undefined value here causes illegal behavior
+// :99:27: note: when computing vector element at index '1'
+// :99:27: error: use of undefined value here causes illegal behavior
+// :99:27: note: when computing vector element at index '1'
+// :99:27: error: use of undefined value here causes illegal behavior
+// :99:27: note: when computing vector element at index '0'
+// :99:27: error: use of undefined value here causes illegal behavior
+// :99:27: note: when computing vector element at index '0'
+// :99:27: error: use of undefined value here causes illegal behavior
+// :99:27: note: when computing vector element at index '0'
+// :99:27: error: use of undefined value here causes illegal behavior
+// :99:27: note: when computing vector element at index '0'
+// :99:27: error: use of undefined value here causes illegal behavior
+// :99:27: error: use of undefined value here causes illegal behavior
+// :99:27: error: use of undefined value here causes illegal behavior
+// :99:27: error: use of undefined value here causes illegal behavior
+// :99:27: error: use of undefined value here causes illegal behavior
+// :99:27: error: use of undefined value here causes illegal behavior
+// :99:27: error: use of undefined value here causes illegal behavior
+// :99:27: note: when computing vector element at index '1'
+// :99:27: error: use of undefined value here causes illegal behavior
+// :99:27: note: when computing vector element at index '1'
+// :99:27: error: use of undefined value here causes illegal behavior
+// :99:27: note: when computing vector element at index '1'
+// :99:27: error: use of undefined value here causes illegal behavior
+// :99:27: note: when computing vector element at index '1'
+// :99:27: error: use of undefined value here causes illegal behavior
+// :99:27: note: when computing vector element at index '0'
+// :99:27: error: use of undefined value here causes illegal behavior
+// :99:27: note: when computing vector element at index '0'
+// :99:27: error: use of undefined value here causes illegal behavior
+// :99:27: note: when computing vector element at index '0'
+// :99:27: error: use of undefined value here causes illegal behavior
+// :99:27: note: when computing vector element at index '0'
+// :99:27: error: use of undefined value here causes illegal behavior
+// :99:27: error: use of undefined value here causes illegal behavior
+// :99:27: error: use of undefined value here causes illegal behavior
+// :99:27: error: use of undefined value here causes illegal behavior
+// :99:27: error: use of undefined value here causes illegal behavior
+// :99:27: error: use of undefined value here causes illegal behavior
+// :99:27: error: use of undefined value here causes illegal behavior
+// :99:27: note: when computing vector element at index '1'
+// :99:27: error: use of undefined value here causes illegal behavior
+// :99:27: note: when computing vector element at index '1'
+// :99:27: error: use of undefined value here causes illegal behavior
+// :99:27: note: when computing vector element at index '1'
+// :99:27: error: use of undefined value here causes illegal behavior
+// :99:27: note: when computing vector element at index '1'
+// :99:27: error: use of undefined value here causes illegal behavior
+// :99:27: note: when computing vector element at index '0'
+// :99:27: error: use of undefined value here causes illegal behavior
+// :99:27: note: when computing vector element at index '0'
+// :99:27: error: use of undefined value here causes illegal behavior
+// :99:27: note: when computing vector element at index '0'
+// :99:27: error: use of undefined value here causes illegal behavior
+// :99:27: note: when computing vector element at index '0'
+// :99:27: error: use of undefined value here causes illegal behavior
+// :99:27: error: use of undefined value here causes illegal behavior
+// :99:27: error: use of undefined value here causes illegal behavior
+// :99:27: error: use of undefined value here causes illegal behavior
+// :99:27: error: use of undefined value here causes illegal behavior
+// :99:27: error: use of undefined value here causes illegal behavior
+// :99:27: error: use of undefined value here causes illegal behavior
+// :99:27: note: when computing vector element at index '1'
+// :99:27: error: use of undefined value here causes illegal behavior
+// :99:27: note: when computing vector element at index '1'
+// :99:27: error: use of undefined value here causes illegal behavior
+// :99:27: note: when computing vector element at index '1'
+// :99:27: error: use of undefined value here causes illegal behavior
+// :99:27: note: when computing vector element at index '1'
+// :99:27: error: use of undefined value here causes illegal behavior
+// :99:27: note: when computing vector element at index '0'
+// :99:27: error: use of undefined value here causes illegal behavior
+// :99:27: note: when computing vector element at index '0'
+// :99:27: error: use of undefined value here causes illegal behavior
+// :99:27: note: when computing vector element at index '0'
+// :99:27: error: use of undefined value here causes illegal behavior
+// :99:27: note: when computing vector element at index '0'
+// :99:27: error: use of undefined value here causes illegal behavior
+// :99:27: error: use of undefined value here causes illegal behavior
+// :99:27: error: use of undefined value here causes illegal behavior
+// :99:27: error: use of undefined value here causes illegal behavior
+// :99:27: error: use of undefined value here causes illegal behavior
+// :99:27: error: use of undefined value here causes illegal behavior
+// :99:27: error: use of undefined value here causes illegal behavior
+// :99:27: note: when computing vector element at index '1'
+// :99:27: error: use of undefined value here causes illegal behavior
+// :99:27: note: when computing vector element at index '1'
+// :99:27: error: use of undefined value here causes illegal behavior
+// :99:27: note: when computing vector element at index '1'
+// :99:27: error: use of undefined value here causes illegal behavior
+// :99:27: note: when computing vector element at index '1'
+// :99:27: error: use of undefined value here causes illegal behavior
+// :99:27: note: when computing vector element at index '0'
+// :99:27: error: use of undefined value here causes illegal behavior
+// :99:27: note: when computing vector element at index '0'
+// :99:27: error: use of undefined value here causes illegal behavior
+// :99:27: note: when computing vector element at index '0'
+// :99:27: error: use of undefined value here causes illegal behavior
+// :99:27: note: when computing vector element at index '0'
+// :99:27: error: use of undefined value here causes illegal behavior
+// :99:27: error: use of undefined value here causes illegal behavior
+// :99:27: error: use of undefined value here causes illegal behavior
+// :99:27: error: use of undefined value here causes illegal behavior
+// :99:27: error: use of undefined value here causes illegal behavior
+// :99:27: error: use of undefined value here causes illegal behavior
+// :99:27: error: use of undefined value here causes illegal behavior
+// :99:27: note: when computing vector element at index '1'
+// :99:27: error: use of undefined value here causes illegal behavior
+// :99:27: note: when computing vector element at index '1'
+// :99:27: error: use of undefined value here causes illegal behavior
+// :99:27: note: when computing vector element at index '1'
+// :99:27: error: use of undefined value here causes illegal behavior
+// :99:27: note: when computing vector element at index '1'
+// :99:27: error: use of undefined value here causes illegal behavior
+// :99:27: note: when computing vector element at index '0'
+// :99:27: error: use of undefined value here causes illegal behavior
+// :99:27: note: when computing vector element at index '0'
+// :99:27: error: use of undefined value here causes illegal behavior
+// :99:27: note: when computing vector element at index '0'
+// :99:27: error: use of undefined value here causes illegal behavior
+// :99:27: note: when computing vector element at index '0'
+// :99:27: error: use of undefined value here causes illegal behavior
+// :99:27: error: use of undefined value here causes illegal behavior
+// :99:27: error: use of undefined value here causes illegal behavior
+// :99:27: error: use of undefined value here causes illegal behavior
+// :99:27: error: use of undefined value here causes illegal behavior
+// :99:27: error: use of undefined value here causes illegal behavior
+// :99:27: error: use of undefined value here causes illegal behavior
+// :99:27: note: when computing vector element at index '1'
+// :99:27: error: use of undefined value here causes illegal behavior
+// :99:27: note: when computing vector element at index '1'
+// :99:27: error: use of undefined value here causes illegal behavior
+// :99:27: note: when computing vector element at index '1'
+// :99:27: error: use of undefined value here causes illegal behavior
+// :99:27: note: when computing vector element at index '1'
+// :99:27: error: use of undefined value here causes illegal behavior
+// :99:27: note: when computing vector element at index '0'
+// :99:27: error: use of undefined value here causes illegal behavior
+// :99:27: note: when computing vector element at index '0'
+// :99:27: error: use of undefined value here causes illegal behavior
+// :99:27: note: when computing vector element at index '0'
+// :99:27: error: use of undefined value here causes illegal behavior
+// :99:27: note: when computing vector element at index '0'
+// :99:27: error: use of undefined value here causes illegal behavior
+// :99:27: error: use of undefined value here causes illegal behavior
+// :99:27: error: use of undefined value here causes illegal behavior
+// :99:27: error: use of undefined value here causes illegal behavior
+// :99:27: error: use of undefined value here causes illegal behavior
+// :99:27: error: use of undefined value here causes illegal behavior
+// :99:27: error: use of undefined value here causes illegal behavior
+// :99:27: note: when computing vector element at index '1'
+// :99:27: error: use of undefined value here causes illegal behavior
+// :99:27: note: when computing vector element at index '1'
+// :99:27: error: use of undefined value here causes illegal behavior
+// :99:27: note: when computing vector element at index '1'
+// :99:27: error: use of undefined value here causes illegal behavior
+// :99:27: note: when computing vector element at index '1'
+// :99:27: error: use of undefined value here causes illegal behavior
+// :99:27: note: when computing vector element at index '0'
+// :99:27: error: use of undefined value here causes illegal behavior
+// :99:27: note: when computing vector element at index '0'
+// :99:27: error: use of undefined value here causes illegal behavior
+// :99:27: note: when computing vector element at index '0'
+// :99:27: error: use of undefined value here causes illegal behavior
+// :99:27: note: when computing vector element at index '0'
+// :99:27: error: use of undefined value here causes illegal behavior
+// :99:27: error: use of undefined value here causes illegal behavior
+// :99:27: error: use of undefined value here causes illegal behavior
+// :99:27: error: use of undefined value here causes illegal behavior
+// :99:27: error: use of undefined value here causes illegal behavior
+// :99:27: error: use of undefined value here causes illegal behavior
+// :99:27: error: use of undefined value here causes illegal behavior
+// :99:27: note: when computing vector element at index '1'
+// :99:27: error: use of undefined value here causes illegal behavior
+// :99:27: note: when computing vector element at index '1'
+// :99:27: error: use of undefined value here causes illegal behavior
+// :99:27: note: when computing vector element at index '1'
+// :99:27: error: use of undefined value here causes illegal behavior
+// :99:27: note: when computing vector element at index '1'
+// :99:27: error: use of undefined value here causes illegal behavior
+// :99:27: note: when computing vector element at index '0'
+// :99:27: error: use of undefined value here causes illegal behavior
+// :99:27: note: when computing vector element at index '0'
+// :99:27: error: use of undefined value here causes illegal behavior
+// :99:27: note: when computing vector element at index '0'
+// :99:27: error: use of undefined value here causes illegal behavior
+// :99:27: note: when computing vector element at index '0'
+// :99:27: error: use of undefined value here causes illegal behavior
+// :99:27: error: use of undefined value here causes illegal behavior
+// :99:27: error: use of undefined value here causes illegal behavior
+// :99:27: error: use of undefined value here causes illegal behavior
+// :99:27: error: use of undefined value here causes illegal behavior
+// :99:27: error: use of undefined value here causes illegal behavior
+// :99:27: error: use of undefined value here causes illegal behavior
+// :99:27: note: when computing vector element at index '1'
+// :99:27: error: use of undefined value here causes illegal behavior
+// :99:27: note: when computing vector element at index '1'
+// :99:27: error: use of undefined value here causes illegal behavior
+// :99:27: note: when computing vector element at index '1'
+// :99:27: error: use of undefined value here causes illegal behavior
+// :99:27: note: when computing vector element at index '1'
+// :99:27: error: use of undefined value here causes illegal behavior
+// :99:27: note: when computing vector element at index '0'
+// :99:27: error: use of undefined value here causes illegal behavior
+// :99:27: note: when computing vector element at index '0'
+// :99:27: error: use of undefined value here causes illegal behavior
+// :99:27: note: when computing vector element at index '0'
+// :99:27: error: use of undefined value here causes illegal behavior
+// :99:27: note: when computing vector element at index '0'
+// :103:27: error: use of undefined value here causes illegal behavior
+// :103:27: error: use of undefined value here causes illegal behavior
+// :103:27: error: use of undefined value here causes illegal behavior
+// :103:27: error: use of undefined value here causes illegal behavior
+// :103:27: error: use of undefined value here causes illegal behavior
+// :103:27: error: use of undefined value here causes illegal behavior
+// :103:27: error: use of undefined value here causes illegal behavior
+// :103:27: note: when computing vector element at index '1'
+// :103:27: error: use of undefined value here causes illegal behavior
+// :103:27: note: when computing vector element at index '1'
+// :103:27: error: use of undefined value here causes illegal behavior
+// :103:27: note: when computing vector element at index '1'
+// :103:27: error: use of undefined value here causes illegal behavior
+// :103:27: note: when computing vector element at index '1'
+// :103:27: error: use of undefined value here causes illegal behavior
+// :103:27: note: when computing vector element at index '0'
+// :103:27: error: use of undefined value here causes illegal behavior
+// :103:27: note: when computing vector element at index '0'
+// :103:27: error: use of undefined value here causes illegal behavior
+// :103:27: note: when computing vector element at index '0'
+// :103:27: error: use of undefined value here causes illegal behavior
+// :103:27: note: when computing vector element at index '0'
+// :103:27: error: use of undefined value here causes illegal behavior
+// :103:27: error: use of undefined value here causes illegal behavior
+// :103:27: error: use of undefined value here causes illegal behavior
+// :103:27: error: use of undefined value here causes illegal behavior
+// :103:27: error: use of undefined value here causes illegal behavior
+// :103:27: error: use of undefined value here causes illegal behavior
+// :103:27: error: use of undefined value here causes illegal behavior
+// :103:27: note: when computing vector element at index '1'
+// :103:27: error: use of undefined value here causes illegal behavior
+// :103:27: note: when computing vector element at index '1'
+// :103:27: error: use of undefined value here causes illegal behavior
+// :103:27: note: when computing vector element at index '1'
+// :103:27: error: use of undefined value here causes illegal behavior
+// :103:27: note: when computing vector element at index '1'
+// :103:27: error: use of undefined value here causes illegal behavior
+// :103:27: note: when computing vector element at index '0'
+// :103:27: error: use of undefined value here causes illegal behavior
+// :103:27: note: when computing vector element at index '0'
+// :103:27: error: use of undefined value here causes illegal behavior
+// :103:27: note: when computing vector element at index '0'
+// :103:27: error: use of undefined value here causes illegal behavior
+// :103:27: note: when computing vector element at index '0'
+// :103:27: error: use of undefined value here causes illegal behavior
+// :103:27: error: use of undefined value here causes illegal behavior
+// :103:27: error: use of undefined value here causes illegal behavior
+// :103:27: error: use of undefined value here causes illegal behavior
+// :103:27: error: use of undefined value here causes illegal behavior
+// :103:27: error: use of undefined value here causes illegal behavior
+// :103:27: error: use of undefined value here causes illegal behavior
+// :103:27: note: when computing vector element at index '1'
+// :103:27: error: use of undefined value here causes illegal behavior
+// :103:27: note: when computing vector element at index '1'
+// :103:27: error: use of undefined value here causes illegal behavior
+// :103:27: note: when computing vector element at index '1'
+// :103:27: error: use of undefined value here causes illegal behavior
+// :103:27: note: when computing vector element at index '1'
+// :103:27: error: use of undefined value here causes illegal behavior
+// :103:27: note: when computing vector element at index '0'
+// :103:27: error: use of undefined value here causes illegal behavior
+// :103:27: note: when computing vector element at index '0'
+// :103:27: error: use of undefined value here causes illegal behavior
+// :103:27: note: when computing vector element at index '0'
+// :103:27: error: use of undefined value here causes illegal behavior
+// :103:27: note: when computing vector element at index '0'
+// :103:27: error: use of undefined value here causes illegal behavior
+// :103:27: error: use of undefined value here causes illegal behavior
+// :103:27: error: use of undefined value here causes illegal behavior
+// :103:27: error: use of undefined value here causes illegal behavior
+// :103:27: error: use of undefined value here causes illegal behavior
+// :103:27: error: use of undefined value here causes illegal behavior
+// :103:27: error: use of undefined value here causes illegal behavior
+// :103:27: note: when computing vector element at index '1'
+// :103:27: error: use of undefined value here causes illegal behavior
+// :103:27: note: when computing vector element at index '1'
+// :103:27: error: use of undefined value here causes illegal behavior
+// :103:27: note: when computing vector element at index '1'
+// :103:27: error: use of undefined value here causes illegal behavior
+// :103:27: note: when computing vector element at index '1'
+// :103:27: error: use of undefined value here causes illegal behavior
+// :103:27: note: when computing vector element at index '0'
+// :103:27: error: use of undefined value here causes illegal behavior
+// :103:27: note: when computing vector element at index '0'
+// :103:27: error: use of undefined value here causes illegal behavior
+// :103:27: note: when computing vector element at index '0'
+// :103:27: error: use of undefined value here causes illegal behavior
+// :103:27: note: when computing vector element at index '0'
+// :103:27: error: use of undefined value here causes illegal behavior
+// :103:27: error: use of undefined value here causes illegal behavior
+// :103:27: error: use of undefined value here causes illegal behavior
+// :103:27: error: use of undefined value here causes illegal behavior
+// :103:27: error: use of undefined value here causes illegal behavior
+// :103:27: error: use of undefined value here causes illegal behavior
+// :103:27: error: use of undefined value here causes illegal behavior
+// :103:27: note: when computing vector element at index '1'
+// :103:27: error: use of undefined value here causes illegal behavior
+// :103:27: note: when computing vector element at index '1'
+// :103:27: error: use of undefined value here causes illegal behavior
+// :103:27: note: when computing vector element at index '1'
+// :103:27: error: use of undefined value here causes illegal behavior
+// :103:27: note: when computing vector element at index '1'
+// :103:27: error: use of undefined value here causes illegal behavior
+// :103:27: note: when computing vector element at index '0'
+// :103:27: error: use of undefined value here causes illegal behavior
+// :103:27: note: when computing vector element at index '0'
+// :103:27: error: use of undefined value here causes illegal behavior
+// :103:27: note: when computing vector element at index '0'
+// :103:27: error: use of undefined value here causes illegal behavior
+// :103:27: note: when computing vector element at index '0'
+// :103:27: error: use of undefined value here causes illegal behavior
+// :103:27: error: use of undefined value here causes illegal behavior
+// :103:27: error: use of undefined value here causes illegal behavior
+// :103:27: error: use of undefined value here causes illegal behavior
+// :103:27: error: use of undefined value here causes illegal behavior
+// :103:27: error: use of undefined value here causes illegal behavior
+// :103:27: error: use of undefined value here causes illegal behavior
+// :103:27: note: when computing vector element at index '1'
+// :103:27: error: use of undefined value here causes illegal behavior
+// :103:27: note: when computing vector element at index '1'
+// :103:27: error: use of undefined value here causes illegal behavior
+// :103:27: note: when computing vector element at index '1'
+// :103:27: error: use of undefined value here causes illegal behavior
+// :103:27: note: when computing vector element at index '1'
+// :103:27: error: use of undefined value here causes illegal behavior
+// :103:27: note: when computing vector element at index '0'
+// :103:27: error: use of undefined value here causes illegal behavior
+// :103:27: note: when computing vector element at index '0'
+// :103:27: error: use of undefined value here causes illegal behavior
+// :103:27: note: when computing vector element at index '0'
+// :103:27: error: use of undefined value here causes illegal behavior
+// :103:27: note: when computing vector element at index '0'
+// :103:27: error: use of undefined value here causes illegal behavior
+// :103:27: error: use of undefined value here causes illegal behavior
+// :103:27: error: use of undefined value here causes illegal behavior
+// :103:27: error: use of undefined value here causes illegal behavior
+// :103:27: error: use of undefined value here causes illegal behavior
+// :103:27: error: use of undefined value here causes illegal behavior
+// :103:27: error: use of undefined value here causes illegal behavior
+// :103:27: note: when computing vector element at index '1'
+// :103:27: error: use of undefined value here causes illegal behavior
+// :103:27: note: when computing vector element at index '1'
+// :103:27: error: use of undefined value here causes illegal behavior
+// :103:27: note: when computing vector element at index '1'
+// :103:27: error: use of undefined value here causes illegal behavior
+// :103:27: note: when computing vector element at index '1'
+// :103:27: error: use of undefined value here causes illegal behavior
+// :103:27: note: when computing vector element at index '0'
+// :103:27: error: use of undefined value here causes illegal behavior
+// :103:27: note: when computing vector element at index '0'
+// :103:27: error: use of undefined value here causes illegal behavior
+// :103:27: note: when computing vector element at index '0'
+// :103:27: error: use of undefined value here causes illegal behavior
+// :103:27: note: when computing vector element at index '0'
+// :103:27: error: use of undefined value here causes illegal behavior
+// :103:27: error: use of undefined value here causes illegal behavior
+// :103:27: error: use of undefined value here causes illegal behavior
+// :103:27: error: use of undefined value here causes illegal behavior
+// :103:27: error: use of undefined value here causes illegal behavior
+// :103:27: error: use of undefined value here causes illegal behavior
+// :103:27: error: use of undefined value here causes illegal behavior
+// :103:27: note: when computing vector element at index '1'
+// :103:27: error: use of undefined value here causes illegal behavior
+// :103:27: note: when computing vector element at index '1'
+// :103:27: error: use of undefined value here causes illegal behavior
+// :103:27: note: when computing vector element at index '1'
+// :103:27: error: use of undefined value here causes illegal behavior
+// :103:27: note: when computing vector element at index '1'
+// :103:27: error: use of undefined value here causes illegal behavior
+// :103:27: note: when computing vector element at index '0'
+// :103:27: error: use of undefined value here causes illegal behavior
+// :103:27: note: when computing vector element at index '0'
+// :103:27: error: use of undefined value here causes illegal behavior
+// :103:27: note: when computing vector element at index '0'
+// :103:27: error: use of undefined value here causes illegal behavior
+// :103:27: note: when computing vector element at index '0'
+// :103:27: error: use of undefined value here causes illegal behavior
+// :103:27: error: use of undefined value here causes illegal behavior
+// :103:27: error: use of undefined value here causes illegal behavior
+// :103:27: error: use of undefined value here causes illegal behavior
+// :103:27: error: use of undefined value here causes illegal behavior
+// :103:27: error: use of undefined value here causes illegal behavior
+// :103:27: error: use of undefined value here causes illegal behavior
+// :103:27: note: when computing vector element at index '1'
+// :103:27: error: use of undefined value here causes illegal behavior
+// :103:27: note: when computing vector element at index '1'
+// :103:27: error: use of undefined value here causes illegal behavior
+// :103:27: note: when computing vector element at index '1'
+// :103:27: error: use of undefined value here causes illegal behavior
+// :103:27: note: when computing vector element at index '1'
+// :103:27: error: use of undefined value here causes illegal behavior
+// :103:27: note: when computing vector element at index '0'
+// :103:27: error: use of undefined value here causes illegal behavior
+// :103:27: note: when computing vector element at index '0'
+// :103:27: error: use of undefined value here causes illegal behavior
+// :103:27: note: when computing vector element at index '0'
+// :103:27: error: use of undefined value here causes illegal behavior
+// :103:27: note: when computing vector element at index '0'
+// :103:27: error: use of undefined value here causes illegal behavior
+// :103:27: error: use of undefined value here causes illegal behavior
+// :103:27: error: use of undefined value here causes illegal behavior
+// :103:27: error: use of undefined value here causes illegal behavior
+// :103:27: error: use of undefined value here causes illegal behavior
+// :103:27: error: use of undefined value here causes illegal behavior
+// :103:27: error: use of undefined value here causes illegal behavior
+// :103:27: note: when computing vector element at index '1'
+// :103:27: error: use of undefined value here causes illegal behavior
+// :103:27: note: when computing vector element at index '1'
+// :103:27: error: use of undefined value here causes illegal behavior
+// :103:27: note: when computing vector element at index '1'
+// :103:27: error: use of undefined value here causes illegal behavior
+// :103:27: note: when computing vector element at index '1'
+// :103:27: error: use of undefined value here causes illegal behavior
+// :103:27: note: when computing vector element at index '0'
+// :103:27: error: use of undefined value here causes illegal behavior
+// :103:27: note: when computing vector element at index '0'
+// :103:27: error: use of undefined value here causes illegal behavior
+// :103:27: note: when computing vector element at index '0'
+// :103:27: error: use of undefined value here causes illegal behavior
+// :103:27: note: when computing vector element at index '0'
+// :103:27: error: use of undefined value here causes illegal behavior
+// :103:27: error: use of undefined value here causes illegal behavior
+// :103:27: error: use of undefined value here causes illegal behavior
+// :103:27: error: use of undefined value here causes illegal behavior
+// :103:27: error: use of undefined value here causes illegal behavior
+// :103:27: error: use of undefined value here causes illegal behavior
+// :103:27: error: use of undefined value here causes illegal behavior
+// :103:27: note: when computing vector element at index '1'
+// :103:27: error: use of undefined value here causes illegal behavior
+// :103:27: note: when computing vector element at index '1'
+// :103:27: error: use of undefined value here causes illegal behavior
+// :103:27: note: when computing vector element at index '1'
+// :103:27: error: use of undefined value here causes illegal behavior
+// :103:27: note: when computing vector element at index '1'
+// :103:27: error: use of undefined value here causes illegal behavior
+// :103:27: note: when computing vector element at index '0'
+// :103:27: error: use of undefined value here causes illegal behavior
+// :103:27: note: when computing vector element at index '0'
+// :103:27: error: use of undefined value here causes illegal behavior
+// :103:27: note: when computing vector element at index '0'
+// :103:27: error: use of undefined value here causes illegal behavior
+// :103:27: note: when computing vector element at index '0'
+// :107:27: error: use of undefined value here causes illegal behavior
+// :107:27: error: use of undefined value here causes illegal behavior
+// :107:27: error: use of undefined value here causes illegal behavior
+// :107:27: error: use of undefined value here causes illegal behavior
+// :107:27: error: use of undefined value here causes illegal behavior
+// :107:27: error: use of undefined value here causes illegal behavior
+// :107:27: error: use of undefined value here causes illegal behavior
+// :107:27: note: when computing vector element at index '1'
+// :107:27: error: use of undefined value here causes illegal behavior
+// :107:27: note: when computing vector element at index '1'
+// :107:27: error: use of undefined value here causes illegal behavior
+// :107:27: note: when computing vector element at index '1'
+// :107:27: error: use of undefined value here causes illegal behavior
+// :107:27: note: when computing vector element at index '1'
+// :107:27: error: use of undefined value here causes illegal behavior
+// :107:27: note: when computing vector element at index '0'
+// :107:27: error: use of undefined value here causes illegal behavior
+// :107:27: note: when computing vector element at index '0'
+// :107:27: error: use of undefined value here causes illegal behavior
+// :107:27: note: when computing vector element at index '0'
+// :107:27: error: use of undefined value here causes illegal behavior
+// :107:27: note: when computing vector element at index '0'
+// :107:27: error: use of undefined value here causes illegal behavior
+// :107:27: error: use of undefined value here causes illegal behavior
+// :107:27: error: use of undefined value here causes illegal behavior
+// :107:27: error: use of undefined value here causes illegal behavior
+// :107:27: error: use of undefined value here causes illegal behavior
+// :107:27: error: use of undefined value here causes illegal behavior
+// :107:27: error: use of undefined value here causes illegal behavior
+// :107:27: note: when computing vector element at index '1'
+// :107:27: error: use of undefined value here causes illegal behavior
+// :107:27: note: when computing vector element at index '1'
+// :107:27: error: use of undefined value here causes illegal behavior
+// :107:27: note: when computing vector element at index '1'
+// :107:27: error: use of undefined value here causes illegal behavior
+// :107:27: note: when computing vector element at index '1'
+// :107:27: error: use of undefined value here causes illegal behavior
+// :107:27: note: when computing vector element at index '0'
+// :107:27: error: use of undefined value here causes illegal behavior
+// :107:27: note: when computing vector element at index '0'
+// :107:27: error: use of undefined value here causes illegal behavior
+// :107:27: note: when computing vector element at index '0'
+// :107:27: error: use of undefined value here causes illegal behavior
+// :107:27: note: when computing vector element at index '0'
+// :107:27: error: use of undefined value here causes illegal behavior
+// :107:27: error: use of undefined value here causes illegal behavior
+// :107:27: error: use of undefined value here causes illegal behavior
+// :107:27: error: use of undefined value here causes illegal behavior
+// :107:27: error: use of undefined value here causes illegal behavior
+// :107:27: error: use of undefined value here causes illegal behavior
+// :107:27: error: use of undefined value here causes illegal behavior
+// :107:27: note: when computing vector element at index '1'
+// :107:27: error: use of undefined value here causes illegal behavior
+// :107:27: note: when computing vector element at index '1'
+// :107:27: error: use of undefined value here causes illegal behavior
+// :107:27: note: when computing vector element at index '1'
+// :107:27: error: use of undefined value here causes illegal behavior
+// :107:27: note: when computing vector element at index '1'
+// :107:27: error: use of undefined value here causes illegal behavior
+// :107:27: note: when computing vector element at index '0'
+// :107:27: error: use of undefined value here causes illegal behavior
+// :107:27: note: when computing vector element at index '0'
+// :107:27: error: use of undefined value here causes illegal behavior
+// :107:27: note: when computing vector element at index '0'
+// :107:27: error: use of undefined value here causes illegal behavior
+// :107:27: note: when computing vector element at index '0'
+// :107:27: error: use of undefined value here causes illegal behavior
+// :107:27: error: use of undefined value here causes illegal behavior
+// :107:27: error: use of undefined value here causes illegal behavior
+// :107:27: error: use of undefined value here causes illegal behavior
+// :107:27: error: use of undefined value here causes illegal behavior
+// :107:27: error: use of undefined value here causes illegal behavior
+// :107:27: error: use of undefined value here causes illegal behavior
+// :107:27: note: when computing vector element at index '1'
+// :107:27: error: use of undefined value here causes illegal behavior
+// :107:27: note: when computing vector element at index '1'
+// :107:27: error: use of undefined value here causes illegal behavior
+// :107:27: note: when computing vector element at index '1'
+// :107:27: error: use of undefined value here causes illegal behavior
+// :107:27: note: when computing vector element at index '1'
+// :107:27: error: use of undefined value here causes illegal behavior
+// :107:27: note: when computing vector element at index '0'
+// :107:27: error: use of undefined value here causes illegal behavior
+// :107:27: note: when computing vector element at index '0'
+// :107:27: error: use of undefined value here causes illegal behavior
+// :107:27: note: when computing vector element at index '0'
+// :107:27: error: use of undefined value here causes illegal behavior
+// :107:27: note: when computing vector element at index '0'
+// :107:27: error: use of undefined value here causes illegal behavior
+// :107:27: error: use of undefined value here causes illegal behavior
+// :107:27: error: use of undefined value here causes illegal behavior
+// :107:27: error: use of undefined value here causes illegal behavior
+// :107:27: error: use of undefined value here causes illegal behavior
+// :107:27: error: use of undefined value here causes illegal behavior
+// :107:27: error: use of undefined value here causes illegal behavior
+// :107:27: note: when computing vector element at index '1'
+// :107:27: error: use of undefined value here causes illegal behavior
+// :107:27: note: when computing vector element at index '1'
+// :107:27: error: use of undefined value here causes illegal behavior
+// :107:27: note: when computing vector element at index '1'
+// :107:27: error: use of undefined value here causes illegal behavior
+// :107:27: note: when computing vector element at index '1'
+// :107:27: error: use of undefined value here causes illegal behavior
+// :107:27: note: when computing vector element at index '0'
+// :107:27: error: use of undefined value here causes illegal behavior
+// :107:27: note: when computing vector element at index '0'
+// :107:27: error: use of undefined value here causes illegal behavior
+// :107:27: note: when computing vector element at index '0'
+// :107:27: error: use of undefined value here causes illegal behavior
+// :107:27: note: when computing vector element at index '0'
+// :107:27: error: use of undefined value here causes illegal behavior
+// :107:27: error: use of undefined value here causes illegal behavior
+// :107:27: error: use of undefined value here causes illegal behavior
+// :107:27: error: use of undefined value here causes illegal behavior
+// :107:27: error: use of undefined value here causes illegal behavior
+// :107:27: error: use of undefined value here causes illegal behavior
+// :107:27: error: use of undefined value here causes illegal behavior
+// :107:27: note: when computing vector element at index '1'
+// :107:27: error: use of undefined value here causes illegal behavior
+// :107:27: note: when computing vector element at index '1'
+// :107:27: error: use of undefined value here causes illegal behavior
+// :107:27: note: when computing vector element at index '1'
+// :107:27: error: use of undefined value here causes illegal behavior
+// :107:27: note: when computing vector element at index '1'
+// :107:27: error: use of undefined value here causes illegal behavior
+// :107:27: note: when computing vector element at index '0'
+// :107:27: error: use of undefined value here causes illegal behavior
+// :107:27: note: when computing vector element at index '0'
+// :107:27: error: use of undefined value here causes illegal behavior
+// :107:27: note: when computing vector element at index '0'
+// :107:27: error: use of undefined value here causes illegal behavior
+// :107:27: note: when computing vector element at index '0'
+// :107:27: error: use of undefined value here causes illegal behavior
+// :107:27: error: use of undefined value here causes illegal behavior
+// :107:27: error: use of undefined value here causes illegal behavior
+// :107:27: error: use of undefined value here causes illegal behavior
+// :107:27: error: use of undefined value here causes illegal behavior
+// :107:27: error: use of undefined value here causes illegal behavior
+// :107:27: error: use of undefined value here causes illegal behavior
+// :107:27: note: when computing vector element at index '1'
+// :107:27: error: use of undefined value here causes illegal behavior
+// :107:27: note: when computing vector element at index '1'
+// :107:27: error: use of undefined value here causes illegal behavior
+// :107:27: note: when computing vector element at index '1'
+// :107:27: error: use of undefined value here causes illegal behavior
+// :107:27: note: when computing vector element at index '1'
+// :107:27: error: use of undefined value here causes illegal behavior
+// :107:27: note: when computing vector element at index '0'
+// :107:27: error: use of undefined value here causes illegal behavior
+// :107:27: note: when computing vector element at index '0'
+// :107:27: error: use of undefined value here causes illegal behavior
+// :107:27: note: when computing vector element at index '0'
+// :107:27: error: use of undefined value here causes illegal behavior
+// :107:27: note: when computing vector element at index '0'
+// :107:27: error: use of undefined value here causes illegal behavior
+// :107:27: error: use of undefined value here causes illegal behavior
+// :107:27: error: use of undefined value here causes illegal behavior
+// :107:27: error: use of undefined value here causes illegal behavior
+// :107:27: error: use of undefined value here causes illegal behavior
+// :107:27: error: use of undefined value here causes illegal behavior
+// :107:27: error: use of undefined value here causes illegal behavior
+// :107:27: note: when computing vector element at index '1'
+// :107:27: error: use of undefined value here causes illegal behavior
+// :107:27: note: when computing vector element at index '1'
+// :107:27: error: use of undefined value here causes illegal behavior
+// :107:27: note: when computing vector element at index '1'
+// :107:27: error: use of undefined value here causes illegal behavior
+// :107:27: note: when computing vector element at index '1'
+// :107:27: error: use of undefined value here causes illegal behavior
+// :107:27: note: when computing vector element at index '0'
+// :107:27: error: use of undefined value here causes illegal behavior
+// :107:27: note: when computing vector element at index '0'
+// :107:27: error: use of undefined value here causes illegal behavior
+// :107:27: note: when computing vector element at index '0'
+// :107:27: error: use of undefined value here causes illegal behavior
+// :107:27: note: when computing vector element at index '0'
+// :107:27: error: use of undefined value here causes illegal behavior
+// :107:27: error: use of undefined value here causes illegal behavior
+// :107:27: error: use of undefined value here causes illegal behavior
+// :107:27: error: use of undefined value here causes illegal behavior
+// :107:27: error: use of undefined value here causes illegal behavior
+// :107:27: error: use of undefined value here causes illegal behavior
+// :107:27: error: use of undefined value here causes illegal behavior
+// :107:27: note: when computing vector element at index '1'
+// :107:27: error: use of undefined value here causes illegal behavior
+// :107:27: note: when computing vector element at index '1'
+// :107:27: error: use of undefined value here causes illegal behavior
+// :107:27: note: when computing vector element at index '1'
+// :107:27: error: use of undefined value here causes illegal behavior
+// :107:27: note: when computing vector element at index '1'
+// :107:27: error: use of undefined value here causes illegal behavior
+// :107:27: note: when computing vector element at index '0'
+// :107:27: error: use of undefined value here causes illegal behavior
+// :107:27: note: when computing vector element at index '0'
+// :107:27: error: use of undefined value here causes illegal behavior
+// :107:27: note: when computing vector element at index '0'
+// :107:27: error: use of undefined value here causes illegal behavior
+// :107:27: note: when computing vector element at index '0'
+// :107:27: error: use of undefined value here causes illegal behavior
+// :107:27: error: use of undefined value here causes illegal behavior
+// :107:27: error: use of undefined value here causes illegal behavior
+// :107:27: error: use of undefined value here causes illegal behavior
+// :107:27: error: use of undefined value here causes illegal behavior
+// :107:27: error: use of undefined value here causes illegal behavior
+// :107:27: error: use of undefined value here causes illegal behavior
+// :107:27: note: when computing vector element at index '1'
+// :107:27: error: use of undefined value here causes illegal behavior
+// :107:27: note: when computing vector element at index '1'
+// :107:27: error: use of undefined value here causes illegal behavior
+// :107:27: note: when computing vector element at index '1'
+// :107:27: error: use of undefined value here causes illegal behavior
+// :107:27: note: when computing vector element at index '1'
+// :107:27: error: use of undefined value here causes illegal behavior
+// :107:27: note: when computing vector element at index '0'
+// :107:27: error: use of undefined value here causes illegal behavior
+// :107:27: note: when computing vector element at index '0'
+// :107:27: error: use of undefined value here causes illegal behavior
+// :107:27: note: when computing vector element at index '0'
+// :107:27: error: use of undefined value here causes illegal behavior
+// :107:27: note: when computing vector element at index '0'
+// :107:27: error: use of undefined value here causes illegal behavior
+// :107:27: error: use of undefined value here causes illegal behavior
+// :107:27: error: use of undefined value here causes illegal behavior
+// :107:27: error: use of undefined value here causes illegal behavior
+// :107:27: error: use of undefined value here causes illegal behavior
+// :107:27: error: use of undefined value here causes illegal behavior
+// :107:27: error: use of undefined value here causes illegal behavior
+// :107:27: note: when computing vector element at index '1'
+// :107:27: error: use of undefined value here causes illegal behavior
+// :107:27: note: when computing vector element at index '1'
+// :107:27: error: use of undefined value here causes illegal behavior
+// :107:27: note: when computing vector element at index '1'
+// :107:27: error: use of undefined value here causes illegal behavior
+// :107:27: note: when computing vector element at index '1'
+// :107:27: error: use of undefined value here causes illegal behavior
+// :107:27: note: when computing vector element at index '0'
+// :107:27: error: use of undefined value here causes illegal behavior
+// :107:27: note: when computing vector element at index '0'
+// :107:27: error: use of undefined value here causes illegal behavior
+// :107:27: note: when computing vector element at index '0'
+// :107:27: error: use of undefined value here causes illegal behavior
+// :107:27: note: when computing vector element at index '0'
+// :111:22: error: use of undefined value here causes illegal behavior
+// :111:22: error: use of undefined value here causes illegal behavior
+// :111:22: error: use of undefined value here causes illegal behavior
+// :111:22: error: use of undefined value here causes illegal behavior
+// :111:22: error: use of undefined value here causes illegal behavior
+// :111:22: error: use of undefined value here causes illegal behavior
+// :111:22: error: use of undefined value here causes illegal behavior
+// :111:22: note: when computing vector element at index '1'
+// :111:22: error: use of undefined value here causes illegal behavior
+// :111:22: note: when computing vector element at index '1'
+// :111:22: error: use of undefined value here causes illegal behavior
+// :111:22: note: when computing vector element at index '1'
+// :111:22: error: use of undefined value here causes illegal behavior
+// :111:22: note: when computing vector element at index '1'
+// :111:22: error: use of undefined value here causes illegal behavior
+// :111:22: note: when computing vector element at index '0'
+// :111:22: error: use of undefined value here causes illegal behavior
+// :111:22: note: when computing vector element at index '0'
+// :111:22: error: use of undefined value here causes illegal behavior
+// :111:22: note: when computing vector element at index '0'
+// :111:22: error: use of undefined value here causes illegal behavior
+// :111:22: note: when computing vector element at index '0'
+// :111:22: error: use of undefined value here causes illegal behavior
+// :111:22: error: use of undefined value here causes illegal behavior
+// :111:22: error: use of undefined value here causes illegal behavior
+// :111:22: error: use of undefined value here causes illegal behavior
+// :111:22: error: use of undefined value here causes illegal behavior
+// :111:22: error: use of undefined value here causes illegal behavior
+// :111:22: error: use of undefined value here causes illegal behavior
+// :111:22: note: when computing vector element at index '1'
+// :111:22: error: use of undefined value here causes illegal behavior
+// :111:22: note: when computing vector element at index '1'
+// :111:22: error: use of undefined value here causes illegal behavior
+// :111:22: note: when computing vector element at index '1'
+// :111:22: error: use of undefined value here causes illegal behavior
+// :111:22: note: when computing vector element at index '1'
+// :111:22: error: use of undefined value here causes illegal behavior
+// :111:22: note: when computing vector element at index '0'
+// :111:22: error: use of undefined value here causes illegal behavior
+// :111:22: note: when computing vector element at index '0'
+// :111:22: error: use of undefined value here causes illegal behavior
+// :111:22: note: when computing vector element at index '0'
+// :111:22: error: use of undefined value here causes illegal behavior
+// :111:22: note: when computing vector element at index '0'
+// :111:22: error: use of undefined value here causes illegal behavior
+// :111:22: error: use of undefined value here causes illegal behavior
+// :111:22: error: use of undefined value here causes illegal behavior
+// :111:22: error: use of undefined value here causes illegal behavior
+// :111:22: error: use of undefined value here causes illegal behavior
+// :111:22: error: use of undefined value here causes illegal behavior
+// :111:22: error: use of undefined value here causes illegal behavior
+// :111:22: note: when computing vector element at index '1'
+// :111:22: error: use of undefined value here causes illegal behavior
+// :111:22: note: when computing vector element at index '1'
+// :111:22: error: use of undefined value here causes illegal behavior
+// :111:22: note: when computing vector element at index '1'
+// :111:22: error: use of undefined value here causes illegal behavior
+// :111:22: note: when computing vector element at index '1'
+// :111:22: error: use of undefined value here causes illegal behavior
+// :111:22: note: when computing vector element at index '0'
+// :111:22: error: use of undefined value here causes illegal behavior
+// :111:22: note: when computing vector element at index '0'
+// :111:22: error: use of undefined value here causes illegal behavior
+// :111:22: note: when computing vector element at index '0'
+// :111:22: error: use of undefined value here causes illegal behavior
+// :111:22: note: when computing vector element at index '0'
+// :111:22: error: use of undefined value here causes illegal behavior
+// :111:22: error: use of undefined value here causes illegal behavior
+// :111:22: error: use of undefined value here causes illegal behavior
+// :111:22: error: use of undefined value here causes illegal behavior
+// :111:22: error: use of undefined value here causes illegal behavior
+// :111:22: error: use of undefined value here causes illegal behavior
+// :111:22: error: use of undefined value here causes illegal behavior
+// :111:22: note: when computing vector element at index '1'
+// :111:22: error: use of undefined value here causes illegal behavior
+// :111:22: note: when computing vector element at index '1'
+// :111:22: error: use of undefined value here causes illegal behavior
+// :111:22: note: when computing vector element at index '1'
+// :111:22: error: use of undefined value here causes illegal behavior
+// :111:22: note: when computing vector element at index '1'
+// :111:22: error: use of undefined value here causes illegal behavior
+// :111:22: note: when computing vector element at index '0'
+// :111:22: error: use of undefined value here causes illegal behavior
+// :111:22: note: when computing vector element at index '0'
+// :111:22: error: use of undefined value here causes illegal behavior
+// :111:22: note: when computing vector element at index '0'
+// :111:22: error: use of undefined value here causes illegal behavior
+// :111:22: note: when computing vector element at index '0'
+// :111:22: error: use of undefined value here causes illegal behavior
+// :111:22: error: use of undefined value here causes illegal behavior
+// :111:22: error: use of undefined value here causes illegal behavior
+// :111:22: error: use of undefined value here causes illegal behavior
+// :111:22: error: use of undefined value here causes illegal behavior
+// :111:22: error: use of undefined value here causes illegal behavior
+// :111:22: error: use of undefined value here causes illegal behavior
+// :111:22: note: when computing vector element at index '1'
+// :111:22: error: use of undefined value here causes illegal behavior
+// :111:22: note: when computing vector element at index '1'
+// :111:22: error: use of undefined value here causes illegal behavior
+// :111:22: note: when computing vector element at index '1'
+// :111:22: error: use of undefined value here causes illegal behavior
+// :111:22: note: when computing vector element at index '1'
+// :111:22: error: use of undefined value here causes illegal behavior
+// :111:22: note: when computing vector element at index '0'
+// :111:22: error: use of undefined value here causes illegal behavior
+// :111:22: note: when computing vector element at index '0'
+// :111:22: error: use of undefined value here causes illegal behavior
+// :111:22: note: when computing vector element at index '0'
+// :111:22: error: use of undefined value here causes illegal behavior
+// :111:22: note: when computing vector element at index '0'
+// :111:22: error: use of undefined value here causes illegal behavior
+// :111:22: error: use of undefined value here causes illegal behavior
+// :111:22: error: use of undefined value here causes illegal behavior
+// :111:22: error: use of undefined value here causes illegal behavior
+// :111:22: error: use of undefined value here causes illegal behavior
+// :111:22: error: use of undefined value here causes illegal behavior
+// :111:22: error: use of undefined value here causes illegal behavior
+// :111:22: note: when computing vector element at index '1'
+// :111:22: error: use of undefined value here causes illegal behavior
+// :111:22: note: when computing vector element at index '1'
+// :111:22: error: use of undefined value here causes illegal behavior
+// :111:22: note: when computing vector element at index '1'
+// :111:22: error: use of undefined value here causes illegal behavior
+// :111:22: note: when computing vector element at index '1'
+// :111:22: error: use of undefined value here causes illegal behavior
+// :111:22: note: when computing vector element at index '0'
+// :111:22: error: use of undefined value here causes illegal behavior
+// :111:22: note: when computing vector element at index '0'
+// :111:22: error: use of undefined value here causes illegal behavior
+// :111:22: note: when computing vector element at index '0'
+// :111:22: error: use of undefined value here causes illegal behavior
+// :111:22: note: when computing vector element at index '0'
+// :111:22: error: use of undefined value here causes illegal behavior
+// :111:22: error: use of undefined value here causes illegal behavior
+// :111:22: error: use of undefined value here causes illegal behavior
+// :111:22: error: use of undefined value here causes illegal behavior
+// :111:22: error: use of undefined value here causes illegal behavior
+// :111:22: error: use of undefined value here causes illegal behavior
+// :111:22: error: use of undefined value here causes illegal behavior
+// :111:22: note: when computing vector element at index '1'
+// :111:22: error: use of undefined value here causes illegal behavior
+// :111:22: note: when computing vector element at index '1'
+// :111:22: error: use of undefined value here causes illegal behavior
+// :111:22: note: when computing vector element at index '1'
+// :111:22: error: use of undefined value here causes illegal behavior
+// :111:22: note: when computing vector element at index '1'
+// :111:22: error: use of undefined value here causes illegal behavior
+// :111:22: note: when computing vector element at index '0'
+// :111:22: error: use of undefined value here causes illegal behavior
+// :111:22: note: when computing vector element at index '0'
+// :111:22: error: use of undefined value here causes illegal behavior
+// :111:22: note: when computing vector element at index '0'
+// :111:22: error: use of undefined value here causes illegal behavior
+// :111:22: note: when computing vector element at index '0'
+// :111:22: error: use of undefined value here causes illegal behavior
+// :111:22: error: use of undefined value here causes illegal behavior
+// :111:22: error: use of undefined value here causes illegal behavior
+// :111:22: error: use of undefined value here causes illegal behavior
+// :111:22: error: use of undefined value here causes illegal behavior
+// :111:22: error: use of undefined value here causes illegal behavior
+// :111:22: error: use of undefined value here causes illegal behavior
+// :111:22: note: when computing vector element at index '1'
+// :111:22: error: use of undefined value here causes illegal behavior
+// :111:22: note: when computing vector element at index '1'
+// :111:22: error: use of undefined value here causes illegal behavior
+// :111:22: note: when computing vector element at index '1'
+// :111:22: error: use of undefined value here causes illegal behavior
+// :111:22: note: when computing vector element at index '1'
+// :111:22: error: use of undefined value here causes illegal behavior
+// :111:22: note: when computing vector element at index '0'
+// :111:22: error: use of undefined value here causes illegal behavior
+// :111:22: note: when computing vector element at index '0'
+// :111:22: error: use of undefined value here causes illegal behavior
+// :111:22: note: when computing vector element at index '0'
+// :111:22: error: use of undefined value here causes illegal behavior
+// :111:22: note: when computing vector element at index '0'
+// :111:22: error: use of undefined value here causes illegal behavior
+// :111:22: error: use of undefined value here causes illegal behavior
+// :111:22: error: use of undefined value here causes illegal behavior
+// :111:22: error: use of undefined value here causes illegal behavior
+// :111:22: error: use of undefined value here causes illegal behavior
+// :111:22: error: use of undefined value here causes illegal behavior
+// :111:22: error: use of undefined value here causes illegal behavior
+// :111:22: note: when computing vector element at index '1'
+// :111:22: error: use of undefined value here causes illegal behavior
+// :111:22: note: when computing vector element at index '1'
+// :111:22: error: use of undefined value here causes illegal behavior
+// :111:22: note: when computing vector element at index '1'
+// :111:22: error: use of undefined value here causes illegal behavior
+// :111:22: note: when computing vector element at index '1'
+// :111:22: error: use of undefined value here causes illegal behavior
+// :111:22: note: when computing vector element at index '0'
+// :111:22: error: use of undefined value here causes illegal behavior
+// :111:22: note: when computing vector element at index '0'
+// :111:22: error: use of undefined value here causes illegal behavior
+// :111:22: note: when computing vector element at index '0'
+// :111:22: error: use of undefined value here causes illegal behavior
+// :111:22: note: when computing vector element at index '0'
+// :111:22: error: use of undefined value here causes illegal behavior
+// :111:22: error: use of undefined value here causes illegal behavior
+// :111:22: error: use of undefined value here causes illegal behavior
+// :111:22: error: use of undefined value here causes illegal behavior
+// :111:22: error: use of undefined value here causes illegal behavior
+// :111:22: error: use of undefined value here causes illegal behavior
+// :111:22: error: use of undefined value here causes illegal behavior
+// :111:22: note: when computing vector element at index '1'
+// :111:22: error: use of undefined value here causes illegal behavior
+// :111:22: note: when computing vector element at index '1'
+// :111:22: error: use of undefined value here causes illegal behavior
+// :111:22: note: when computing vector element at index '1'
+// :111:22: error: use of undefined value here causes illegal behavior
+// :111:22: note: when computing vector element at index '1'
+// :111:22: error: use of undefined value here causes illegal behavior
+// :111:22: note: when computing vector element at index '0'
+// :111:22: error: use of undefined value here causes illegal behavior
+// :111:22: note: when computing vector element at index '0'
+// :111:22: error: use of undefined value here causes illegal behavior
+// :111:22: note: when computing vector element at index '0'
+// :111:22: error: use of undefined value here causes illegal behavior
+// :111:22: note: when computing vector element at index '0'
+// :111:22: error: use of undefined value here causes illegal behavior
+// :111:22: error: use of undefined value here causes illegal behavior
+// :111:22: error: use of undefined value here causes illegal behavior
+// :111:22: error: use of undefined value here causes illegal behavior
+// :111:22: error: use of undefined value here causes illegal behavior
+// :111:22: error: use of undefined value here causes illegal behavior
+// :111:22: error: use of undefined value here causes illegal behavior
+// :111:22: note: when computing vector element at index '1'
+// :111:22: error: use of undefined value here causes illegal behavior
+// :111:22: note: when computing vector element at index '1'
+// :111:22: error: use of undefined value here causes illegal behavior
+// :111:22: note: when computing vector element at index '1'
+// :111:22: error: use of undefined value here causes illegal behavior
+// :111:22: note: when computing vector element at index '1'
+// :111:22: error: use of undefined value here causes illegal behavior
+// :111:22: note: when computing vector element at index '0'
+// :111:22: error: use of undefined value here causes illegal behavior
+// :111:22: note: when computing vector element at index '0'
+// :111:22: error: use of undefined value here causes illegal behavior
+// :111:22: note: when computing vector element at index '0'
+// :111:22: error: use of undefined value here causes illegal behavior
+// :111:22: note: when computing vector element at index '0'
+// :115:22: error: use of undefined value here causes illegal behavior
+// :115:22: error: use of undefined value here causes illegal behavior
+// :115:22: error: use of undefined value here causes illegal behavior
+// :115:22: error: use of undefined value here causes illegal behavior
+// :115:22: error: use of undefined value here causes illegal behavior
+// :115:22: error: use of undefined value here causes illegal behavior
+// :115:22: error: use of undefined value here causes illegal behavior
+// :115:22: note: when computing vector element at index '1'
+// :115:22: error: use of undefined value here causes illegal behavior
+// :115:22: note: when computing vector element at index '1'
+// :115:22: error: use of undefined value here causes illegal behavior
+// :115:22: note: when computing vector element at index '1'
+// :115:22: error: use of undefined value here causes illegal behavior
+// :115:22: note: when computing vector element at index '1'
+// :115:22: error: use of undefined value here causes illegal behavior
+// :115:22: note: when computing vector element at index '0'
+// :115:22: error: use of undefined value here causes illegal behavior
+// :115:22: note: when computing vector element at index '0'
+// :115:22: error: use of undefined value here causes illegal behavior
+// :115:22: note: when computing vector element at index '0'
+// :115:22: error: use of undefined value here causes illegal behavior
+// :115:22: note: when computing vector element at index '0'
+// :115:22: error: use of undefined value here causes illegal behavior
+// :115:22: error: use of undefined value here causes illegal behavior
+// :115:22: error: use of undefined value here causes illegal behavior
+// :115:22: error: use of undefined value here causes illegal behavior
+// :115:22: error: use of undefined value here causes illegal behavior
+// :115:22: error: use of undefined value here causes illegal behavior
+// :115:22: error: use of undefined value here causes illegal behavior
+// :115:22: note: when computing vector element at index '1'
+// :115:22: error: use of undefined value here causes illegal behavior
+// :115:22: note: when computing vector element at index '1'
+// :115:22: error: use of undefined value here causes illegal behavior
+// :115:22: note: when computing vector element at index '1'
+// :115:22: error: use of undefined value here causes illegal behavior
+// :115:22: note: when computing vector element at index '1'
+// :115:22: error: use of undefined value here causes illegal behavior
+// :115:22: note: when computing vector element at index '0'
+// :115:22: error: use of undefined value here causes illegal behavior
+// :115:22: note: when computing vector element at index '0'
+// :115:22: error: use of undefined value here causes illegal behavior
+// :115:22: note: when computing vector element at index '0'
+// :115:22: error: use of undefined value here causes illegal behavior
+// :115:22: note: when computing vector element at index '0'
+// :115:22: error: use of undefined value here causes illegal behavior
+// :115:22: error: use of undefined value here causes illegal behavior
+// :115:22: error: use of undefined value here causes illegal behavior
+// :115:22: error: use of undefined value here causes illegal behavior
+// :115:22: error: use of undefined value here causes illegal behavior
+// :115:22: error: use of undefined value here causes illegal behavior
+// :115:22: error: use of undefined value here causes illegal behavior
+// :115:22: note: when computing vector element at index '1'
+// :115:22: error: use of undefined value here causes illegal behavior
+// :115:22: note: when computing vector element at index '1'
+// :115:22: error: use of undefined value here causes illegal behavior
+// :115:22: note: when computing vector element at index '1'
+// :115:22: error: use of undefined value here causes illegal behavior
+// :115:22: note: when computing vector element at index '1'
+// :115:22: error: use of undefined value here causes illegal behavior
+// :115:22: note: when computing vector element at index '0'
+// :115:22: error: use of undefined value here causes illegal behavior
+// :115:22: note: when computing vector element at index '0'
+// :115:22: error: use of undefined value here causes illegal behavior
+// :115:22: note: when computing vector element at index '0'
+// :115:22: error: use of undefined value here causes illegal behavior
+// :115:22: note: when computing vector element at index '0'
+// :115:22: error: use of undefined value here causes illegal behavior
+// :115:22: error: use of undefined value here causes illegal behavior
+// :115:22: error: use of undefined value here causes illegal behavior
+// :115:22: error: use of undefined value here causes illegal behavior
+// :115:22: error: use of undefined value here causes illegal behavior
+// :115:22: error: use of undefined value here causes illegal behavior
+// :115:22: error: use of undefined value here causes illegal behavior
+// :115:22: note: when computing vector element at index '1'
+// :115:22: error: use of undefined value here causes illegal behavior
+// :115:22: note: when computing vector element at index '1'
+// :115:22: error: use of undefined value here causes illegal behavior
+// :115:22: note: when computing vector element at index '1'
+// :115:22: error: use of undefined value here causes illegal behavior
+// :115:22: note: when computing vector element at index '1'
+// :115:22: error: use of undefined value here causes illegal behavior
+// :115:22: note: when computing vector element at index '0'
+// :115:22: error: use of undefined value here causes illegal behavior
+// :115:22: note: when computing vector element at index '0'
+// :115:22: error: use of undefined value here causes illegal behavior
+// :115:22: note: when computing vector element at index '0'
+// :115:22: error: use of undefined value here causes illegal behavior
+// :115:22: note: when computing vector element at index '0'
+// :115:22: error: use of undefined value here causes illegal behavior
+// :115:22: error: use of undefined value here causes illegal behavior
+// :115:22: error: use of undefined value here causes illegal behavior
+// :115:22: error: use of undefined value here causes illegal behavior
+// :115:22: error: use of undefined value here causes illegal behavior
+// :115:22: error: use of undefined value here causes illegal behavior
+// :115:22: error: use of undefined value here causes illegal behavior
+// :115:22: note: when computing vector element at index '1'
+// :115:22: error: use of undefined value here causes illegal behavior
+// :115:22: note: when computing vector element at index '1'
+// :115:22: error: use of undefined value here causes illegal behavior
+// :115:22: note: when computing vector element at index '1'
+// :115:22: error: use of undefined value here causes illegal behavior
+// :115:22: note: when computing vector element at index '1'
+// :115:22: error: use of undefined value here causes illegal behavior
+// :115:22: note: when computing vector element at index '0'
+// :115:22: error: use of undefined value here causes illegal behavior
+// :115:22: note: when computing vector element at index '0'
+// :115:22: error: use of undefined value here causes illegal behavior
+// :115:22: note: when computing vector element at index '0'
+// :115:22: error: use of undefined value here causes illegal behavior
+// :115:22: note: when computing vector element at index '0'
+// :115:22: error: use of undefined value here causes illegal behavior
+// :115:22: error: use of undefined value here causes illegal behavior
+// :115:22: error: use of undefined value here causes illegal behavior
+// :115:22: error: use of undefined value here causes illegal behavior
+// :115:22: error: use of undefined value here causes illegal behavior
+// :115:22: error: use of undefined value here causes illegal behavior
+// :115:22: error: use of undefined value here causes illegal behavior
+// :115:22: note: when computing vector element at index '1'
+// :115:22: error: use of undefined value here causes illegal behavior
+// :115:22: note: when computing vector element at index '1'
+// :115:22: error: use of undefined value here causes illegal behavior
+// :115:22: note: when computing vector element at index '1'
+// :115:22: error: use of undefined value here causes illegal behavior
+// :115:22: note: when computing vector element at index '1'
+// :115:22: error: use of undefined value here causes illegal behavior
+// :115:22: note: when computing vector element at index '0'
+// :115:22: error: use of undefined value here causes illegal behavior
+// :115:22: note: when computing vector element at index '0'
+// :115:22: error: use of undefined value here causes illegal behavior
+// :115:22: note: when computing vector element at index '0'
+// :115:22: error: use of undefined value here causes illegal behavior
+// :115:22: note: when computing vector element at index '0'
+// :115:22: error: use of undefined value here causes illegal behavior
+// :115:22: error: use of undefined value here causes illegal behavior
+// :115:22: error: use of undefined value here causes illegal behavior
+// :115:22: error: use of undefined value here causes illegal behavior
+// :115:22: error: use of undefined value here causes illegal behavior
+// :115:22: error: use of undefined value here causes illegal behavior
+// :115:22: error: use of undefined value here causes illegal behavior
+// :115:22: note: when computing vector element at index '1'
+// :115:22: error: use of undefined value here causes illegal behavior
+// :115:22: note: when computing vector element at index '1'
+// :115:22: error: use of undefined value here causes illegal behavior
+// :115:22: note: when computing vector element at index '1'
+// :115:22: error: use of undefined value here causes illegal behavior
+// :115:22: note: when computing vector element at index '1'
+// :115:22: error: use of undefined value here causes illegal behavior
+// :115:22: note: when computing vector element at index '0'
+// :115:22: error: use of undefined value here causes illegal behavior
+// :115:22: note: when computing vector element at index '0'
+// :115:22: error: use of undefined value here causes illegal behavior
+// :115:22: note: when computing vector element at index '0'
+// :115:22: error: use of undefined value here causes illegal behavior
+// :115:22: note: when computing vector element at index '0'
+// :115:22: error: use of undefined value here causes illegal behavior
+// :115:22: error: use of undefined value here causes illegal behavior
+// :115:22: error: use of undefined value here causes illegal behavior
+// :115:22: error: use of undefined value here causes illegal behavior
+// :115:22: error: use of undefined value here causes illegal behavior
+// :115:22: error: use of undefined value here causes illegal behavior
+// :115:22: error: use of undefined value here causes illegal behavior
+// :115:22: note: when computing vector element at index '1'
+// :115:22: error: use of undefined value here causes illegal behavior
+// :115:22: note: when computing vector element at index '1'
+// :115:22: error: use of undefined value here causes illegal behavior
+// :115:22: note: when computing vector element at index '1'
+// :115:22: error: use of undefined value here causes illegal behavior
+// :115:22: note: when computing vector element at index '1'
+// :115:22: error: use of undefined value here causes illegal behavior
+// :115:22: note: when computing vector element at index '0'
+// :115:22: error: use of undefined value here causes illegal behavior
+// :115:22: note: when computing vector element at index '0'
+// :115:22: error: use of undefined value here causes illegal behavior
+// :115:22: note: when computing vector element at index '0'
+// :115:22: error: use of undefined value here causes illegal behavior
+// :115:22: note: when computing vector element at index '0'
+// :115:22: error: use of undefined value here causes illegal behavior
+// :115:22: error: use of undefined value here causes illegal behavior
+// :115:22: error: use of undefined value here causes illegal behavior
+// :115:22: error: use of undefined value here causes illegal behavior
+// :115:22: error: use of undefined value here causes illegal behavior
+// :115:22: error: use of undefined value here causes illegal behavior
+// :115:22: error: use of undefined value here causes illegal behavior
+// :115:22: note: when computing vector element at index '1'
+// :115:22: error: use of undefined value here causes illegal behavior
+// :115:22: note: when computing vector element at index '1'
+// :115:22: error: use of undefined value here causes illegal behavior
+// :115:22: note: when computing vector element at index '1'
+// :115:22: error: use of undefined value here causes illegal behavior
+// :115:22: note: when computing vector element at index '1'
+// :115:22: error: use of undefined value here causes illegal behavior
+// :115:22: note: when computing vector element at index '0'
+// :115:22: error: use of undefined value here causes illegal behavior
+// :115:22: note: when computing vector element at index '0'
+// :115:22: error: use of undefined value here causes illegal behavior
+// :115:22: note: when computing vector element at index '0'
+// :115:22: error: use of undefined value here causes illegal behavior
+// :115:22: note: when computing vector element at index '0'
+// :115:22: error: use of undefined value here causes illegal behavior
+// :115:22: error: use of undefined value here causes illegal behavior
+// :115:22: error: use of undefined value here causes illegal behavior
+// :115:22: error: use of undefined value here causes illegal behavior
+// :115:22: error: use of undefined value here causes illegal behavior
+// :115:22: error: use of undefined value here causes illegal behavior
+// :115:22: error: use of undefined value here causes illegal behavior
+// :115:22: note: when computing vector element at index '1'
+// :115:22: error: use of undefined value here causes illegal behavior
+// :115:22: note: when computing vector element at index '1'
+// :115:22: error: use of undefined value here causes illegal behavior
+// :115:22: note: when computing vector element at index '1'
+// :115:22: error: use of undefined value here causes illegal behavior
+// :115:22: note: when computing vector element at index '1'
+// :115:22: error: use of undefined value here causes illegal behavior
+// :115:22: note: when computing vector element at index '0'
+// :115:22: error: use of undefined value here causes illegal behavior
+// :115:22: note: when computing vector element at index '0'
+// :115:22: error: use of undefined value here causes illegal behavior
+// :115:22: note: when computing vector element at index '0'
+// :115:22: error: use of undefined value here causes illegal behavior
+// :115:22: note: when computing vector element at index '0'
+// :115:22: error: use of undefined value here causes illegal behavior
+// :115:22: error: use of undefined value here causes illegal behavior
+// :115:22: error: use of undefined value here causes illegal behavior
+// :115:22: error: use of undefined value here causes illegal behavior
+// :115:22: error: use of undefined value here causes illegal behavior
+// :115:22: error: use of undefined value here causes illegal behavior
+// :115:22: error: use of undefined value here causes illegal behavior
+// :115:22: note: when computing vector element at index '1'
+// :115:22: error: use of undefined value here causes illegal behavior
+// :115:22: note: when computing vector element at index '1'
+// :115:22: error: use of undefined value here causes illegal behavior
+// :115:22: note: when computing vector element at index '1'
+// :115:22: error: use of undefined value here causes illegal behavior
+// :115:22: note: when computing vector element at index '1'
+// :115:22: error: use of undefined value here causes illegal behavior
+// :115:22: note: when computing vector element at index '0'
+// :115:22: error: use of undefined value here causes illegal behavior
+// :115:22: note: when computing vector element at index '0'
+// :115:22: error: use of undefined value here causes illegal behavior
+// :115:22: note: when computing vector element at index '0'
+// :115:22: error: use of undefined value here causes illegal behavior
+// :115:22: note: when computing vector element at index '0'
+// :121:17: error: use of undefined value here causes illegal behavior
+// :121:17: error: use of undefined value here causes illegal behavior
+// :121:17: note: when computing vector element at index '0'
+// :121:17: error: use of undefined value here causes illegal behavior
+// :121:17: note: when computing vector element at index '0'
+// :121:17: error: use of undefined value here causes illegal behavior
+// :121:17: note: when computing vector element at index '0'
+// :121:17: error: use of undefined value here causes illegal behavior
+// :121:17: note: when computing vector element at index '1'
+// :121:17: error: use of undefined value here causes illegal behavior
+// :121:17: note: when computing vector element at index '0'
+// :121:17: error: use of undefined value here causes illegal behavior
+// :121:17: note: when computing vector element at index '0'
+// :121:17: error: use of undefined value here causes illegal behavior
+// :121:17: note: when computing vector element at index '0'
+// :121:17: error: use of undefined value here causes illegal behavior
+// :121:17: error: use of undefined value here causes illegal behavior
+// :121:17: note: when computing vector element at index '0'
+// :121:17: error: use of undefined value here causes illegal behavior
+// :121:17: note: when computing vector element at index '0'
+// :121:17: error: use of undefined value here causes illegal behavior
+// :121:17: note: when computing vector element at index '0'
+// :121:17: error: use of undefined value here causes illegal behavior
+// :121:17: note: when computing vector element at index '1'
+// :121:17: error: use of undefined value here causes illegal behavior
+// :121:17: note: when computing vector element at index '0'
+// :121:17: error: use of undefined value here causes illegal behavior
+// :121:17: note: when computing vector element at index '0'
+// :121:17: error: use of undefined value here causes illegal behavior
+// :121:17: note: when computing vector element at index '0'
+// :121:17: error: use of undefined value here causes illegal behavior
+// :121:17: error: use of undefined value here causes illegal behavior
+// :121:17: note: when computing vector element at index '0'
+// :121:17: error: use of undefined value here causes illegal behavior
+// :121:17: note: when computing vector element at index '0'
+// :121:17: error: use of undefined value here causes illegal behavior
+// :121:17: note: when computing vector element at index '0'
+// :121:17: error: use of undefined value here causes illegal behavior
+// :121:17: note: when computing vector element at index '1'
+// :121:17: error: use of undefined value here causes illegal behavior
+// :121:17: note: when computing vector element at index '0'
+// :121:17: error: use of undefined value here causes illegal behavior
+// :121:17: note: when computing vector element at index '0'
+// :121:17: error: use of undefined value here causes illegal behavior
+// :121:17: note: when computing vector element at index '0'
+// :121:17: error: use of undefined value here causes illegal behavior
+// :121:17: error: use of undefined value here causes illegal behavior
+// :121:17: note: when computing vector element at index '0'
+// :121:17: error: use of undefined value here causes illegal behavior
+// :121:17: note: when computing vector element at index '0'
+// :121:17: error: use of undefined value here causes illegal behavior
+// :121:17: note: when computing vector element at index '0'
+// :121:17: error: use of undefined value here causes illegal behavior
+// :121:17: note: when computing vector element at index '1'
+// :121:17: error: use of undefined value here causes illegal behavior
+// :121:17: note: when computing vector element at index '0'
+// :121:17: error: use of undefined value here causes illegal behavior
+// :121:17: note: when computing vector element at index '0'
+// :121:17: error: use of undefined value here causes illegal behavior
+// :121:17: note: when computing vector element at index '0'
+// :121:17: error: use of undefined value here causes illegal behavior
+// :121:17: error: use of undefined value here causes illegal behavior
+// :121:17: note: when computing vector element at index '0'
+// :121:17: error: use of undefined value here causes illegal behavior
+// :121:17: note: when computing vector element at index '0'
+// :121:17: error: use of undefined value here causes illegal behavior
+// :121:17: note: when computing vector element at index '0'
+// :121:17: error: use of undefined value here causes illegal behavior
+// :121:17: note: when computing vector element at index '1'
+// :121:17: error: use of undefined value here causes illegal behavior
+// :121:17: note: when computing vector element at index '0'
+// :121:17: error: use of undefined value here causes illegal behavior
+// :121:17: note: when computing vector element at index '0'
+// :121:17: error: use of undefined value here causes illegal behavior
+// :121:17: note: when computing vector element at index '0'
+// :121:17: error: use of undefined value here causes illegal behavior
+// :121:17: error: use of undefined value here causes illegal behavior
+// :121:17: note: when computing vector element at index '0'
+// :121:17: error: use of undefined value here causes illegal behavior
+// :121:17: note: when computing vector element at index '0'
+// :121:17: error: use of undefined value here causes illegal behavior
+// :121:17: note: when computing vector element at index '0'
+// :121:17: error: use of undefined value here causes illegal behavior
+// :121:17: note: when computing vector element at index '1'
+// :121:17: error: use of undefined value here causes illegal behavior
+// :121:17: note: when computing vector element at index '0'
+// :121:17: error: use of undefined value here causes illegal behavior
+// :121:17: note: when computing vector element at index '0'
+// :121:17: error: use of undefined value here causes illegal behavior
+// :121:17: note: when computing vector element at index '0'
+// :121:17: error: use of undefined value here causes illegal behavior
+// :121:17: error: use of undefined value here causes illegal behavior
+// :121:17: note: when computing vector element at index '0'
+// :121:17: error: use of undefined value here causes illegal behavior
+// :121:17: note: when computing vector element at index '0'
+// :121:17: error: use of undefined value here causes illegal behavior
+// :121:17: note: when computing vector element at index '0'
+// :121:17: error: use of undefined value here causes illegal behavior
+// :121:17: note: when computing vector element at index '1'
+// :121:17: error: use of undefined value here causes illegal behavior
+// :121:17: note: when computing vector element at index '0'
+// :121:17: error: use of undefined value here causes illegal behavior
+// :121:17: note: when computing vector element at index '0'
+// :121:17: error: use of undefined value here causes illegal behavior
+// :121:17: note: when computing vector element at index '0'
+// :121:17: error: use of undefined value here causes illegal behavior
+// :121:17: error: use of undefined value here causes illegal behavior
+// :121:17: note: when computing vector element at index '0'
+// :121:17: error: use of undefined value here causes illegal behavior
+// :121:17: note: when computing vector element at index '0'
+// :121:17: error: use of undefined value here causes illegal behavior
+// :121:17: note: when computing vector element at index '0'
+// :121:17: error: use of undefined value here causes illegal behavior
+// :121:17: note: when computing vector element at index '1'
+// :121:17: error: use of undefined value here causes illegal behavior
+// :121:17: note: when computing vector element at index '0'
+// :121:17: error: use of undefined value here causes illegal behavior
+// :121:17: note: when computing vector element at index '0'
+// :121:17: error: use of undefined value here causes illegal behavior
+// :121:17: note: when computing vector element at index '0'
+// :121:17: error: use of undefined value here causes illegal behavior
+// :121:17: error: use of undefined value here causes illegal behavior
+// :121:17: note: when computing vector element at index '0'
+// :121:17: error: use of undefined value here causes illegal behavior
+// :121:17: note: when computing vector element at index '0'
+// :121:17: error: use of undefined value here causes illegal behavior
+// :121:17: note: when computing vector element at index '0'
+// :121:17: error: use of undefined value here causes illegal behavior
+// :121:17: note: when computing vector element at index '1'
+// :121:17: error: use of undefined value here causes illegal behavior
+// :121:17: note: when computing vector element at index '0'
+// :121:17: error: use of undefined value here causes illegal behavior
+// :121:17: note: when computing vector element at index '0'
+// :121:17: error: use of undefined value here causes illegal behavior
+// :121:17: note: when computing vector element at index '0'
+// :121:17: error: use of undefined value here causes illegal behavior
+// :121:17: error: use of undefined value here causes illegal behavior
+// :121:17: note: when computing vector element at index '0'
+// :121:17: error: use of undefined value here causes illegal behavior
+// :121:17: note: when computing vector element at index '0'
+// :121:17: error: use of undefined value here causes illegal behavior
+// :121:17: note: when computing vector element at index '0'
+// :121:17: error: use of undefined value here causes illegal behavior
+// :121:17: note: when computing vector element at index '1'
+// :121:17: error: use of undefined value here causes illegal behavior
+// :121:17: note: when computing vector element at index '0'
+// :121:17: error: use of undefined value here causes illegal behavior
+// :121:17: note: when computing vector element at index '0'
+// :121:17: error: use of undefined value here causes illegal behavior
+// :121:17: note: when computing vector element at index '0'
+// :121:17: error: use of undefined value here causes illegal behavior
+// :121:17: error: use of undefined value here causes illegal behavior
+// :121:17: note: when computing vector element at index '0'
+// :121:17: error: use of undefined value here causes illegal behavior
+// :121:17: note: when computing vector element at index '0'
+// :121:17: error: use of undefined value here causes illegal behavior
+// :121:17: note: when computing vector element at index '0'
+// :121:17: error: use of undefined value here causes illegal behavior
+// :121:17: note: when computing vector element at index '1'
+// :121:17: error: use of undefined value here causes illegal behavior
+// :121:17: note: when computing vector element at index '0'
+// :121:17: error: use of undefined value here causes illegal behavior
+// :121:17: note: when computing vector element at index '0'
+// :121:17: error: use of undefined value here causes illegal behavior
+// :121:17: note: when computing vector element at index '0'
+// :121:21: error: use of undefined value here causes illegal behavior
+// :121:21: error: use of undefined value here causes illegal behavior
+// :121:21: note: when computing vector element at index '0'
+// :121:21: error: use of undefined value here causes illegal behavior
+// :121:21: note: when computing vector element at index '0'
+// :121:21: error: use of undefined value here causes illegal behavior
+// :121:21: note: when computing vector element at index '1'
+// :121:21: error: use of undefined value here causes illegal behavior
+// :121:21: note: when computing vector element at index '0'
+// :121:21: error: use of undefined value here causes illegal behavior
+// :121:21: note: when computing vector element at index '0'
+// :121:21: error: use of undefined value here causes illegal behavior
+// :121:21: error: use of undefined value here causes illegal behavior
+// :121:21: note: when computing vector element at index '0'
+// :121:21: error: use of undefined value here causes illegal behavior
+// :121:21: note: when computing vector element at index '0'
+// :121:21: error: use of undefined value here causes illegal behavior
+// :121:21: note: when computing vector element at index '1'
+// :121:21: error: use of undefined value here causes illegal behavior
+// :121:21: note: when computing vector element at index '0'
+// :121:21: error: use of undefined value here causes illegal behavior
+// :121:21: note: when computing vector element at index '0'
+// :121:21: error: use of undefined value here causes illegal behavior
+// :121:21: error: use of undefined value here causes illegal behavior
+// :121:21: note: when computing vector element at index '0'
+// :121:21: error: use of undefined value here causes illegal behavior
+// :121:21: note: when computing vector element at index '0'
+// :121:21: error: use of undefined value here causes illegal behavior
+// :121:21: note: when computing vector element at index '1'
+// :121:21: error: use of undefined value here causes illegal behavior
+// :121:21: note: when computing vector element at index '0'
+// :121:21: error: use of undefined value here causes illegal behavior
+// :121:21: note: when computing vector element at index '0'
+// :121:21: error: use of undefined value here causes illegal behavior
+// :121:21: error: use of undefined value here causes illegal behavior
+// :121:21: note: when computing vector element at index '0'
+// :121:21: error: use of undefined value here causes illegal behavior
+// :121:21: note: when computing vector element at index '0'
+// :121:21: error: use of undefined value here causes illegal behavior
+// :121:21: note: when computing vector element at index '1'
+// :121:21: error: use of undefined value here causes illegal behavior
+// :121:21: note: when computing vector element at index '0'
+// :121:21: error: use of undefined value here causes illegal behavior
+// :121:21: note: when computing vector element at index '0'
+// :121:21: error: use of undefined value here causes illegal behavior
+// :121:21: error: use of undefined value here causes illegal behavior
+// :121:21: note: when computing vector element at index '0'
+// :121:21: error: use of undefined value here causes illegal behavior
+// :121:21: note: when computing vector element at index '0'
+// :121:21: error: use of undefined value here causes illegal behavior
+// :121:21: note: when computing vector element at index '1'
+// :121:21: error: use of undefined value here causes illegal behavior
+// :121:21: note: when computing vector element at index '0'
+// :121:21: error: use of undefined value here causes illegal behavior
+// :121:21: note: when computing vector element at index '0'
+// :121:21: error: use of undefined value here causes illegal behavior
+// :121:21: error: use of undefined value here causes illegal behavior
+// :121:21: note: when computing vector element at index '0'
+// :121:21: error: use of undefined value here causes illegal behavior
+// :121:21: note: when computing vector element at index '0'
+// :121:21: error: use of undefined value here causes illegal behavior
+// :121:21: note: when computing vector element at index '1'
+// :121:21: error: use of undefined value here causes illegal behavior
+// :121:21: note: when computing vector element at index '0'
+// :121:21: error: use of undefined value here causes illegal behavior
+// :121:21: note: when computing vector element at index '0'
+// :121:21: error: use of undefined value here causes illegal behavior
+// :121:21: error: use of undefined value here causes illegal behavior
+// :121:21: note: when computing vector element at index '0'
+// :121:21: error: use of undefined value here causes illegal behavior
+// :121:21: note: when computing vector element at index '0'
+// :121:21: error: use of undefined value here causes illegal behavior
+// :121:21: note: when computing vector element at index '1'
+// :121:21: error: use of undefined value here causes illegal behavior
+// :121:21: note: when computing vector element at index '0'
+// :121:21: error: use of undefined value here causes illegal behavior
+// :121:21: note: when computing vector element at index '0'
+// :121:21: error: use of undefined value here causes illegal behavior
+// :121:21: error: use of undefined value here causes illegal behavior
+// :121:21: note: when computing vector element at index '0'
+// :121:21: error: use of undefined value here causes illegal behavior
+// :121:21: note: when computing vector element at index '0'
+// :121:21: error: use of undefined value here causes illegal behavior
+// :121:21: note: when computing vector element at index '1'
+// :121:21: error: use of undefined value here causes illegal behavior
+// :121:21: note: when computing vector element at index '0'
+// :121:21: error: use of undefined value here causes illegal behavior
+// :121:21: note: when computing vector element at index '0'
+// :121:21: error: use of undefined value here causes illegal behavior
+// :121:21: error: use of undefined value here causes illegal behavior
+// :121:21: note: when computing vector element at index '0'
+// :121:21: error: use of undefined value here causes illegal behavior
+// :121:21: note: when computing vector element at index '0'
+// :121:21: error: use of undefined value here causes illegal behavior
+// :121:21: note: when computing vector element at index '1'
+// :121:21: error: use of undefined value here causes illegal behavior
+// :121:21: note: when computing vector element at index '0'
+// :121:21: error: use of undefined value here causes illegal behavior
+// :121:21: note: when computing vector element at index '0'
+// :121:21: error: use of undefined value here causes illegal behavior
+// :121:21: error: use of undefined value here causes illegal behavior
+// :121:21: note: when computing vector element at index '0'
+// :121:21: error: use of undefined value here causes illegal behavior
+// :121:21: note: when computing vector element at index '0'
+// :121:21: error: use of undefined value here causes illegal behavior
+// :121:21: note: when computing vector element at index '1'
+// :121:21: error: use of undefined value here causes illegal behavior
+// :121:21: note: when computing vector element at index '0'
+// :121:21: error: use of undefined value here causes illegal behavior
+// :121:21: note: when computing vector element at index '0'
+// :121:21: error: use of undefined value here causes illegal behavior
+// :121:21: error: use of undefined value here causes illegal behavior
+// :121:21: note: when computing vector element at index '0'
+// :121:21: error: use of undefined value here causes illegal behavior
+// :121:21: note: when computing vector element at index '0'
+// :121:21: error: use of undefined value here causes illegal behavior
+// :121:21: note: when computing vector element at index '1'
+// :121:21: error: use of undefined value here causes illegal behavior
+// :121:21: note: when computing vector element at index '0'
+// :121:21: error: use of undefined value here causes illegal behavior
+// :121:21: note: when computing vector element at index '0'
+// :125:27: error: use of undefined value here causes illegal behavior
+// :125:27: error: use of undefined value here causes illegal behavior
+// :125:27: note: when computing vector element at index '0'
+// :125:27: error: use of undefined value here causes illegal behavior
+// :125:27: note: when computing vector element at index '0'
+// :125:27: error: use of undefined value here causes illegal behavior
+// :125:27: note: when computing vector element at index '0'
+// :125:27: error: use of undefined value here causes illegal behavior
+// :125:27: note: when computing vector element at index '1'
+// :125:27: error: use of undefined value here causes illegal behavior
+// :125:27: note: when computing vector element at index '0'
+// :125:27: error: use of undefined value here causes illegal behavior
+// :125:27: note: when computing vector element at index '0'
+// :125:27: error: use of undefined value here causes illegal behavior
+// :125:27: note: when computing vector element at index '0'
+// :125:27: error: use of undefined value here causes illegal behavior
+// :125:27: error: use of undefined value here causes illegal behavior
+// :125:27: note: when computing vector element at index '0'
+// :125:27: error: use of undefined value here causes illegal behavior
+// :125:27: note: when computing vector element at index '0'
+// :125:27: error: use of undefined value here causes illegal behavior
+// :125:27: note: when computing vector element at index '0'
+// :125:27: error: use of undefined value here causes illegal behavior
+// :125:27: note: when computing vector element at index '1'
+// :125:27: error: use of undefined value here causes illegal behavior
+// :125:27: note: when computing vector element at index '0'
+// :125:27: error: use of undefined value here causes illegal behavior
+// :125:27: note: when computing vector element at index '0'
+// :125:27: error: use of undefined value here causes illegal behavior
+// :125:27: note: when computing vector element at index '0'
+// :125:27: error: use of undefined value here causes illegal behavior
+// :125:27: error: use of undefined value here causes illegal behavior
+// :125:27: note: when computing vector element at index '0'
+// :125:27: error: use of undefined value here causes illegal behavior
+// :125:27: note: when computing vector element at index '0'
+// :125:27: error: use of undefined value here causes illegal behavior
+// :125:27: note: when computing vector element at index '0'
+// :125:27: error: use of undefined value here causes illegal behavior
+// :125:27: note: when computing vector element at index '1'
+// :125:27: error: use of undefined value here causes illegal behavior
+// :125:27: note: when computing vector element at index '0'
+// :125:27: error: use of undefined value here causes illegal behavior
+// :125:27: note: when computing vector element at index '0'
+// :125:27: error: use of undefined value here causes illegal behavior
+// :125:27: note: when computing vector element at index '0'
+// :125:27: error: use of undefined value here causes illegal behavior
+// :125:27: error: use of undefined value here causes illegal behavior
+// :125:27: note: when computing vector element at index '0'
+// :125:27: error: use of undefined value here causes illegal behavior
+// :125:27: note: when computing vector element at index '0'
+// :125:27: error: use of undefined value here causes illegal behavior
+// :125:27: note: when computing vector element at index '0'
+// :125:27: error: use of undefined value here causes illegal behavior
+// :125:27: note: when computing vector element at index '1'
+// :125:27: error: use of undefined value here causes illegal behavior
+// :125:27: note: when computing vector element at index '0'
+// :125:27: error: use of undefined value here causes illegal behavior
+// :125:27: note: when computing vector element at index '0'
+// :125:27: error: use of undefined value here causes illegal behavior
+// :125:27: note: when computing vector element at index '0'
+// :125:27: error: use of undefined value here causes illegal behavior
+// :125:27: error: use of undefined value here causes illegal behavior
+// :125:27: note: when computing vector element at index '0'
+// :125:27: error: use of undefined value here causes illegal behavior
+// :125:27: note: when computing vector element at index '0'
+// :125:27: error: use of undefined value here causes illegal behavior
+// :125:27: note: when computing vector element at index '0'
+// :125:27: error: use of undefined value here causes illegal behavior
+// :125:27: note: when computing vector element at index '1'
+// :125:27: error: use of undefined value here causes illegal behavior
+// :125:27: note: when computing vector element at index '0'
+// :125:27: error: use of undefined value here causes illegal behavior
+// :125:27: note: when computing vector element at index '0'
+// :125:27: error: use of undefined value here causes illegal behavior
+// :125:27: note: when computing vector element at index '0'
+// :125:27: error: use of undefined value here causes illegal behavior
+// :125:27: error: use of undefined value here causes illegal behavior
+// :125:27: note: when computing vector element at index '0'
+// :125:27: error: use of undefined value here causes illegal behavior
+// :125:27: note: when computing vector element at index '0'
+// :125:27: error: use of undefined value here causes illegal behavior
+// :125:27: note: when computing vector element at index '0'
+// :125:27: error: use of undefined value here causes illegal behavior
+// :125:27: note: when computing vector element at index '1'
+// :125:27: error: use of undefined value here causes illegal behavior
+// :125:27: note: when computing vector element at index '0'
+// :125:27: error: use of undefined value here causes illegal behavior
+// :125:27: note: when computing vector element at index '0'
+// :125:27: error: use of undefined value here causes illegal behavior
+// :125:27: note: when computing vector element at index '0'
+// :125:27: error: use of undefined value here causes illegal behavior
+// :125:27: error: use of undefined value here causes illegal behavior
+// :125:27: note: when computing vector element at index '0'
+// :125:27: error: use of undefined value here causes illegal behavior
+// :125:27: note: when computing vector element at index '0'
+// :125:27: error: use of undefined value here causes illegal behavior
+// :125:27: note: when computing vector element at index '0'
+// :125:27: error: use of undefined value here causes illegal behavior
+// :125:27: note: when computing vector element at index '1'
+// :125:27: error: use of undefined value here causes illegal behavior
+// :125:27: note: when computing vector element at index '0'
+// :125:27: error: use of undefined value here causes illegal behavior
+// :125:27: note: when computing vector element at index '0'
+// :125:27: error: use of undefined value here causes illegal behavior
+// :125:27: note: when computing vector element at index '0'
+// :125:27: error: use of undefined value here causes illegal behavior
+// :125:27: error: use of undefined value here causes illegal behavior
+// :125:27: note: when computing vector element at index '0'
+// :125:27: error: use of undefined value here causes illegal behavior
+// :125:27: note: when computing vector element at index '0'
+// :125:27: error: use of undefined value here causes illegal behavior
+// :125:27: note: when computing vector element at index '0'
+// :125:27: error: use of undefined value here causes illegal behavior
+// :125:27: note: when computing vector element at index '1'
+// :125:27: error: use of undefined value here causes illegal behavior
+// :125:27: note: when computing vector element at index '0'
+// :125:27: error: use of undefined value here causes illegal behavior
+// :125:27: note: when computing vector element at index '0'
+// :125:27: error: use of undefined value here causes illegal behavior
+// :125:27: note: when computing vector element at index '0'
+// :125:27: error: use of undefined value here causes illegal behavior
+// :125:27: error: use of undefined value here causes illegal behavior
+// :125:27: note: when computing vector element at index '0'
+// :125:27: error: use of undefined value here causes illegal behavior
+// :125:27: note: when computing vector element at index '0'
+// :125:27: error: use of undefined value here causes illegal behavior
+// :125:27: note: when computing vector element at index '0'
+// :125:27: error: use of undefined value here causes illegal behavior
+// :125:27: note: when computing vector element at index '1'
+// :125:27: error: use of undefined value here causes illegal behavior
+// :125:27: note: when computing vector element at index '0'
+// :125:27: error: use of undefined value here causes illegal behavior
+// :125:27: note: when computing vector element at index '0'
+// :125:27: error: use of undefined value here causes illegal behavior
+// :125:27: note: when computing vector element at index '0'
+// :125:27: error: use of undefined value here causes illegal behavior
+// :125:27: error: use of undefined value here causes illegal behavior
+// :125:27: note: when computing vector element at index '0'
+// :125:27: error: use of undefined value here causes illegal behavior
+// :125:27: note: when computing vector element at index '0'
+// :125:27: error: use of undefined value here causes illegal behavior
+// :125:27: note: when computing vector element at index '0'
+// :125:27: error: use of undefined value here causes illegal behavior
+// :125:27: note: when computing vector element at index '1'
+// :125:27: error: use of undefined value here causes illegal behavior
+// :125:27: note: when computing vector element at index '0'
+// :125:27: error: use of undefined value here causes illegal behavior
+// :125:27: note: when computing vector element at index '0'
+// :125:27: error: use of undefined value here causes illegal behavior
+// :125:27: note: when computing vector element at index '0'
+// :125:27: error: use of undefined value here causes illegal behavior
+// :125:27: error: use of undefined value here causes illegal behavior
+// :125:27: note: when computing vector element at index '0'
+// :125:27: error: use of undefined value here causes illegal behavior
+// :125:27: note: when computing vector element at index '0'
+// :125:27: error: use of undefined value here causes illegal behavior
+// :125:27: note: when computing vector element at index '0'
+// :125:27: error: use of undefined value here causes illegal behavior
+// :125:27: note: when computing vector element at index '1'
+// :125:27: error: use of undefined value here causes illegal behavior
+// :125:27: note: when computing vector element at index '0'
+// :125:27: error: use of undefined value here causes illegal behavior
+// :125:27: note: when computing vector element at index '0'
+// :125:27: error: use of undefined value here causes illegal behavior
+// :125:27: note: when computing vector element at index '0'
+// :125:30: error: use of undefined value here causes illegal behavior
+// :125:30: error: use of undefined value here causes illegal behavior
+// :125:30: note: when computing vector element at index '0'
+// :125:30: error: use of undefined value here causes illegal behavior
+// :125:30: note: when computing vector element at index '0'
+// :125:30: error: use of undefined value here causes illegal behavior
+// :125:30: note: when computing vector element at index '1'
+// :125:30: error: use of undefined value here causes illegal behavior
+// :125:30: note: when computing vector element at index '0'
+// :125:30: error: use of undefined value here causes illegal behavior
+// :125:30: note: when computing vector element at index '0'
+// :125:30: error: use of undefined value here causes illegal behavior
+// :125:30: error: use of undefined value here causes illegal behavior
+// :125:30: note: when computing vector element at index '0'
+// :125:30: error: use of undefined value here causes illegal behavior
+// :125:30: note: when computing vector element at index '0'
+// :125:30: error: use of undefined value here causes illegal behavior
+// :125:30: note: when computing vector element at index '1'
+// :125:30: error: use of undefined value here causes illegal behavior
+// :125:30: note: when computing vector element at index '0'
+// :125:30: error: use of undefined value here causes illegal behavior
+// :125:30: note: when computing vector element at index '0'
+// :125:30: error: use of undefined value here causes illegal behavior
+// :125:30: error: use of undefined value here causes illegal behavior
+// :125:30: note: when computing vector element at index '0'
+// :125:30: error: use of undefined value here causes illegal behavior
+// :125:30: note: when computing vector element at index '0'
+// :125:30: error: use of undefined value here causes illegal behavior
+// :125:30: note: when computing vector element at index '1'
+// :125:30: error: use of undefined value here causes illegal behavior
+// :125:30: note: when computing vector element at index '0'
+// :125:30: error: use of undefined value here causes illegal behavior
+// :125:30: note: when computing vector element at index '0'
+// :125:30: error: use of undefined value here causes illegal behavior
+// :125:30: error: use of undefined value here causes illegal behavior
+// :125:30: note: when computing vector element at index '0'
+// :125:30: error: use of undefined value here causes illegal behavior
+// :125:30: note: when computing vector element at index '0'
+// :125:30: error: use of undefined value here causes illegal behavior
+// :125:30: note: when computing vector element at index '1'
+// :125:30: error: use of undefined value here causes illegal behavior
+// :125:30: note: when computing vector element at index '0'
+// :125:30: error: use of undefined value here causes illegal behavior
+// :125:30: note: when computing vector element at index '0'
+// :125:30: error: use of undefined value here causes illegal behavior
+// :125:30: error: use of undefined value here causes illegal behavior
+// :125:30: note: when computing vector element at index '0'
+// :125:30: error: use of undefined value here causes illegal behavior
+// :125:30: note: when computing vector element at index '0'
+// :125:30: error: use of undefined value here causes illegal behavior
+// :125:30: note: when computing vector element at index '1'
+// :125:30: error: use of undefined value here causes illegal behavior
+// :125:30: note: when computing vector element at index '0'
+// :125:30: error: use of undefined value here causes illegal behavior
+// :125:30: note: when computing vector element at index '0'
+// :125:30: error: use of undefined value here causes illegal behavior
+// :125:30: error: use of undefined value here causes illegal behavior
+// :125:30: note: when computing vector element at index '0'
+// :125:30: error: use of undefined value here causes illegal behavior
+// :125:30: note: when computing vector element at index '0'
+// :125:30: error: use of undefined value here causes illegal behavior
+// :125:30: note: when computing vector element at index '1'
+// :125:30: error: use of undefined value here causes illegal behavior
+// :125:30: note: when computing vector element at index '0'
+// :125:30: error: use of undefined value here causes illegal behavior
+// :125:30: note: when computing vector element at index '0'
+// :125:30: error: use of undefined value here causes illegal behavior
+// :125:30: error: use of undefined value here causes illegal behavior
+// :125:30: note: when computing vector element at index '0'
+// :125:30: error: use of undefined value here causes illegal behavior
+// :125:30: note: when computing vector element at index '0'
+// :125:30: error: use of undefined value here causes illegal behavior
+// :125:30: note: when computing vector element at index '1'
+// :125:30: error: use of undefined value here causes illegal behavior
+// :125:30: note: when computing vector element at index '0'
+// :125:30: error: use of undefined value here causes illegal behavior
+// :125:30: note: when computing vector element at index '0'
+// :125:30: error: use of undefined value here causes illegal behavior
+// :125:30: error: use of undefined value here causes illegal behavior
+// :125:30: note: when computing vector element at index '0'
+// :125:30: error: use of undefined value here causes illegal behavior
+// :125:30: note: when computing vector element at index '0'
+// :125:30: error: use of undefined value here causes illegal behavior
+// :125:30: note: when computing vector element at index '1'
+// :125:30: error: use of undefined value here causes illegal behavior
+// :125:30: note: when computing vector element at index '0'
+// :125:30: error: use of undefined value here causes illegal behavior
+// :125:30: note: when computing vector element at index '0'
+// :125:30: error: use of undefined value here causes illegal behavior
+// :125:30: error: use of undefined value here causes illegal behavior
+// :125:30: note: when computing vector element at index '0'
+// :125:30: error: use of undefined value here causes illegal behavior
+// :125:30: note: when computing vector element at index '0'
+// :125:30: error: use of undefined value here causes illegal behavior
+// :125:30: note: when computing vector element at index '1'
+// :125:30: error: use of undefined value here causes illegal behavior
+// :125:30: note: when computing vector element at index '0'
+// :125:30: error: use of undefined value here causes illegal behavior
+// :125:30: note: when computing vector element at index '0'
+// :125:30: error: use of undefined value here causes illegal behavior
+// :125:30: error: use of undefined value here causes illegal behavior
+// :125:30: note: when computing vector element at index '0'
+// :125:30: error: use of undefined value here causes illegal behavior
+// :125:30: note: when computing vector element at index '0'
+// :125:30: error: use of undefined value here causes illegal behavior
+// :125:30: note: when computing vector element at index '1'
+// :125:30: error: use of undefined value here causes illegal behavior
+// :125:30: note: when computing vector element at index '0'
+// :125:30: error: use of undefined value here causes illegal behavior
+// :125:30: note: when computing vector element at index '0'
+// :125:30: error: use of undefined value here causes illegal behavior
+// :125:30: error: use of undefined value here causes illegal behavior
+// :125:30: note: when computing vector element at index '0'
+// :125:30: error: use of undefined value here causes illegal behavior
+// :125:30: note: when computing vector element at index '0'
+// :125:30: error: use of undefined value here causes illegal behavior
+// :125:30: note: when computing vector element at index '1'
+// :125:30: error: use of undefined value here causes illegal behavior
+// :125:30: note: when computing vector element at index '0'
+// :125:30: error: use of undefined value here causes illegal behavior
+// :125:30: note: when computing vector element at index '0'
+// :129:27: error: use of undefined value here causes illegal behavior
+// :129:27: error: use of undefined value here causes illegal behavior
+// :129:27: note: when computing vector element at index '0'
+// :129:27: error: use of undefined value here causes illegal behavior
+// :129:27: note: when computing vector element at index '0'
+// :129:27: error: use of undefined value here causes illegal behavior
+// :129:27: note: when computing vector element at index '0'
+// :129:27: error: use of undefined value here causes illegal behavior
+// :129:27: note: when computing vector element at index '1'
+// :129:27: error: use of undefined value here causes illegal behavior
+// :129:27: note: when computing vector element at index '0'
+// :129:27: error: use of undefined value here causes illegal behavior
+// :129:27: note: when computing vector element at index '0'
+// :129:27: error: use of undefined value here causes illegal behavior
+// :129:27: note: when computing vector element at index '0'
+// :129:27: error: use of undefined value here causes illegal behavior
+// :129:27: error: use of undefined value here causes illegal behavior
+// :129:27: note: when computing vector element at index '0'
+// :129:27: error: use of undefined value here causes illegal behavior
+// :129:27: note: when computing vector element at index '0'
+// :129:27: error: use of undefined value here causes illegal behavior
+// :129:27: note: when computing vector element at index '0'
+// :129:27: error: use of undefined value here causes illegal behavior
+// :129:27: note: when computing vector element at index '1'
+// :129:27: error: use of undefined value here causes illegal behavior
+// :129:27: note: when computing vector element at index '0'
+// :129:27: error: use of undefined value here causes illegal behavior
+// :129:27: note: when computing vector element at index '0'
+// :129:27: error: use of undefined value here causes illegal behavior
+// :129:27: note: when computing vector element at index '0'
+// :129:27: error: use of undefined value here causes illegal behavior
+// :129:27: error: use of undefined value here causes illegal behavior
+// :129:27: note: when computing vector element at index '0'
+// :129:27: error: use of undefined value here causes illegal behavior
+// :129:27: note: when computing vector element at index '0'
+// :129:27: error: use of undefined value here causes illegal behavior
+// :129:27: note: when computing vector element at index '0'
+// :129:27: error: use of undefined value here causes illegal behavior
+// :129:27: note: when computing vector element at index '1'
+// :129:27: error: use of undefined value here causes illegal behavior
+// :129:27: note: when computing vector element at index '0'
+// :129:27: error: use of undefined value here causes illegal behavior
+// :129:27: note: when computing vector element at index '0'
+// :129:27: error: use of undefined value here causes illegal behavior
+// :129:27: note: when computing vector element at index '0'
+// :129:27: error: use of undefined value here causes illegal behavior
+// :129:27: error: use of undefined value here causes illegal behavior
+// :129:27: note: when computing vector element at index '0'
+// :129:27: error: use of undefined value here causes illegal behavior
+// :129:27: note: when computing vector element at index '0'
+// :129:27: error: use of undefined value here causes illegal behavior
+// :129:27: note: when computing vector element at index '0'
+// :129:27: error: use of undefined value here causes illegal behavior
+// :129:27: note: when computing vector element at index '1'
+// :129:27: error: use of undefined value here causes illegal behavior
+// :129:27: note: when computing vector element at index '0'
+// :129:27: error: use of undefined value here causes illegal behavior
+// :129:27: note: when computing vector element at index '0'
+// :129:27: error: use of undefined value here causes illegal behavior
+// :129:27: note: when computing vector element at index '0'
+// :129:27: error: use of undefined value here causes illegal behavior
+// :129:27: error: use of undefined value here causes illegal behavior
+// :129:27: note: when computing vector element at index '0'
+// :129:27: error: use of undefined value here causes illegal behavior
+// :129:27: note: when computing vector element at index '0'
+// :129:27: error: use of undefined value here causes illegal behavior
+// :129:27: note: when computing vector element at index '0'
+// :129:27: error: use of undefined value here causes illegal behavior
+// :129:27: note: when computing vector element at index '1'
+// :129:27: error: use of undefined value here causes illegal behavior
+// :129:27: note: when computing vector element at index '0'
+// :129:27: error: use of undefined value here causes illegal behavior
+// :129:27: note: when computing vector element at index '0'
+// :129:27: error: use of undefined value here causes illegal behavior
+// :129:27: note: when computing vector element at index '0'
+// :129:27: error: use of undefined value here causes illegal behavior
+// :129:27: error: use of undefined value here causes illegal behavior
+// :129:27: note: when computing vector element at index '0'
+// :129:27: error: use of undefined value here causes illegal behavior
+// :129:27: note: when computing vector element at index '0'
+// :129:27: error: use of undefined value here causes illegal behavior
+// :129:27: note: when computing vector element at index '0'
+// :129:27: error: use of undefined value here causes illegal behavior
+// :129:27: note: when computing vector element at index '1'
+// :129:27: error: use of undefined value here causes illegal behavior
+// :129:27: note: when computing vector element at index '0'
+// :129:27: error: use of undefined value here causes illegal behavior
+// :129:27: note: when computing vector element at index '0'
+// :129:27: error: use of undefined value here causes illegal behavior
+// :129:27: note: when computing vector element at index '0'
+// :129:27: error: use of undefined value here causes illegal behavior
+// :129:27: error: use of undefined value here causes illegal behavior
+// :129:27: note: when computing vector element at index '0'
+// :129:27: error: use of undefined value here causes illegal behavior
+// :129:27: note: when computing vector element at index '0'
+// :129:27: error: use of undefined value here causes illegal behavior
+// :129:27: note: when computing vector element at index '0'
+// :129:27: error: use of undefined value here causes illegal behavior
+// :129:27: note: when computing vector element at index '1'
+// :129:27: error: use of undefined value here causes illegal behavior
+// :129:27: note: when computing vector element at index '0'
+// :129:27: error: use of undefined value here causes illegal behavior
+// :129:27: note: when computing vector element at index '0'
+// :129:27: error: use of undefined value here causes illegal behavior
+// :129:27: note: when computing vector element at index '0'
+// :129:27: error: use of undefined value here causes illegal behavior
+// :129:27: error: use of undefined value here causes illegal behavior
+// :129:27: note: when computing vector element at index '0'
+// :129:27: error: use of undefined value here causes illegal behavior
+// :129:27: note: when computing vector element at index '0'
+// :129:27: error: use of undefined value here causes illegal behavior
+// :129:27: note: when computing vector element at index '0'
+// :129:27: error: use of undefined value here causes illegal behavior
+// :129:27: note: when computing vector element at index '1'
+// :129:27: error: use of undefined value here causes illegal behavior
+// :129:27: note: when computing vector element at index '0'
+// :129:27: error: use of undefined value here causes illegal behavior
+// :129:27: note: when computing vector element at index '0'
+// :129:27: error: use of undefined value here causes illegal behavior
+// :129:27: note: when computing vector element at index '0'
+// :129:27: error: use of undefined value here causes illegal behavior
+// :129:27: error: use of undefined value here causes illegal behavior
+// :129:27: note: when computing vector element at index '0'
+// :129:27: error: use of undefined value here causes illegal behavior
+// :129:27: note: when computing vector element at index '0'
+// :129:27: error: use of undefined value here causes illegal behavior
+// :129:27: note: when computing vector element at index '0'
+// :129:27: error: use of undefined value here causes illegal behavior
+// :129:27: note: when computing vector element at index '1'
+// :129:27: error: use of undefined value here causes illegal behavior
+// :129:27: note: when computing vector element at index '0'
+// :129:27: error: use of undefined value here causes illegal behavior
+// :129:27: note: when computing vector element at index '0'
+// :129:27: error: use of undefined value here causes illegal behavior
+// :129:27: note: when computing vector element at index '0'
+// :129:27: error: use of undefined value here causes illegal behavior
+// :129:27: error: use of undefined value here causes illegal behavior
+// :129:27: note: when computing vector element at index '0'
+// :129:27: error: use of undefined value here causes illegal behavior
+// :129:27: note: when computing vector element at index '0'
+// :129:27: error: use of undefined value here causes illegal behavior
+// :129:27: note: when computing vector element at index '0'
+// :129:27: error: use of undefined value here causes illegal behavior
+// :129:27: note: when computing vector element at index '1'
+// :129:27: error: use of undefined value here causes illegal behavior
+// :129:27: note: when computing vector element at index '0'
+// :129:27: error: use of undefined value here causes illegal behavior
+// :129:27: note: when computing vector element at index '0'
+// :129:27: error: use of undefined value here causes illegal behavior
+// :129:27: note: when computing vector element at index '0'
+// :129:27: error: use of undefined value here causes illegal behavior
+// :129:27: error: use of undefined value here causes illegal behavior
+// :129:27: note: when computing vector element at index '0'
+// :129:27: error: use of undefined value here causes illegal behavior
+// :129:27: note: when computing vector element at index '0'
+// :129:27: error: use of undefined value here causes illegal behavior
+// :129:27: note: when computing vector element at index '0'
+// :129:27: error: use of undefined value here causes illegal behavior
+// :129:27: note: when computing vector element at index '1'
+// :129:27: error: use of undefined value here causes illegal behavior
+// :129:27: note: when computing vector element at index '0'
+// :129:27: error: use of undefined value here causes illegal behavior
+// :129:27: note: when computing vector element at index '0'
+// :129:27: error: use of undefined value here causes illegal behavior
+// :129:27: note: when computing vector element at index '0'
+// :129:30: error: use of undefined value here causes illegal behavior
+// :129:30: error: use of undefined value here causes illegal behavior
+// :129:30: note: when computing vector element at index '0'
+// :129:30: error: use of undefined value here causes illegal behavior
+// :129:30: note: when computing vector element at index '0'
+// :129:30: error: use of undefined value here causes illegal behavior
+// :129:30: note: when computing vector element at index '1'
+// :129:30: error: use of undefined value here causes illegal behavior
+// :129:30: note: when computing vector element at index '0'
+// :129:30: error: use of undefined value here causes illegal behavior
+// :129:30: note: when computing vector element at index '0'
+// :129:30: error: use of undefined value here causes illegal behavior
+// :129:30: error: use of undefined value here causes illegal behavior
+// :129:30: note: when computing vector element at index '0'
+// :129:30: error: use of undefined value here causes illegal behavior
+// :129:30: note: when computing vector element at index '0'
+// :129:30: error: use of undefined value here causes illegal behavior
+// :129:30: note: when computing vector element at index '1'
+// :129:30: error: use of undefined value here causes illegal behavior
+// :129:30: note: when computing vector element at index '0'
+// :129:30: error: use of undefined value here causes illegal behavior
+// :129:30: note: when computing vector element at index '0'
+// :129:30: error: use of undefined value here causes illegal behavior
+// :129:30: error: use of undefined value here causes illegal behavior
+// :129:30: note: when computing vector element at index '0'
+// :129:30: error: use of undefined value here causes illegal behavior
+// :129:30: note: when computing vector element at index '0'
+// :129:30: error: use of undefined value here causes illegal behavior
+// :129:30: note: when computing vector element at index '1'
+// :129:30: error: use of undefined value here causes illegal behavior
+// :129:30: note: when computing vector element at index '0'
+// :129:30: error: use of undefined value here causes illegal behavior
+// :129:30: note: when computing vector element at index '0'
+// :129:30: error: use of undefined value here causes illegal behavior
+// :129:30: error: use of undefined value here causes illegal behavior
+// :129:30: note: when computing vector element at index '0'
+// :129:30: error: use of undefined value here causes illegal behavior
+// :129:30: note: when computing vector element at index '0'
+// :129:30: error: use of undefined value here causes illegal behavior
+// :129:30: note: when computing vector element at index '1'
+// :129:30: error: use of undefined value here causes illegal behavior
+// :129:30: note: when computing vector element at index '0'
+// :129:30: error: use of undefined value here causes illegal behavior
+// :129:30: note: when computing vector element at index '0'
+// :129:30: error: use of undefined value here causes illegal behavior
+// :129:30: error: use of undefined value here causes illegal behavior
+// :129:30: note: when computing vector element at index '0'
+// :129:30: error: use of undefined value here causes illegal behavior
+// :129:30: note: when computing vector element at index '0'
+// :129:30: error: use of undefined value here causes illegal behavior
+// :129:30: note: when computing vector element at index '1'
+// :129:30: error: use of undefined value here causes illegal behavior
+// :129:30: note: when computing vector element at index '0'
+// :129:30: error: use of undefined value here causes illegal behavior
+// :129:30: note: when computing vector element at index '0'
+// :129:30: error: use of undefined value here causes illegal behavior
+// :129:30: error: use of undefined value here causes illegal behavior
+// :129:30: note: when computing vector element at index '0'
+// :129:30: error: use of undefined value here causes illegal behavior
+// :129:30: note: when computing vector element at index '0'
+// :129:30: error: use of undefined value here causes illegal behavior
+// :129:30: note: when computing vector element at index '1'
+// :129:30: error: use of undefined value here causes illegal behavior
+// :129:30: note: when computing vector element at index '0'
+// :129:30: error: use of undefined value here causes illegal behavior
+// :129:30: note: when computing vector element at index '0'
+// :129:30: error: use of undefined value here causes illegal behavior
+// :129:30: error: use of undefined value here causes illegal behavior
+// :129:30: note: when computing vector element at index '0'
+// :129:30: error: use of undefined value here causes illegal behavior
+// :129:30: note: when computing vector element at index '0'
+// :129:30: error: use of undefined value here causes illegal behavior
+// :129:30: note: when computing vector element at index '1'
+// :129:30: error: use of undefined value here causes illegal behavior
+// :129:30: note: when computing vector element at index '0'
+// :129:30: error: use of undefined value here causes illegal behavior
+// :129:30: note: when computing vector element at index '0'
+// :129:30: error: use of undefined value here causes illegal behavior
+// :129:30: error: use of undefined value here causes illegal behavior
+// :129:30: note: when computing vector element at index '0'
+// :129:30: error: use of undefined value here causes illegal behavior
+// :129:30: note: when computing vector element at index '0'
+// :129:30: error: use of undefined value here causes illegal behavior
+// :129:30: note: when computing vector element at index '1'
+// :129:30: error: use of undefined value here causes illegal behavior
+// :129:30: note: when computing vector element at index '0'
+// :129:30: error: use of undefined value here causes illegal behavior
+// :129:30: note: when computing vector element at index '0'
+// :129:30: error: use of undefined value here causes illegal behavior
+// :129:30: error: use of undefined value here causes illegal behavior
+// :129:30: note: when computing vector element at index '0'
+// :129:30: error: use of undefined value here causes illegal behavior
+// :129:30: note: when computing vector element at index '0'
+// :129:30: error: use of undefined value here causes illegal behavior
+// :129:30: note: when computing vector element at index '1'
+// :129:30: error: use of undefined value here causes illegal behavior
+// :129:30: note: when computing vector element at index '0'
+// :129:30: error: use of undefined value here causes illegal behavior
+// :129:30: note: when computing vector element at index '0'
+// :129:30: error: use of undefined value here causes illegal behavior
+// :129:30: error: use of undefined value here causes illegal behavior
+// :129:30: note: when computing vector element at index '0'
+// :129:30: error: use of undefined value here causes illegal behavior
+// :129:30: note: when computing vector element at index '0'
+// :129:30: error: use of undefined value here causes illegal behavior
+// :129:30: note: when computing vector element at index '1'
+// :129:30: error: use of undefined value here causes illegal behavior
+// :129:30: note: when computing vector element at index '0'
+// :129:30: error: use of undefined value here causes illegal behavior
+// :129:30: note: when computing vector element at index '0'
+// :129:30: error: use of undefined value here causes illegal behavior
+// :129:30: error: use of undefined value here causes illegal behavior
+// :129:30: note: when computing vector element at index '0'
+// :129:30: error: use of undefined value here causes illegal behavior
+// :129:30: note: when computing vector element at index '0'
+// :129:30: error: use of undefined value here causes illegal behavior
+// :129:30: note: when computing vector element at index '1'
+// :129:30: error: use of undefined value here causes illegal behavior
+// :129:30: note: when computing vector element at index '0'
+// :129:30: error: use of undefined value here causes illegal behavior
+// :129:30: note: when computing vector element at index '0'
+// :133:27: error: use of undefined value here causes illegal behavior
+// :133:27: error: use of undefined value here causes illegal behavior
+// :133:27: note: when computing vector element at index '0'
+// :133:27: error: use of undefined value here causes illegal behavior
+// :133:27: note: when computing vector element at index '0'
+// :133:27: error: use of undefined value here causes illegal behavior
+// :133:27: note: when computing vector element at index '0'
+// :133:27: error: use of undefined value here causes illegal behavior
+// :133:27: note: when computing vector element at index '1'
+// :133:27: error: use of undefined value here causes illegal behavior
+// :133:27: note: when computing vector element at index '0'
+// :133:27: error: use of undefined value here causes illegal behavior
+// :133:27: note: when computing vector element at index '0'
+// :133:27: error: use of undefined value here causes illegal behavior
+// :133:27: note: when computing vector element at index '0'
+// :133:27: error: use of undefined value here causes illegal behavior
+// :133:27: error: use of undefined value here causes illegal behavior
+// :133:27: note: when computing vector element at index '0'
+// :133:27: error: use of undefined value here causes illegal behavior
+// :133:27: note: when computing vector element at index '0'
+// :133:27: error: use of undefined value here causes illegal behavior
+// :133:27: note: when computing vector element at index '0'
+// :133:27: error: use of undefined value here causes illegal behavior
+// :133:27: note: when computing vector element at index '1'
+// :133:27: error: use of undefined value here causes illegal behavior
+// :133:27: note: when computing vector element at index '0'
+// :133:27: error: use of undefined value here causes illegal behavior
+// :133:27: note: when computing vector element at index '0'
+// :133:27: error: use of undefined value here causes illegal behavior
+// :133:27: note: when computing vector element at index '0'
+// :133:27: error: use of undefined value here causes illegal behavior
+// :133:27: error: use of undefined value here causes illegal behavior
+// :133:27: note: when computing vector element at index '0'
+// :133:27: error: use of undefined value here causes illegal behavior
+// :133:27: note: when computing vector element at index '0'
+// :133:27: error: use of undefined value here causes illegal behavior
+// :133:27: note: when computing vector element at index '0'
+// :133:27: error: use of undefined value here causes illegal behavior
+// :133:27: note: when computing vector element at index '1'
+// :133:27: error: use of undefined value here causes illegal behavior
+// :133:27: note: when computing vector element at index '0'
+// :133:27: error: use of undefined value here causes illegal behavior
+// :133:27: note: when computing vector element at index '0'
+// :133:27: error: use of undefined value here causes illegal behavior
+// :133:27: note: when computing vector element at index '0'
+// :133:27: error: use of undefined value here causes illegal behavior
+// :133:27: error: use of undefined value here causes illegal behavior
+// :133:27: note: when computing vector element at index '0'
+// :133:27: error: use of undefined value here causes illegal behavior
+// :133:27: note: when computing vector element at index '0'
+// :133:27: error: use of undefined value here causes illegal behavior
+// :133:27: note: when computing vector element at index '0'
+// :133:27: error: use of undefined value here causes illegal behavior
+// :133:27: note: when computing vector element at index '1'
+// :133:27: error: use of undefined value here causes illegal behavior
+// :133:27: note: when computing vector element at index '0'
+// :133:27: error: use of undefined value here causes illegal behavior
+// :133:27: note: when computing vector element at index '0'
+// :133:27: error: use of undefined value here causes illegal behavior
+// :133:27: note: when computing vector element at index '0'
+// :133:27: error: use of undefined value here causes illegal behavior
+// :133:27: error: use of undefined value here causes illegal behavior
+// :133:27: note: when computing vector element at index '0'
+// :133:27: error: use of undefined value here causes illegal behavior
+// :133:27: note: when computing vector element at index '0'
+// :133:27: error: use of undefined value here causes illegal behavior
+// :133:27: note: when computing vector element at index '0'
+// :133:27: error: use of undefined value here causes illegal behavior
+// :133:27: note: when computing vector element at index '1'
+// :133:27: error: use of undefined value here causes illegal behavior
+// :133:27: note: when computing vector element at index '0'
+// :133:27: error: use of undefined value here causes illegal behavior
+// :133:27: note: when computing vector element at index '0'
+// :133:27: error: use of undefined value here causes illegal behavior
+// :133:27: note: when computing vector element at index '0'
+// :133:27: error: use of undefined value here causes illegal behavior
+// :133:27: error: use of undefined value here causes illegal behavior
+// :133:27: note: when computing vector element at index '0'
+// :133:27: error: use of undefined value here causes illegal behavior
+// :133:27: note: when computing vector element at index '0'
+// :133:27: error: use of undefined value here causes illegal behavior
+// :133:27: note: when computing vector element at index '0'
+// :133:27: error: use of undefined value here causes illegal behavior
+// :133:27: note: when computing vector element at index '1'
+// :133:27: error: use of undefined value here causes illegal behavior
+// :133:27: note: when computing vector element at index '0'
+// :133:27: error: use of undefined value here causes illegal behavior
+// :133:27: note: when computing vector element at index '0'
+// :133:27: error: use of undefined value here causes illegal behavior
+// :133:27: note: when computing vector element at index '0'
+// :133:27: error: use of undefined value here causes illegal behavior
+// :133:27: error: use of undefined value here causes illegal behavior
+// :133:27: note: when computing vector element at index '0'
+// :133:27: error: use of undefined value here causes illegal behavior
+// :133:27: note: when computing vector element at index '0'
+// :133:27: error: use of undefined value here causes illegal behavior
+// :133:27: note: when computing vector element at index '0'
+// :133:27: error: use of undefined value here causes illegal behavior
+// :133:27: note: when computing vector element at index '1'
+// :133:27: error: use of undefined value here causes illegal behavior
+// :133:27: note: when computing vector element at index '0'
+// :133:27: error: use of undefined value here causes illegal behavior
+// :133:27: note: when computing vector element at index '0'
+// :133:27: error: use of undefined value here causes illegal behavior
+// :133:27: note: when computing vector element at index '0'
+// :133:27: error: use of undefined value here causes illegal behavior
+// :133:27: error: use of undefined value here causes illegal behavior
+// :133:27: note: when computing vector element at index '0'
+// :133:27: error: use of undefined value here causes illegal behavior
+// :133:27: note: when computing vector element at index '0'
+// :133:27: error: use of undefined value here causes illegal behavior
+// :133:27: note: when computing vector element at index '0'
+// :133:27: error: use of undefined value here causes illegal behavior
+// :133:27: note: when computing vector element at index '1'
+// :133:27: error: use of undefined value here causes illegal behavior
+// :133:27: note: when computing vector element at index '0'
+// :133:27: error: use of undefined value here causes illegal behavior
+// :133:27: note: when computing vector element at index '0'
+// :133:27: error: use of undefined value here causes illegal behavior
+// :133:27: note: when computing vector element at index '0'
+// :133:27: error: use of undefined value here causes illegal behavior
+// :133:27: error: use of undefined value here causes illegal behavior
+// :133:27: note: when computing vector element at index '0'
+// :133:27: error: use of undefined value here causes illegal behavior
+// :133:27: note: when computing vector element at index '0'
+// :133:27: error: use of undefined value here causes illegal behavior
+// :133:27: note: when computing vector element at index '0'
+// :133:27: error: use of undefined value here causes illegal behavior
+// :133:27: note: when computing vector element at index '1'
+// :133:27: error: use of undefined value here causes illegal behavior
+// :133:27: note: when computing vector element at index '0'
+// :133:27: error: use of undefined value here causes illegal behavior
+// :133:27: note: when computing vector element at index '0'
+// :133:27: error: use of undefined value here causes illegal behavior
+// :133:27: note: when computing vector element at index '0'
+// :133:27: error: use of undefined value here causes illegal behavior
+// :133:27: error: use of undefined value here causes illegal behavior
+// :133:27: note: when computing vector element at index '0'
+// :133:27: error: use of undefined value here causes illegal behavior
+// :133:27: note: when computing vector element at index '0'
+// :133:27: error: use of undefined value here causes illegal behavior
+// :133:27: note: when computing vector element at index '0'
+// :133:27: error: use of undefined value here causes illegal behavior
+// :133:27: note: when computing vector element at index '1'
+// :133:27: error: use of undefined value here causes illegal behavior
+// :133:27: note: when computing vector element at index '0'
+// :133:27: error: use of undefined value here causes illegal behavior
+// :133:27: note: when computing vector element at index '0'
+// :133:27: error: use of undefined value here causes illegal behavior
+// :133:27: note: when computing vector element at index '0'
+// :133:27: error: use of undefined value here causes illegal behavior
+// :133:27: error: use of undefined value here causes illegal behavior
+// :133:27: note: when computing vector element at index '0'
+// :133:27: error: use of undefined value here causes illegal behavior
+// :133:27: note: when computing vector element at index '0'
+// :133:27: error: use of undefined value here causes illegal behavior
+// :133:27: note: when computing vector element at index '0'
+// :133:27: error: use of undefined value here causes illegal behavior
+// :133:27: note: when computing vector element at index '1'
+// :133:27: error: use of undefined value here causes illegal behavior
+// :133:27: note: when computing vector element at index '0'
+// :133:27: error: use of undefined value here causes illegal behavior
+// :133:27: note: when computing vector element at index '0'
+// :133:27: error: use of undefined value here causes illegal behavior
+// :133:27: note: when computing vector element at index '0'
+// :133:30: error: use of undefined value here causes illegal behavior
+// :133:30: error: use of undefined value here causes illegal behavior
+// :133:30: note: when computing vector element at index '0'
+// :133:30: error: use of undefined value here causes illegal behavior
+// :133:30: note: when computing vector element at index '0'
+// :133:30: error: use of undefined value here causes illegal behavior
+// :133:30: note: when computing vector element at index '1'
+// :133:30: error: use of undefined value here causes illegal behavior
+// :133:30: note: when computing vector element at index '0'
+// :133:30: error: use of undefined value here causes illegal behavior
+// :133:30: note: when computing vector element at index '0'
+// :133:30: error: use of undefined value here causes illegal behavior
+// :133:30: error: use of undefined value here causes illegal behavior
+// :133:30: note: when computing vector element at index '0'
+// :133:30: error: use of undefined value here causes illegal behavior
+// :133:30: note: when computing vector element at index '0'
+// :133:30: error: use of undefined value here causes illegal behavior
+// :133:30: note: when computing vector element at index '1'
+// :133:30: error: use of undefined value here causes illegal behavior
+// :133:30: note: when computing vector element at index '0'
+// :133:30: error: use of undefined value here causes illegal behavior
+// :133:30: note: when computing vector element at index '0'
+// :133:30: error: use of undefined value here causes illegal behavior
+// :133:30: error: use of undefined value here causes illegal behavior
+// :133:30: note: when computing vector element at index '0'
+// :133:30: error: use of undefined value here causes illegal behavior
+// :133:30: note: when computing vector element at index '0'
+// :133:30: error: use of undefined value here causes illegal behavior
+// :133:30: note: when computing vector element at index '1'
+// :133:30: error: use of undefined value here causes illegal behavior
+// :133:30: note: when computing vector element at index '0'
+// :133:30: error: use of undefined value here causes illegal behavior
+// :133:30: note: when computing vector element at index '0'
+// :133:30: error: use of undefined value here causes illegal behavior
+// :133:30: error: use of undefined value here causes illegal behavior
+// :133:30: note: when computing vector element at index '0'
+// :133:30: error: use of undefined value here causes illegal behavior
+// :133:30: note: when computing vector element at index '0'
+// :133:30: error: use of undefined value here causes illegal behavior
+// :133:30: note: when computing vector element at index '1'
+// :133:30: error: use of undefined value here causes illegal behavior
+// :133:30: note: when computing vector element at index '0'
+// :133:30: error: use of undefined value here causes illegal behavior
+// :133:30: note: when computing vector element at index '0'
+// :133:30: error: use of undefined value here causes illegal behavior
+// :133:30: error: use of undefined value here causes illegal behavior
+// :133:30: note: when computing vector element at index '0'
+// :133:30: error: use of undefined value here causes illegal behavior
+// :133:30: note: when computing vector element at index '0'
+// :133:30: error: use of undefined value here causes illegal behavior
+// :133:30: note: when computing vector element at index '1'
+// :133:30: error: use of undefined value here causes illegal behavior
+// :133:30: note: when computing vector element at index '0'
+// :133:30: error: use of undefined value here causes illegal behavior
+// :133:30: note: when computing vector element at index '0'
+// :133:30: error: use of undefined value here causes illegal behavior
+// :133:30: error: use of undefined value here causes illegal behavior
+// :133:30: note: when computing vector element at index '0'
+// :133:30: error: use of undefined value here causes illegal behavior
+// :133:30: note: when computing vector element at index '0'
+// :133:30: error: use of undefined value here causes illegal behavior
+// :133:30: note: when computing vector element at index '1'
+// :133:30: error: use of undefined value here causes illegal behavior
+// :133:30: note: when computing vector element at index '0'
+// :133:30: error: use of undefined value here causes illegal behavior
+// :133:30: note: when computing vector element at index '0'
+// :133:30: error: use of undefined value here causes illegal behavior
+// :133:30: error: use of undefined value here causes illegal behavior
+// :133:30: note: when computing vector element at index '0'
+// :133:30: error: use of undefined value here causes illegal behavior
+// :133:30: note: when computing vector element at index '0'
+// :133:30: error: use of undefined value here causes illegal behavior
+// :133:30: note: when computing vector element at index '1'
+// :133:30: error: use of undefined value here causes illegal behavior
+// :133:30: note: when computing vector element at index '0'
+// :133:30: error: use of undefined value here causes illegal behavior
+// :133:30: note: when computing vector element at index '0'
+// :133:30: error: use of undefined value here causes illegal behavior
+// :133:30: error: use of undefined value here causes illegal behavior
+// :133:30: note: when computing vector element at index '0'
+// :133:30: error: use of undefined value here causes illegal behavior
+// :133:30: note: when computing vector element at index '0'
+// :133:30: error: use of undefined value here causes illegal behavior
+// :133:30: note: when computing vector element at index '1'
+// :133:30: error: use of undefined value here causes illegal behavior
+// :133:30: note: when computing vector element at index '0'
+// :133:30: error: use of undefined value here causes illegal behavior
+// :133:30: note: when computing vector element at index '0'
+// :133:30: error: use of undefined value here causes illegal behavior
+// :133:30: error: use of undefined value here causes illegal behavior
+// :133:30: note: when computing vector element at index '0'
+// :133:30: error: use of undefined value here causes illegal behavior
+// :133:30: note: when computing vector element at index '0'
+// :133:30: error: use of undefined value here causes illegal behavior
+// :133:30: note: when computing vector element at index '1'
+// :133:30: error: use of undefined value here causes illegal behavior
+// :133:30: note: when computing vector element at index '0'
+// :133:30: error: use of undefined value here causes illegal behavior
+// :133:30: note: when computing vector element at index '0'
+// :133:30: error: use of undefined value here causes illegal behavior
+// :133:30: error: use of undefined value here causes illegal behavior
+// :133:30: note: when computing vector element at index '0'
+// :133:30: error: use of undefined value here causes illegal behavior
+// :133:30: note: when computing vector element at index '0'
+// :133:30: error: use of undefined value here causes illegal behavior
+// :133:30: note: when computing vector element at index '1'
+// :133:30: error: use of undefined value here causes illegal behavior
+// :133:30: note: when computing vector element at index '0'
+// :133:30: error: use of undefined value here causes illegal behavior
+// :133:30: note: when computing vector element at index '0'
+// :133:30: error: use of undefined value here causes illegal behavior
+// :133:30: error: use of undefined value here causes illegal behavior
+// :133:30: note: when computing vector element at index '0'
+// :133:30: error: use of undefined value here causes illegal behavior
+// :133:30: note: when computing vector element at index '0'
+// :133:30: error: use of undefined value here causes illegal behavior
+// :133:30: note: when computing vector element at index '1'
+// :133:30: error: use of undefined value here causes illegal behavior
+// :133:30: note: when computing vector element at index '0'
+// :133:30: error: use of undefined value here causes illegal behavior
+// :133:30: note: when computing vector element at index '0'
+// :137:17: error: use of undefined value here causes illegal behavior
+// :137:17: error: use of undefined value here causes illegal behavior
+// :137:17: note: when computing vector element at index '0'
+// :137:17: error: use of undefined value here causes illegal behavior
+// :137:17: note: when computing vector element at index '0'
+// :137:17: error: use of undefined value here causes illegal behavior
+// :137:17: note: when computing vector element at index '0'
+// :137:17: error: use of undefined value here causes illegal behavior
+// :137:17: note: when computing vector element at index '1'
+// :137:17: error: use of undefined value here causes illegal behavior
+// :137:17: note: when computing vector element at index '0'
+// :137:17: error: use of undefined value here causes illegal behavior
+// :137:17: note: when computing vector element at index '0'
+// :137:17: error: use of undefined value here causes illegal behavior
+// :137:17: note: when computing vector element at index '0'
+// :137:17: error: use of undefined value here causes illegal behavior
+// :137:17: error: use of undefined value here causes illegal behavior
+// :137:17: note: when computing vector element at index '0'
+// :137:17: error: use of undefined value here causes illegal behavior
+// :137:17: note: when computing vector element at index '0'
+// :137:17: error: use of undefined value here causes illegal behavior
+// :137:17: note: when computing vector element at index '0'
+// :137:17: error: use of undefined value here causes illegal behavior
+// :137:17: note: when computing vector element at index '1'
+// :137:17: error: use of undefined value here causes illegal behavior
+// :137:17: note: when computing vector element at index '0'
+// :137:17: error: use of undefined value here causes illegal behavior
+// :137:17: note: when computing vector element at index '0'
+// :137:17: error: use of undefined value here causes illegal behavior
+// :137:17: note: when computing vector element at index '0'
+// :137:17: error: use of undefined value here causes illegal behavior
+// :137:17: error: use of undefined value here causes illegal behavior
+// :137:17: note: when computing vector element at index '0'
+// :137:17: error: use of undefined value here causes illegal behavior
+// :137:17: note: when computing vector element at index '0'
+// :137:17: error: use of undefined value here causes illegal behavior
+// :137:17: note: when computing vector element at index '0'
+// :137:17: error: use of undefined value here causes illegal behavior
+// :137:17: note: when computing vector element at index '1'
+// :137:17: error: use of undefined value here causes illegal behavior
+// :137:17: note: when computing vector element at index '0'
+// :137:17: error: use of undefined value here causes illegal behavior
+// :137:17: note: when computing vector element at index '0'
+// :137:17: error: use of undefined value here causes illegal behavior
+// :137:17: note: when computing vector element at index '0'
+// :137:17: error: use of undefined value here causes illegal behavior
+// :137:17: error: use of undefined value here causes illegal behavior
+// :137:17: note: when computing vector element at index '0'
+// :137:17: error: use of undefined value here causes illegal behavior
+// :137:17: note: when computing vector element at index '0'
+// :137:17: error: use of undefined value here causes illegal behavior
+// :137:17: note: when computing vector element at index '0'
+// :137:17: error: use of undefined value here causes illegal behavior
+// :137:17: note: when computing vector element at index '1'
+// :137:17: error: use of undefined value here causes illegal behavior
+// :137:17: note: when computing vector element at index '0'
+// :137:17: error: use of undefined value here causes illegal behavior
+// :137:17: note: when computing vector element at index '0'
+// :137:17: error: use of undefined value here causes illegal behavior
+// :137:17: note: when computing vector element at index '0'
+// :137:17: error: use of undefined value here causes illegal behavior
+// :137:17: error: use of undefined value here causes illegal behavior
+// :137:17: note: when computing vector element at index '0'
+// :137:17: error: use of undefined value here causes illegal behavior
+// :137:17: note: when computing vector element at index '0'
+// :137:17: error: use of undefined value here causes illegal behavior
+// :137:17: note: when computing vector element at index '0'
+// :137:17: error: use of undefined value here causes illegal behavior
+// :137:17: note: when computing vector element at index '1'
+// :137:17: error: use of undefined value here causes illegal behavior
+// :137:17: note: when computing vector element at index '0'
+// :137:17: error: use of undefined value here causes illegal behavior
+// :137:17: note: when computing vector element at index '0'
+// :137:17: error: use of undefined value here causes illegal behavior
+// :137:17: note: when computing vector element at index '0'
+// :137:17: error: use of undefined value here causes illegal behavior
+// :137:17: error: use of undefined value here causes illegal behavior
+// :137:17: note: when computing vector element at index '0'
+// :137:17: error: use of undefined value here causes illegal behavior
+// :137:17: note: when computing vector element at index '0'
+// :137:17: error: use of undefined value here causes illegal behavior
+// :137:17: note: when computing vector element at index '0'
+// :137:17: error: use of undefined value here causes illegal behavior
+// :137:17: note: when computing vector element at index '1'
+// :137:17: error: use of undefined value here causes illegal behavior
+// :137:17: note: when computing vector element at index '0'
+// :137:17: error: use of undefined value here causes illegal behavior
+// :137:17: note: when computing vector element at index '0'
+// :137:17: error: use of undefined value here causes illegal behavior
+// :137:17: note: when computing vector element at index '0'
+// :137:17: error: use of undefined value here causes illegal behavior
+// :137:17: error: use of undefined value here causes illegal behavior
+// :137:17: note: when computing vector element at index '0'
+// :137:17: error: use of undefined value here causes illegal behavior
+// :137:17: note: when computing vector element at index '0'
+// :137:17: error: use of undefined value here causes illegal behavior
+// :137:17: note: when computing vector element at index '0'
+// :137:17: error: use of undefined value here causes illegal behavior
+// :137:17: note: when computing vector element at index '1'
+// :137:17: error: use of undefined value here causes illegal behavior
+// :137:17: note: when computing vector element at index '0'
+// :137:17: error: use of undefined value here causes illegal behavior
+// :137:17: note: when computing vector element at index '0'
+// :137:17: error: use of undefined value here causes illegal behavior
+// :137:17: note: when computing vector element at index '0'
+// :137:17: error: use of undefined value here causes illegal behavior
+// :137:17: error: use of undefined value here causes illegal behavior
+// :137:17: note: when computing vector element at index '0'
+// :137:17: error: use of undefined value here causes illegal behavior
+// :137:17: note: when computing vector element at index '0'
+// :137:17: error: use of undefined value here causes illegal behavior
+// :137:17: note: when computing vector element at index '0'
+// :137:17: error: use of undefined value here causes illegal behavior
+// :137:17: note: when computing vector element at index '1'
+// :137:17: error: use of undefined value here causes illegal behavior
+// :137:17: note: when computing vector element at index '0'
+// :137:17: error: use of undefined value here causes illegal behavior
+// :137:17: note: when computing vector element at index '0'
+// :137:17: error: use of undefined value here causes illegal behavior
+// :137:17: note: when computing vector element at index '0'
+// :137:17: error: use of undefined value here causes illegal behavior
+// :137:17: error: use of undefined value here causes illegal behavior
+// :137:17: note: when computing vector element at index '0'
+// :137:17: error: use of undefined value here causes illegal behavior
+// :137:17: note: when computing vector element at index '0'
+// :137:17: error: use of undefined value here causes illegal behavior
+// :137:17: note: when computing vector element at index '0'
+// :137:17: error: use of undefined value here causes illegal behavior
+// :137:17: note: when computing vector element at index '1'
+// :137:17: error: use of undefined value here causes illegal behavior
+// :137:17: note: when computing vector element at index '0'
+// :137:17: error: use of undefined value here causes illegal behavior
+// :137:17: note: when computing vector element at index '0'
+// :137:17: error: use of undefined value here causes illegal behavior
+// :137:17: note: when computing vector element at index '0'
+// :137:17: error: use of undefined value here causes illegal behavior
+// :137:17: error: use of undefined value here causes illegal behavior
+// :137:17: note: when computing vector element at index '0'
+// :137:17: error: use of undefined value here causes illegal behavior
+// :137:17: note: when computing vector element at index '0'
+// :137:17: error: use of undefined value here causes illegal behavior
+// :137:17: note: when computing vector element at index '0'
+// :137:17: error: use of undefined value here causes illegal behavior
+// :137:17: note: when computing vector element at index '1'
+// :137:17: error: use of undefined value here causes illegal behavior
+// :137:17: note: when computing vector element at index '0'
+// :137:17: error: use of undefined value here causes illegal behavior
+// :137:17: note: when computing vector element at index '0'
+// :137:17: error: use of undefined value here causes illegal behavior
+// :137:17: note: when computing vector element at index '0'
+// :137:17: error: use of undefined value here causes illegal behavior
+// :137:17: error: use of undefined value here causes illegal behavior
+// :137:17: note: when computing vector element at index '0'
+// :137:17: error: use of undefined value here causes illegal behavior
+// :137:17: note: when computing vector element at index '0'
+// :137:17: error: use of undefined value here causes illegal behavior
+// :137:17: note: when computing vector element at index '0'
+// :137:17: error: use of undefined value here causes illegal behavior
+// :137:17: note: when computing vector element at index '1'
+// :137:17: error: use of undefined value here causes illegal behavior
+// :137:17: note: when computing vector element at index '0'
+// :137:17: error: use of undefined value here causes illegal behavior
+// :137:17: note: when computing vector element at index '0'
+// :137:17: error: use of undefined value here causes illegal behavior
+// :137:17: note: when computing vector element at index '0'
+// :137:21: error: use of undefined value here causes illegal behavior
+// :137:21: error: use of undefined value here causes illegal behavior
+// :137:21: note: when computing vector element at index '0'
+// :137:21: error: use of undefined value here causes illegal behavior
+// :137:21: note: when computing vector element at index '0'
+// :137:21: error: use of undefined value here causes illegal behavior
+// :137:21: note: when computing vector element at index '1'
+// :137:21: error: use of undefined value here causes illegal behavior
+// :137:21: note: when computing vector element at index '0'
+// :137:21: error: use of undefined value here causes illegal behavior
+// :137:21: note: when computing vector element at index '0'
+// :137:21: error: use of undefined value here causes illegal behavior
+// :137:21: error: use of undefined value here causes illegal behavior
+// :137:21: note: when computing vector element at index '0'
+// :137:21: error: use of undefined value here causes illegal behavior
+// :137:21: note: when computing vector element at index '0'
+// :137:21: error: use of undefined value here causes illegal behavior
+// :137:21: note: when computing vector element at index '1'
+// :137:21: error: use of undefined value here causes illegal behavior
+// :137:21: note: when computing vector element at index '0'
+// :137:21: error: use of undefined value here causes illegal behavior
+// :137:21: note: when computing vector element at index '0'
+// :137:21: error: use of undefined value here causes illegal behavior
+// :137:21: error: use of undefined value here causes illegal behavior
+// :137:21: note: when computing vector element at index '0'
+// :137:21: error: use of undefined value here causes illegal behavior
+// :137:21: note: when computing vector element at index '0'
+// :137:21: error: use of undefined value here causes illegal behavior
+// :137:21: note: when computing vector element at index '1'
+// :137:21: error: use of undefined value here causes illegal behavior
+// :137:21: note: when computing vector element at index '0'
+// :137:21: error: use of undefined value here causes illegal behavior
+// :137:21: note: when computing vector element at index '0'
+// :137:21: error: use of undefined value here causes illegal behavior
+// :137:21: error: use of undefined value here causes illegal behavior
+// :137:21: note: when computing vector element at index '0'
+// :137:21: error: use of undefined value here causes illegal behavior
+// :137:21: note: when computing vector element at index '0'
+// :137:21: error: use of undefined value here causes illegal behavior
+// :137:21: note: when computing vector element at index '1'
+// :137:21: error: use of undefined value here causes illegal behavior
+// :137:21: note: when computing vector element at index '0'
+// :137:21: error: use of undefined value here causes illegal behavior
+// :137:21: note: when computing vector element at index '0'
+// :137:21: error: use of undefined value here causes illegal behavior
+// :137:21: error: use of undefined value here causes illegal behavior
+// :137:21: note: when computing vector element at index '0'
+// :137:21: error: use of undefined value here causes illegal behavior
+// :137:21: note: when computing vector element at index '0'
+// :137:21: error: use of undefined value here causes illegal behavior
+// :137:21: note: when computing vector element at index '1'
+// :137:21: error: use of undefined value here causes illegal behavior
+// :137:21: note: when computing vector element at index '0'
+// :137:21: error: use of undefined value here causes illegal behavior
+// :137:21: note: when computing vector element at index '0'
+// :137:21: error: use of undefined value here causes illegal behavior
+// :137:21: error: use of undefined value here causes illegal behavior
+// :137:21: note: when computing vector element at index '0'
+// :137:21: error: use of undefined value here causes illegal behavior
+// :137:21: note: when computing vector element at index '0'
+// :137:21: error: use of undefined value here causes illegal behavior
+// :137:21: note: when computing vector element at index '1'
+// :137:21: error: use of undefined value here causes illegal behavior
+// :137:21: note: when computing vector element at index '0'
+// :137:21: error: use of undefined value here causes illegal behavior
+// :137:21: note: when computing vector element at index '0'
+// :137:21: error: use of undefined value here causes illegal behavior
+// :137:21: error: use of undefined value here causes illegal behavior
+// :137:21: note: when computing vector element at index '0'
+// :137:21: error: use of undefined value here causes illegal behavior
+// :137:21: note: when computing vector element at index '0'
+// :137:21: error: use of undefined value here causes illegal behavior
+// :137:21: note: when computing vector element at index '1'
+// :137:21: error: use of undefined value here causes illegal behavior
+// :137:21: note: when computing vector element at index '0'
+// :137:21: error: use of undefined value here causes illegal behavior
+// :137:21: note: when computing vector element at index '0'
+// :137:21: error: use of undefined value here causes illegal behavior
+// :137:21: error: use of undefined value here causes illegal behavior
+// :137:21: note: when computing vector element at index '0'
+// :137:21: error: use of undefined value here causes illegal behavior
+// :137:21: note: when computing vector element at index '0'
+// :137:21: error: use of undefined value here causes illegal behavior
+// :137:21: note: when computing vector element at index '1'
+// :137:21: error: use of undefined value here causes illegal behavior
+// :137:21: note: when computing vector element at index '0'
+// :137:21: error: use of undefined value here causes illegal behavior
+// :137:21: note: when computing vector element at index '0'
+// :137:21: error: use of undefined value here causes illegal behavior
+// :137:21: error: use of undefined value here causes illegal behavior
+// :137:21: note: when computing vector element at index '0'
+// :137:21: error: use of undefined value here causes illegal behavior
+// :137:21: note: when computing vector element at index '0'
+// :137:21: error: use of undefined value here causes illegal behavior
+// :137:21: note: when computing vector element at index '1'
+// :137:21: error: use of undefined value here causes illegal behavior
+// :137:21: note: when computing vector element at index '0'
+// :137:21: error: use of undefined value here causes illegal behavior
+// :137:21: note: when computing vector element at index '0'
+// :137:21: error: use of undefined value here causes illegal behavior
+// :137:21: error: use of undefined value here causes illegal behavior
+// :137:21: note: when computing vector element at index '0'
+// :137:21: error: use of undefined value here causes illegal behavior
+// :137:21: note: when computing vector element at index '0'
+// :137:21: error: use of undefined value here causes illegal behavior
+// :137:21: note: when computing vector element at index '1'
+// :137:21: error: use of undefined value here causes illegal behavior
+// :137:21: note: when computing vector element at index '0'
+// :137:21: error: use of undefined value here causes illegal behavior
+// :137:21: note: when computing vector element at index '0'
+// :137:21: error: use of undefined value here causes illegal behavior
+// :137:21: error: use of undefined value here causes illegal behavior
+// :137:21: note: when computing vector element at index '0'
+// :137:21: error: use of undefined value here causes illegal behavior
+// :137:21: note: when computing vector element at index '0'
+// :137:21: error: use of undefined value here causes illegal behavior
+// :137:21: note: when computing vector element at index '1'
+// :137:21: error: use of undefined value here causes illegal behavior
+// :137:21: note: when computing vector element at index '0'
+// :137:21: error: use of undefined value here causes illegal behavior
+// :137:21: note: when computing vector element at index '0'
+// :141:22: error: use of undefined value here causes illegal behavior
+// :141:22: error: use of undefined value here causes illegal behavior
+// :141:22: note: when computing vector element at index '0'
+// :141:22: error: use of undefined value here causes illegal behavior
+// :141:22: note: when computing vector element at index '0'
+// :141:22: error: use of undefined value here causes illegal behavior
+// :141:22: note: when computing vector element at index '0'
+// :141:22: error: use of undefined value here causes illegal behavior
+// :141:22: note: when computing vector element at index '1'
+// :141:22: error: use of undefined value here causes illegal behavior
+// :141:22: note: when computing vector element at index '0'
+// :141:22: error: use of undefined value here causes illegal behavior
+// :141:22: note: when computing vector element at index '0'
+// :141:22: error: use of undefined value here causes illegal behavior
+// :141:22: note: when computing vector element at index '0'
+// :141:22: error: use of undefined value here causes illegal behavior
+// :141:22: error: use of undefined value here causes illegal behavior
+// :141:22: note: when computing vector element at index '0'
+// :141:22: error: use of undefined value here causes illegal behavior
+// :141:22: note: when computing vector element at index '0'
+// :141:22: error: use of undefined value here causes illegal behavior
+// :141:22: note: when computing vector element at index '0'
+// :141:22: error: use of undefined value here causes illegal behavior
+// :141:22: note: when computing vector element at index '1'
+// :141:22: error: use of undefined value here causes illegal behavior
+// :141:22: note: when computing vector element at index '0'
+// :141:22: error: use of undefined value here causes illegal behavior
+// :141:22: note: when computing vector element at index '0'
+// :141:22: error: use of undefined value here causes illegal behavior
+// :141:22: note: when computing vector element at index '0'
+// :141:22: error: use of undefined value here causes illegal behavior
+// :141:22: error: use of undefined value here causes illegal behavior
+// :141:22: note: when computing vector element at index '0'
+// :141:22: error: use of undefined value here causes illegal behavior
+// :141:22: note: when computing vector element at index '0'
+// :141:22: error: use of undefined value here causes illegal behavior
+// :141:22: note: when computing vector element at index '0'
+// :141:22: error: use of undefined value here causes illegal behavior
+// :141:22: note: when computing vector element at index '1'
+// :141:22: error: use of undefined value here causes illegal behavior
+// :141:22: note: when computing vector element at index '0'
+// :141:22: error: use of undefined value here causes illegal behavior
+// :141:22: note: when computing vector element at index '0'
+// :141:22: error: use of undefined value here causes illegal behavior
+// :141:22: note: when computing vector element at index '0'
+// :141:22: error: use of undefined value here causes illegal behavior
+// :141:22: error: use of undefined value here causes illegal behavior
+// :141:22: note: when computing vector element at index '0'
+// :141:22: error: use of undefined value here causes illegal behavior
+// :141:22: note: when computing vector element at index '0'
+// :141:22: error: use of undefined value here causes illegal behavior
+// :141:22: note: when computing vector element at index '0'
+// :141:22: error: use of undefined value here causes illegal behavior
+// :141:22: note: when computing vector element at index '1'
+// :141:22: error: use of undefined value here causes illegal behavior
+// :141:22: note: when computing vector element at index '0'
+// :141:22: error: use of undefined value here causes illegal behavior
+// :141:22: note: when computing vector element at index '0'
+// :141:22: error: use of undefined value here causes illegal behavior
+// :141:22: note: when computing vector element at index '0'
+// :141:22: error: use of undefined value here causes illegal behavior
+// :141:22: error: use of undefined value here causes illegal behavior
+// :141:22: note: when computing vector element at index '0'
+// :141:22: error: use of undefined value here causes illegal behavior
+// :141:22: note: when computing vector element at index '0'
+// :141:22: error: use of undefined value here causes illegal behavior
+// :141:22: note: when computing vector element at index '0'
+// :141:22: error: use of undefined value here causes illegal behavior
+// :141:22: note: when computing vector element at index '1'
+// :141:22: error: use of undefined value here causes illegal behavior
+// :141:22: note: when computing vector element at index '0'
+// :141:22: error: use of undefined value here causes illegal behavior
+// :141:22: note: when computing vector element at index '0'
+// :141:22: error: use of undefined value here causes illegal behavior
+// :141:22: note: when computing vector element at index '0'
+// :141:22: error: use of undefined value here causes illegal behavior
+// :141:22: error: use of undefined value here causes illegal behavior
+// :141:22: note: when computing vector element at index '0'
+// :141:22: error: use of undefined value here causes illegal behavior
+// :141:22: note: when computing vector element at index '0'
+// :141:22: error: use of undefined value here causes illegal behavior
+// :141:22: note: when computing vector element at index '0'
+// :141:22: error: use of undefined value here causes illegal behavior
+// :141:22: note: when computing vector element at index '1'
+// :141:22: error: use of undefined value here causes illegal behavior
+// :141:22: note: when computing vector element at index '0'
+// :141:22: error: use of undefined value here causes illegal behavior
+// :141:22: note: when computing vector element at index '0'
+// :141:22: error: use of undefined value here causes illegal behavior
+// :141:22: note: when computing vector element at index '0'
+// :141:22: error: use of undefined value here causes illegal behavior
+// :141:22: error: use of undefined value here causes illegal behavior
+// :141:22: note: when computing vector element at index '0'
+// :141:22: error: use of undefined value here causes illegal behavior
+// :141:22: note: when computing vector element at index '0'
+// :141:22: error: use of undefined value here causes illegal behavior
+// :141:22: note: when computing vector element at index '0'
+// :141:22: error: use of undefined value here causes illegal behavior
+// :141:22: note: when computing vector element at index '1'
+// :141:22: error: use of undefined value here causes illegal behavior
+// :141:22: note: when computing vector element at index '0'
+// :141:22: error: use of undefined value here causes illegal behavior
+// :141:22: note: when computing vector element at index '0'
+// :141:22: error: use of undefined value here causes illegal behavior
+// :141:22: note: when computing vector element at index '0'
+// :141:22: error: use of undefined value here causes illegal behavior
+// :141:22: error: use of undefined value here causes illegal behavior
+// :141:22: note: when computing vector element at index '0'
+// :141:22: error: use of undefined value here causes illegal behavior
+// :141:22: note: when computing vector element at index '0'
+// :141:22: error: use of undefined value here causes illegal behavior
+// :141:22: note: when computing vector element at index '0'
+// :141:22: error: use of undefined value here causes illegal behavior
+// :141:22: note: when computing vector element at index '1'
+// :141:22: error: use of undefined value here causes illegal behavior
+// :141:22: note: when computing vector element at index '0'
+// :141:22: error: use of undefined value here causes illegal behavior
+// :141:22: note: when computing vector element at index '0'
+// :141:22: error: use of undefined value here causes illegal behavior
+// :141:22: note: when computing vector element at index '0'
+// :141:22: error: use of undefined value here causes illegal behavior
+// :141:22: error: use of undefined value here causes illegal behavior
+// :141:22: note: when computing vector element at index '0'
+// :141:22: error: use of undefined value here causes illegal behavior
+// :141:22: note: when computing vector element at index '0'
+// :141:22: error: use of undefined value here causes illegal behavior
+// :141:22: note: when computing vector element at index '0'
+// :141:22: error: use of undefined value here causes illegal behavior
+// :141:22: note: when computing vector element at index '1'
+// :141:22: error: use of undefined value here causes illegal behavior
+// :141:22: note: when computing vector element at index '0'
+// :141:22: error: use of undefined value here causes illegal behavior
+// :141:22: note: when computing vector element at index '0'
+// :141:22: error: use of undefined value here causes illegal behavior
+// :141:22: note: when computing vector element at index '0'
+// :141:22: error: use of undefined value here causes illegal behavior
+// :141:22: error: use of undefined value here causes illegal behavior
+// :141:22: note: when computing vector element at index '0'
+// :141:22: error: use of undefined value here causes illegal behavior
+// :141:22: note: when computing vector element at index '0'
+// :141:22: error: use of undefined value here causes illegal behavior
+// :141:22: note: when computing vector element at index '0'
+// :141:22: error: use of undefined value here causes illegal behavior
+// :141:22: note: when computing vector element at index '1'
+// :141:22: error: use of undefined value here causes illegal behavior
+// :141:22: note: when computing vector element at index '0'
+// :141:22: error: use of undefined value here causes illegal behavior
+// :141:22: note: when computing vector element at index '0'
+// :141:22: error: use of undefined value here causes illegal behavior
+// :141:22: note: when computing vector element at index '0'
+// :141:22: error: use of undefined value here causes illegal behavior
+// :141:22: error: use of undefined value here causes illegal behavior
+// :141:22: note: when computing vector element at index '0'
+// :141:22: error: use of undefined value here causes illegal behavior
+// :141:22: note: when computing vector element at index '0'
+// :141:22: error: use of undefined value here causes illegal behavior
+// :141:22: note: when computing vector element at index '0'
+// :141:22: error: use of undefined value here causes illegal behavior
+// :141:22: note: when computing vector element at index '1'
+// :141:22: error: use of undefined value here causes illegal behavior
+// :141:22: note: when computing vector element at index '0'
+// :141:22: error: use of undefined value here causes illegal behavior
+// :141:22: note: when computing vector element at index '0'
+// :141:22: error: use of undefined value here causes illegal behavior
+// :141:22: note: when computing vector element at index '0'
+// :141:25: error: use of undefined value here causes illegal behavior
+// :141:25: error: use of undefined value here causes illegal behavior
+// :141:25: note: when computing vector element at index '0'
+// :141:25: error: use of undefined value here causes illegal behavior
+// :141:25: note: when computing vector element at index '0'
+// :141:25: error: use of undefined value here causes illegal behavior
+// :141:25: note: when computing vector element at index '1'
+// :141:25: error: use of undefined value here causes illegal behavior
+// :141:25: note: when computing vector element at index '0'
+// :141:25: error: use of undefined value here causes illegal behavior
+// :141:25: note: when computing vector element at index '0'
+// :141:25: error: use of undefined value here causes illegal behavior
+// :141:25: error: use of undefined value here causes illegal behavior
+// :141:25: note: when computing vector element at index '0'
+// :141:25: error: use of undefined value here causes illegal behavior
+// :141:25: note: when computing vector element at index '0'
+// :141:25: error: use of undefined value here causes illegal behavior
+// :141:25: note: when computing vector element at index '1'
+// :141:25: error: use of undefined value here causes illegal behavior
+// :141:25: note: when computing vector element at index '0'
+// :141:25: error: use of undefined value here causes illegal behavior
+// :141:25: note: when computing vector element at index '0'
+// :141:25: error: use of undefined value here causes illegal behavior
+// :141:25: error: use of undefined value here causes illegal behavior
+// :141:25: note: when computing vector element at index '0'
+// :141:25: error: use of undefined value here causes illegal behavior
+// :141:25: note: when computing vector element at index '0'
+// :141:25: error: use of undefined value here causes illegal behavior
+// :141:25: note: when computing vector element at index '1'
+// :141:25: error: use of undefined value here causes illegal behavior
+// :141:25: note: when computing vector element at index '0'
+// :141:25: error: use of undefined value here causes illegal behavior
+// :141:25: note: when computing vector element at index '0'
+// :141:25: error: use of undefined value here causes illegal behavior
+// :141:25: error: use of undefined value here causes illegal behavior
+// :141:25: note: when computing vector element at index '0'
+// :141:25: error: use of undefined value here causes illegal behavior
+// :141:25: note: when computing vector element at index '0'
+// :141:25: error: use of undefined value here causes illegal behavior
+// :141:25: note: when computing vector element at index '1'
+// :141:25: error: use of undefined value here causes illegal behavior
+// :141:25: note: when computing vector element at index '0'
+// :141:25: error: use of undefined value here causes illegal behavior
+// :141:25: note: when computing vector element at index '0'
+// :141:25: error: use of undefined value here causes illegal behavior
+// :141:25: error: use of undefined value here causes illegal behavior
+// :141:25: note: when computing vector element at index '0'
+// :141:25: error: use of undefined value here causes illegal behavior
+// :141:25: note: when computing vector element at index '0'
+// :141:25: error: use of undefined value here causes illegal behavior
+// :141:25: note: when computing vector element at index '1'
+// :141:25: error: use of undefined value here causes illegal behavior
+// :141:25: note: when computing vector element at index '0'
+// :141:25: error: use of undefined value here causes illegal behavior
+// :141:25: note: when computing vector element at index '0'
+// :141:25: error: use of undefined value here causes illegal behavior
+// :141:25: error: use of undefined value here causes illegal behavior
+// :141:25: note: when computing vector element at index '0'
+// :141:25: error: use of undefined value here causes illegal behavior
+// :141:25: note: when computing vector element at index '0'
+// :141:25: error: use of undefined value here causes illegal behavior
+// :141:25: note: when computing vector element at index '1'
+// :141:25: error: use of undefined value here causes illegal behavior
+// :141:25: note: when computing vector element at index '0'
+// :141:25: error: use of undefined value here causes illegal behavior
+// :141:25: note: when computing vector element at index '0'
+// :141:25: error: use of undefined value here causes illegal behavior
+// :141:25: error: use of undefined value here causes illegal behavior
+// :141:25: note: when computing vector element at index '0'
+// :141:25: error: use of undefined value here causes illegal behavior
+// :141:25: note: when computing vector element at index '0'
+// :141:25: error: use of undefined value here causes illegal behavior
+// :141:25: note: when computing vector element at index '1'
+// :141:25: error: use of undefined value here causes illegal behavior
+// :141:25: note: when computing vector element at index '0'
+// :141:25: error: use of undefined value here causes illegal behavior
+// :141:25: note: when computing vector element at index '0'
+// :141:25: error: use of undefined value here causes illegal behavior
+// :141:25: error: use of undefined value here causes illegal behavior
+// :141:25: note: when computing vector element at index '0'
+// :141:25: error: use of undefined value here causes illegal behavior
+// :141:25: note: when computing vector element at index '0'
+// :141:25: error: use of undefined value here causes illegal behavior
+// :141:25: note: when computing vector element at index '1'
+// :141:25: error: use of undefined value here causes illegal behavior
+// :141:25: note: when computing vector element at index '0'
+// :141:25: error: use of undefined value here causes illegal behavior
+// :141:25: note: when computing vector element at index '0'
+// :141:25: error: use of undefined value here causes illegal behavior
+// :141:25: error: use of undefined value here causes illegal behavior
+// :141:25: note: when computing vector element at index '0'
+// :141:25: error: use of undefined value here causes illegal behavior
+// :141:25: note: when computing vector element at index '0'
+// :141:25: error: use of undefined value here causes illegal behavior
+// :141:25: note: when computing vector element at index '1'
+// :141:25: error: use of undefined value here causes illegal behavior
+// :141:25: note: when computing vector element at index '0'
+// :141:25: error: use of undefined value here causes illegal behavior
+// :141:25: note: when computing vector element at index '0'
+// :141:25: error: use of undefined value here causes illegal behavior
+// :141:25: error: use of undefined value here causes illegal behavior
+// :141:25: note: when computing vector element at index '0'
+// :141:25: error: use of undefined value here causes illegal behavior
+// :141:25: note: when computing vector element at index '0'
+// :141:25: error: use of undefined value here causes illegal behavior
+// :141:25: note: when computing vector element at index '1'
+// :141:25: error: use of undefined value here causes illegal behavior
+// :141:25: note: when computing vector element at index '0'
+// :141:25: error: use of undefined value here causes illegal behavior
+// :141:25: note: when computing vector element at index '0'
+// :141:25: error: use of undefined value here causes illegal behavior
+// :141:25: error: use of undefined value here causes illegal behavior
+// :141:25: note: when computing vector element at index '0'
+// :141:25: error: use of undefined value here causes illegal behavior
+// :141:25: note: when computing vector element at index '0'
+// :141:25: error: use of undefined value here causes illegal behavior
+// :141:25: note: when computing vector element at index '1'
+// :141:25: error: use of undefined value here causes illegal behavior
+// :141:25: note: when computing vector element at index '0'
+// :141:25: error: use of undefined value here causes illegal behavior
+// :141:25: note: when computing vector element at index '0'
+// :145:22: error: use of undefined value here causes illegal behavior
+// :145:22: error: use of undefined value here causes illegal behavior
+// :145:22: note: when computing vector element at index '0'
+// :145:22: error: use of undefined value here causes illegal behavior
+// :145:22: note: when computing vector element at index '0'
+// :145:22: error: use of undefined value here causes illegal behavior
+// :145:22: note: when computing vector element at index '0'
+// :145:22: error: use of undefined value here causes illegal behavior
+// :145:22: note: when computing vector element at index '1'
+// :145:22: error: use of undefined value here causes illegal behavior
+// :145:22: note: when computing vector element at index '0'
+// :145:22: error: use of undefined value here causes illegal behavior
+// :145:22: note: when computing vector element at index '0'
+// :145:22: error: use of undefined value here causes illegal behavior
+// :145:22: note: when computing vector element at index '0'
+// :145:22: error: use of undefined value here causes illegal behavior
+// :145:22: error: use of undefined value here causes illegal behavior
+// :145:22: note: when computing vector element at index '0'
+// :145:22: error: use of undefined value here causes illegal behavior
+// :145:22: note: when computing vector element at index '0'
+// :145:22: error: use of undefined value here causes illegal behavior
+// :145:22: note: when computing vector element at index '0'
+// :145:22: error: use of undefined value here causes illegal behavior
+// :145:22: note: when computing vector element at index '1'
+// :145:22: error: use of undefined value here causes illegal behavior
+// :145:22: note: when computing vector element at index '0'
+// :145:22: error: use of undefined value here causes illegal behavior
+// :145:22: note: when computing vector element at index '0'
+// :145:22: error: use of undefined value here causes illegal behavior
+// :145:22: note: when computing vector element at index '0'
+// :145:22: error: use of undefined value here causes illegal behavior
+// :145:22: error: use of undefined value here causes illegal behavior
+// :145:22: note: when computing vector element at index '0'
+// :145:22: error: use of undefined value here causes illegal behavior
+// :145:22: note: when computing vector element at index '0'
+// :145:22: error: use of undefined value here causes illegal behavior
+// :145:22: note: when computing vector element at index '0'
+// :145:22: error: use of undefined value here causes illegal behavior
+// :145:22: note: when computing vector element at index '1'
+// :145:22: error: use of undefined value here causes illegal behavior
+// :145:22: note: when computing vector element at index '0'
+// :145:22: error: use of undefined value here causes illegal behavior
+// :145:22: note: when computing vector element at index '0'
+// :145:22: error: use of undefined value here causes illegal behavior
+// :145:22: note: when computing vector element at index '0'
+// :145:22: error: use of undefined value here causes illegal behavior
+// :145:22: error: use of undefined value here causes illegal behavior
+// :145:22: note: when computing vector element at index '0'
+// :145:22: error: use of undefined value here causes illegal behavior
+// :145:22: note: when computing vector element at index '0'
+// :145:22: error: use of undefined value here causes illegal behavior
+// :145:22: note: when computing vector element at index '0'
+// :145:22: error: use of undefined value here causes illegal behavior
+// :145:22: note: when computing vector element at index '1'
+// :145:22: error: use of undefined value here causes illegal behavior
+// :145:22: note: when computing vector element at index '0'
+// :145:22: error: use of undefined value here causes illegal behavior
+// :145:22: note: when computing vector element at index '0'
+// :145:22: error: use of undefined value here causes illegal behavior
+// :145:22: note: when computing vector element at index '0'
+// :145:22: error: use of undefined value here causes illegal behavior
+// :145:22: error: use of undefined value here causes illegal behavior
+// :145:22: note: when computing vector element at index '0'
+// :145:22: error: use of undefined value here causes illegal behavior
+// :145:22: note: when computing vector element at index '0'
+// :145:22: error: use of undefined value here causes illegal behavior
+// :145:22: note: when computing vector element at index '0'
+// :145:22: error: use of undefined value here causes illegal behavior
+// :145:22: note: when computing vector element at index '1'
+// :145:22: error: use of undefined value here causes illegal behavior
+// :145:22: note: when computing vector element at index '0'
+// :145:22: error: use of undefined value here causes illegal behavior
+// :145:22: note: when computing vector element at index '0'
+// :145:22: error: use of undefined value here causes illegal behavior
+// :145:22: note: when computing vector element at index '0'
+// :145:22: error: use of undefined value here causes illegal behavior
+// :145:22: error: use of undefined value here causes illegal behavior
+// :145:22: note: when computing vector element at index '0'
+// :145:22: error: use of undefined value here causes illegal behavior
+// :145:22: note: when computing vector element at index '0'
+// :145:22: error: use of undefined value here causes illegal behavior
+// :145:22: note: when computing vector element at index '0'
+// :145:22: error: use of undefined value here causes illegal behavior
+// :145:22: note: when computing vector element at index '1'
+// :145:22: error: use of undefined value here causes illegal behavior
+// :145:22: note: when computing vector element at index '0'
+// :145:22: error: use of undefined value here causes illegal behavior
+// :145:22: note: when computing vector element at index '0'
+// :145:22: error: use of undefined value here causes illegal behavior
+// :145:22: note: when computing vector element at index '0'
+// :145:22: error: use of undefined value here causes illegal behavior
+// :145:22: error: use of undefined value here causes illegal behavior
+// :145:22: note: when computing vector element at index '0'
+// :145:22: error: use of undefined value here causes illegal behavior
+// :145:22: note: when computing vector element at index '0'
+// :145:22: error: use of undefined value here causes illegal behavior
+// :145:22: note: when computing vector element at index '0'
+// :145:22: error: use of undefined value here causes illegal behavior
+// :145:22: note: when computing vector element at index '1'
+// :145:22: error: use of undefined value here causes illegal behavior
+// :145:22: note: when computing vector element at index '0'
+// :145:22: error: use of undefined value here causes illegal behavior
+// :145:22: note: when computing vector element at index '0'
+// :145:22: error: use of undefined value here causes illegal behavior
+// :145:22: note: when computing vector element at index '0'
+// :145:22: error: use of undefined value here causes illegal behavior
+// :145:22: error: use of undefined value here causes illegal behavior
+// :145:22: note: when computing vector element at index '0'
+// :145:22: error: use of undefined value here causes illegal behavior
+// :145:22: note: when computing vector element at index '0'
+// :145:22: error: use of undefined value here causes illegal behavior
+// :145:22: note: when computing vector element at index '0'
+// :145:22: error: use of undefined value here causes illegal behavior
+// :145:22: note: when computing vector element at index '1'
+// :145:22: error: use of undefined value here causes illegal behavior
+// :145:22: note: when computing vector element at index '0'
+// :145:22: error: use of undefined value here causes illegal behavior
+// :145:22: note: when computing vector element at index '0'
+// :145:22: error: use of undefined value here causes illegal behavior
+// :145:22: note: when computing vector element at index '0'
+// :145:22: error: use of undefined value here causes illegal behavior
+// :145:22: error: use of undefined value here causes illegal behavior
+// :145:22: note: when computing vector element at index '0'
+// :145:22: error: use of undefined value here causes illegal behavior
+// :145:22: note: when computing vector element at index '0'
+// :145:22: error: use of undefined value here causes illegal behavior
+// :145:22: note: when computing vector element at index '0'
+// :145:22: error: use of undefined value here causes illegal behavior
+// :145:22: note: when computing vector element at index '1'
+// :145:22: error: use of undefined value here causes illegal behavior
+// :145:22: note: when computing vector element at index '0'
+// :145:22: error: use of undefined value here causes illegal behavior
+// :145:22: note: when computing vector element at index '0'
+// :145:22: error: use of undefined value here causes illegal behavior
+// :145:22: note: when computing vector element at index '0'
+// :145:22: error: use of undefined value here causes illegal behavior
+// :145:22: error: use of undefined value here causes illegal behavior
+// :145:22: note: when computing vector element at index '0'
+// :145:22: error: use of undefined value here causes illegal behavior
+// :145:22: note: when computing vector element at index '0'
+// :145:22: error: use of undefined value here causes illegal behavior
+// :145:22: note: when computing vector element at index '0'
+// :145:22: error: use of undefined value here causes illegal behavior
+// :145:22: note: when computing vector element at index '1'
+// :145:22: error: use of undefined value here causes illegal behavior
+// :145:22: note: when computing vector element at index '0'
+// :145:22: error: use of undefined value here causes illegal behavior
+// :145:22: note: when computing vector element at index '0'
+// :145:22: error: use of undefined value here causes illegal behavior
+// :145:22: note: when computing vector element at index '0'
+// :145:22: error: use of undefined value here causes illegal behavior
+// :145:22: error: use of undefined value here causes illegal behavior
+// :145:22: note: when computing vector element at index '0'
+// :145:22: error: use of undefined value here causes illegal behavior
+// :145:22: note: when computing vector element at index '0'
+// :145:22: error: use of undefined value here causes illegal behavior
+// :145:22: note: when computing vector element at index '0'
+// :145:22: error: use of undefined value here causes illegal behavior
+// :145:22: note: when computing vector element at index '1'
+// :145:22: error: use of undefined value here causes illegal behavior
+// :145:22: note: when computing vector element at index '0'
+// :145:22: error: use of undefined value here causes illegal behavior
+// :145:22: note: when computing vector element at index '0'
+// :145:22: error: use of undefined value here causes illegal behavior
+// :145:22: note: when computing vector element at index '0'
+// :145:25: error: use of undefined value here causes illegal behavior
+// :145:25: error: use of undefined value here causes illegal behavior
+// :145:25: note: when computing vector element at index '0'
+// :145:25: error: use of undefined value here causes illegal behavior
+// :145:25: note: when computing vector element at index '0'
+// :145:25: error: use of undefined value here causes illegal behavior
+// :145:25: note: when computing vector element at index '1'
+// :145:25: error: use of undefined value here causes illegal behavior
+// :145:25: note: when computing vector element at index '0'
+// :145:25: error: use of undefined value here causes illegal behavior
+// :145:25: note: when computing vector element at index '0'
+// :145:25: error: use of undefined value here causes illegal behavior
+// :145:25: error: use of undefined value here causes illegal behavior
+// :145:25: note: when computing vector element at index '0'
+// :145:25: error: use of undefined value here causes illegal behavior
+// :145:25: note: when computing vector element at index '0'
+// :145:25: error: use of undefined value here causes illegal behavior
+// :145:25: note: when computing vector element at index '1'
+// :145:25: error: use of undefined value here causes illegal behavior
+// :145:25: note: when computing vector element at index '0'
+// :145:25: error: use of undefined value here causes illegal behavior
+// :145:25: note: when computing vector element at index '0'
+// :145:25: error: use of undefined value here causes illegal behavior
+// :145:25: error: use of undefined value here causes illegal behavior
+// :145:25: note: when computing vector element at index '0'
+// :145:25: error: use of undefined value here causes illegal behavior
+// :145:25: note: when computing vector element at index '0'
+// :145:25: error: use of undefined value here causes illegal behavior
+// :145:25: note: when computing vector element at index '1'
+// :145:25: error: use of undefined value here causes illegal behavior
+// :145:25: note: when computing vector element at index '0'
+// :145:25: error: use of undefined value here causes illegal behavior
+// :145:25: note: when computing vector element at index '0'
+// :145:25: error: use of undefined value here causes illegal behavior
+// :145:25: error: use of undefined value here causes illegal behavior
+// :145:25: note: when computing vector element at index '0'
+// :145:25: error: use of undefined value here causes illegal behavior
+// :145:25: note: when computing vector element at index '0'
+// :145:25: error: use of undefined value here causes illegal behavior
+// :145:25: note: when computing vector element at index '1'
+// :145:25: error: use of undefined value here causes illegal behavior
+// :145:25: note: when computing vector element at index '0'
+// :145:25: error: use of undefined value here causes illegal behavior
+// :145:25: note: when computing vector element at index '0'
+// :145:25: error: use of undefined value here causes illegal behavior
+// :145:25: error: use of undefined value here causes illegal behavior
+// :145:25: note: when computing vector element at index '0'
+// :145:25: error: use of undefined value here causes illegal behavior
+// :145:25: note: when computing vector element at index '0'
+// :145:25: error: use of undefined value here causes illegal behavior
+// :145:25: note: when computing vector element at index '1'
+// :145:25: error: use of undefined value here causes illegal behavior
+// :145:25: note: when computing vector element at index '0'
+// :145:25: error: use of undefined value here causes illegal behavior
+// :145:25: note: when computing vector element at index '0'
+// :145:25: error: use of undefined value here causes illegal behavior
+// :145:25: error: use of undefined value here causes illegal behavior
+// :145:25: note: when computing vector element at index '0'
+// :145:25: error: use of undefined value here causes illegal behavior
+// :145:25: note: when computing vector element at index '0'
+// :145:25: error: use of undefined value here causes illegal behavior
+// :145:25: note: when computing vector element at index '1'
+// :145:25: error: use of undefined value here causes illegal behavior
+// :145:25: note: when computing vector element at index '0'
+// :145:25: error: use of undefined value here causes illegal behavior
+// :145:25: note: when computing vector element at index '0'
+// :145:25: error: use of undefined value here causes illegal behavior
+// :145:25: error: use of undefined value here causes illegal behavior
+// :145:25: note: when computing vector element at index '0'
+// :145:25: error: use of undefined value here causes illegal behavior
+// :145:25: note: when computing vector element at index '0'
+// :145:25: error: use of undefined value here causes illegal behavior
+// :145:25: note: when computing vector element at index '1'
+// :145:25: error: use of undefined value here causes illegal behavior
+// :145:25: note: when computing vector element at index '0'
+// :145:25: error: use of undefined value here causes illegal behavior
+// :145:25: note: when computing vector element at index '0'
+// :145:25: error: use of undefined value here causes illegal behavior
+// :145:25: error: use of undefined value here causes illegal behavior
+// :145:25: note: when computing vector element at index '0'
+// :145:25: error: use of undefined value here causes illegal behavior
+// :145:25: note: when computing vector element at index '0'
+// :145:25: error: use of undefined value here causes illegal behavior
+// :145:25: note: when computing vector element at index '1'
+// :145:25: error: use of undefined value here causes illegal behavior
+// :145:25: note: when computing vector element at index '0'
+// :145:25: error: use of undefined value here causes illegal behavior
+// :145:25: note: when computing vector element at index '0'
+// :145:25: error: use of undefined value here causes illegal behavior
+// :145:25: error: use of undefined value here causes illegal behavior
+// :145:25: note: when computing vector element at index '0'
+// :145:25: error: use of undefined value here causes illegal behavior
+// :145:25: note: when computing vector element at index '0'
+// :145:25: error: use of undefined value here causes illegal behavior
+// :145:25: note: when computing vector element at index '1'
+// :145:25: error: use of undefined value here causes illegal behavior
+// :145:25: note: when computing vector element at index '0'
+// :145:25: error: use of undefined value here causes illegal behavior
+// :145:25: note: when computing vector element at index '0'
+// :145:25: error: use of undefined value here causes illegal behavior
+// :145:25: error: use of undefined value here causes illegal behavior
+// :145:25: note: when computing vector element at index '0'
+// :145:25: error: use of undefined value here causes illegal behavior
+// :145:25: note: when computing vector element at index '0'
+// :145:25: error: use of undefined value here causes illegal behavior
+// :145:25: note: when computing vector element at index '1'
+// :145:25: error: use of undefined value here causes illegal behavior
+// :145:25: note: when computing vector element at index '0'
+// :145:25: error: use of undefined value here causes illegal behavior
+// :145:25: note: when computing vector element at index '0'
+// :145:25: error: use of undefined value here causes illegal behavior
+// :145:25: error: use of undefined value here causes illegal behavior
+// :145:25: note: when computing vector element at index '0'
+// :145:25: error: use of undefined value here causes illegal behavior
+// :145:25: note: when computing vector element at index '0'
+// :145:25: error: use of undefined value here causes illegal behavior
+// :145:25: note: when computing vector element at index '1'
+// :145:25: error: use of undefined value here causes illegal behavior
+// :145:25: note: when computing vector element at index '0'
+// :145:25: error: use of undefined value here causes illegal behavior
+// :145:25: note: when computing vector element at index '0'
+// :151:21: error: use of undefined value here causes illegal behavior
+// :151:21: error: use of undefined value here causes illegal behavior
+// :151:21: error: use of undefined value here causes illegal behavior
+// :151:21: error: use of undefined value here causes illegal behavior
+// :151:21: error: use of undefined value here causes illegal behavior
+// :151:21: error: use of undefined value here causes illegal behavior
+// :151:21: error: use of undefined value here causes illegal behavior
+// :151:21: note: when computing vector element at index '1'
+// :151:21: error: use of undefined value here causes illegal behavior
+// :151:21: note: when computing vector element at index '1'
+// :151:21: error: use of undefined value here causes illegal behavior
+// :151:21: note: when computing vector element at index '1'
+// :151:21: error: use of undefined value here causes illegal behavior
+// :151:21: note: when computing vector element at index '1'
+// :151:21: error: use of undefined value here causes illegal behavior
+// :151:21: note: when computing vector element at index '0'
+// :151:21: error: use of undefined value here causes illegal behavior
+// :151:21: note: when computing vector element at index '0'
+// :151:21: error: use of undefined value here causes illegal behavior
+// :151:21: note: when computing vector element at index '0'
+// :151:21: error: use of undefined value here causes illegal behavior
+// :151:21: note: when computing vector element at index '0'
+// :151:21: error: use of undefined value here causes illegal behavior
+// :151:21: error: use of undefined value here causes illegal behavior
+// :151:21: error: use of undefined value here causes illegal behavior
+// :151:21: error: use of undefined value here causes illegal behavior
+// :151:21: error: use of undefined value here causes illegal behavior
+// :151:21: error: use of undefined value here causes illegal behavior
+// :151:21: error: use of undefined value here causes illegal behavior
+// :151:21: note: when computing vector element at index '1'
+// :151:21: error: use of undefined value here causes illegal behavior
+// :151:21: note: when computing vector element at index '1'
+// :151:21: error: use of undefined value here causes illegal behavior
+// :151:21: note: when computing vector element at index '1'
+// :151:21: error: use of undefined value here causes illegal behavior
+// :151:21: note: when computing vector element at index '1'
+// :151:21: error: use of undefined value here causes illegal behavior
+// :151:21: note: when computing vector element at index '0'
+// :151:21: error: use of undefined value here causes illegal behavior
+// :151:21: note: when computing vector element at index '0'
+// :151:21: error: use of undefined value here causes illegal behavior
+// :151:21: note: when computing vector element at index '0'
+// :151:21: error: use of undefined value here causes illegal behavior
+// :151:21: note: when computing vector element at index '0'
+// :151:21: error: use of undefined value here causes illegal behavior
+// :151:21: error: use of undefined value here causes illegal behavior
+// :151:21: error: use of undefined value here causes illegal behavior
+// :151:21: error: use of undefined value here causes illegal behavior
+// :151:21: error: use of undefined value here causes illegal behavior
+// :151:21: error: use of undefined value here causes illegal behavior
+// :151:21: error: use of undefined value here causes illegal behavior
+// :151:21: note: when computing vector element at index '1'
+// :151:21: error: use of undefined value here causes illegal behavior
+// :151:21: note: when computing vector element at index '1'
+// :151:21: error: use of undefined value here causes illegal behavior
+// :151:21: note: when computing vector element at index '1'
+// :151:21: error: use of undefined value here causes illegal behavior
+// :151:21: note: when computing vector element at index '1'
+// :151:21: error: use of undefined value here causes illegal behavior
+// :151:21: note: when computing vector element at index '0'
+// :151:21: error: use of undefined value here causes illegal behavior
+// :151:21: note: when computing vector element at index '0'
+// :151:21: error: use of undefined value here causes illegal behavior
+// :151:21: note: when computing vector element at index '0'
+// :151:21: error: use of undefined value here causes illegal behavior
+// :151:21: note: when computing vector element at index '0'
+// :151:21: error: use of undefined value here causes illegal behavior
+// :151:21: error: use of undefined value here causes illegal behavior
+// :151:21: error: use of undefined value here causes illegal behavior
+// :151:21: error: use of undefined value here causes illegal behavior
+// :151:21: error: use of undefined value here causes illegal behavior
+// :151:21: error: use of undefined value here causes illegal behavior
+// :151:21: error: use of undefined value here causes illegal behavior
+// :151:21: note: when computing vector element at index '1'
+// :151:21: error: use of undefined value here causes illegal behavior
+// :151:21: note: when computing vector element at index '1'
+// :151:21: error: use of undefined value here causes illegal behavior
+// :151:21: note: when computing vector element at index '1'
+// :151:21: error: use of undefined value here causes illegal behavior
+// :151:21: note: when computing vector element at index '1'
+// :151:21: error: use of undefined value here causes illegal behavior
+// :151:21: note: when computing vector element at index '0'
+// :151:21: error: use of undefined value here causes illegal behavior
+// :151:21: note: when computing vector element at index '0'
+// :151:21: error: use of undefined value here causes illegal behavior
+// :151:21: note: when computing vector element at index '0'
+// :151:21: error: use of undefined value here causes illegal behavior
+// :151:21: note: when computing vector element at index '0'
+// :151:21: error: use of undefined value here causes illegal behavior
+// :151:21: error: use of undefined value here causes illegal behavior
+// :151:21: error: use of undefined value here causes illegal behavior
+// :151:21: error: use of undefined value here causes illegal behavior
+// :151:21: error: use of undefined value here causes illegal behavior
+// :151:21: error: use of undefined value here causes illegal behavior
+// :151:21: error: use of undefined value here causes illegal behavior
+// :151:21: note: when computing vector element at index '1'
+// :151:21: error: use of undefined value here causes illegal behavior
+// :151:21: note: when computing vector element at index '1'
+// :151:21: error: use of undefined value here causes illegal behavior
+// :151:21: note: when computing vector element at index '1'
+// :151:21: error: use of undefined value here causes illegal behavior
+// :151:21: note: when computing vector element at index '1'
+// :151:21: error: use of undefined value here causes illegal behavior
+// :151:21: note: when computing vector element at index '0'
+// :151:21: error: use of undefined value here causes illegal behavior
+// :151:21: note: when computing vector element at index '0'
+// :151:21: error: use of undefined value here causes illegal behavior
+// :151:21: note: when computing vector element at index '0'
+// :151:21: error: use of undefined value here causes illegal behavior
+// :151:21: note: when computing vector element at index '0'
+// :151:21: error: use of undefined value here causes illegal behavior
+// :151:21: error: use of undefined value here causes illegal behavior
+// :151:21: error: use of undefined value here causes illegal behavior
+// :151:21: error: use of undefined value here causes illegal behavior
+// :151:21: error: use of undefined value here causes illegal behavior
+// :151:21: error: use of undefined value here causes illegal behavior
+// :151:21: error: use of undefined value here causes illegal behavior
+// :151:21: note: when computing vector element at index '1'
+// :151:21: error: use of undefined value here causes illegal behavior
+// :151:21: note: when computing vector element at index '1'
+// :151:21: error: use of undefined value here causes illegal behavior
+// :151:21: note: when computing vector element at index '1'
+// :151:21: error: use of undefined value here causes illegal behavior
+// :151:21: note: when computing vector element at index '1'
+// :151:21: error: use of undefined value here causes illegal behavior
+// :151:21: note: when computing vector element at index '0'
+// :151:21: error: use of undefined value here causes illegal behavior
+// :151:21: note: when computing vector element at index '0'
+// :151:21: error: use of undefined value here causes illegal behavior
+// :151:21: note: when computing vector element at index '0'
+// :151:21: error: use of undefined value here causes illegal behavior
+// :151:21: note: when computing vector element at index '0'
+// :151:21: error: use of undefined value here causes illegal behavior
+// :151:21: error: use of undefined value here causes illegal behavior
+// :151:21: error: use of undefined value here causes illegal behavior
+// :151:21: error: use of undefined value here causes illegal behavior
+// :151:21: error: use of undefined value here causes illegal behavior
+// :151:21: error: use of undefined value here causes illegal behavior
+// :151:21: error: use of undefined value here causes illegal behavior
+// :151:21: note: when computing vector element at index '1'
+// :151:21: error: use of undefined value here causes illegal behavior
+// :151:21: note: when computing vector element at index '1'
+// :151:21: error: use of undefined value here causes illegal behavior
+// :151:21: note: when computing vector element at index '1'
+// :151:21: error: use of undefined value here causes illegal behavior
+// :151:21: note: when computing vector element at index '1'
+// :151:21: error: use of undefined value here causes illegal behavior
+// :151:21: note: when computing vector element at index '0'
+// :151:21: error: use of undefined value here causes illegal behavior
+// :151:21: note: when computing vector element at index '0'
+// :151:21: error: use of undefined value here causes illegal behavior
+// :151:21: note: when computing vector element at index '0'
+// :151:21: error: use of undefined value here causes illegal behavior
+// :151:21: note: when computing vector element at index '0'
+// :151:21: error: use of undefined value here causes illegal behavior
+// :151:21: error: use of undefined value here causes illegal behavior
+// :151:21: error: use of undefined value here causes illegal behavior
+// :151:21: error: use of undefined value here causes illegal behavior
+// :151:21: error: use of undefined value here causes illegal behavior
+// :151:21: error: use of undefined value here causes illegal behavior
+// :151:21: error: use of undefined value here causes illegal behavior
+// :151:21: note: when computing vector element at index '1'
+// :151:21: error: use of undefined value here causes illegal behavior
+// :151:21: note: when computing vector element at index '1'
+// :151:21: error: use of undefined value here causes illegal behavior
+// :151:21: note: when computing vector element at index '1'
+// :151:21: error: use of undefined value here causes illegal behavior
+// :151:21: note: when computing vector element at index '1'
+// :151:21: error: use of undefined value here causes illegal behavior
+// :151:21: note: when computing vector element at index '0'
+// :151:21: error: use of undefined value here causes illegal behavior
+// :151:21: note: when computing vector element at index '0'
+// :151:21: error: use of undefined value here causes illegal behavior
+// :151:21: note: when computing vector element at index '0'
+// :151:21: error: use of undefined value here causes illegal behavior
+// :151:21: note: when computing vector element at index '0'
+// :151:21: error: use of undefined value here causes illegal behavior
+// :151:21: error: use of undefined value here causes illegal behavior
+// :151:21: error: use of undefined value here causes illegal behavior
+// :151:21: error: use of undefined value here causes illegal behavior
+// :151:21: error: use of undefined value here causes illegal behavior
+// :151:21: error: use of undefined value here causes illegal behavior
+// :151:21: error: use of undefined value here causes illegal behavior
+// :151:21: note: when computing vector element at index '1'
+// :151:21: error: use of undefined value here causes illegal behavior
+// :151:21: note: when computing vector element at index '1'
+// :151:21: error: use of undefined value here causes illegal behavior
+// :151:21: note: when computing vector element at index '1'
+// :151:21: error: use of undefined value here causes illegal behavior
+// :151:21: note: when computing vector element at index '1'
+// :151:21: error: use of undefined value here causes illegal behavior
+// :151:21: note: when computing vector element at index '0'
+// :151:21: error: use of undefined value here causes illegal behavior
+// :151:21: note: when computing vector element at index '0'
+// :151:21: error: use of undefined value here causes illegal behavior
+// :151:21: note: when computing vector element at index '0'
+// :151:21: error: use of undefined value here causes illegal behavior
+// :151:21: note: when computing vector element at index '0'
+// :151:21: error: use of undefined value here causes illegal behavior
+// :151:21: error: use of undefined value here causes illegal behavior
+// :151:21: error: use of undefined value here causes illegal behavior
+// :151:21: error: use of undefined value here causes illegal behavior
+// :151:21: error: use of undefined value here causes illegal behavior
+// :151:21: error: use of undefined value here causes illegal behavior
+// :151:21: error: use of undefined value here causes illegal behavior
+// :151:21: note: when computing vector element at index '1'
+// :151:21: error: use of undefined value here causes illegal behavior
+// :151:21: note: when computing vector element at index '1'
+// :151:21: error: use of undefined value here causes illegal behavior
+// :151:21: note: when computing vector element at index '1'
+// :151:21: error: use of undefined value here causes illegal behavior
+// :151:21: note: when computing vector element at index '1'
+// :151:21: error: use of undefined value here causes illegal behavior
+// :151:21: note: when computing vector element at index '0'
+// :151:21: error: use of undefined value here causes illegal behavior
+// :151:21: note: when computing vector element at index '0'
+// :151:21: error: use of undefined value here causes illegal behavior
+// :151:21: note: when computing vector element at index '0'
+// :151:21: error: use of undefined value here causes illegal behavior
+// :151:21: note: when computing vector element at index '0'
+// :151:21: error: use of undefined value here causes illegal behavior
+// :151:21: error: use of undefined value here causes illegal behavior
+// :151:21: error: use of undefined value here causes illegal behavior
+// :151:21: error: use of undefined value here causes illegal behavior
+// :151:21: error: use of undefined value here causes illegal behavior
+// :151:21: error: use of undefined value here causes illegal behavior
+// :151:21: error: use of undefined value here causes illegal behavior
+// :151:21: note: when computing vector element at index '1'
+// :151:21: error: use of undefined value here causes illegal behavior
+// :151:21: note: when computing vector element at index '1'
+// :151:21: error: use of undefined value here causes illegal behavior
+// :151:21: note: when computing vector element at index '1'
+// :151:21: error: use of undefined value here causes illegal behavior
+// :151:21: note: when computing vector element at index '1'
+// :151:21: error: use of undefined value here causes illegal behavior
+// :151:21: note: when computing vector element at index '0'
+// :151:21: error: use of undefined value here causes illegal behavior
+// :151:21: note: when computing vector element at index '0'
+// :151:21: error: use of undefined value here causes illegal behavior
+// :151:21: note: when computing vector element at index '0'
+// :151:21: error: use of undefined value here causes illegal behavior
+// :151:21: note: when computing vector element at index '0'
+// :155:30: error: use of undefined value here causes illegal behavior
+// :155:30: error: use of undefined value here causes illegal behavior
+// :155:30: error: use of undefined value here causes illegal behavior
+// :155:30: error: use of undefined value here causes illegal behavior
+// :155:30: error: use of undefined value here causes illegal behavior
+// :155:30: error: use of undefined value here causes illegal behavior
+// :155:30: error: use of undefined value here causes illegal behavior
+// :155:30: note: when computing vector element at index '1'
+// :155:30: error: use of undefined value here causes illegal behavior
+// :155:30: note: when computing vector element at index '1'
+// :155:30: error: use of undefined value here causes illegal behavior
+// :155:30: note: when computing vector element at index '1'
+// :155:30: error: use of undefined value here causes illegal behavior
+// :155:30: note: when computing vector element at index '1'
+// :155:30: error: use of undefined value here causes illegal behavior
+// :155:30: note: when computing vector element at index '0'
+// :155:30: error: use of undefined value here causes illegal behavior
+// :155:30: note: when computing vector element at index '0'
+// :155:30: error: use of undefined value here causes illegal behavior
+// :155:30: note: when computing vector element at index '0'
+// :155:30: error: use of undefined value here causes illegal behavior
+// :155:30: note: when computing vector element at index '0'
+// :155:30: error: use of undefined value here causes illegal behavior
+// :155:30: error: use of undefined value here causes illegal behavior
+// :155:30: error: use of undefined value here causes illegal behavior
+// :155:30: error: use of undefined value here causes illegal behavior
+// :155:30: error: use of undefined value here causes illegal behavior
+// :155:30: error: use of undefined value here causes illegal behavior
+// :155:30: error: use of undefined value here causes illegal behavior
+// :155:30: note: when computing vector element at index '1'
+// :155:30: error: use of undefined value here causes illegal behavior
+// :155:30: note: when computing vector element at index '1'
+// :155:30: error: use of undefined value here causes illegal behavior
+// :155:30: note: when computing vector element at index '1'
+// :155:30: error: use of undefined value here causes illegal behavior
+// :155:30: note: when computing vector element at index '1'
+// :155:30: error: use of undefined value here causes illegal behavior
+// :155:30: note: when computing vector element at index '0'
+// :155:30: error: use of undefined value here causes illegal behavior
+// :155:30: note: when computing vector element at index '0'
+// :155:30: error: use of undefined value here causes illegal behavior
+// :155:30: note: when computing vector element at index '0'
+// :155:30: error: use of undefined value here causes illegal behavior
+// :155:30: note: when computing vector element at index '0'
+// :155:30: error: use of undefined value here causes illegal behavior
+// :155:30: error: use of undefined value here causes illegal behavior
+// :155:30: error: use of undefined value here causes illegal behavior
+// :155:30: error: use of undefined value here causes illegal behavior
+// :155:30: error: use of undefined value here causes illegal behavior
+// :155:30: error: use of undefined value here causes illegal behavior
+// :155:30: error: use of undefined value here causes illegal behavior
+// :155:30: note: when computing vector element at index '1'
+// :155:30: error: use of undefined value here causes illegal behavior
+// :155:30: note: when computing vector element at index '1'
+// :155:30: error: use of undefined value here causes illegal behavior
+// :155:30: note: when computing vector element at index '1'
+// :155:30: error: use of undefined value here causes illegal behavior
+// :155:30: note: when computing vector element at index '1'
+// :155:30: error: use of undefined value here causes illegal behavior
+// :155:30: note: when computing vector element at index '0'
+// :155:30: error: use of undefined value here causes illegal behavior
+// :155:30: note: when computing vector element at index '0'
+// :155:30: error: use of undefined value here causes illegal behavior
+// :155:30: note: when computing vector element at index '0'
+// :155:30: error: use of undefined value here causes illegal behavior
+// :155:30: note: when computing vector element at index '0'
+// :155:30: error: use of undefined value here causes illegal behavior
+// :155:30: error: use of undefined value here causes illegal behavior
+// :155:30: error: use of undefined value here causes illegal behavior
+// :155:30: error: use of undefined value here causes illegal behavior
+// :155:30: error: use of undefined value here causes illegal behavior
+// :155:30: error: use of undefined value here causes illegal behavior
+// :155:30: error: use of undefined value here causes illegal behavior
+// :155:30: note: when computing vector element at index '1'
+// :155:30: error: use of undefined value here causes illegal behavior
+// :155:30: note: when computing vector element at index '1'
+// :155:30: error: use of undefined value here causes illegal behavior
+// :155:30: note: when computing vector element at index '1'
+// :155:30: error: use of undefined value here causes illegal behavior
+// :155:30: note: when computing vector element at index '1'
+// :155:30: error: use of undefined value here causes illegal behavior
+// :155:30: note: when computing vector element at index '0'
+// :155:30: error: use of undefined value here causes illegal behavior
+// :155:30: note: when computing vector element at index '0'
+// :155:30: error: use of undefined value here causes illegal behavior
+// :155:30: note: when computing vector element at index '0'
+// :155:30: error: use of undefined value here causes illegal behavior
+// :155:30: note: when computing vector element at index '0'
+// :155:30: error: use of undefined value here causes illegal behavior
+// :155:30: error: use of undefined value here causes illegal behavior
+// :155:30: error: use of undefined value here causes illegal behavior
+// :155:30: error: use of undefined value here causes illegal behavior
+// :155:30: error: use of undefined value here causes illegal behavior
+// :155:30: error: use of undefined value here causes illegal behavior
+// :155:30: error: use of undefined value here causes illegal behavior
+// :155:30: note: when computing vector element at index '1'
+// :155:30: error: use of undefined value here causes illegal behavior
+// :155:30: note: when computing vector element at index '1'
+// :155:30: error: use of undefined value here causes illegal behavior
+// :155:30: note: when computing vector element at index '1'
+// :155:30: error: use of undefined value here causes illegal behavior
+// :155:30: note: when computing vector element at index '1'
+// :155:30: error: use of undefined value here causes illegal behavior
+// :155:30: note: when computing vector element at index '0'
+// :155:30: error: use of undefined value here causes illegal behavior
+// :155:30: note: when computing vector element at index '0'
+// :155:30: error: use of undefined value here causes illegal behavior
+// :155:30: note: when computing vector element at index '0'
+// :155:30: error: use of undefined value here causes illegal behavior
+// :155:30: note: when computing vector element at index '0'
+// :155:30: error: use of undefined value here causes illegal behavior
+// :155:30: error: use of undefined value here causes illegal behavior
+// :155:30: error: use of undefined value here causes illegal behavior
+// :155:30: error: use of undefined value here causes illegal behavior
+// :155:30: error: use of undefined value here causes illegal behavior
+// :155:30: error: use of undefined value here causes illegal behavior
+// :155:30: error: use of undefined value here causes illegal behavior
+// :155:30: note: when computing vector element at index '1'
+// :155:30: error: use of undefined value here causes illegal behavior
+// :155:30: note: when computing vector element at index '1'
+// :155:30: error: use of undefined value here causes illegal behavior
+// :155:30: note: when computing vector element at index '1'
+// :155:30: error: use of undefined value here causes illegal behavior
+// :155:30: note: when computing vector element at index '1'
+// :155:30: error: use of undefined value here causes illegal behavior
+// :155:30: note: when computing vector element at index '0'
+// :155:30: error: use of undefined value here causes illegal behavior
+// :155:30: note: when computing vector element at index '0'
+// :155:30: error: use of undefined value here causes illegal behavior
+// :155:30: note: when computing vector element at index '0'
+// :155:30: error: use of undefined value here causes illegal behavior
+// :155:30: note: when computing vector element at index '0'
+// :155:30: error: use of undefined value here causes illegal behavior
+// :155:30: error: use of undefined value here causes illegal behavior
+// :155:30: error: use of undefined value here causes illegal behavior
+// :155:30: error: use of undefined value here causes illegal behavior
+// :155:30: error: use of undefined value here causes illegal behavior
+// :155:30: error: use of undefined value here causes illegal behavior
+// :155:30: error: use of undefined value here causes illegal behavior
+// :155:30: note: when computing vector element at index '1'
+// :155:30: error: use of undefined value here causes illegal behavior
+// :155:30: note: when computing vector element at index '1'
+// :155:30: error: use of undefined value here causes illegal behavior
+// :155:30: note: when computing vector element at index '1'
+// :155:30: error: use of undefined value here causes illegal behavior
+// :155:30: note: when computing vector element at index '1'
+// :155:30: error: use of undefined value here causes illegal behavior
+// :155:30: note: when computing vector element at index '0'
+// :155:30: error: use of undefined value here causes illegal behavior
+// :155:30: note: when computing vector element at index '0'
+// :155:30: error: use of undefined value here causes illegal behavior
+// :155:30: note: when computing vector element at index '0'
+// :155:30: error: use of undefined value here causes illegal behavior
+// :155:30: note: when computing vector element at index '0'
+// :155:30: error: use of undefined value here causes illegal behavior
+// :155:30: error: use of undefined value here causes illegal behavior
+// :155:30: error: use of undefined value here causes illegal behavior
+// :155:30: error: use of undefined value here causes illegal behavior
+// :155:30: error: use of undefined value here causes illegal behavior
+// :155:30: error: use of undefined value here causes illegal behavior
+// :155:30: error: use of undefined value here causes illegal behavior
+// :155:30: note: when computing vector element at index '1'
+// :155:30: error: use of undefined value here causes illegal behavior
+// :155:30: note: when computing vector element at index '1'
+// :155:30: error: use of undefined value here causes illegal behavior
+// :155:30: note: when computing vector element at index '1'
+// :155:30: error: use of undefined value here causes illegal behavior
+// :155:30: note: when computing vector element at index '1'
+// :155:30: error: use of undefined value here causes illegal behavior
+// :155:30: note: when computing vector element at index '0'
+// :155:30: error: use of undefined value here causes illegal behavior
+// :155:30: note: when computing vector element at index '0'
+// :155:30: error: use of undefined value here causes illegal behavior
+// :155:30: note: when computing vector element at index '0'
+// :155:30: error: use of undefined value here causes illegal behavior
+// :155:30: note: when computing vector element at index '0'
+// :155:30: error: use of undefined value here causes illegal behavior
+// :155:30: error: use of undefined value here causes illegal behavior
+// :155:30: error: use of undefined value here causes illegal behavior
+// :155:30: error: use of undefined value here causes illegal behavior
+// :155:30: error: use of undefined value here causes illegal behavior
+// :155:30: error: use of undefined value here causes illegal behavior
+// :155:30: error: use of undefined value here causes illegal behavior
+// :155:30: note: when computing vector element at index '1'
+// :155:30: error: use of undefined value here causes illegal behavior
+// :155:30: note: when computing vector element at index '1'
+// :155:30: error: use of undefined value here causes illegal behavior
+// :155:30: note: when computing vector element at index '1'
+// :155:30: error: use of undefined value here causes illegal behavior
+// :155:30: note: when computing vector element at index '1'
+// :155:30: error: use of undefined value here causes illegal behavior
+// :155:30: note: when computing vector element at index '0'
+// :155:30: error: use of undefined value here causes illegal behavior
+// :155:30: note: when computing vector element at index '0'
+// :155:30: error: use of undefined value here causes illegal behavior
+// :155:30: note: when computing vector element at index '0'
+// :155:30: error: use of undefined value here causes illegal behavior
+// :155:30: note: when computing vector element at index '0'
+// :155:30: error: use of undefined value here causes illegal behavior
+// :155:30: error: use of undefined value here causes illegal behavior
+// :155:30: error: use of undefined value here causes illegal behavior
+// :155:30: error: use of undefined value here causes illegal behavior
+// :155:30: error: use of undefined value here causes illegal behavior
+// :155:30: error: use of undefined value here causes illegal behavior
+// :155:30: error: use of undefined value here causes illegal behavior
+// :155:30: note: when computing vector element at index '1'
+// :155:30: error: use of undefined value here causes illegal behavior
+// :155:30: note: when computing vector element at index '1'
+// :155:30: error: use of undefined value here causes illegal behavior
+// :155:30: note: when computing vector element at index '1'
+// :155:30: error: use of undefined value here causes illegal behavior
+// :155:30: note: when computing vector element at index '1'
+// :155:30: error: use of undefined value here causes illegal behavior
+// :155:30: note: when computing vector element at index '0'
+// :155:30: error: use of undefined value here causes illegal behavior
+// :155:30: note: when computing vector element at index '0'
+// :155:30: error: use of undefined value here causes illegal behavior
+// :155:30: note: when computing vector element at index '0'
+// :155:30: error: use of undefined value here causes illegal behavior
+// :155:30: note: when computing vector element at index '0'
+// :155:30: error: use of undefined value here causes illegal behavior
+// :155:30: error: use of undefined value here causes illegal behavior
+// :155:30: error: use of undefined value here causes illegal behavior
+// :155:30: error: use of undefined value here causes illegal behavior
+// :155:30: error: use of undefined value here causes illegal behavior
+// :155:30: error: use of undefined value here causes illegal behavior
+// :155:30: error: use of undefined value here causes illegal behavior
+// :155:30: note: when computing vector element at index '1'
+// :155:30: error: use of undefined value here causes illegal behavior
+// :155:30: note: when computing vector element at index '1'
+// :155:30: error: use of undefined value here causes illegal behavior
+// :155:30: note: when computing vector element at index '1'
+// :155:30: error: use of undefined value here causes illegal behavior
+// :155:30: note: when computing vector element at index '1'
+// :155:30: error: use of undefined value here causes illegal behavior
+// :155:30: note: when computing vector element at index '0'
+// :155:30: error: use of undefined value here causes illegal behavior
+// :155:30: note: when computing vector element at index '0'
+// :155:30: error: use of undefined value here causes illegal behavior
+// :155:30: note: when computing vector element at index '0'
+// :155:30: error: use of undefined value here causes illegal behavior
+// :155:30: note: when computing vector element at index '0'
+// :159:30: error: use of undefined value here causes illegal behavior
+// :159:30: error: use of undefined value here causes illegal behavior
+// :159:30: error: use of undefined value here causes illegal behavior
+// :159:30: error: use of undefined value here causes illegal behavior
+// :159:30: error: use of undefined value here causes illegal behavior
+// :159:30: error: use of undefined value here causes illegal behavior
+// :159:30: error: use of undefined value here causes illegal behavior
+// :159:30: note: when computing vector element at index '1'
+// :159:30: error: use of undefined value here causes illegal behavior
+// :159:30: note: when computing vector element at index '1'
+// :159:30: error: use of undefined value here causes illegal behavior
+// :159:30: note: when computing vector element at index '1'
+// :159:30: error: use of undefined value here causes illegal behavior
+// :159:30: note: when computing vector element at index '1'
+// :159:30: error: use of undefined value here causes illegal behavior
+// :159:30: note: when computing vector element at index '0'
+// :159:30: error: use of undefined value here causes illegal behavior
+// :159:30: note: when computing vector element at index '0'
+// :159:30: error: use of undefined value here causes illegal behavior
+// :159:30: note: when computing vector element at index '0'
+// :159:30: error: use of undefined value here causes illegal behavior
+// :159:30: note: when computing vector element at index '0'
+// :159:30: error: use of undefined value here causes illegal behavior
+// :159:30: error: use of undefined value here causes illegal behavior
+// :159:30: error: use of undefined value here causes illegal behavior
+// :159:30: error: use of undefined value here causes illegal behavior
+// :159:30: error: use of undefined value here causes illegal behavior
+// :159:30: error: use of undefined value here causes illegal behavior
+// :159:30: error: use of undefined value here causes illegal behavior
+// :159:30: note: when computing vector element at index '1'
+// :159:30: error: use of undefined value here causes illegal behavior
+// :159:30: note: when computing vector element at index '1'
+// :159:30: error: use of undefined value here causes illegal behavior
+// :159:30: note: when computing vector element at index '1'
+// :159:30: error: use of undefined value here causes illegal behavior
+// :159:30: note: when computing vector element at index '1'
+// :159:30: error: use of undefined value here causes illegal behavior
+// :159:30: note: when computing vector element at index '0'
+// :159:30: error: use of undefined value here causes illegal behavior
+// :159:30: note: when computing vector element at index '0'
+// :159:30: error: use of undefined value here causes illegal behavior
+// :159:30: note: when computing vector element at index '0'
+// :159:30: error: use of undefined value here causes illegal behavior
+// :159:30: note: when computing vector element at index '0'
+// :159:30: error: use of undefined value here causes illegal behavior
+// :159:30: error: use of undefined value here causes illegal behavior
+// :159:30: error: use of undefined value here causes illegal behavior
+// :159:30: error: use of undefined value here causes illegal behavior
+// :159:30: error: use of undefined value here causes illegal behavior
+// :159:30: error: use of undefined value here causes illegal behavior
+// :159:30: error: use of undefined value here causes illegal behavior
+// :159:30: note: when computing vector element at index '1'
+// :159:30: error: use of undefined value here causes illegal behavior
+// :159:30: note: when computing vector element at index '1'
+// :159:30: error: use of undefined value here causes illegal behavior
+// :159:30: note: when computing vector element at index '1'
+// :159:30: error: use of undefined value here causes illegal behavior
+// :159:30: note: when computing vector element at index '1'
+// :159:30: error: use of undefined value here causes illegal behavior
+// :159:30: note: when computing vector element at index '0'
+// :159:30: error: use of undefined value here causes illegal behavior
+// :159:30: note: when computing vector element at index '0'
+// :159:30: error: use of undefined value here causes illegal behavior
+// :159:30: note: when computing vector element at index '0'
+// :159:30: error: use of undefined value here causes illegal behavior
+// :159:30: note: when computing vector element at index '0'
+// :159:30: error: use of undefined value here causes illegal behavior
+// :159:30: error: use of undefined value here causes illegal behavior
+// :159:30: error: use of undefined value here causes illegal behavior
+// :159:30: error: use of undefined value here causes illegal behavior
+// :159:30: error: use of undefined value here causes illegal behavior
+// :159:30: error: use of undefined value here causes illegal behavior
+// :159:30: error: use of undefined value here causes illegal behavior
+// :159:30: note: when computing vector element at index '1'
+// :159:30: error: use of undefined value here causes illegal behavior
+// :159:30: note: when computing vector element at index '1'
+// :159:30: error: use of undefined value here causes illegal behavior
+// :159:30: note: when computing vector element at index '1'
+// :159:30: error: use of undefined value here causes illegal behavior
+// :159:30: note: when computing vector element at index '1'
+// :159:30: error: use of undefined value here causes illegal behavior
+// :159:30: note: when computing vector element at index '0'
+// :159:30: error: use of undefined value here causes illegal behavior
+// :159:30: note: when computing vector element at index '0'
+// :159:30: error: use of undefined value here causes illegal behavior
+// :159:30: note: when computing vector element at index '0'
+// :159:30: error: use of undefined value here causes illegal behavior
+// :159:30: note: when computing vector element at index '0'
+// :159:30: error: use of undefined value here causes illegal behavior
+// :159:30: error: use of undefined value here causes illegal behavior
+// :159:30: error: use of undefined value here causes illegal behavior
+// :159:30: error: use of undefined value here causes illegal behavior
+// :159:30: error: use of undefined value here causes illegal behavior
+// :159:30: error: use of undefined value here causes illegal behavior
+// :159:30: error: use of undefined value here causes illegal behavior
+// :159:30: note: when computing vector element at index '1'
+// :159:30: error: use of undefined value here causes illegal behavior
+// :159:30: note: when computing vector element at index '1'
+// :159:30: error: use of undefined value here causes illegal behavior
+// :159:30: note: when computing vector element at index '1'
+// :159:30: error: use of undefined value here causes illegal behavior
+// :159:30: note: when computing vector element at index '1'
+// :159:30: error: use of undefined value here causes illegal behavior
+// :159:30: note: when computing vector element at index '0'
+// :159:30: error: use of undefined value here causes illegal behavior
+// :159:30: note: when computing vector element at index '0'
+// :159:30: error: use of undefined value here causes illegal behavior
+// :159:30: note: when computing vector element at index '0'
+// :159:30: error: use of undefined value here causes illegal behavior
+// :159:30: note: when computing vector element at index '0'
+// :159:30: error: use of undefined value here causes illegal behavior
+// :159:30: error: use of undefined value here causes illegal behavior
+// :159:30: error: use of undefined value here causes illegal behavior
+// :159:30: error: use of undefined value here causes illegal behavior
+// :159:30: error: use of undefined value here causes illegal behavior
+// :159:30: error: use of undefined value here causes illegal behavior
+// :159:30: error: use of undefined value here causes illegal behavior
+// :159:30: note: when computing vector element at index '1'
+// :159:30: error: use of undefined value here causes illegal behavior
+// :159:30: note: when computing vector element at index '1'
+// :159:30: error: use of undefined value here causes illegal behavior
+// :159:30: note: when computing vector element at index '1'
+// :159:30: error: use of undefined value here causes illegal behavior
+// :159:30: note: when computing vector element at index '1'
+// :159:30: error: use of undefined value here causes illegal behavior
+// :159:30: note: when computing vector element at index '0'
+// :159:30: error: use of undefined value here causes illegal behavior
+// :159:30: note: when computing vector element at index '0'
+// :159:30: error: use of undefined value here causes illegal behavior
+// :159:30: note: when computing vector element at index '0'
+// :159:30: error: use of undefined value here causes illegal behavior
+// :159:30: note: when computing vector element at index '0'
+// :159:30: error: use of undefined value here causes illegal behavior
+// :159:30: error: use of undefined value here causes illegal behavior
+// :159:30: error: use of undefined value here causes illegal behavior
+// :159:30: error: use of undefined value here causes illegal behavior
+// :159:30: error: use of undefined value here causes illegal behavior
+// :159:30: error: use of undefined value here causes illegal behavior
+// :159:30: error: use of undefined value here causes illegal behavior
+// :159:30: note: when computing vector element at index '1'
+// :159:30: error: use of undefined value here causes illegal behavior
+// :159:30: note: when computing vector element at index '1'
+// :159:30: error: use of undefined value here causes illegal behavior
+// :159:30: note: when computing vector element at index '1'
+// :159:30: error: use of undefined value here causes illegal behavior
+// :159:30: note: when computing vector element at index '1'
+// :159:30: error: use of undefined value here causes illegal behavior
+// :159:30: note: when computing vector element at index '0'
+// :159:30: error: use of undefined value here causes illegal behavior
+// :159:30: note: when computing vector element at index '0'
+// :159:30: error: use of undefined value here causes illegal behavior
+// :159:30: note: when computing vector element at index '0'
+// :159:30: error: use of undefined value here causes illegal behavior
+// :159:30: note: when computing vector element at index '0'
+// :159:30: error: use of undefined value here causes illegal behavior
+// :159:30: error: use of undefined value here causes illegal behavior
+// :159:30: error: use of undefined value here causes illegal behavior
+// :159:30: error: use of undefined value here causes illegal behavior
+// :159:30: error: use of undefined value here causes illegal behavior
+// :159:30: error: use of undefined value here causes illegal behavior
+// :159:30: error: use of undefined value here causes illegal behavior
+// :159:30: note: when computing vector element at index '1'
+// :159:30: error: use of undefined value here causes illegal behavior
+// :159:30: note: when computing vector element at index '1'
+// :159:30: error: use of undefined value here causes illegal behavior
+// :159:30: note: when computing vector element at index '1'
+// :159:30: error: use of undefined value here causes illegal behavior
+// :159:30: note: when computing vector element at index '1'
+// :159:30: error: use of undefined value here causes illegal behavior
+// :159:30: note: when computing vector element at index '0'
+// :159:30: error: use of undefined value here causes illegal behavior
+// :159:30: note: when computing vector element at index '0'
+// :159:30: error: use of undefined value here causes illegal behavior
+// :159:30: note: when computing vector element at index '0'
+// :159:30: error: use of undefined value here causes illegal behavior
+// :159:30: note: when computing vector element at index '0'
+// :159:30: error: use of undefined value here causes illegal behavior
+// :159:30: error: use of undefined value here causes illegal behavior
+// :159:30: error: use of undefined value here causes illegal behavior
+// :159:30: error: use of undefined value here causes illegal behavior
+// :159:30: error: use of undefined value here causes illegal behavior
+// :159:30: error: use of undefined value here causes illegal behavior
+// :159:30: error: use of undefined value here causes illegal behavior
+// :159:30: note: when computing vector element at index '1'
+// :159:30: error: use of undefined value here causes illegal behavior
+// :159:30: note: when computing vector element at index '1'
+// :159:30: error: use of undefined value here causes illegal behavior
+// :159:30: note: when computing vector element at index '1'
+// :159:30: error: use of undefined value here causes illegal behavior
+// :159:30: note: when computing vector element at index '1'
+// :159:30: error: use of undefined value here causes illegal behavior
+// :159:30: note: when computing vector element at index '0'
+// :159:30: error: use of undefined value here causes illegal behavior
+// :159:30: note: when computing vector element at index '0'
+// :159:30: error: use of undefined value here causes illegal behavior
+// :159:30: note: when computing vector element at index '0'
+// :159:30: error: use of undefined value here causes illegal behavior
+// :159:30: note: when computing vector element at index '0'
+// :159:30: error: use of undefined value here causes illegal behavior
+// :159:30: error: use of undefined value here causes illegal behavior
+// :159:30: error: use of undefined value here causes illegal behavior
+// :159:30: error: use of undefined value here causes illegal behavior
+// :159:30: error: use of undefined value here causes illegal behavior
+// :159:30: error: use of undefined value here causes illegal behavior
+// :159:30: error: use of undefined value here causes illegal behavior
+// :159:30: note: when computing vector element at index '1'
+// :159:30: error: use of undefined value here causes illegal behavior
+// :159:30: note: when computing vector element at index '1'
+// :159:30: error: use of undefined value here causes illegal behavior
+// :159:30: note: when computing vector element at index '1'
+// :159:30: error: use of undefined value here causes illegal behavior
+// :159:30: note: when computing vector element at index '1'
+// :159:30: error: use of undefined value here causes illegal behavior
+// :159:30: note: when computing vector element at index '0'
+// :159:30: error: use of undefined value here causes illegal behavior
+// :159:30: note: when computing vector element at index '0'
+// :159:30: error: use of undefined value here causes illegal behavior
+// :159:30: note: when computing vector element at index '0'
+// :159:30: error: use of undefined value here causes illegal behavior
+// :159:30: note: when computing vector element at index '0'
+// :159:30: error: use of undefined value here causes illegal behavior
+// :159:30: error: use of undefined value here causes illegal behavior
+// :159:30: error: use of undefined value here causes illegal behavior
+// :159:30: error: use of undefined value here causes illegal behavior
+// :159:30: error: use of undefined value here causes illegal behavior
+// :159:30: error: use of undefined value here causes illegal behavior
+// :159:30: error: use of undefined value here causes illegal behavior
+// :159:30: note: when computing vector element at index '1'
+// :159:30: error: use of undefined value here causes illegal behavior
+// :159:30: note: when computing vector element at index '1'
+// :159:30: error: use of undefined value here causes illegal behavior
+// :159:30: note: when computing vector element at index '1'
+// :159:30: error: use of undefined value here causes illegal behavior
+// :159:30: note: when computing vector element at index '1'
+// :159:30: error: use of undefined value here causes illegal behavior
+// :159:30: note: when computing vector element at index '0'
+// :159:30: error: use of undefined value here causes illegal behavior
+// :159:30: note: when computing vector element at index '0'
+// :159:30: error: use of undefined value here causes illegal behavior
+// :159:30: note: when computing vector element at index '0'
+// :159:30: error: use of undefined value here causes illegal behavior
+// :159:30: note: when computing vector element at index '0'
+// :163:30: error: use of undefined value here causes illegal behavior
+// :163:30: error: use of undefined value here causes illegal behavior
+// :163:30: error: use of undefined value here causes illegal behavior
+// :163:30: error: use of undefined value here causes illegal behavior
+// :163:30: error: use of undefined value here causes illegal behavior
+// :163:30: error: use of undefined value here causes illegal behavior
+// :163:30: error: use of undefined value here causes illegal behavior
+// :163:30: note: when computing vector element at index '1'
+// :163:30: error: use of undefined value here causes illegal behavior
+// :163:30: note: when computing vector element at index '1'
+// :163:30: error: use of undefined value here causes illegal behavior
+// :163:30: note: when computing vector element at index '1'
+// :163:30: error: use of undefined value here causes illegal behavior
+// :163:30: note: when computing vector element at index '1'
+// :163:30: error: use of undefined value here causes illegal behavior
+// :163:30: note: when computing vector element at index '0'
+// :163:30: error: use of undefined value here causes illegal behavior
+// :163:30: note: when computing vector element at index '0'
+// :163:30: error: use of undefined value here causes illegal behavior
+// :163:30: note: when computing vector element at index '0'
+// :163:30: error: use of undefined value here causes illegal behavior
+// :163:30: note: when computing vector element at index '0'
+// :163:30: error: use of undefined value here causes illegal behavior
+// :163:30: error: use of undefined value here causes illegal behavior
+// :163:30: error: use of undefined value here causes illegal behavior
+// :163:30: error: use of undefined value here causes illegal behavior
+// :163:30: error: use of undefined value here causes illegal behavior
+// :163:30: error: use of undefined value here causes illegal behavior
+// :163:30: error: use of undefined value here causes illegal behavior
+// :163:30: note: when computing vector element at index '1'
+// :163:30: error: use of undefined value here causes illegal behavior
+// :163:30: note: when computing vector element at index '1'
+// :163:30: error: use of undefined value here causes illegal behavior
+// :163:30: note: when computing vector element at index '1'
+// :163:30: error: use of undefined value here causes illegal behavior
+// :163:30: note: when computing vector element at index '1'
+// :163:30: error: use of undefined value here causes illegal behavior
+// :163:30: note: when computing vector element at index '0'
+// :163:30: error: use of undefined value here causes illegal behavior
+// :163:30: note: when computing vector element at index '0'
+// :163:30: error: use of undefined value here causes illegal behavior
+// :163:30: note: when computing vector element at index '0'
+// :163:30: error: use of undefined value here causes illegal behavior
+// :163:30: note: when computing vector element at index '0'
+// :163:30: error: use of undefined value here causes illegal behavior
+// :163:30: error: use of undefined value here causes illegal behavior
+// :163:30: error: use of undefined value here causes illegal behavior
+// :163:30: error: use of undefined value here causes illegal behavior
+// :163:30: error: use of undefined value here causes illegal behavior
+// :163:30: error: use of undefined value here causes illegal behavior
+// :163:30: error: use of undefined value here causes illegal behavior
+// :163:30: note: when computing vector element at index '1'
+// :163:30: error: use of undefined value here causes illegal behavior
+// :163:30: note: when computing vector element at index '1'
+// :163:30: error: use of undefined value here causes illegal behavior
+// :163:30: note: when computing vector element at index '1'
+// :163:30: error: use of undefined value here causes illegal behavior
+// :163:30: note: when computing vector element at index '1'
+// :163:30: error: use of undefined value here causes illegal behavior
+// :163:30: note: when computing vector element at index '0'
+// :163:30: error: use of undefined value here causes illegal behavior
+// :163:30: note: when computing vector element at index '0'
+// :163:30: error: use of undefined value here causes illegal behavior
+// :163:30: note: when computing vector element at index '0'
+// :163:30: error: use of undefined value here causes illegal behavior
+// :163:30: note: when computing vector element at index '0'
+// :163:30: error: use of undefined value here causes illegal behavior
+// :163:30: error: use of undefined value here causes illegal behavior
+// :163:30: error: use of undefined value here causes illegal behavior
+// :163:30: error: use of undefined value here causes illegal behavior
+// :163:30: error: use of undefined value here causes illegal behavior
+// :163:30: error: use of undefined value here causes illegal behavior
+// :163:30: error: use of undefined value here causes illegal behavior
+// :163:30: note: when computing vector element at index '1'
+// :163:30: error: use of undefined value here causes illegal behavior
+// :163:30: note: when computing vector element at index '1'
+// :163:30: error: use of undefined value here causes illegal behavior
+// :163:30: note: when computing vector element at index '1'
+// :163:30: error: use of undefined value here causes illegal behavior
+// :163:30: note: when computing vector element at index '1'
+// :163:30: error: use of undefined value here causes illegal behavior
+// :163:30: note: when computing vector element at index '0'
+// :163:30: error: use of undefined value here causes illegal behavior
+// :163:30: note: when computing vector element at index '0'
+// :163:30: error: use of undefined value here causes illegal behavior
+// :163:30: note: when computing vector element at index '0'
+// :163:30: error: use of undefined value here causes illegal behavior
+// :163:30: note: when computing vector element at index '0'
+// :163:30: error: use of undefined value here causes illegal behavior
+// :163:30: error: use of undefined value here causes illegal behavior
+// :163:30: error: use of undefined value here causes illegal behavior
+// :163:30: error: use of undefined value here causes illegal behavior
+// :163:30: error: use of undefined value here causes illegal behavior
+// :163:30: error: use of undefined value here causes illegal behavior
+// :163:30: error: use of undefined value here causes illegal behavior
+// :163:30: note: when computing vector element at index '1'
+// :163:30: error: use of undefined value here causes illegal behavior
+// :163:30: note: when computing vector element at index '1'
+// :163:30: error: use of undefined value here causes illegal behavior
+// :163:30: note: when computing vector element at index '1'
+// :163:30: error: use of undefined value here causes illegal behavior
+// :163:30: note: when computing vector element at index '1'
+// :163:30: error: use of undefined value here causes illegal behavior
+// :163:30: note: when computing vector element at index '0'
+// :163:30: error: use of undefined value here causes illegal behavior
+// :163:30: note: when computing vector element at index '0'
+// :163:30: error: use of undefined value here causes illegal behavior
+// :163:30: note: when computing vector element at index '0'
+// :163:30: error: use of undefined value here causes illegal behavior
+// :163:30: note: when computing vector element at index '0'
+// :163:30: error: use of undefined value here causes illegal behavior
+// :163:30: error: use of undefined value here causes illegal behavior
+// :163:30: error: use of undefined value here causes illegal behavior
+// :163:30: error: use of undefined value here causes illegal behavior
+// :163:30: error: use of undefined value here causes illegal behavior
+// :163:30: error: use of undefined value here causes illegal behavior
+// :163:30: error: use of undefined value here causes illegal behavior
+// :163:30: note: when computing vector element at index '1'
+// :163:30: error: use of undefined value here causes illegal behavior
+// :163:30: note: when computing vector element at index '1'
+// :163:30: error: use of undefined value here causes illegal behavior
+// :163:30: note: when computing vector element at index '1'
+// :163:30: error: use of undefined value here causes illegal behavior
+// :163:30: note: when computing vector element at index '1'
+// :163:30: error: use of undefined value here causes illegal behavior
+// :163:30: note: when computing vector element at index '0'
+// :163:30: error: use of undefined value here causes illegal behavior
+// :163:30: note: when computing vector element at index '0'
+// :163:30: error: use of undefined value here causes illegal behavior
+// :163:30: note: when computing vector element at index '0'
+// :163:30: error: use of undefined value here causes illegal behavior
+// :163:30: note: when computing vector element at index '0'
+// :163:30: error: use of undefined value here causes illegal behavior
+// :163:30: error: use of undefined value here causes illegal behavior
+// :163:30: error: use of undefined value here causes illegal behavior
+// :163:30: error: use of undefined value here causes illegal behavior
+// :163:30: error: use of undefined value here causes illegal behavior
+// :163:30: error: use of undefined value here causes illegal behavior
+// :163:30: error: use of undefined value here causes illegal behavior
+// :163:30: note: when computing vector element at index '1'
+// :163:30: error: use of undefined value here causes illegal behavior
+// :163:30: note: when computing vector element at index '1'
+// :163:30: error: use of undefined value here causes illegal behavior
+// :163:30: note: when computing vector element at index '1'
+// :163:30: error: use of undefined value here causes illegal behavior
+// :163:30: note: when computing vector element at index '1'
+// :163:30: error: use of undefined value here causes illegal behavior
+// :163:30: note: when computing vector element at index '0'
+// :163:30: error: use of undefined value here causes illegal behavior
+// :163:30: note: when computing vector element at index '0'
+// :163:30: error: use of undefined value here causes illegal behavior
+// :163:30: note: when computing vector element at index '0'
+// :163:30: error: use of undefined value here causes illegal behavior
+// :163:30: note: when computing vector element at index '0'
+// :163:30: error: use of undefined value here causes illegal behavior
+// :163:30: error: use of undefined value here causes illegal behavior
+// :163:30: error: use of undefined value here causes illegal behavior
+// :163:30: error: use of undefined value here causes illegal behavior
+// :163:30: error: use of undefined value here causes illegal behavior
+// :163:30: error: use of undefined value here causes illegal behavior
+// :163:30: error: use of undefined value here causes illegal behavior
+// :163:30: note: when computing vector element at index '1'
+// :163:30: error: use of undefined value here causes illegal behavior
+// :163:30: note: when computing vector element at index '1'
+// :163:30: error: use of undefined value here causes illegal behavior
+// :163:30: note: when computing vector element at index '1'
+// :163:30: error: use of undefined value here causes illegal behavior
+// :163:30: note: when computing vector element at index '1'
+// :163:30: error: use of undefined value here causes illegal behavior
+// :163:30: note: when computing vector element at index '0'
+// :163:30: error: use of undefined value here causes illegal behavior
+// :163:30: note: when computing vector element at index '0'
+// :163:30: error: use of undefined value here causes illegal behavior
+// :163:30: note: when computing vector element at index '0'
+// :163:30: error: use of undefined value here causes illegal behavior
+// :163:30: note: when computing vector element at index '0'
+// :163:30: error: use of undefined value here causes illegal behavior
+// :163:30: error: use of undefined value here causes illegal behavior
+// :163:30: error: use of undefined value here causes illegal behavior
+// :163:30: error: use of undefined value here causes illegal behavior
+// :163:30: error: use of undefined value here causes illegal behavior
+// :163:30: error: use of undefined value here causes illegal behavior
+// :163:30: error: use of undefined value here causes illegal behavior
+// :163:30: note: when computing vector element at index '1'
+// :163:30: error: use of undefined value here causes illegal behavior
+// :163:30: note: when computing vector element at index '1'
+// :163:30: error: use of undefined value here causes illegal behavior
+// :163:30: note: when computing vector element at index '1'
+// :163:30: error: use of undefined value here causes illegal behavior
+// :163:30: note: when computing vector element at index '1'
+// :163:30: error: use of undefined value here causes illegal behavior
+// :163:30: note: when computing vector element at index '0'
+// :163:30: error: use of undefined value here causes illegal behavior
+// :163:30: note: when computing vector element at index '0'
+// :163:30: error: use of undefined value here causes illegal behavior
+// :163:30: note: when computing vector element at index '0'
+// :163:30: error: use of undefined value here causes illegal behavior
+// :163:30: note: when computing vector element at index '0'
+// :163:30: error: use of undefined value here causes illegal behavior
+// :163:30: error: use of undefined value here causes illegal behavior
+// :163:30: error: use of undefined value here causes illegal behavior
+// :163:30: error: use of undefined value here causes illegal behavior
+// :163:30: error: use of undefined value here causes illegal behavior
+// :163:30: error: use of undefined value here causes illegal behavior
+// :163:30: error: use of undefined value here causes illegal behavior
+// :163:30: note: when computing vector element at index '1'
+// :163:30: error: use of undefined value here causes illegal behavior
+// :163:30: note: when computing vector element at index '1'
+// :163:30: error: use of undefined value here causes illegal behavior
+// :163:30: note: when computing vector element at index '1'
+// :163:30: error: use of undefined value here causes illegal behavior
+// :163:30: note: when computing vector element at index '1'
+// :163:30: error: use of undefined value here causes illegal behavior
+// :163:30: note: when computing vector element at index '0'
+// :163:30: error: use of undefined value here causes illegal behavior
+// :163:30: note: when computing vector element at index '0'
+// :163:30: error: use of undefined value here causes illegal behavior
+// :163:30: note: when computing vector element at index '0'
+// :163:30: error: use of undefined value here causes illegal behavior
+// :163:30: note: when computing vector element at index '0'
+// :163:30: error: use of undefined value here causes illegal behavior
+// :163:30: error: use of undefined value here causes illegal behavior
+// :163:30: error: use of undefined value here causes illegal behavior
+// :163:30: error: use of undefined value here causes illegal behavior
+// :163:30: error: use of undefined value here causes illegal behavior
+// :163:30: error: use of undefined value here causes illegal behavior
+// :163:30: error: use of undefined value here causes illegal behavior
+// :163:30: note: when computing vector element at index '1'
+// :163:30: error: use of undefined value here causes illegal behavior
+// :163:30: note: when computing vector element at index '1'
+// :163:30: error: use of undefined value here causes illegal behavior
+// :163:30: note: when computing vector element at index '1'
+// :163:30: error: use of undefined value here causes illegal behavior
+// :163:30: note: when computing vector element at index '1'
+// :163:30: error: use of undefined value here causes illegal behavior
+// :163:30: note: when computing vector element at index '0'
+// :163:30: error: use of undefined value here causes illegal behavior
+// :163:30: note: when computing vector element at index '0'
+// :163:30: error: use of undefined value here causes illegal behavior
+// :163:30: note: when computing vector element at index '0'
+// :163:30: error: use of undefined value here causes illegal behavior
+// :163:30: note: when computing vector element at index '0'
+// :167:25: error: use of undefined value here causes illegal behavior
+// :167:25: error: use of undefined value here causes illegal behavior
+// :167:25: error: use of undefined value here causes illegal behavior
+// :167:25: error: use of undefined value here causes illegal behavior
+// :167:25: error: use of undefined value here causes illegal behavior
+// :167:25: error: use of undefined value here causes illegal behavior
+// :167:25: error: use of undefined value here causes illegal behavior
+// :167:25: note: when computing vector element at index '1'
+// :167:25: error: use of undefined value here causes illegal behavior
+// :167:25: note: when computing vector element at index '1'
+// :167:25: error: use of undefined value here causes illegal behavior
+// :167:25: note: when computing vector element at index '1'
+// :167:25: error: use of undefined value here causes illegal behavior
+// :167:25: note: when computing vector element at index '1'
+// :167:25: error: use of undefined value here causes illegal behavior
+// :167:25: note: when computing vector element at index '0'
+// :167:25: error: use of undefined value here causes illegal behavior
+// :167:25: note: when computing vector element at index '0'
+// :167:25: error: use of undefined value here causes illegal behavior
+// :167:25: note: when computing vector element at index '0'
+// :167:25: error: use of undefined value here causes illegal behavior
+// :167:25: note: when computing vector element at index '0'
+// :167:25: error: use of undefined value here causes illegal behavior
+// :167:25: error: use of undefined value here causes illegal behavior
+// :167:25: error: use of undefined value here causes illegal behavior
+// :167:25: error: use of undefined value here causes illegal behavior
+// :167:25: error: use of undefined value here causes illegal behavior
+// :167:25: error: use of undefined value here causes illegal behavior
+// :167:25: error: use of undefined value here causes illegal behavior
+// :167:25: note: when computing vector element at index '1'
+// :167:25: error: use of undefined value here causes illegal behavior
+// :167:25: note: when computing vector element at index '1'
+// :167:25: error: use of undefined value here causes illegal behavior
+// :167:25: note: when computing vector element at index '1'
+// :167:25: error: use of undefined value here causes illegal behavior
+// :167:25: note: when computing vector element at index '1'
+// :167:25: error: use of undefined value here causes illegal behavior
+// :167:25: note: when computing vector element at index '0'
+// :167:25: error: use of undefined value here causes illegal behavior
+// :167:25: note: when computing vector element at index '0'
+// :167:25: error: use of undefined value here causes illegal behavior
+// :167:25: note: when computing vector element at index '0'
+// :167:25: error: use of undefined value here causes illegal behavior
+// :167:25: note: when computing vector element at index '0'
+// :167:25: error: use of undefined value here causes illegal behavior
+// :167:25: error: use of undefined value here causes illegal behavior
+// :167:25: error: use of undefined value here causes illegal behavior
+// :167:25: error: use of undefined value here causes illegal behavior
+// :167:25: error: use of undefined value here causes illegal behavior
+// :167:25: error: use of undefined value here causes illegal behavior
+// :167:25: error: use of undefined value here causes illegal behavior
+// :167:25: note: when computing vector element at index '1'
+// :167:25: error: use of undefined value here causes illegal behavior
+// :167:25: note: when computing vector element at index '1'
+// :167:25: error: use of undefined value here causes illegal behavior
+// :167:25: note: when computing vector element at index '1'
+// :167:25: error: use of undefined value here causes illegal behavior
+// :167:25: note: when computing vector element at index '1'
+// :167:25: error: use of undefined value here causes illegal behavior
+// :167:25: note: when computing vector element at index '0'
+// :167:25: error: use of undefined value here causes illegal behavior
+// :167:25: note: when computing vector element at index '0'
+// :167:25: error: use of undefined value here causes illegal behavior
+// :167:25: note: when computing vector element at index '0'
+// :167:25: error: use of undefined value here causes illegal behavior
+// :167:25: note: when computing vector element at index '0'
+// :167:25: error: use of undefined value here causes illegal behavior
+// :167:25: error: use of undefined value here causes illegal behavior
+// :167:25: error: use of undefined value here causes illegal behavior
+// :167:25: error: use of undefined value here causes illegal behavior
+// :167:25: error: use of undefined value here causes illegal behavior
+// :167:25: error: use of undefined value here causes illegal behavior
+// :167:25: error: use of undefined value here causes illegal behavior
+// :167:25: note: when computing vector element at index '1'
+// :167:25: error: use of undefined value here causes illegal behavior
+// :167:25: note: when computing vector element at index '1'
+// :167:25: error: use of undefined value here causes illegal behavior
+// :167:25: note: when computing vector element at index '1'
+// :167:25: error: use of undefined value here causes illegal behavior
+// :167:25: note: when computing vector element at index '1'
+// :167:25: error: use of undefined value here causes illegal behavior
+// :167:25: note: when computing vector element at index '0'
+// :167:25: error: use of undefined value here causes illegal behavior
+// :167:25: note: when computing vector element at index '0'
+// :167:25: error: use of undefined value here causes illegal behavior
+// :167:25: note: when computing vector element at index '0'
+// :167:25: error: use of undefined value here causes illegal behavior
+// :167:25: note: when computing vector element at index '0'
+// :167:25: error: use of undefined value here causes illegal behavior
+// :167:25: error: use of undefined value here causes illegal behavior
+// :167:25: error: use of undefined value here causes illegal behavior
+// :167:25: error: use of undefined value here causes illegal behavior
+// :167:25: error: use of undefined value here causes illegal behavior
+// :167:25: error: use of undefined value here causes illegal behavior
+// :167:25: error: use of undefined value here causes illegal behavior
+// :167:25: note: when computing vector element at index '1'
+// :167:25: error: use of undefined value here causes illegal behavior
+// :167:25: note: when computing vector element at index '1'
+// :167:25: error: use of undefined value here causes illegal behavior
+// :167:25: note: when computing vector element at index '1'
+// :167:25: error: use of undefined value here causes illegal behavior
+// :167:25: note: when computing vector element at index '1'
+// :167:25: error: use of undefined value here causes illegal behavior
+// :167:25: note: when computing vector element at index '0'
+// :167:25: error: use of undefined value here causes illegal behavior
+// :167:25: note: when computing vector element at index '0'
+// :167:25: error: use of undefined value here causes illegal behavior
+// :167:25: note: when computing vector element at index '0'
+// :167:25: error: use of undefined value here causes illegal behavior
+// :167:25: note: when computing vector element at index '0'
+// :167:25: error: use of undefined value here causes illegal behavior
+// :167:25: error: use of undefined value here causes illegal behavior
+// :167:25: error: use of undefined value here causes illegal behavior
+// :167:25: error: use of undefined value here causes illegal behavior
+// :167:25: error: use of undefined value here causes illegal behavior
+// :167:25: error: use of undefined value here causes illegal behavior
+// :167:25: error: use of undefined value here causes illegal behavior
+// :167:25: note: when computing vector element at index '1'
+// :167:25: error: use of undefined value here causes illegal behavior
+// :167:25: note: when computing vector element at index '1'
+// :167:25: error: use of undefined value here causes illegal behavior
+// :167:25: note: when computing vector element at index '1'
+// :167:25: error: use of undefined value here causes illegal behavior
+// :167:25: note: when computing vector element at index '1'
+// :167:25: error: use of undefined value here causes illegal behavior
+// :167:25: note: when computing vector element at index '0'
+// :167:25: error: use of undefined value here causes illegal behavior
+// :167:25: note: when computing vector element at index '0'
+// :167:25: error: use of undefined value here causes illegal behavior
+// :167:25: note: when computing vector element at index '0'
+// :167:25: error: use of undefined value here causes illegal behavior
+// :167:25: note: when computing vector element at index '0'
+// :167:25: error: use of undefined value here causes illegal behavior
+// :167:25: error: use of undefined value here causes illegal behavior
+// :167:25: error: use of undefined value here causes illegal behavior
+// :167:25: error: use of undefined value here causes illegal behavior
+// :167:25: error: use of undefined value here causes illegal behavior
+// :167:25: error: use of undefined value here causes illegal behavior
+// :167:25: error: use of undefined value here causes illegal behavior
+// :167:25: note: when computing vector element at index '1'
+// :167:25: error: use of undefined value here causes illegal behavior
+// :167:25: note: when computing vector element at index '1'
+// :167:25: error: use of undefined value here causes illegal behavior
+// :167:25: note: when computing vector element at index '1'
+// :167:25: error: use of undefined value here causes illegal behavior
+// :167:25: note: when computing vector element at index '1'
+// :167:25: error: use of undefined value here causes illegal behavior
+// :167:25: note: when computing vector element at index '0'
+// :167:25: error: use of undefined value here causes illegal behavior
+// :167:25: note: when computing vector element at index '0'
+// :167:25: error: use of undefined value here causes illegal behavior
+// :167:25: note: when computing vector element at index '0'
+// :167:25: error: use of undefined value here causes illegal behavior
+// :167:25: note: when computing vector element at index '0'
+// :167:25: error: use of undefined value here causes illegal behavior
+// :167:25: error: use of undefined value here causes illegal behavior
+// :167:25: error: use of undefined value here causes illegal behavior
+// :167:25: error: use of undefined value here causes illegal behavior
+// :167:25: error: use of undefined value here causes illegal behavior
+// :167:25: error: use of undefined value here causes illegal behavior
+// :167:25: error: use of undefined value here causes illegal behavior
+// :167:25: note: when computing vector element at index '1'
+// :167:25: error: use of undefined value here causes illegal behavior
+// :167:25: note: when computing vector element at index '1'
+// :167:25: error: use of undefined value here causes illegal behavior
+// :167:25: note: when computing vector element at index '1'
+// :167:25: error: use of undefined value here causes illegal behavior
+// :167:25: note: when computing vector element at index '1'
+// :167:25: error: use of undefined value here causes illegal behavior
+// :167:25: note: when computing vector element at index '0'
+// :167:25: error: use of undefined value here causes illegal behavior
+// :167:25: note: when computing vector element at index '0'
+// :167:25: error: use of undefined value here causes illegal behavior
+// :167:25: note: when computing vector element at index '0'
+// :167:25: error: use of undefined value here causes illegal behavior
+// :167:25: note: when computing vector element at index '0'
+// :167:25: error: use of undefined value here causes illegal behavior
+// :167:25: error: use of undefined value here causes illegal behavior
+// :167:25: error: use of undefined value here causes illegal behavior
+// :167:25: error: use of undefined value here causes illegal behavior
+// :167:25: error: use of undefined value here causes illegal behavior
+// :167:25: error: use of undefined value here causes illegal behavior
+// :167:25: error: use of undefined value here causes illegal behavior
+// :167:25: note: when computing vector element at index '1'
+// :167:25: error: use of undefined value here causes illegal behavior
+// :167:25: note: when computing vector element at index '1'
+// :167:25: error: use of undefined value here causes illegal behavior
+// :167:25: note: when computing vector element at index '1'
+// :167:25: error: use of undefined value here causes illegal behavior
+// :167:25: note: when computing vector element at index '1'
+// :167:25: error: use of undefined value here causes illegal behavior
+// :167:25: note: when computing vector element at index '0'
+// :167:25: error: use of undefined value here causes illegal behavior
+// :167:25: note: when computing vector element at index '0'
+// :167:25: error: use of undefined value here causes illegal behavior
+// :167:25: note: when computing vector element at index '0'
+// :167:25: error: use of undefined value here causes illegal behavior
+// :167:25: note: when computing vector element at index '0'
+// :167:25: error: use of undefined value here causes illegal behavior
+// :167:25: error: use of undefined value here causes illegal behavior
+// :167:25: error: use of undefined value here causes illegal behavior
+// :167:25: error: use of undefined value here causes illegal behavior
+// :167:25: error: use of undefined value here causes illegal behavior
+// :167:25: error: use of undefined value here causes illegal behavior
+// :167:25: error: use of undefined value here causes illegal behavior
+// :167:25: note: when computing vector element at index '1'
+// :167:25: error: use of undefined value here causes illegal behavior
+// :167:25: note: when computing vector element at index '1'
+// :167:25: error: use of undefined value here causes illegal behavior
+// :167:25: note: when computing vector element at index '1'
+// :167:25: error: use of undefined value here causes illegal behavior
+// :167:25: note: when computing vector element at index '1'
+// :167:25: error: use of undefined value here causes illegal behavior
+// :167:25: note: when computing vector element at index '0'
+// :167:25: error: use of undefined value here causes illegal behavior
+// :167:25: note: when computing vector element at index '0'
+// :167:25: error: use of undefined value here causes illegal behavior
+// :167:25: note: when computing vector element at index '0'
+// :167:25: error: use of undefined value here causes illegal behavior
+// :167:25: note: when computing vector element at index '0'
+// :167:25: error: use of undefined value here causes illegal behavior
+// :167:25: error: use of undefined value here causes illegal behavior
+// :167:25: error: use of undefined value here causes illegal behavior
+// :167:25: error: use of undefined value here causes illegal behavior
+// :167:25: error: use of undefined value here causes illegal behavior
+// :167:25: error: use of undefined value here causes illegal behavior
+// :167:25: error: use of undefined value here causes illegal behavior
+// :167:25: note: when computing vector element at index '1'
+// :167:25: error: use of undefined value here causes illegal behavior
+// :167:25: note: when computing vector element at index '1'
+// :167:25: error: use of undefined value here causes illegal behavior
+// :167:25: note: when computing vector element at index '1'
+// :167:25: error: use of undefined value here causes illegal behavior
+// :167:25: note: when computing vector element at index '1'
+// :167:25: error: use of undefined value here causes illegal behavior
+// :167:25: note: when computing vector element at index '0'
+// :167:25: error: use of undefined value here causes illegal behavior
+// :167:25: note: when computing vector element at index '0'
+// :167:25: error: use of undefined value here causes illegal behavior
+// :167:25: note: when computing vector element at index '0'
+// :167:25: error: use of undefined value here causes illegal behavior
+// :167:25: note: when computing vector element at index '0'
+// :171:25: error: use of undefined value here causes illegal behavior
+// :171:25: error: use of undefined value here causes illegal behavior
+// :171:25: error: use of undefined value here causes illegal behavior
+// :171:25: error: use of undefined value here causes illegal behavior
+// :171:25: error: use of undefined value here causes illegal behavior
+// :171:25: error: use of undefined value here causes illegal behavior
+// :171:25: error: use of undefined value here causes illegal behavior
+// :171:25: note: when computing vector element at index '1'
+// :171:25: error: use of undefined value here causes illegal behavior
+// :171:25: note: when computing vector element at index '1'
+// :171:25: error: use of undefined value here causes illegal behavior
+// :171:25: note: when computing vector element at index '1'
+// :171:25: error: use of undefined value here causes illegal behavior
+// :171:25: note: when computing vector element at index '1'
+// :171:25: error: use of undefined value here causes illegal behavior
+// :171:25: note: when computing vector element at index '0'
+// :171:25: error: use of undefined value here causes illegal behavior
+// :171:25: note: when computing vector element at index '0'
+// :171:25: error: use of undefined value here causes illegal behavior
+// :171:25: note: when computing vector element at index '0'
+// :171:25: error: use of undefined value here causes illegal behavior
+// :171:25: note: when computing vector element at index '0'
+// :171:25: error: use of undefined value here causes illegal behavior
+// :171:25: error: use of undefined value here causes illegal behavior
+// :171:25: error: use of undefined value here causes illegal behavior
+// :171:25: error: use of undefined value here causes illegal behavior
+// :171:25: error: use of undefined value here causes illegal behavior
+// :171:25: error: use of undefined value here causes illegal behavior
+// :171:25: error: use of undefined value here causes illegal behavior
+// :171:25: note: when computing vector element at index '1'
+// :171:25: error: use of undefined value here causes illegal behavior
+// :171:25: note: when computing vector element at index '1'
+// :171:25: error: use of undefined value here causes illegal behavior
+// :171:25: note: when computing vector element at index '1'
+// :171:25: error: use of undefined value here causes illegal behavior
+// :171:25: note: when computing vector element at index '1'
+// :171:25: error: use of undefined value here causes illegal behavior
+// :171:25: note: when computing vector element at index '0'
+// :171:25: error: use of undefined value here causes illegal behavior
+// :171:25: note: when computing vector element at index '0'
+// :171:25: error: use of undefined value here causes illegal behavior
+// :171:25: note: when computing vector element at index '0'
+// :171:25: error: use of undefined value here causes illegal behavior
+// :171:25: note: when computing vector element at index '0'
+// :171:25: error: use of undefined value here causes illegal behavior
+// :171:25: error: use of undefined value here causes illegal behavior
+// :171:25: error: use of undefined value here causes illegal behavior
+// :171:25: error: use of undefined value here causes illegal behavior
+// :171:25: error: use of undefined value here causes illegal behavior
+// :171:25: error: use of undefined value here causes illegal behavior
+// :171:25: error: use of undefined value here causes illegal behavior
+// :171:25: note: when computing vector element at index '1'
+// :171:25: error: use of undefined value here causes illegal behavior
+// :171:25: note: when computing vector element at index '1'
+// :171:25: error: use of undefined value here causes illegal behavior
+// :171:25: note: when computing vector element at index '1'
+// :171:25: error: use of undefined value here causes illegal behavior
+// :171:25: note: when computing vector element at index '1'
+// :171:25: error: use of undefined value here causes illegal behavior
+// :171:25: note: when computing vector element at index '0'
+// :171:25: error: use of undefined value here causes illegal behavior
+// :171:25: note: when computing vector element at index '0'
+// :171:25: error: use of undefined value here causes illegal behavior
+// :171:25: note: when computing vector element at index '0'
+// :171:25: error: use of undefined value here causes illegal behavior
+// :171:25: note: when computing vector element at index '0'
+// :171:25: error: use of undefined value here causes illegal behavior
+// :171:25: error: use of undefined value here causes illegal behavior
+// :171:25: error: use of undefined value here causes illegal behavior
+// :171:25: error: use of undefined value here causes illegal behavior
+// :171:25: error: use of undefined value here causes illegal behavior
+// :171:25: error: use of undefined value here causes illegal behavior
+// :171:25: error: use of undefined value here causes illegal behavior
+// :171:25: note: when computing vector element at index '1'
+// :171:25: error: use of undefined value here causes illegal behavior
+// :171:25: note: when computing vector element at index '1'
+// :171:25: error: use of undefined value here causes illegal behavior
+// :171:25: note: when computing vector element at index '1'
+// :171:25: error: use of undefined value here causes illegal behavior
+// :171:25: note: when computing vector element at index '1'
+// :171:25: error: use of undefined value here causes illegal behavior
+// :171:25: note: when computing vector element at index '0'
+// :171:25: error: use of undefined value here causes illegal behavior
+// :171:25: note: when computing vector element at index '0'
+// :171:25: error: use of undefined value here causes illegal behavior
+// :171:25: note: when computing vector element at index '0'
+// :171:25: error: use of undefined value here causes illegal behavior
+// :171:25: note: when computing vector element at index '0'
+// :171:25: error: use of undefined value here causes illegal behavior
+// :171:25: error: use of undefined value here causes illegal behavior
+// :171:25: error: use of undefined value here causes illegal behavior
+// :171:25: error: use of undefined value here causes illegal behavior
+// :171:25: error: use of undefined value here causes illegal behavior
+// :171:25: error: use of undefined value here causes illegal behavior
+// :171:25: error: use of undefined value here causes illegal behavior
+// :171:25: note: when computing vector element at index '1'
+// :171:25: error: use of undefined value here causes illegal behavior
+// :171:25: note: when computing vector element at index '1'
+// :171:25: error: use of undefined value here causes illegal behavior
+// :171:25: note: when computing vector element at index '1'
+// :171:25: error: use of undefined value here causes illegal behavior
+// :171:25: note: when computing vector element at index '1'
+// :171:25: error: use of undefined value here causes illegal behavior
+// :171:25: note: when computing vector element at index '0'
+// :171:25: error: use of undefined value here causes illegal behavior
+// :171:25: note: when computing vector element at index '0'
+// :171:25: error: use of undefined value here causes illegal behavior
+// :171:25: note: when computing vector element at index '0'
+// :171:25: error: use of undefined value here causes illegal behavior
+// :171:25: note: when computing vector element at index '0'
+// :171:25: error: use of undefined value here causes illegal behavior
+// :171:25: error: use of undefined value here causes illegal behavior
+// :171:25: error: use of undefined value here causes illegal behavior
+// :171:25: error: use of undefined value here causes illegal behavior
+// :171:25: error: use of undefined value here causes illegal behavior
+// :171:25: error: use of undefined value here causes illegal behavior
+// :171:25: error: use of undefined value here causes illegal behavior
+// :171:25: note: when computing vector element at index '1'
+// :171:25: error: use of undefined value here causes illegal behavior
+// :171:25: note: when computing vector element at index '1'
+// :171:25: error: use of undefined value here causes illegal behavior
+// :171:25: note: when computing vector element at index '1'
+// :171:25: error: use of undefined value here causes illegal behavior
+// :171:25: note: when computing vector element at index '1'
+// :171:25: error: use of undefined value here causes illegal behavior
+// :171:25: note: when computing vector element at index '0'
+// :171:25: error: use of undefined value here causes illegal behavior
+// :171:25: note: when computing vector element at index '0'
+// :171:25: error: use of undefined value here causes illegal behavior
+// :171:25: note: when computing vector element at index '0'
+// :171:25: error: use of undefined value here causes illegal behavior
+// :171:25: note: when computing vector element at index '0'
+// :171:25: error: use of undefined value here causes illegal behavior
+// :171:25: error: use of undefined value here causes illegal behavior
+// :171:25: error: use of undefined value here causes illegal behavior
+// :171:25: error: use of undefined value here causes illegal behavior
+// :171:25: error: use of undefined value here causes illegal behavior
+// :171:25: error: use of undefined value here causes illegal behavior
+// :171:25: error: use of undefined value here causes illegal behavior
+// :171:25: note: when computing vector element at index '1'
+// :171:25: error: use of undefined value here causes illegal behavior
+// :171:25: note: when computing vector element at index '1'
+// :171:25: error: use of undefined value here causes illegal behavior
+// :171:25: note: when computing vector element at index '1'
+// :171:25: error: use of undefined value here causes illegal behavior
+// :171:25: note: when computing vector element at index '1'
+// :171:25: error: use of undefined value here causes illegal behavior
+// :171:25: note: when computing vector element at index '0'
+// :171:25: error: use of undefined value here causes illegal behavior
+// :171:25: note: when computing vector element at index '0'
+// :171:25: error: use of undefined value here causes illegal behavior
+// :171:25: note: when computing vector element at index '0'
+// :171:25: error: use of undefined value here causes illegal behavior
+// :171:25: note: when computing vector element at index '0'
+// :171:25: error: use of undefined value here causes illegal behavior
+// :171:25: error: use of undefined value here causes illegal behavior
+// :171:25: error: use of undefined value here causes illegal behavior
+// :171:25: error: use of undefined value here causes illegal behavior
+// :171:25: error: use of undefined value here causes illegal behavior
+// :171:25: error: use of undefined value here causes illegal behavior
+// :171:25: error: use of undefined value here causes illegal behavior
+// :171:25: note: when computing vector element at index '1'
+// :171:25: error: use of undefined value here causes illegal behavior
+// :171:25: note: when computing vector element at index '1'
+// :171:25: error: use of undefined value here causes illegal behavior
+// :171:25: note: when computing vector element at index '1'
+// :171:25: error: use of undefined value here causes illegal behavior
+// :171:25: note: when computing vector element at index '1'
+// :171:25: error: use of undefined value here causes illegal behavior
+// :171:25: note: when computing vector element at index '0'
+// :171:25: error: use of undefined value here causes illegal behavior
+// :171:25: note: when computing vector element at index '0'
+// :171:25: error: use of undefined value here causes illegal behavior
+// :171:25: note: when computing vector element at index '0'
+// :171:25: error: use of undefined value here causes illegal behavior
+// :171:25: note: when computing vector element at index '0'
+// :171:25: error: use of undefined value here causes illegal behavior
+// :171:25: error: use of undefined value here causes illegal behavior
+// :171:25: error: use of undefined value here causes illegal behavior
+// :171:25: error: use of undefined value here causes illegal behavior
+// :171:25: error: use of undefined value here causes illegal behavior
+// :171:25: error: use of undefined value here causes illegal behavior
+// :171:25: error: use of undefined value here causes illegal behavior
+// :171:25: note: when computing vector element at index '1'
+// :171:25: error: use of undefined value here causes illegal behavior
+// :171:25: note: when computing vector element at index '1'
+// :171:25: error: use of undefined value here causes illegal behavior
+// :171:25: note: when computing vector element at index '1'
+// :171:25: error: use of undefined value here causes illegal behavior
+// :171:25: note: when computing vector element at index '1'
+// :171:25: error: use of undefined value here causes illegal behavior
+// :171:25: note: when computing vector element at index '0'
+// :171:25: error: use of undefined value here causes illegal behavior
+// :171:25: note: when computing vector element at index '0'
+// :171:25: error: use of undefined value here causes illegal behavior
+// :171:25: note: when computing vector element at index '0'
+// :171:25: error: use of undefined value here causes illegal behavior
+// :171:25: note: when computing vector element at index '0'
+// :171:25: error: use of undefined value here causes illegal behavior
+// :171:25: error: use of undefined value here causes illegal behavior
+// :171:25: error: use of undefined value here causes illegal behavior
+// :171:25: error: use of undefined value here causes illegal behavior
+// :171:25: error: use of undefined value here causes illegal behavior
+// :171:25: error: use of undefined value here causes illegal behavior
+// :171:25: error: use of undefined value here causes illegal behavior
+// :171:25: note: when computing vector element at index '1'
+// :171:25: error: use of undefined value here causes illegal behavior
+// :171:25: note: when computing vector element at index '1'
+// :171:25: error: use of undefined value here causes illegal behavior
+// :171:25: note: when computing vector element at index '1'
+// :171:25: error: use of undefined value here causes illegal behavior
+// :171:25: note: when computing vector element at index '1'
+// :171:25: error: use of undefined value here causes illegal behavior
+// :171:25: note: when computing vector element at index '0'
+// :171:25: error: use of undefined value here causes illegal behavior
+// :171:25: note: when computing vector element at index '0'
+// :171:25: error: use of undefined value here causes illegal behavior
+// :171:25: note: when computing vector element at index '0'
+// :171:25: error: use of undefined value here causes illegal behavior
+// :171:25: note: when computing vector element at index '0'
+// :171:25: error: use of undefined value here causes illegal behavior
+// :171:25: error: use of undefined value here causes illegal behavior
+// :171:25: error: use of undefined value here causes illegal behavior
+// :171:25: error: use of undefined value here causes illegal behavior
+// :171:25: error: use of undefined value here causes illegal behavior
+// :171:25: error: use of undefined value here causes illegal behavior
+// :171:25: error: use of undefined value here causes illegal behavior
+// :171:25: note: when computing vector element at index '1'
+// :171:25: error: use of undefined value here causes illegal behavior
+// :171:25: note: when computing vector element at index '1'
+// :171:25: error: use of undefined value here causes illegal behavior
+// :171:25: note: when computing vector element at index '1'
+// :171:25: error: use of undefined value here causes illegal behavior
+// :171:25: note: when computing vector element at index '1'
+// :171:25: error: use of undefined value here causes illegal behavior
+// :171:25: note: when computing vector element at index '0'
+// :171:25: error: use of undefined value here causes illegal behavior
+// :171:25: note: when computing vector element at index '0'
+// :171:25: error: use of undefined value here causes illegal behavior
+// :171:25: note: when computing vector element at index '0'
+// :171:25: error: use of undefined value here causes illegal behavior
+// :171:25: note: when computing vector element at index '0'
+// :177:17: error: use of undefined value here causes illegal behavior
+// :177:17: error: use of undefined value here causes illegal behavior
+// :177:17: error: use of undefined value here causes illegal behavior
+// :177:17: note: when computing vector element at index '0'
+// :177:17: error: use of undefined value here causes illegal behavior
+// :177:17: note: when computing vector element at index '0'
+// :177:17: error: use of undefined value here causes illegal behavior
+// :177:17: note: when computing vector element at index '0'
+// :177:17: error: use of undefined value here causes illegal behavior
+// :177:17: note: when computing vector element at index '0'
+// :177:17: error: use of undefined value here causes illegal behavior
+// :177:17: note: when computing vector element at index '1'
+// :177:17: error: use of undefined value here causes illegal behavior
+// :177:17: note: when computing vector element at index '1'
+// :177:17: error: use of undefined value here causes illegal behavior
+// :177:17: note: when computing vector element at index '0'
+// :177:17: error: use of undefined value here causes illegal behavior
+// :177:17: note: when computing vector element at index '0'
+// :177:17: error: use of undefined value here causes illegal behavior
+// :177:17: note: when computing vector element at index '0'
+// :177:17: error: use of undefined value here causes illegal behavior
+// :177:17: note: when computing vector element at index '0'
+// :177:17: error: use of undefined value here causes illegal behavior
+// :177:17: error: use of undefined value here causes illegal behavior
+// :177:17: error: use of undefined value here causes illegal behavior
+// :177:17: note: when computing vector element at index '0'
+// :177:17: error: use of undefined value here causes illegal behavior
+// :177:17: note: when computing vector element at index '0'
+// :177:17: error: use of undefined value here causes illegal behavior
+// :177:17: note: when computing vector element at index '0'
+// :177:17: error: use of undefined value here causes illegal behavior
+// :177:17: note: when computing vector element at index '0'
+// :177:17: error: use of undefined value here causes illegal behavior
+// :177:17: note: when computing vector element at index '1'
+// :177:17: error: use of undefined value here causes illegal behavior
+// :177:17: note: when computing vector element at index '1'
+// :177:17: error: use of undefined value here causes illegal behavior
+// :177:17: note: when computing vector element at index '0'
+// :177:17: error: use of undefined value here causes illegal behavior
+// :177:17: note: when computing vector element at index '0'
+// :177:17: error: use of undefined value here causes illegal behavior
+// :177:17: note: when computing vector element at index '0'
+// :177:17: error: use of undefined value here causes illegal behavior
+// :177:17: note: when computing vector element at index '0'
+// :177:17: error: use of undefined value here causes illegal behavior
+// :177:17: error: use of undefined value here causes illegal behavior
+// :177:17: error: use of undefined value here causes illegal behavior
+// :177:17: note: when computing vector element at index '0'
+// :177:17: error: use of undefined value here causes illegal behavior
+// :177:17: note: when computing vector element at index '0'
+// :177:17: error: use of undefined value here causes illegal behavior
+// :177:17: note: when computing vector element at index '0'
+// :177:17: error: use of undefined value here causes illegal behavior
+// :177:17: note: when computing vector element at index '0'
+// :177:17: error: use of undefined value here causes illegal behavior
+// :177:17: note: when computing vector element at index '1'
+// :177:17: error: use of undefined value here causes illegal behavior
+// :177:17: note: when computing vector element at index '1'
+// :177:17: error: use of undefined value here causes illegal behavior
+// :177:17: note: when computing vector element at index '0'
+// :177:17: error: use of undefined value here causes illegal behavior
+// :177:17: note: when computing vector element at index '0'
+// :177:17: error: use of undefined value here causes illegal behavior
+// :177:17: note: when computing vector element at index '0'
+// :177:17: error: use of undefined value here causes illegal behavior
+// :177:17: note: when computing vector element at index '0'
+// :177:17: error: use of undefined value here causes illegal behavior
+// :177:17: error: use of undefined value here causes illegal behavior
+// :177:17: error: use of undefined value here causes illegal behavior
+// :177:17: note: when computing vector element at index '0'
+// :177:17: error: use of undefined value here causes illegal behavior
+// :177:17: note: when computing vector element at index '0'
+// :177:17: error: use of undefined value here causes illegal behavior
+// :177:17: note: when computing vector element at index '0'
+// :177:17: error: use of undefined value here causes illegal behavior
+// :177:17: note: when computing vector element at index '0'
+// :177:17: error: use of undefined value here causes illegal behavior
+// :177:17: note: when computing vector element at index '1'
+// :177:17: error: use of undefined value here causes illegal behavior
+// :177:17: note: when computing vector element at index '1'
+// :177:17: error: use of undefined value here causes illegal behavior
+// :177:17: note: when computing vector element at index '0'
+// :177:17: error: use of undefined value here causes illegal behavior
+// :177:17: note: when computing vector element at index '0'
+// :177:17: error: use of undefined value here causes illegal behavior
+// :177:17: note: when computing vector element at index '0'
+// :177:17: error: use of undefined value here causes illegal behavior
+// :177:17: note: when computing vector element at index '0'
+// :177:17: error: use of undefined value here causes illegal behavior
+// :177:17: error: use of undefined value here causes illegal behavior
+// :177:17: error: use of undefined value here causes illegal behavior
+// :177:17: note: when computing vector element at index '0'
+// :177:17: error: use of undefined value here causes illegal behavior
+// :177:17: note: when computing vector element at index '0'
+// :177:17: error: use of undefined value here causes illegal behavior
+// :177:17: note: when computing vector element at index '0'
+// :177:17: error: use of undefined value here causes illegal behavior
+// :177:17: note: when computing vector element at index '0'
+// :177:17: error: use of undefined value here causes illegal behavior
+// :177:17: note: when computing vector element at index '1'
+// :177:17: error: use of undefined value here causes illegal behavior
+// :177:17: note: when computing vector element at index '1'
+// :177:17: error: use of undefined value here causes illegal behavior
+// :177:17: note: when computing vector element at index '0'
+// :177:17: error: use of undefined value here causes illegal behavior
+// :177:17: note: when computing vector element at index '0'
+// :177:17: error: use of undefined value here causes illegal behavior
+// :177:17: note: when computing vector element at index '0'
+// :177:17: error: use of undefined value here causes illegal behavior
+// :177:17: note: when computing vector element at index '0'
+// :177:17: error: use of undefined value here causes illegal behavior
+// :177:17: error: use of undefined value here causes illegal behavior
+// :177:17: error: use of undefined value here causes illegal behavior
+// :177:17: note: when computing vector element at index '0'
+// :177:17: error: use of undefined value here causes illegal behavior
+// :177:17: note: when computing vector element at index '0'
+// :177:17: error: use of undefined value here causes illegal behavior
+// :177:17: note: when computing vector element at index '0'
+// :177:17: error: use of undefined value here causes illegal behavior
+// :177:17: note: when computing vector element at index '0'
+// :177:17: error: use of undefined value here causes illegal behavior
+// :177:17: note: when computing vector element at index '1'
+// :177:17: error: use of undefined value here causes illegal behavior
+// :177:17: note: when computing vector element at index '1'
+// :177:17: error: use of undefined value here causes illegal behavior
+// :177:17: note: when computing vector element at index '0'
+// :177:17: error: use of undefined value here causes illegal behavior
+// :177:17: note: when computing vector element at index '0'
+// :177:17: error: use of undefined value here causes illegal behavior
+// :177:17: note: when computing vector element at index '0'
+// :177:17: error: use of undefined value here causes illegal behavior
+// :177:17: note: when computing vector element at index '0'
+// :177:21: error: use of undefined value here causes illegal behavior
+// :177:21: note: when computing vector element at index '0'
+// :177:21: error: use of undefined value here causes illegal behavior
+// :177:21: note: when computing vector element at index '0'
+// :177:21: error: use of undefined value here causes illegal behavior
+// :177:21: note: when computing vector element at index '0'
+// :177:21: error: use of undefined value here causes illegal behavior
+// :177:21: note: when computing vector element at index '0'
+// :177:21: error: use of undefined value here causes illegal behavior
+// :177:21: note: when computing vector element at index '0'
+// :177:21: error: use of undefined value here causes illegal behavior
+// :177:21: note: when computing vector element at index '0'
+// :177:21: error: use of undefined value here causes illegal behavior
+// :177:21: note: when computing vector element at index '0'
+// :177:21: error: use of undefined value here causes illegal behavior
+// :177:21: note: when computing vector element at index '0'
+// :177:21: error: use of undefined value here causes illegal behavior
+// :177:21: note: when computing vector element at index '0'
+// :177:21: error: use of undefined value here causes illegal behavior
+// :177:21: note: when computing vector element at index '0'
+// :177:21: error: use of undefined value here causes illegal behavior
+// :177:21: note: when computing vector element at index '0'
+// :177:21: error: use of undefined value here causes illegal behavior
+// :177:21: note: when computing vector element at index '0'
+// :180:17: error: use of undefined value here causes illegal behavior
+// :180:17: error: use of undefined value here causes illegal behavior
+// :180:17: error: use of undefined value here causes illegal behavior
+// :180:17: note: when computing vector element at index '0'
+// :180:17: error: use of undefined value here causes illegal behavior
+// :180:17: note: when computing vector element at index '0'
+// :180:17: error: use of undefined value here causes illegal behavior
+// :180:17: note: when computing vector element at index '0'
+// :180:17: error: use of undefined value here causes illegal behavior
+// :180:17: note: when computing vector element at index '0'
+// :180:17: error: use of undefined value here causes illegal behavior
+// :180:17: note: when computing vector element at index '1'
+// :180:17: error: use of undefined value here causes illegal behavior
+// :180:17: note: when computing vector element at index '1'
+// :180:17: error: use of undefined value here causes illegal behavior
+// :180:17: note: when computing vector element at index '0'
+// :180:17: error: use of undefined value here causes illegal behavior
+// :180:17: note: when computing vector element at index '0'
+// :180:17: error: use of undefined value here causes illegal behavior
+// :180:17: note: when computing vector element at index '0'
+// :180:17: error: use of undefined value here causes illegal behavior
+// :180:17: note: when computing vector element at index '0'
+// :180:17: error: use of undefined value here causes illegal behavior
+// :180:17: error: use of undefined value here causes illegal behavior
+// :180:17: error: use of undefined value here causes illegal behavior
+// :180:17: note: when computing vector element at index '0'
+// :180:17: error: use of undefined value here causes illegal behavior
+// :180:17: note: when computing vector element at index '0'
+// :180:17: error: use of undefined value here causes illegal behavior
+// :180:17: note: when computing vector element at index '0'
+// :180:17: error: use of undefined value here causes illegal behavior
+// :180:17: note: when computing vector element at index '0'
+// :180:17: error: use of undefined value here causes illegal behavior
+// :180:17: note: when computing vector element at index '1'
+// :180:17: error: use of undefined value here causes illegal behavior
+// :180:17: note: when computing vector element at index '1'
+// :180:17: error: use of undefined value here causes illegal behavior
+// :180:17: note: when computing vector element at index '0'
+// :180:17: error: use of undefined value here causes illegal behavior
+// :180:17: note: when computing vector element at index '0'
+// :180:17: error: use of undefined value here causes illegal behavior
+// :180:17: note: when computing vector element at index '0'
+// :180:17: error: use of undefined value here causes illegal behavior
+// :180:17: note: when computing vector element at index '0'
+// :180:17: error: use of undefined value here causes illegal behavior
+// :180:17: error: use of undefined value here causes illegal behavior
+// :180:17: error: use of undefined value here causes illegal behavior
+// :180:17: note: when computing vector element at index '0'
+// :180:17: error: use of undefined value here causes illegal behavior
+// :180:17: note: when computing vector element at index '0'
+// :180:17: error: use of undefined value here causes illegal behavior
+// :180:17: note: when computing vector element at index '0'
+// :180:17: error: use of undefined value here causes illegal behavior
+// :180:17: note: when computing vector element at index '0'
+// :180:17: error: use of undefined value here causes illegal behavior
+// :180:17: note: when computing vector element at index '1'
+// :180:17: error: use of undefined value here causes illegal behavior
+// :180:17: note: when computing vector element at index '1'
+// :180:17: error: use of undefined value here causes illegal behavior
+// :180:17: note: when computing vector element at index '0'
+// :180:17: error: use of undefined value here causes illegal behavior
+// :180:17: note: when computing vector element at index '0'
+// :180:17: error: use of undefined value here causes illegal behavior
+// :180:17: note: when computing vector element at index '0'
+// :180:17: error: use of undefined value here causes illegal behavior
+// :180:17: note: when computing vector element at index '0'
+// :180:17: error: use of undefined value here causes illegal behavior
+// :180:17: error: use of undefined value here causes illegal behavior
+// :180:17: error: use of undefined value here causes illegal behavior
+// :180:17: note: when computing vector element at index '0'
+// :180:17: error: use of undefined value here causes illegal behavior
+// :180:17: note: when computing vector element at index '0'
+// :180:17: error: use of undefined value here causes illegal behavior
+// :180:17: note: when computing vector element at index '0'
+// :180:17: error: use of undefined value here causes illegal behavior
+// :180:17: note: when computing vector element at index '0'
+// :180:17: error: use of undefined value here causes illegal behavior
+// :180:17: note: when computing vector element at index '1'
+// :180:17: error: use of undefined value here causes illegal behavior
+// :180:17: note: when computing vector element at index '1'
+// :180:17: error: use of undefined value here causes illegal behavior
+// :180:17: note: when computing vector element at index '0'
+// :180:17: error: use of undefined value here causes illegal behavior
+// :180:17: note: when computing vector element at index '0'
+// :180:17: error: use of undefined value here causes illegal behavior
+// :180:17: note: when computing vector element at index '0'
+// :180:17: error: use of undefined value here causes illegal behavior
+// :180:17: note: when computing vector element at index '0'
+// :180:17: error: use of undefined value here causes illegal behavior
+// :180:17: error: use of undefined value here causes illegal behavior
+// :180:17: error: use of undefined value here causes illegal behavior
+// :180:17: note: when computing vector element at index '0'
+// :180:17: error: use of undefined value here causes illegal behavior
+// :180:17: note: when computing vector element at index '0'
+// :180:17: error: use of undefined value here causes illegal behavior
+// :180:17: note: when computing vector element at index '0'
+// :180:17: error: use of undefined value here causes illegal behavior
+// :180:17: note: when computing vector element at index '0'
+// :180:17: error: use of undefined value here causes illegal behavior
+// :180:17: note: when computing vector element at index '1'
+// :180:17: error: use of undefined value here causes illegal behavior
+// :180:17: note: when computing vector element at index '1'
+// :180:17: error: use of undefined value here causes illegal behavior
+// :180:17: note: when computing vector element at index '0'
+// :180:17: error: use of undefined value here causes illegal behavior
+// :180:17: note: when computing vector element at index '0'
+// :180:17: error: use of undefined value here causes illegal behavior
+// :180:17: note: when computing vector element at index '0'
+// :180:17: error: use of undefined value here causes illegal behavior
+// :180:17: note: when computing vector element at index '0'
+// :180:17: error: use of undefined value here causes illegal behavior
+// :180:17: error: use of undefined value here causes illegal behavior
+// :180:17: error: use of undefined value here causes illegal behavior
+// :180:17: note: when computing vector element at index '0'
+// :180:17: error: use of undefined value here causes illegal behavior
+// :180:17: note: when computing vector element at index '0'
+// :180:17: error: use of undefined value here causes illegal behavior
+// :180:17: note: when computing vector element at index '0'
+// :180:17: error: use of undefined value here causes illegal behavior
+// :180:17: note: when computing vector element at index '0'
+// :180:17: error: use of undefined value here causes illegal behavior
+// :180:17: note: when computing vector element at index '1'
+// :180:17: error: use of undefined value here causes illegal behavior
+// :180:17: note: when computing vector element at index '1'
+// :180:17: error: use of undefined value here causes illegal behavior
+// :180:17: note: when computing vector element at index '0'
+// :180:17: error: use of undefined value here causes illegal behavior
+// :180:17: note: when computing vector element at index '0'
+// :180:17: error: use of undefined value here causes illegal behavior
+// :180:17: note: when computing vector element at index '0'
+// :180:17: error: use of undefined value here causes illegal behavior
+// :180:17: note: when computing vector element at index '0'
+// :180:21: error: use of undefined value here causes illegal behavior
+// :180:21: note: when computing vector element at index '0'
+// :180:21: error: use of undefined value here causes illegal behavior
+// :180:21: note: when computing vector element at index '0'
+// :180:21: error: use of undefined value here causes illegal behavior
+// :180:21: note: when computing vector element at index '0'
+// :180:21: error: use of undefined value here causes illegal behavior
+// :180:21: note: when computing vector element at index '0'
+// :180:21: error: use of undefined value here causes illegal behavior
+// :180:21: note: when computing vector element at index '0'
+// :180:21: error: use of undefined value here causes illegal behavior
+// :180:21: note: when computing vector element at index '0'
+// :180:21: error: use of undefined value here causes illegal behavior
+// :180:21: note: when computing vector element at index '0'
+// :180:21: error: use of undefined value here causes illegal behavior
+// :180:21: note: when computing vector element at index '0'
+// :180:21: error: use of undefined value here causes illegal behavior
+// :180:21: note: when computing vector element at index '0'
+// :180:21: error: use of undefined value here causes illegal behavior
+// :180:21: note: when computing vector element at index '0'
+// :180:21: error: use of undefined value here causes illegal behavior
+// :180:21: note: when computing vector element at index '0'
+// :180:21: error: use of undefined value here causes illegal behavior
+// :180:21: note: when computing vector element at index '0'
// :183:17: error: use of undefined value here causes illegal behavior
// :183:17: error: use of undefined value here causes illegal behavior
// :183:17: error: use of undefined value here causes illegal behavior
@@ -7259,315 +7565,3 @@ const std = @import("std");
// :183:21: note: when computing vector element at index '0'
// :183:21: error: use of undefined value here causes illegal behavior
// :183:21: note: when computing vector element at index '0'
-// :186:17: error: use of undefined value here causes illegal behavior
-// :186:17: error: use of undefined value here causes illegal behavior
-// :186:17: error: use of undefined value here causes illegal behavior
-// :186:17: note: when computing vector element at index '0'
-// :186:17: error: use of undefined value here causes illegal behavior
-// :186:17: note: when computing vector element at index '0'
-// :186:17: error: use of undefined value here causes illegal behavior
-// :186:17: note: when computing vector element at index '0'
-// :186:17: error: use of undefined value here causes illegal behavior
-// :186:17: note: when computing vector element at index '0'
-// :186:17: error: use of undefined value here causes illegal behavior
-// :186:17: note: when computing vector element at index '1'
-// :186:17: error: use of undefined value here causes illegal behavior
-// :186:17: note: when computing vector element at index '1'
-// :186:17: error: use of undefined value here causes illegal behavior
-// :186:17: note: when computing vector element at index '0'
-// :186:17: error: use of undefined value here causes illegal behavior
-// :186:17: note: when computing vector element at index '0'
-// :186:17: error: use of undefined value here causes illegal behavior
-// :186:17: note: when computing vector element at index '0'
-// :186:17: error: use of undefined value here causes illegal behavior
-// :186:17: note: when computing vector element at index '0'
-// :186:17: error: use of undefined value here causes illegal behavior
-// :186:17: error: use of undefined value here causes illegal behavior
-// :186:17: error: use of undefined value here causes illegal behavior
-// :186:17: note: when computing vector element at index '0'
-// :186:17: error: use of undefined value here causes illegal behavior
-// :186:17: note: when computing vector element at index '0'
-// :186:17: error: use of undefined value here causes illegal behavior
-// :186:17: note: when computing vector element at index '0'
-// :186:17: error: use of undefined value here causes illegal behavior
-// :186:17: note: when computing vector element at index '0'
-// :186:17: error: use of undefined value here causes illegal behavior
-// :186:17: note: when computing vector element at index '1'
-// :186:17: error: use of undefined value here causes illegal behavior
-// :186:17: note: when computing vector element at index '1'
-// :186:17: error: use of undefined value here causes illegal behavior
-// :186:17: note: when computing vector element at index '0'
-// :186:17: error: use of undefined value here causes illegal behavior
-// :186:17: note: when computing vector element at index '0'
-// :186:17: error: use of undefined value here causes illegal behavior
-// :186:17: note: when computing vector element at index '0'
-// :186:17: error: use of undefined value here causes illegal behavior
-// :186:17: note: when computing vector element at index '0'
-// :186:17: error: use of undefined value here causes illegal behavior
-// :186:17: error: use of undefined value here causes illegal behavior
-// :186:17: error: use of undefined value here causes illegal behavior
-// :186:17: note: when computing vector element at index '0'
-// :186:17: error: use of undefined value here causes illegal behavior
-// :186:17: note: when computing vector element at index '0'
-// :186:17: error: use of undefined value here causes illegal behavior
-// :186:17: note: when computing vector element at index '0'
-// :186:17: error: use of undefined value here causes illegal behavior
-// :186:17: note: when computing vector element at index '0'
-// :186:17: error: use of undefined value here causes illegal behavior
-// :186:17: note: when computing vector element at index '1'
-// :186:17: error: use of undefined value here causes illegal behavior
-// :186:17: note: when computing vector element at index '1'
-// :186:17: error: use of undefined value here causes illegal behavior
-// :186:17: note: when computing vector element at index '0'
-// :186:17: error: use of undefined value here causes illegal behavior
-// :186:17: note: when computing vector element at index '0'
-// :186:17: error: use of undefined value here causes illegal behavior
-// :186:17: note: when computing vector element at index '0'
-// :186:17: error: use of undefined value here causes illegal behavior
-// :186:17: note: when computing vector element at index '0'
-// :186:17: error: use of undefined value here causes illegal behavior
-// :186:17: error: use of undefined value here causes illegal behavior
-// :186:17: error: use of undefined value here causes illegal behavior
-// :186:17: note: when computing vector element at index '0'
-// :186:17: error: use of undefined value here causes illegal behavior
-// :186:17: note: when computing vector element at index '0'
-// :186:17: error: use of undefined value here causes illegal behavior
-// :186:17: note: when computing vector element at index '0'
-// :186:17: error: use of undefined value here causes illegal behavior
-// :186:17: note: when computing vector element at index '0'
-// :186:17: error: use of undefined value here causes illegal behavior
-// :186:17: note: when computing vector element at index '1'
-// :186:17: error: use of undefined value here causes illegal behavior
-// :186:17: note: when computing vector element at index '1'
-// :186:17: error: use of undefined value here causes illegal behavior
-// :186:17: note: when computing vector element at index '0'
-// :186:17: error: use of undefined value here causes illegal behavior
-// :186:17: note: when computing vector element at index '0'
-// :186:17: error: use of undefined value here causes illegal behavior
-// :186:17: note: when computing vector element at index '0'
-// :186:17: error: use of undefined value here causes illegal behavior
-// :186:17: note: when computing vector element at index '0'
-// :186:17: error: use of undefined value here causes illegal behavior
-// :186:17: error: use of undefined value here causes illegal behavior
-// :186:17: error: use of undefined value here causes illegal behavior
-// :186:17: note: when computing vector element at index '0'
-// :186:17: error: use of undefined value here causes illegal behavior
-// :186:17: note: when computing vector element at index '0'
-// :186:17: error: use of undefined value here causes illegal behavior
-// :186:17: note: when computing vector element at index '0'
-// :186:17: error: use of undefined value here causes illegal behavior
-// :186:17: note: when computing vector element at index '0'
-// :186:17: error: use of undefined value here causes illegal behavior
-// :186:17: note: when computing vector element at index '1'
-// :186:17: error: use of undefined value here causes illegal behavior
-// :186:17: note: when computing vector element at index '1'
-// :186:17: error: use of undefined value here causes illegal behavior
-// :186:17: note: when computing vector element at index '0'
-// :186:17: error: use of undefined value here causes illegal behavior
-// :186:17: note: when computing vector element at index '0'
-// :186:17: error: use of undefined value here causes illegal behavior
-// :186:17: note: when computing vector element at index '0'
-// :186:17: error: use of undefined value here causes illegal behavior
-// :186:17: note: when computing vector element at index '0'
-// :186:17: error: use of undefined value here causes illegal behavior
-// :186:17: error: use of undefined value here causes illegal behavior
-// :186:17: error: use of undefined value here causes illegal behavior
-// :186:17: note: when computing vector element at index '0'
-// :186:17: error: use of undefined value here causes illegal behavior
-// :186:17: note: when computing vector element at index '0'
-// :186:17: error: use of undefined value here causes illegal behavior
-// :186:17: note: when computing vector element at index '0'
-// :186:17: error: use of undefined value here causes illegal behavior
-// :186:17: note: when computing vector element at index '0'
-// :186:17: error: use of undefined value here causes illegal behavior
-// :186:17: note: when computing vector element at index '1'
-// :186:17: error: use of undefined value here causes illegal behavior
-// :186:17: note: when computing vector element at index '1'
-// :186:17: error: use of undefined value here causes illegal behavior
-// :186:17: note: when computing vector element at index '0'
-// :186:17: error: use of undefined value here causes illegal behavior
-// :186:17: note: when computing vector element at index '0'
-// :186:17: error: use of undefined value here causes illegal behavior
-// :186:17: note: when computing vector element at index '0'
-// :186:17: error: use of undefined value here causes illegal behavior
-// :186:17: note: when computing vector element at index '0'
-// :186:21: error: use of undefined value here causes illegal behavior
-// :186:21: note: when computing vector element at index '0'
-// :186:21: error: use of undefined value here causes illegal behavior
-// :186:21: note: when computing vector element at index '0'
-// :186:21: error: use of undefined value here causes illegal behavior
-// :186:21: note: when computing vector element at index '0'
-// :186:21: error: use of undefined value here causes illegal behavior
-// :186:21: note: when computing vector element at index '0'
-// :186:21: error: use of undefined value here causes illegal behavior
-// :186:21: note: when computing vector element at index '0'
-// :186:21: error: use of undefined value here causes illegal behavior
-// :186:21: note: when computing vector element at index '0'
-// :186:21: error: use of undefined value here causes illegal behavior
-// :186:21: note: when computing vector element at index '0'
-// :186:21: error: use of undefined value here causes illegal behavior
-// :186:21: note: when computing vector element at index '0'
-// :186:21: error: use of undefined value here causes illegal behavior
-// :186:21: note: when computing vector element at index '0'
-// :186:21: error: use of undefined value here causes illegal behavior
-// :186:21: note: when computing vector element at index '0'
-// :186:21: error: use of undefined value here causes illegal behavior
-// :186:21: note: when computing vector element at index '0'
-// :186:21: error: use of undefined value here causes illegal behavior
-// :186:21: note: when computing vector element at index '0'
-// :189:17: error: use of undefined value here causes illegal behavior
-// :189:17: error: use of undefined value here causes illegal behavior
-// :189:17: error: use of undefined value here causes illegal behavior
-// :189:17: note: when computing vector element at index '0'
-// :189:17: error: use of undefined value here causes illegal behavior
-// :189:17: note: when computing vector element at index '0'
-// :189:17: error: use of undefined value here causes illegal behavior
-// :189:17: note: when computing vector element at index '0'
-// :189:17: error: use of undefined value here causes illegal behavior
-// :189:17: note: when computing vector element at index '0'
-// :189:17: error: use of undefined value here causes illegal behavior
-// :189:17: note: when computing vector element at index '1'
-// :189:17: error: use of undefined value here causes illegal behavior
-// :189:17: note: when computing vector element at index '1'
-// :189:17: error: use of undefined value here causes illegal behavior
-// :189:17: note: when computing vector element at index '0'
-// :189:17: error: use of undefined value here causes illegal behavior
-// :189:17: note: when computing vector element at index '0'
-// :189:17: error: use of undefined value here causes illegal behavior
-// :189:17: note: when computing vector element at index '0'
-// :189:17: error: use of undefined value here causes illegal behavior
-// :189:17: note: when computing vector element at index '0'
-// :189:17: error: use of undefined value here causes illegal behavior
-// :189:17: error: use of undefined value here causes illegal behavior
-// :189:17: error: use of undefined value here causes illegal behavior
-// :189:17: note: when computing vector element at index '0'
-// :189:17: error: use of undefined value here causes illegal behavior
-// :189:17: note: when computing vector element at index '0'
-// :189:17: error: use of undefined value here causes illegal behavior
-// :189:17: note: when computing vector element at index '0'
-// :189:17: error: use of undefined value here causes illegal behavior
-// :189:17: note: when computing vector element at index '0'
-// :189:17: error: use of undefined value here causes illegal behavior
-// :189:17: note: when computing vector element at index '1'
-// :189:17: error: use of undefined value here causes illegal behavior
-// :189:17: note: when computing vector element at index '1'
-// :189:17: error: use of undefined value here causes illegal behavior
-// :189:17: note: when computing vector element at index '0'
-// :189:17: error: use of undefined value here causes illegal behavior
-// :189:17: note: when computing vector element at index '0'
-// :189:17: error: use of undefined value here causes illegal behavior
-// :189:17: note: when computing vector element at index '0'
-// :189:17: error: use of undefined value here causes illegal behavior
-// :189:17: note: when computing vector element at index '0'
-// :189:17: error: use of undefined value here causes illegal behavior
-// :189:17: error: use of undefined value here causes illegal behavior
-// :189:17: error: use of undefined value here causes illegal behavior
-// :189:17: note: when computing vector element at index '0'
-// :189:17: error: use of undefined value here causes illegal behavior
-// :189:17: note: when computing vector element at index '0'
-// :189:17: error: use of undefined value here causes illegal behavior
-// :189:17: note: when computing vector element at index '0'
-// :189:17: error: use of undefined value here causes illegal behavior
-// :189:17: note: when computing vector element at index '0'
-// :189:17: error: use of undefined value here causes illegal behavior
-// :189:17: note: when computing vector element at index '1'
-// :189:17: error: use of undefined value here causes illegal behavior
-// :189:17: note: when computing vector element at index '1'
-// :189:17: error: use of undefined value here causes illegal behavior
-// :189:17: note: when computing vector element at index '0'
-// :189:17: error: use of undefined value here causes illegal behavior
-// :189:17: note: when computing vector element at index '0'
-// :189:17: error: use of undefined value here causes illegal behavior
-// :189:17: note: when computing vector element at index '0'
-// :189:17: error: use of undefined value here causes illegal behavior
-// :189:17: note: when computing vector element at index '0'
-// :189:17: error: use of undefined value here causes illegal behavior
-// :189:17: error: use of undefined value here causes illegal behavior
-// :189:17: error: use of undefined value here causes illegal behavior
-// :189:17: note: when computing vector element at index '0'
-// :189:17: error: use of undefined value here causes illegal behavior
-// :189:17: note: when computing vector element at index '0'
-// :189:17: error: use of undefined value here causes illegal behavior
-// :189:17: note: when computing vector element at index '0'
-// :189:17: error: use of undefined value here causes illegal behavior
-// :189:17: note: when computing vector element at index '0'
-// :189:17: error: use of undefined value here causes illegal behavior
-// :189:17: note: when computing vector element at index '1'
-// :189:17: error: use of undefined value here causes illegal behavior
-// :189:17: note: when computing vector element at index '1'
-// :189:17: error: use of undefined value here causes illegal behavior
-// :189:17: note: when computing vector element at index '0'
-// :189:17: error: use of undefined value here causes illegal behavior
-// :189:17: note: when computing vector element at index '0'
-// :189:17: error: use of undefined value here causes illegal behavior
-// :189:17: note: when computing vector element at index '0'
-// :189:17: error: use of undefined value here causes illegal behavior
-// :189:17: note: when computing vector element at index '0'
-// :189:17: error: use of undefined value here causes illegal behavior
-// :189:17: error: use of undefined value here causes illegal behavior
-// :189:17: error: use of undefined value here causes illegal behavior
-// :189:17: note: when computing vector element at index '0'
-// :189:17: error: use of undefined value here causes illegal behavior
-// :189:17: note: when computing vector element at index '0'
-// :189:17: error: use of undefined value here causes illegal behavior
-// :189:17: note: when computing vector element at index '0'
-// :189:17: error: use of undefined value here causes illegal behavior
-// :189:17: note: when computing vector element at index '0'
-// :189:17: error: use of undefined value here causes illegal behavior
-// :189:17: note: when computing vector element at index '1'
-// :189:17: error: use of undefined value here causes illegal behavior
-// :189:17: note: when computing vector element at index '1'
-// :189:17: error: use of undefined value here causes illegal behavior
-// :189:17: note: when computing vector element at index '0'
-// :189:17: error: use of undefined value here causes illegal behavior
-// :189:17: note: when computing vector element at index '0'
-// :189:17: error: use of undefined value here causes illegal behavior
-// :189:17: note: when computing vector element at index '0'
-// :189:17: error: use of undefined value here causes illegal behavior
-// :189:17: note: when computing vector element at index '0'
-// :189:17: error: use of undefined value here causes illegal behavior
-// :189:17: error: use of undefined value here causes illegal behavior
-// :189:17: error: use of undefined value here causes illegal behavior
-// :189:17: note: when computing vector element at index '0'
-// :189:17: error: use of undefined value here causes illegal behavior
-// :189:17: note: when computing vector element at index '0'
-// :189:17: error: use of undefined value here causes illegal behavior
-// :189:17: note: when computing vector element at index '0'
-// :189:17: error: use of undefined value here causes illegal behavior
-// :189:17: note: when computing vector element at index '0'
-// :189:17: error: use of undefined value here causes illegal behavior
-// :189:17: note: when computing vector element at index '1'
-// :189:17: error: use of undefined value here causes illegal behavior
-// :189:17: note: when computing vector element at index '1'
-// :189:17: error: use of undefined value here causes illegal behavior
-// :189:17: note: when computing vector element at index '0'
-// :189:17: error: use of undefined value here causes illegal behavior
-// :189:17: note: when computing vector element at index '0'
-// :189:17: error: use of undefined value here causes illegal behavior
-// :189:17: note: when computing vector element at index '0'
-// :189:17: error: use of undefined value here causes illegal behavior
-// :189:17: note: when computing vector element at index '0'
-// :189:21: error: use of undefined value here causes illegal behavior
-// :189:21: note: when computing vector element at index '0'
-// :189:21: error: use of undefined value here causes illegal behavior
-// :189:21: note: when computing vector element at index '0'
-// :189:21: error: use of undefined value here causes illegal behavior
-// :189:21: note: when computing vector element at index '0'
-// :189:21: error: use of undefined value here causes illegal behavior
-// :189:21: note: when computing vector element at index '0'
-// :189:21: error: use of undefined value here causes illegal behavior
-// :189:21: note: when computing vector element at index '0'
-// :189:21: error: use of undefined value here causes illegal behavior
-// :189:21: note: when computing vector element at index '0'
-// :189:21: error: use of undefined value here causes illegal behavior
-// :189:21: note: when computing vector element at index '0'
-// :189:21: error: use of undefined value here causes illegal behavior
-// :189:21: note: when computing vector element at index '0'
-// :189:21: error: use of undefined value here causes illegal behavior
-// :189:21: note: when computing vector element at index '0'
-// :189:21: error: use of undefined value here causes illegal behavior
-// :189:21: note: when computing vector element at index '0'
-// :189:21: error: use of undefined value here causes illegal behavior
-// :189:21: note: when computing vector element at index '0'
-// :189:21: error: use of undefined value here causes illegal behavior
-// :189:21: note: when computing vector element at index '0'