master
   1//! For arithmetic operations which can trigger Illegal Behavior, this test evaluates those
   2//! operations with undefined operands (or partially-undefined vector operands), and ensures that a
   3//! compile error is emitted as expected.
   4
   5comptime {
   6    // Total expected errors:
   7    // 29*14*6 + 26*14*5 = 4256
   8
   9    testType(u8);
  10    testType(i8);
  11    testType(u32);
  12    testType(i32);
  13    testType(u500);
  14    testType(i500);
  15
  16    testType(f16);
  17    testType(f32);
  18    testType(f64);
  19    testType(f80);
  20    testType(f128);
  21}
  22
  23fn testType(comptime Scalar: type) void {
  24    // zig fmt: off
  25    testInner(Scalar,             undefined,                 1                        );
  26    testInner(Scalar,             undefined,                 undefined                );
  27    testInner(@Vector(2, Scalar), .{ undefined, undefined }, .{ undefined, undefined });
  28    testInner(@Vector(2, Scalar), .{ undefined, undefined }, .{ 1,         2         });
  29    testInner(@Vector(2, Scalar), .{ undefined, undefined }, .{ 1,         undefined });
  30    testInner(@Vector(2, Scalar), .{ undefined, undefined }, .{ undefined, 2         });
  31    testInner(@Vector(2, Scalar), .{ 1,         undefined }, .{ undefined, undefined });
  32    testInner(@Vector(2, Scalar), .{ 1,         undefined }, .{ 1,         2         });
  33    testInner(@Vector(2, Scalar), .{ 1,         undefined }, .{ 1,         undefined });
  34    testInner(@Vector(2, Scalar), .{ 1,         undefined }, .{ undefined, 2         });
  35    testInner(@Vector(2, Scalar), .{ undefined, 2         }, .{ undefined, undefined });
  36    testInner(@Vector(2, Scalar), .{ undefined, 2         }, .{ 1,         2         });
  37    testInner(@Vector(2, Scalar), .{ undefined, 2         }, .{ 1,         undefined });
  38    testInner(@Vector(2, Scalar), .{ undefined, 2         }, .{ undefined, 2         });
  39    // zig fmt: on
  40}
  41
  42/// At the time of writing, this is expected to trigger:
  43/// * 26 errors if `T` is a float (or vector of floats)
  44/// * 29 errors if `T` is an int (or vector of ints)
  45fn testInner(comptime T: type, comptime u: T, comptime maybe_defined: T) void {
  46    const Scalar = switch (@typeInfo(T)) {
  47        .float, .int => T,
  48        .vector => |v| v.child,
  49        else => unreachable,
  50    };
  51
  52    const mode: std.builtin.FloatMode = switch (@typeInfo(Scalar)) {
  53        .float => .optimized,
  54        .int => .strict, // it shouldn't matter
  55        else => unreachable,
  56    };
  57
  58    _ = struct {
  59        const a: T = maybe_defined;
  60        var b: T = maybe_defined;
  61
  62        // undef LHS, comptime-known RHS
  63        comptime {
  64            @setFloatMode(mode);
  65            _ = u / a;
  66        }
  67        comptime {
  68            @setFloatMode(mode);
  69            _ = @divFloor(u, a);
  70        }
  71        comptime {
  72            @setFloatMode(mode);
  73            _ = @divTrunc(u, a);
  74        }
  75        comptime {
  76            // Don't need to set float mode, because this can be IB anyway
  77            _ = @divExact(u, a);
  78        }
  79        comptime {
  80            @setFloatMode(mode);
  81            _ = u % a;
  82        }
  83        comptime {
  84            @setFloatMode(mode);
  85            _ = @mod(u, a);
  86        }
  87        comptime {
  88            @setFloatMode(mode);
  89            _ = @rem(u, a);
  90        }
  91
  92        // undef LHS, runtime-known RHS
  93        comptime {
  94            @setFloatMode(mode);
  95            _ = u / b;
  96        }
  97        comptime {
  98            @setFloatMode(mode);
  99            _ = @divFloor(u, b);
 100        }
 101        comptime {
 102            @setFloatMode(mode);
 103            _ = @divTrunc(u, b);
 104        }
 105        comptime {
 106            // Don't need to set float mode, because this can be IB anyway
 107            _ = @divExact(u, b);
 108        }
 109        comptime {
 110            @setFloatMode(mode);
 111            _ = @mod(u, b);
 112        }
 113        comptime {
 114            @setFloatMode(mode);
 115            _ = @rem(u, b);
 116        }
 117
 118        // undef RHS, comptime-known LHS
 119        comptime {
 120            @setFloatMode(mode);
 121            _ = a / u;
 122        }
 123        comptime {
 124            @setFloatMode(mode);
 125            _ = @divFloor(a, u);
 126        }
 127        comptime {
 128            @setFloatMode(mode);
 129            _ = @divTrunc(a, u);
 130        }
 131        comptime {
 132            // Don't need to set float mode, because this can be IB anyway
 133            _ = @divExact(a, u);
 134        }
 135        comptime {
 136            @setFloatMode(mode);
 137            _ = a % u;
 138        }
 139        comptime {
 140            @setFloatMode(mode);
 141            _ = @mod(a, u);
 142        }
 143        comptime {
 144            @setFloatMode(mode);
 145            _ = @rem(a, u);
 146        }
 147
 148        // undef RHS, runtime-known LHS
 149        comptime {
 150            @setFloatMode(mode);
 151            _ = b / u;
 152        }
 153        comptime {
 154            @setFloatMode(mode);
 155            _ = @divFloor(b, u);
 156        }
 157        comptime {
 158            @setFloatMode(mode);
 159            _ = @divTrunc(b, u);
 160        }
 161        comptime {
 162            // Don't need to set float mode, because this can be IB anyway
 163            _ = @divExact(b, u);
 164        }
 165        comptime {
 166            @setFloatMode(mode);
 167            _ = @mod(b, u);
 168        }
 169        comptime {
 170            @setFloatMode(mode);
 171            _ = @rem(b, u);
 172        }
 173
 174        // The following tests should only fail for integer types.
 175
 176        comptime {
 177            _ = u + a;
 178        }
 179        comptime {
 180            _ = u - a;
 181        }
 182        comptime {
 183            _ = u * a;
 184        }
 185    };
 186}
 187
 188const std = @import("std");
 189
 190// error
 191//
 192// :65:17: error: use of undefined value here causes illegal behavior
 193// :65:17: error: use of undefined value here causes illegal behavior
 194// :65:17: error: use of undefined value here causes illegal behavior
 195// :65:17: note: when computing vector element at index '0'
 196// :65:17: error: use of undefined value here causes illegal behavior
 197// :65:17: note: when computing vector element at index '0'
 198// :65:17: error: use of undefined value here causes illegal behavior
 199// :65:17: note: when computing vector element at index '0'
 200// :65:17: error: use of undefined value here causes illegal behavior
 201// :65:17: note: when computing vector element at index '0'
 202// :65:17: error: use of undefined value here causes illegal behavior
 203// :65:17: note: when computing vector element at index '1'
 204// :65:17: error: use of undefined value here causes illegal behavior
 205// :65:17: note: when computing vector element at index '1'
 206// :65:17: error: use of undefined value here causes illegal behavior
 207// :65:17: note: when computing vector element at index '0'
 208// :65:17: error: use of undefined value here causes illegal behavior
 209// :65:17: note: when computing vector element at index '0'
 210// :65:17: error: use of undefined value here causes illegal behavior
 211// :65:17: note: when computing vector element at index '0'
 212// :65:17: error: use of undefined value here causes illegal behavior
 213// :65:17: note: when computing vector element at index '0'
 214// :65:17: error: use of undefined value here causes illegal behavior
 215// :65:17: error: use of undefined value here causes illegal behavior
 216// :65:17: error: use of undefined value here causes illegal behavior
 217// :65:17: note: when computing vector element at index '0'
 218// :65:17: error: use of undefined value here causes illegal behavior
 219// :65:17: note: when computing vector element at index '0'
 220// :65:17: error: use of undefined value here causes illegal behavior
 221// :65:17: note: when computing vector element at index '0'
 222// :65:17: error: use of undefined value here causes illegal behavior
 223// :65:17: note: when computing vector element at index '0'
 224// :65:17: error: use of undefined value here causes illegal behavior
 225// :65:17: note: when computing vector element at index '1'
 226// :65:17: error: use of undefined value here causes illegal behavior
 227// :65:17: note: when computing vector element at index '1'
 228// :65:17: error: use of undefined value here causes illegal behavior
 229// :65:17: note: when computing vector element at index '0'
 230// :65:17: error: use of undefined value here causes illegal behavior
 231// :65:17: note: when computing vector element at index '0'
 232// :65:17: error: use of undefined value here causes illegal behavior
 233// :65:17: note: when computing vector element at index '0'
 234// :65:17: error: use of undefined value here causes illegal behavior
 235// :65:17: note: when computing vector element at index '0'
 236// :65:17: error: use of undefined value here causes illegal behavior
 237// :65:17: error: use of undefined value here causes illegal behavior
 238// :65:17: error: use of undefined value here causes illegal behavior
 239// :65:17: note: when computing vector element at index '0'
 240// :65:17: error: use of undefined value here causes illegal behavior
 241// :65:17: note: when computing vector element at index '0'
 242// :65:17: error: use of undefined value here causes illegal behavior
 243// :65:17: note: when computing vector element at index '0'
 244// :65:17: error: use of undefined value here causes illegal behavior
 245// :65:17: note: when computing vector element at index '0'
 246// :65:17: error: use of undefined value here causes illegal behavior
 247// :65:17: note: when computing vector element at index '1'
 248// :65:17: error: use of undefined value here causes illegal behavior
 249// :65:17: note: when computing vector element at index '1'
 250// :65:17: error: use of undefined value here causes illegal behavior
 251// :65:17: note: when computing vector element at index '0'
 252// :65:17: error: use of undefined value here causes illegal behavior
 253// :65:17: note: when computing vector element at index '0'
 254// :65:17: error: use of undefined value here causes illegal behavior
 255// :65:17: note: when computing vector element at index '0'
 256// :65:17: error: use of undefined value here causes illegal behavior
 257// :65:17: note: when computing vector element at index '0'
 258// :65:17: error: use of undefined value here causes illegal behavior
 259// :65:17: error: use of undefined value here causes illegal behavior
 260// :65:17: error: use of undefined value here causes illegal behavior
 261// :65:17: note: when computing vector element at index '0'
 262// :65:17: error: use of undefined value here causes illegal behavior
 263// :65:17: note: when computing vector element at index '0'
 264// :65:17: error: use of undefined value here causes illegal behavior
 265// :65:17: note: when computing vector element at index '0'
 266// :65:17: error: use of undefined value here causes illegal behavior
 267// :65:17: note: when computing vector element at index '0'
 268// :65:17: error: use of undefined value here causes illegal behavior
 269// :65:17: note: when computing vector element at index '1'
 270// :65:17: error: use of undefined value here causes illegal behavior
 271// :65:17: note: when computing vector element at index '1'
 272// :65:17: error: use of undefined value here causes illegal behavior
 273// :65:17: note: when computing vector element at index '0'
 274// :65:17: error: use of undefined value here causes illegal behavior
 275// :65:17: note: when computing vector element at index '0'
 276// :65:17: error: use of undefined value here causes illegal behavior
 277// :65:17: note: when computing vector element at index '0'
 278// :65:17: error: use of undefined value here causes illegal behavior
 279// :65:17: note: when computing vector element at index '0'
 280// :65:17: error: use of undefined value here causes illegal behavior
 281// :65:17: error: use of undefined value here causes illegal behavior
 282// :65:17: error: use of undefined value here causes illegal behavior
 283// :65:17: note: when computing vector element at index '0'
 284// :65:17: error: use of undefined value here causes illegal behavior
 285// :65:17: note: when computing vector element at index '0'
 286// :65:17: error: use of undefined value here causes illegal behavior
 287// :65:17: note: when computing vector element at index '0'
 288// :65:17: error: use of undefined value here causes illegal behavior
 289// :65:17: note: when computing vector element at index '0'
 290// :65:17: error: use of undefined value here causes illegal behavior
 291// :65:17: note: when computing vector element at index '1'
 292// :65:17: error: use of undefined value here causes illegal behavior
 293// :65:17: note: when computing vector element at index '1'
 294// :65:17: error: use of undefined value here causes illegal behavior
 295// :65:17: note: when computing vector element at index '0'
 296// :65:17: error: use of undefined value here causes illegal behavior
 297// :65:17: note: when computing vector element at index '0'
 298// :65:17: error: use of undefined value here causes illegal behavior
 299// :65:17: note: when computing vector element at index '0'
 300// :65:17: error: use of undefined value here causes illegal behavior
 301// :65:17: note: when computing vector element at index '0'
 302// :65:17: error: use of undefined value here causes illegal behavior
 303// :65:17: error: use of undefined value here causes illegal behavior
 304// :65:17: error: use of undefined value here causes illegal behavior
 305// :65:17: note: when computing vector element at index '0'
 306// :65:17: error: use of undefined value here causes illegal behavior
 307// :65:17: note: when computing vector element at index '0'
 308// :65:17: error: use of undefined value here causes illegal behavior
 309// :65:17: note: when computing vector element at index '0'
 310// :65:17: error: use of undefined value here causes illegal behavior
 311// :65:17: note: when computing vector element at index '0'
 312// :65:17: error: use of undefined value here causes illegal behavior
 313// :65:17: note: when computing vector element at index '1'
 314// :65:17: error: use of undefined value here causes illegal behavior
 315// :65:17: note: when computing vector element at index '1'
 316// :65:17: error: use of undefined value here causes illegal behavior
 317// :65:17: note: when computing vector element at index '0'
 318// :65:17: error: use of undefined value here causes illegal behavior
 319// :65:17: note: when computing vector element at index '0'
 320// :65:17: error: use of undefined value here causes illegal behavior
 321// :65:17: note: when computing vector element at index '0'
 322// :65:17: error: use of undefined value here causes illegal behavior
 323// :65:17: note: when computing vector element at index '0'
 324// :65:17: error: use of undefined value here causes illegal behavior
 325// :65:17: error: use of undefined value here causes illegal behavior
 326// :65:17: error: use of undefined value here causes illegal behavior
 327// :65:17: note: when computing vector element at index '0'
 328// :65:17: error: use of undefined value here causes illegal behavior
 329// :65:17: note: when computing vector element at index '0'
 330// :65:17: error: use of undefined value here causes illegal behavior
 331// :65:17: note: when computing vector element at index '0'
 332// :65:17: error: use of undefined value here causes illegal behavior
 333// :65:17: note: when computing vector element at index '0'
 334// :65:17: error: use of undefined value here causes illegal behavior
 335// :65:17: note: when computing vector element at index '1'
 336// :65:17: error: use of undefined value here causes illegal behavior
 337// :65:17: note: when computing vector element at index '1'
 338// :65:17: error: use of undefined value here causes illegal behavior
 339// :65:17: note: when computing vector element at index '0'
 340// :65:17: error: use of undefined value here causes illegal behavior
 341// :65:17: note: when computing vector element at index '0'
 342// :65:17: error: use of undefined value here causes illegal behavior
 343// :65:17: note: when computing vector element at index '0'
 344// :65:17: error: use of undefined value here causes illegal behavior
 345// :65:17: note: when computing vector element at index '0'
 346// :65:17: error: use of undefined value here causes illegal behavior
 347// :65:17: error: use of undefined value here causes illegal behavior
 348// :65:17: error: use of undefined value here causes illegal behavior
 349// :65:17: note: when computing vector element at index '0'
 350// :65:17: error: use of undefined value here causes illegal behavior
 351// :65:17: note: when computing vector element at index '0'
 352// :65:17: error: use of undefined value here causes illegal behavior
 353// :65:17: note: when computing vector element at index '0'
 354// :65:17: error: use of undefined value here causes illegal behavior
 355// :65:17: note: when computing vector element at index '0'
 356// :65:17: error: use of undefined value here causes illegal behavior
 357// :65:17: note: when computing vector element at index '1'
 358// :65:17: error: use of undefined value here causes illegal behavior
 359// :65:17: note: when computing vector element at index '1'
 360// :65:17: error: use of undefined value here causes illegal behavior
 361// :65:17: note: when computing vector element at index '0'
 362// :65:17: error: use of undefined value here causes illegal behavior
 363// :65:17: note: when computing vector element at index '0'
 364// :65:17: error: use of undefined value here causes illegal behavior
 365// :65:17: note: when computing vector element at index '0'
 366// :65:17: error: use of undefined value here causes illegal behavior
 367// :65:17: note: when computing vector element at index '0'
 368// :65:17: error: use of undefined value here causes illegal behavior
 369// :65:17: error: use of undefined value here causes illegal behavior
 370// :65:17: error: use of undefined value here causes illegal behavior
 371// :65:17: note: when computing vector element at index '0'
 372// :65:17: error: use of undefined value here causes illegal behavior
 373// :65:17: note: when computing vector element at index '0'
 374// :65:17: error: use of undefined value here causes illegal behavior
 375// :65:17: note: when computing vector element at index '0'
 376// :65:17: error: use of undefined value here causes illegal behavior
 377// :65:17: note: when computing vector element at index '0'
 378// :65:17: error: use of undefined value here causes illegal behavior
 379// :65:17: note: when computing vector element at index '1'
 380// :65:17: error: use of undefined value here causes illegal behavior
 381// :65:17: note: when computing vector element at index '1'
 382// :65:17: error: use of undefined value here causes illegal behavior
 383// :65:17: note: when computing vector element at index '0'
 384// :65:17: error: use of undefined value here causes illegal behavior
 385// :65:17: note: when computing vector element at index '0'
 386// :65:17: error: use of undefined value here causes illegal behavior
 387// :65:17: note: when computing vector element at index '0'
 388// :65:17: error: use of undefined value here causes illegal behavior
 389// :65:17: note: when computing vector element at index '0'
 390// :65:17: error: use of undefined value here causes illegal behavior
 391// :65:17: error: use of undefined value here causes illegal behavior
 392// :65:17: error: use of undefined value here causes illegal behavior
 393// :65:17: note: when computing vector element at index '0'
 394// :65:17: error: use of undefined value here causes illegal behavior
 395// :65:17: note: when computing vector element at index '0'
 396// :65:17: error: use of undefined value here causes illegal behavior
 397// :65:17: note: when computing vector element at index '0'
 398// :65:17: error: use of undefined value here causes illegal behavior
 399// :65:17: note: when computing vector element at index '0'
 400// :65:17: error: use of undefined value here causes illegal behavior
 401// :65:17: note: when computing vector element at index '1'
 402// :65:17: error: use of undefined value here causes illegal behavior
 403// :65:17: note: when computing vector element at index '1'
 404// :65:17: error: use of undefined value here causes illegal behavior
 405// :65:17: note: when computing vector element at index '0'
 406// :65:17: error: use of undefined value here causes illegal behavior
 407// :65:17: note: when computing vector element at index '0'
 408// :65:17: error: use of undefined value here causes illegal behavior
 409// :65:17: note: when computing vector element at index '0'
 410// :65:17: error: use of undefined value here causes illegal behavior
 411// :65:17: note: when computing vector element at index '0'
 412// :65:17: error: use of undefined value here causes illegal behavior
 413// :65:17: error: use of undefined value here causes illegal behavior
 414// :65:17: error: use of undefined value here causes illegal behavior
 415// :65:17: note: when computing vector element at index '0'
 416// :65:17: error: use of undefined value here causes illegal behavior
 417// :65:17: note: when computing vector element at index '0'
 418// :65:17: error: use of undefined value here causes illegal behavior
 419// :65:17: note: when computing vector element at index '0'
 420// :65:17: error: use of undefined value here causes illegal behavior
 421// :65:17: note: when computing vector element at index '0'
 422// :65:17: error: use of undefined value here causes illegal behavior
 423// :65:17: note: when computing vector element at index '1'
 424// :65:17: error: use of undefined value here causes illegal behavior
 425// :65:17: note: when computing vector element at index '1'
 426// :65:17: error: use of undefined value here causes illegal behavior
 427// :65:17: note: when computing vector element at index '0'
 428// :65:17: error: use of undefined value here causes illegal behavior
 429// :65:17: note: when computing vector element at index '0'
 430// :65:17: error: use of undefined value here causes illegal behavior
 431// :65:17: note: when computing vector element at index '0'
 432// :65:17: error: use of undefined value here causes illegal behavior
 433// :65:17: note: when computing vector element at index '0'
 434// :65:21: error: use of undefined value here causes illegal behavior
 435// :65:21: note: when computing vector element at index '0'
 436// :65:21: error: use of undefined value here causes illegal behavior
 437// :65:21: note: when computing vector element at index '0'
 438// :65:21: error: use of undefined value here causes illegal behavior
 439// :65:21: note: when computing vector element at index '0'
 440// :65:21: error: use of undefined value here causes illegal behavior
 441// :65:21: note: when computing vector element at index '0'
 442// :65:21: error: use of undefined value here causes illegal behavior
 443// :65:21: note: when computing vector element at index '0'
 444// :65:21: error: use of undefined value here causes illegal behavior
 445// :65:21: note: when computing vector element at index '0'
 446// :65:21: error: use of undefined value here causes illegal behavior
 447// :65:21: note: when computing vector element at index '0'
 448// :65:21: error: use of undefined value here causes illegal behavior
 449// :65:21: note: when computing vector element at index '0'
 450// :65:21: error: use of undefined value here causes illegal behavior
 451// :65:21: note: when computing vector element at index '0'
 452// :65:21: error: use of undefined value here causes illegal behavior
 453// :65:21: note: when computing vector element at index '0'
 454// :65:21: error: use of undefined value here causes illegal behavior
 455// :65:21: note: when computing vector element at index '0'
 456// :65:21: error: use of undefined value here causes illegal behavior
 457// :65:21: note: when computing vector element at index '0'
 458// :65:21: error: use of undefined value here causes illegal behavior
 459// :65:21: note: when computing vector element at index '0'
 460// :65:21: error: use of undefined value here causes illegal behavior
 461// :65:21: note: when computing vector element at index '0'
 462// :65:21: error: use of undefined value here causes illegal behavior
 463// :65:21: note: when computing vector element at index '0'
 464// :65:21: error: use of undefined value here causes illegal behavior
 465// :65:21: note: when computing vector element at index '0'
 466// :65:21: error: use of undefined value here causes illegal behavior
 467// :65:21: note: when computing vector element at index '0'
 468// :65:21: error: use of undefined value here causes illegal behavior
 469// :65:21: note: when computing vector element at index '0'
 470// :65:21: error: use of undefined value here causes illegal behavior
 471// :65:21: note: when computing vector element at index '0'
 472// :65:21: error: use of undefined value here causes illegal behavior
 473// :65:21: note: when computing vector element at index '0'
 474// :65:21: error: use of undefined value here causes illegal behavior
 475// :65:21: note: when computing vector element at index '0'
 476// :65:21: error: use of undefined value here causes illegal behavior
 477// :65:21: note: when computing vector element at index '0'
 478// :69:27: error: use of undefined value here causes illegal behavior
 479// :69:27: error: use of undefined value here causes illegal behavior
 480// :69:27: error: use of undefined value here causes illegal behavior
 481// :69:27: note: when computing vector element at index '0'
 482// :69:27: error: use of undefined value here causes illegal behavior
 483// :69:27: note: when computing vector element at index '0'
 484// :69:27: error: use of undefined value here causes illegal behavior
 485// :69:27: note: when computing vector element at index '0'
 486// :69:27: error: use of undefined value here causes illegal behavior
 487// :69:27: note: when computing vector element at index '0'
 488// :69:27: error: use of undefined value here causes illegal behavior
 489// :69:27: note: when computing vector element at index '1'
 490// :69:27: error: use of undefined value here causes illegal behavior
 491// :69:27: note: when computing vector element at index '1'
 492// :69:27: error: use of undefined value here causes illegal behavior
 493// :69:27: note: when computing vector element at index '0'
 494// :69:27: error: use of undefined value here causes illegal behavior
 495// :69:27: note: when computing vector element at index '0'
 496// :69:27: error: use of undefined value here causes illegal behavior
 497// :69:27: note: when computing vector element at index '0'
 498// :69:27: error: use of undefined value here causes illegal behavior
 499// :69:27: note: when computing vector element at index '0'
 500// :69:27: error: use of undefined value here causes illegal behavior
 501// :69:27: error: use of undefined value here causes illegal behavior
 502// :69:27: error: use of undefined value here causes illegal behavior
 503// :69:27: note: when computing vector element at index '0'
 504// :69:27: error: use of undefined value here causes illegal behavior
 505// :69:27: note: when computing vector element at index '0'
 506// :69:27: error: use of undefined value here causes illegal behavior
 507// :69:27: note: when computing vector element at index '0'
 508// :69:27: error: use of undefined value here causes illegal behavior
 509// :69:27: note: when computing vector element at index '0'
 510// :69:27: error: use of undefined value here causes illegal behavior
 511// :69:27: note: when computing vector element at index '1'
 512// :69:27: error: use of undefined value here causes illegal behavior
 513// :69:27: note: when computing vector element at index '1'
 514// :69:27: error: use of undefined value here causes illegal behavior
 515// :69:27: note: when computing vector element at index '0'
 516// :69:27: error: use of undefined value here causes illegal behavior
 517// :69:27: note: when computing vector element at index '0'
 518// :69:27: error: use of undefined value here causes illegal behavior
 519// :69:27: note: when computing vector element at index '0'
 520// :69:27: error: use of undefined value here causes illegal behavior
 521// :69:27: note: when computing vector element at index '0'
 522// :69:27: error: use of undefined value here causes illegal behavior
 523// :69:27: error: use of undefined value here causes illegal behavior
 524// :69:27: error: use of undefined value here causes illegal behavior
 525// :69:27: note: when computing vector element at index '0'
 526// :69:27: error: use of undefined value here causes illegal behavior
 527// :69:27: note: when computing vector element at index '0'
 528// :69:27: error: use of undefined value here causes illegal behavior
 529// :69:27: note: when computing vector element at index '0'
 530// :69:27: error: use of undefined value here causes illegal behavior
 531// :69:27: note: when computing vector element at index '0'
 532// :69:27: error: use of undefined value here causes illegal behavior
 533// :69:27: note: when computing vector element at index '1'
 534// :69:27: error: use of undefined value here causes illegal behavior
 535// :69:27: note: when computing vector element at index '1'
 536// :69:27: error: use of undefined value here causes illegal behavior
 537// :69:27: note: when computing vector element at index '0'
 538// :69:27: error: use of undefined value here causes illegal behavior
 539// :69:27: note: when computing vector element at index '0'
 540// :69:27: error: use of undefined value here causes illegal behavior
 541// :69:27: note: when computing vector element at index '0'
 542// :69:27: error: use of undefined value here causes illegal behavior
 543// :69:27: note: when computing vector element at index '0'
 544// :69:27: error: use of undefined value here causes illegal behavior
 545// :69:27: error: use of undefined value here causes illegal behavior
 546// :69:27: error: use of undefined value here causes illegal behavior
 547// :69:27: note: when computing vector element at index '0'
 548// :69:27: error: use of undefined value here causes illegal behavior
 549// :69:27: note: when computing vector element at index '0'
 550// :69:27: error: use of undefined value here causes illegal behavior
 551// :69:27: note: when computing vector element at index '0'
 552// :69:27: error: use of undefined value here causes illegal behavior
 553// :69:27: note: when computing vector element at index '0'
 554// :69:27: error: use of undefined value here causes illegal behavior
 555// :69:27: note: when computing vector element at index '1'
 556// :69:27: error: use of undefined value here causes illegal behavior
 557// :69:27: note: when computing vector element at index '1'
 558// :69:27: error: use of undefined value here causes illegal behavior
 559// :69:27: note: when computing vector element at index '0'
 560// :69:27: error: use of undefined value here causes illegal behavior
 561// :69:27: note: when computing vector element at index '0'
 562// :69:27: error: use of undefined value here causes illegal behavior
 563// :69:27: note: when computing vector element at index '0'
 564// :69:27: error: use of undefined value here causes illegal behavior
 565// :69:27: note: when computing vector element at index '0'
 566// :69:27: error: use of undefined value here causes illegal behavior
 567// :69:27: error: use of undefined value here causes illegal behavior
 568// :69:27: error: use of undefined value here causes illegal behavior
 569// :69:27: note: when computing vector element at index '0'
 570// :69:27: error: use of undefined value here causes illegal behavior
 571// :69:27: note: when computing vector element at index '0'
 572// :69:27: error: use of undefined value here causes illegal behavior
 573// :69:27: note: when computing vector element at index '0'
 574// :69:27: error: use of undefined value here causes illegal behavior
 575// :69:27: note: when computing vector element at index '0'
 576// :69:27: error: use of undefined value here causes illegal behavior
 577// :69:27: note: when computing vector element at index '1'
 578// :69:27: error: use of undefined value here causes illegal behavior
 579// :69:27: note: when computing vector element at index '1'
 580// :69:27: error: use of undefined value here causes illegal behavior
 581// :69:27: note: when computing vector element at index '0'
 582// :69:27: error: use of undefined value here causes illegal behavior
 583// :69:27: note: when computing vector element at index '0'
 584// :69:27: error: use of undefined value here causes illegal behavior
 585// :69:27: note: when computing vector element at index '0'
 586// :69:27: error: use of undefined value here causes illegal behavior
 587// :69:27: note: when computing vector element at index '0'
 588// :69:27: error: use of undefined value here causes illegal behavior
 589// :69:27: error: use of undefined value here causes illegal behavior
 590// :69:27: error: use of undefined value here causes illegal behavior
 591// :69:27: note: when computing vector element at index '0'
 592// :69:27: error: use of undefined value here causes illegal behavior
 593// :69:27: note: when computing vector element at index '0'
 594// :69:27: error: use of undefined value here causes illegal behavior
 595// :69:27: note: when computing vector element at index '0'
 596// :69:27: error: use of undefined value here causes illegal behavior
 597// :69:27: note: when computing vector element at index '0'
 598// :69:27: error: use of undefined value here causes illegal behavior
 599// :69:27: note: when computing vector element at index '1'
 600// :69:27: error: use of undefined value here causes illegal behavior
 601// :69:27: note: when computing vector element at index '1'
 602// :69:27: error: use of undefined value here causes illegal behavior
 603// :69:27: note: when computing vector element at index '0'
 604// :69:27: error: use of undefined value here causes illegal behavior
 605// :69:27: note: when computing vector element at index '0'
 606// :69:27: error: use of undefined value here causes illegal behavior
 607// :69:27: note: when computing vector element at index '0'
 608// :69:27: error: use of undefined value here causes illegal behavior
 609// :69:27: note: when computing vector element at index '0'
 610// :69:27: error: use of undefined value here causes illegal behavior
 611// :69:27: error: use of undefined value here causes illegal behavior
 612// :69:27: error: use of undefined value here causes illegal behavior
 613// :69:27: note: when computing vector element at index '0'
 614// :69:27: error: use of undefined value here causes illegal behavior
 615// :69:27: note: when computing vector element at index '0'
 616// :69:27: error: use of undefined value here causes illegal behavior
 617// :69:27: note: when computing vector element at index '0'
 618// :69:27: error: use of undefined value here causes illegal behavior
 619// :69:27: note: when computing vector element at index '0'
 620// :69:27: error: use of undefined value here causes illegal behavior
 621// :69:27: note: when computing vector element at index '1'
 622// :69:27: error: use of undefined value here causes illegal behavior
 623// :69:27: note: when computing vector element at index '1'
 624// :69:27: error: use of undefined value here causes illegal behavior
 625// :69:27: note: when computing vector element at index '0'
 626// :69:27: error: use of undefined value here causes illegal behavior
 627// :69:27: note: when computing vector element at index '0'
 628// :69:27: error: use of undefined value here causes illegal behavior
 629// :69:27: note: when computing vector element at index '0'
 630// :69:27: error: use of undefined value here causes illegal behavior
 631// :69:27: note: when computing vector element at index '0'
 632// :69:27: error: use of undefined value here causes illegal behavior
 633// :69:27: error: use of undefined value here causes illegal behavior
 634// :69:27: error: use of undefined value here causes illegal behavior
 635// :69:27: note: when computing vector element at index '0'
 636// :69:27: error: use of undefined value here causes illegal behavior
 637// :69:27: note: when computing vector element at index '0'
 638// :69:27: error: use of undefined value here causes illegal behavior
 639// :69:27: note: when computing vector element at index '0'
 640// :69:27: error: use of undefined value here causes illegal behavior
 641// :69:27: note: when computing vector element at index '0'
 642// :69:27: error: use of undefined value here causes illegal behavior
 643// :69:27: note: when computing vector element at index '1'
 644// :69:27: error: use of undefined value here causes illegal behavior
 645// :69:27: note: when computing vector element at index '1'
 646// :69:27: error: use of undefined value here causes illegal behavior
 647// :69:27: note: when computing vector element at index '0'
 648// :69:27: error: use of undefined value here causes illegal behavior
 649// :69:27: note: when computing vector element at index '0'
 650// :69:27: error: use of undefined value here causes illegal behavior
 651// :69:27: note: when computing vector element at index '0'
 652// :69:27: error: use of undefined value here causes illegal behavior
 653// :69:27: note: when computing vector element at index '0'
 654// :69:27: error: use of undefined value here causes illegal behavior
 655// :69:27: error: use of undefined value here causes illegal behavior
 656// :69:27: error: use of undefined value here causes illegal behavior
 657// :69:27: note: when computing vector element at index '0'
 658// :69:27: error: use of undefined value here causes illegal behavior
 659// :69:27: note: when computing vector element at index '0'
 660// :69:27: error: use of undefined value here causes illegal behavior
 661// :69:27: note: when computing vector element at index '0'
 662// :69:27: error: use of undefined value here causes illegal behavior
 663// :69:27: note: when computing vector element at index '0'
 664// :69:27: error: use of undefined value here causes illegal behavior
 665// :69:27: note: when computing vector element at index '1'
 666// :69:27: error: use of undefined value here causes illegal behavior
 667// :69:27: note: when computing vector element at index '1'
 668// :69:27: error: use of undefined value here causes illegal behavior
 669// :69:27: note: when computing vector element at index '0'
 670// :69:27: error: use of undefined value here causes illegal behavior
 671// :69:27: note: when computing vector element at index '0'
 672// :69:27: error: use of undefined value here causes illegal behavior
 673// :69:27: note: when computing vector element at index '0'
 674// :69:27: error: use of undefined value here causes illegal behavior
 675// :69:27: note: when computing vector element at index '0'
 676// :69:27: error: use of undefined value here causes illegal behavior
 677// :69:27: error: use of undefined value here causes illegal behavior
 678// :69:27: error: use of undefined value here causes illegal behavior
 679// :69:27: note: when computing vector element at index '0'
 680// :69:27: error: use of undefined value here causes illegal behavior
 681// :69:27: note: when computing vector element at index '0'
 682// :69:27: error: use of undefined value here causes illegal behavior
 683// :69:27: note: when computing vector element at index '0'
 684// :69:27: error: use of undefined value here causes illegal behavior
 685// :69:27: note: when computing vector element at index '0'
 686// :69:27: error: use of undefined value here causes illegal behavior
 687// :69:27: note: when computing vector element at index '1'
 688// :69:27: error: use of undefined value here causes illegal behavior
 689// :69:27: note: when computing vector element at index '1'
 690// :69:27: error: use of undefined value here causes illegal behavior
 691// :69:27: note: when computing vector element at index '0'
 692// :69:27: error: use of undefined value here causes illegal behavior
 693// :69:27: note: when computing vector element at index '0'
 694// :69:27: error: use of undefined value here causes illegal behavior
 695// :69:27: note: when computing vector element at index '0'
 696// :69:27: error: use of undefined value here causes illegal behavior
 697// :69:27: note: when computing vector element at index '0'
 698// :69:27: error: use of undefined value here causes illegal behavior
 699// :69:27: error: use of undefined value here causes illegal behavior
 700// :69:27: error: use of undefined value here causes illegal behavior
 701// :69:27: note: when computing vector element at index '0'
 702// :69:27: error: use of undefined value here causes illegal behavior
 703// :69:27: note: when computing vector element at index '0'
 704// :69:27: error: use of undefined value here causes illegal behavior
 705// :69:27: note: when computing vector element at index '0'
 706// :69:27: error: use of undefined value here causes illegal behavior
 707// :69:27: note: when computing vector element at index '0'
 708// :69:27: error: use of undefined value here causes illegal behavior
 709// :69:27: note: when computing vector element at index '1'
 710// :69:27: error: use of undefined value here causes illegal behavior
 711// :69:27: note: when computing vector element at index '1'
 712// :69:27: error: use of undefined value here causes illegal behavior
 713// :69:27: note: when computing vector element at index '0'
 714// :69:27: error: use of undefined value here causes illegal behavior
 715// :69:27: note: when computing vector element at index '0'
 716// :69:27: error: use of undefined value here causes illegal behavior
 717// :69:27: note: when computing vector element at index '0'
 718// :69:27: error: use of undefined value here causes illegal behavior
 719// :69:27: note: when computing vector element at index '0'
 720// :69:30: error: use of undefined value here causes illegal behavior
 721// :69:30: note: when computing vector element at index '0'
 722// :69:30: error: use of undefined value here causes illegal behavior
 723// :69:30: note: when computing vector element at index '0'
 724// :69:30: error: use of undefined value here causes illegal behavior
 725// :69:30: note: when computing vector element at index '0'
 726// :69:30: error: use of undefined value here causes illegal behavior
 727// :69:30: note: when computing vector element at index '0'
 728// :69:30: error: use of undefined value here causes illegal behavior
 729// :69:30: note: when computing vector element at index '0'
 730// :69:30: error: use of undefined value here causes illegal behavior
 731// :69:30: note: when computing vector element at index '0'
 732// :69:30: error: use of undefined value here causes illegal behavior
 733// :69:30: note: when computing vector element at index '0'
 734// :69:30: error: use of undefined value here causes illegal behavior
 735// :69:30: note: when computing vector element at index '0'
 736// :69:30: error: use of undefined value here causes illegal behavior
 737// :69:30: note: when computing vector element at index '0'
 738// :69:30: error: use of undefined value here causes illegal behavior
 739// :69:30: note: when computing vector element at index '0'
 740// :69:30: error: use of undefined value here causes illegal behavior
 741// :69:30: note: when computing vector element at index '0'
 742// :69:30: error: use of undefined value here causes illegal behavior
 743// :69:30: note: when computing vector element at index '0'
 744// :69:30: error: use of undefined value here causes illegal behavior
 745// :69:30: note: when computing vector element at index '0'
 746// :69:30: error: use of undefined value here causes illegal behavior
 747// :69:30: note: when computing vector element at index '0'
 748// :69:30: error: use of undefined value here causes illegal behavior
 749// :69:30: note: when computing vector element at index '0'
 750// :69:30: error: use of undefined value here causes illegal behavior
 751// :69:30: note: when computing vector element at index '0'
 752// :69:30: error: use of undefined value here causes illegal behavior
 753// :69:30: note: when computing vector element at index '0'
 754// :69:30: error: use of undefined value here causes illegal behavior
 755// :69:30: note: when computing vector element at index '0'
 756// :69:30: error: use of undefined value here causes illegal behavior
 757// :69:30: note: when computing vector element at index '0'
 758// :69:30: error: use of undefined value here causes illegal behavior
 759// :69:30: note: when computing vector element at index '0'
 760// :69:30: error: use of undefined value here causes illegal behavior
 761// :69:30: note: when computing vector element at index '0'
 762// :69:30: error: use of undefined value here causes illegal behavior
 763// :69:30: note: when computing vector element at index '0'
 764// :73:27: error: use of undefined value here causes illegal behavior
 765// :73:27: error: use of undefined value here causes illegal behavior
 766// :73:27: error: use of undefined value here causes illegal behavior
 767// :73:27: note: when computing vector element at index '0'
 768// :73:27: error: use of undefined value here causes illegal behavior
 769// :73:27: note: when computing vector element at index '0'
 770// :73:27: error: use of undefined value here causes illegal behavior
 771// :73:27: note: when computing vector element at index '0'
 772// :73:27: error: use of undefined value here causes illegal behavior
 773// :73:27: note: when computing vector element at index '0'
 774// :73:27: error: use of undefined value here causes illegal behavior
 775// :73:27: note: when computing vector element at index '1'
 776// :73:27: error: use of undefined value here causes illegal behavior
 777// :73:27: note: when computing vector element at index '1'
 778// :73:27: error: use of undefined value here causes illegal behavior
 779// :73:27: note: when computing vector element at index '0'
 780// :73:27: error: use of undefined value here causes illegal behavior
 781// :73:27: note: when computing vector element at index '0'
 782// :73:27: error: use of undefined value here causes illegal behavior
 783// :73:27: note: when computing vector element at index '0'
 784// :73:27: error: use of undefined value here causes illegal behavior
 785// :73:27: note: when computing vector element at index '0'
 786// :73:27: error: use of undefined value here causes illegal behavior
 787// :73:27: error: use of undefined value here causes illegal behavior
 788// :73:27: error: use of undefined value here causes illegal behavior
 789// :73:27: note: when computing vector element at index '0'
 790// :73:27: error: use of undefined value here causes illegal behavior
 791// :73:27: note: when computing vector element at index '0'
 792// :73:27: error: use of undefined value here causes illegal behavior
 793// :73:27: note: when computing vector element at index '0'
 794// :73:27: error: use of undefined value here causes illegal behavior
 795// :73:27: note: when computing vector element at index '0'
 796// :73:27: error: use of undefined value here causes illegal behavior
 797// :73:27: note: when computing vector element at index '1'
 798// :73:27: error: use of undefined value here causes illegal behavior
 799// :73:27: note: when computing vector element at index '1'
 800// :73:27: error: use of undefined value here causes illegal behavior
 801// :73:27: note: when computing vector element at index '0'
 802// :73:27: error: use of undefined value here causes illegal behavior
 803// :73:27: note: when computing vector element at index '0'
 804// :73:27: error: use of undefined value here causes illegal behavior
 805// :73:27: note: when computing vector element at index '0'
 806// :73:27: error: use of undefined value here causes illegal behavior
 807// :73:27: note: when computing vector element at index '0'
 808// :73:27: error: use of undefined value here causes illegal behavior
 809// :73:27: error: use of undefined value here causes illegal behavior
 810// :73:27: error: use of undefined value here causes illegal behavior
 811// :73:27: note: when computing vector element at index '0'
 812// :73:27: error: use of undefined value here causes illegal behavior
 813// :73:27: note: when computing vector element at index '0'
 814// :73:27: error: use of undefined value here causes illegal behavior
 815// :73:27: note: when computing vector element at index '0'
 816// :73:27: error: use of undefined value here causes illegal behavior
 817// :73:27: note: when computing vector element at index '0'
 818// :73:27: error: use of undefined value here causes illegal behavior
 819// :73:27: note: when computing vector element at index '1'
 820// :73:27: error: use of undefined value here causes illegal behavior
 821// :73:27: note: when computing vector element at index '1'
 822// :73:27: error: use of undefined value here causes illegal behavior
 823// :73:27: note: when computing vector element at index '0'
 824// :73:27: error: use of undefined value here causes illegal behavior
 825// :73:27: note: when computing vector element at index '0'
 826// :73:27: error: use of undefined value here causes illegal behavior
 827// :73:27: note: when computing vector element at index '0'
 828// :73:27: error: use of undefined value here causes illegal behavior
 829// :73:27: note: when computing vector element at index '0'
 830// :73:27: error: use of undefined value here causes illegal behavior
 831// :73:27: error: use of undefined value here causes illegal behavior
 832// :73:27: error: use of undefined value here causes illegal behavior
 833// :73:27: note: when computing vector element at index '0'
 834// :73:27: error: use of undefined value here causes illegal behavior
 835// :73:27: note: when computing vector element at index '0'
 836// :73:27: error: use of undefined value here causes illegal behavior
 837// :73:27: note: when computing vector element at index '0'
 838// :73:27: error: use of undefined value here causes illegal behavior
 839// :73:27: note: when computing vector element at index '0'
 840// :73:27: error: use of undefined value here causes illegal behavior
 841// :73:27: note: when computing vector element at index '1'
 842// :73:27: error: use of undefined value here causes illegal behavior
 843// :73:27: note: when computing vector element at index '1'
 844// :73:27: error: use of undefined value here causes illegal behavior
 845// :73:27: note: when computing vector element at index '0'
 846// :73:27: error: use of undefined value here causes illegal behavior
 847// :73:27: note: when computing vector element at index '0'
 848// :73:27: error: use of undefined value here causes illegal behavior
 849// :73:27: note: when computing vector element at index '0'
 850// :73:27: error: use of undefined value here causes illegal behavior
 851// :73:27: note: when computing vector element at index '0'
 852// :73:27: error: use of undefined value here causes illegal behavior
 853// :73:27: error: use of undefined value here causes illegal behavior
 854// :73:27: error: use of undefined value here causes illegal behavior
 855// :73:27: note: when computing vector element at index '0'
 856// :73:27: error: use of undefined value here causes illegal behavior
 857// :73:27: note: when computing vector element at index '0'
 858// :73:27: error: use of undefined value here causes illegal behavior
 859// :73:27: note: when computing vector element at index '0'
 860// :73:27: error: use of undefined value here causes illegal behavior
 861// :73:27: note: when computing vector element at index '0'
 862// :73:27: error: use of undefined value here causes illegal behavior
 863// :73:27: note: when computing vector element at index '1'
 864// :73:27: error: use of undefined value here causes illegal behavior
 865// :73:27: note: when computing vector element at index '1'
 866// :73:27: error: use of undefined value here causes illegal behavior
 867// :73:27: note: when computing vector element at index '0'
 868// :73:27: error: use of undefined value here causes illegal behavior
 869// :73:27: note: when computing vector element at index '0'
 870// :73:27: error: use of undefined value here causes illegal behavior
 871// :73:27: note: when computing vector element at index '0'
 872// :73:27: error: use of undefined value here causes illegal behavior
 873// :73:27: note: when computing vector element at index '0'
 874// :73:27: error: use of undefined value here causes illegal behavior
 875// :73:27: error: use of undefined value here causes illegal behavior
 876// :73:27: error: use of undefined value here causes illegal behavior
 877// :73:27: note: when computing vector element at index '0'
 878// :73:27: error: use of undefined value here causes illegal behavior
 879// :73:27: note: when computing vector element at index '0'
 880// :73:27: error: use of undefined value here causes illegal behavior
 881// :73:27: note: when computing vector element at index '0'
 882// :73:27: error: use of undefined value here causes illegal behavior
 883// :73:27: note: when computing vector element at index '0'
 884// :73:27: error: use of undefined value here causes illegal behavior
 885// :73:27: note: when computing vector element at index '1'
 886// :73:27: error: use of undefined value here causes illegal behavior
 887// :73:27: note: when computing vector element at index '1'
 888// :73:27: error: use of undefined value here causes illegal behavior
 889// :73:27: note: when computing vector element at index '0'
 890// :73:27: error: use of undefined value here causes illegal behavior
 891// :73:27: note: when computing vector element at index '0'
 892// :73:27: error: use of undefined value here causes illegal behavior
 893// :73:27: note: when computing vector element at index '0'
 894// :73:27: error: use of undefined value here causes illegal behavior
 895// :73:27: note: when computing vector element at index '0'
 896// :73:27: error: use of undefined value here causes illegal behavior
 897// :73:27: error: use of undefined value here causes illegal behavior
 898// :73:27: error: use of undefined value here causes illegal behavior
 899// :73:27: note: when computing vector element at index '0'
 900// :73:27: error: use of undefined value here causes illegal behavior
 901// :73:27: note: when computing vector element at index '0'
 902// :73:27: error: use of undefined value here causes illegal behavior
 903// :73:27: note: when computing vector element at index '0'
 904// :73:27: error: use of undefined value here causes illegal behavior
 905// :73:27: note: when computing vector element at index '0'
 906// :73:27: error: use of undefined value here causes illegal behavior
 907// :73:27: note: when computing vector element at index '1'
 908// :73:27: error: use of undefined value here causes illegal behavior
 909// :73:27: note: when computing vector element at index '1'
 910// :73:27: error: use of undefined value here causes illegal behavior
 911// :73:27: note: when computing vector element at index '0'
 912// :73:27: error: use of undefined value here causes illegal behavior
 913// :73:27: note: when computing vector element at index '0'
 914// :73:27: error: use of undefined value here causes illegal behavior
 915// :73:27: note: when computing vector element at index '0'
 916// :73:27: error: use of undefined value here causes illegal behavior
 917// :73:27: note: when computing vector element at index '0'
 918// :73:27: error: use of undefined value here causes illegal behavior
 919// :73:27: error: use of undefined value here causes illegal behavior
 920// :73:27: error: use of undefined value here causes illegal behavior
 921// :73:27: note: when computing vector element at index '0'
 922// :73:27: error: use of undefined value here causes illegal behavior
 923// :73:27: note: when computing vector element at index '0'
 924// :73:27: error: use of undefined value here causes illegal behavior
 925// :73:27: note: when computing vector element at index '0'
 926// :73:27: error: use of undefined value here causes illegal behavior
 927// :73:27: note: when computing vector element at index '0'
 928// :73:27: error: use of undefined value here causes illegal behavior
 929// :73:27: note: when computing vector element at index '1'
 930// :73:27: error: use of undefined value here causes illegal behavior
 931// :73:27: note: when computing vector element at index '1'
 932// :73:27: error: use of undefined value here causes illegal behavior
 933// :73:27: note: when computing vector element at index '0'
 934// :73:27: error: use of undefined value here causes illegal behavior
 935// :73:27: note: when computing vector element at index '0'
 936// :73:27: error: use of undefined value here causes illegal behavior
 937// :73:27: note: when computing vector element at index '0'
 938// :73:27: error: use of undefined value here causes illegal behavior
 939// :73:27: note: when computing vector element at index '0'
 940// :73:27: error: use of undefined value here causes illegal behavior
 941// :73:27: error: use of undefined value here causes illegal behavior
 942// :73:27: error: use of undefined value here causes illegal behavior
 943// :73:27: note: when computing vector element at index '0'
 944// :73:27: error: use of undefined value here causes illegal behavior
 945// :73:27: note: when computing vector element at index '0'
 946// :73:27: error: use of undefined value here causes illegal behavior
 947// :73:27: note: when computing vector element at index '0'
 948// :73:27: error: use of undefined value here causes illegal behavior
 949// :73:27: note: when computing vector element at index '0'
 950// :73:27: error: use of undefined value here causes illegal behavior
 951// :73:27: note: when computing vector element at index '1'
 952// :73:27: error: use of undefined value here causes illegal behavior
 953// :73:27: note: when computing vector element at index '1'
 954// :73:27: error: use of undefined value here causes illegal behavior
 955// :73:27: note: when computing vector element at index '0'
 956// :73:27: error: use of undefined value here causes illegal behavior
 957// :73:27: note: when computing vector element at index '0'
 958// :73:27: error: use of undefined value here causes illegal behavior
 959// :73:27: note: when computing vector element at index '0'
 960// :73:27: error: use of undefined value here causes illegal behavior
 961// :73:27: note: when computing vector element at index '0'
 962// :73:27: error: use of undefined value here causes illegal behavior
 963// :73:27: error: use of undefined value here causes illegal behavior
 964// :73:27: error: use of undefined value here causes illegal behavior
 965// :73:27: note: when computing vector element at index '0'
 966// :73:27: error: use of undefined value here causes illegal behavior
 967// :73:27: note: when computing vector element at index '0'
 968// :73:27: error: use of undefined value here causes illegal behavior
 969// :73:27: note: when computing vector element at index '0'
 970// :73:27: error: use of undefined value here causes illegal behavior
 971// :73:27: note: when computing vector element at index '0'
 972// :73:27: error: use of undefined value here causes illegal behavior
 973// :73:27: note: when computing vector element at index '1'
 974// :73:27: error: use of undefined value here causes illegal behavior
 975// :73:27: note: when computing vector element at index '1'
 976// :73:27: error: use of undefined value here causes illegal behavior
 977// :73:27: note: when computing vector element at index '0'
 978// :73:27: error: use of undefined value here causes illegal behavior
 979// :73:27: note: when computing vector element at index '0'
 980// :73:27: error: use of undefined value here causes illegal behavior
 981// :73:27: note: when computing vector element at index '0'
 982// :73:27: error: use of undefined value here causes illegal behavior
 983// :73:27: note: when computing vector element at index '0'
 984// :73:27: error: use of undefined value here causes illegal behavior
 985// :73:27: error: use of undefined value here causes illegal behavior
 986// :73:27: error: use of undefined value here causes illegal behavior
 987// :73:27: note: when computing vector element at index '0'
 988// :73:27: error: use of undefined value here causes illegal behavior
 989// :73:27: note: when computing vector element at index '0'
 990// :73:27: error: use of undefined value here causes illegal behavior
 991// :73:27: note: when computing vector element at index '0'
 992// :73:27: error: use of undefined value here causes illegal behavior
 993// :73:27: note: when computing vector element at index '0'
 994// :73:27: error: use of undefined value here causes illegal behavior
 995// :73:27: note: when computing vector element at index '1'
 996// :73:27: error: use of undefined value here causes illegal behavior
 997// :73:27: note: when computing vector element at index '1'
 998// :73:27: error: use of undefined value here causes illegal behavior
 999// :73:27: note: when computing vector element at index '0'
1000// :73:27: error: use of undefined value here causes illegal behavior
1001// :73:27: note: when computing vector element at index '0'
1002// :73:27: error: use of undefined value here causes illegal behavior
1003// :73:27: note: when computing vector element at index '0'
1004// :73:27: error: use of undefined value here causes illegal behavior
1005// :73:27: note: when computing vector element at index '0'
1006// :73:30: error: use of undefined value here causes illegal behavior
1007// :73:30: note: when computing vector element at index '0'
1008// :73:30: error: use of undefined value here causes illegal behavior
1009// :73:30: note: when computing vector element at index '0'
1010// :73:30: error: use of undefined value here causes illegal behavior
1011// :73:30: note: when computing vector element at index '0'
1012// :73:30: error: use of undefined value here causes illegal behavior
1013// :73:30: note: when computing vector element at index '0'
1014// :73:30: error: use of undefined value here causes illegal behavior
1015// :73:30: note: when computing vector element at index '0'
1016// :73:30: error: use of undefined value here causes illegal behavior
1017// :73:30: note: when computing vector element at index '0'
1018// :73:30: error: use of undefined value here causes illegal behavior
1019// :73:30: note: when computing vector element at index '0'
1020// :73:30: error: use of undefined value here causes illegal behavior
1021// :73:30: note: when computing vector element at index '0'
1022// :73:30: error: use of undefined value here causes illegal behavior
1023// :73:30: note: when computing vector element at index '0'
1024// :73:30: error: use of undefined value here causes illegal behavior
1025// :73:30: note: when computing vector element at index '0'
1026// :73:30: error: use of undefined value here causes illegal behavior
1027// :73:30: note: when computing vector element at index '0'
1028// :73:30: error: use of undefined value here causes illegal behavior
1029// :73:30: note: when computing vector element at index '0'
1030// :73:30: error: use of undefined value here causes illegal behavior
1031// :73:30: note: when computing vector element at index '0'
1032// :73:30: error: use of undefined value here causes illegal behavior
1033// :73:30: note: when computing vector element at index '0'
1034// :73:30: error: use of undefined value here causes illegal behavior
1035// :73:30: note: when computing vector element at index '0'
1036// :73:30: error: use of undefined value here causes illegal behavior
1037// :73:30: note: when computing vector element at index '0'
1038// :73:30: error: use of undefined value here causes illegal behavior
1039// :73:30: note: when computing vector element at index '0'
1040// :73:30: error: use of undefined value here causes illegal behavior
1041// :73:30: note: when computing vector element at index '0'
1042// :73:30: error: use of undefined value here causes illegal behavior
1043// :73:30: note: when computing vector element at index '0'
1044// :73:30: error: use of undefined value here causes illegal behavior
1045// :73:30: note: when computing vector element at index '0'
1046// :73:30: error: use of undefined value here causes illegal behavior
1047// :73:30: note: when computing vector element at index '0'
1048// :73:30: error: use of undefined value here causes illegal behavior
1049// :73:30: note: when computing vector element at index '0'
1050// :77:27: error: use of undefined value here causes illegal behavior
1051// :77:27: error: use of undefined value here causes illegal behavior
1052// :77:27: error: use of undefined value here causes illegal behavior
1053// :77:27: note: when computing vector element at index '0'
1054// :77:27: error: use of undefined value here causes illegal behavior
1055// :77:27: note: when computing vector element at index '0'
1056// :77:27: error: use of undefined value here causes illegal behavior
1057// :77:27: note: when computing vector element at index '0'
1058// :77:27: error: use of undefined value here causes illegal behavior
1059// :77:27: note: when computing vector element at index '0'
1060// :77:27: error: use of undefined value here causes illegal behavior
1061// :77:27: note: when computing vector element at index '1'
1062// :77:27: error: use of undefined value here causes illegal behavior
1063// :77:27: note: when computing vector element at index '1'
1064// :77:27: error: use of undefined value here causes illegal behavior
1065// :77:27: note: when computing vector element at index '0'
1066// :77:27: error: use of undefined value here causes illegal behavior
1067// :77:27: note: when computing vector element at index '0'
1068// :77:27: error: use of undefined value here causes illegal behavior
1069// :77:27: note: when computing vector element at index '0'
1070// :77:27: error: use of undefined value here causes illegal behavior
1071// :77:27: note: when computing vector element at index '0'
1072// :77:27: error: use of undefined value here causes illegal behavior
1073// :77:27: error: use of undefined value here causes illegal behavior
1074// :77:27: error: use of undefined value here causes illegal behavior
1075// :77:27: note: when computing vector element at index '0'
1076// :77:27: error: use of undefined value here causes illegal behavior
1077// :77:27: note: when computing vector element at index '0'
1078// :77:27: error: use of undefined value here causes illegal behavior
1079// :77:27: note: when computing vector element at index '0'
1080// :77:27: error: use of undefined value here causes illegal behavior
1081// :77:27: note: when computing vector element at index '0'
1082// :77:27: error: use of undefined value here causes illegal behavior
1083// :77:27: note: when computing vector element at index '1'
1084// :77:27: error: use of undefined value here causes illegal behavior
1085// :77:27: note: when computing vector element at index '1'
1086// :77:27: error: use of undefined value here causes illegal behavior
1087// :77:27: note: when computing vector element at index '0'
1088// :77:27: error: use of undefined value here causes illegal behavior
1089// :77:27: note: when computing vector element at index '0'
1090// :77:27: error: use of undefined value here causes illegal behavior
1091// :77:27: note: when computing vector element at index '0'
1092// :77:27: error: use of undefined value here causes illegal behavior
1093// :77:27: note: when computing vector element at index '0'
1094// :77:27: error: use of undefined value here causes illegal behavior
1095// :77:27: error: use of undefined value here causes illegal behavior
1096// :77:27: error: use of undefined value here causes illegal behavior
1097// :77:27: note: when computing vector element at index '0'
1098// :77:27: error: use of undefined value here causes illegal behavior
1099// :77:27: note: when computing vector element at index '0'
1100// :77:27: error: use of undefined value here causes illegal behavior
1101// :77:27: note: when computing vector element at index '0'
1102// :77:27: error: use of undefined value here causes illegal behavior
1103// :77:27: note: when computing vector element at index '0'
1104// :77:27: error: use of undefined value here causes illegal behavior
1105// :77:27: note: when computing vector element at index '1'
1106// :77:27: error: use of undefined value here causes illegal behavior
1107// :77:27: note: when computing vector element at index '1'
1108// :77:27: error: use of undefined value here causes illegal behavior
1109// :77:27: note: when computing vector element at index '0'
1110// :77:27: error: use of undefined value here causes illegal behavior
1111// :77:27: note: when computing vector element at index '0'
1112// :77:27: error: use of undefined value here causes illegal behavior
1113// :77:27: note: when computing vector element at index '0'
1114// :77:27: error: use of undefined value here causes illegal behavior
1115// :77:27: note: when computing vector element at index '0'
1116// :77:27: error: use of undefined value here causes illegal behavior
1117// :77:27: error: use of undefined value here causes illegal behavior
1118// :77:27: error: use of undefined value here causes illegal behavior
1119// :77:27: note: when computing vector element at index '0'
1120// :77:27: error: use of undefined value here causes illegal behavior
1121// :77:27: note: when computing vector element at index '0'
1122// :77:27: error: use of undefined value here causes illegal behavior
1123// :77:27: note: when computing vector element at index '0'
1124// :77:27: error: use of undefined value here causes illegal behavior
1125// :77:27: note: when computing vector element at index '0'
1126// :77:27: error: use of undefined value here causes illegal behavior
1127// :77:27: note: when computing vector element at index '1'
1128// :77:27: error: use of undefined value here causes illegal behavior
1129// :77:27: note: when computing vector element at index '1'
1130// :77:27: error: use of undefined value here causes illegal behavior
1131// :77:27: note: when computing vector element at index '0'
1132// :77:27: error: use of undefined value here causes illegal behavior
1133// :77:27: note: when computing vector element at index '0'
1134// :77:27: error: use of undefined value here causes illegal behavior
1135// :77:27: note: when computing vector element at index '0'
1136// :77:27: error: use of undefined value here causes illegal behavior
1137// :77:27: note: when computing vector element at index '0'
1138// :77:27: error: use of undefined value here causes illegal behavior
1139// :77:27: error: use of undefined value here causes illegal behavior
1140// :77:27: error: use of undefined value here causes illegal behavior
1141// :77:27: note: when computing vector element at index '0'
1142// :77:27: error: use of undefined value here causes illegal behavior
1143// :77:27: note: when computing vector element at index '0'
1144// :77:27: error: use of undefined value here causes illegal behavior
1145// :77:27: note: when computing vector element at index '0'
1146// :77:27: error: use of undefined value here causes illegal behavior
1147// :77:27: note: when computing vector element at index '0'
1148// :77:27: error: use of undefined value here causes illegal behavior
1149// :77:27: note: when computing vector element at index '1'
1150// :77:27: error: use of undefined value here causes illegal behavior
1151// :77:27: note: when computing vector element at index '1'
1152// :77:27: error: use of undefined value here causes illegal behavior
1153// :77:27: note: when computing vector element at index '0'
1154// :77:27: error: use of undefined value here causes illegal behavior
1155// :77:27: note: when computing vector element at index '0'
1156// :77:27: error: use of undefined value here causes illegal behavior
1157// :77:27: note: when computing vector element at index '0'
1158// :77:27: error: use of undefined value here causes illegal behavior
1159// :77:27: note: when computing vector element at index '0'
1160// :77:27: error: use of undefined value here causes illegal behavior
1161// :77:27: error: use of undefined value here causes illegal behavior
1162// :77:27: error: use of undefined value here causes illegal behavior
1163// :77:27: note: when computing vector element at index '0'
1164// :77:27: error: use of undefined value here causes illegal behavior
1165// :77:27: note: when computing vector element at index '0'
1166// :77:27: error: use of undefined value here causes illegal behavior
1167// :77:27: note: when computing vector element at index '0'
1168// :77:27: error: use of undefined value here causes illegal behavior
1169// :77:27: note: when computing vector element at index '0'
1170// :77:27: error: use of undefined value here causes illegal behavior
1171// :77:27: note: when computing vector element at index '1'
1172// :77:27: error: use of undefined value here causes illegal behavior
1173// :77:27: note: when computing vector element at index '1'
1174// :77:27: error: use of undefined value here causes illegal behavior
1175// :77:27: note: when computing vector element at index '0'
1176// :77:27: error: use of undefined value here causes illegal behavior
1177// :77:27: note: when computing vector element at index '0'
1178// :77:27: error: use of undefined value here causes illegal behavior
1179// :77:27: note: when computing vector element at index '0'
1180// :77:27: error: use of undefined value here causes illegal behavior
1181// :77:27: note: when computing vector element at index '0'
1182// :77:27: error: use of undefined value here causes illegal behavior
1183// :77:27: error: use of undefined value here causes illegal behavior
1184// :77:27: error: use of undefined value here causes illegal behavior
1185// :77:27: note: when computing vector element at index '0'
1186// :77:27: error: use of undefined value here causes illegal behavior
1187// :77:27: note: when computing vector element at index '0'
1188// :77:27: error: use of undefined value here causes illegal behavior
1189// :77:27: note: when computing vector element at index '0'
1190// :77:27: error: use of undefined value here causes illegal behavior
1191// :77:27: note: when computing vector element at index '0'
1192// :77:27: error: use of undefined value here causes illegal behavior
1193// :77:27: note: when computing vector element at index '1'
1194// :77:27: error: use of undefined value here causes illegal behavior
1195// :77:27: note: when computing vector element at index '1'
1196// :77:27: error: use of undefined value here causes illegal behavior
1197// :77:27: note: when computing vector element at index '0'
1198// :77:27: error: use of undefined value here causes illegal behavior
1199// :77:27: note: when computing vector element at index '0'
1200// :77:27: error: use of undefined value here causes illegal behavior
1201// :77:27: note: when computing vector element at index '0'
1202// :77:27: error: use of undefined value here causes illegal behavior
1203// :77:27: note: when computing vector element at index '0'
1204// :77:27: error: use of undefined value here causes illegal behavior
1205// :77:27: error: use of undefined value here causes illegal behavior
1206// :77:27: error: use of undefined value here causes illegal behavior
1207// :77:27: note: when computing vector element at index '0'
1208// :77:27: error: use of undefined value here causes illegal behavior
1209// :77:27: note: when computing vector element at index '0'
1210// :77:27: error: use of undefined value here causes illegal behavior
1211// :77:27: note: when computing vector element at index '0'
1212// :77:27: error: use of undefined value here causes illegal behavior
1213// :77:27: note: when computing vector element at index '0'
1214// :77:27: error: use of undefined value here causes illegal behavior
1215// :77:27: note: when computing vector element at index '1'
1216// :77:27: error: use of undefined value here causes illegal behavior
1217// :77:27: note: when computing vector element at index '1'
1218// :77:27: error: use of undefined value here causes illegal behavior
1219// :77:27: note: when computing vector element at index '0'
1220// :77:27: error: use of undefined value here causes illegal behavior
1221// :77:27: note: when computing vector element at index '0'
1222// :77:27: error: use of undefined value here causes illegal behavior
1223// :77:27: note: when computing vector element at index '0'
1224// :77:27: error: use of undefined value here causes illegal behavior
1225// :77:27: note: when computing vector element at index '0'
1226// :77:27: error: use of undefined value here causes illegal behavior
1227// :77:27: error: use of undefined value here causes illegal behavior
1228// :77:27: error: use of undefined value here causes illegal behavior
1229// :77:27: note: when computing vector element at index '0'
1230// :77:27: error: use of undefined value here causes illegal behavior
1231// :77:27: note: when computing vector element at index '0'
1232// :77:27: error: use of undefined value here causes illegal behavior
1233// :77:27: note: when computing vector element at index '0'
1234// :77:27: error: use of undefined value here causes illegal behavior
1235// :77:27: note: when computing vector element at index '0'
1236// :77:27: error: use of undefined value here causes illegal behavior
1237// :77:27: note: when computing vector element at index '1'
1238// :77:27: error: use of undefined value here causes illegal behavior
1239// :77:27: note: when computing vector element at index '1'
1240// :77:27: error: use of undefined value here causes illegal behavior
1241// :77:27: note: when computing vector element at index '0'
1242// :77:27: error: use of undefined value here causes illegal behavior
1243// :77:27: note: when computing vector element at index '0'
1244// :77:27: error: use of undefined value here causes illegal behavior
1245// :77:27: note: when computing vector element at index '0'
1246// :77:27: error: use of undefined value here causes illegal behavior
1247// :77:27: note: when computing vector element at index '0'
1248// :77:27: error: use of undefined value here causes illegal behavior
1249// :77:27: error: use of undefined value here causes illegal behavior
1250// :77:27: error: use of undefined value here causes illegal behavior
1251// :77:27: note: when computing vector element at index '0'
1252// :77:27: error: use of undefined value here causes illegal behavior
1253// :77:27: note: when computing vector element at index '0'
1254// :77:27: error: use of undefined value here causes illegal behavior
1255// :77:27: note: when computing vector element at index '0'
1256// :77:27: error: use of undefined value here causes illegal behavior
1257// :77:27: note: when computing vector element at index '0'
1258// :77:27: error: use of undefined value here causes illegal behavior
1259// :77:27: note: when computing vector element at index '1'
1260// :77:27: error: use of undefined value here causes illegal behavior
1261// :77:27: note: when computing vector element at index '1'
1262// :77:27: error: use of undefined value here causes illegal behavior
1263// :77:27: note: when computing vector element at index '0'
1264// :77:27: error: use of undefined value here causes illegal behavior
1265// :77:27: note: when computing vector element at index '0'
1266// :77:27: error: use of undefined value here causes illegal behavior
1267// :77:27: note: when computing vector element at index '0'
1268// :77:27: error: use of undefined value here causes illegal behavior
1269// :77:27: note: when computing vector element at index '0'
1270// :77:27: error: use of undefined value here causes illegal behavior
1271// :77:27: error: use of undefined value here causes illegal behavior
1272// :77:27: error: use of undefined value here causes illegal behavior
1273// :77:27: note: when computing vector element at index '0'
1274// :77:27: error: use of undefined value here causes illegal behavior
1275// :77:27: note: when computing vector element at index '0'
1276// :77:27: error: use of undefined value here causes illegal behavior
1277// :77:27: note: when computing vector element at index '0'
1278// :77:27: error: use of undefined value here causes illegal behavior
1279// :77:27: note: when computing vector element at index '0'
1280// :77:27: error: use of undefined value here causes illegal behavior
1281// :77:27: note: when computing vector element at index '1'
1282// :77:27: error: use of undefined value here causes illegal behavior
1283// :77:27: note: when computing vector element at index '1'
1284// :77:27: error: use of undefined value here causes illegal behavior
1285// :77:27: note: when computing vector element at index '0'
1286// :77:27: error: use of undefined value here causes illegal behavior
1287// :77:27: note: when computing vector element at index '0'
1288// :77:27: error: use of undefined value here causes illegal behavior
1289// :77:27: note: when computing vector element at index '0'
1290// :77:27: error: use of undefined value here causes illegal behavior
1291// :77:27: note: when computing vector element at index '0'
1292// :77:30: error: use of undefined value here causes illegal behavior
1293// :77:30: note: when computing vector element at index '0'
1294// :77:30: error: use of undefined value here causes illegal behavior
1295// :77:30: note: when computing vector element at index '0'
1296// :77:30: error: use of undefined value here causes illegal behavior
1297// :77:30: note: when computing vector element at index '0'
1298// :77:30: error: use of undefined value here causes illegal behavior
1299// :77:30: note: when computing vector element at index '0'
1300// :77:30: error: use of undefined value here causes illegal behavior
1301// :77:30: note: when computing vector element at index '0'
1302// :77:30: error: use of undefined value here causes illegal behavior
1303// :77:30: note: when computing vector element at index '0'
1304// :77:30: error: use of undefined value here causes illegal behavior
1305// :77:30: note: when computing vector element at index '0'
1306// :77:30: error: use of undefined value here causes illegal behavior
1307// :77:30: note: when computing vector element at index '0'
1308// :77:30: error: use of undefined value here causes illegal behavior
1309// :77:30: note: when computing vector element at index '0'
1310// :77:30: error: use of undefined value here causes illegal behavior
1311// :77:30: note: when computing vector element at index '0'
1312// :77:30: error: use of undefined value here causes illegal behavior
1313// :77:30: note: when computing vector element at index '0'
1314// :77:30: error: use of undefined value here causes illegal behavior
1315// :77:30: note: when computing vector element at index '0'
1316// :77:30: error: use of undefined value here causes illegal behavior
1317// :77:30: note: when computing vector element at index '0'
1318// :77:30: error: use of undefined value here causes illegal behavior
1319// :77:30: note: when computing vector element at index '0'
1320// :77:30: error: use of undefined value here causes illegal behavior
1321// :77:30: note: when computing vector element at index '0'
1322// :77:30: error: use of undefined value here causes illegal behavior
1323// :77:30: note: when computing vector element at index '0'
1324// :77:30: error: use of undefined value here causes illegal behavior
1325// :77:30: note: when computing vector element at index '0'
1326// :77:30: error: use of undefined value here causes illegal behavior
1327// :77:30: note: when computing vector element at index '0'
1328// :77:30: error: use of undefined value here causes illegal behavior
1329// :77:30: note: when computing vector element at index '0'
1330// :77:30: error: use of undefined value here causes illegal behavior
1331// :77:30: note: when computing vector element at index '0'
1332// :77:30: error: use of undefined value here causes illegal behavior
1333// :77:30: note: when computing vector element at index '0'
1334// :77:30: error: use of undefined value here causes illegal behavior
1335// :77:30: note: when computing vector element at index '0'
1336// :81:17: error: use of undefined value here causes illegal behavior
1337// :81:17: error: use of undefined value here causes illegal behavior
1338// :81:17: error: use of undefined value here causes illegal behavior
1339// :81:17: note: when computing vector element at index '0'
1340// :81:17: error: use of undefined value here causes illegal behavior
1341// :81:17: note: when computing vector element at index '0'
1342// :81:17: error: use of undefined value here causes illegal behavior
1343// :81:17: note: when computing vector element at index '0'
1344// :81:17: error: use of undefined value here causes illegal behavior
1345// :81:17: note: when computing vector element at index '0'
1346// :81:17: error: use of undefined value here causes illegal behavior
1347// :81:17: note: when computing vector element at index '1'
1348// :81:17: error: use of undefined value here causes illegal behavior
1349// :81:17: note: when computing vector element at index '1'
1350// :81:17: error: use of undefined value here causes illegal behavior
1351// :81:17: note: when computing vector element at index '0'
1352// :81:17: error: use of undefined value here causes illegal behavior
1353// :81:17: note: when computing vector element at index '0'
1354// :81:17: error: use of undefined value here causes illegal behavior
1355// :81:17: note: when computing vector element at index '0'
1356// :81:17: error: use of undefined value here causes illegal behavior
1357// :81:17: note: when computing vector element at index '0'
1358// :81:17: error: use of undefined value here causes illegal behavior
1359// :81:17: error: use of undefined value here causes illegal behavior
1360// :81:17: error: use of undefined value here causes illegal behavior
1361// :81:17: note: when computing vector element at index '0'
1362// :81:17: error: use of undefined value here causes illegal behavior
1363// :81:17: note: when computing vector element at index '0'
1364// :81:17: error: use of undefined value here causes illegal behavior
1365// :81:17: note: when computing vector element at index '0'
1366// :81:17: error: use of undefined value here causes illegal behavior
1367// :81:17: note: when computing vector element at index '0'
1368// :81:17: error: use of undefined value here causes illegal behavior
1369// :81:17: note: when computing vector element at index '1'
1370// :81:17: error: use of undefined value here causes illegal behavior
1371// :81:17: note: when computing vector element at index '1'
1372// :81:17: error: use of undefined value here causes illegal behavior
1373// :81:17: note: when computing vector element at index '0'
1374// :81:17: error: use of undefined value here causes illegal behavior
1375// :81:17: note: when computing vector element at index '0'
1376// :81:17: error: use of undefined value here causes illegal behavior
1377// :81:17: note: when computing vector element at index '0'
1378// :81:17: error: use of undefined value here causes illegal behavior
1379// :81:17: note: when computing vector element at index '0'
1380// :81:17: error: use of undefined value here causes illegal behavior
1381// :81:17: error: use of undefined value here causes illegal behavior
1382// :81:17: error: use of undefined value here causes illegal behavior
1383// :81:17: note: when computing vector element at index '0'
1384// :81:17: error: use of undefined value here causes illegal behavior
1385// :81:17: note: when computing vector element at index '0'
1386// :81:17: error: use of undefined value here causes illegal behavior
1387// :81:17: note: when computing vector element at index '0'
1388// :81:17: error: use of undefined value here causes illegal behavior
1389// :81:17: note: when computing vector element at index '0'
1390// :81:17: error: use of undefined value here causes illegal behavior
1391// :81:17: note: when computing vector element at index '1'
1392// :81:17: error: use of undefined value here causes illegal behavior
1393// :81:17: note: when computing vector element at index '1'
1394// :81:17: error: use of undefined value here causes illegal behavior
1395// :81:17: note: when computing vector element at index '0'
1396// :81:17: error: use of undefined value here causes illegal behavior
1397// :81:17: note: when computing vector element at index '0'
1398// :81:17: error: use of undefined value here causes illegal behavior
1399// :81:17: note: when computing vector element at index '0'
1400// :81:17: error: use of undefined value here causes illegal behavior
1401// :81:17: note: when computing vector element at index '0'
1402// :81:17: error: use of undefined value here causes illegal behavior
1403// :81:17: error: use of undefined value here causes illegal behavior
1404// :81:17: error: use of undefined value here causes illegal behavior
1405// :81:17: note: when computing vector element at index '0'
1406// :81:17: error: use of undefined value here causes illegal behavior
1407// :81:17: note: when computing vector element at index '0'
1408// :81:17: error: use of undefined value here causes illegal behavior
1409// :81:17: note: when computing vector element at index '0'
1410// :81:17: error: use of undefined value here causes illegal behavior
1411// :81:17: note: when computing vector element at index '0'
1412// :81:17: error: use of undefined value here causes illegal behavior
1413// :81:17: note: when computing vector element at index '1'
1414// :81:17: error: use of undefined value here causes illegal behavior
1415// :81:17: note: when computing vector element at index '1'
1416// :81:17: error: use of undefined value here causes illegal behavior
1417// :81:17: note: when computing vector element at index '0'
1418// :81:17: error: use of undefined value here causes illegal behavior
1419// :81:17: note: when computing vector element at index '0'
1420// :81:17: error: use of undefined value here causes illegal behavior
1421// :81:17: note: when computing vector element at index '0'
1422// :81:17: error: use of undefined value here causes illegal behavior
1423// :81:17: note: when computing vector element at index '0'
1424// :81:17: error: use of undefined value here causes illegal behavior
1425// :81:17: error: use of undefined value here causes illegal behavior
1426// :81:17: error: use of undefined value here causes illegal behavior
1427// :81:17: note: when computing vector element at index '0'
1428// :81:17: error: use of undefined value here causes illegal behavior
1429// :81:17: note: when computing vector element at index '0'
1430// :81:17: error: use of undefined value here causes illegal behavior
1431// :81:17: note: when computing vector element at index '0'
1432// :81:17: error: use of undefined value here causes illegal behavior
1433// :81:17: note: when computing vector element at index '0'
1434// :81:17: error: use of undefined value here causes illegal behavior
1435// :81:17: note: when computing vector element at index '1'
1436// :81:17: error: use of undefined value here causes illegal behavior
1437// :81:17: note: when computing vector element at index '1'
1438// :81:17: error: use of undefined value here causes illegal behavior
1439// :81:17: note: when computing vector element at index '0'
1440// :81:17: error: use of undefined value here causes illegal behavior
1441// :81:17: note: when computing vector element at index '0'
1442// :81:17: error: use of undefined value here causes illegal behavior
1443// :81:17: note: when computing vector element at index '0'
1444// :81:17: error: use of undefined value here causes illegal behavior
1445// :81:17: note: when computing vector element at index '0'
1446// :81:17: error: use of undefined value here causes illegal behavior
1447// :81:17: error: use of undefined value here causes illegal behavior
1448// :81:17: error: use of undefined value here causes illegal behavior
1449// :81:17: note: when computing vector element at index '0'
1450// :81:17: error: use of undefined value here causes illegal behavior
1451// :81:17: note: when computing vector element at index '0'
1452// :81:17: error: use of undefined value here causes illegal behavior
1453// :81:17: note: when computing vector element at index '0'
1454// :81:17: error: use of undefined value here causes illegal behavior
1455// :81:17: note: when computing vector element at index '0'
1456// :81:17: error: use of undefined value here causes illegal behavior
1457// :81:17: note: when computing vector element at index '1'
1458// :81:17: error: use of undefined value here causes illegal behavior
1459// :81:17: note: when computing vector element at index '1'
1460// :81:17: error: use of undefined value here causes illegal behavior
1461// :81:17: note: when computing vector element at index '0'
1462// :81:17: error: use of undefined value here causes illegal behavior
1463// :81:17: note: when computing vector element at index '0'
1464// :81:17: error: use of undefined value here causes illegal behavior
1465// :81:17: note: when computing vector element at index '0'
1466// :81:17: error: use of undefined value here causes illegal behavior
1467// :81:17: note: when computing vector element at index '0'
1468// :81:17: error: use of undefined value here causes illegal behavior
1469// :81:17: error: use of undefined value here causes illegal behavior
1470// :81:17: error: use of undefined value here causes illegal behavior
1471// :81:17: note: when computing vector element at index '0'
1472// :81:17: error: use of undefined value here causes illegal behavior
1473// :81:17: note: when computing vector element at index '0'
1474// :81:17: error: use of undefined value here causes illegal behavior
1475// :81:17: note: when computing vector element at index '0'
1476// :81:17: error: use of undefined value here causes illegal behavior
1477// :81:17: note: when computing vector element at index '0'
1478// :81:17: error: use of undefined value here causes illegal behavior
1479// :81:17: note: when computing vector element at index '1'
1480// :81:17: error: use of undefined value here causes illegal behavior
1481// :81:17: note: when computing vector element at index '1'
1482// :81:17: error: use of undefined value here causes illegal behavior
1483// :81:17: note: when computing vector element at index '0'
1484// :81:17: error: use of undefined value here causes illegal behavior
1485// :81:17: note: when computing vector element at index '0'
1486// :81:17: error: use of undefined value here causes illegal behavior
1487// :81:17: note: when computing vector element at index '0'
1488// :81:17: error: use of undefined value here causes illegal behavior
1489// :81:17: note: when computing vector element at index '0'
1490// :81:17: error: use of undefined value here causes illegal behavior
1491// :81:17: error: use of undefined value here causes illegal behavior
1492// :81:17: error: use of undefined value here causes illegal behavior
1493// :81:17: note: when computing vector element at index '0'
1494// :81:17: error: use of undefined value here causes illegal behavior
1495// :81:17: note: when computing vector element at index '0'
1496// :81:17: error: use of undefined value here causes illegal behavior
1497// :81:17: note: when computing vector element at index '0'
1498// :81:17: error: use of undefined value here causes illegal behavior
1499// :81:17: note: when computing vector element at index '0'
1500// :81:17: error: use of undefined value here causes illegal behavior
1501// :81:17: note: when computing vector element at index '1'
1502// :81:17: error: use of undefined value here causes illegal behavior
1503// :81:17: note: when computing vector element at index '1'
1504// :81:17: error: use of undefined value here causes illegal behavior
1505// :81:17: note: when computing vector element at index '0'
1506// :81:17: error: use of undefined value here causes illegal behavior
1507// :81:17: note: when computing vector element at index '0'
1508// :81:17: error: use of undefined value here causes illegal behavior
1509// :81:17: note: when computing vector element at index '0'
1510// :81:17: error: use of undefined value here causes illegal behavior
1511// :81:17: note: when computing vector element at index '0'
1512// :81:17: error: use of undefined value here causes illegal behavior
1513// :81:17: error: use of undefined value here causes illegal behavior
1514// :81:17: error: use of undefined value here causes illegal behavior
1515// :81:17: note: when computing vector element at index '0'
1516// :81:17: error: use of undefined value here causes illegal behavior
1517// :81:17: note: when computing vector element at index '0'
1518// :81:17: error: use of undefined value here causes illegal behavior
1519// :81:17: note: when computing vector element at index '0'
1520// :81:17: error: use of undefined value here causes illegal behavior
1521// :81:17: note: when computing vector element at index '0'
1522// :81:17: error: use of undefined value here causes illegal behavior
1523// :81:17: note: when computing vector element at index '1'
1524// :81:17: error: use of undefined value here causes illegal behavior
1525// :81:17: note: when computing vector element at index '1'
1526// :81:17: error: use of undefined value here causes illegal behavior
1527// :81:17: note: when computing vector element at index '0'
1528// :81:17: error: use of undefined value here causes illegal behavior
1529// :81:17: note: when computing vector element at index '0'
1530// :81:17: error: use of undefined value here causes illegal behavior
1531// :81:17: note: when computing vector element at index '0'
1532// :81:17: error: use of undefined value here causes illegal behavior
1533// :81:17: note: when computing vector element at index '0'
1534// :81:17: error: use of undefined value here causes illegal behavior
1535// :81:17: error: use of undefined value here causes illegal behavior
1536// :81:17: error: use of undefined value here causes illegal behavior
1537// :81:17: note: when computing vector element at index '0'
1538// :81:17: error: use of undefined value here causes illegal behavior
1539// :81:17: note: when computing vector element at index '0'
1540// :81:17: error: use of undefined value here causes illegal behavior
1541// :81:17: note: when computing vector element at index '0'
1542// :81:17: error: use of undefined value here causes illegal behavior
1543// :81:17: note: when computing vector element at index '0'
1544// :81:17: error: use of undefined value here causes illegal behavior
1545// :81:17: note: when computing vector element at index '1'
1546// :81:17: error: use of undefined value here causes illegal behavior
1547// :81:17: note: when computing vector element at index '1'
1548// :81:17: error: use of undefined value here causes illegal behavior
1549// :81:17: note: when computing vector element at index '0'
1550// :81:17: error: use of undefined value here causes illegal behavior
1551// :81:17: note: when computing vector element at index '0'
1552// :81:17: error: use of undefined value here causes illegal behavior
1553// :81:17: note: when computing vector element at index '0'
1554// :81:17: error: use of undefined value here causes illegal behavior
1555// :81:17: note: when computing vector element at index '0'
1556// :81:17: error: use of undefined value here causes illegal behavior
1557// :81:17: error: use of undefined value here causes illegal behavior
1558// :81:17: error: use of undefined value here causes illegal behavior
1559// :81:17: note: when computing vector element at index '0'
1560// :81:17: error: use of undefined value here causes illegal behavior
1561// :81:17: note: when computing vector element at index '0'
1562// :81:17: error: use of undefined value here causes illegal behavior
1563// :81:17: note: when computing vector element at index '0'
1564// :81:17: error: use of undefined value here causes illegal behavior
1565// :81:17: note: when computing vector element at index '0'
1566// :81:17: error: use of undefined value here causes illegal behavior
1567// :81:17: note: when computing vector element at index '1'
1568// :81:17: error: use of undefined value here causes illegal behavior
1569// :81:17: note: when computing vector element at index '1'
1570// :81:17: error: use of undefined value here causes illegal behavior
1571// :81:17: note: when computing vector element at index '0'
1572// :81:17: error: use of undefined value here causes illegal behavior
1573// :81:17: note: when computing vector element at index '0'
1574// :81:17: error: use of undefined value here causes illegal behavior
1575// :81:17: note: when computing vector element at index '0'
1576// :81:17: error: use of undefined value here causes illegal behavior
1577// :81:17: note: when computing vector element at index '0'
1578// :81:21: error: use of undefined value here causes illegal behavior
1579// :81:21: note: when computing vector element at index '0'
1580// :81:21: error: use of undefined value here causes illegal behavior
1581// :81:21: note: when computing vector element at index '0'
1582// :81:21: error: use of undefined value here causes illegal behavior
1583// :81:21: note: when computing vector element at index '0'
1584// :81:21: error: use of undefined value here causes illegal behavior
1585// :81:21: note: when computing vector element at index '0'
1586// :81:21: error: use of undefined value here causes illegal behavior
1587// :81:21: note: when computing vector element at index '0'
1588// :81:21: error: use of undefined value here causes illegal behavior
1589// :81:21: note: when computing vector element at index '0'
1590// :81:21: error: use of undefined value here causes illegal behavior
1591// :81:21: note: when computing vector element at index '0'
1592// :81:21: error: use of undefined value here causes illegal behavior
1593// :81:21: note: when computing vector element at index '0'
1594// :81:21: error: use of undefined value here causes illegal behavior
1595// :81:21: note: when computing vector element at index '0'
1596// :81:21: error: use of undefined value here causes illegal behavior
1597// :81:21: note: when computing vector element at index '0'
1598// :81:21: error: use of undefined value here causes illegal behavior
1599// :81:21: note: when computing vector element at index '0'
1600// :81:21: error: use of undefined value here causes illegal behavior
1601// :81:21: note: when computing vector element at index '0'
1602// :81:21: error: use of undefined value here causes illegal behavior
1603// :81:21: note: when computing vector element at index '0'
1604// :81:21: error: use of undefined value here causes illegal behavior
1605// :81:21: note: when computing vector element at index '0'
1606// :81:21: error: use of undefined value here causes illegal behavior
1607// :81:21: note: when computing vector element at index '0'
1608// :81:21: error: use of undefined value here causes illegal behavior
1609// :81:21: note: when computing vector element at index '0'
1610// :81:21: error: use of undefined value here causes illegal behavior
1611// :81:21: note: when computing vector element at index '0'
1612// :81:21: error: use of undefined value here causes illegal behavior
1613// :81:21: note: when computing vector element at index '0'
1614// :81:21: error: use of undefined value here causes illegal behavior
1615// :81:21: note: when computing vector element at index '0'
1616// :81:21: error: use of undefined value here causes illegal behavior
1617// :81:21: note: when computing vector element at index '0'
1618// :81:21: error: use of undefined value here causes illegal behavior
1619// :81:21: note: when computing vector element at index '0'
1620// :81:21: error: use of undefined value here causes illegal behavior
1621// :81:21: note: when computing vector element at index '0'
1622// :85:22: error: use of undefined value here causes illegal behavior
1623// :85:22: error: use of undefined value here causes illegal behavior
1624// :85:22: error: use of undefined value here causes illegal behavior
1625// :85:22: note: when computing vector element at index '0'
1626// :85:22: error: use of undefined value here causes illegal behavior
1627// :85:22: note: when computing vector element at index '0'
1628// :85:22: error: use of undefined value here causes illegal behavior
1629// :85:22: note: when computing vector element at index '0'
1630// :85:22: error: use of undefined value here causes illegal behavior
1631// :85:22: note: when computing vector element at index '0'
1632// :85:22: error: use of undefined value here causes illegal behavior
1633// :85:22: note: when computing vector element at index '1'
1634// :85:22: error: use of undefined value here causes illegal behavior
1635// :85:22: note: when computing vector element at index '1'
1636// :85:22: error: use of undefined value here causes illegal behavior
1637// :85:22: note: when computing vector element at index '0'
1638// :85:22: error: use of undefined value here causes illegal behavior
1639// :85:22: note: when computing vector element at index '0'
1640// :85:22: error: use of undefined value here causes illegal behavior
1641// :85:22: note: when computing vector element at index '0'
1642// :85:22: error: use of undefined value here causes illegal behavior
1643// :85:22: note: when computing vector element at index '0'
1644// :85:22: error: use of undefined value here causes illegal behavior
1645// :85:22: error: use of undefined value here causes illegal behavior
1646// :85:22: error: use of undefined value here causes illegal behavior
1647// :85:22: note: when computing vector element at index '0'
1648// :85:22: error: use of undefined value here causes illegal behavior
1649// :85:22: note: when computing vector element at index '0'
1650// :85:22: error: use of undefined value here causes illegal behavior
1651// :85:22: note: when computing vector element at index '0'
1652// :85:22: error: use of undefined value here causes illegal behavior
1653// :85:22: note: when computing vector element at index '0'
1654// :85:22: error: use of undefined value here causes illegal behavior
1655// :85:22: note: when computing vector element at index '1'
1656// :85:22: error: use of undefined value here causes illegal behavior
1657// :85:22: note: when computing vector element at index '1'
1658// :85:22: error: use of undefined value here causes illegal behavior
1659// :85:22: note: when computing vector element at index '0'
1660// :85:22: error: use of undefined value here causes illegal behavior
1661// :85:22: note: when computing vector element at index '0'
1662// :85:22: error: use of undefined value here causes illegal behavior
1663// :85:22: note: when computing vector element at index '0'
1664// :85:22: error: use of undefined value here causes illegal behavior
1665// :85:22: note: when computing vector element at index '0'
1666// :85:22: error: use of undefined value here causes illegal behavior
1667// :85:22: error: use of undefined value here causes illegal behavior
1668// :85:22: error: use of undefined value here causes illegal behavior
1669// :85:22: note: when computing vector element at index '0'
1670// :85:22: error: use of undefined value here causes illegal behavior
1671// :85:22: note: when computing vector element at index '0'
1672// :85:22: error: use of undefined value here causes illegal behavior
1673// :85:22: note: when computing vector element at index '0'
1674// :85:22: error: use of undefined value here causes illegal behavior
1675// :85:22: note: when computing vector element at index '0'
1676// :85:22: error: use of undefined value here causes illegal behavior
1677// :85:22: note: when computing vector element at index '1'
1678// :85:22: error: use of undefined value here causes illegal behavior
1679// :85:22: note: when computing vector element at index '1'
1680// :85:22: error: use of undefined value here causes illegal behavior
1681// :85:22: note: when computing vector element at index '0'
1682// :85:22: error: use of undefined value here causes illegal behavior
1683// :85:22: note: when computing vector element at index '0'
1684// :85:22: error: use of undefined value here causes illegal behavior
1685// :85:22: note: when computing vector element at index '0'
1686// :85:22: error: use of undefined value here causes illegal behavior
1687// :85:22: note: when computing vector element at index '0'
1688// :85:22: error: use of undefined value here causes illegal behavior
1689// :85:22: error: use of undefined value here causes illegal behavior
1690// :85:22: error: use of undefined value here causes illegal behavior
1691// :85:22: note: when computing vector element at index '0'
1692// :85:22: error: use of undefined value here causes illegal behavior
1693// :85:22: note: when computing vector element at index '0'
1694// :85:22: error: use of undefined value here causes illegal behavior
1695// :85:22: note: when computing vector element at index '0'
1696// :85:22: error: use of undefined value here causes illegal behavior
1697// :85:22: note: when computing vector element at index '0'
1698// :85:22: error: use of undefined value here causes illegal behavior
1699// :85:22: note: when computing vector element at index '1'
1700// :85:22: error: use of undefined value here causes illegal behavior
1701// :85:22: note: when computing vector element at index '1'
1702// :85:22: error: use of undefined value here causes illegal behavior
1703// :85:22: note: when computing vector element at index '0'
1704// :85:22: error: use of undefined value here causes illegal behavior
1705// :85:22: note: when computing vector element at index '0'
1706// :85:22: error: use of undefined value here causes illegal behavior
1707// :85:22: note: when computing vector element at index '0'
1708// :85:22: error: use of undefined value here causes illegal behavior
1709// :85:22: note: when computing vector element at index '0'
1710// :85:22: error: use of undefined value here causes illegal behavior
1711// :85:22: error: use of undefined value here causes illegal behavior
1712// :85:22: error: use of undefined value here causes illegal behavior
1713// :85:22: note: when computing vector element at index '0'
1714// :85:22: error: use of undefined value here causes illegal behavior
1715// :85:22: note: when computing vector element at index '0'
1716// :85:22: error: use of undefined value here causes illegal behavior
1717// :85:22: note: when computing vector element at index '0'
1718// :85:22: error: use of undefined value here causes illegal behavior
1719// :85:22: note: when computing vector element at index '0'
1720// :85:22: error: use of undefined value here causes illegal behavior
1721// :85:22: note: when computing vector element at index '1'
1722// :85:22: error: use of undefined value here causes illegal behavior
1723// :85:22: note: when computing vector element at index '1'
1724// :85:22: error: use of undefined value here causes illegal behavior
1725// :85:22: note: when computing vector element at index '0'
1726// :85:22: error: use of undefined value here causes illegal behavior
1727// :85:22: note: when computing vector element at index '0'
1728// :85:22: error: use of undefined value here causes illegal behavior
1729// :85:22: note: when computing vector element at index '0'
1730// :85:22: error: use of undefined value here causes illegal behavior
1731// :85:22: note: when computing vector element at index '0'
1732// :85:22: error: use of undefined value here causes illegal behavior
1733// :85:22: error: use of undefined value here causes illegal behavior
1734// :85:22: error: use of undefined value here causes illegal behavior
1735// :85:22: note: when computing vector element at index '0'
1736// :85:22: error: use of undefined value here causes illegal behavior
1737// :85:22: note: when computing vector element at index '0'
1738// :85:22: error: use of undefined value here causes illegal behavior
1739// :85:22: note: when computing vector element at index '0'
1740// :85:22: error: use of undefined value here causes illegal behavior
1741// :85:22: note: when computing vector element at index '0'
1742// :85:22: error: use of undefined value here causes illegal behavior
1743// :85:22: note: when computing vector element at index '1'
1744// :85:22: error: use of undefined value here causes illegal behavior
1745// :85:22: note: when computing vector element at index '1'
1746// :85:22: error: use of undefined value here causes illegal behavior
1747// :85:22: note: when computing vector element at index '0'
1748// :85:22: error: use of undefined value here causes illegal behavior
1749// :85:22: note: when computing vector element at index '0'
1750// :85:22: error: use of undefined value here causes illegal behavior
1751// :85:22: note: when computing vector element at index '0'
1752// :85:22: error: use of undefined value here causes illegal behavior
1753// :85:22: note: when computing vector element at index '0'
1754// :85:22: error: use of undefined value here causes illegal behavior
1755// :85:22: error: use of undefined value here causes illegal behavior
1756// :85:22: error: use of undefined value here causes illegal behavior
1757// :85:22: note: when computing vector element at index '0'
1758// :85:22: error: use of undefined value here causes illegal behavior
1759// :85:22: note: when computing vector element at index '0'
1760// :85:22: error: use of undefined value here causes illegal behavior
1761// :85:22: note: when computing vector element at index '0'
1762// :85:22: error: use of undefined value here causes illegal behavior
1763// :85:22: note: when computing vector element at index '0'
1764// :85:22: error: use of undefined value here causes illegal behavior
1765// :85:22: note: when computing vector element at index '1'
1766// :85:22: error: use of undefined value here causes illegal behavior
1767// :85:22: note: when computing vector element at index '1'
1768// :85:22: error: use of undefined value here causes illegal behavior
1769// :85:22: note: when computing vector element at index '0'
1770// :85:22: error: use of undefined value here causes illegal behavior
1771// :85:22: note: when computing vector element at index '0'
1772// :85:22: error: use of undefined value here causes illegal behavior
1773// :85:22: note: when computing vector element at index '0'
1774// :85:22: error: use of undefined value here causes illegal behavior
1775// :85:22: note: when computing vector element at index '0'
1776// :85:22: error: use of undefined value here causes illegal behavior
1777// :85:22: error: use of undefined value here causes illegal behavior
1778// :85:22: error: use of undefined value here causes illegal behavior
1779// :85:22: note: when computing vector element at index '0'
1780// :85:22: error: use of undefined value here causes illegal behavior
1781// :85:22: note: when computing vector element at index '0'
1782// :85:22: error: use of undefined value here causes illegal behavior
1783// :85:22: note: when computing vector element at index '0'
1784// :85:22: error: use of undefined value here causes illegal behavior
1785// :85:22: note: when computing vector element at index '0'
1786// :85:22: error: use of undefined value here causes illegal behavior
1787// :85:22: note: when computing vector element at index '1'
1788// :85:22: error: use of undefined value here causes illegal behavior
1789// :85:22: note: when computing vector element at index '1'
1790// :85:22: error: use of undefined value here causes illegal behavior
1791// :85:22: note: when computing vector element at index '0'
1792// :85:22: error: use of undefined value here causes illegal behavior
1793// :85:22: note: when computing vector element at index '0'
1794// :85:22: error: use of undefined value here causes illegal behavior
1795// :85:22: note: when computing vector element at index '0'
1796// :85:22: error: use of undefined value here causes illegal behavior
1797// :85:22: note: when computing vector element at index '0'
1798// :85:22: error: use of undefined value here causes illegal behavior
1799// :85:22: error: use of undefined value here causes illegal behavior
1800// :85:22: error: use of undefined value here causes illegal behavior
1801// :85:22: note: when computing vector element at index '0'
1802// :85:22: error: use of undefined value here causes illegal behavior
1803// :85:22: note: when computing vector element at index '0'
1804// :85:22: error: use of undefined value here causes illegal behavior
1805// :85:22: note: when computing vector element at index '0'
1806// :85:22: error: use of undefined value here causes illegal behavior
1807// :85:22: note: when computing vector element at index '0'
1808// :85:22: error: use of undefined value here causes illegal behavior
1809// :85:22: note: when computing vector element at index '1'
1810// :85:22: error: use of undefined value here causes illegal behavior
1811// :85:22: note: when computing vector element at index '1'
1812// :85:22: error: use of undefined value here causes illegal behavior
1813// :85:22: note: when computing vector element at index '0'
1814// :85:22: error: use of undefined value here causes illegal behavior
1815// :85:22: note: when computing vector element at index '0'
1816// :85:22: error: use of undefined value here causes illegal behavior
1817// :85:22: note: when computing vector element at index '0'
1818// :85:22: error: use of undefined value here causes illegal behavior
1819// :85:22: note: when computing vector element at index '0'
1820// :85:22: error: use of undefined value here causes illegal behavior
1821// :85:22: error: use of undefined value here causes illegal behavior
1822// :85:22: error: use of undefined value here causes illegal behavior
1823// :85:22: note: when computing vector element at index '0'
1824// :85:22: error: use of undefined value here causes illegal behavior
1825// :85:22: note: when computing vector element at index '0'
1826// :85:22: error: use of undefined value here causes illegal behavior
1827// :85:22: note: when computing vector element at index '0'
1828// :85:22: error: use of undefined value here causes illegal behavior
1829// :85:22: note: when computing vector element at index '0'
1830// :85:22: error: use of undefined value here causes illegal behavior
1831// :85:22: note: when computing vector element at index '1'
1832// :85:22: error: use of undefined value here causes illegal behavior
1833// :85:22: note: when computing vector element at index '1'
1834// :85:22: error: use of undefined value here causes illegal behavior
1835// :85:22: note: when computing vector element at index '0'
1836// :85:22: error: use of undefined value here causes illegal behavior
1837// :85:22: note: when computing vector element at index '0'
1838// :85:22: error: use of undefined value here causes illegal behavior
1839// :85:22: note: when computing vector element at index '0'
1840// :85:22: error: use of undefined value here causes illegal behavior
1841// :85:22: note: when computing vector element at index '0'
1842// :85:22: error: use of undefined value here causes illegal behavior
1843// :85:22: error: use of undefined value here causes illegal behavior
1844// :85:22: error: use of undefined value here causes illegal behavior
1845// :85:22: note: when computing vector element at index '0'
1846// :85:22: error: use of undefined value here causes illegal behavior
1847// :85:22: note: when computing vector element at index '0'
1848// :85:22: error: use of undefined value here causes illegal behavior
1849// :85:22: note: when computing vector element at index '0'
1850// :85:22: error: use of undefined value here causes illegal behavior
1851// :85:22: note: when computing vector element at index '0'
1852// :85:22: error: use of undefined value here causes illegal behavior
1853// :85:22: note: when computing vector element at index '1'
1854// :85:22: error: use of undefined value here causes illegal behavior
1855// :85:22: note: when computing vector element at index '1'
1856// :85:22: error: use of undefined value here causes illegal behavior
1857// :85:22: note: when computing vector element at index '0'
1858// :85:22: error: use of undefined value here causes illegal behavior
1859// :85:22: note: when computing vector element at index '0'
1860// :85:22: error: use of undefined value here causes illegal behavior
1861// :85:22: note: when computing vector element at index '0'
1862// :85:22: error: use of undefined value here causes illegal behavior
1863// :85:22: note: when computing vector element at index '0'
1864// :85:25: error: use of undefined value here causes illegal behavior
1865// :85:25: note: when computing vector element at index '0'
1866// :85:25: error: use of undefined value here causes illegal behavior
1867// :85:25: note: when computing vector element at index '0'
1868// :85:25: error: use of undefined value here causes illegal behavior
1869// :85:25: note: when computing vector element at index '0'
1870// :85:25: error: use of undefined value here causes illegal behavior
1871// :85:25: note: when computing vector element at index '0'
1872// :85:25: error: use of undefined value here causes illegal behavior
1873// :85:25: note: when computing vector element at index '0'
1874// :85:25: error: use of undefined value here causes illegal behavior
1875// :85:25: note: when computing vector element at index '0'
1876// :85:25: error: use of undefined value here causes illegal behavior
1877// :85:25: note: when computing vector element at index '0'
1878// :85:25: error: use of undefined value here causes illegal behavior
1879// :85:25: note: when computing vector element at index '0'
1880// :85:25: error: use of undefined value here causes illegal behavior
1881// :85:25: note: when computing vector element at index '0'
1882// :85:25: error: use of undefined value here causes illegal behavior
1883// :85:25: note: when computing vector element at index '0'
1884// :85:25: error: use of undefined value here causes illegal behavior
1885// :85:25: note: when computing vector element at index '0'
1886// :85:25: error: use of undefined value here causes illegal behavior
1887// :85:25: note: when computing vector element at index '0'
1888// :85:25: error: use of undefined value here causes illegal behavior
1889// :85:25: note: when computing vector element at index '0'
1890// :85:25: error: use of undefined value here causes illegal behavior
1891// :85:25: note: when computing vector element at index '0'
1892// :85:25: error: use of undefined value here causes illegal behavior
1893// :85:25: note: when computing vector element at index '0'
1894// :85:25: error: use of undefined value here causes illegal behavior
1895// :85:25: note: when computing vector element at index '0'
1896// :85:25: error: use of undefined value here causes illegal behavior
1897// :85:25: note: when computing vector element at index '0'
1898// :85:25: error: use of undefined value here causes illegal behavior
1899// :85:25: note: when computing vector element at index '0'
1900// :85:25: error: use of undefined value here causes illegal behavior
1901// :85:25: note: when computing vector element at index '0'
1902// :85:25: error: use of undefined value here causes illegal behavior
1903// :85:25: note: when computing vector element at index '0'
1904// :85:25: error: use of undefined value here causes illegal behavior
1905// :85:25: note: when computing vector element at index '0'
1906// :85:25: error: use of undefined value here causes illegal behavior
1907// :85:25: note: when computing vector element at index '0'
1908// :89:22: error: use of undefined value here causes illegal behavior
1909// :89:22: error: use of undefined value here causes illegal behavior
1910// :89:22: error: use of undefined value here causes illegal behavior
1911// :89:22: note: when computing vector element at index '0'
1912// :89:22: error: use of undefined value here causes illegal behavior
1913// :89:22: note: when computing vector element at index '0'
1914// :89:22: error: use of undefined value here causes illegal behavior
1915// :89:22: note: when computing vector element at index '0'
1916// :89:22: error: use of undefined value here causes illegal behavior
1917// :89:22: note: when computing vector element at index '0'
1918// :89:22: error: use of undefined value here causes illegal behavior
1919// :89:22: note: when computing vector element at index '1'
1920// :89:22: error: use of undefined value here causes illegal behavior
1921// :89:22: note: when computing vector element at index '1'
1922// :89:22: error: use of undefined value here causes illegal behavior
1923// :89:22: note: when computing vector element at index '0'
1924// :89:22: error: use of undefined value here causes illegal behavior
1925// :89:22: note: when computing vector element at index '0'
1926// :89:22: error: use of undefined value here causes illegal behavior
1927// :89:22: note: when computing vector element at index '0'
1928// :89:22: error: use of undefined value here causes illegal behavior
1929// :89:22: note: when computing vector element at index '0'
1930// :89:22: error: use of undefined value here causes illegal behavior
1931// :89:22: error: use of undefined value here causes illegal behavior
1932// :89:22: error: use of undefined value here causes illegal behavior
1933// :89:22: note: when computing vector element at index '0'
1934// :89:22: error: use of undefined value here causes illegal behavior
1935// :89:22: note: when computing vector element at index '0'
1936// :89:22: error: use of undefined value here causes illegal behavior
1937// :89:22: note: when computing vector element at index '0'
1938// :89:22: error: use of undefined value here causes illegal behavior
1939// :89:22: note: when computing vector element at index '0'
1940// :89:22: error: use of undefined value here causes illegal behavior
1941// :89:22: note: when computing vector element at index '1'
1942// :89:22: error: use of undefined value here causes illegal behavior
1943// :89:22: note: when computing vector element at index '1'
1944// :89:22: error: use of undefined value here causes illegal behavior
1945// :89:22: note: when computing vector element at index '0'
1946// :89:22: error: use of undefined value here causes illegal behavior
1947// :89:22: note: when computing vector element at index '0'
1948// :89:22: error: use of undefined value here causes illegal behavior
1949// :89:22: note: when computing vector element at index '0'
1950// :89:22: error: use of undefined value here causes illegal behavior
1951// :89:22: note: when computing vector element at index '0'
1952// :89:22: error: use of undefined value here causes illegal behavior
1953// :89:22: error: use of undefined value here causes illegal behavior
1954// :89:22: error: use of undefined value here causes illegal behavior
1955// :89:22: note: when computing vector element at index '0'
1956// :89:22: error: use of undefined value here causes illegal behavior
1957// :89:22: note: when computing vector element at index '0'
1958// :89:22: error: use of undefined value here causes illegal behavior
1959// :89:22: note: when computing vector element at index '0'
1960// :89:22: error: use of undefined value here causes illegal behavior
1961// :89:22: note: when computing vector element at index '0'
1962// :89:22: error: use of undefined value here causes illegal behavior
1963// :89:22: note: when computing vector element at index '1'
1964// :89:22: error: use of undefined value here causes illegal behavior
1965// :89:22: note: when computing vector element at index '1'
1966// :89:22: error: use of undefined value here causes illegal behavior
1967// :89:22: note: when computing vector element at index '0'
1968// :89:22: error: use of undefined value here causes illegal behavior
1969// :89:22: note: when computing vector element at index '0'
1970// :89:22: error: use of undefined value here causes illegal behavior
1971// :89:22: note: when computing vector element at index '0'
1972// :89:22: error: use of undefined value here causes illegal behavior
1973// :89:22: note: when computing vector element at index '0'
1974// :89:22: error: use of undefined value here causes illegal behavior
1975// :89:22: error: use of undefined value here causes illegal behavior
1976// :89:22: error: use of undefined value here causes illegal behavior
1977// :89:22: note: when computing vector element at index '0'
1978// :89:22: error: use of undefined value here causes illegal behavior
1979// :89:22: note: when computing vector element at index '0'
1980// :89:22: error: use of undefined value here causes illegal behavior
1981// :89:22: note: when computing vector element at index '0'
1982// :89:22: error: use of undefined value here causes illegal behavior
1983// :89:22: note: when computing vector element at index '0'
1984// :89:22: error: use of undefined value here causes illegal behavior
1985// :89:22: note: when computing vector element at index '1'
1986// :89:22: error: use of undefined value here causes illegal behavior
1987// :89:22: note: when computing vector element at index '1'
1988// :89:22: error: use of undefined value here causes illegal behavior
1989// :89:22: note: when computing vector element at index '0'
1990// :89:22: error: use of undefined value here causes illegal behavior
1991// :89:22: note: when computing vector element at index '0'
1992// :89:22: error: use of undefined value here causes illegal behavior
1993// :89:22: note: when computing vector element at index '0'
1994// :89:22: error: use of undefined value here causes illegal behavior
1995// :89:22: note: when computing vector element at index '0'
1996// :89:22: error: use of undefined value here causes illegal behavior
1997// :89:22: error: use of undefined value here causes illegal behavior
1998// :89:22: error: use of undefined value here causes illegal behavior
1999// :89:22: note: when computing vector element at index '0'
2000// :89:22: error: use of undefined value here causes illegal behavior
2001// :89:22: note: when computing vector element at index '0'
2002// :89:22: error: use of undefined value here causes illegal behavior
2003// :89:22: note: when computing vector element at index '0'
2004// :89:22: error: use of undefined value here causes illegal behavior
2005// :89:22: note: when computing vector element at index '0'
2006// :89:22: error: use of undefined value here causes illegal behavior
2007// :89:22: note: when computing vector element at index '1'
2008// :89:22: error: use of undefined value here causes illegal behavior
2009// :89:22: note: when computing vector element at index '1'
2010// :89:22: error: use of undefined value here causes illegal behavior
2011// :89:22: note: when computing vector element at index '0'
2012// :89:22: error: use of undefined value here causes illegal behavior
2013// :89:22: note: when computing vector element at index '0'
2014// :89:22: error: use of undefined value here causes illegal behavior
2015// :89:22: note: when computing vector element at index '0'
2016// :89:22: error: use of undefined value here causes illegal behavior
2017// :89:22: note: when computing vector element at index '0'
2018// :89:22: error: use of undefined value here causes illegal behavior
2019// :89:22: error: use of undefined value here causes illegal behavior
2020// :89:22: error: use of undefined value here causes illegal behavior
2021// :89:22: note: when computing vector element at index '0'
2022// :89:22: error: use of undefined value here causes illegal behavior
2023// :89:22: note: when computing vector element at index '0'
2024// :89:22: error: use of undefined value here causes illegal behavior
2025// :89:22: note: when computing vector element at index '0'
2026// :89:22: error: use of undefined value here causes illegal behavior
2027// :89:22: note: when computing vector element at index '0'
2028// :89:22: error: use of undefined value here causes illegal behavior
2029// :89:22: note: when computing vector element at index '1'
2030// :89:22: error: use of undefined value here causes illegal behavior
2031// :89:22: note: when computing vector element at index '1'
2032// :89:22: error: use of undefined value here causes illegal behavior
2033// :89:22: note: when computing vector element at index '0'
2034// :89:22: error: use of undefined value here causes illegal behavior
2035// :89:22: note: when computing vector element at index '0'
2036// :89:22: error: use of undefined value here causes illegal behavior
2037// :89:22: note: when computing vector element at index '0'
2038// :89:22: error: use of undefined value here causes illegal behavior
2039// :89:22: note: when computing vector element at index '0'
2040// :89:22: error: use of undefined value here causes illegal behavior
2041// :89:22: error: use of undefined value here causes illegal behavior
2042// :89:22: error: use of undefined value here causes illegal behavior
2043// :89:22: note: when computing vector element at index '0'
2044// :89:22: error: use of undefined value here causes illegal behavior
2045// :89:22: note: when computing vector element at index '0'
2046// :89:22: error: use of undefined value here causes illegal behavior
2047// :89:22: note: when computing vector element at index '0'
2048// :89:22: error: use of undefined value here causes illegal behavior
2049// :89:22: note: when computing vector element at index '0'
2050// :89:22: error: use of undefined value here causes illegal behavior
2051// :89:22: note: when computing vector element at index '1'
2052// :89:22: error: use of undefined value here causes illegal behavior
2053// :89:22: note: when computing vector element at index '1'
2054// :89:22: error: use of undefined value here causes illegal behavior
2055// :89:22: note: when computing vector element at index '0'
2056// :89:22: error: use of undefined value here causes illegal behavior
2057// :89:22: note: when computing vector element at index '0'
2058// :89:22: error: use of undefined value here causes illegal behavior
2059// :89:22: note: when computing vector element at index '0'
2060// :89:22: error: use of undefined value here causes illegal behavior
2061// :89:22: note: when computing vector element at index '0'
2062// :89:22: error: use of undefined value here causes illegal behavior
2063// :89:22: error: use of undefined value here causes illegal behavior
2064// :89:22: error: use of undefined value here causes illegal behavior
2065// :89:22: note: when computing vector element at index '0'
2066// :89:22: error: use of undefined value here causes illegal behavior
2067// :89:22: note: when computing vector element at index '0'
2068// :89:22: error: use of undefined value here causes illegal behavior
2069// :89:22: note: when computing vector element at index '0'
2070// :89:22: error: use of undefined value here causes illegal behavior
2071// :89:22: note: when computing vector element at index '0'
2072// :89:22: error: use of undefined value here causes illegal behavior
2073// :89:22: note: when computing vector element at index '1'
2074// :89:22: error: use of undefined value here causes illegal behavior
2075// :89:22: note: when computing vector element at index '1'
2076// :89:22: error: use of undefined value here causes illegal behavior
2077// :89:22: note: when computing vector element at index '0'
2078// :89:22: error: use of undefined value here causes illegal behavior
2079// :89:22: note: when computing vector element at index '0'
2080// :89:22: error: use of undefined value here causes illegal behavior
2081// :89:22: note: when computing vector element at index '0'
2082// :89:22: error: use of undefined value here causes illegal behavior
2083// :89:22: note: when computing vector element at index '0'
2084// :89:22: error: use of undefined value here causes illegal behavior
2085// :89:22: error: use of undefined value here causes illegal behavior
2086// :89:22: error: use of undefined value here causes illegal behavior
2087// :89:22: note: when computing vector element at index '0'
2088// :89:22: error: use of undefined value here causes illegal behavior
2089// :89:22: note: when computing vector element at index '0'
2090// :89:22: error: use of undefined value here causes illegal behavior
2091// :89:22: note: when computing vector element at index '0'
2092// :89:22: error: use of undefined value here causes illegal behavior
2093// :89:22: note: when computing vector element at index '0'
2094// :89:22: error: use of undefined value here causes illegal behavior
2095// :89:22: note: when computing vector element at index '1'
2096// :89:22: error: use of undefined value here causes illegal behavior
2097// :89:22: note: when computing vector element at index '1'
2098// :89:22: error: use of undefined value here causes illegal behavior
2099// :89:22: note: when computing vector element at index '0'
2100// :89:22: error: use of undefined value here causes illegal behavior
2101// :89:22: note: when computing vector element at index '0'
2102// :89:22: error: use of undefined value here causes illegal behavior
2103// :89:22: note: when computing vector element at index '0'
2104// :89:22: error: use of undefined value here causes illegal behavior
2105// :89:22: note: when computing vector element at index '0'
2106// :89:22: error: use of undefined value here causes illegal behavior
2107// :89:22: error: use of undefined value here causes illegal behavior
2108// :89:22: error: use of undefined value here causes illegal behavior
2109// :89:22: note: when computing vector element at index '0'
2110// :89:22: error: use of undefined value here causes illegal behavior
2111// :89:22: note: when computing vector element at index '0'
2112// :89:22: error: use of undefined value here causes illegal behavior
2113// :89:22: note: when computing vector element at index '0'
2114// :89:22: error: use of undefined value here causes illegal behavior
2115// :89:22: note: when computing vector element at index '0'
2116// :89:22: error: use of undefined value here causes illegal behavior
2117// :89:22: note: when computing vector element at index '1'
2118// :89:22: error: use of undefined value here causes illegal behavior
2119// :89:22: note: when computing vector element at index '1'
2120// :89:22: error: use of undefined value here causes illegal behavior
2121// :89:22: note: when computing vector element at index '0'
2122// :89:22: error: use of undefined value here causes illegal behavior
2123// :89:22: note: when computing vector element at index '0'
2124// :89:22: error: use of undefined value here causes illegal behavior
2125// :89:22: note: when computing vector element at index '0'
2126// :89:22: error: use of undefined value here causes illegal behavior
2127// :89:22: note: when computing vector element at index '0'
2128// :89:22: error: use of undefined value here causes illegal behavior
2129// :89:22: error: use of undefined value here causes illegal behavior
2130// :89:22: error: use of undefined value here causes illegal behavior
2131// :89:22: note: when computing vector element at index '0'
2132// :89:22: error: use of undefined value here causes illegal behavior
2133// :89:22: note: when computing vector element at index '0'
2134// :89:22: error: use of undefined value here causes illegal behavior
2135// :89:22: note: when computing vector element at index '0'
2136// :89:22: error: use of undefined value here causes illegal behavior
2137// :89:22: note: when computing vector element at index '0'
2138// :89:22: error: use of undefined value here causes illegal behavior
2139// :89:22: note: when computing vector element at index '1'
2140// :89:22: error: use of undefined value here causes illegal behavior
2141// :89:22: note: when computing vector element at index '1'
2142// :89:22: error: use of undefined value here causes illegal behavior
2143// :89:22: note: when computing vector element at index '0'
2144// :89:22: error: use of undefined value here causes illegal behavior
2145// :89:22: note: when computing vector element at index '0'
2146// :89:22: error: use of undefined value here causes illegal behavior
2147// :89:22: note: when computing vector element at index '0'
2148// :89:22: error: use of undefined value here causes illegal behavior
2149// :89:22: note: when computing vector element at index '0'
2150// :89:25: error: use of undefined value here causes illegal behavior
2151// :89:25: note: when computing vector element at index '0'
2152// :89:25: error: use of undefined value here causes illegal behavior
2153// :89:25: note: when computing vector element at index '0'
2154// :89:25: error: use of undefined value here causes illegal behavior
2155// :89:25: note: when computing vector element at index '0'
2156// :89:25: error: use of undefined value here causes illegal behavior
2157// :89:25: note: when computing vector element at index '0'
2158// :89:25: error: use of undefined value here causes illegal behavior
2159// :89:25: note: when computing vector element at index '0'
2160// :89:25: error: use of undefined value here causes illegal behavior
2161// :89:25: note: when computing vector element at index '0'
2162// :89:25: error: use of undefined value here causes illegal behavior
2163// :89:25: note: when computing vector element at index '0'
2164// :89:25: error: use of undefined value here causes illegal behavior
2165// :89:25: note: when computing vector element at index '0'
2166// :89:25: error: use of undefined value here causes illegal behavior
2167// :89:25: note: when computing vector element at index '0'
2168// :89:25: error: use of undefined value here causes illegal behavior
2169// :89:25: note: when computing vector element at index '0'
2170// :89:25: error: use of undefined value here causes illegal behavior
2171// :89:25: note: when computing vector element at index '0'
2172// :89:25: error: use of undefined value here causes illegal behavior
2173// :89:25: note: when computing vector element at index '0'
2174// :89:25: error: use of undefined value here causes illegal behavior
2175// :89:25: note: when computing vector element at index '0'
2176// :89:25: error: use of undefined value here causes illegal behavior
2177// :89:25: note: when computing vector element at index '0'
2178// :89:25: error: use of undefined value here causes illegal behavior
2179// :89:25: note: when computing vector element at index '0'
2180// :89:25: error: use of undefined value here causes illegal behavior
2181// :89:25: note: when computing vector element at index '0'
2182// :89:25: error: use of undefined value here causes illegal behavior
2183// :89:25: note: when computing vector element at index '0'
2184// :89:25: error: use of undefined value here causes illegal behavior
2185// :89:25: note: when computing vector element at index '0'
2186// :89:25: error: use of undefined value here causes illegal behavior
2187// :89:25: note: when computing vector element at index '0'
2188// :89:25: error: use of undefined value here causes illegal behavior
2189// :89:25: note: when computing vector element at index '0'
2190// :89:25: error: use of undefined value here causes illegal behavior
2191// :89:25: note: when computing vector element at index '0'
2192// :89:25: error: use of undefined value here causes illegal behavior
2193// :89:25: note: when computing vector element at index '0'
2194// :95:17: error: use of undefined value here causes illegal behavior
2195// :95:17: error: use of undefined value here causes illegal behavior
2196// :95:17: error: use of undefined value here causes illegal behavior
2197// :95:17: error: use of undefined value here causes illegal behavior
2198// :95:17: error: use of undefined value here causes illegal behavior
2199// :95:17: error: use of undefined value here causes illegal behavior
2200// :95:17: error: use of undefined value here causes illegal behavior
2201// :95:17: note: when computing vector element at index '1'
2202// :95:17: error: use of undefined value here causes illegal behavior
2203// :95:17: note: when computing vector element at index '1'
2204// :95:17: error: use of undefined value here causes illegal behavior
2205// :95:17: note: when computing vector element at index '1'
2206// :95:17: error: use of undefined value here causes illegal behavior
2207// :95:17: note: when computing vector element at index '1'
2208// :95:17: error: use of undefined value here causes illegal behavior
2209// :95:17: note: when computing vector element at index '0'
2210// :95:17: error: use of undefined value here causes illegal behavior
2211// :95:17: note: when computing vector element at index '0'
2212// :95:17: error: use of undefined value here causes illegal behavior
2213// :95:17: note: when computing vector element at index '0'
2214// :95:17: error: use of undefined value here causes illegal behavior
2215// :95:17: note: when computing vector element at index '0'
2216// :95:17: error: use of undefined value here causes illegal behavior
2217// :95:17: error: use of undefined value here causes illegal behavior
2218// :95:17: error: use of undefined value here causes illegal behavior
2219// :95:17: error: use of undefined value here causes illegal behavior
2220// :95:17: error: use of undefined value here causes illegal behavior
2221// :95:17: error: use of undefined value here causes illegal behavior
2222// :95:17: error: use of undefined value here causes illegal behavior
2223// :95:17: note: when computing vector element at index '1'
2224// :95:17: error: use of undefined value here causes illegal behavior
2225// :95:17: note: when computing vector element at index '1'
2226// :95:17: error: use of undefined value here causes illegal behavior
2227// :95:17: note: when computing vector element at index '1'
2228// :95:17: error: use of undefined value here causes illegal behavior
2229// :95:17: note: when computing vector element at index '1'
2230// :95:17: error: use of undefined value here causes illegal behavior
2231// :95:17: note: when computing vector element at index '0'
2232// :95:17: error: use of undefined value here causes illegal behavior
2233// :95:17: note: when computing vector element at index '0'
2234// :95:17: error: use of undefined value here causes illegal behavior
2235// :95:17: note: when computing vector element at index '0'
2236// :95:17: error: use of undefined value here causes illegal behavior
2237// :95:17: note: when computing vector element at index '0'
2238// :95:17: error: use of undefined value here causes illegal behavior
2239// :95:17: error: use of undefined value here causes illegal behavior
2240// :95:17: error: use of undefined value here causes illegal behavior
2241// :95:17: error: use of undefined value here causes illegal behavior
2242// :95:17: error: use of undefined value here causes illegal behavior
2243// :95:17: error: use of undefined value here causes illegal behavior
2244// :95:17: error: use of undefined value here causes illegal behavior
2245// :95:17: note: when computing vector element at index '1'
2246// :95:17: error: use of undefined value here causes illegal behavior
2247// :95:17: note: when computing vector element at index '1'
2248// :95:17: error: use of undefined value here causes illegal behavior
2249// :95:17: note: when computing vector element at index '1'
2250// :95:17: error: use of undefined value here causes illegal behavior
2251// :95:17: note: when computing vector element at index '1'
2252// :95:17: error: use of undefined value here causes illegal behavior
2253// :95:17: note: when computing vector element at index '0'
2254// :95:17: error: use of undefined value here causes illegal behavior
2255// :95:17: note: when computing vector element at index '0'
2256// :95:17: error: use of undefined value here causes illegal behavior
2257// :95:17: note: when computing vector element at index '0'
2258// :95:17: error: use of undefined value here causes illegal behavior
2259// :95:17: note: when computing vector element at index '0'
2260// :95:17: error: use of undefined value here causes illegal behavior
2261// :95:17: error: use of undefined value here causes illegal behavior
2262// :95:17: error: use of undefined value here causes illegal behavior
2263// :95:17: error: use of undefined value here causes illegal behavior
2264// :95:17: error: use of undefined value here causes illegal behavior
2265// :95:17: error: use of undefined value here causes illegal behavior
2266// :95:17: error: use of undefined value here causes illegal behavior
2267// :95:17: note: when computing vector element at index '1'
2268// :95:17: error: use of undefined value here causes illegal behavior
2269// :95:17: note: when computing vector element at index '1'
2270// :95:17: error: use of undefined value here causes illegal behavior
2271// :95:17: note: when computing vector element at index '1'
2272// :95:17: error: use of undefined value here causes illegal behavior
2273// :95:17: note: when computing vector element at index '1'
2274// :95:17: error: use of undefined value here causes illegal behavior
2275// :95:17: note: when computing vector element at index '0'
2276// :95:17: error: use of undefined value here causes illegal behavior
2277// :95:17: note: when computing vector element at index '0'
2278// :95:17: error: use of undefined value here causes illegal behavior
2279// :95:17: note: when computing vector element at index '0'
2280// :95:17: error: use of undefined value here causes illegal behavior
2281// :95:17: note: when computing vector element at index '0'
2282// :95:17: error: use of undefined value here causes illegal behavior
2283// :95:17: error: use of undefined value here causes illegal behavior
2284// :95:17: error: use of undefined value here causes illegal behavior
2285// :95:17: error: use of undefined value here causes illegal behavior
2286// :95:17: error: use of undefined value here causes illegal behavior
2287// :95:17: error: use of undefined value here causes illegal behavior
2288// :95:17: error: use of undefined value here causes illegal behavior
2289// :95:17: note: when computing vector element at index '1'
2290// :95:17: error: use of undefined value here causes illegal behavior
2291// :95:17: note: when computing vector element at index '1'
2292// :95:17: error: use of undefined value here causes illegal behavior
2293// :95:17: note: when computing vector element at index '1'
2294// :95:17: error: use of undefined value here causes illegal behavior
2295// :95:17: note: when computing vector element at index '1'
2296// :95:17: error: use of undefined value here causes illegal behavior
2297// :95:17: note: when computing vector element at index '0'
2298// :95:17: error: use of undefined value here causes illegal behavior
2299// :95:17: note: when computing vector element at index '0'
2300// :95:17: error: use of undefined value here causes illegal behavior
2301// :95:17: note: when computing vector element at index '0'
2302// :95:17: error: use of undefined value here causes illegal behavior
2303// :95:17: note: when computing vector element at index '0'
2304// :95:17: error: use of undefined value here causes illegal behavior
2305// :95:17: error: use of undefined value here causes illegal behavior
2306// :95:17: error: use of undefined value here causes illegal behavior
2307// :95:17: error: use of undefined value here causes illegal behavior
2308// :95:17: error: use of undefined value here causes illegal behavior
2309// :95:17: error: use of undefined value here causes illegal behavior
2310// :95:17: error: use of undefined value here causes illegal behavior
2311// :95:17: note: when computing vector element at index '1'
2312// :95:17: error: use of undefined value here causes illegal behavior
2313// :95:17: note: when computing vector element at index '1'
2314// :95:17: error: use of undefined value here causes illegal behavior
2315// :95:17: note: when computing vector element at index '1'
2316// :95:17: error: use of undefined value here causes illegal behavior
2317// :95:17: note: when computing vector element at index '1'
2318// :95:17: error: use of undefined value here causes illegal behavior
2319// :95:17: note: when computing vector element at index '0'
2320// :95:17: error: use of undefined value here causes illegal behavior
2321// :95:17: note: when computing vector element at index '0'
2322// :95:17: error: use of undefined value here causes illegal behavior
2323// :95:17: note: when computing vector element at index '0'
2324// :95:17: error: use of undefined value here causes illegal behavior
2325// :95:17: note: when computing vector element at index '0'
2326// :95:17: error: use of undefined value here causes illegal behavior
2327// :95:17: error: use of undefined value here causes illegal behavior
2328// :95:17: error: use of undefined value here causes illegal behavior
2329// :95:17: error: use of undefined value here causes illegal behavior
2330// :95:17: error: use of undefined value here causes illegal behavior
2331// :95:17: error: use of undefined value here causes illegal behavior
2332// :95:17: error: use of undefined value here causes illegal behavior
2333// :95:17: note: when computing vector element at index '1'
2334// :95:17: error: use of undefined value here causes illegal behavior
2335// :95:17: note: when computing vector element at index '1'
2336// :95:17: error: use of undefined value here causes illegal behavior
2337// :95:17: note: when computing vector element at index '1'
2338// :95:17: error: use of undefined value here causes illegal behavior
2339// :95:17: note: when computing vector element at index '1'
2340// :95:17: error: use of undefined value here causes illegal behavior
2341// :95:17: note: when computing vector element at index '0'
2342// :95:17: error: use of undefined value here causes illegal behavior
2343// :95:17: note: when computing vector element at index '0'
2344// :95:17: error: use of undefined value here causes illegal behavior
2345// :95:17: note: when computing vector element at index '0'
2346// :95:17: error: use of undefined value here causes illegal behavior
2347// :95:17: note: when computing vector element at index '0'
2348// :95:17: error: use of undefined value here causes illegal behavior
2349// :95:17: error: use of undefined value here causes illegal behavior
2350// :95:17: error: use of undefined value here causes illegal behavior
2351// :95:17: error: use of undefined value here causes illegal behavior
2352// :95:17: error: use of undefined value here causes illegal behavior
2353// :95:17: error: use of undefined value here causes illegal behavior
2354// :95:17: error: use of undefined value here causes illegal behavior
2355// :95:17: note: when computing vector element at index '1'
2356// :95:17: error: use of undefined value here causes illegal behavior
2357// :95:17: note: when computing vector element at index '1'
2358// :95:17: error: use of undefined value here causes illegal behavior
2359// :95:17: note: when computing vector element at index '1'
2360// :95:17: error: use of undefined value here causes illegal behavior
2361// :95:17: note: when computing vector element at index '1'
2362// :95:17: error: use of undefined value here causes illegal behavior
2363// :95:17: note: when computing vector element at index '0'
2364// :95:17: error: use of undefined value here causes illegal behavior
2365// :95:17: note: when computing vector element at index '0'
2366// :95:17: error: use of undefined value here causes illegal behavior
2367// :95:17: note: when computing vector element at index '0'
2368// :95:17: error: use of undefined value here causes illegal behavior
2369// :95:17: note: when computing vector element at index '0'
2370// :95:17: error: use of undefined value here causes illegal behavior
2371// :95:17: error: use of undefined value here causes illegal behavior
2372// :95:17: error: use of undefined value here causes illegal behavior
2373// :95:17: error: use of undefined value here causes illegal behavior
2374// :95:17: error: use of undefined value here causes illegal behavior
2375// :95:17: error: use of undefined value here causes illegal behavior
2376// :95:17: error: use of undefined value here causes illegal behavior
2377// :95:17: note: when computing vector element at index '1'
2378// :95:17: error: use of undefined value here causes illegal behavior
2379// :95:17: note: when computing vector element at index '1'
2380// :95:17: error: use of undefined value here causes illegal behavior
2381// :95:17: note: when computing vector element at index '1'
2382// :95:17: error: use of undefined value here causes illegal behavior
2383// :95:17: note: when computing vector element at index '1'
2384// :95:17: error: use of undefined value here causes illegal behavior
2385// :95:17: note: when computing vector element at index '0'
2386// :95:17: error: use of undefined value here causes illegal behavior
2387// :95:17: note: when computing vector element at index '0'
2388// :95:17: error: use of undefined value here causes illegal behavior
2389// :95:17: note: when computing vector element at index '0'
2390// :95:17: error: use of undefined value here causes illegal behavior
2391// :95:17: note: when computing vector element at index '0'
2392// :95:17: error: use of undefined value here causes illegal behavior
2393// :95:17: error: use of undefined value here causes illegal behavior
2394// :95:17: error: use of undefined value here causes illegal behavior
2395// :95:17: error: use of undefined value here causes illegal behavior
2396// :95:17: error: use of undefined value here causes illegal behavior
2397// :95:17: error: use of undefined value here causes illegal behavior
2398// :95:17: error: use of undefined value here causes illegal behavior
2399// :95:17: note: when computing vector element at index '1'
2400// :95:17: error: use of undefined value here causes illegal behavior
2401// :95:17: note: when computing vector element at index '1'
2402// :95:17: error: use of undefined value here causes illegal behavior
2403// :95:17: note: when computing vector element at index '1'
2404// :95:17: error: use of undefined value here causes illegal behavior
2405// :95:17: note: when computing vector element at index '1'
2406// :95:17: error: use of undefined value here causes illegal behavior
2407// :95:17: note: when computing vector element at index '0'
2408// :95:17: error: use of undefined value here causes illegal behavior
2409// :95:17: note: when computing vector element at index '0'
2410// :95:17: error: use of undefined value here causes illegal behavior
2411// :95:17: note: when computing vector element at index '0'
2412// :95:17: error: use of undefined value here causes illegal behavior
2413// :95:17: note: when computing vector element at index '0'
2414// :95:17: error: use of undefined value here causes illegal behavior
2415// :95:17: error: use of undefined value here causes illegal behavior
2416// :95:17: error: use of undefined value here causes illegal behavior
2417// :95:17: error: use of undefined value here causes illegal behavior
2418// :95:17: error: use of undefined value here causes illegal behavior
2419// :95:17: error: use of undefined value here causes illegal behavior
2420// :95:17: error: use of undefined value here causes illegal behavior
2421// :95:17: note: when computing vector element at index '1'
2422// :95:17: error: use of undefined value here causes illegal behavior
2423// :95:17: note: when computing vector element at index '1'
2424// :95:17: error: use of undefined value here causes illegal behavior
2425// :95:17: note: when computing vector element at index '1'
2426// :95:17: error: use of undefined value here causes illegal behavior
2427// :95:17: note: when computing vector element at index '1'
2428// :95:17: error: use of undefined value here causes illegal behavior
2429// :95:17: note: when computing vector element at index '0'
2430// :95:17: error: use of undefined value here causes illegal behavior
2431// :95:17: note: when computing vector element at index '0'
2432// :95:17: error: use of undefined value here causes illegal behavior
2433// :95:17: note: when computing vector element at index '0'
2434// :95:17: error: use of undefined value here causes illegal behavior
2435// :95:17: note: when computing vector element at index '0'
2436// :99:27: error: use of undefined value here causes illegal behavior
2437// :99:27: error: use of undefined value here causes illegal behavior
2438// :99:27: error: use of undefined value here causes illegal behavior
2439// :99:27: error: use of undefined value here causes illegal behavior
2440// :99:27: error: use of undefined value here causes illegal behavior
2441// :99:27: error: use of undefined value here causes illegal behavior
2442// :99:27: error: use of undefined value here causes illegal behavior
2443// :99:27: note: when computing vector element at index '1'
2444// :99:27: error: use of undefined value here causes illegal behavior
2445// :99:27: note: when computing vector element at index '1'
2446// :99:27: error: use of undefined value here causes illegal behavior
2447// :99:27: note: when computing vector element at index '1'
2448// :99:27: error: use of undefined value here causes illegal behavior
2449// :99:27: note: when computing vector element at index '1'
2450// :99:27: error: use of undefined value here causes illegal behavior
2451// :99:27: note: when computing vector element at index '0'
2452// :99:27: error: use of undefined value here causes illegal behavior
2453// :99:27: note: when computing vector element at index '0'
2454// :99:27: error: use of undefined value here causes illegal behavior
2455// :99:27: note: when computing vector element at index '0'
2456// :99:27: error: use of undefined value here causes illegal behavior
2457// :99:27: note: when computing vector element at index '0'
2458// :99:27: error: use of undefined value here causes illegal behavior
2459// :99:27: error: use of undefined value here causes illegal behavior
2460// :99:27: error: use of undefined value here causes illegal behavior
2461// :99:27: error: use of undefined value here causes illegal behavior
2462// :99:27: error: use of undefined value here causes illegal behavior
2463// :99:27: error: use of undefined value here causes illegal behavior
2464// :99:27: error: use of undefined value here causes illegal behavior
2465// :99:27: note: when computing vector element at index '1'
2466// :99:27: error: use of undefined value here causes illegal behavior
2467// :99:27: note: when computing vector element at index '1'
2468// :99:27: error: use of undefined value here causes illegal behavior
2469// :99:27: note: when computing vector element at index '1'
2470// :99:27: error: use of undefined value here causes illegal behavior
2471// :99:27: note: when computing vector element at index '1'
2472// :99:27: error: use of undefined value here causes illegal behavior
2473// :99:27: note: when computing vector element at index '0'
2474// :99:27: error: use of undefined value here causes illegal behavior
2475// :99:27: note: when computing vector element at index '0'
2476// :99:27: error: use of undefined value here causes illegal behavior
2477// :99:27: note: when computing vector element at index '0'
2478// :99:27: error: use of undefined value here causes illegal behavior
2479// :99:27: note: when computing vector element at index '0'
2480// :99:27: error: use of undefined value here causes illegal behavior
2481// :99:27: error: use of undefined value here causes illegal behavior
2482// :99:27: error: use of undefined value here causes illegal behavior
2483// :99:27: error: use of undefined value here causes illegal behavior
2484// :99:27: error: use of undefined value here causes illegal behavior
2485// :99:27: error: use of undefined value here causes illegal behavior
2486// :99:27: error: use of undefined value here causes illegal behavior
2487// :99:27: note: when computing vector element at index '1'
2488// :99:27: error: use of undefined value here causes illegal behavior
2489// :99:27: note: when computing vector element at index '1'
2490// :99:27: error: use of undefined value here causes illegal behavior
2491// :99:27: note: when computing vector element at index '1'
2492// :99:27: error: use of undefined value here causes illegal behavior
2493// :99:27: note: when computing vector element at index '1'
2494// :99:27: error: use of undefined value here causes illegal behavior
2495// :99:27: note: when computing vector element at index '0'
2496// :99:27: error: use of undefined value here causes illegal behavior
2497// :99:27: note: when computing vector element at index '0'
2498// :99:27: error: use of undefined value here causes illegal behavior
2499// :99:27: note: when computing vector element at index '0'
2500// :99:27: error: use of undefined value here causes illegal behavior
2501// :99:27: note: when computing vector element at index '0'
2502// :99:27: error: use of undefined value here causes illegal behavior
2503// :99:27: error: use of undefined value here causes illegal behavior
2504// :99:27: error: use of undefined value here causes illegal behavior
2505// :99:27: error: use of undefined value here causes illegal behavior
2506// :99:27: error: use of undefined value here causes illegal behavior
2507// :99:27: error: use of undefined value here causes illegal behavior
2508// :99:27: error: use of undefined value here causes illegal behavior
2509// :99:27: note: when computing vector element at index '1'
2510// :99:27: error: use of undefined value here causes illegal behavior
2511// :99:27: note: when computing vector element at index '1'
2512// :99:27: error: use of undefined value here causes illegal behavior
2513// :99:27: note: when computing vector element at index '1'
2514// :99:27: error: use of undefined value here causes illegal behavior
2515// :99:27: note: when computing vector element at index '1'
2516// :99:27: error: use of undefined value here causes illegal behavior
2517// :99:27: note: when computing vector element at index '0'
2518// :99:27: error: use of undefined value here causes illegal behavior
2519// :99:27: note: when computing vector element at index '0'
2520// :99:27: error: use of undefined value here causes illegal behavior
2521// :99:27: note: when computing vector element at index '0'
2522// :99:27: error: use of undefined value here causes illegal behavior
2523// :99:27: note: when computing vector element at index '0'
2524// :99:27: error: use of undefined value here causes illegal behavior
2525// :99:27: error: use of undefined value here causes illegal behavior
2526// :99:27: error: use of undefined value here causes illegal behavior
2527// :99:27: error: use of undefined value here causes illegal behavior
2528// :99:27: error: use of undefined value here causes illegal behavior
2529// :99:27: error: use of undefined value here causes illegal behavior
2530// :99:27: error: use of undefined value here causes illegal behavior
2531// :99:27: note: when computing vector element at index '1'
2532// :99:27: error: use of undefined value here causes illegal behavior
2533// :99:27: note: when computing vector element at index '1'
2534// :99:27: error: use of undefined value here causes illegal behavior
2535// :99:27: note: when computing vector element at index '1'
2536// :99:27: error: use of undefined value here causes illegal behavior
2537// :99:27: note: when computing vector element at index '1'
2538// :99:27: error: use of undefined value here causes illegal behavior
2539// :99:27: note: when computing vector element at index '0'
2540// :99:27: error: use of undefined value here causes illegal behavior
2541// :99:27: note: when computing vector element at index '0'
2542// :99:27: error: use of undefined value here causes illegal behavior
2543// :99:27: note: when computing vector element at index '0'
2544// :99:27: error: use of undefined value here causes illegal behavior
2545// :99:27: note: when computing vector element at index '0'
2546// :99:27: error: use of undefined value here causes illegal behavior
2547// :99:27: error: use of undefined value here causes illegal behavior
2548// :99:27: error: use of undefined value here causes illegal behavior
2549// :99:27: error: use of undefined value here causes illegal behavior
2550// :99:27: error: use of undefined value here causes illegal behavior
2551// :99:27: error: use of undefined value here causes illegal behavior
2552// :99:27: error: use of undefined value here causes illegal behavior
2553// :99:27: note: when computing vector element at index '1'
2554// :99:27: error: use of undefined value here causes illegal behavior
2555// :99:27: note: when computing vector element at index '1'
2556// :99:27: error: use of undefined value here causes illegal behavior
2557// :99:27: note: when computing vector element at index '1'
2558// :99:27: error: use of undefined value here causes illegal behavior
2559// :99:27: note: when computing vector element at index '1'
2560// :99:27: error: use of undefined value here causes illegal behavior
2561// :99:27: note: when computing vector element at index '0'
2562// :99:27: error: use of undefined value here causes illegal behavior
2563// :99:27: note: when computing vector element at index '0'
2564// :99:27: error: use of undefined value here causes illegal behavior
2565// :99:27: note: when computing vector element at index '0'
2566// :99:27: error: use of undefined value here causes illegal behavior
2567// :99:27: note: when computing vector element at index '0'
2568// :99:27: error: use of undefined value here causes illegal behavior
2569// :99:27: error: use of undefined value here causes illegal behavior
2570// :99:27: error: use of undefined value here causes illegal behavior
2571// :99:27: error: use of undefined value here causes illegal behavior
2572// :99:27: error: use of undefined value here causes illegal behavior
2573// :99:27: error: use of undefined value here causes illegal behavior
2574// :99:27: error: use of undefined value here causes illegal behavior
2575// :99:27: note: when computing vector element at index '1'
2576// :99:27: error: use of undefined value here causes illegal behavior
2577// :99:27: note: when computing vector element at index '1'
2578// :99:27: error: use of undefined value here causes illegal behavior
2579// :99:27: note: when computing vector element at index '1'
2580// :99:27: error: use of undefined value here causes illegal behavior
2581// :99:27: note: when computing vector element at index '1'
2582// :99:27: error: use of undefined value here causes illegal behavior
2583// :99:27: note: when computing vector element at index '0'
2584// :99:27: error: use of undefined value here causes illegal behavior
2585// :99:27: note: when computing vector element at index '0'
2586// :99:27: error: use of undefined value here causes illegal behavior
2587// :99:27: note: when computing vector element at index '0'
2588// :99:27: error: use of undefined value here causes illegal behavior
2589// :99:27: note: when computing vector element at index '0'
2590// :99:27: error: use of undefined value here causes illegal behavior
2591// :99:27: error: use of undefined value here causes illegal behavior
2592// :99:27: error: use of undefined value here causes illegal behavior
2593// :99:27: error: use of undefined value here causes illegal behavior
2594// :99:27: error: use of undefined value here causes illegal behavior
2595// :99:27: error: use of undefined value here causes illegal behavior
2596// :99:27: error: use of undefined value here causes illegal behavior
2597// :99:27: note: when computing vector element at index '1'
2598// :99:27: error: use of undefined value here causes illegal behavior
2599// :99:27: note: when computing vector element at index '1'
2600// :99:27: error: use of undefined value here causes illegal behavior
2601// :99:27: note: when computing vector element at index '1'
2602// :99:27: error: use of undefined value here causes illegal behavior
2603// :99:27: note: when computing vector element at index '1'
2604// :99:27: error: use of undefined value here causes illegal behavior
2605// :99:27: note: when computing vector element at index '0'
2606// :99:27: error: use of undefined value here causes illegal behavior
2607// :99:27: note: when computing vector element at index '0'
2608// :99:27: error: use of undefined value here causes illegal behavior
2609// :99:27: note: when computing vector element at index '0'
2610// :99:27: error: use of undefined value here causes illegal behavior
2611// :99:27: note: when computing vector element at index '0'
2612// :99:27: error: use of undefined value here causes illegal behavior
2613// :99:27: error: use of undefined value here causes illegal behavior
2614// :99:27: error: use of undefined value here causes illegal behavior
2615// :99:27: error: use of undefined value here causes illegal behavior
2616// :99:27: error: use of undefined value here causes illegal behavior
2617// :99:27: error: use of undefined value here causes illegal behavior
2618// :99:27: error: use of undefined value here causes illegal behavior
2619// :99:27: note: when computing vector element at index '1'
2620// :99:27: error: use of undefined value here causes illegal behavior
2621// :99:27: note: when computing vector element at index '1'
2622// :99:27: error: use of undefined value here causes illegal behavior
2623// :99:27: note: when computing vector element at index '1'
2624// :99:27: error: use of undefined value here causes illegal behavior
2625// :99:27: note: when computing vector element at index '1'
2626// :99:27: error: use of undefined value here causes illegal behavior
2627// :99:27: note: when computing vector element at index '0'
2628// :99:27: error: use of undefined value here causes illegal behavior
2629// :99:27: note: when computing vector element at index '0'
2630// :99:27: error: use of undefined value here causes illegal behavior
2631// :99:27: note: when computing vector element at index '0'
2632// :99:27: error: use of undefined value here causes illegal behavior
2633// :99:27: note: when computing vector element at index '0'
2634// :99:27: error: use of undefined value here causes illegal behavior
2635// :99:27: error: use of undefined value here causes illegal behavior
2636// :99:27: error: use of undefined value here causes illegal behavior
2637// :99:27: error: use of undefined value here causes illegal behavior
2638// :99:27: error: use of undefined value here causes illegal behavior
2639// :99:27: error: use of undefined value here causes illegal behavior
2640// :99:27: error: use of undefined value here causes illegal behavior
2641// :99:27: note: when computing vector element at index '1'
2642// :99:27: error: use of undefined value here causes illegal behavior
2643// :99:27: note: when computing vector element at index '1'
2644// :99:27: error: use of undefined value here causes illegal behavior
2645// :99:27: note: when computing vector element at index '1'
2646// :99:27: error: use of undefined value here causes illegal behavior
2647// :99:27: note: when computing vector element at index '1'
2648// :99:27: error: use of undefined value here causes illegal behavior
2649// :99:27: note: when computing vector element at index '0'
2650// :99:27: error: use of undefined value here causes illegal behavior
2651// :99:27: note: when computing vector element at index '0'
2652// :99:27: error: use of undefined value here causes illegal behavior
2653// :99:27: note: when computing vector element at index '0'
2654// :99:27: error: use of undefined value here causes illegal behavior
2655// :99:27: note: when computing vector element at index '0'
2656// :99:27: error: use of undefined value here causes illegal behavior
2657// :99:27: error: use of undefined value here causes illegal behavior
2658// :99:27: error: use of undefined value here causes illegal behavior
2659// :99:27: error: use of undefined value here causes illegal behavior
2660// :99:27: error: use of undefined value here causes illegal behavior
2661// :99:27: error: use of undefined value here causes illegal behavior
2662// :99:27: error: use of undefined value here causes illegal behavior
2663// :99:27: note: when computing vector element at index '1'
2664// :99:27: error: use of undefined value here causes illegal behavior
2665// :99:27: note: when computing vector element at index '1'
2666// :99:27: error: use of undefined value here causes illegal behavior
2667// :99:27: note: when computing vector element at index '1'
2668// :99:27: error: use of undefined value here causes illegal behavior
2669// :99:27: note: when computing vector element at index '1'
2670// :99:27: error: use of undefined value here causes illegal behavior
2671// :99:27: note: when computing vector element at index '0'
2672// :99:27: error: use of undefined value here causes illegal behavior
2673// :99:27: note: when computing vector element at index '0'
2674// :99:27: error: use of undefined value here causes illegal behavior
2675// :99:27: note: when computing vector element at index '0'
2676// :99:27: error: use of undefined value here causes illegal behavior
2677// :99:27: note: when computing vector element at index '0'
2678// :103:27: error: use of undefined value here causes illegal behavior
2679// :103:27: error: use of undefined value here causes illegal behavior
2680// :103:27: error: use of undefined value here causes illegal behavior
2681// :103:27: error: use of undefined value here causes illegal behavior
2682// :103:27: error: use of undefined value here causes illegal behavior
2683// :103:27: error: use of undefined value here causes illegal behavior
2684// :103:27: error: use of undefined value here causes illegal behavior
2685// :103:27: note: when computing vector element at index '1'
2686// :103:27: error: use of undefined value here causes illegal behavior
2687// :103:27: note: when computing vector element at index '1'
2688// :103:27: error: use of undefined value here causes illegal behavior
2689// :103:27: note: when computing vector element at index '1'
2690// :103:27: error: use of undefined value here causes illegal behavior
2691// :103:27: note: when computing vector element at index '1'
2692// :103:27: error: use of undefined value here causes illegal behavior
2693// :103:27: note: when computing vector element at index '0'
2694// :103:27: error: use of undefined value here causes illegal behavior
2695// :103:27: note: when computing vector element at index '0'
2696// :103:27: error: use of undefined value here causes illegal behavior
2697// :103:27: note: when computing vector element at index '0'
2698// :103:27: error: use of undefined value here causes illegal behavior
2699// :103:27: note: when computing vector element at index '0'
2700// :103:27: error: use of undefined value here causes illegal behavior
2701// :103:27: error: use of undefined value here causes illegal behavior
2702// :103:27: error: use of undefined value here causes illegal behavior
2703// :103:27: error: use of undefined value here causes illegal behavior
2704// :103:27: error: use of undefined value here causes illegal behavior
2705// :103:27: error: use of undefined value here causes illegal behavior
2706// :103:27: error: use of undefined value here causes illegal behavior
2707// :103:27: note: when computing vector element at index '1'
2708// :103:27: error: use of undefined value here causes illegal behavior
2709// :103:27: note: when computing vector element at index '1'
2710// :103:27: error: use of undefined value here causes illegal behavior
2711// :103:27: note: when computing vector element at index '1'
2712// :103:27: error: use of undefined value here causes illegal behavior
2713// :103:27: note: when computing vector element at index '1'
2714// :103:27: error: use of undefined value here causes illegal behavior
2715// :103:27: note: when computing vector element at index '0'
2716// :103:27: error: use of undefined value here causes illegal behavior
2717// :103:27: note: when computing vector element at index '0'
2718// :103:27: error: use of undefined value here causes illegal behavior
2719// :103:27: note: when computing vector element at index '0'
2720// :103:27: error: use of undefined value here causes illegal behavior
2721// :103:27: note: when computing vector element at index '0'
2722// :103:27: error: use of undefined value here causes illegal behavior
2723// :103:27: error: use of undefined value here causes illegal behavior
2724// :103:27: error: use of undefined value here causes illegal behavior
2725// :103:27: error: use of undefined value here causes illegal behavior
2726// :103:27: error: use of undefined value here causes illegal behavior
2727// :103:27: error: use of undefined value here causes illegal behavior
2728// :103:27: error: use of undefined value here causes illegal behavior
2729// :103:27: note: when computing vector element at index '1'
2730// :103:27: error: use of undefined value here causes illegal behavior
2731// :103:27: note: when computing vector element at index '1'
2732// :103:27: error: use of undefined value here causes illegal behavior
2733// :103:27: note: when computing vector element at index '1'
2734// :103:27: error: use of undefined value here causes illegal behavior
2735// :103:27: note: when computing vector element at index '1'
2736// :103:27: error: use of undefined value here causes illegal behavior
2737// :103:27: note: when computing vector element at index '0'
2738// :103:27: error: use of undefined value here causes illegal behavior
2739// :103:27: note: when computing vector element at index '0'
2740// :103:27: error: use of undefined value here causes illegal behavior
2741// :103:27: note: when computing vector element at index '0'
2742// :103:27: error: use of undefined value here causes illegal behavior
2743// :103:27: note: when computing vector element at index '0'
2744// :103:27: error: use of undefined value here causes illegal behavior
2745// :103:27: error: use of undefined value here causes illegal behavior
2746// :103:27: error: use of undefined value here causes illegal behavior
2747// :103:27: error: use of undefined value here causes illegal behavior
2748// :103:27: error: use of undefined value here causes illegal behavior
2749// :103:27: error: use of undefined value here causes illegal behavior
2750// :103:27: error: use of undefined value here causes illegal behavior
2751// :103:27: note: when computing vector element at index '1'
2752// :103:27: error: use of undefined value here causes illegal behavior
2753// :103:27: note: when computing vector element at index '1'
2754// :103:27: error: use of undefined value here causes illegal behavior
2755// :103:27: note: when computing vector element at index '1'
2756// :103:27: error: use of undefined value here causes illegal behavior
2757// :103:27: note: when computing vector element at index '1'
2758// :103:27: error: use of undefined value here causes illegal behavior
2759// :103:27: note: when computing vector element at index '0'
2760// :103:27: error: use of undefined value here causes illegal behavior
2761// :103:27: note: when computing vector element at index '0'
2762// :103:27: error: use of undefined value here causes illegal behavior
2763// :103:27: note: when computing vector element at index '0'
2764// :103:27: error: use of undefined value here causes illegal behavior
2765// :103:27: note: when computing vector element at index '0'
2766// :103:27: error: use of undefined value here causes illegal behavior
2767// :103:27: error: use of undefined value here causes illegal behavior
2768// :103:27: error: use of undefined value here causes illegal behavior
2769// :103:27: error: use of undefined value here causes illegal behavior
2770// :103:27: error: use of undefined value here causes illegal behavior
2771// :103:27: error: use of undefined value here causes illegal behavior
2772// :103:27: error: use of undefined value here causes illegal behavior
2773// :103:27: note: when computing vector element at index '1'
2774// :103:27: error: use of undefined value here causes illegal behavior
2775// :103:27: note: when computing vector element at index '1'
2776// :103:27: error: use of undefined value here causes illegal behavior
2777// :103:27: note: when computing vector element at index '1'
2778// :103:27: error: use of undefined value here causes illegal behavior
2779// :103:27: note: when computing vector element at index '1'
2780// :103:27: error: use of undefined value here causes illegal behavior
2781// :103:27: note: when computing vector element at index '0'
2782// :103:27: error: use of undefined value here causes illegal behavior
2783// :103:27: note: when computing vector element at index '0'
2784// :103:27: error: use of undefined value here causes illegal behavior
2785// :103:27: note: when computing vector element at index '0'
2786// :103:27: error: use of undefined value here causes illegal behavior
2787// :103:27: note: when computing vector element at index '0'
2788// :103:27: error: use of undefined value here causes illegal behavior
2789// :103:27: error: use of undefined value here causes illegal behavior
2790// :103:27: error: use of undefined value here causes illegal behavior
2791// :103:27: error: use of undefined value here causes illegal behavior
2792// :103:27: error: use of undefined value here causes illegal behavior
2793// :103:27: error: use of undefined value here causes illegal behavior
2794// :103:27: error: use of undefined value here causes illegal behavior
2795// :103:27: note: when computing vector element at index '1'
2796// :103:27: error: use of undefined value here causes illegal behavior
2797// :103:27: note: when computing vector element at index '1'
2798// :103:27: error: use of undefined value here causes illegal behavior
2799// :103:27: note: when computing vector element at index '1'
2800// :103:27: error: use of undefined value here causes illegal behavior
2801// :103:27: note: when computing vector element at index '1'
2802// :103:27: error: use of undefined value here causes illegal behavior
2803// :103:27: note: when computing vector element at index '0'
2804// :103:27: error: use of undefined value here causes illegal behavior
2805// :103:27: note: when computing vector element at index '0'
2806// :103:27: error: use of undefined value here causes illegal behavior
2807// :103:27: note: when computing vector element at index '0'
2808// :103:27: error: use of undefined value here causes illegal behavior
2809// :103:27: note: when computing vector element at index '0'
2810// :103:27: error: use of undefined value here causes illegal behavior
2811// :103:27: error: use of undefined value here causes illegal behavior
2812// :103:27: error: use of undefined value here causes illegal behavior
2813// :103:27: error: use of undefined value here causes illegal behavior
2814// :103:27: error: use of undefined value here causes illegal behavior
2815// :103:27: error: use of undefined value here causes illegal behavior
2816// :103:27: error: use of undefined value here causes illegal behavior
2817// :103:27: note: when computing vector element at index '1'
2818// :103:27: error: use of undefined value here causes illegal behavior
2819// :103:27: note: when computing vector element at index '1'
2820// :103:27: error: use of undefined value here causes illegal behavior
2821// :103:27: note: when computing vector element at index '1'
2822// :103:27: error: use of undefined value here causes illegal behavior
2823// :103:27: note: when computing vector element at index '1'
2824// :103:27: error: use of undefined value here causes illegal behavior
2825// :103:27: note: when computing vector element at index '0'
2826// :103:27: error: use of undefined value here causes illegal behavior
2827// :103:27: note: when computing vector element at index '0'
2828// :103:27: error: use of undefined value here causes illegal behavior
2829// :103:27: note: when computing vector element at index '0'
2830// :103:27: error: use of undefined value here causes illegal behavior
2831// :103:27: note: when computing vector element at index '0'
2832// :103:27: error: use of undefined value here causes illegal behavior
2833// :103:27: error: use of undefined value here causes illegal behavior
2834// :103:27: error: use of undefined value here causes illegal behavior
2835// :103:27: error: use of undefined value here causes illegal behavior
2836// :103:27: error: use of undefined value here causes illegal behavior
2837// :103:27: error: use of undefined value here causes illegal behavior
2838// :103:27: error: use of undefined value here causes illegal behavior
2839// :103:27: note: when computing vector element at index '1'
2840// :103:27: error: use of undefined value here causes illegal behavior
2841// :103:27: note: when computing vector element at index '1'
2842// :103:27: error: use of undefined value here causes illegal behavior
2843// :103:27: note: when computing vector element at index '1'
2844// :103:27: error: use of undefined value here causes illegal behavior
2845// :103:27: note: when computing vector element at index '1'
2846// :103:27: error: use of undefined value here causes illegal behavior
2847// :103:27: note: when computing vector element at index '0'
2848// :103:27: error: use of undefined value here causes illegal behavior
2849// :103:27: note: when computing vector element at index '0'
2850// :103:27: error: use of undefined value here causes illegal behavior
2851// :103:27: note: when computing vector element at index '0'
2852// :103:27: error: use of undefined value here causes illegal behavior
2853// :103:27: note: when computing vector element at index '0'
2854// :103:27: error: use of undefined value here causes illegal behavior
2855// :103:27: error: use of undefined value here causes illegal behavior
2856// :103:27: error: use of undefined value here causes illegal behavior
2857// :103:27: error: use of undefined value here causes illegal behavior
2858// :103:27: error: use of undefined value here causes illegal behavior
2859// :103:27: error: use of undefined value here causes illegal behavior
2860// :103:27: error: use of undefined value here causes illegal behavior
2861// :103:27: note: when computing vector element at index '1'
2862// :103:27: error: use of undefined value here causes illegal behavior
2863// :103:27: note: when computing vector element at index '1'
2864// :103:27: error: use of undefined value here causes illegal behavior
2865// :103:27: note: when computing vector element at index '1'
2866// :103:27: error: use of undefined value here causes illegal behavior
2867// :103:27: note: when computing vector element at index '1'
2868// :103:27: error: use of undefined value here causes illegal behavior
2869// :103:27: note: when computing vector element at index '0'
2870// :103:27: error: use of undefined value here causes illegal behavior
2871// :103:27: note: when computing vector element at index '0'
2872// :103:27: error: use of undefined value here causes illegal behavior
2873// :103:27: note: when computing vector element at index '0'
2874// :103:27: error: use of undefined value here causes illegal behavior
2875// :103:27: note: when computing vector element at index '0'
2876// :103:27: error: use of undefined value here causes illegal behavior
2877// :103:27: error: use of undefined value here causes illegal behavior
2878// :103:27: error: use of undefined value here causes illegal behavior
2879// :103:27: error: use of undefined value here causes illegal behavior
2880// :103:27: error: use of undefined value here causes illegal behavior
2881// :103:27: error: use of undefined value here causes illegal behavior
2882// :103:27: error: use of undefined value here causes illegal behavior
2883// :103:27: note: when computing vector element at index '1'
2884// :103:27: error: use of undefined value here causes illegal behavior
2885// :103:27: note: when computing vector element at index '1'
2886// :103:27: error: use of undefined value here causes illegal behavior
2887// :103:27: note: when computing vector element at index '1'
2888// :103:27: error: use of undefined value here causes illegal behavior
2889// :103:27: note: when computing vector element at index '1'
2890// :103:27: error: use of undefined value here causes illegal behavior
2891// :103:27: note: when computing vector element at index '0'
2892// :103:27: error: use of undefined value here causes illegal behavior
2893// :103:27: note: when computing vector element at index '0'
2894// :103:27: error: use of undefined value here causes illegal behavior
2895// :103:27: note: when computing vector element at index '0'
2896// :103:27: error: use of undefined value here causes illegal behavior
2897// :103:27: note: when computing vector element at index '0'
2898// :103:27: error: use of undefined value here causes illegal behavior
2899// :103:27: error: use of undefined value here causes illegal behavior
2900// :103:27: error: use of undefined value here causes illegal behavior
2901// :103:27: error: use of undefined value here causes illegal behavior
2902// :103:27: error: use of undefined value here causes illegal behavior
2903// :103:27: error: use of undefined value here causes illegal behavior
2904// :103:27: error: use of undefined value here causes illegal behavior
2905// :103:27: note: when computing vector element at index '1'
2906// :103:27: error: use of undefined value here causes illegal behavior
2907// :103:27: note: when computing vector element at index '1'
2908// :103:27: error: use of undefined value here causes illegal behavior
2909// :103:27: note: when computing vector element at index '1'
2910// :103:27: error: use of undefined value here causes illegal behavior
2911// :103:27: note: when computing vector element at index '1'
2912// :103:27: error: use of undefined value here causes illegal behavior
2913// :103:27: note: when computing vector element at index '0'
2914// :103:27: error: use of undefined value here causes illegal behavior
2915// :103:27: note: when computing vector element at index '0'
2916// :103:27: error: use of undefined value here causes illegal behavior
2917// :103:27: note: when computing vector element at index '0'
2918// :103:27: error: use of undefined value here causes illegal behavior
2919// :103:27: note: when computing vector element at index '0'
2920// :107:27: error: use of undefined value here causes illegal behavior
2921// :107:27: error: use of undefined value here causes illegal behavior
2922// :107:27: error: use of undefined value here causes illegal behavior
2923// :107:27: error: use of undefined value here causes illegal behavior
2924// :107:27: error: use of undefined value here causes illegal behavior
2925// :107:27: error: use of undefined value here causes illegal behavior
2926// :107:27: error: use of undefined value here causes illegal behavior
2927// :107:27: note: when computing vector element at index '1'
2928// :107:27: error: use of undefined value here causes illegal behavior
2929// :107:27: note: when computing vector element at index '1'
2930// :107:27: error: use of undefined value here causes illegal behavior
2931// :107:27: note: when computing vector element at index '1'
2932// :107:27: error: use of undefined value here causes illegal behavior
2933// :107:27: note: when computing vector element at index '1'
2934// :107:27: error: use of undefined value here causes illegal behavior
2935// :107:27: note: when computing vector element at index '0'
2936// :107:27: error: use of undefined value here causes illegal behavior
2937// :107:27: note: when computing vector element at index '0'
2938// :107:27: error: use of undefined value here causes illegal behavior
2939// :107:27: note: when computing vector element at index '0'
2940// :107:27: error: use of undefined value here causes illegal behavior
2941// :107:27: note: when computing vector element at index '0'
2942// :107:27: error: use of undefined value here causes illegal behavior
2943// :107:27: error: use of undefined value here causes illegal behavior
2944// :107:27: error: use of undefined value here causes illegal behavior
2945// :107:27: error: use of undefined value here causes illegal behavior
2946// :107:27: error: use of undefined value here causes illegal behavior
2947// :107:27: error: use of undefined value here causes illegal behavior
2948// :107:27: error: use of undefined value here causes illegal behavior
2949// :107:27: note: when computing vector element at index '1'
2950// :107:27: error: use of undefined value here causes illegal behavior
2951// :107:27: note: when computing vector element at index '1'
2952// :107:27: error: use of undefined value here causes illegal behavior
2953// :107:27: note: when computing vector element at index '1'
2954// :107:27: error: use of undefined value here causes illegal behavior
2955// :107:27: note: when computing vector element at index '1'
2956// :107:27: error: use of undefined value here causes illegal behavior
2957// :107:27: note: when computing vector element at index '0'
2958// :107:27: error: use of undefined value here causes illegal behavior
2959// :107:27: note: when computing vector element at index '0'
2960// :107:27: error: use of undefined value here causes illegal behavior
2961// :107:27: note: when computing vector element at index '0'
2962// :107:27: error: use of undefined value here causes illegal behavior
2963// :107:27: note: when computing vector element at index '0'
2964// :107:27: error: use of undefined value here causes illegal behavior
2965// :107:27: error: use of undefined value here causes illegal behavior
2966// :107:27: error: use of undefined value here causes illegal behavior
2967// :107:27: error: use of undefined value here causes illegal behavior
2968// :107:27: error: use of undefined value here causes illegal behavior
2969// :107:27: error: use of undefined value here causes illegal behavior
2970// :107:27: error: use of undefined value here causes illegal behavior
2971// :107:27: note: when computing vector element at index '1'
2972// :107:27: error: use of undefined value here causes illegal behavior
2973// :107:27: note: when computing vector element at index '1'
2974// :107:27: error: use of undefined value here causes illegal behavior
2975// :107:27: note: when computing vector element at index '1'
2976// :107:27: error: use of undefined value here causes illegal behavior
2977// :107:27: note: when computing vector element at index '1'
2978// :107:27: error: use of undefined value here causes illegal behavior
2979// :107:27: note: when computing vector element at index '0'
2980// :107:27: error: use of undefined value here causes illegal behavior
2981// :107:27: note: when computing vector element at index '0'
2982// :107:27: error: use of undefined value here causes illegal behavior
2983// :107:27: note: when computing vector element at index '0'
2984// :107:27: error: use of undefined value here causes illegal behavior
2985// :107:27: note: when computing vector element at index '0'
2986// :107:27: error: use of undefined value here causes illegal behavior
2987// :107:27: error: use of undefined value here causes illegal behavior
2988// :107:27: error: use of undefined value here causes illegal behavior
2989// :107:27: error: use of undefined value here causes illegal behavior
2990// :107:27: error: use of undefined value here causes illegal behavior
2991// :107:27: error: use of undefined value here causes illegal behavior
2992// :107:27: error: use of undefined value here causes illegal behavior
2993// :107:27: note: when computing vector element at index '1'
2994// :107:27: error: use of undefined value here causes illegal behavior
2995// :107:27: note: when computing vector element at index '1'
2996// :107:27: error: use of undefined value here causes illegal behavior
2997// :107:27: note: when computing vector element at index '1'
2998// :107:27: error: use of undefined value here causes illegal behavior
2999// :107:27: note: when computing vector element at index '1'
3000// :107:27: error: use of undefined value here causes illegal behavior
3001// :107:27: note: when computing vector element at index '0'
3002// :107:27: error: use of undefined value here causes illegal behavior
3003// :107:27: note: when computing vector element at index '0'
3004// :107:27: error: use of undefined value here causes illegal behavior
3005// :107:27: note: when computing vector element at index '0'
3006// :107:27: error: use of undefined value here causes illegal behavior
3007// :107:27: note: when computing vector element at index '0'
3008// :107:27: error: use of undefined value here causes illegal behavior
3009// :107:27: error: use of undefined value here causes illegal behavior
3010// :107:27: error: use of undefined value here causes illegal behavior
3011// :107:27: error: use of undefined value here causes illegal behavior
3012// :107:27: error: use of undefined value here causes illegal behavior
3013// :107:27: error: use of undefined value here causes illegal behavior
3014// :107:27: error: use of undefined value here causes illegal behavior
3015// :107:27: note: when computing vector element at index '1'
3016// :107:27: error: use of undefined value here causes illegal behavior
3017// :107:27: note: when computing vector element at index '1'
3018// :107:27: error: use of undefined value here causes illegal behavior
3019// :107:27: note: when computing vector element at index '1'
3020// :107:27: error: use of undefined value here causes illegal behavior
3021// :107:27: note: when computing vector element at index '1'
3022// :107:27: error: use of undefined value here causes illegal behavior
3023// :107:27: note: when computing vector element at index '0'
3024// :107:27: error: use of undefined value here causes illegal behavior
3025// :107:27: note: when computing vector element at index '0'
3026// :107:27: error: use of undefined value here causes illegal behavior
3027// :107:27: note: when computing vector element at index '0'
3028// :107:27: error: use of undefined value here causes illegal behavior
3029// :107:27: note: when computing vector element at index '0'
3030// :107:27: error: use of undefined value here causes illegal behavior
3031// :107:27: error: use of undefined value here causes illegal behavior
3032// :107:27: error: use of undefined value here causes illegal behavior
3033// :107:27: error: use of undefined value here causes illegal behavior
3034// :107:27: error: use of undefined value here causes illegal behavior
3035// :107:27: error: use of undefined value here causes illegal behavior
3036// :107:27: error: use of undefined value here causes illegal behavior
3037// :107:27: note: when computing vector element at index '1'
3038// :107:27: error: use of undefined value here causes illegal behavior
3039// :107:27: note: when computing vector element at index '1'
3040// :107:27: error: use of undefined value here causes illegal behavior
3041// :107:27: note: when computing vector element at index '1'
3042// :107:27: error: use of undefined value here causes illegal behavior
3043// :107:27: note: when computing vector element at index '1'
3044// :107:27: error: use of undefined value here causes illegal behavior
3045// :107:27: note: when computing vector element at index '0'
3046// :107:27: error: use of undefined value here causes illegal behavior
3047// :107:27: note: when computing vector element at index '0'
3048// :107:27: error: use of undefined value here causes illegal behavior
3049// :107:27: note: when computing vector element at index '0'
3050// :107:27: error: use of undefined value here causes illegal behavior
3051// :107:27: note: when computing vector element at index '0'
3052// :107:27: error: use of undefined value here causes illegal behavior
3053// :107:27: error: use of undefined value here causes illegal behavior
3054// :107:27: error: use of undefined value here causes illegal behavior
3055// :107:27: error: use of undefined value here causes illegal behavior
3056// :107:27: error: use of undefined value here causes illegal behavior
3057// :107:27: error: use of undefined value here causes illegal behavior
3058// :107:27: error: use of undefined value here causes illegal behavior
3059// :107:27: note: when computing vector element at index '1'
3060// :107:27: error: use of undefined value here causes illegal behavior
3061// :107:27: note: when computing vector element at index '1'
3062// :107:27: error: use of undefined value here causes illegal behavior
3063// :107:27: note: when computing vector element at index '1'
3064// :107:27: error: use of undefined value here causes illegal behavior
3065// :107:27: note: when computing vector element at index '1'
3066// :107:27: error: use of undefined value here causes illegal behavior
3067// :107:27: note: when computing vector element at index '0'
3068// :107:27: error: use of undefined value here causes illegal behavior
3069// :107:27: note: when computing vector element at index '0'
3070// :107:27: error: use of undefined value here causes illegal behavior
3071// :107:27: note: when computing vector element at index '0'
3072// :107:27: error: use of undefined value here causes illegal behavior
3073// :107:27: note: when computing vector element at index '0'
3074// :107:27: error: use of undefined value here causes illegal behavior
3075// :107:27: error: use of undefined value here causes illegal behavior
3076// :107:27: error: use of undefined value here causes illegal behavior
3077// :107:27: error: use of undefined value here causes illegal behavior
3078// :107:27: error: use of undefined value here causes illegal behavior
3079// :107:27: error: use of undefined value here causes illegal behavior
3080// :107:27: error: use of undefined value here causes illegal behavior
3081// :107:27: note: when computing vector element at index '1'
3082// :107:27: error: use of undefined value here causes illegal behavior
3083// :107:27: note: when computing vector element at index '1'
3084// :107:27: error: use of undefined value here causes illegal behavior
3085// :107:27: note: when computing vector element at index '1'
3086// :107:27: error: use of undefined value here causes illegal behavior
3087// :107:27: note: when computing vector element at index '1'
3088// :107:27: error: use of undefined value here causes illegal behavior
3089// :107:27: note: when computing vector element at index '0'
3090// :107:27: error: use of undefined value here causes illegal behavior
3091// :107:27: note: when computing vector element at index '0'
3092// :107:27: error: use of undefined value here causes illegal behavior
3093// :107:27: note: when computing vector element at index '0'
3094// :107:27: error: use of undefined value here causes illegal behavior
3095// :107:27: note: when computing vector element at index '0'
3096// :107:27: error: use of undefined value here causes illegal behavior
3097// :107:27: error: use of undefined value here causes illegal behavior
3098// :107:27: error: use of undefined value here causes illegal behavior
3099// :107:27: error: use of undefined value here causes illegal behavior
3100// :107:27: error: use of undefined value here causes illegal behavior
3101// :107:27: error: use of undefined value here causes illegal behavior
3102// :107:27: error: use of undefined value here causes illegal behavior
3103// :107:27: note: when computing vector element at index '1'
3104// :107:27: error: use of undefined value here causes illegal behavior
3105// :107:27: note: when computing vector element at index '1'
3106// :107:27: error: use of undefined value here causes illegal behavior
3107// :107:27: note: when computing vector element at index '1'
3108// :107:27: error: use of undefined value here causes illegal behavior
3109// :107:27: note: when computing vector element at index '1'
3110// :107:27: error: use of undefined value here causes illegal behavior
3111// :107:27: note: when computing vector element at index '0'
3112// :107:27: error: use of undefined value here causes illegal behavior
3113// :107:27: note: when computing vector element at index '0'
3114// :107:27: error: use of undefined value here causes illegal behavior
3115// :107:27: note: when computing vector element at index '0'
3116// :107:27: error: use of undefined value here causes illegal behavior
3117// :107:27: note: when computing vector element at index '0'
3118// :107:27: error: use of undefined value here causes illegal behavior
3119// :107:27: error: use of undefined value here causes illegal behavior
3120// :107:27: error: use of undefined value here causes illegal behavior
3121// :107:27: error: use of undefined value here causes illegal behavior
3122// :107:27: error: use of undefined value here causes illegal behavior
3123// :107:27: error: use of undefined value here causes illegal behavior
3124// :107:27: error: use of undefined value here causes illegal behavior
3125// :107:27: note: when computing vector element at index '1'
3126// :107:27: error: use of undefined value here causes illegal behavior
3127// :107:27: note: when computing vector element at index '1'
3128// :107:27: error: use of undefined value here causes illegal behavior
3129// :107:27: note: when computing vector element at index '1'
3130// :107:27: error: use of undefined value here causes illegal behavior
3131// :107:27: note: when computing vector element at index '1'
3132// :107:27: error: use of undefined value here causes illegal behavior
3133// :107:27: note: when computing vector element at index '0'
3134// :107:27: error: use of undefined value here causes illegal behavior
3135// :107:27: note: when computing vector element at index '0'
3136// :107:27: error: use of undefined value here causes illegal behavior
3137// :107:27: note: when computing vector element at index '0'
3138// :107:27: error: use of undefined value here causes illegal behavior
3139// :107:27: note: when computing vector element at index '0'
3140// :107:27: error: use of undefined value here causes illegal behavior
3141// :107:27: error: use of undefined value here causes illegal behavior
3142// :107:27: error: use of undefined value here causes illegal behavior
3143// :107:27: error: use of undefined value here causes illegal behavior
3144// :107:27: error: use of undefined value here causes illegal behavior
3145// :107:27: error: use of undefined value here causes illegal behavior
3146// :107:27: error: use of undefined value here causes illegal behavior
3147// :107:27: note: when computing vector element at index '1'
3148// :107:27: error: use of undefined value here causes illegal behavior
3149// :107:27: note: when computing vector element at index '1'
3150// :107:27: error: use of undefined value here causes illegal behavior
3151// :107:27: note: when computing vector element at index '1'
3152// :107:27: error: use of undefined value here causes illegal behavior
3153// :107:27: note: when computing vector element at index '1'
3154// :107:27: error: use of undefined value here causes illegal behavior
3155// :107:27: note: when computing vector element at index '0'
3156// :107:27: error: use of undefined value here causes illegal behavior
3157// :107:27: note: when computing vector element at index '0'
3158// :107:27: error: use of undefined value here causes illegal behavior
3159// :107:27: note: when computing vector element at index '0'
3160// :107:27: error: use of undefined value here causes illegal behavior
3161// :107:27: note: when computing vector element at index '0'
3162// :111:22: error: use of undefined value here causes illegal behavior
3163// :111:22: error: use of undefined value here causes illegal behavior
3164// :111:22: error: use of undefined value here causes illegal behavior
3165// :111:22: error: use of undefined value here causes illegal behavior
3166// :111:22: error: use of undefined value here causes illegal behavior
3167// :111:22: error: use of undefined value here causes illegal behavior
3168// :111:22: error: use of undefined value here causes illegal behavior
3169// :111:22: note: when computing vector element at index '1'
3170// :111:22: error: use of undefined value here causes illegal behavior
3171// :111:22: note: when computing vector element at index '1'
3172// :111:22: error: use of undefined value here causes illegal behavior
3173// :111:22: note: when computing vector element at index '1'
3174// :111:22: error: use of undefined value here causes illegal behavior
3175// :111:22: note: when computing vector element at index '1'
3176// :111:22: error: use of undefined value here causes illegal behavior
3177// :111:22: note: when computing vector element at index '0'
3178// :111:22: error: use of undefined value here causes illegal behavior
3179// :111:22: note: when computing vector element at index '0'
3180// :111:22: error: use of undefined value here causes illegal behavior
3181// :111:22: note: when computing vector element at index '0'
3182// :111:22: error: use of undefined value here causes illegal behavior
3183// :111:22: note: when computing vector element at index '0'
3184// :111:22: error: use of undefined value here causes illegal behavior
3185// :111:22: error: use of undefined value here causes illegal behavior
3186// :111:22: error: use of undefined value here causes illegal behavior
3187// :111:22: error: use of undefined value here causes illegal behavior
3188// :111:22: error: use of undefined value here causes illegal behavior
3189// :111:22: error: use of undefined value here causes illegal behavior
3190// :111:22: error: use of undefined value here causes illegal behavior
3191// :111:22: note: when computing vector element at index '1'
3192// :111:22: error: use of undefined value here causes illegal behavior
3193// :111:22: note: when computing vector element at index '1'
3194// :111:22: error: use of undefined value here causes illegal behavior
3195// :111:22: note: when computing vector element at index '1'
3196// :111:22: error: use of undefined value here causes illegal behavior
3197// :111:22: note: when computing vector element at index '1'
3198// :111:22: error: use of undefined value here causes illegal behavior
3199// :111:22: note: when computing vector element at index '0'
3200// :111:22: error: use of undefined value here causes illegal behavior
3201// :111:22: note: when computing vector element at index '0'
3202// :111:22: error: use of undefined value here causes illegal behavior
3203// :111:22: note: when computing vector element at index '0'
3204// :111:22: error: use of undefined value here causes illegal behavior
3205// :111:22: note: when computing vector element at index '0'
3206// :111:22: error: use of undefined value here causes illegal behavior
3207// :111:22: error: use of undefined value here causes illegal behavior
3208// :111:22: error: use of undefined value here causes illegal behavior
3209// :111:22: error: use of undefined value here causes illegal behavior
3210// :111:22: error: use of undefined value here causes illegal behavior
3211// :111:22: error: use of undefined value here causes illegal behavior
3212// :111:22: error: use of undefined value here causes illegal behavior
3213// :111:22: note: when computing vector element at index '1'
3214// :111:22: error: use of undefined value here causes illegal behavior
3215// :111:22: note: when computing vector element at index '1'
3216// :111:22: error: use of undefined value here causes illegal behavior
3217// :111:22: note: when computing vector element at index '1'
3218// :111:22: error: use of undefined value here causes illegal behavior
3219// :111:22: note: when computing vector element at index '1'
3220// :111:22: error: use of undefined value here causes illegal behavior
3221// :111:22: note: when computing vector element at index '0'
3222// :111:22: error: use of undefined value here causes illegal behavior
3223// :111:22: note: when computing vector element at index '0'
3224// :111:22: error: use of undefined value here causes illegal behavior
3225// :111:22: note: when computing vector element at index '0'
3226// :111:22: error: use of undefined value here causes illegal behavior
3227// :111:22: note: when computing vector element at index '0'
3228// :111:22: error: use of undefined value here causes illegal behavior
3229// :111:22: error: use of undefined value here causes illegal behavior
3230// :111:22: error: use of undefined value here causes illegal behavior
3231// :111:22: error: use of undefined value here causes illegal behavior
3232// :111:22: error: use of undefined value here causes illegal behavior
3233// :111:22: error: use of undefined value here causes illegal behavior
3234// :111:22: error: use of undefined value here causes illegal behavior
3235// :111:22: note: when computing vector element at index '1'
3236// :111:22: error: use of undefined value here causes illegal behavior
3237// :111:22: note: when computing vector element at index '1'
3238// :111:22: error: use of undefined value here causes illegal behavior
3239// :111:22: note: when computing vector element at index '1'
3240// :111:22: error: use of undefined value here causes illegal behavior
3241// :111:22: note: when computing vector element at index '1'
3242// :111:22: error: use of undefined value here causes illegal behavior
3243// :111:22: note: when computing vector element at index '0'
3244// :111:22: error: use of undefined value here causes illegal behavior
3245// :111:22: note: when computing vector element at index '0'
3246// :111:22: error: use of undefined value here causes illegal behavior
3247// :111:22: note: when computing vector element at index '0'
3248// :111:22: error: use of undefined value here causes illegal behavior
3249// :111:22: note: when computing vector element at index '0'
3250// :111:22: error: use of undefined value here causes illegal behavior
3251// :111:22: error: use of undefined value here causes illegal behavior
3252// :111:22: error: use of undefined value here causes illegal behavior
3253// :111:22: error: use of undefined value here causes illegal behavior
3254// :111:22: error: use of undefined value here causes illegal behavior
3255// :111:22: error: use of undefined value here causes illegal behavior
3256// :111:22: error: use of undefined value here causes illegal behavior
3257// :111:22: note: when computing vector element at index '1'
3258// :111:22: error: use of undefined value here causes illegal behavior
3259// :111:22: note: when computing vector element at index '1'
3260// :111:22: error: use of undefined value here causes illegal behavior
3261// :111:22: note: when computing vector element at index '1'
3262// :111:22: error: use of undefined value here causes illegal behavior
3263// :111:22: note: when computing vector element at index '1'
3264// :111:22: error: use of undefined value here causes illegal behavior
3265// :111:22: note: when computing vector element at index '0'
3266// :111:22: error: use of undefined value here causes illegal behavior
3267// :111:22: note: when computing vector element at index '0'
3268// :111:22: error: use of undefined value here causes illegal behavior
3269// :111:22: note: when computing vector element at index '0'
3270// :111:22: error: use of undefined value here causes illegal behavior
3271// :111:22: note: when computing vector element at index '0'
3272// :111:22: error: use of undefined value here causes illegal behavior
3273// :111:22: error: use of undefined value here causes illegal behavior
3274// :111:22: error: use of undefined value here causes illegal behavior
3275// :111:22: error: use of undefined value here causes illegal behavior
3276// :111:22: error: use of undefined value here causes illegal behavior
3277// :111:22: error: use of undefined value here causes illegal behavior
3278// :111:22: error: use of undefined value here causes illegal behavior
3279// :111:22: note: when computing vector element at index '1'
3280// :111:22: error: use of undefined value here causes illegal behavior
3281// :111:22: note: when computing vector element at index '1'
3282// :111:22: error: use of undefined value here causes illegal behavior
3283// :111:22: note: when computing vector element at index '1'
3284// :111:22: error: use of undefined value here causes illegal behavior
3285// :111:22: note: when computing vector element at index '1'
3286// :111:22: error: use of undefined value here causes illegal behavior
3287// :111:22: note: when computing vector element at index '0'
3288// :111:22: error: use of undefined value here causes illegal behavior
3289// :111:22: note: when computing vector element at index '0'
3290// :111:22: error: use of undefined value here causes illegal behavior
3291// :111:22: note: when computing vector element at index '0'
3292// :111:22: error: use of undefined value here causes illegal behavior
3293// :111:22: note: when computing vector element at index '0'
3294// :111:22: error: use of undefined value here causes illegal behavior
3295// :111:22: error: use of undefined value here causes illegal behavior
3296// :111:22: error: use of undefined value here causes illegal behavior
3297// :111:22: error: use of undefined value here causes illegal behavior
3298// :111:22: error: use of undefined value here causes illegal behavior
3299// :111:22: error: use of undefined value here causes illegal behavior
3300// :111:22: error: use of undefined value here causes illegal behavior
3301// :111:22: note: when computing vector element at index '1'
3302// :111:22: error: use of undefined value here causes illegal behavior
3303// :111:22: note: when computing vector element at index '1'
3304// :111:22: error: use of undefined value here causes illegal behavior
3305// :111:22: note: when computing vector element at index '1'
3306// :111:22: error: use of undefined value here causes illegal behavior
3307// :111:22: note: when computing vector element at index '1'
3308// :111:22: error: use of undefined value here causes illegal behavior
3309// :111:22: note: when computing vector element at index '0'
3310// :111:22: error: use of undefined value here causes illegal behavior
3311// :111:22: note: when computing vector element at index '0'
3312// :111:22: error: use of undefined value here causes illegal behavior
3313// :111:22: note: when computing vector element at index '0'
3314// :111:22: error: use of undefined value here causes illegal behavior
3315// :111:22: note: when computing vector element at index '0'
3316// :111:22: error: use of undefined value here causes illegal behavior
3317// :111:22: error: use of undefined value here causes illegal behavior
3318// :111:22: error: use of undefined value here causes illegal behavior
3319// :111:22: error: use of undefined value here causes illegal behavior
3320// :111:22: error: use of undefined value here causes illegal behavior
3321// :111:22: error: use of undefined value here causes illegal behavior
3322// :111:22: error: use of undefined value here causes illegal behavior
3323// :111:22: note: when computing vector element at index '1'
3324// :111:22: error: use of undefined value here causes illegal behavior
3325// :111:22: note: when computing vector element at index '1'
3326// :111:22: error: use of undefined value here causes illegal behavior
3327// :111:22: note: when computing vector element at index '1'
3328// :111:22: error: use of undefined value here causes illegal behavior
3329// :111:22: note: when computing vector element at index '1'
3330// :111:22: error: use of undefined value here causes illegal behavior
3331// :111:22: note: when computing vector element at index '0'
3332// :111:22: error: use of undefined value here causes illegal behavior
3333// :111:22: note: when computing vector element at index '0'
3334// :111:22: error: use of undefined value here causes illegal behavior
3335// :111:22: note: when computing vector element at index '0'
3336// :111:22: error: use of undefined value here causes illegal behavior
3337// :111:22: note: when computing vector element at index '0'
3338// :111:22: error: use of undefined value here causes illegal behavior
3339// :111:22: error: use of undefined value here causes illegal behavior
3340// :111:22: error: use of undefined value here causes illegal behavior
3341// :111:22: error: use of undefined value here causes illegal behavior
3342// :111:22: error: use of undefined value here causes illegal behavior
3343// :111:22: error: use of undefined value here causes illegal behavior
3344// :111:22: error: use of undefined value here causes illegal behavior
3345// :111:22: note: when computing vector element at index '1'
3346// :111:22: error: use of undefined value here causes illegal behavior
3347// :111:22: note: when computing vector element at index '1'
3348// :111:22: error: use of undefined value here causes illegal behavior
3349// :111:22: note: when computing vector element at index '1'
3350// :111:22: error: use of undefined value here causes illegal behavior
3351// :111:22: note: when computing vector element at index '1'
3352// :111:22: error: use of undefined value here causes illegal behavior
3353// :111:22: note: when computing vector element at index '0'
3354// :111:22: error: use of undefined value here causes illegal behavior
3355// :111:22: note: when computing vector element at index '0'
3356// :111:22: error: use of undefined value here causes illegal behavior
3357// :111:22: note: when computing vector element at index '0'
3358// :111:22: error: use of undefined value here causes illegal behavior
3359// :111:22: note: when computing vector element at index '0'
3360// :111:22: error: use of undefined value here causes illegal behavior
3361// :111:22: error: use of undefined value here causes illegal behavior
3362// :111:22: error: use of undefined value here causes illegal behavior
3363// :111:22: error: use of undefined value here causes illegal behavior
3364// :111:22: error: use of undefined value here causes illegal behavior
3365// :111:22: error: use of undefined value here causes illegal behavior
3366// :111:22: error: use of undefined value here causes illegal behavior
3367// :111:22: note: when computing vector element at index '1'
3368// :111:22: error: use of undefined value here causes illegal behavior
3369// :111:22: note: when computing vector element at index '1'
3370// :111:22: error: use of undefined value here causes illegal behavior
3371// :111:22: note: when computing vector element at index '1'
3372// :111:22: error: use of undefined value here causes illegal behavior
3373// :111:22: note: when computing vector element at index '1'
3374// :111:22: error: use of undefined value here causes illegal behavior
3375// :111:22: note: when computing vector element at index '0'
3376// :111:22: error: use of undefined value here causes illegal behavior
3377// :111:22: note: when computing vector element at index '0'
3378// :111:22: error: use of undefined value here causes illegal behavior
3379// :111:22: note: when computing vector element at index '0'
3380// :111:22: error: use of undefined value here causes illegal behavior
3381// :111:22: note: when computing vector element at index '0'
3382// :111:22: error: use of undefined value here causes illegal behavior
3383// :111:22: error: use of undefined value here causes illegal behavior
3384// :111:22: error: use of undefined value here causes illegal behavior
3385// :111:22: error: use of undefined value here causes illegal behavior
3386// :111:22: error: use of undefined value here causes illegal behavior
3387// :111:22: error: use of undefined value here causes illegal behavior
3388// :111:22: error: use of undefined value here causes illegal behavior
3389// :111:22: note: when computing vector element at index '1'
3390// :111:22: error: use of undefined value here causes illegal behavior
3391// :111:22: note: when computing vector element at index '1'
3392// :111:22: error: use of undefined value here causes illegal behavior
3393// :111:22: note: when computing vector element at index '1'
3394// :111:22: error: use of undefined value here causes illegal behavior
3395// :111:22: note: when computing vector element at index '1'
3396// :111:22: error: use of undefined value here causes illegal behavior
3397// :111:22: note: when computing vector element at index '0'
3398// :111:22: error: use of undefined value here causes illegal behavior
3399// :111:22: note: when computing vector element at index '0'
3400// :111:22: error: use of undefined value here causes illegal behavior
3401// :111:22: note: when computing vector element at index '0'
3402// :111:22: error: use of undefined value here causes illegal behavior
3403// :111:22: note: when computing vector element at index '0'
3404// :115:22: error: use of undefined value here causes illegal behavior
3405// :115:22: error: use of undefined value here causes illegal behavior
3406// :115:22: error: use of undefined value here causes illegal behavior
3407// :115:22: error: use of undefined value here causes illegal behavior
3408// :115:22: error: use of undefined value here causes illegal behavior
3409// :115:22: error: use of undefined value here causes illegal behavior
3410// :115:22: error: use of undefined value here causes illegal behavior
3411// :115:22: note: when computing vector element at index '1'
3412// :115:22: error: use of undefined value here causes illegal behavior
3413// :115:22: note: when computing vector element at index '1'
3414// :115:22: error: use of undefined value here causes illegal behavior
3415// :115:22: note: when computing vector element at index '1'
3416// :115:22: error: use of undefined value here causes illegal behavior
3417// :115:22: note: when computing vector element at index '1'
3418// :115:22: error: use of undefined value here causes illegal behavior
3419// :115:22: note: when computing vector element at index '0'
3420// :115:22: error: use of undefined value here causes illegal behavior
3421// :115:22: note: when computing vector element at index '0'
3422// :115:22: error: use of undefined value here causes illegal behavior
3423// :115:22: note: when computing vector element at index '0'
3424// :115:22: error: use of undefined value here causes illegal behavior
3425// :115:22: note: when computing vector element at index '0'
3426// :115:22: error: use of undefined value here causes illegal behavior
3427// :115:22: error: use of undefined value here causes illegal behavior
3428// :115:22: error: use of undefined value here causes illegal behavior
3429// :115:22: error: use of undefined value here causes illegal behavior
3430// :115:22: error: use of undefined value here causes illegal behavior
3431// :115:22: error: use of undefined value here causes illegal behavior
3432// :115:22: error: use of undefined value here causes illegal behavior
3433// :115:22: note: when computing vector element at index '1'
3434// :115:22: error: use of undefined value here causes illegal behavior
3435// :115:22: note: when computing vector element at index '1'
3436// :115:22: error: use of undefined value here causes illegal behavior
3437// :115:22: note: when computing vector element at index '1'
3438// :115:22: error: use of undefined value here causes illegal behavior
3439// :115:22: note: when computing vector element at index '1'
3440// :115:22: error: use of undefined value here causes illegal behavior
3441// :115:22: note: when computing vector element at index '0'
3442// :115:22: error: use of undefined value here causes illegal behavior
3443// :115:22: note: when computing vector element at index '0'
3444// :115:22: error: use of undefined value here causes illegal behavior
3445// :115:22: note: when computing vector element at index '0'
3446// :115:22: error: use of undefined value here causes illegal behavior
3447// :115:22: note: when computing vector element at index '0'
3448// :115:22: error: use of undefined value here causes illegal behavior
3449// :115:22: error: use of undefined value here causes illegal behavior
3450// :115:22: error: use of undefined value here causes illegal behavior
3451// :115:22: error: use of undefined value here causes illegal behavior
3452// :115:22: error: use of undefined value here causes illegal behavior
3453// :115:22: error: use of undefined value here causes illegal behavior
3454// :115:22: error: use of undefined value here causes illegal behavior
3455// :115:22: note: when computing vector element at index '1'
3456// :115:22: error: use of undefined value here causes illegal behavior
3457// :115:22: note: when computing vector element at index '1'
3458// :115:22: error: use of undefined value here causes illegal behavior
3459// :115:22: note: when computing vector element at index '1'
3460// :115:22: error: use of undefined value here causes illegal behavior
3461// :115:22: note: when computing vector element at index '1'
3462// :115:22: error: use of undefined value here causes illegal behavior
3463// :115:22: note: when computing vector element at index '0'
3464// :115:22: error: use of undefined value here causes illegal behavior
3465// :115:22: note: when computing vector element at index '0'
3466// :115:22: error: use of undefined value here causes illegal behavior
3467// :115:22: note: when computing vector element at index '0'
3468// :115:22: error: use of undefined value here causes illegal behavior
3469// :115:22: note: when computing vector element at index '0'
3470// :115:22: error: use of undefined value here causes illegal behavior
3471// :115:22: error: use of undefined value here causes illegal behavior
3472// :115:22: error: use of undefined value here causes illegal behavior
3473// :115:22: error: use of undefined value here causes illegal behavior
3474// :115:22: error: use of undefined value here causes illegal behavior
3475// :115:22: error: use of undefined value here causes illegal behavior
3476// :115:22: error: use of undefined value here causes illegal behavior
3477// :115:22: note: when computing vector element at index '1'
3478// :115:22: error: use of undefined value here causes illegal behavior
3479// :115:22: note: when computing vector element at index '1'
3480// :115:22: error: use of undefined value here causes illegal behavior
3481// :115:22: note: when computing vector element at index '1'
3482// :115:22: error: use of undefined value here causes illegal behavior
3483// :115:22: note: when computing vector element at index '1'
3484// :115:22: error: use of undefined value here causes illegal behavior
3485// :115:22: note: when computing vector element at index '0'
3486// :115:22: error: use of undefined value here causes illegal behavior
3487// :115:22: note: when computing vector element at index '0'
3488// :115:22: error: use of undefined value here causes illegal behavior
3489// :115:22: note: when computing vector element at index '0'
3490// :115:22: error: use of undefined value here causes illegal behavior
3491// :115:22: note: when computing vector element at index '0'
3492// :115:22: error: use of undefined value here causes illegal behavior
3493// :115:22: error: use of undefined value here causes illegal behavior
3494// :115:22: error: use of undefined value here causes illegal behavior
3495// :115:22: error: use of undefined value here causes illegal behavior
3496// :115:22: error: use of undefined value here causes illegal behavior
3497// :115:22: error: use of undefined value here causes illegal behavior
3498// :115:22: error: use of undefined value here causes illegal behavior
3499// :115:22: note: when computing vector element at index '1'
3500// :115:22: error: use of undefined value here causes illegal behavior
3501// :115:22: note: when computing vector element at index '1'
3502// :115:22: error: use of undefined value here causes illegal behavior
3503// :115:22: note: when computing vector element at index '1'
3504// :115:22: error: use of undefined value here causes illegal behavior
3505// :115:22: note: when computing vector element at index '1'
3506// :115:22: error: use of undefined value here causes illegal behavior
3507// :115:22: note: when computing vector element at index '0'
3508// :115:22: error: use of undefined value here causes illegal behavior
3509// :115:22: note: when computing vector element at index '0'
3510// :115:22: error: use of undefined value here causes illegal behavior
3511// :115:22: note: when computing vector element at index '0'
3512// :115:22: error: use of undefined value here causes illegal behavior
3513// :115:22: note: when computing vector element at index '0'
3514// :115:22: error: use of undefined value here causes illegal behavior
3515// :115:22: error: use of undefined value here causes illegal behavior
3516// :115:22: error: use of undefined value here causes illegal behavior
3517// :115:22: error: use of undefined value here causes illegal behavior
3518// :115:22: error: use of undefined value here causes illegal behavior
3519// :115:22: error: use of undefined value here causes illegal behavior
3520// :115:22: error: use of undefined value here causes illegal behavior
3521// :115:22: note: when computing vector element at index '1'
3522// :115:22: error: use of undefined value here causes illegal behavior
3523// :115:22: note: when computing vector element at index '1'
3524// :115:22: error: use of undefined value here causes illegal behavior
3525// :115:22: note: when computing vector element at index '1'
3526// :115:22: error: use of undefined value here causes illegal behavior
3527// :115:22: note: when computing vector element at index '1'
3528// :115:22: error: use of undefined value here causes illegal behavior
3529// :115:22: note: when computing vector element at index '0'
3530// :115:22: error: use of undefined value here causes illegal behavior
3531// :115:22: note: when computing vector element at index '0'
3532// :115:22: error: use of undefined value here causes illegal behavior
3533// :115:22: note: when computing vector element at index '0'
3534// :115:22: error: use of undefined value here causes illegal behavior
3535// :115:22: note: when computing vector element at index '0'
3536// :115:22: error: use of undefined value here causes illegal behavior
3537// :115:22: error: use of undefined value here causes illegal behavior
3538// :115:22: error: use of undefined value here causes illegal behavior
3539// :115:22: error: use of undefined value here causes illegal behavior
3540// :115:22: error: use of undefined value here causes illegal behavior
3541// :115:22: error: use of undefined value here causes illegal behavior
3542// :115:22: error: use of undefined value here causes illegal behavior
3543// :115:22: note: when computing vector element at index '1'
3544// :115:22: error: use of undefined value here causes illegal behavior
3545// :115:22: note: when computing vector element at index '1'
3546// :115:22: error: use of undefined value here causes illegal behavior
3547// :115:22: note: when computing vector element at index '1'
3548// :115:22: error: use of undefined value here causes illegal behavior
3549// :115:22: note: when computing vector element at index '1'
3550// :115:22: error: use of undefined value here causes illegal behavior
3551// :115:22: note: when computing vector element at index '0'
3552// :115:22: error: use of undefined value here causes illegal behavior
3553// :115:22: note: when computing vector element at index '0'
3554// :115:22: error: use of undefined value here causes illegal behavior
3555// :115:22: note: when computing vector element at index '0'
3556// :115:22: error: use of undefined value here causes illegal behavior
3557// :115:22: note: when computing vector element at index '0'
3558// :115:22: error: use of undefined value here causes illegal behavior
3559// :115:22: error: use of undefined value here causes illegal behavior
3560// :115:22: error: use of undefined value here causes illegal behavior
3561// :115:22: error: use of undefined value here causes illegal behavior
3562// :115:22: error: use of undefined value here causes illegal behavior
3563// :115:22: error: use of undefined value here causes illegal behavior
3564// :115:22: error: use of undefined value here causes illegal behavior
3565// :115:22: note: when computing vector element at index '1'
3566// :115:22: error: use of undefined value here causes illegal behavior
3567// :115:22: note: when computing vector element at index '1'
3568// :115:22: error: use of undefined value here causes illegal behavior
3569// :115:22: note: when computing vector element at index '1'
3570// :115:22: error: use of undefined value here causes illegal behavior
3571// :115:22: note: when computing vector element at index '1'
3572// :115:22: error: use of undefined value here causes illegal behavior
3573// :115:22: note: when computing vector element at index '0'
3574// :115:22: error: use of undefined value here causes illegal behavior
3575// :115:22: note: when computing vector element at index '0'
3576// :115:22: error: use of undefined value here causes illegal behavior
3577// :115:22: note: when computing vector element at index '0'
3578// :115:22: error: use of undefined value here causes illegal behavior
3579// :115:22: note: when computing vector element at index '0'
3580// :115:22: error: use of undefined value here causes illegal behavior
3581// :115:22: error: use of undefined value here causes illegal behavior
3582// :115:22: error: use of undefined value here causes illegal behavior
3583// :115:22: error: use of undefined value here causes illegal behavior
3584// :115:22: error: use of undefined value here causes illegal behavior
3585// :115:22: error: use of undefined value here causes illegal behavior
3586// :115:22: error: use of undefined value here causes illegal behavior
3587// :115:22: note: when computing vector element at index '1'
3588// :115:22: error: use of undefined value here causes illegal behavior
3589// :115:22: note: when computing vector element at index '1'
3590// :115:22: error: use of undefined value here causes illegal behavior
3591// :115:22: note: when computing vector element at index '1'
3592// :115:22: error: use of undefined value here causes illegal behavior
3593// :115:22: note: when computing vector element at index '1'
3594// :115:22: error: use of undefined value here causes illegal behavior
3595// :115:22: note: when computing vector element at index '0'
3596// :115:22: error: use of undefined value here causes illegal behavior
3597// :115:22: note: when computing vector element at index '0'
3598// :115:22: error: use of undefined value here causes illegal behavior
3599// :115:22: note: when computing vector element at index '0'
3600// :115:22: error: use of undefined value here causes illegal behavior
3601// :115:22: note: when computing vector element at index '0'
3602// :115:22: error: use of undefined value here causes illegal behavior
3603// :115:22: error: use of undefined value here causes illegal behavior
3604// :115:22: error: use of undefined value here causes illegal behavior
3605// :115:22: error: use of undefined value here causes illegal behavior
3606// :115:22: error: use of undefined value here causes illegal behavior
3607// :115:22: error: use of undefined value here causes illegal behavior
3608// :115:22: error: use of undefined value here causes illegal behavior
3609// :115:22: note: when computing vector element at index '1'
3610// :115:22: error: use of undefined value here causes illegal behavior
3611// :115:22: note: when computing vector element at index '1'
3612// :115:22: error: use of undefined value here causes illegal behavior
3613// :115:22: note: when computing vector element at index '1'
3614// :115:22: error: use of undefined value here causes illegal behavior
3615// :115:22: note: when computing vector element at index '1'
3616// :115:22: error: use of undefined value here causes illegal behavior
3617// :115:22: note: when computing vector element at index '0'
3618// :115:22: error: use of undefined value here causes illegal behavior
3619// :115:22: note: when computing vector element at index '0'
3620// :115:22: error: use of undefined value here causes illegal behavior
3621// :115:22: note: when computing vector element at index '0'
3622// :115:22: error: use of undefined value here causes illegal behavior
3623// :115:22: note: when computing vector element at index '0'
3624// :115:22: error: use of undefined value here causes illegal behavior
3625// :115:22: error: use of undefined value here causes illegal behavior
3626// :115:22: error: use of undefined value here causes illegal behavior
3627// :115:22: error: use of undefined value here causes illegal behavior
3628// :115:22: error: use of undefined value here causes illegal behavior
3629// :115:22: error: use of undefined value here causes illegal behavior
3630// :115:22: error: use of undefined value here causes illegal behavior
3631// :115:22: note: when computing vector element at index '1'
3632// :115:22: error: use of undefined value here causes illegal behavior
3633// :115:22: note: when computing vector element at index '1'
3634// :115:22: error: use of undefined value here causes illegal behavior
3635// :115:22: note: when computing vector element at index '1'
3636// :115:22: error: use of undefined value here causes illegal behavior
3637// :115:22: note: when computing vector element at index '1'
3638// :115:22: error: use of undefined value here causes illegal behavior
3639// :115:22: note: when computing vector element at index '0'
3640// :115:22: error: use of undefined value here causes illegal behavior
3641// :115:22: note: when computing vector element at index '0'
3642// :115:22: error: use of undefined value here causes illegal behavior
3643// :115:22: note: when computing vector element at index '0'
3644// :115:22: error: use of undefined value here causes illegal behavior
3645// :115:22: note: when computing vector element at index '0'
3646// :121:17: error: use of undefined value here causes illegal behavior
3647// :121:17: error: use of undefined value here causes illegal behavior
3648// :121:17: note: when computing vector element at index '0'
3649// :121:17: error: use of undefined value here causes illegal behavior
3650// :121:17: note: when computing vector element at index '0'
3651// :121:17: error: use of undefined value here causes illegal behavior
3652// :121:17: note: when computing vector element at index '0'
3653// :121:17: error: use of undefined value here causes illegal behavior
3654// :121:17: note: when computing vector element at index '1'
3655// :121:17: error: use of undefined value here causes illegal behavior
3656// :121:17: note: when computing vector element at index '0'
3657// :121:17: error: use of undefined value here causes illegal behavior
3658// :121:17: note: when computing vector element at index '0'
3659// :121:17: error: use of undefined value here causes illegal behavior
3660// :121:17: note: when computing vector element at index '0'
3661// :121:17: error: use of undefined value here causes illegal behavior
3662// :121:17: error: use of undefined value here causes illegal behavior
3663// :121:17: note: when computing vector element at index '0'
3664// :121:17: error: use of undefined value here causes illegal behavior
3665// :121:17: note: when computing vector element at index '0'
3666// :121:17: error: use of undefined value here causes illegal behavior
3667// :121:17: note: when computing vector element at index '0'
3668// :121:17: error: use of undefined value here causes illegal behavior
3669// :121:17: note: when computing vector element at index '1'
3670// :121:17: error: use of undefined value here causes illegal behavior
3671// :121:17: note: when computing vector element at index '0'
3672// :121:17: error: use of undefined value here causes illegal behavior
3673// :121:17: note: when computing vector element at index '0'
3674// :121:17: error: use of undefined value here causes illegal behavior
3675// :121:17: note: when computing vector element at index '0'
3676// :121:17: error: use of undefined value here causes illegal behavior
3677// :121:17: error: use of undefined value here causes illegal behavior
3678// :121:17: note: when computing vector element at index '0'
3679// :121:17: error: use of undefined value here causes illegal behavior
3680// :121:17: note: when computing vector element at index '0'
3681// :121:17: error: use of undefined value here causes illegal behavior
3682// :121:17: note: when computing vector element at index '0'
3683// :121:17: error: use of undefined value here causes illegal behavior
3684// :121:17: note: when computing vector element at index '1'
3685// :121:17: error: use of undefined value here causes illegal behavior
3686// :121:17: note: when computing vector element at index '0'
3687// :121:17: error: use of undefined value here causes illegal behavior
3688// :121:17: note: when computing vector element at index '0'
3689// :121:17: error: use of undefined value here causes illegal behavior
3690// :121:17: note: when computing vector element at index '0'
3691// :121:17: error: use of undefined value here causes illegal behavior
3692// :121:17: error: use of undefined value here causes illegal behavior
3693// :121:17: note: when computing vector element at index '0'
3694// :121:17: error: use of undefined value here causes illegal behavior
3695// :121:17: note: when computing vector element at index '0'
3696// :121:17: error: use of undefined value here causes illegal behavior
3697// :121:17: note: when computing vector element at index '0'
3698// :121:17: error: use of undefined value here causes illegal behavior
3699// :121:17: note: when computing vector element at index '1'
3700// :121:17: error: use of undefined value here causes illegal behavior
3701// :121:17: note: when computing vector element at index '0'
3702// :121:17: error: use of undefined value here causes illegal behavior
3703// :121:17: note: when computing vector element at index '0'
3704// :121:17: error: use of undefined value here causes illegal behavior
3705// :121:17: note: when computing vector element at index '0'
3706// :121:17: error: use of undefined value here causes illegal behavior
3707// :121:17: error: use of undefined value here causes illegal behavior
3708// :121:17: note: when computing vector element at index '0'
3709// :121:17: error: use of undefined value here causes illegal behavior
3710// :121:17: note: when computing vector element at index '0'
3711// :121:17: error: use of undefined value here causes illegal behavior
3712// :121:17: note: when computing vector element at index '0'
3713// :121:17: error: use of undefined value here causes illegal behavior
3714// :121:17: note: when computing vector element at index '1'
3715// :121:17: error: use of undefined value here causes illegal behavior
3716// :121:17: note: when computing vector element at index '0'
3717// :121:17: error: use of undefined value here causes illegal behavior
3718// :121:17: note: when computing vector element at index '0'
3719// :121:17: error: use of undefined value here causes illegal behavior
3720// :121:17: note: when computing vector element at index '0'
3721// :121:17: error: use of undefined value here causes illegal behavior
3722// :121:17: error: use of undefined value here causes illegal behavior
3723// :121:17: note: when computing vector element at index '0'
3724// :121:17: error: use of undefined value here causes illegal behavior
3725// :121:17: note: when computing vector element at index '0'
3726// :121:17: error: use of undefined value here causes illegal behavior
3727// :121:17: note: when computing vector element at index '0'
3728// :121:17: error: use of undefined value here causes illegal behavior
3729// :121:17: note: when computing vector element at index '1'
3730// :121:17: error: use of undefined value here causes illegal behavior
3731// :121:17: note: when computing vector element at index '0'
3732// :121:17: error: use of undefined value here causes illegal behavior
3733// :121:17: note: when computing vector element at index '0'
3734// :121:17: error: use of undefined value here causes illegal behavior
3735// :121:17: note: when computing vector element at index '0'
3736// :121:17: error: use of undefined value here causes illegal behavior
3737// :121:17: error: use of undefined value here causes illegal behavior
3738// :121:17: note: when computing vector element at index '0'
3739// :121:17: error: use of undefined value here causes illegal behavior
3740// :121:17: note: when computing vector element at index '0'
3741// :121:17: error: use of undefined value here causes illegal behavior
3742// :121:17: note: when computing vector element at index '0'
3743// :121:17: error: use of undefined value here causes illegal behavior
3744// :121:17: note: when computing vector element at index '1'
3745// :121:17: error: use of undefined value here causes illegal behavior
3746// :121:17: note: when computing vector element at index '0'
3747// :121:17: error: use of undefined value here causes illegal behavior
3748// :121:17: note: when computing vector element at index '0'
3749// :121:17: error: use of undefined value here causes illegal behavior
3750// :121:17: note: when computing vector element at index '0'
3751// :121:17: error: use of undefined value here causes illegal behavior
3752// :121:17: error: use of undefined value here causes illegal behavior
3753// :121:17: note: when computing vector element at index '0'
3754// :121:17: error: use of undefined value here causes illegal behavior
3755// :121:17: note: when computing vector element at index '0'
3756// :121:17: error: use of undefined value here causes illegal behavior
3757// :121:17: note: when computing vector element at index '0'
3758// :121:17: error: use of undefined value here causes illegal behavior
3759// :121:17: note: when computing vector element at index '1'
3760// :121:17: error: use of undefined value here causes illegal behavior
3761// :121:17: note: when computing vector element at index '0'
3762// :121:17: error: use of undefined value here causes illegal behavior
3763// :121:17: note: when computing vector element at index '0'
3764// :121:17: error: use of undefined value here causes illegal behavior
3765// :121:17: note: when computing vector element at index '0'
3766// :121:17: error: use of undefined value here causes illegal behavior
3767// :121:17: error: use of undefined value here causes illegal behavior
3768// :121:17: note: when computing vector element at index '0'
3769// :121:17: error: use of undefined value here causes illegal behavior
3770// :121:17: note: when computing vector element at index '0'
3771// :121:17: error: use of undefined value here causes illegal behavior
3772// :121:17: note: when computing vector element at index '0'
3773// :121:17: error: use of undefined value here causes illegal behavior
3774// :121:17: note: when computing vector element at index '1'
3775// :121:17: error: use of undefined value here causes illegal behavior
3776// :121:17: note: when computing vector element at index '0'
3777// :121:17: error: use of undefined value here causes illegal behavior
3778// :121:17: note: when computing vector element at index '0'
3779// :121:17: error: use of undefined value here causes illegal behavior
3780// :121:17: note: when computing vector element at index '0'
3781// :121:17: error: use of undefined value here causes illegal behavior
3782// :121:17: error: use of undefined value here causes illegal behavior
3783// :121:17: note: when computing vector element at index '0'
3784// :121:17: error: use of undefined value here causes illegal behavior
3785// :121:17: note: when computing vector element at index '0'
3786// :121:17: error: use of undefined value here causes illegal behavior
3787// :121:17: note: when computing vector element at index '0'
3788// :121:17: error: use of undefined value here causes illegal behavior
3789// :121:17: note: when computing vector element at index '1'
3790// :121:17: error: use of undefined value here causes illegal behavior
3791// :121:17: note: when computing vector element at index '0'
3792// :121:17: error: use of undefined value here causes illegal behavior
3793// :121:17: note: when computing vector element at index '0'
3794// :121:17: error: use of undefined value here causes illegal behavior
3795// :121:17: note: when computing vector element at index '0'
3796// :121:17: error: use of undefined value here causes illegal behavior
3797// :121:17: error: use of undefined value here causes illegal behavior
3798// :121:17: note: when computing vector element at index '0'
3799// :121:17: error: use of undefined value here causes illegal behavior
3800// :121:17: note: when computing vector element at index '0'
3801// :121:17: error: use of undefined value here causes illegal behavior
3802// :121:17: note: when computing vector element at index '0'
3803// :121:17: error: use of undefined value here causes illegal behavior
3804// :121:17: note: when computing vector element at index '1'
3805// :121:17: error: use of undefined value here causes illegal behavior
3806// :121:17: note: when computing vector element at index '0'
3807// :121:17: error: use of undefined value here causes illegal behavior
3808// :121:17: note: when computing vector element at index '0'
3809// :121:17: error: use of undefined value here causes illegal behavior
3810// :121:17: note: when computing vector element at index '0'
3811// :121:21: error: use of undefined value here causes illegal behavior
3812// :121:21: error: use of undefined value here causes illegal behavior
3813// :121:21: note: when computing vector element at index '0'
3814// :121:21: error: use of undefined value here causes illegal behavior
3815// :121:21: note: when computing vector element at index '0'
3816// :121:21: error: use of undefined value here causes illegal behavior
3817// :121:21: note: when computing vector element at index '1'
3818// :121:21: error: use of undefined value here causes illegal behavior
3819// :121:21: note: when computing vector element at index '0'
3820// :121:21: error: use of undefined value here causes illegal behavior
3821// :121:21: note: when computing vector element at index '0'
3822// :121:21: error: use of undefined value here causes illegal behavior
3823// :121:21: error: use of undefined value here causes illegal behavior
3824// :121:21: note: when computing vector element at index '0'
3825// :121:21: error: use of undefined value here causes illegal behavior
3826// :121:21: note: when computing vector element at index '0'
3827// :121:21: error: use of undefined value here causes illegal behavior
3828// :121:21: note: when computing vector element at index '1'
3829// :121:21: error: use of undefined value here causes illegal behavior
3830// :121:21: note: when computing vector element at index '0'
3831// :121:21: error: use of undefined value here causes illegal behavior
3832// :121:21: note: when computing vector element at index '0'
3833// :121:21: error: use of undefined value here causes illegal behavior
3834// :121:21: error: use of undefined value here causes illegal behavior
3835// :121:21: note: when computing vector element at index '0'
3836// :121:21: error: use of undefined value here causes illegal behavior
3837// :121:21: note: when computing vector element at index '0'
3838// :121:21: error: use of undefined value here causes illegal behavior
3839// :121:21: note: when computing vector element at index '1'
3840// :121:21: error: use of undefined value here causes illegal behavior
3841// :121:21: note: when computing vector element at index '0'
3842// :121:21: error: use of undefined value here causes illegal behavior
3843// :121:21: note: when computing vector element at index '0'
3844// :121:21: error: use of undefined value here causes illegal behavior
3845// :121:21: error: use of undefined value here causes illegal behavior
3846// :121:21: note: when computing vector element at index '0'
3847// :121:21: error: use of undefined value here causes illegal behavior
3848// :121:21: note: when computing vector element at index '0'
3849// :121:21: error: use of undefined value here causes illegal behavior
3850// :121:21: note: when computing vector element at index '1'
3851// :121:21: error: use of undefined value here causes illegal behavior
3852// :121:21: note: when computing vector element at index '0'
3853// :121:21: error: use of undefined value here causes illegal behavior
3854// :121:21: note: when computing vector element at index '0'
3855// :121:21: error: use of undefined value here causes illegal behavior
3856// :121:21: error: use of undefined value here causes illegal behavior
3857// :121:21: note: when computing vector element at index '0'
3858// :121:21: error: use of undefined value here causes illegal behavior
3859// :121:21: note: when computing vector element at index '0'
3860// :121:21: error: use of undefined value here causes illegal behavior
3861// :121:21: note: when computing vector element at index '1'
3862// :121:21: error: use of undefined value here causes illegal behavior
3863// :121:21: note: when computing vector element at index '0'
3864// :121:21: error: use of undefined value here causes illegal behavior
3865// :121:21: note: when computing vector element at index '0'
3866// :121:21: error: use of undefined value here causes illegal behavior
3867// :121:21: error: use of undefined value here causes illegal behavior
3868// :121:21: note: when computing vector element at index '0'
3869// :121:21: error: use of undefined value here causes illegal behavior
3870// :121:21: note: when computing vector element at index '0'
3871// :121:21: error: use of undefined value here causes illegal behavior
3872// :121:21: note: when computing vector element at index '1'
3873// :121:21: error: use of undefined value here causes illegal behavior
3874// :121:21: note: when computing vector element at index '0'
3875// :121:21: error: use of undefined value here causes illegal behavior
3876// :121:21: note: when computing vector element at index '0'
3877// :121:21: error: use of undefined value here causes illegal behavior
3878// :121:21: error: use of undefined value here causes illegal behavior
3879// :121:21: note: when computing vector element at index '0'
3880// :121:21: error: use of undefined value here causes illegal behavior
3881// :121:21: note: when computing vector element at index '0'
3882// :121:21: error: use of undefined value here causes illegal behavior
3883// :121:21: note: when computing vector element at index '1'
3884// :121:21: error: use of undefined value here causes illegal behavior
3885// :121:21: note: when computing vector element at index '0'
3886// :121:21: error: use of undefined value here causes illegal behavior
3887// :121:21: note: when computing vector element at index '0'
3888// :121:21: error: use of undefined value here causes illegal behavior
3889// :121:21: error: use of undefined value here causes illegal behavior
3890// :121:21: note: when computing vector element at index '0'
3891// :121:21: error: use of undefined value here causes illegal behavior
3892// :121:21: note: when computing vector element at index '0'
3893// :121:21: error: use of undefined value here causes illegal behavior
3894// :121:21: note: when computing vector element at index '1'
3895// :121:21: error: use of undefined value here causes illegal behavior
3896// :121:21: note: when computing vector element at index '0'
3897// :121:21: error: use of undefined value here causes illegal behavior
3898// :121:21: note: when computing vector element at index '0'
3899// :121:21: error: use of undefined value here causes illegal behavior
3900// :121:21: error: use of undefined value here causes illegal behavior
3901// :121:21: note: when computing vector element at index '0'
3902// :121:21: error: use of undefined value here causes illegal behavior
3903// :121:21: note: when computing vector element at index '0'
3904// :121:21: error: use of undefined value here causes illegal behavior
3905// :121:21: note: when computing vector element at index '1'
3906// :121:21: error: use of undefined value here causes illegal behavior
3907// :121:21: note: when computing vector element at index '0'
3908// :121:21: error: use of undefined value here causes illegal behavior
3909// :121:21: note: when computing vector element at index '0'
3910// :121:21: error: use of undefined value here causes illegal behavior
3911// :121:21: error: use of undefined value here causes illegal behavior
3912// :121:21: note: when computing vector element at index '0'
3913// :121:21: error: use of undefined value here causes illegal behavior
3914// :121:21: note: when computing vector element at index '0'
3915// :121:21: error: use of undefined value here causes illegal behavior
3916// :121:21: note: when computing vector element at index '1'
3917// :121:21: error: use of undefined value here causes illegal behavior
3918// :121:21: note: when computing vector element at index '0'
3919// :121:21: error: use of undefined value here causes illegal behavior
3920// :121:21: note: when computing vector element at index '0'
3921// :121:21: error: use of undefined value here causes illegal behavior
3922// :121:21: error: use of undefined value here causes illegal behavior
3923// :121:21: note: when computing vector element at index '0'
3924// :121:21: error: use of undefined value here causes illegal behavior
3925// :121:21: note: when computing vector element at index '0'
3926// :121:21: error: use of undefined value here causes illegal behavior
3927// :121:21: note: when computing vector element at index '1'
3928// :121:21: error: use of undefined value here causes illegal behavior
3929// :121:21: note: when computing vector element at index '0'
3930// :121:21: error: use of undefined value here causes illegal behavior
3931// :121:21: note: when computing vector element at index '0'
3932// :125:27: error: use of undefined value here causes illegal behavior
3933// :125:27: error: use of undefined value here causes illegal behavior
3934// :125:27: note: when computing vector element at index '0'
3935// :125:27: error: use of undefined value here causes illegal behavior
3936// :125:27: note: when computing vector element at index '0'
3937// :125:27: error: use of undefined value here causes illegal behavior
3938// :125:27: note: when computing vector element at index '0'
3939// :125:27: error: use of undefined value here causes illegal behavior
3940// :125:27: note: when computing vector element at index '1'
3941// :125:27: error: use of undefined value here causes illegal behavior
3942// :125:27: note: when computing vector element at index '0'
3943// :125:27: error: use of undefined value here causes illegal behavior
3944// :125:27: note: when computing vector element at index '0'
3945// :125:27: error: use of undefined value here causes illegal behavior
3946// :125:27: note: when computing vector element at index '0'
3947// :125:27: error: use of undefined value here causes illegal behavior
3948// :125:27: error: use of undefined value here causes illegal behavior
3949// :125:27: note: when computing vector element at index '0'
3950// :125:27: error: use of undefined value here causes illegal behavior
3951// :125:27: note: when computing vector element at index '0'
3952// :125:27: error: use of undefined value here causes illegal behavior
3953// :125:27: note: when computing vector element at index '0'
3954// :125:27: error: use of undefined value here causes illegal behavior
3955// :125:27: note: when computing vector element at index '1'
3956// :125:27: error: use of undefined value here causes illegal behavior
3957// :125:27: note: when computing vector element at index '0'
3958// :125:27: error: use of undefined value here causes illegal behavior
3959// :125:27: note: when computing vector element at index '0'
3960// :125:27: error: use of undefined value here causes illegal behavior
3961// :125:27: note: when computing vector element at index '0'
3962// :125:27: error: use of undefined value here causes illegal behavior
3963// :125:27: error: use of undefined value here causes illegal behavior
3964// :125:27: note: when computing vector element at index '0'
3965// :125:27: error: use of undefined value here causes illegal behavior
3966// :125:27: note: when computing vector element at index '0'
3967// :125:27: error: use of undefined value here causes illegal behavior
3968// :125:27: note: when computing vector element at index '0'
3969// :125:27: error: use of undefined value here causes illegal behavior
3970// :125:27: note: when computing vector element at index '1'
3971// :125:27: error: use of undefined value here causes illegal behavior
3972// :125:27: note: when computing vector element at index '0'
3973// :125:27: error: use of undefined value here causes illegal behavior
3974// :125:27: note: when computing vector element at index '0'
3975// :125:27: error: use of undefined value here causes illegal behavior
3976// :125:27: note: when computing vector element at index '0'
3977// :125:27: error: use of undefined value here causes illegal behavior
3978// :125:27: error: use of undefined value here causes illegal behavior
3979// :125:27: note: when computing vector element at index '0'
3980// :125:27: error: use of undefined value here causes illegal behavior
3981// :125:27: note: when computing vector element at index '0'
3982// :125:27: error: use of undefined value here causes illegal behavior
3983// :125:27: note: when computing vector element at index '0'
3984// :125:27: error: use of undefined value here causes illegal behavior
3985// :125:27: note: when computing vector element at index '1'
3986// :125:27: error: use of undefined value here causes illegal behavior
3987// :125:27: note: when computing vector element at index '0'
3988// :125:27: error: use of undefined value here causes illegal behavior
3989// :125:27: note: when computing vector element at index '0'
3990// :125:27: error: use of undefined value here causes illegal behavior
3991// :125:27: note: when computing vector element at index '0'
3992// :125:27: error: use of undefined value here causes illegal behavior
3993// :125:27: error: use of undefined value here causes illegal behavior
3994// :125:27: note: when computing vector element at index '0'
3995// :125:27: error: use of undefined value here causes illegal behavior
3996// :125:27: note: when computing vector element at index '0'
3997// :125:27: error: use of undefined value here causes illegal behavior
3998// :125:27: note: when computing vector element at index '0'
3999// :125:27: error: use of undefined value here causes illegal behavior
4000// :125:27: note: when computing vector element at index '1'
4001// :125:27: error: use of undefined value here causes illegal behavior
4002// :125:27: note: when computing vector element at index '0'
4003// :125:27: error: use of undefined value here causes illegal behavior
4004// :125:27: note: when computing vector element at index '0'
4005// :125:27: error: use of undefined value here causes illegal behavior
4006// :125:27: note: when computing vector element at index '0'
4007// :125:27: error: use of undefined value here causes illegal behavior
4008// :125:27: error: use of undefined value here causes illegal behavior
4009// :125:27: note: when computing vector element at index '0'
4010// :125:27: error: use of undefined value here causes illegal behavior
4011// :125:27: note: when computing vector element at index '0'
4012// :125:27: error: use of undefined value here causes illegal behavior
4013// :125:27: note: when computing vector element at index '0'
4014// :125:27: error: use of undefined value here causes illegal behavior
4015// :125:27: note: when computing vector element at index '1'
4016// :125:27: error: use of undefined value here causes illegal behavior
4017// :125:27: note: when computing vector element at index '0'
4018// :125:27: error: use of undefined value here causes illegal behavior
4019// :125:27: note: when computing vector element at index '0'
4020// :125:27: error: use of undefined value here causes illegal behavior
4021// :125:27: note: when computing vector element at index '0'
4022// :125:27: error: use of undefined value here causes illegal behavior
4023// :125:27: error: use of undefined value here causes illegal behavior
4024// :125:27: note: when computing vector element at index '0'
4025// :125:27: error: use of undefined value here causes illegal behavior
4026// :125:27: note: when computing vector element at index '0'
4027// :125:27: error: use of undefined value here causes illegal behavior
4028// :125:27: note: when computing vector element at index '0'
4029// :125:27: error: use of undefined value here causes illegal behavior
4030// :125:27: note: when computing vector element at index '1'
4031// :125:27: error: use of undefined value here causes illegal behavior
4032// :125:27: note: when computing vector element at index '0'
4033// :125:27: error: use of undefined value here causes illegal behavior
4034// :125:27: note: when computing vector element at index '0'
4035// :125:27: error: use of undefined value here causes illegal behavior
4036// :125:27: note: when computing vector element at index '0'
4037// :125:27: error: use of undefined value here causes illegal behavior
4038// :125:27: error: use of undefined value here causes illegal behavior
4039// :125:27: note: when computing vector element at index '0'
4040// :125:27: error: use of undefined value here causes illegal behavior
4041// :125:27: note: when computing vector element at index '0'
4042// :125:27: error: use of undefined value here causes illegal behavior
4043// :125:27: note: when computing vector element at index '0'
4044// :125:27: error: use of undefined value here causes illegal behavior
4045// :125:27: note: when computing vector element at index '1'
4046// :125:27: error: use of undefined value here causes illegal behavior
4047// :125:27: note: when computing vector element at index '0'
4048// :125:27: error: use of undefined value here causes illegal behavior
4049// :125:27: note: when computing vector element at index '0'
4050// :125:27: error: use of undefined value here causes illegal behavior
4051// :125:27: note: when computing vector element at index '0'
4052// :125:27: error: use of undefined value here causes illegal behavior
4053// :125:27: error: use of undefined value here causes illegal behavior
4054// :125:27: note: when computing vector element at index '0'
4055// :125:27: error: use of undefined value here causes illegal behavior
4056// :125:27: note: when computing vector element at index '0'
4057// :125:27: error: use of undefined value here causes illegal behavior
4058// :125:27: note: when computing vector element at index '0'
4059// :125:27: error: use of undefined value here causes illegal behavior
4060// :125:27: note: when computing vector element at index '1'
4061// :125:27: error: use of undefined value here causes illegal behavior
4062// :125:27: note: when computing vector element at index '0'
4063// :125:27: error: use of undefined value here causes illegal behavior
4064// :125:27: note: when computing vector element at index '0'
4065// :125:27: error: use of undefined value here causes illegal behavior
4066// :125:27: note: when computing vector element at index '0'
4067// :125:27: error: use of undefined value here causes illegal behavior
4068// :125:27: error: use of undefined value here causes illegal behavior
4069// :125:27: note: when computing vector element at index '0'
4070// :125:27: error: use of undefined value here causes illegal behavior
4071// :125:27: note: when computing vector element at index '0'
4072// :125:27: error: use of undefined value here causes illegal behavior
4073// :125:27: note: when computing vector element at index '0'
4074// :125:27: error: use of undefined value here causes illegal behavior
4075// :125:27: note: when computing vector element at index '1'
4076// :125:27: error: use of undefined value here causes illegal behavior
4077// :125:27: note: when computing vector element at index '0'
4078// :125:27: error: use of undefined value here causes illegal behavior
4079// :125:27: note: when computing vector element at index '0'
4080// :125:27: error: use of undefined value here causes illegal behavior
4081// :125:27: note: when computing vector element at index '0'
4082// :125:27: error: use of undefined value here causes illegal behavior
4083// :125:27: error: use of undefined value here causes illegal behavior
4084// :125:27: note: when computing vector element at index '0'
4085// :125:27: error: use of undefined value here causes illegal behavior
4086// :125:27: note: when computing vector element at index '0'
4087// :125:27: error: use of undefined value here causes illegal behavior
4088// :125:27: note: when computing vector element at index '0'
4089// :125:27: error: use of undefined value here causes illegal behavior
4090// :125:27: note: when computing vector element at index '1'
4091// :125:27: error: use of undefined value here causes illegal behavior
4092// :125:27: note: when computing vector element at index '0'
4093// :125:27: error: use of undefined value here causes illegal behavior
4094// :125:27: note: when computing vector element at index '0'
4095// :125:27: error: use of undefined value here causes illegal behavior
4096// :125:27: note: when computing vector element at index '0'
4097// :125:30: error: use of undefined value here causes illegal behavior
4098// :125:30: error: use of undefined value here causes illegal behavior
4099// :125:30: note: when computing vector element at index '0'
4100// :125:30: error: use of undefined value here causes illegal behavior
4101// :125:30: note: when computing vector element at index '0'
4102// :125:30: error: use of undefined value here causes illegal behavior
4103// :125:30: note: when computing vector element at index '1'
4104// :125:30: error: use of undefined value here causes illegal behavior
4105// :125:30: note: when computing vector element at index '0'
4106// :125:30: error: use of undefined value here causes illegal behavior
4107// :125:30: note: when computing vector element at index '0'
4108// :125:30: error: use of undefined value here causes illegal behavior
4109// :125:30: error: use of undefined value here causes illegal behavior
4110// :125:30: note: when computing vector element at index '0'
4111// :125:30: error: use of undefined value here causes illegal behavior
4112// :125:30: note: when computing vector element at index '0'
4113// :125:30: error: use of undefined value here causes illegal behavior
4114// :125:30: note: when computing vector element at index '1'
4115// :125:30: error: use of undefined value here causes illegal behavior
4116// :125:30: note: when computing vector element at index '0'
4117// :125:30: error: use of undefined value here causes illegal behavior
4118// :125:30: note: when computing vector element at index '0'
4119// :125:30: error: use of undefined value here causes illegal behavior
4120// :125:30: error: use of undefined value here causes illegal behavior
4121// :125:30: note: when computing vector element at index '0'
4122// :125:30: error: use of undefined value here causes illegal behavior
4123// :125:30: note: when computing vector element at index '0'
4124// :125:30: error: use of undefined value here causes illegal behavior
4125// :125:30: note: when computing vector element at index '1'
4126// :125:30: error: use of undefined value here causes illegal behavior
4127// :125:30: note: when computing vector element at index '0'
4128// :125:30: error: use of undefined value here causes illegal behavior
4129// :125:30: note: when computing vector element at index '0'
4130// :125:30: error: use of undefined value here causes illegal behavior
4131// :125:30: error: use of undefined value here causes illegal behavior
4132// :125:30: note: when computing vector element at index '0'
4133// :125:30: error: use of undefined value here causes illegal behavior
4134// :125:30: note: when computing vector element at index '0'
4135// :125:30: error: use of undefined value here causes illegal behavior
4136// :125:30: note: when computing vector element at index '1'
4137// :125:30: error: use of undefined value here causes illegal behavior
4138// :125:30: note: when computing vector element at index '0'
4139// :125:30: error: use of undefined value here causes illegal behavior
4140// :125:30: note: when computing vector element at index '0'
4141// :125:30: error: use of undefined value here causes illegal behavior
4142// :125:30: error: use of undefined value here causes illegal behavior
4143// :125:30: note: when computing vector element at index '0'
4144// :125:30: error: use of undefined value here causes illegal behavior
4145// :125:30: note: when computing vector element at index '0'
4146// :125:30: error: use of undefined value here causes illegal behavior
4147// :125:30: note: when computing vector element at index '1'
4148// :125:30: error: use of undefined value here causes illegal behavior
4149// :125:30: note: when computing vector element at index '0'
4150// :125:30: error: use of undefined value here causes illegal behavior
4151// :125:30: note: when computing vector element at index '0'
4152// :125:30: error: use of undefined value here causes illegal behavior
4153// :125:30: error: use of undefined value here causes illegal behavior
4154// :125:30: note: when computing vector element at index '0'
4155// :125:30: error: use of undefined value here causes illegal behavior
4156// :125:30: note: when computing vector element at index '0'
4157// :125:30: error: use of undefined value here causes illegal behavior
4158// :125:30: note: when computing vector element at index '1'
4159// :125:30: error: use of undefined value here causes illegal behavior
4160// :125:30: note: when computing vector element at index '0'
4161// :125:30: error: use of undefined value here causes illegal behavior
4162// :125:30: note: when computing vector element at index '0'
4163// :125:30: error: use of undefined value here causes illegal behavior
4164// :125:30: error: use of undefined value here causes illegal behavior
4165// :125:30: note: when computing vector element at index '0'
4166// :125:30: error: use of undefined value here causes illegal behavior
4167// :125:30: note: when computing vector element at index '0'
4168// :125:30: error: use of undefined value here causes illegal behavior
4169// :125:30: note: when computing vector element at index '1'
4170// :125:30: error: use of undefined value here causes illegal behavior
4171// :125:30: note: when computing vector element at index '0'
4172// :125:30: error: use of undefined value here causes illegal behavior
4173// :125:30: note: when computing vector element at index '0'
4174// :125:30: error: use of undefined value here causes illegal behavior
4175// :125:30: error: use of undefined value here causes illegal behavior
4176// :125:30: note: when computing vector element at index '0'
4177// :125:30: error: use of undefined value here causes illegal behavior
4178// :125:30: note: when computing vector element at index '0'
4179// :125:30: error: use of undefined value here causes illegal behavior
4180// :125:30: note: when computing vector element at index '1'
4181// :125:30: error: use of undefined value here causes illegal behavior
4182// :125:30: note: when computing vector element at index '0'
4183// :125:30: error: use of undefined value here causes illegal behavior
4184// :125:30: note: when computing vector element at index '0'
4185// :125:30: error: use of undefined value here causes illegal behavior
4186// :125:30: error: use of undefined value here causes illegal behavior
4187// :125:30: note: when computing vector element at index '0'
4188// :125:30: error: use of undefined value here causes illegal behavior
4189// :125:30: note: when computing vector element at index '0'
4190// :125:30: error: use of undefined value here causes illegal behavior
4191// :125:30: note: when computing vector element at index '1'
4192// :125:30: error: use of undefined value here causes illegal behavior
4193// :125:30: note: when computing vector element at index '0'
4194// :125:30: error: use of undefined value here causes illegal behavior
4195// :125:30: note: when computing vector element at index '0'
4196// :125:30: error: use of undefined value here causes illegal behavior
4197// :125:30: error: use of undefined value here causes illegal behavior
4198// :125:30: note: when computing vector element at index '0'
4199// :125:30: error: use of undefined value here causes illegal behavior
4200// :125:30: note: when computing vector element at index '0'
4201// :125:30: error: use of undefined value here causes illegal behavior
4202// :125:30: note: when computing vector element at index '1'
4203// :125:30: error: use of undefined value here causes illegal behavior
4204// :125:30: note: when computing vector element at index '0'
4205// :125:30: error: use of undefined value here causes illegal behavior
4206// :125:30: note: when computing vector element at index '0'
4207// :125:30: error: use of undefined value here causes illegal behavior
4208// :125:30: error: use of undefined value here causes illegal behavior
4209// :125:30: note: when computing vector element at index '0'
4210// :125:30: error: use of undefined value here causes illegal behavior
4211// :125:30: note: when computing vector element at index '0'
4212// :125:30: error: use of undefined value here causes illegal behavior
4213// :125:30: note: when computing vector element at index '1'
4214// :125:30: error: use of undefined value here causes illegal behavior
4215// :125:30: note: when computing vector element at index '0'
4216// :125:30: error: use of undefined value here causes illegal behavior
4217// :125:30: note: when computing vector element at index '0'
4218// :129:27: error: use of undefined value here causes illegal behavior
4219// :129:27: error: use of undefined value here causes illegal behavior
4220// :129:27: note: when computing vector element at index '0'
4221// :129:27: error: use of undefined value here causes illegal behavior
4222// :129:27: note: when computing vector element at index '0'
4223// :129:27: error: use of undefined value here causes illegal behavior
4224// :129:27: note: when computing vector element at index '0'
4225// :129:27: error: use of undefined value here causes illegal behavior
4226// :129:27: note: when computing vector element at index '1'
4227// :129:27: error: use of undefined value here causes illegal behavior
4228// :129:27: note: when computing vector element at index '0'
4229// :129:27: error: use of undefined value here causes illegal behavior
4230// :129:27: note: when computing vector element at index '0'
4231// :129:27: error: use of undefined value here causes illegal behavior
4232// :129:27: note: when computing vector element at index '0'
4233// :129:27: error: use of undefined value here causes illegal behavior
4234// :129:27: error: use of undefined value here causes illegal behavior
4235// :129:27: note: when computing vector element at index '0'
4236// :129:27: error: use of undefined value here causes illegal behavior
4237// :129:27: note: when computing vector element at index '0'
4238// :129:27: error: use of undefined value here causes illegal behavior
4239// :129:27: note: when computing vector element at index '0'
4240// :129:27: error: use of undefined value here causes illegal behavior
4241// :129:27: note: when computing vector element at index '1'
4242// :129:27: error: use of undefined value here causes illegal behavior
4243// :129:27: note: when computing vector element at index '0'
4244// :129:27: error: use of undefined value here causes illegal behavior
4245// :129:27: note: when computing vector element at index '0'
4246// :129:27: error: use of undefined value here causes illegal behavior
4247// :129:27: note: when computing vector element at index '0'
4248// :129:27: error: use of undefined value here causes illegal behavior
4249// :129:27: error: use of undefined value here causes illegal behavior
4250// :129:27: note: when computing vector element at index '0'
4251// :129:27: error: use of undefined value here causes illegal behavior
4252// :129:27: note: when computing vector element at index '0'
4253// :129:27: error: use of undefined value here causes illegal behavior
4254// :129:27: note: when computing vector element at index '0'
4255// :129:27: error: use of undefined value here causes illegal behavior
4256// :129:27: note: when computing vector element at index '1'
4257// :129:27: error: use of undefined value here causes illegal behavior
4258// :129:27: note: when computing vector element at index '0'
4259// :129:27: error: use of undefined value here causes illegal behavior
4260// :129:27: note: when computing vector element at index '0'
4261// :129:27: error: use of undefined value here causes illegal behavior
4262// :129:27: note: when computing vector element at index '0'
4263// :129:27: error: use of undefined value here causes illegal behavior
4264// :129:27: error: use of undefined value here causes illegal behavior
4265// :129:27: note: when computing vector element at index '0'
4266// :129:27: error: use of undefined value here causes illegal behavior
4267// :129:27: note: when computing vector element at index '0'
4268// :129:27: error: use of undefined value here causes illegal behavior
4269// :129:27: note: when computing vector element at index '0'
4270// :129:27: error: use of undefined value here causes illegal behavior
4271// :129:27: note: when computing vector element at index '1'
4272// :129:27: error: use of undefined value here causes illegal behavior
4273// :129:27: note: when computing vector element at index '0'
4274// :129:27: error: use of undefined value here causes illegal behavior
4275// :129:27: note: when computing vector element at index '0'
4276// :129:27: error: use of undefined value here causes illegal behavior
4277// :129:27: note: when computing vector element at index '0'
4278// :129:27: error: use of undefined value here causes illegal behavior
4279// :129:27: error: use of undefined value here causes illegal behavior
4280// :129:27: note: when computing vector element at index '0'
4281// :129:27: error: use of undefined value here causes illegal behavior
4282// :129:27: note: when computing vector element at index '0'
4283// :129:27: error: use of undefined value here causes illegal behavior
4284// :129:27: note: when computing vector element at index '0'
4285// :129:27: error: use of undefined value here causes illegal behavior
4286// :129:27: note: when computing vector element at index '1'
4287// :129:27: error: use of undefined value here causes illegal behavior
4288// :129:27: note: when computing vector element at index '0'
4289// :129:27: error: use of undefined value here causes illegal behavior
4290// :129:27: note: when computing vector element at index '0'
4291// :129:27: error: use of undefined value here causes illegal behavior
4292// :129:27: note: when computing vector element at index '0'
4293// :129:27: error: use of undefined value here causes illegal behavior
4294// :129:27: error: use of undefined value here causes illegal behavior
4295// :129:27: note: when computing vector element at index '0'
4296// :129:27: error: use of undefined value here causes illegal behavior
4297// :129:27: note: when computing vector element at index '0'
4298// :129:27: error: use of undefined value here causes illegal behavior
4299// :129:27: note: when computing vector element at index '0'
4300// :129:27: error: use of undefined value here causes illegal behavior
4301// :129:27: note: when computing vector element at index '1'
4302// :129:27: error: use of undefined value here causes illegal behavior
4303// :129:27: note: when computing vector element at index '0'
4304// :129:27: error: use of undefined value here causes illegal behavior
4305// :129:27: note: when computing vector element at index '0'
4306// :129:27: error: use of undefined value here causes illegal behavior
4307// :129:27: note: when computing vector element at index '0'
4308// :129:27: error: use of undefined value here causes illegal behavior
4309// :129:27: error: use of undefined value here causes illegal behavior
4310// :129:27: note: when computing vector element at index '0'
4311// :129:27: error: use of undefined value here causes illegal behavior
4312// :129:27: note: when computing vector element at index '0'
4313// :129:27: error: use of undefined value here causes illegal behavior
4314// :129:27: note: when computing vector element at index '0'
4315// :129:27: error: use of undefined value here causes illegal behavior
4316// :129:27: note: when computing vector element at index '1'
4317// :129:27: error: use of undefined value here causes illegal behavior
4318// :129:27: note: when computing vector element at index '0'
4319// :129:27: error: use of undefined value here causes illegal behavior
4320// :129:27: note: when computing vector element at index '0'
4321// :129:27: error: use of undefined value here causes illegal behavior
4322// :129:27: note: when computing vector element at index '0'
4323// :129:27: error: use of undefined value here causes illegal behavior
4324// :129:27: error: use of undefined value here causes illegal behavior
4325// :129:27: note: when computing vector element at index '0'
4326// :129:27: error: use of undefined value here causes illegal behavior
4327// :129:27: note: when computing vector element at index '0'
4328// :129:27: error: use of undefined value here causes illegal behavior
4329// :129:27: note: when computing vector element at index '0'
4330// :129:27: error: use of undefined value here causes illegal behavior
4331// :129:27: note: when computing vector element at index '1'
4332// :129:27: error: use of undefined value here causes illegal behavior
4333// :129:27: note: when computing vector element at index '0'
4334// :129:27: error: use of undefined value here causes illegal behavior
4335// :129:27: note: when computing vector element at index '0'
4336// :129:27: error: use of undefined value here causes illegal behavior
4337// :129:27: note: when computing vector element at index '0'
4338// :129:27: error: use of undefined value here causes illegal behavior
4339// :129:27: error: use of undefined value here causes illegal behavior
4340// :129:27: note: when computing vector element at index '0'
4341// :129:27: error: use of undefined value here causes illegal behavior
4342// :129:27: note: when computing vector element at index '0'
4343// :129:27: error: use of undefined value here causes illegal behavior
4344// :129:27: note: when computing vector element at index '0'
4345// :129:27: error: use of undefined value here causes illegal behavior
4346// :129:27: note: when computing vector element at index '1'
4347// :129:27: error: use of undefined value here causes illegal behavior
4348// :129:27: note: when computing vector element at index '0'
4349// :129:27: error: use of undefined value here causes illegal behavior
4350// :129:27: note: when computing vector element at index '0'
4351// :129:27: error: use of undefined value here causes illegal behavior
4352// :129:27: note: when computing vector element at index '0'
4353// :129:27: error: use of undefined value here causes illegal behavior
4354// :129:27: error: use of undefined value here causes illegal behavior
4355// :129:27: note: when computing vector element at index '0'
4356// :129:27: error: use of undefined value here causes illegal behavior
4357// :129:27: note: when computing vector element at index '0'
4358// :129:27: error: use of undefined value here causes illegal behavior
4359// :129:27: note: when computing vector element at index '0'
4360// :129:27: error: use of undefined value here causes illegal behavior
4361// :129:27: note: when computing vector element at index '1'
4362// :129:27: error: use of undefined value here causes illegal behavior
4363// :129:27: note: when computing vector element at index '0'
4364// :129:27: error: use of undefined value here causes illegal behavior
4365// :129:27: note: when computing vector element at index '0'
4366// :129:27: error: use of undefined value here causes illegal behavior
4367// :129:27: note: when computing vector element at index '0'
4368// :129:27: error: use of undefined value here causes illegal behavior
4369// :129:27: error: use of undefined value here causes illegal behavior
4370// :129:27: note: when computing vector element at index '0'
4371// :129:27: error: use of undefined value here causes illegal behavior
4372// :129:27: note: when computing vector element at index '0'
4373// :129:27: error: use of undefined value here causes illegal behavior
4374// :129:27: note: when computing vector element at index '0'
4375// :129:27: error: use of undefined value here causes illegal behavior
4376// :129:27: note: when computing vector element at index '1'
4377// :129:27: error: use of undefined value here causes illegal behavior
4378// :129:27: note: when computing vector element at index '0'
4379// :129:27: error: use of undefined value here causes illegal behavior
4380// :129:27: note: when computing vector element at index '0'
4381// :129:27: error: use of undefined value here causes illegal behavior
4382// :129:27: note: when computing vector element at index '0'
4383// :129:30: error: use of undefined value here causes illegal behavior
4384// :129:30: error: use of undefined value here causes illegal behavior
4385// :129:30: note: when computing vector element at index '0'
4386// :129:30: error: use of undefined value here causes illegal behavior
4387// :129:30: note: when computing vector element at index '0'
4388// :129:30: error: use of undefined value here causes illegal behavior
4389// :129:30: note: when computing vector element at index '1'
4390// :129:30: error: use of undefined value here causes illegal behavior
4391// :129:30: note: when computing vector element at index '0'
4392// :129:30: error: use of undefined value here causes illegal behavior
4393// :129:30: note: when computing vector element at index '0'
4394// :129:30: error: use of undefined value here causes illegal behavior
4395// :129:30: error: use of undefined value here causes illegal behavior
4396// :129:30: note: when computing vector element at index '0'
4397// :129:30: error: use of undefined value here causes illegal behavior
4398// :129:30: note: when computing vector element at index '0'
4399// :129:30: error: use of undefined value here causes illegal behavior
4400// :129:30: note: when computing vector element at index '1'
4401// :129:30: error: use of undefined value here causes illegal behavior
4402// :129:30: note: when computing vector element at index '0'
4403// :129:30: error: use of undefined value here causes illegal behavior
4404// :129:30: note: when computing vector element at index '0'
4405// :129:30: error: use of undefined value here causes illegal behavior
4406// :129:30: error: use of undefined value here causes illegal behavior
4407// :129:30: note: when computing vector element at index '0'
4408// :129:30: error: use of undefined value here causes illegal behavior
4409// :129:30: note: when computing vector element at index '0'
4410// :129:30: error: use of undefined value here causes illegal behavior
4411// :129:30: note: when computing vector element at index '1'
4412// :129:30: error: use of undefined value here causes illegal behavior
4413// :129:30: note: when computing vector element at index '0'
4414// :129:30: error: use of undefined value here causes illegal behavior
4415// :129:30: note: when computing vector element at index '0'
4416// :129:30: error: use of undefined value here causes illegal behavior
4417// :129:30: error: use of undefined value here causes illegal behavior
4418// :129:30: note: when computing vector element at index '0'
4419// :129:30: error: use of undefined value here causes illegal behavior
4420// :129:30: note: when computing vector element at index '0'
4421// :129:30: error: use of undefined value here causes illegal behavior
4422// :129:30: note: when computing vector element at index '1'
4423// :129:30: error: use of undefined value here causes illegal behavior
4424// :129:30: note: when computing vector element at index '0'
4425// :129:30: error: use of undefined value here causes illegal behavior
4426// :129:30: note: when computing vector element at index '0'
4427// :129:30: error: use of undefined value here causes illegal behavior
4428// :129:30: error: use of undefined value here causes illegal behavior
4429// :129:30: note: when computing vector element at index '0'
4430// :129:30: error: use of undefined value here causes illegal behavior
4431// :129:30: note: when computing vector element at index '0'
4432// :129:30: error: use of undefined value here causes illegal behavior
4433// :129:30: note: when computing vector element at index '1'
4434// :129:30: error: use of undefined value here causes illegal behavior
4435// :129:30: note: when computing vector element at index '0'
4436// :129:30: error: use of undefined value here causes illegal behavior
4437// :129:30: note: when computing vector element at index '0'
4438// :129:30: error: use of undefined value here causes illegal behavior
4439// :129:30: error: use of undefined value here causes illegal behavior
4440// :129:30: note: when computing vector element at index '0'
4441// :129:30: error: use of undefined value here causes illegal behavior
4442// :129:30: note: when computing vector element at index '0'
4443// :129:30: error: use of undefined value here causes illegal behavior
4444// :129:30: note: when computing vector element at index '1'
4445// :129:30: error: use of undefined value here causes illegal behavior
4446// :129:30: note: when computing vector element at index '0'
4447// :129:30: error: use of undefined value here causes illegal behavior
4448// :129:30: note: when computing vector element at index '0'
4449// :129:30: error: use of undefined value here causes illegal behavior
4450// :129:30: error: use of undefined value here causes illegal behavior
4451// :129:30: note: when computing vector element at index '0'
4452// :129:30: error: use of undefined value here causes illegal behavior
4453// :129:30: note: when computing vector element at index '0'
4454// :129:30: error: use of undefined value here causes illegal behavior
4455// :129:30: note: when computing vector element at index '1'
4456// :129:30: error: use of undefined value here causes illegal behavior
4457// :129:30: note: when computing vector element at index '0'
4458// :129:30: error: use of undefined value here causes illegal behavior
4459// :129:30: note: when computing vector element at index '0'
4460// :129:30: error: use of undefined value here causes illegal behavior
4461// :129:30: error: use of undefined value here causes illegal behavior
4462// :129:30: note: when computing vector element at index '0'
4463// :129:30: error: use of undefined value here causes illegal behavior
4464// :129:30: note: when computing vector element at index '0'
4465// :129:30: error: use of undefined value here causes illegal behavior
4466// :129:30: note: when computing vector element at index '1'
4467// :129:30: error: use of undefined value here causes illegal behavior
4468// :129:30: note: when computing vector element at index '0'
4469// :129:30: error: use of undefined value here causes illegal behavior
4470// :129:30: note: when computing vector element at index '0'
4471// :129:30: error: use of undefined value here causes illegal behavior
4472// :129:30: error: use of undefined value here causes illegal behavior
4473// :129:30: note: when computing vector element at index '0'
4474// :129:30: error: use of undefined value here causes illegal behavior
4475// :129:30: note: when computing vector element at index '0'
4476// :129:30: error: use of undefined value here causes illegal behavior
4477// :129:30: note: when computing vector element at index '1'
4478// :129:30: error: use of undefined value here causes illegal behavior
4479// :129:30: note: when computing vector element at index '0'
4480// :129:30: error: use of undefined value here causes illegal behavior
4481// :129:30: note: when computing vector element at index '0'
4482// :129:30: error: use of undefined value here causes illegal behavior
4483// :129:30: error: use of undefined value here causes illegal behavior
4484// :129:30: note: when computing vector element at index '0'
4485// :129:30: error: use of undefined value here causes illegal behavior
4486// :129:30: note: when computing vector element at index '0'
4487// :129:30: error: use of undefined value here causes illegal behavior
4488// :129:30: note: when computing vector element at index '1'
4489// :129:30: error: use of undefined value here causes illegal behavior
4490// :129:30: note: when computing vector element at index '0'
4491// :129:30: error: use of undefined value here causes illegal behavior
4492// :129:30: note: when computing vector element at index '0'
4493// :129:30: error: use of undefined value here causes illegal behavior
4494// :129:30: error: use of undefined value here causes illegal behavior
4495// :129:30: note: when computing vector element at index '0'
4496// :129:30: error: use of undefined value here causes illegal behavior
4497// :129:30: note: when computing vector element at index '0'
4498// :129:30: error: use of undefined value here causes illegal behavior
4499// :129:30: note: when computing vector element at index '1'
4500// :129:30: error: use of undefined value here causes illegal behavior
4501// :129:30: note: when computing vector element at index '0'
4502// :129:30: error: use of undefined value here causes illegal behavior
4503// :129:30: note: when computing vector element at index '0'
4504// :133:27: error: use of undefined value here causes illegal behavior
4505// :133:27: error: use of undefined value here causes illegal behavior
4506// :133:27: note: when computing vector element at index '0'
4507// :133:27: error: use of undefined value here causes illegal behavior
4508// :133:27: note: when computing vector element at index '0'
4509// :133:27: error: use of undefined value here causes illegal behavior
4510// :133:27: note: when computing vector element at index '0'
4511// :133:27: error: use of undefined value here causes illegal behavior
4512// :133:27: note: when computing vector element at index '1'
4513// :133:27: error: use of undefined value here causes illegal behavior
4514// :133:27: note: when computing vector element at index '0'
4515// :133:27: error: use of undefined value here causes illegal behavior
4516// :133:27: note: when computing vector element at index '0'
4517// :133:27: error: use of undefined value here causes illegal behavior
4518// :133:27: note: when computing vector element at index '0'
4519// :133:27: error: use of undefined value here causes illegal behavior
4520// :133:27: error: use of undefined value here causes illegal behavior
4521// :133:27: note: when computing vector element at index '0'
4522// :133:27: error: use of undefined value here causes illegal behavior
4523// :133:27: note: when computing vector element at index '0'
4524// :133:27: error: use of undefined value here causes illegal behavior
4525// :133:27: note: when computing vector element at index '0'
4526// :133:27: error: use of undefined value here causes illegal behavior
4527// :133:27: note: when computing vector element at index '1'
4528// :133:27: error: use of undefined value here causes illegal behavior
4529// :133:27: note: when computing vector element at index '0'
4530// :133:27: error: use of undefined value here causes illegal behavior
4531// :133:27: note: when computing vector element at index '0'
4532// :133:27: error: use of undefined value here causes illegal behavior
4533// :133:27: note: when computing vector element at index '0'
4534// :133:27: error: use of undefined value here causes illegal behavior
4535// :133:27: error: use of undefined value here causes illegal behavior
4536// :133:27: note: when computing vector element at index '0'
4537// :133:27: error: use of undefined value here causes illegal behavior
4538// :133:27: note: when computing vector element at index '0'
4539// :133:27: error: use of undefined value here causes illegal behavior
4540// :133:27: note: when computing vector element at index '0'
4541// :133:27: error: use of undefined value here causes illegal behavior
4542// :133:27: note: when computing vector element at index '1'
4543// :133:27: error: use of undefined value here causes illegal behavior
4544// :133:27: note: when computing vector element at index '0'
4545// :133:27: error: use of undefined value here causes illegal behavior
4546// :133:27: note: when computing vector element at index '0'
4547// :133:27: error: use of undefined value here causes illegal behavior
4548// :133:27: note: when computing vector element at index '0'
4549// :133:27: error: use of undefined value here causes illegal behavior
4550// :133:27: error: use of undefined value here causes illegal behavior
4551// :133:27: note: when computing vector element at index '0'
4552// :133:27: error: use of undefined value here causes illegal behavior
4553// :133:27: note: when computing vector element at index '0'
4554// :133:27: error: use of undefined value here causes illegal behavior
4555// :133:27: note: when computing vector element at index '0'
4556// :133:27: error: use of undefined value here causes illegal behavior
4557// :133:27: note: when computing vector element at index '1'
4558// :133:27: error: use of undefined value here causes illegal behavior
4559// :133:27: note: when computing vector element at index '0'
4560// :133:27: error: use of undefined value here causes illegal behavior
4561// :133:27: note: when computing vector element at index '0'
4562// :133:27: error: use of undefined value here causes illegal behavior
4563// :133:27: note: when computing vector element at index '0'
4564// :133:27: error: use of undefined value here causes illegal behavior
4565// :133:27: error: use of undefined value here causes illegal behavior
4566// :133:27: note: when computing vector element at index '0'
4567// :133:27: error: use of undefined value here causes illegal behavior
4568// :133:27: note: when computing vector element at index '0'
4569// :133:27: error: use of undefined value here causes illegal behavior
4570// :133:27: note: when computing vector element at index '0'
4571// :133:27: error: use of undefined value here causes illegal behavior
4572// :133:27: note: when computing vector element at index '1'
4573// :133:27: error: use of undefined value here causes illegal behavior
4574// :133:27: note: when computing vector element at index '0'
4575// :133:27: error: use of undefined value here causes illegal behavior
4576// :133:27: note: when computing vector element at index '0'
4577// :133:27: error: use of undefined value here causes illegal behavior
4578// :133:27: note: when computing vector element at index '0'
4579// :133:27: error: use of undefined value here causes illegal behavior
4580// :133:27: error: use of undefined value here causes illegal behavior
4581// :133:27: note: when computing vector element at index '0'
4582// :133:27: error: use of undefined value here causes illegal behavior
4583// :133:27: note: when computing vector element at index '0'
4584// :133:27: error: use of undefined value here causes illegal behavior
4585// :133:27: note: when computing vector element at index '0'
4586// :133:27: error: use of undefined value here causes illegal behavior
4587// :133:27: note: when computing vector element at index '1'
4588// :133:27: error: use of undefined value here causes illegal behavior
4589// :133:27: note: when computing vector element at index '0'
4590// :133:27: error: use of undefined value here causes illegal behavior
4591// :133:27: note: when computing vector element at index '0'
4592// :133:27: error: use of undefined value here causes illegal behavior
4593// :133:27: note: when computing vector element at index '0'
4594// :133:27: error: use of undefined value here causes illegal behavior
4595// :133:27: error: use of undefined value here causes illegal behavior
4596// :133:27: note: when computing vector element at index '0'
4597// :133:27: error: use of undefined value here causes illegal behavior
4598// :133:27: note: when computing vector element at index '0'
4599// :133:27: error: use of undefined value here causes illegal behavior
4600// :133:27: note: when computing vector element at index '0'
4601// :133:27: error: use of undefined value here causes illegal behavior
4602// :133:27: note: when computing vector element at index '1'
4603// :133:27: error: use of undefined value here causes illegal behavior
4604// :133:27: note: when computing vector element at index '0'
4605// :133:27: error: use of undefined value here causes illegal behavior
4606// :133:27: note: when computing vector element at index '0'
4607// :133:27: error: use of undefined value here causes illegal behavior
4608// :133:27: note: when computing vector element at index '0'
4609// :133:27: error: use of undefined value here causes illegal behavior
4610// :133:27: error: use of undefined value here causes illegal behavior
4611// :133:27: note: when computing vector element at index '0'
4612// :133:27: error: use of undefined value here causes illegal behavior
4613// :133:27: note: when computing vector element at index '0'
4614// :133:27: error: use of undefined value here causes illegal behavior
4615// :133:27: note: when computing vector element at index '0'
4616// :133:27: error: use of undefined value here causes illegal behavior
4617// :133:27: note: when computing vector element at index '1'
4618// :133:27: error: use of undefined value here causes illegal behavior
4619// :133:27: note: when computing vector element at index '0'
4620// :133:27: error: use of undefined value here causes illegal behavior
4621// :133:27: note: when computing vector element at index '0'
4622// :133:27: error: use of undefined value here causes illegal behavior
4623// :133:27: note: when computing vector element at index '0'
4624// :133:27: error: use of undefined value here causes illegal behavior
4625// :133:27: error: use of undefined value here causes illegal behavior
4626// :133:27: note: when computing vector element at index '0'
4627// :133:27: error: use of undefined value here causes illegal behavior
4628// :133:27: note: when computing vector element at index '0'
4629// :133:27: error: use of undefined value here causes illegal behavior
4630// :133:27: note: when computing vector element at index '0'
4631// :133:27: error: use of undefined value here causes illegal behavior
4632// :133:27: note: when computing vector element at index '1'
4633// :133:27: error: use of undefined value here causes illegal behavior
4634// :133:27: note: when computing vector element at index '0'
4635// :133:27: error: use of undefined value here causes illegal behavior
4636// :133:27: note: when computing vector element at index '0'
4637// :133:27: error: use of undefined value here causes illegal behavior
4638// :133:27: note: when computing vector element at index '0'
4639// :133:27: error: use of undefined value here causes illegal behavior
4640// :133:27: error: use of undefined value here causes illegal behavior
4641// :133:27: note: when computing vector element at index '0'
4642// :133:27: error: use of undefined value here causes illegal behavior
4643// :133:27: note: when computing vector element at index '0'
4644// :133:27: error: use of undefined value here causes illegal behavior
4645// :133:27: note: when computing vector element at index '0'
4646// :133:27: error: use of undefined value here causes illegal behavior
4647// :133:27: note: when computing vector element at index '1'
4648// :133:27: error: use of undefined value here causes illegal behavior
4649// :133:27: note: when computing vector element at index '0'
4650// :133:27: error: use of undefined value here causes illegal behavior
4651// :133:27: note: when computing vector element at index '0'
4652// :133:27: error: use of undefined value here causes illegal behavior
4653// :133:27: note: when computing vector element at index '0'
4654// :133:27: error: use of undefined value here causes illegal behavior
4655// :133:27: error: use of undefined value here causes illegal behavior
4656// :133:27: note: when computing vector element at index '0'
4657// :133:27: error: use of undefined value here causes illegal behavior
4658// :133:27: note: when computing vector element at index '0'
4659// :133:27: error: use of undefined value here causes illegal behavior
4660// :133:27: note: when computing vector element at index '0'
4661// :133:27: error: use of undefined value here causes illegal behavior
4662// :133:27: note: when computing vector element at index '1'
4663// :133:27: error: use of undefined value here causes illegal behavior
4664// :133:27: note: when computing vector element at index '0'
4665// :133:27: error: use of undefined value here causes illegal behavior
4666// :133:27: note: when computing vector element at index '0'
4667// :133:27: error: use of undefined value here causes illegal behavior
4668// :133:27: note: when computing vector element at index '0'
4669// :133:30: error: use of undefined value here causes illegal behavior
4670// :133:30: error: use of undefined value here causes illegal behavior
4671// :133:30: note: when computing vector element at index '0'
4672// :133:30: error: use of undefined value here causes illegal behavior
4673// :133:30: note: when computing vector element at index '0'
4674// :133:30: error: use of undefined value here causes illegal behavior
4675// :133:30: note: when computing vector element at index '1'
4676// :133:30: error: use of undefined value here causes illegal behavior
4677// :133:30: note: when computing vector element at index '0'
4678// :133:30: error: use of undefined value here causes illegal behavior
4679// :133:30: note: when computing vector element at index '0'
4680// :133:30: error: use of undefined value here causes illegal behavior
4681// :133:30: error: use of undefined value here causes illegal behavior
4682// :133:30: note: when computing vector element at index '0'
4683// :133:30: error: use of undefined value here causes illegal behavior
4684// :133:30: note: when computing vector element at index '0'
4685// :133:30: error: use of undefined value here causes illegal behavior
4686// :133:30: note: when computing vector element at index '1'
4687// :133:30: error: use of undefined value here causes illegal behavior
4688// :133:30: note: when computing vector element at index '0'
4689// :133:30: error: use of undefined value here causes illegal behavior
4690// :133:30: note: when computing vector element at index '0'
4691// :133:30: error: use of undefined value here causes illegal behavior
4692// :133:30: error: use of undefined value here causes illegal behavior
4693// :133:30: note: when computing vector element at index '0'
4694// :133:30: error: use of undefined value here causes illegal behavior
4695// :133:30: note: when computing vector element at index '0'
4696// :133:30: error: use of undefined value here causes illegal behavior
4697// :133:30: note: when computing vector element at index '1'
4698// :133:30: error: use of undefined value here causes illegal behavior
4699// :133:30: note: when computing vector element at index '0'
4700// :133:30: error: use of undefined value here causes illegal behavior
4701// :133:30: note: when computing vector element at index '0'
4702// :133:30: error: use of undefined value here causes illegal behavior
4703// :133:30: error: use of undefined value here causes illegal behavior
4704// :133:30: note: when computing vector element at index '0'
4705// :133:30: error: use of undefined value here causes illegal behavior
4706// :133:30: note: when computing vector element at index '0'
4707// :133:30: error: use of undefined value here causes illegal behavior
4708// :133:30: note: when computing vector element at index '1'
4709// :133:30: error: use of undefined value here causes illegal behavior
4710// :133:30: note: when computing vector element at index '0'
4711// :133:30: error: use of undefined value here causes illegal behavior
4712// :133:30: note: when computing vector element at index '0'
4713// :133:30: error: use of undefined value here causes illegal behavior
4714// :133:30: error: use of undefined value here causes illegal behavior
4715// :133:30: note: when computing vector element at index '0'
4716// :133:30: error: use of undefined value here causes illegal behavior
4717// :133:30: note: when computing vector element at index '0'
4718// :133:30: error: use of undefined value here causes illegal behavior
4719// :133:30: note: when computing vector element at index '1'
4720// :133:30: error: use of undefined value here causes illegal behavior
4721// :133:30: note: when computing vector element at index '0'
4722// :133:30: error: use of undefined value here causes illegal behavior
4723// :133:30: note: when computing vector element at index '0'
4724// :133:30: error: use of undefined value here causes illegal behavior
4725// :133:30: error: use of undefined value here causes illegal behavior
4726// :133:30: note: when computing vector element at index '0'
4727// :133:30: error: use of undefined value here causes illegal behavior
4728// :133:30: note: when computing vector element at index '0'
4729// :133:30: error: use of undefined value here causes illegal behavior
4730// :133:30: note: when computing vector element at index '1'
4731// :133:30: error: use of undefined value here causes illegal behavior
4732// :133:30: note: when computing vector element at index '0'
4733// :133:30: error: use of undefined value here causes illegal behavior
4734// :133:30: note: when computing vector element at index '0'
4735// :133:30: error: use of undefined value here causes illegal behavior
4736// :133:30: error: use of undefined value here causes illegal behavior
4737// :133:30: note: when computing vector element at index '0'
4738// :133:30: error: use of undefined value here causes illegal behavior
4739// :133:30: note: when computing vector element at index '0'
4740// :133:30: error: use of undefined value here causes illegal behavior
4741// :133:30: note: when computing vector element at index '1'
4742// :133:30: error: use of undefined value here causes illegal behavior
4743// :133:30: note: when computing vector element at index '0'
4744// :133:30: error: use of undefined value here causes illegal behavior
4745// :133:30: note: when computing vector element at index '0'
4746// :133:30: error: use of undefined value here causes illegal behavior
4747// :133:30: error: use of undefined value here causes illegal behavior
4748// :133:30: note: when computing vector element at index '0'
4749// :133:30: error: use of undefined value here causes illegal behavior
4750// :133:30: note: when computing vector element at index '0'
4751// :133:30: error: use of undefined value here causes illegal behavior
4752// :133:30: note: when computing vector element at index '1'
4753// :133:30: error: use of undefined value here causes illegal behavior
4754// :133:30: note: when computing vector element at index '0'
4755// :133:30: error: use of undefined value here causes illegal behavior
4756// :133:30: note: when computing vector element at index '0'
4757// :133:30: error: use of undefined value here causes illegal behavior
4758// :133:30: error: use of undefined value here causes illegal behavior
4759// :133:30: note: when computing vector element at index '0'
4760// :133:30: error: use of undefined value here causes illegal behavior
4761// :133:30: note: when computing vector element at index '0'
4762// :133:30: error: use of undefined value here causes illegal behavior
4763// :133:30: note: when computing vector element at index '1'
4764// :133:30: error: use of undefined value here causes illegal behavior
4765// :133:30: note: when computing vector element at index '0'
4766// :133:30: error: use of undefined value here causes illegal behavior
4767// :133:30: note: when computing vector element at index '0'
4768// :133:30: error: use of undefined value here causes illegal behavior
4769// :133:30: error: use of undefined value here causes illegal behavior
4770// :133:30: note: when computing vector element at index '0'
4771// :133:30: error: use of undefined value here causes illegal behavior
4772// :133:30: note: when computing vector element at index '0'
4773// :133:30: error: use of undefined value here causes illegal behavior
4774// :133:30: note: when computing vector element at index '1'
4775// :133:30: error: use of undefined value here causes illegal behavior
4776// :133:30: note: when computing vector element at index '0'
4777// :133:30: error: use of undefined value here causes illegal behavior
4778// :133:30: note: when computing vector element at index '0'
4779// :133:30: error: use of undefined value here causes illegal behavior
4780// :133:30: error: use of undefined value here causes illegal behavior
4781// :133:30: note: when computing vector element at index '0'
4782// :133:30: error: use of undefined value here causes illegal behavior
4783// :133:30: note: when computing vector element at index '0'
4784// :133:30: error: use of undefined value here causes illegal behavior
4785// :133:30: note: when computing vector element at index '1'
4786// :133:30: error: use of undefined value here causes illegal behavior
4787// :133:30: note: when computing vector element at index '0'
4788// :133:30: error: use of undefined value here causes illegal behavior
4789// :133:30: note: when computing vector element at index '0'
4790// :137:17: error: use of undefined value here causes illegal behavior
4791// :137:17: error: use of undefined value here causes illegal behavior
4792// :137:17: note: when computing vector element at index '0'
4793// :137:17: error: use of undefined value here causes illegal behavior
4794// :137:17: note: when computing vector element at index '0'
4795// :137:17: error: use of undefined value here causes illegal behavior
4796// :137:17: note: when computing vector element at index '0'
4797// :137:17: error: use of undefined value here causes illegal behavior
4798// :137:17: note: when computing vector element at index '1'
4799// :137:17: error: use of undefined value here causes illegal behavior
4800// :137:17: note: when computing vector element at index '0'
4801// :137:17: error: use of undefined value here causes illegal behavior
4802// :137:17: note: when computing vector element at index '0'
4803// :137:17: error: use of undefined value here causes illegal behavior
4804// :137:17: note: when computing vector element at index '0'
4805// :137:17: error: use of undefined value here causes illegal behavior
4806// :137:17: error: use of undefined value here causes illegal behavior
4807// :137:17: note: when computing vector element at index '0'
4808// :137:17: error: use of undefined value here causes illegal behavior
4809// :137:17: note: when computing vector element at index '0'
4810// :137:17: error: use of undefined value here causes illegal behavior
4811// :137:17: note: when computing vector element at index '0'
4812// :137:17: error: use of undefined value here causes illegal behavior
4813// :137:17: note: when computing vector element at index '1'
4814// :137:17: error: use of undefined value here causes illegal behavior
4815// :137:17: note: when computing vector element at index '0'
4816// :137:17: error: use of undefined value here causes illegal behavior
4817// :137:17: note: when computing vector element at index '0'
4818// :137:17: error: use of undefined value here causes illegal behavior
4819// :137:17: note: when computing vector element at index '0'
4820// :137:17: error: use of undefined value here causes illegal behavior
4821// :137:17: error: use of undefined value here causes illegal behavior
4822// :137:17: note: when computing vector element at index '0'
4823// :137:17: error: use of undefined value here causes illegal behavior
4824// :137:17: note: when computing vector element at index '0'
4825// :137:17: error: use of undefined value here causes illegal behavior
4826// :137:17: note: when computing vector element at index '0'
4827// :137:17: error: use of undefined value here causes illegal behavior
4828// :137:17: note: when computing vector element at index '1'
4829// :137:17: error: use of undefined value here causes illegal behavior
4830// :137:17: note: when computing vector element at index '0'
4831// :137:17: error: use of undefined value here causes illegal behavior
4832// :137:17: note: when computing vector element at index '0'
4833// :137:17: error: use of undefined value here causes illegal behavior
4834// :137:17: note: when computing vector element at index '0'
4835// :137:17: error: use of undefined value here causes illegal behavior
4836// :137:17: error: use of undefined value here causes illegal behavior
4837// :137:17: note: when computing vector element at index '0'
4838// :137:17: error: use of undefined value here causes illegal behavior
4839// :137:17: note: when computing vector element at index '0'
4840// :137:17: error: use of undefined value here causes illegal behavior
4841// :137:17: note: when computing vector element at index '0'
4842// :137:17: error: use of undefined value here causes illegal behavior
4843// :137:17: note: when computing vector element at index '1'
4844// :137:17: error: use of undefined value here causes illegal behavior
4845// :137:17: note: when computing vector element at index '0'
4846// :137:17: error: use of undefined value here causes illegal behavior
4847// :137:17: note: when computing vector element at index '0'
4848// :137:17: error: use of undefined value here causes illegal behavior
4849// :137:17: note: when computing vector element at index '0'
4850// :137:17: error: use of undefined value here causes illegal behavior
4851// :137:17: error: use of undefined value here causes illegal behavior
4852// :137:17: note: when computing vector element at index '0'
4853// :137:17: error: use of undefined value here causes illegal behavior
4854// :137:17: note: when computing vector element at index '0'
4855// :137:17: error: use of undefined value here causes illegal behavior
4856// :137:17: note: when computing vector element at index '0'
4857// :137:17: error: use of undefined value here causes illegal behavior
4858// :137:17: note: when computing vector element at index '1'
4859// :137:17: error: use of undefined value here causes illegal behavior
4860// :137:17: note: when computing vector element at index '0'
4861// :137:17: error: use of undefined value here causes illegal behavior
4862// :137:17: note: when computing vector element at index '0'
4863// :137:17: error: use of undefined value here causes illegal behavior
4864// :137:17: note: when computing vector element at index '0'
4865// :137:17: error: use of undefined value here causes illegal behavior
4866// :137:17: error: use of undefined value here causes illegal behavior
4867// :137:17: note: when computing vector element at index '0'
4868// :137:17: error: use of undefined value here causes illegal behavior
4869// :137:17: note: when computing vector element at index '0'
4870// :137:17: error: use of undefined value here causes illegal behavior
4871// :137:17: note: when computing vector element at index '0'
4872// :137:17: error: use of undefined value here causes illegal behavior
4873// :137:17: note: when computing vector element at index '1'
4874// :137:17: error: use of undefined value here causes illegal behavior
4875// :137:17: note: when computing vector element at index '0'
4876// :137:17: error: use of undefined value here causes illegal behavior
4877// :137:17: note: when computing vector element at index '0'
4878// :137:17: error: use of undefined value here causes illegal behavior
4879// :137:17: note: when computing vector element at index '0'
4880// :137:17: error: use of undefined value here causes illegal behavior
4881// :137:17: error: use of undefined value here causes illegal behavior
4882// :137:17: note: when computing vector element at index '0'
4883// :137:17: error: use of undefined value here causes illegal behavior
4884// :137:17: note: when computing vector element at index '0'
4885// :137:17: error: use of undefined value here causes illegal behavior
4886// :137:17: note: when computing vector element at index '0'
4887// :137:17: error: use of undefined value here causes illegal behavior
4888// :137:17: note: when computing vector element at index '1'
4889// :137:17: error: use of undefined value here causes illegal behavior
4890// :137:17: note: when computing vector element at index '0'
4891// :137:17: error: use of undefined value here causes illegal behavior
4892// :137:17: note: when computing vector element at index '0'
4893// :137:17: error: use of undefined value here causes illegal behavior
4894// :137:17: note: when computing vector element at index '0'
4895// :137:17: error: use of undefined value here causes illegal behavior
4896// :137:17: error: use of undefined value here causes illegal behavior
4897// :137:17: note: when computing vector element at index '0'
4898// :137:17: error: use of undefined value here causes illegal behavior
4899// :137:17: note: when computing vector element at index '0'
4900// :137:17: error: use of undefined value here causes illegal behavior
4901// :137:17: note: when computing vector element at index '0'
4902// :137:17: error: use of undefined value here causes illegal behavior
4903// :137:17: note: when computing vector element at index '1'
4904// :137:17: error: use of undefined value here causes illegal behavior
4905// :137:17: note: when computing vector element at index '0'
4906// :137:17: error: use of undefined value here causes illegal behavior
4907// :137:17: note: when computing vector element at index '0'
4908// :137:17: error: use of undefined value here causes illegal behavior
4909// :137:17: note: when computing vector element at index '0'
4910// :137:17: error: use of undefined value here causes illegal behavior
4911// :137:17: error: use of undefined value here causes illegal behavior
4912// :137:17: note: when computing vector element at index '0'
4913// :137:17: error: use of undefined value here causes illegal behavior
4914// :137:17: note: when computing vector element at index '0'
4915// :137:17: error: use of undefined value here causes illegal behavior
4916// :137:17: note: when computing vector element at index '0'
4917// :137:17: error: use of undefined value here causes illegal behavior
4918// :137:17: note: when computing vector element at index '1'
4919// :137:17: error: use of undefined value here causes illegal behavior
4920// :137:17: note: when computing vector element at index '0'
4921// :137:17: error: use of undefined value here causes illegal behavior
4922// :137:17: note: when computing vector element at index '0'
4923// :137:17: error: use of undefined value here causes illegal behavior
4924// :137:17: note: when computing vector element at index '0'
4925// :137:17: error: use of undefined value here causes illegal behavior
4926// :137:17: error: use of undefined value here causes illegal behavior
4927// :137:17: note: when computing vector element at index '0'
4928// :137:17: error: use of undefined value here causes illegal behavior
4929// :137:17: note: when computing vector element at index '0'
4930// :137:17: error: use of undefined value here causes illegal behavior
4931// :137:17: note: when computing vector element at index '0'
4932// :137:17: error: use of undefined value here causes illegal behavior
4933// :137:17: note: when computing vector element at index '1'
4934// :137:17: error: use of undefined value here causes illegal behavior
4935// :137:17: note: when computing vector element at index '0'
4936// :137:17: error: use of undefined value here causes illegal behavior
4937// :137:17: note: when computing vector element at index '0'
4938// :137:17: error: use of undefined value here causes illegal behavior
4939// :137:17: note: when computing vector element at index '0'
4940// :137:17: error: use of undefined value here causes illegal behavior
4941// :137:17: error: use of undefined value here causes illegal behavior
4942// :137:17: note: when computing vector element at index '0'
4943// :137:17: error: use of undefined value here causes illegal behavior
4944// :137:17: note: when computing vector element at index '0'
4945// :137:17: error: use of undefined value here causes illegal behavior
4946// :137:17: note: when computing vector element at index '0'
4947// :137:17: error: use of undefined value here causes illegal behavior
4948// :137:17: note: when computing vector element at index '1'
4949// :137:17: error: use of undefined value here causes illegal behavior
4950// :137:17: note: when computing vector element at index '0'
4951// :137:17: error: use of undefined value here causes illegal behavior
4952// :137:17: note: when computing vector element at index '0'
4953// :137:17: error: use of undefined value here causes illegal behavior
4954// :137:17: note: when computing vector element at index '0'
4955// :137:21: error: use of undefined value here causes illegal behavior
4956// :137:21: error: use of undefined value here causes illegal behavior
4957// :137:21: note: when computing vector element at index '0'
4958// :137:21: error: use of undefined value here causes illegal behavior
4959// :137:21: note: when computing vector element at index '0'
4960// :137:21: error: use of undefined value here causes illegal behavior
4961// :137:21: note: when computing vector element at index '1'
4962// :137:21: error: use of undefined value here causes illegal behavior
4963// :137:21: note: when computing vector element at index '0'
4964// :137:21: error: use of undefined value here causes illegal behavior
4965// :137:21: note: when computing vector element at index '0'
4966// :137:21: error: use of undefined value here causes illegal behavior
4967// :137:21: error: use of undefined value here causes illegal behavior
4968// :137:21: note: when computing vector element at index '0'
4969// :137:21: error: use of undefined value here causes illegal behavior
4970// :137:21: note: when computing vector element at index '0'
4971// :137:21: error: use of undefined value here causes illegal behavior
4972// :137:21: note: when computing vector element at index '1'
4973// :137:21: error: use of undefined value here causes illegal behavior
4974// :137:21: note: when computing vector element at index '0'
4975// :137:21: error: use of undefined value here causes illegal behavior
4976// :137:21: note: when computing vector element at index '0'
4977// :137:21: error: use of undefined value here causes illegal behavior
4978// :137:21: error: use of undefined value here causes illegal behavior
4979// :137:21: note: when computing vector element at index '0'
4980// :137:21: error: use of undefined value here causes illegal behavior
4981// :137:21: note: when computing vector element at index '0'
4982// :137:21: error: use of undefined value here causes illegal behavior
4983// :137:21: note: when computing vector element at index '1'
4984// :137:21: error: use of undefined value here causes illegal behavior
4985// :137:21: note: when computing vector element at index '0'
4986// :137:21: error: use of undefined value here causes illegal behavior
4987// :137:21: note: when computing vector element at index '0'
4988// :137:21: error: use of undefined value here causes illegal behavior
4989// :137:21: error: use of undefined value here causes illegal behavior
4990// :137:21: note: when computing vector element at index '0'
4991// :137:21: error: use of undefined value here causes illegal behavior
4992// :137:21: note: when computing vector element at index '0'
4993// :137:21: error: use of undefined value here causes illegal behavior
4994// :137:21: note: when computing vector element at index '1'
4995// :137:21: error: use of undefined value here causes illegal behavior
4996// :137:21: note: when computing vector element at index '0'
4997// :137:21: error: use of undefined value here causes illegal behavior
4998// :137:21: note: when computing vector element at index '0'
4999// :137:21: error: use of undefined value here causes illegal behavior
5000// :137:21: error: use of undefined value here causes illegal behavior
5001// :137:21: note: when computing vector element at index '0'
5002// :137:21: error: use of undefined value here causes illegal behavior
5003// :137:21: note: when computing vector element at index '0'
5004// :137:21: error: use of undefined value here causes illegal behavior
5005// :137:21: note: when computing vector element at index '1'
5006// :137:21: error: use of undefined value here causes illegal behavior
5007// :137:21: note: when computing vector element at index '0'
5008// :137:21: error: use of undefined value here causes illegal behavior
5009// :137:21: note: when computing vector element at index '0'
5010// :137:21: error: use of undefined value here causes illegal behavior
5011// :137:21: error: use of undefined value here causes illegal behavior
5012// :137:21: note: when computing vector element at index '0'
5013// :137:21: error: use of undefined value here causes illegal behavior
5014// :137:21: note: when computing vector element at index '0'
5015// :137:21: error: use of undefined value here causes illegal behavior
5016// :137:21: note: when computing vector element at index '1'
5017// :137:21: error: use of undefined value here causes illegal behavior
5018// :137:21: note: when computing vector element at index '0'
5019// :137:21: error: use of undefined value here causes illegal behavior
5020// :137:21: note: when computing vector element at index '0'
5021// :137:21: error: use of undefined value here causes illegal behavior
5022// :137:21: error: use of undefined value here causes illegal behavior
5023// :137:21: note: when computing vector element at index '0'
5024// :137:21: error: use of undefined value here causes illegal behavior
5025// :137:21: note: when computing vector element at index '0'
5026// :137:21: error: use of undefined value here causes illegal behavior
5027// :137:21: note: when computing vector element at index '1'
5028// :137:21: error: use of undefined value here causes illegal behavior
5029// :137:21: note: when computing vector element at index '0'
5030// :137:21: error: use of undefined value here causes illegal behavior
5031// :137:21: note: when computing vector element at index '0'
5032// :137:21: error: use of undefined value here causes illegal behavior
5033// :137:21: error: use of undefined value here causes illegal behavior
5034// :137:21: note: when computing vector element at index '0'
5035// :137:21: error: use of undefined value here causes illegal behavior
5036// :137:21: note: when computing vector element at index '0'
5037// :137:21: error: use of undefined value here causes illegal behavior
5038// :137:21: note: when computing vector element at index '1'
5039// :137:21: error: use of undefined value here causes illegal behavior
5040// :137:21: note: when computing vector element at index '0'
5041// :137:21: error: use of undefined value here causes illegal behavior
5042// :137:21: note: when computing vector element at index '0'
5043// :137:21: error: use of undefined value here causes illegal behavior
5044// :137:21: error: use of undefined value here causes illegal behavior
5045// :137:21: note: when computing vector element at index '0'
5046// :137:21: error: use of undefined value here causes illegal behavior
5047// :137:21: note: when computing vector element at index '0'
5048// :137:21: error: use of undefined value here causes illegal behavior
5049// :137:21: note: when computing vector element at index '1'
5050// :137:21: error: use of undefined value here causes illegal behavior
5051// :137:21: note: when computing vector element at index '0'
5052// :137:21: error: use of undefined value here causes illegal behavior
5053// :137:21: note: when computing vector element at index '0'
5054// :137:21: error: use of undefined value here causes illegal behavior
5055// :137:21: error: use of undefined value here causes illegal behavior
5056// :137:21: note: when computing vector element at index '0'
5057// :137:21: error: use of undefined value here causes illegal behavior
5058// :137:21: note: when computing vector element at index '0'
5059// :137:21: error: use of undefined value here causes illegal behavior
5060// :137:21: note: when computing vector element at index '1'
5061// :137:21: error: use of undefined value here causes illegal behavior
5062// :137:21: note: when computing vector element at index '0'
5063// :137:21: error: use of undefined value here causes illegal behavior
5064// :137:21: note: when computing vector element at index '0'
5065// :137:21: error: use of undefined value here causes illegal behavior
5066// :137:21: error: use of undefined value here causes illegal behavior
5067// :137:21: note: when computing vector element at index '0'
5068// :137:21: error: use of undefined value here causes illegal behavior
5069// :137:21: note: when computing vector element at index '0'
5070// :137:21: error: use of undefined value here causes illegal behavior
5071// :137:21: note: when computing vector element at index '1'
5072// :137:21: error: use of undefined value here causes illegal behavior
5073// :137:21: note: when computing vector element at index '0'
5074// :137:21: error: use of undefined value here causes illegal behavior
5075// :137:21: note: when computing vector element at index '0'
5076// :141:22: error: use of undefined value here causes illegal behavior
5077// :141:22: error: use of undefined value here causes illegal behavior
5078// :141:22: note: when computing vector element at index '0'
5079// :141:22: error: use of undefined value here causes illegal behavior
5080// :141:22: note: when computing vector element at index '0'
5081// :141:22: error: use of undefined value here causes illegal behavior
5082// :141:22: note: when computing vector element at index '0'
5083// :141:22: error: use of undefined value here causes illegal behavior
5084// :141:22: note: when computing vector element at index '1'
5085// :141:22: error: use of undefined value here causes illegal behavior
5086// :141:22: note: when computing vector element at index '0'
5087// :141:22: error: use of undefined value here causes illegal behavior
5088// :141:22: note: when computing vector element at index '0'
5089// :141:22: error: use of undefined value here causes illegal behavior
5090// :141:22: note: when computing vector element at index '0'
5091// :141:22: error: use of undefined value here causes illegal behavior
5092// :141:22: error: use of undefined value here causes illegal behavior
5093// :141:22: note: when computing vector element at index '0'
5094// :141:22: error: use of undefined value here causes illegal behavior
5095// :141:22: note: when computing vector element at index '0'
5096// :141:22: error: use of undefined value here causes illegal behavior
5097// :141:22: note: when computing vector element at index '0'
5098// :141:22: error: use of undefined value here causes illegal behavior
5099// :141:22: note: when computing vector element at index '1'
5100// :141:22: error: use of undefined value here causes illegal behavior
5101// :141:22: note: when computing vector element at index '0'
5102// :141:22: error: use of undefined value here causes illegal behavior
5103// :141:22: note: when computing vector element at index '0'
5104// :141:22: error: use of undefined value here causes illegal behavior
5105// :141:22: note: when computing vector element at index '0'
5106// :141:22: error: use of undefined value here causes illegal behavior
5107// :141:22: error: use of undefined value here causes illegal behavior
5108// :141:22: note: when computing vector element at index '0'
5109// :141:22: error: use of undefined value here causes illegal behavior
5110// :141:22: note: when computing vector element at index '0'
5111// :141:22: error: use of undefined value here causes illegal behavior
5112// :141:22: note: when computing vector element at index '0'
5113// :141:22: error: use of undefined value here causes illegal behavior
5114// :141:22: note: when computing vector element at index '1'
5115// :141:22: error: use of undefined value here causes illegal behavior
5116// :141:22: note: when computing vector element at index '0'
5117// :141:22: error: use of undefined value here causes illegal behavior
5118// :141:22: note: when computing vector element at index '0'
5119// :141:22: error: use of undefined value here causes illegal behavior
5120// :141:22: note: when computing vector element at index '0'
5121// :141:22: error: use of undefined value here causes illegal behavior
5122// :141:22: error: use of undefined value here causes illegal behavior
5123// :141:22: note: when computing vector element at index '0'
5124// :141:22: error: use of undefined value here causes illegal behavior
5125// :141:22: note: when computing vector element at index '0'
5126// :141:22: error: use of undefined value here causes illegal behavior
5127// :141:22: note: when computing vector element at index '0'
5128// :141:22: error: use of undefined value here causes illegal behavior
5129// :141:22: note: when computing vector element at index '1'
5130// :141:22: error: use of undefined value here causes illegal behavior
5131// :141:22: note: when computing vector element at index '0'
5132// :141:22: error: use of undefined value here causes illegal behavior
5133// :141:22: note: when computing vector element at index '0'
5134// :141:22: error: use of undefined value here causes illegal behavior
5135// :141:22: note: when computing vector element at index '0'
5136// :141:22: error: use of undefined value here causes illegal behavior
5137// :141:22: error: use of undefined value here causes illegal behavior
5138// :141:22: note: when computing vector element at index '0'
5139// :141:22: error: use of undefined value here causes illegal behavior
5140// :141:22: note: when computing vector element at index '0'
5141// :141:22: error: use of undefined value here causes illegal behavior
5142// :141:22: note: when computing vector element at index '0'
5143// :141:22: error: use of undefined value here causes illegal behavior
5144// :141:22: note: when computing vector element at index '1'
5145// :141:22: error: use of undefined value here causes illegal behavior
5146// :141:22: note: when computing vector element at index '0'
5147// :141:22: error: use of undefined value here causes illegal behavior
5148// :141:22: note: when computing vector element at index '0'
5149// :141:22: error: use of undefined value here causes illegal behavior
5150// :141:22: note: when computing vector element at index '0'
5151// :141:22: error: use of undefined value here causes illegal behavior
5152// :141:22: error: use of undefined value here causes illegal behavior
5153// :141:22: note: when computing vector element at index '0'
5154// :141:22: error: use of undefined value here causes illegal behavior
5155// :141:22: note: when computing vector element at index '0'
5156// :141:22: error: use of undefined value here causes illegal behavior
5157// :141:22: note: when computing vector element at index '0'
5158// :141:22: error: use of undefined value here causes illegal behavior
5159// :141:22: note: when computing vector element at index '1'
5160// :141:22: error: use of undefined value here causes illegal behavior
5161// :141:22: note: when computing vector element at index '0'
5162// :141:22: error: use of undefined value here causes illegal behavior
5163// :141:22: note: when computing vector element at index '0'
5164// :141:22: error: use of undefined value here causes illegal behavior
5165// :141:22: note: when computing vector element at index '0'
5166// :141:22: error: use of undefined value here causes illegal behavior
5167// :141:22: error: use of undefined value here causes illegal behavior
5168// :141:22: note: when computing vector element at index '0'
5169// :141:22: error: use of undefined value here causes illegal behavior
5170// :141:22: note: when computing vector element at index '0'
5171// :141:22: error: use of undefined value here causes illegal behavior
5172// :141:22: note: when computing vector element at index '0'
5173// :141:22: error: use of undefined value here causes illegal behavior
5174// :141:22: note: when computing vector element at index '1'
5175// :141:22: error: use of undefined value here causes illegal behavior
5176// :141:22: note: when computing vector element at index '0'
5177// :141:22: error: use of undefined value here causes illegal behavior
5178// :141:22: note: when computing vector element at index '0'
5179// :141:22: error: use of undefined value here causes illegal behavior
5180// :141:22: note: when computing vector element at index '0'
5181// :141:22: error: use of undefined value here causes illegal behavior
5182// :141:22: error: use of undefined value here causes illegal behavior
5183// :141:22: note: when computing vector element at index '0'
5184// :141:22: error: use of undefined value here causes illegal behavior
5185// :141:22: note: when computing vector element at index '0'
5186// :141:22: error: use of undefined value here causes illegal behavior
5187// :141:22: note: when computing vector element at index '0'
5188// :141:22: error: use of undefined value here causes illegal behavior
5189// :141:22: note: when computing vector element at index '1'
5190// :141:22: error: use of undefined value here causes illegal behavior
5191// :141:22: note: when computing vector element at index '0'
5192// :141:22: error: use of undefined value here causes illegal behavior
5193// :141:22: note: when computing vector element at index '0'
5194// :141:22: error: use of undefined value here causes illegal behavior
5195// :141:22: note: when computing vector element at index '0'
5196// :141:22: error: use of undefined value here causes illegal behavior
5197// :141:22: error: use of undefined value here causes illegal behavior
5198// :141:22: note: when computing vector element at index '0'
5199// :141:22: error: use of undefined value here causes illegal behavior
5200// :141:22: note: when computing vector element at index '0'
5201// :141:22: error: use of undefined value here causes illegal behavior
5202// :141:22: note: when computing vector element at index '0'
5203// :141:22: error: use of undefined value here causes illegal behavior
5204// :141:22: note: when computing vector element at index '1'
5205// :141:22: error: use of undefined value here causes illegal behavior
5206// :141:22: note: when computing vector element at index '0'
5207// :141:22: error: use of undefined value here causes illegal behavior
5208// :141:22: note: when computing vector element at index '0'
5209// :141:22: error: use of undefined value here causes illegal behavior
5210// :141:22: note: when computing vector element at index '0'
5211// :141:22: error: use of undefined value here causes illegal behavior
5212// :141:22: error: use of undefined value here causes illegal behavior
5213// :141:22: note: when computing vector element at index '0'
5214// :141:22: error: use of undefined value here causes illegal behavior
5215// :141:22: note: when computing vector element at index '0'
5216// :141:22: error: use of undefined value here causes illegal behavior
5217// :141:22: note: when computing vector element at index '0'
5218// :141:22: error: use of undefined value here causes illegal behavior
5219// :141:22: note: when computing vector element at index '1'
5220// :141:22: error: use of undefined value here causes illegal behavior
5221// :141:22: note: when computing vector element at index '0'
5222// :141:22: error: use of undefined value here causes illegal behavior
5223// :141:22: note: when computing vector element at index '0'
5224// :141:22: error: use of undefined value here causes illegal behavior
5225// :141:22: note: when computing vector element at index '0'
5226// :141:22: error: use of undefined value here causes illegal behavior
5227// :141:22: error: use of undefined value here causes illegal behavior
5228// :141:22: note: when computing vector element at index '0'
5229// :141:22: error: use of undefined value here causes illegal behavior
5230// :141:22: note: when computing vector element at index '0'
5231// :141:22: error: use of undefined value here causes illegal behavior
5232// :141:22: note: when computing vector element at index '0'
5233// :141:22: error: use of undefined value here causes illegal behavior
5234// :141:22: note: when computing vector element at index '1'
5235// :141:22: error: use of undefined value here causes illegal behavior
5236// :141:22: note: when computing vector element at index '0'
5237// :141:22: error: use of undefined value here causes illegal behavior
5238// :141:22: note: when computing vector element at index '0'
5239// :141:22: error: use of undefined value here causes illegal behavior
5240// :141:22: note: when computing vector element at index '0'
5241// :141:25: error: use of undefined value here causes illegal behavior
5242// :141:25: error: use of undefined value here causes illegal behavior
5243// :141:25: note: when computing vector element at index '0'
5244// :141:25: error: use of undefined value here causes illegal behavior
5245// :141:25: note: when computing vector element at index '0'
5246// :141:25: error: use of undefined value here causes illegal behavior
5247// :141:25: note: when computing vector element at index '1'
5248// :141:25: error: use of undefined value here causes illegal behavior
5249// :141:25: note: when computing vector element at index '0'
5250// :141:25: error: use of undefined value here causes illegal behavior
5251// :141:25: note: when computing vector element at index '0'
5252// :141:25: error: use of undefined value here causes illegal behavior
5253// :141:25: error: use of undefined value here causes illegal behavior
5254// :141:25: note: when computing vector element at index '0'
5255// :141:25: error: use of undefined value here causes illegal behavior
5256// :141:25: note: when computing vector element at index '0'
5257// :141:25: error: use of undefined value here causes illegal behavior
5258// :141:25: note: when computing vector element at index '1'
5259// :141:25: error: use of undefined value here causes illegal behavior
5260// :141:25: note: when computing vector element at index '0'
5261// :141:25: error: use of undefined value here causes illegal behavior
5262// :141:25: note: when computing vector element at index '0'
5263// :141:25: error: use of undefined value here causes illegal behavior
5264// :141:25: error: use of undefined value here causes illegal behavior
5265// :141:25: note: when computing vector element at index '0'
5266// :141:25: error: use of undefined value here causes illegal behavior
5267// :141:25: note: when computing vector element at index '0'
5268// :141:25: error: use of undefined value here causes illegal behavior
5269// :141:25: note: when computing vector element at index '1'
5270// :141:25: error: use of undefined value here causes illegal behavior
5271// :141:25: note: when computing vector element at index '0'
5272// :141:25: error: use of undefined value here causes illegal behavior
5273// :141:25: note: when computing vector element at index '0'
5274// :141:25: error: use of undefined value here causes illegal behavior
5275// :141:25: error: use of undefined value here causes illegal behavior
5276// :141:25: note: when computing vector element at index '0'
5277// :141:25: error: use of undefined value here causes illegal behavior
5278// :141:25: note: when computing vector element at index '0'
5279// :141:25: error: use of undefined value here causes illegal behavior
5280// :141:25: note: when computing vector element at index '1'
5281// :141:25: error: use of undefined value here causes illegal behavior
5282// :141:25: note: when computing vector element at index '0'
5283// :141:25: error: use of undefined value here causes illegal behavior
5284// :141:25: note: when computing vector element at index '0'
5285// :141:25: error: use of undefined value here causes illegal behavior
5286// :141:25: error: use of undefined value here causes illegal behavior
5287// :141:25: note: when computing vector element at index '0'
5288// :141:25: error: use of undefined value here causes illegal behavior
5289// :141:25: note: when computing vector element at index '0'
5290// :141:25: error: use of undefined value here causes illegal behavior
5291// :141:25: note: when computing vector element at index '1'
5292// :141:25: error: use of undefined value here causes illegal behavior
5293// :141:25: note: when computing vector element at index '0'
5294// :141:25: error: use of undefined value here causes illegal behavior
5295// :141:25: note: when computing vector element at index '0'
5296// :141:25: error: use of undefined value here causes illegal behavior
5297// :141:25: error: use of undefined value here causes illegal behavior
5298// :141:25: note: when computing vector element at index '0'
5299// :141:25: error: use of undefined value here causes illegal behavior
5300// :141:25: note: when computing vector element at index '0'
5301// :141:25: error: use of undefined value here causes illegal behavior
5302// :141:25: note: when computing vector element at index '1'
5303// :141:25: error: use of undefined value here causes illegal behavior
5304// :141:25: note: when computing vector element at index '0'
5305// :141:25: error: use of undefined value here causes illegal behavior
5306// :141:25: note: when computing vector element at index '0'
5307// :141:25: error: use of undefined value here causes illegal behavior
5308// :141:25: error: use of undefined value here causes illegal behavior
5309// :141:25: note: when computing vector element at index '0'
5310// :141:25: error: use of undefined value here causes illegal behavior
5311// :141:25: note: when computing vector element at index '0'
5312// :141:25: error: use of undefined value here causes illegal behavior
5313// :141:25: note: when computing vector element at index '1'
5314// :141:25: error: use of undefined value here causes illegal behavior
5315// :141:25: note: when computing vector element at index '0'
5316// :141:25: error: use of undefined value here causes illegal behavior
5317// :141:25: note: when computing vector element at index '0'
5318// :141:25: error: use of undefined value here causes illegal behavior
5319// :141:25: error: use of undefined value here causes illegal behavior
5320// :141:25: note: when computing vector element at index '0'
5321// :141:25: error: use of undefined value here causes illegal behavior
5322// :141:25: note: when computing vector element at index '0'
5323// :141:25: error: use of undefined value here causes illegal behavior
5324// :141:25: note: when computing vector element at index '1'
5325// :141:25: error: use of undefined value here causes illegal behavior
5326// :141:25: note: when computing vector element at index '0'
5327// :141:25: error: use of undefined value here causes illegal behavior
5328// :141:25: note: when computing vector element at index '0'
5329// :141:25: error: use of undefined value here causes illegal behavior
5330// :141:25: error: use of undefined value here causes illegal behavior
5331// :141:25: note: when computing vector element at index '0'
5332// :141:25: error: use of undefined value here causes illegal behavior
5333// :141:25: note: when computing vector element at index '0'
5334// :141:25: error: use of undefined value here causes illegal behavior
5335// :141:25: note: when computing vector element at index '1'
5336// :141:25: error: use of undefined value here causes illegal behavior
5337// :141:25: note: when computing vector element at index '0'
5338// :141:25: error: use of undefined value here causes illegal behavior
5339// :141:25: note: when computing vector element at index '0'
5340// :141:25: error: use of undefined value here causes illegal behavior
5341// :141:25: error: use of undefined value here causes illegal behavior
5342// :141:25: note: when computing vector element at index '0'
5343// :141:25: error: use of undefined value here causes illegal behavior
5344// :141:25: note: when computing vector element at index '0'
5345// :141:25: error: use of undefined value here causes illegal behavior
5346// :141:25: note: when computing vector element at index '1'
5347// :141:25: error: use of undefined value here causes illegal behavior
5348// :141:25: note: when computing vector element at index '0'
5349// :141:25: error: use of undefined value here causes illegal behavior
5350// :141:25: note: when computing vector element at index '0'
5351// :141:25: error: use of undefined value here causes illegal behavior
5352// :141:25: error: use of undefined value here causes illegal behavior
5353// :141:25: note: when computing vector element at index '0'
5354// :141:25: error: use of undefined value here causes illegal behavior
5355// :141:25: note: when computing vector element at index '0'
5356// :141:25: error: use of undefined value here causes illegal behavior
5357// :141:25: note: when computing vector element at index '1'
5358// :141:25: error: use of undefined value here causes illegal behavior
5359// :141:25: note: when computing vector element at index '0'
5360// :141:25: error: use of undefined value here causes illegal behavior
5361// :141:25: note: when computing vector element at index '0'
5362// :145:22: error: use of undefined value here causes illegal behavior
5363// :145:22: error: use of undefined value here causes illegal behavior
5364// :145:22: note: when computing vector element at index '0'
5365// :145:22: error: use of undefined value here causes illegal behavior
5366// :145:22: note: when computing vector element at index '0'
5367// :145:22: error: use of undefined value here causes illegal behavior
5368// :145:22: note: when computing vector element at index '0'
5369// :145:22: error: use of undefined value here causes illegal behavior
5370// :145:22: note: when computing vector element at index '1'
5371// :145:22: error: use of undefined value here causes illegal behavior
5372// :145:22: note: when computing vector element at index '0'
5373// :145:22: error: use of undefined value here causes illegal behavior
5374// :145:22: note: when computing vector element at index '0'
5375// :145:22: error: use of undefined value here causes illegal behavior
5376// :145:22: note: when computing vector element at index '0'
5377// :145:22: error: use of undefined value here causes illegal behavior
5378// :145:22: error: use of undefined value here causes illegal behavior
5379// :145:22: note: when computing vector element at index '0'
5380// :145:22: error: use of undefined value here causes illegal behavior
5381// :145:22: note: when computing vector element at index '0'
5382// :145:22: error: use of undefined value here causes illegal behavior
5383// :145:22: note: when computing vector element at index '0'
5384// :145:22: error: use of undefined value here causes illegal behavior
5385// :145:22: note: when computing vector element at index '1'
5386// :145:22: error: use of undefined value here causes illegal behavior
5387// :145:22: note: when computing vector element at index '0'
5388// :145:22: error: use of undefined value here causes illegal behavior
5389// :145:22: note: when computing vector element at index '0'
5390// :145:22: error: use of undefined value here causes illegal behavior
5391// :145:22: note: when computing vector element at index '0'
5392// :145:22: error: use of undefined value here causes illegal behavior
5393// :145:22: error: use of undefined value here causes illegal behavior
5394// :145:22: note: when computing vector element at index '0'
5395// :145:22: error: use of undefined value here causes illegal behavior
5396// :145:22: note: when computing vector element at index '0'
5397// :145:22: error: use of undefined value here causes illegal behavior
5398// :145:22: note: when computing vector element at index '0'
5399// :145:22: error: use of undefined value here causes illegal behavior
5400// :145:22: note: when computing vector element at index '1'
5401// :145:22: error: use of undefined value here causes illegal behavior
5402// :145:22: note: when computing vector element at index '0'
5403// :145:22: error: use of undefined value here causes illegal behavior
5404// :145:22: note: when computing vector element at index '0'
5405// :145:22: error: use of undefined value here causes illegal behavior
5406// :145:22: note: when computing vector element at index '0'
5407// :145:22: error: use of undefined value here causes illegal behavior
5408// :145:22: error: use of undefined value here causes illegal behavior
5409// :145:22: note: when computing vector element at index '0'
5410// :145:22: error: use of undefined value here causes illegal behavior
5411// :145:22: note: when computing vector element at index '0'
5412// :145:22: error: use of undefined value here causes illegal behavior
5413// :145:22: note: when computing vector element at index '0'
5414// :145:22: error: use of undefined value here causes illegal behavior
5415// :145:22: note: when computing vector element at index '1'
5416// :145:22: error: use of undefined value here causes illegal behavior
5417// :145:22: note: when computing vector element at index '0'
5418// :145:22: error: use of undefined value here causes illegal behavior
5419// :145:22: note: when computing vector element at index '0'
5420// :145:22: error: use of undefined value here causes illegal behavior
5421// :145:22: note: when computing vector element at index '0'
5422// :145:22: error: use of undefined value here causes illegal behavior
5423// :145:22: error: use of undefined value here causes illegal behavior
5424// :145:22: note: when computing vector element at index '0'
5425// :145:22: error: use of undefined value here causes illegal behavior
5426// :145:22: note: when computing vector element at index '0'
5427// :145:22: error: use of undefined value here causes illegal behavior
5428// :145:22: note: when computing vector element at index '0'
5429// :145:22: error: use of undefined value here causes illegal behavior
5430// :145:22: note: when computing vector element at index '1'
5431// :145:22: error: use of undefined value here causes illegal behavior
5432// :145:22: note: when computing vector element at index '0'
5433// :145:22: error: use of undefined value here causes illegal behavior
5434// :145:22: note: when computing vector element at index '0'
5435// :145:22: error: use of undefined value here causes illegal behavior
5436// :145:22: note: when computing vector element at index '0'
5437// :145:22: error: use of undefined value here causes illegal behavior
5438// :145:22: error: use of undefined value here causes illegal behavior
5439// :145:22: note: when computing vector element at index '0'
5440// :145:22: error: use of undefined value here causes illegal behavior
5441// :145:22: note: when computing vector element at index '0'
5442// :145:22: error: use of undefined value here causes illegal behavior
5443// :145:22: note: when computing vector element at index '0'
5444// :145:22: error: use of undefined value here causes illegal behavior
5445// :145:22: note: when computing vector element at index '1'
5446// :145:22: error: use of undefined value here causes illegal behavior
5447// :145:22: note: when computing vector element at index '0'
5448// :145:22: error: use of undefined value here causes illegal behavior
5449// :145:22: note: when computing vector element at index '0'
5450// :145:22: error: use of undefined value here causes illegal behavior
5451// :145:22: note: when computing vector element at index '0'
5452// :145:22: error: use of undefined value here causes illegal behavior
5453// :145:22: error: use of undefined value here causes illegal behavior
5454// :145:22: note: when computing vector element at index '0'
5455// :145:22: error: use of undefined value here causes illegal behavior
5456// :145:22: note: when computing vector element at index '0'
5457// :145:22: error: use of undefined value here causes illegal behavior
5458// :145:22: note: when computing vector element at index '0'
5459// :145:22: error: use of undefined value here causes illegal behavior
5460// :145:22: note: when computing vector element at index '1'
5461// :145:22: error: use of undefined value here causes illegal behavior
5462// :145:22: note: when computing vector element at index '0'
5463// :145:22: error: use of undefined value here causes illegal behavior
5464// :145:22: note: when computing vector element at index '0'
5465// :145:22: error: use of undefined value here causes illegal behavior
5466// :145:22: note: when computing vector element at index '0'
5467// :145:22: error: use of undefined value here causes illegal behavior
5468// :145:22: error: use of undefined value here causes illegal behavior
5469// :145:22: note: when computing vector element at index '0'
5470// :145:22: error: use of undefined value here causes illegal behavior
5471// :145:22: note: when computing vector element at index '0'
5472// :145:22: error: use of undefined value here causes illegal behavior
5473// :145:22: note: when computing vector element at index '0'
5474// :145:22: error: use of undefined value here causes illegal behavior
5475// :145:22: note: when computing vector element at index '1'
5476// :145:22: error: use of undefined value here causes illegal behavior
5477// :145:22: note: when computing vector element at index '0'
5478// :145:22: error: use of undefined value here causes illegal behavior
5479// :145:22: note: when computing vector element at index '0'
5480// :145:22: error: use of undefined value here causes illegal behavior
5481// :145:22: note: when computing vector element at index '0'
5482// :145:22: error: use of undefined value here causes illegal behavior
5483// :145:22: error: use of undefined value here causes illegal behavior
5484// :145:22: note: when computing vector element at index '0'
5485// :145:22: error: use of undefined value here causes illegal behavior
5486// :145:22: note: when computing vector element at index '0'
5487// :145:22: error: use of undefined value here causes illegal behavior
5488// :145:22: note: when computing vector element at index '0'
5489// :145:22: error: use of undefined value here causes illegal behavior
5490// :145:22: note: when computing vector element at index '1'
5491// :145:22: error: use of undefined value here causes illegal behavior
5492// :145:22: note: when computing vector element at index '0'
5493// :145:22: error: use of undefined value here causes illegal behavior
5494// :145:22: note: when computing vector element at index '0'
5495// :145:22: error: use of undefined value here causes illegal behavior
5496// :145:22: note: when computing vector element at index '0'
5497// :145:22: error: use of undefined value here causes illegal behavior
5498// :145:22: error: use of undefined value here causes illegal behavior
5499// :145:22: note: when computing vector element at index '0'
5500// :145:22: error: use of undefined value here causes illegal behavior
5501// :145:22: note: when computing vector element at index '0'
5502// :145:22: error: use of undefined value here causes illegal behavior
5503// :145:22: note: when computing vector element at index '0'
5504// :145:22: error: use of undefined value here causes illegal behavior
5505// :145:22: note: when computing vector element at index '1'
5506// :145:22: error: use of undefined value here causes illegal behavior
5507// :145:22: note: when computing vector element at index '0'
5508// :145:22: error: use of undefined value here causes illegal behavior
5509// :145:22: note: when computing vector element at index '0'
5510// :145:22: error: use of undefined value here causes illegal behavior
5511// :145:22: note: when computing vector element at index '0'
5512// :145:22: error: use of undefined value here causes illegal behavior
5513// :145:22: error: use of undefined value here causes illegal behavior
5514// :145:22: note: when computing vector element at index '0'
5515// :145:22: error: use of undefined value here causes illegal behavior
5516// :145:22: note: when computing vector element at index '0'
5517// :145:22: error: use of undefined value here causes illegal behavior
5518// :145:22: note: when computing vector element at index '0'
5519// :145:22: error: use of undefined value here causes illegal behavior
5520// :145:22: note: when computing vector element at index '1'
5521// :145:22: error: use of undefined value here causes illegal behavior
5522// :145:22: note: when computing vector element at index '0'
5523// :145:22: error: use of undefined value here causes illegal behavior
5524// :145:22: note: when computing vector element at index '0'
5525// :145:22: error: use of undefined value here causes illegal behavior
5526// :145:22: note: when computing vector element at index '0'
5527// :145:25: error: use of undefined value here causes illegal behavior
5528// :145:25: error: use of undefined value here causes illegal behavior
5529// :145:25: note: when computing vector element at index '0'
5530// :145:25: error: use of undefined value here causes illegal behavior
5531// :145:25: note: when computing vector element at index '0'
5532// :145:25: error: use of undefined value here causes illegal behavior
5533// :145:25: note: when computing vector element at index '1'
5534// :145:25: error: use of undefined value here causes illegal behavior
5535// :145:25: note: when computing vector element at index '0'
5536// :145:25: error: use of undefined value here causes illegal behavior
5537// :145:25: note: when computing vector element at index '0'
5538// :145:25: error: use of undefined value here causes illegal behavior
5539// :145:25: error: use of undefined value here causes illegal behavior
5540// :145:25: note: when computing vector element at index '0'
5541// :145:25: error: use of undefined value here causes illegal behavior
5542// :145:25: note: when computing vector element at index '0'
5543// :145:25: error: use of undefined value here causes illegal behavior
5544// :145:25: note: when computing vector element at index '1'
5545// :145:25: error: use of undefined value here causes illegal behavior
5546// :145:25: note: when computing vector element at index '0'
5547// :145:25: error: use of undefined value here causes illegal behavior
5548// :145:25: note: when computing vector element at index '0'
5549// :145:25: error: use of undefined value here causes illegal behavior
5550// :145:25: error: use of undefined value here causes illegal behavior
5551// :145:25: note: when computing vector element at index '0'
5552// :145:25: error: use of undefined value here causes illegal behavior
5553// :145:25: note: when computing vector element at index '0'
5554// :145:25: error: use of undefined value here causes illegal behavior
5555// :145:25: note: when computing vector element at index '1'
5556// :145:25: error: use of undefined value here causes illegal behavior
5557// :145:25: note: when computing vector element at index '0'
5558// :145:25: error: use of undefined value here causes illegal behavior
5559// :145:25: note: when computing vector element at index '0'
5560// :145:25: error: use of undefined value here causes illegal behavior
5561// :145:25: error: use of undefined value here causes illegal behavior
5562// :145:25: note: when computing vector element at index '0'
5563// :145:25: error: use of undefined value here causes illegal behavior
5564// :145:25: note: when computing vector element at index '0'
5565// :145:25: error: use of undefined value here causes illegal behavior
5566// :145:25: note: when computing vector element at index '1'
5567// :145:25: error: use of undefined value here causes illegal behavior
5568// :145:25: note: when computing vector element at index '0'
5569// :145:25: error: use of undefined value here causes illegal behavior
5570// :145:25: note: when computing vector element at index '0'
5571// :145:25: error: use of undefined value here causes illegal behavior
5572// :145:25: error: use of undefined value here causes illegal behavior
5573// :145:25: note: when computing vector element at index '0'
5574// :145:25: error: use of undefined value here causes illegal behavior
5575// :145:25: note: when computing vector element at index '0'
5576// :145:25: error: use of undefined value here causes illegal behavior
5577// :145:25: note: when computing vector element at index '1'
5578// :145:25: error: use of undefined value here causes illegal behavior
5579// :145:25: note: when computing vector element at index '0'
5580// :145:25: error: use of undefined value here causes illegal behavior
5581// :145:25: note: when computing vector element at index '0'
5582// :145:25: error: use of undefined value here causes illegal behavior
5583// :145:25: error: use of undefined value here causes illegal behavior
5584// :145:25: note: when computing vector element at index '0'
5585// :145:25: error: use of undefined value here causes illegal behavior
5586// :145:25: note: when computing vector element at index '0'
5587// :145:25: error: use of undefined value here causes illegal behavior
5588// :145:25: note: when computing vector element at index '1'
5589// :145:25: error: use of undefined value here causes illegal behavior
5590// :145:25: note: when computing vector element at index '0'
5591// :145:25: error: use of undefined value here causes illegal behavior
5592// :145:25: note: when computing vector element at index '0'
5593// :145:25: error: use of undefined value here causes illegal behavior
5594// :145:25: error: use of undefined value here causes illegal behavior
5595// :145:25: note: when computing vector element at index '0'
5596// :145:25: error: use of undefined value here causes illegal behavior
5597// :145:25: note: when computing vector element at index '0'
5598// :145:25: error: use of undefined value here causes illegal behavior
5599// :145:25: note: when computing vector element at index '1'
5600// :145:25: error: use of undefined value here causes illegal behavior
5601// :145:25: note: when computing vector element at index '0'
5602// :145:25: error: use of undefined value here causes illegal behavior
5603// :145:25: note: when computing vector element at index '0'
5604// :145:25: error: use of undefined value here causes illegal behavior
5605// :145:25: error: use of undefined value here causes illegal behavior
5606// :145:25: note: when computing vector element at index '0'
5607// :145:25: error: use of undefined value here causes illegal behavior
5608// :145:25: note: when computing vector element at index '0'
5609// :145:25: error: use of undefined value here causes illegal behavior
5610// :145:25: note: when computing vector element at index '1'
5611// :145:25: error: use of undefined value here causes illegal behavior
5612// :145:25: note: when computing vector element at index '0'
5613// :145:25: error: use of undefined value here causes illegal behavior
5614// :145:25: note: when computing vector element at index '0'
5615// :145:25: error: use of undefined value here causes illegal behavior
5616// :145:25: error: use of undefined value here causes illegal behavior
5617// :145:25: note: when computing vector element at index '0'
5618// :145:25: error: use of undefined value here causes illegal behavior
5619// :145:25: note: when computing vector element at index '0'
5620// :145:25: error: use of undefined value here causes illegal behavior
5621// :145:25: note: when computing vector element at index '1'
5622// :145:25: error: use of undefined value here causes illegal behavior
5623// :145:25: note: when computing vector element at index '0'
5624// :145:25: error: use of undefined value here causes illegal behavior
5625// :145:25: note: when computing vector element at index '0'
5626// :145:25: error: use of undefined value here causes illegal behavior
5627// :145:25: error: use of undefined value here causes illegal behavior
5628// :145:25: note: when computing vector element at index '0'
5629// :145:25: error: use of undefined value here causes illegal behavior
5630// :145:25: note: when computing vector element at index '0'
5631// :145:25: error: use of undefined value here causes illegal behavior
5632// :145:25: note: when computing vector element at index '1'
5633// :145:25: error: use of undefined value here causes illegal behavior
5634// :145:25: note: when computing vector element at index '0'
5635// :145:25: error: use of undefined value here causes illegal behavior
5636// :145:25: note: when computing vector element at index '0'
5637// :145:25: error: use of undefined value here causes illegal behavior
5638// :145:25: error: use of undefined value here causes illegal behavior
5639// :145:25: note: when computing vector element at index '0'
5640// :145:25: error: use of undefined value here causes illegal behavior
5641// :145:25: note: when computing vector element at index '0'
5642// :145:25: error: use of undefined value here causes illegal behavior
5643// :145:25: note: when computing vector element at index '1'
5644// :145:25: error: use of undefined value here causes illegal behavior
5645// :145:25: note: when computing vector element at index '0'
5646// :145:25: error: use of undefined value here causes illegal behavior
5647// :145:25: note: when computing vector element at index '0'
5648// :151:21: error: use of undefined value here causes illegal behavior
5649// :151:21: error: use of undefined value here causes illegal behavior
5650// :151:21: error: use of undefined value here causes illegal behavior
5651// :151:21: error: use of undefined value here causes illegal behavior
5652// :151:21: error: use of undefined value here causes illegal behavior
5653// :151:21: error: use of undefined value here causes illegal behavior
5654// :151:21: error: use of undefined value here causes illegal behavior
5655// :151:21: note: when computing vector element at index '1'
5656// :151:21: error: use of undefined value here causes illegal behavior
5657// :151:21: note: when computing vector element at index '1'
5658// :151:21: error: use of undefined value here causes illegal behavior
5659// :151:21: note: when computing vector element at index '1'
5660// :151:21: error: use of undefined value here causes illegal behavior
5661// :151:21: note: when computing vector element at index '1'
5662// :151:21: error: use of undefined value here causes illegal behavior
5663// :151:21: note: when computing vector element at index '0'
5664// :151:21: error: use of undefined value here causes illegal behavior
5665// :151:21: note: when computing vector element at index '0'
5666// :151:21: error: use of undefined value here causes illegal behavior
5667// :151:21: note: when computing vector element at index '0'
5668// :151:21: error: use of undefined value here causes illegal behavior
5669// :151:21: note: when computing vector element at index '0'
5670// :151:21: error: use of undefined value here causes illegal behavior
5671// :151:21: error: use of undefined value here causes illegal behavior
5672// :151:21: error: use of undefined value here causes illegal behavior
5673// :151:21: error: use of undefined value here causes illegal behavior
5674// :151:21: error: use of undefined value here causes illegal behavior
5675// :151:21: error: use of undefined value here causes illegal behavior
5676// :151:21: error: use of undefined value here causes illegal behavior
5677// :151:21: note: when computing vector element at index '1'
5678// :151:21: error: use of undefined value here causes illegal behavior
5679// :151:21: note: when computing vector element at index '1'
5680// :151:21: error: use of undefined value here causes illegal behavior
5681// :151:21: note: when computing vector element at index '1'
5682// :151:21: error: use of undefined value here causes illegal behavior
5683// :151:21: note: when computing vector element at index '1'
5684// :151:21: error: use of undefined value here causes illegal behavior
5685// :151:21: note: when computing vector element at index '0'
5686// :151:21: error: use of undefined value here causes illegal behavior
5687// :151:21: note: when computing vector element at index '0'
5688// :151:21: error: use of undefined value here causes illegal behavior
5689// :151:21: note: when computing vector element at index '0'
5690// :151:21: error: use of undefined value here causes illegal behavior
5691// :151:21: note: when computing vector element at index '0'
5692// :151:21: error: use of undefined value here causes illegal behavior
5693// :151:21: error: use of undefined value here causes illegal behavior
5694// :151:21: error: use of undefined value here causes illegal behavior
5695// :151:21: error: use of undefined value here causes illegal behavior
5696// :151:21: error: use of undefined value here causes illegal behavior
5697// :151:21: error: use of undefined value here causes illegal behavior
5698// :151:21: error: use of undefined value here causes illegal behavior
5699// :151:21: note: when computing vector element at index '1'
5700// :151:21: error: use of undefined value here causes illegal behavior
5701// :151:21: note: when computing vector element at index '1'
5702// :151:21: error: use of undefined value here causes illegal behavior
5703// :151:21: note: when computing vector element at index '1'
5704// :151:21: error: use of undefined value here causes illegal behavior
5705// :151:21: note: when computing vector element at index '1'
5706// :151:21: error: use of undefined value here causes illegal behavior
5707// :151:21: note: when computing vector element at index '0'
5708// :151:21: error: use of undefined value here causes illegal behavior
5709// :151:21: note: when computing vector element at index '0'
5710// :151:21: error: use of undefined value here causes illegal behavior
5711// :151:21: note: when computing vector element at index '0'
5712// :151:21: error: use of undefined value here causes illegal behavior
5713// :151:21: note: when computing vector element at index '0'
5714// :151:21: error: use of undefined value here causes illegal behavior
5715// :151:21: error: use of undefined value here causes illegal behavior
5716// :151:21: error: use of undefined value here causes illegal behavior
5717// :151:21: error: use of undefined value here causes illegal behavior
5718// :151:21: error: use of undefined value here causes illegal behavior
5719// :151:21: error: use of undefined value here causes illegal behavior
5720// :151:21: error: use of undefined value here causes illegal behavior
5721// :151:21: note: when computing vector element at index '1'
5722// :151:21: error: use of undefined value here causes illegal behavior
5723// :151:21: note: when computing vector element at index '1'
5724// :151:21: error: use of undefined value here causes illegal behavior
5725// :151:21: note: when computing vector element at index '1'
5726// :151:21: error: use of undefined value here causes illegal behavior
5727// :151:21: note: when computing vector element at index '1'
5728// :151:21: error: use of undefined value here causes illegal behavior
5729// :151:21: note: when computing vector element at index '0'
5730// :151:21: error: use of undefined value here causes illegal behavior
5731// :151:21: note: when computing vector element at index '0'
5732// :151:21: error: use of undefined value here causes illegal behavior
5733// :151:21: note: when computing vector element at index '0'
5734// :151:21: error: use of undefined value here causes illegal behavior
5735// :151:21: note: when computing vector element at index '0'
5736// :151:21: error: use of undefined value here causes illegal behavior
5737// :151:21: error: use of undefined value here causes illegal behavior
5738// :151:21: error: use of undefined value here causes illegal behavior
5739// :151:21: error: use of undefined value here causes illegal behavior
5740// :151:21: error: use of undefined value here causes illegal behavior
5741// :151:21: error: use of undefined value here causes illegal behavior
5742// :151:21: error: use of undefined value here causes illegal behavior
5743// :151:21: note: when computing vector element at index '1'
5744// :151:21: error: use of undefined value here causes illegal behavior
5745// :151:21: note: when computing vector element at index '1'
5746// :151:21: error: use of undefined value here causes illegal behavior
5747// :151:21: note: when computing vector element at index '1'
5748// :151:21: error: use of undefined value here causes illegal behavior
5749// :151:21: note: when computing vector element at index '1'
5750// :151:21: error: use of undefined value here causes illegal behavior
5751// :151:21: note: when computing vector element at index '0'
5752// :151:21: error: use of undefined value here causes illegal behavior
5753// :151:21: note: when computing vector element at index '0'
5754// :151:21: error: use of undefined value here causes illegal behavior
5755// :151:21: note: when computing vector element at index '0'
5756// :151:21: error: use of undefined value here causes illegal behavior
5757// :151:21: note: when computing vector element at index '0'
5758// :151:21: error: use of undefined value here causes illegal behavior
5759// :151:21: error: use of undefined value here causes illegal behavior
5760// :151:21: error: use of undefined value here causes illegal behavior
5761// :151:21: error: use of undefined value here causes illegal behavior
5762// :151:21: error: use of undefined value here causes illegal behavior
5763// :151:21: error: use of undefined value here causes illegal behavior
5764// :151:21: error: use of undefined value here causes illegal behavior
5765// :151:21: note: when computing vector element at index '1'
5766// :151:21: error: use of undefined value here causes illegal behavior
5767// :151:21: note: when computing vector element at index '1'
5768// :151:21: error: use of undefined value here causes illegal behavior
5769// :151:21: note: when computing vector element at index '1'
5770// :151:21: error: use of undefined value here causes illegal behavior
5771// :151:21: note: when computing vector element at index '1'
5772// :151:21: error: use of undefined value here causes illegal behavior
5773// :151:21: note: when computing vector element at index '0'
5774// :151:21: error: use of undefined value here causes illegal behavior
5775// :151:21: note: when computing vector element at index '0'
5776// :151:21: error: use of undefined value here causes illegal behavior
5777// :151:21: note: when computing vector element at index '0'
5778// :151:21: error: use of undefined value here causes illegal behavior
5779// :151:21: note: when computing vector element at index '0'
5780// :151:21: error: use of undefined value here causes illegal behavior
5781// :151:21: error: use of undefined value here causes illegal behavior
5782// :151:21: error: use of undefined value here causes illegal behavior
5783// :151:21: error: use of undefined value here causes illegal behavior
5784// :151:21: error: use of undefined value here causes illegal behavior
5785// :151:21: error: use of undefined value here causes illegal behavior
5786// :151:21: error: use of undefined value here causes illegal behavior
5787// :151:21: note: when computing vector element at index '1'
5788// :151:21: error: use of undefined value here causes illegal behavior
5789// :151:21: note: when computing vector element at index '1'
5790// :151:21: error: use of undefined value here causes illegal behavior
5791// :151:21: note: when computing vector element at index '1'
5792// :151:21: error: use of undefined value here causes illegal behavior
5793// :151:21: note: when computing vector element at index '1'
5794// :151:21: error: use of undefined value here causes illegal behavior
5795// :151:21: note: when computing vector element at index '0'
5796// :151:21: error: use of undefined value here causes illegal behavior
5797// :151:21: note: when computing vector element at index '0'
5798// :151:21: error: use of undefined value here causes illegal behavior
5799// :151:21: note: when computing vector element at index '0'
5800// :151:21: error: use of undefined value here causes illegal behavior
5801// :151:21: note: when computing vector element at index '0'
5802// :151:21: error: use of undefined value here causes illegal behavior
5803// :151:21: error: use of undefined value here causes illegal behavior
5804// :151:21: error: use of undefined value here causes illegal behavior
5805// :151:21: error: use of undefined value here causes illegal behavior
5806// :151:21: error: use of undefined value here causes illegal behavior
5807// :151:21: error: use of undefined value here causes illegal behavior
5808// :151:21: error: use of undefined value here causes illegal behavior
5809// :151:21: note: when computing vector element at index '1'
5810// :151:21: error: use of undefined value here causes illegal behavior
5811// :151:21: note: when computing vector element at index '1'
5812// :151:21: error: use of undefined value here causes illegal behavior
5813// :151:21: note: when computing vector element at index '1'
5814// :151:21: error: use of undefined value here causes illegal behavior
5815// :151:21: note: when computing vector element at index '1'
5816// :151:21: error: use of undefined value here causes illegal behavior
5817// :151:21: note: when computing vector element at index '0'
5818// :151:21: error: use of undefined value here causes illegal behavior
5819// :151:21: note: when computing vector element at index '0'
5820// :151:21: error: use of undefined value here causes illegal behavior
5821// :151:21: note: when computing vector element at index '0'
5822// :151:21: error: use of undefined value here causes illegal behavior
5823// :151:21: note: when computing vector element at index '0'
5824// :151:21: error: use of undefined value here causes illegal behavior
5825// :151:21: error: use of undefined value here causes illegal behavior
5826// :151:21: error: use of undefined value here causes illegal behavior
5827// :151:21: error: use of undefined value here causes illegal behavior
5828// :151:21: error: use of undefined value here causes illegal behavior
5829// :151:21: error: use of undefined value here causes illegal behavior
5830// :151:21: error: use of undefined value here causes illegal behavior
5831// :151:21: note: when computing vector element at index '1'
5832// :151:21: error: use of undefined value here causes illegal behavior
5833// :151:21: note: when computing vector element at index '1'
5834// :151:21: error: use of undefined value here causes illegal behavior
5835// :151:21: note: when computing vector element at index '1'
5836// :151:21: error: use of undefined value here causes illegal behavior
5837// :151:21: note: when computing vector element at index '1'
5838// :151:21: error: use of undefined value here causes illegal behavior
5839// :151:21: note: when computing vector element at index '0'
5840// :151:21: error: use of undefined value here causes illegal behavior
5841// :151:21: note: when computing vector element at index '0'
5842// :151:21: error: use of undefined value here causes illegal behavior
5843// :151:21: note: when computing vector element at index '0'
5844// :151:21: error: use of undefined value here causes illegal behavior
5845// :151:21: note: when computing vector element at index '0'
5846// :151:21: error: use of undefined value here causes illegal behavior
5847// :151:21: error: use of undefined value here causes illegal behavior
5848// :151:21: error: use of undefined value here causes illegal behavior
5849// :151:21: error: use of undefined value here causes illegal behavior
5850// :151:21: error: use of undefined value here causes illegal behavior
5851// :151:21: error: use of undefined value here causes illegal behavior
5852// :151:21: error: use of undefined value here causes illegal behavior
5853// :151:21: note: when computing vector element at index '1'
5854// :151:21: error: use of undefined value here causes illegal behavior
5855// :151:21: note: when computing vector element at index '1'
5856// :151:21: error: use of undefined value here causes illegal behavior
5857// :151:21: note: when computing vector element at index '1'
5858// :151:21: error: use of undefined value here causes illegal behavior
5859// :151:21: note: when computing vector element at index '1'
5860// :151:21: error: use of undefined value here causes illegal behavior
5861// :151:21: note: when computing vector element at index '0'
5862// :151:21: error: use of undefined value here causes illegal behavior
5863// :151:21: note: when computing vector element at index '0'
5864// :151:21: error: use of undefined value here causes illegal behavior
5865// :151:21: note: when computing vector element at index '0'
5866// :151:21: error: use of undefined value here causes illegal behavior
5867// :151:21: note: when computing vector element at index '0'
5868// :151:21: error: use of undefined value here causes illegal behavior
5869// :151:21: error: use of undefined value here causes illegal behavior
5870// :151:21: error: use of undefined value here causes illegal behavior
5871// :151:21: error: use of undefined value here causes illegal behavior
5872// :151:21: error: use of undefined value here causes illegal behavior
5873// :151:21: error: use of undefined value here causes illegal behavior
5874// :151:21: error: use of undefined value here causes illegal behavior
5875// :151:21: note: when computing vector element at index '1'
5876// :151:21: error: use of undefined value here causes illegal behavior
5877// :151:21: note: when computing vector element at index '1'
5878// :151:21: error: use of undefined value here causes illegal behavior
5879// :151:21: note: when computing vector element at index '1'
5880// :151:21: error: use of undefined value here causes illegal behavior
5881// :151:21: note: when computing vector element at index '1'
5882// :151:21: error: use of undefined value here causes illegal behavior
5883// :151:21: note: when computing vector element at index '0'
5884// :151:21: error: use of undefined value here causes illegal behavior
5885// :151:21: note: when computing vector element at index '0'
5886// :151:21: error: use of undefined value here causes illegal behavior
5887// :151:21: note: when computing vector element at index '0'
5888// :151:21: error: use of undefined value here causes illegal behavior
5889// :151:21: note: when computing vector element at index '0'
5890// :155:30: error: use of undefined value here causes illegal behavior
5891// :155:30: error: use of undefined value here causes illegal behavior
5892// :155:30: error: use of undefined value here causes illegal behavior
5893// :155:30: error: use of undefined value here causes illegal behavior
5894// :155:30: error: use of undefined value here causes illegal behavior
5895// :155:30: error: use of undefined value here causes illegal behavior
5896// :155:30: error: use of undefined value here causes illegal behavior
5897// :155:30: note: when computing vector element at index '1'
5898// :155:30: error: use of undefined value here causes illegal behavior
5899// :155:30: note: when computing vector element at index '1'
5900// :155:30: error: use of undefined value here causes illegal behavior
5901// :155:30: note: when computing vector element at index '1'
5902// :155:30: error: use of undefined value here causes illegal behavior
5903// :155:30: note: when computing vector element at index '1'
5904// :155:30: error: use of undefined value here causes illegal behavior
5905// :155:30: note: when computing vector element at index '0'
5906// :155:30: error: use of undefined value here causes illegal behavior
5907// :155:30: note: when computing vector element at index '0'
5908// :155:30: error: use of undefined value here causes illegal behavior
5909// :155:30: note: when computing vector element at index '0'
5910// :155:30: error: use of undefined value here causes illegal behavior
5911// :155:30: note: when computing vector element at index '0'
5912// :155:30: error: use of undefined value here causes illegal behavior
5913// :155:30: error: use of undefined value here causes illegal behavior
5914// :155:30: error: use of undefined value here causes illegal behavior
5915// :155:30: error: use of undefined value here causes illegal behavior
5916// :155:30: error: use of undefined value here causes illegal behavior
5917// :155:30: error: use of undefined value here causes illegal behavior
5918// :155:30: error: use of undefined value here causes illegal behavior
5919// :155:30: note: when computing vector element at index '1'
5920// :155:30: error: use of undefined value here causes illegal behavior
5921// :155:30: note: when computing vector element at index '1'
5922// :155:30: error: use of undefined value here causes illegal behavior
5923// :155:30: note: when computing vector element at index '1'
5924// :155:30: error: use of undefined value here causes illegal behavior
5925// :155:30: note: when computing vector element at index '1'
5926// :155:30: error: use of undefined value here causes illegal behavior
5927// :155:30: note: when computing vector element at index '0'
5928// :155:30: error: use of undefined value here causes illegal behavior
5929// :155:30: note: when computing vector element at index '0'
5930// :155:30: error: use of undefined value here causes illegal behavior
5931// :155:30: note: when computing vector element at index '0'
5932// :155:30: error: use of undefined value here causes illegal behavior
5933// :155:30: note: when computing vector element at index '0'
5934// :155:30: error: use of undefined value here causes illegal behavior
5935// :155:30: error: use of undefined value here causes illegal behavior
5936// :155:30: error: use of undefined value here causes illegal behavior
5937// :155:30: error: use of undefined value here causes illegal behavior
5938// :155:30: error: use of undefined value here causes illegal behavior
5939// :155:30: error: use of undefined value here causes illegal behavior
5940// :155:30: error: use of undefined value here causes illegal behavior
5941// :155:30: note: when computing vector element at index '1'
5942// :155:30: error: use of undefined value here causes illegal behavior
5943// :155:30: note: when computing vector element at index '1'
5944// :155:30: error: use of undefined value here causes illegal behavior
5945// :155:30: note: when computing vector element at index '1'
5946// :155:30: error: use of undefined value here causes illegal behavior
5947// :155:30: note: when computing vector element at index '1'
5948// :155:30: error: use of undefined value here causes illegal behavior
5949// :155:30: note: when computing vector element at index '0'
5950// :155:30: error: use of undefined value here causes illegal behavior
5951// :155:30: note: when computing vector element at index '0'
5952// :155:30: error: use of undefined value here causes illegal behavior
5953// :155:30: note: when computing vector element at index '0'
5954// :155:30: error: use of undefined value here causes illegal behavior
5955// :155:30: note: when computing vector element at index '0'
5956// :155:30: error: use of undefined value here causes illegal behavior
5957// :155:30: error: use of undefined value here causes illegal behavior
5958// :155:30: error: use of undefined value here causes illegal behavior
5959// :155:30: error: use of undefined value here causes illegal behavior
5960// :155:30: error: use of undefined value here causes illegal behavior
5961// :155:30: error: use of undefined value here causes illegal behavior
5962// :155:30: error: use of undefined value here causes illegal behavior
5963// :155:30: note: when computing vector element at index '1'
5964// :155:30: error: use of undefined value here causes illegal behavior
5965// :155:30: note: when computing vector element at index '1'
5966// :155:30: error: use of undefined value here causes illegal behavior
5967// :155:30: note: when computing vector element at index '1'
5968// :155:30: error: use of undefined value here causes illegal behavior
5969// :155:30: note: when computing vector element at index '1'
5970// :155:30: error: use of undefined value here causes illegal behavior
5971// :155:30: note: when computing vector element at index '0'
5972// :155:30: error: use of undefined value here causes illegal behavior
5973// :155:30: note: when computing vector element at index '0'
5974// :155:30: error: use of undefined value here causes illegal behavior
5975// :155:30: note: when computing vector element at index '0'
5976// :155:30: error: use of undefined value here causes illegal behavior
5977// :155:30: note: when computing vector element at index '0'
5978// :155:30: error: use of undefined value here causes illegal behavior
5979// :155:30: error: use of undefined value here causes illegal behavior
5980// :155:30: error: use of undefined value here causes illegal behavior
5981// :155:30: error: use of undefined value here causes illegal behavior
5982// :155:30: error: use of undefined value here causes illegal behavior
5983// :155:30: error: use of undefined value here causes illegal behavior
5984// :155:30: error: use of undefined value here causes illegal behavior
5985// :155:30: note: when computing vector element at index '1'
5986// :155:30: error: use of undefined value here causes illegal behavior
5987// :155:30: note: when computing vector element at index '1'
5988// :155:30: error: use of undefined value here causes illegal behavior
5989// :155:30: note: when computing vector element at index '1'
5990// :155:30: error: use of undefined value here causes illegal behavior
5991// :155:30: note: when computing vector element at index '1'
5992// :155:30: error: use of undefined value here causes illegal behavior
5993// :155:30: note: when computing vector element at index '0'
5994// :155:30: error: use of undefined value here causes illegal behavior
5995// :155:30: note: when computing vector element at index '0'
5996// :155:30: error: use of undefined value here causes illegal behavior
5997// :155:30: note: when computing vector element at index '0'
5998// :155:30: error: use of undefined value here causes illegal behavior
5999// :155:30: note: when computing vector element at index '0'
6000// :155:30: error: use of undefined value here causes illegal behavior
6001// :155:30: error: use of undefined value here causes illegal behavior
6002// :155:30: error: use of undefined value here causes illegal behavior
6003// :155:30: error: use of undefined value here causes illegal behavior
6004// :155:30: error: use of undefined value here causes illegal behavior
6005// :155:30: error: use of undefined value here causes illegal behavior
6006// :155:30: error: use of undefined value here causes illegal behavior
6007// :155:30: note: when computing vector element at index '1'
6008// :155:30: error: use of undefined value here causes illegal behavior
6009// :155:30: note: when computing vector element at index '1'
6010// :155:30: error: use of undefined value here causes illegal behavior
6011// :155:30: note: when computing vector element at index '1'
6012// :155:30: error: use of undefined value here causes illegal behavior
6013// :155:30: note: when computing vector element at index '1'
6014// :155:30: error: use of undefined value here causes illegal behavior
6015// :155:30: note: when computing vector element at index '0'
6016// :155:30: error: use of undefined value here causes illegal behavior
6017// :155:30: note: when computing vector element at index '0'
6018// :155:30: error: use of undefined value here causes illegal behavior
6019// :155:30: note: when computing vector element at index '0'
6020// :155:30: error: use of undefined value here causes illegal behavior
6021// :155:30: note: when computing vector element at index '0'
6022// :155:30: error: use of undefined value here causes illegal behavior
6023// :155:30: error: use of undefined value here causes illegal behavior
6024// :155:30: error: use of undefined value here causes illegal behavior
6025// :155:30: error: use of undefined value here causes illegal behavior
6026// :155:30: error: use of undefined value here causes illegal behavior
6027// :155:30: error: use of undefined value here causes illegal behavior
6028// :155:30: error: use of undefined value here causes illegal behavior
6029// :155:30: note: when computing vector element at index '1'
6030// :155:30: error: use of undefined value here causes illegal behavior
6031// :155:30: note: when computing vector element at index '1'
6032// :155:30: error: use of undefined value here causes illegal behavior
6033// :155:30: note: when computing vector element at index '1'
6034// :155:30: error: use of undefined value here causes illegal behavior
6035// :155:30: note: when computing vector element at index '1'
6036// :155:30: error: use of undefined value here causes illegal behavior
6037// :155:30: note: when computing vector element at index '0'
6038// :155:30: error: use of undefined value here causes illegal behavior
6039// :155:30: note: when computing vector element at index '0'
6040// :155:30: error: use of undefined value here causes illegal behavior
6041// :155:30: note: when computing vector element at index '0'
6042// :155:30: error: use of undefined value here causes illegal behavior
6043// :155:30: note: when computing vector element at index '0'
6044// :155:30: error: use of undefined value here causes illegal behavior
6045// :155:30: error: use of undefined value here causes illegal behavior
6046// :155:30: error: use of undefined value here causes illegal behavior
6047// :155:30: error: use of undefined value here causes illegal behavior
6048// :155:30: error: use of undefined value here causes illegal behavior
6049// :155:30: error: use of undefined value here causes illegal behavior
6050// :155:30: error: use of undefined value here causes illegal behavior
6051// :155:30: note: when computing vector element at index '1'
6052// :155:30: error: use of undefined value here causes illegal behavior
6053// :155:30: note: when computing vector element at index '1'
6054// :155:30: error: use of undefined value here causes illegal behavior
6055// :155:30: note: when computing vector element at index '1'
6056// :155:30: error: use of undefined value here causes illegal behavior
6057// :155:30: note: when computing vector element at index '1'
6058// :155:30: error: use of undefined value here causes illegal behavior
6059// :155:30: note: when computing vector element at index '0'
6060// :155:30: error: use of undefined value here causes illegal behavior
6061// :155:30: note: when computing vector element at index '0'
6062// :155:30: error: use of undefined value here causes illegal behavior
6063// :155:30: note: when computing vector element at index '0'
6064// :155:30: error: use of undefined value here causes illegal behavior
6065// :155:30: note: when computing vector element at index '0'
6066// :155:30: error: use of undefined value here causes illegal behavior
6067// :155:30: error: use of undefined value here causes illegal behavior
6068// :155:30: error: use of undefined value here causes illegal behavior
6069// :155:30: error: use of undefined value here causes illegal behavior
6070// :155:30: error: use of undefined value here causes illegal behavior
6071// :155:30: error: use of undefined value here causes illegal behavior
6072// :155:30: error: use of undefined value here causes illegal behavior
6073// :155:30: note: when computing vector element at index '1'
6074// :155:30: error: use of undefined value here causes illegal behavior
6075// :155:30: note: when computing vector element at index '1'
6076// :155:30: error: use of undefined value here causes illegal behavior
6077// :155:30: note: when computing vector element at index '1'
6078// :155:30: error: use of undefined value here causes illegal behavior
6079// :155:30: note: when computing vector element at index '1'
6080// :155:30: error: use of undefined value here causes illegal behavior
6081// :155:30: note: when computing vector element at index '0'
6082// :155:30: error: use of undefined value here causes illegal behavior
6083// :155:30: note: when computing vector element at index '0'
6084// :155:30: error: use of undefined value here causes illegal behavior
6085// :155:30: note: when computing vector element at index '0'
6086// :155:30: error: use of undefined value here causes illegal behavior
6087// :155:30: note: when computing vector element at index '0'
6088// :155:30: error: use of undefined value here causes illegal behavior
6089// :155:30: error: use of undefined value here causes illegal behavior
6090// :155:30: error: use of undefined value here causes illegal behavior
6091// :155:30: error: use of undefined value here causes illegal behavior
6092// :155:30: error: use of undefined value here causes illegal behavior
6093// :155:30: error: use of undefined value here causes illegal behavior
6094// :155:30: error: use of undefined value here causes illegal behavior
6095// :155:30: note: when computing vector element at index '1'
6096// :155:30: error: use of undefined value here causes illegal behavior
6097// :155:30: note: when computing vector element at index '1'
6098// :155:30: error: use of undefined value here causes illegal behavior
6099// :155:30: note: when computing vector element at index '1'
6100// :155:30: error: use of undefined value here causes illegal behavior
6101// :155:30: note: when computing vector element at index '1'
6102// :155:30: error: use of undefined value here causes illegal behavior
6103// :155:30: note: when computing vector element at index '0'
6104// :155:30: error: use of undefined value here causes illegal behavior
6105// :155:30: note: when computing vector element at index '0'
6106// :155:30: error: use of undefined value here causes illegal behavior
6107// :155:30: note: when computing vector element at index '0'
6108// :155:30: error: use of undefined value here causes illegal behavior
6109// :155:30: note: when computing vector element at index '0'
6110// :155:30: error: use of undefined value here causes illegal behavior
6111// :155:30: error: use of undefined value here causes illegal behavior
6112// :155:30: error: use of undefined value here causes illegal behavior
6113// :155:30: error: use of undefined value here causes illegal behavior
6114// :155:30: error: use of undefined value here causes illegal behavior
6115// :155:30: error: use of undefined value here causes illegal behavior
6116// :155:30: error: use of undefined value here causes illegal behavior
6117// :155:30: note: when computing vector element at index '1'
6118// :155:30: error: use of undefined value here causes illegal behavior
6119// :155:30: note: when computing vector element at index '1'
6120// :155:30: error: use of undefined value here causes illegal behavior
6121// :155:30: note: when computing vector element at index '1'
6122// :155:30: error: use of undefined value here causes illegal behavior
6123// :155:30: note: when computing vector element at index '1'
6124// :155:30: error: use of undefined value here causes illegal behavior
6125// :155:30: note: when computing vector element at index '0'
6126// :155:30: error: use of undefined value here causes illegal behavior
6127// :155:30: note: when computing vector element at index '0'
6128// :155:30: error: use of undefined value here causes illegal behavior
6129// :155:30: note: when computing vector element at index '0'
6130// :155:30: error: use of undefined value here causes illegal behavior
6131// :155:30: note: when computing vector element at index '0'
6132// :159:30: error: use of undefined value here causes illegal behavior
6133// :159:30: error: use of undefined value here causes illegal behavior
6134// :159:30: error: use of undefined value here causes illegal behavior
6135// :159:30: error: use of undefined value here causes illegal behavior
6136// :159:30: error: use of undefined value here causes illegal behavior
6137// :159:30: error: use of undefined value here causes illegal behavior
6138// :159:30: error: use of undefined value here causes illegal behavior
6139// :159:30: note: when computing vector element at index '1'
6140// :159:30: error: use of undefined value here causes illegal behavior
6141// :159:30: note: when computing vector element at index '1'
6142// :159:30: error: use of undefined value here causes illegal behavior
6143// :159:30: note: when computing vector element at index '1'
6144// :159:30: error: use of undefined value here causes illegal behavior
6145// :159:30: note: when computing vector element at index '1'
6146// :159:30: error: use of undefined value here causes illegal behavior
6147// :159:30: note: when computing vector element at index '0'
6148// :159:30: error: use of undefined value here causes illegal behavior
6149// :159:30: note: when computing vector element at index '0'
6150// :159:30: error: use of undefined value here causes illegal behavior
6151// :159:30: note: when computing vector element at index '0'
6152// :159:30: error: use of undefined value here causes illegal behavior
6153// :159:30: note: when computing vector element at index '0'
6154// :159:30: error: use of undefined value here causes illegal behavior
6155// :159:30: error: use of undefined value here causes illegal behavior
6156// :159:30: error: use of undefined value here causes illegal behavior
6157// :159:30: error: use of undefined value here causes illegal behavior
6158// :159:30: error: use of undefined value here causes illegal behavior
6159// :159:30: error: use of undefined value here causes illegal behavior
6160// :159:30: error: use of undefined value here causes illegal behavior
6161// :159:30: note: when computing vector element at index '1'
6162// :159:30: error: use of undefined value here causes illegal behavior
6163// :159:30: note: when computing vector element at index '1'
6164// :159:30: error: use of undefined value here causes illegal behavior
6165// :159:30: note: when computing vector element at index '1'
6166// :159:30: error: use of undefined value here causes illegal behavior
6167// :159:30: note: when computing vector element at index '1'
6168// :159:30: error: use of undefined value here causes illegal behavior
6169// :159:30: note: when computing vector element at index '0'
6170// :159:30: error: use of undefined value here causes illegal behavior
6171// :159:30: note: when computing vector element at index '0'
6172// :159:30: error: use of undefined value here causes illegal behavior
6173// :159:30: note: when computing vector element at index '0'
6174// :159:30: error: use of undefined value here causes illegal behavior
6175// :159:30: note: when computing vector element at index '0'
6176// :159:30: error: use of undefined value here causes illegal behavior
6177// :159:30: error: use of undefined value here causes illegal behavior
6178// :159:30: error: use of undefined value here causes illegal behavior
6179// :159:30: error: use of undefined value here causes illegal behavior
6180// :159:30: error: use of undefined value here causes illegal behavior
6181// :159:30: error: use of undefined value here causes illegal behavior
6182// :159:30: error: use of undefined value here causes illegal behavior
6183// :159:30: note: when computing vector element at index '1'
6184// :159:30: error: use of undefined value here causes illegal behavior
6185// :159:30: note: when computing vector element at index '1'
6186// :159:30: error: use of undefined value here causes illegal behavior
6187// :159:30: note: when computing vector element at index '1'
6188// :159:30: error: use of undefined value here causes illegal behavior
6189// :159:30: note: when computing vector element at index '1'
6190// :159:30: error: use of undefined value here causes illegal behavior
6191// :159:30: note: when computing vector element at index '0'
6192// :159:30: error: use of undefined value here causes illegal behavior
6193// :159:30: note: when computing vector element at index '0'
6194// :159:30: error: use of undefined value here causes illegal behavior
6195// :159:30: note: when computing vector element at index '0'
6196// :159:30: error: use of undefined value here causes illegal behavior
6197// :159:30: note: when computing vector element at index '0'
6198// :159:30: error: use of undefined value here causes illegal behavior
6199// :159:30: error: use of undefined value here causes illegal behavior
6200// :159:30: error: use of undefined value here causes illegal behavior
6201// :159:30: error: use of undefined value here causes illegal behavior
6202// :159:30: error: use of undefined value here causes illegal behavior
6203// :159:30: error: use of undefined value here causes illegal behavior
6204// :159:30: error: use of undefined value here causes illegal behavior
6205// :159:30: note: when computing vector element at index '1'
6206// :159:30: error: use of undefined value here causes illegal behavior
6207// :159:30: note: when computing vector element at index '1'
6208// :159:30: error: use of undefined value here causes illegal behavior
6209// :159:30: note: when computing vector element at index '1'
6210// :159:30: error: use of undefined value here causes illegal behavior
6211// :159:30: note: when computing vector element at index '1'
6212// :159:30: error: use of undefined value here causes illegal behavior
6213// :159:30: note: when computing vector element at index '0'
6214// :159:30: error: use of undefined value here causes illegal behavior
6215// :159:30: note: when computing vector element at index '0'
6216// :159:30: error: use of undefined value here causes illegal behavior
6217// :159:30: note: when computing vector element at index '0'
6218// :159:30: error: use of undefined value here causes illegal behavior
6219// :159:30: note: when computing vector element at index '0'
6220// :159:30: error: use of undefined value here causes illegal behavior
6221// :159:30: error: use of undefined value here causes illegal behavior
6222// :159:30: error: use of undefined value here causes illegal behavior
6223// :159:30: error: use of undefined value here causes illegal behavior
6224// :159:30: error: use of undefined value here causes illegal behavior
6225// :159:30: error: use of undefined value here causes illegal behavior
6226// :159:30: error: use of undefined value here causes illegal behavior
6227// :159:30: note: when computing vector element at index '1'
6228// :159:30: error: use of undefined value here causes illegal behavior
6229// :159:30: note: when computing vector element at index '1'
6230// :159:30: error: use of undefined value here causes illegal behavior
6231// :159:30: note: when computing vector element at index '1'
6232// :159:30: error: use of undefined value here causes illegal behavior
6233// :159:30: note: when computing vector element at index '1'
6234// :159:30: error: use of undefined value here causes illegal behavior
6235// :159:30: note: when computing vector element at index '0'
6236// :159:30: error: use of undefined value here causes illegal behavior
6237// :159:30: note: when computing vector element at index '0'
6238// :159:30: error: use of undefined value here causes illegal behavior
6239// :159:30: note: when computing vector element at index '0'
6240// :159:30: error: use of undefined value here causes illegal behavior
6241// :159:30: note: when computing vector element at index '0'
6242// :159:30: error: use of undefined value here causes illegal behavior
6243// :159:30: error: use of undefined value here causes illegal behavior
6244// :159:30: error: use of undefined value here causes illegal behavior
6245// :159:30: error: use of undefined value here causes illegal behavior
6246// :159:30: error: use of undefined value here causes illegal behavior
6247// :159:30: error: use of undefined value here causes illegal behavior
6248// :159:30: error: use of undefined value here causes illegal behavior
6249// :159:30: note: when computing vector element at index '1'
6250// :159:30: error: use of undefined value here causes illegal behavior
6251// :159:30: note: when computing vector element at index '1'
6252// :159:30: error: use of undefined value here causes illegal behavior
6253// :159:30: note: when computing vector element at index '1'
6254// :159:30: error: use of undefined value here causes illegal behavior
6255// :159:30: note: when computing vector element at index '1'
6256// :159:30: error: use of undefined value here causes illegal behavior
6257// :159:30: note: when computing vector element at index '0'
6258// :159:30: error: use of undefined value here causes illegal behavior
6259// :159:30: note: when computing vector element at index '0'
6260// :159:30: error: use of undefined value here causes illegal behavior
6261// :159:30: note: when computing vector element at index '0'
6262// :159:30: error: use of undefined value here causes illegal behavior
6263// :159:30: note: when computing vector element at index '0'
6264// :159:30: error: use of undefined value here causes illegal behavior
6265// :159:30: error: use of undefined value here causes illegal behavior
6266// :159:30: error: use of undefined value here causes illegal behavior
6267// :159:30: error: use of undefined value here causes illegal behavior
6268// :159:30: error: use of undefined value here causes illegal behavior
6269// :159:30: error: use of undefined value here causes illegal behavior
6270// :159:30: error: use of undefined value here causes illegal behavior
6271// :159:30: note: when computing vector element at index '1'
6272// :159:30: error: use of undefined value here causes illegal behavior
6273// :159:30: note: when computing vector element at index '1'
6274// :159:30: error: use of undefined value here causes illegal behavior
6275// :159:30: note: when computing vector element at index '1'
6276// :159:30: error: use of undefined value here causes illegal behavior
6277// :159:30: note: when computing vector element at index '1'
6278// :159:30: error: use of undefined value here causes illegal behavior
6279// :159:30: note: when computing vector element at index '0'
6280// :159:30: error: use of undefined value here causes illegal behavior
6281// :159:30: note: when computing vector element at index '0'
6282// :159:30: error: use of undefined value here causes illegal behavior
6283// :159:30: note: when computing vector element at index '0'
6284// :159:30: error: use of undefined value here causes illegal behavior
6285// :159:30: note: when computing vector element at index '0'
6286// :159:30: error: use of undefined value here causes illegal behavior
6287// :159:30: error: use of undefined value here causes illegal behavior
6288// :159:30: error: use of undefined value here causes illegal behavior
6289// :159:30: error: use of undefined value here causes illegal behavior
6290// :159:30: error: use of undefined value here causes illegal behavior
6291// :159:30: error: use of undefined value here causes illegal behavior
6292// :159:30: error: use of undefined value here causes illegal behavior
6293// :159:30: note: when computing vector element at index '1'
6294// :159:30: error: use of undefined value here causes illegal behavior
6295// :159:30: note: when computing vector element at index '1'
6296// :159:30: error: use of undefined value here causes illegal behavior
6297// :159:30: note: when computing vector element at index '1'
6298// :159:30: error: use of undefined value here causes illegal behavior
6299// :159:30: note: when computing vector element at index '1'
6300// :159:30: error: use of undefined value here causes illegal behavior
6301// :159:30: note: when computing vector element at index '0'
6302// :159:30: error: use of undefined value here causes illegal behavior
6303// :159:30: note: when computing vector element at index '0'
6304// :159:30: error: use of undefined value here causes illegal behavior
6305// :159:30: note: when computing vector element at index '0'
6306// :159:30: error: use of undefined value here causes illegal behavior
6307// :159:30: note: when computing vector element at index '0'
6308// :159:30: error: use of undefined value here causes illegal behavior
6309// :159:30: error: use of undefined value here causes illegal behavior
6310// :159:30: error: use of undefined value here causes illegal behavior
6311// :159:30: error: use of undefined value here causes illegal behavior
6312// :159:30: error: use of undefined value here causes illegal behavior
6313// :159:30: error: use of undefined value here causes illegal behavior
6314// :159:30: error: use of undefined value here causes illegal behavior
6315// :159:30: note: when computing vector element at index '1'
6316// :159:30: error: use of undefined value here causes illegal behavior
6317// :159:30: note: when computing vector element at index '1'
6318// :159:30: error: use of undefined value here causes illegal behavior
6319// :159:30: note: when computing vector element at index '1'
6320// :159:30: error: use of undefined value here causes illegal behavior
6321// :159:30: note: when computing vector element at index '1'
6322// :159:30: error: use of undefined value here causes illegal behavior
6323// :159:30: note: when computing vector element at index '0'
6324// :159:30: error: use of undefined value here causes illegal behavior
6325// :159:30: note: when computing vector element at index '0'
6326// :159:30: error: use of undefined value here causes illegal behavior
6327// :159:30: note: when computing vector element at index '0'
6328// :159:30: error: use of undefined value here causes illegal behavior
6329// :159:30: note: when computing vector element at index '0'
6330// :159:30: error: use of undefined value here causes illegal behavior
6331// :159:30: error: use of undefined value here causes illegal behavior
6332// :159:30: error: use of undefined value here causes illegal behavior
6333// :159:30: error: use of undefined value here causes illegal behavior
6334// :159:30: error: use of undefined value here causes illegal behavior
6335// :159:30: error: use of undefined value here causes illegal behavior
6336// :159:30: error: use of undefined value here causes illegal behavior
6337// :159:30: note: when computing vector element at index '1'
6338// :159:30: error: use of undefined value here causes illegal behavior
6339// :159:30: note: when computing vector element at index '1'
6340// :159:30: error: use of undefined value here causes illegal behavior
6341// :159:30: note: when computing vector element at index '1'
6342// :159:30: error: use of undefined value here causes illegal behavior
6343// :159:30: note: when computing vector element at index '1'
6344// :159:30: error: use of undefined value here causes illegal behavior
6345// :159:30: note: when computing vector element at index '0'
6346// :159:30: error: use of undefined value here causes illegal behavior
6347// :159:30: note: when computing vector element at index '0'
6348// :159:30: error: use of undefined value here causes illegal behavior
6349// :159:30: note: when computing vector element at index '0'
6350// :159:30: error: use of undefined value here causes illegal behavior
6351// :159:30: note: when computing vector element at index '0'
6352// :159:30: error: use of undefined value here causes illegal behavior
6353// :159:30: error: use of undefined value here causes illegal behavior
6354// :159:30: error: use of undefined value here causes illegal behavior
6355// :159:30: error: use of undefined value here causes illegal behavior
6356// :159:30: error: use of undefined value here causes illegal behavior
6357// :159:30: error: use of undefined value here causes illegal behavior
6358// :159:30: error: use of undefined value here causes illegal behavior
6359// :159:30: note: when computing vector element at index '1'
6360// :159:30: error: use of undefined value here causes illegal behavior
6361// :159:30: note: when computing vector element at index '1'
6362// :159:30: error: use of undefined value here causes illegal behavior
6363// :159:30: note: when computing vector element at index '1'
6364// :159:30: error: use of undefined value here causes illegal behavior
6365// :159:30: note: when computing vector element at index '1'
6366// :159:30: error: use of undefined value here causes illegal behavior
6367// :159:30: note: when computing vector element at index '0'
6368// :159:30: error: use of undefined value here causes illegal behavior
6369// :159:30: note: when computing vector element at index '0'
6370// :159:30: error: use of undefined value here causes illegal behavior
6371// :159:30: note: when computing vector element at index '0'
6372// :159:30: error: use of undefined value here causes illegal behavior
6373// :159:30: note: when computing vector element at index '0'
6374// :163:30: error: use of undefined value here causes illegal behavior
6375// :163:30: error: use of undefined value here causes illegal behavior
6376// :163:30: error: use of undefined value here causes illegal behavior
6377// :163:30: error: use of undefined value here causes illegal behavior
6378// :163:30: error: use of undefined value here causes illegal behavior
6379// :163:30: error: use of undefined value here causes illegal behavior
6380// :163:30: error: use of undefined value here causes illegal behavior
6381// :163:30: note: when computing vector element at index '1'
6382// :163:30: error: use of undefined value here causes illegal behavior
6383// :163:30: note: when computing vector element at index '1'
6384// :163:30: error: use of undefined value here causes illegal behavior
6385// :163:30: note: when computing vector element at index '1'
6386// :163:30: error: use of undefined value here causes illegal behavior
6387// :163:30: note: when computing vector element at index '1'
6388// :163:30: error: use of undefined value here causes illegal behavior
6389// :163:30: note: when computing vector element at index '0'
6390// :163:30: error: use of undefined value here causes illegal behavior
6391// :163:30: note: when computing vector element at index '0'
6392// :163:30: error: use of undefined value here causes illegal behavior
6393// :163:30: note: when computing vector element at index '0'
6394// :163:30: error: use of undefined value here causes illegal behavior
6395// :163:30: note: when computing vector element at index '0'
6396// :163:30: error: use of undefined value here causes illegal behavior
6397// :163:30: error: use of undefined value here causes illegal behavior
6398// :163:30: error: use of undefined value here causes illegal behavior
6399// :163:30: error: use of undefined value here causes illegal behavior
6400// :163:30: error: use of undefined value here causes illegal behavior
6401// :163:30: error: use of undefined value here causes illegal behavior
6402// :163:30: error: use of undefined value here causes illegal behavior
6403// :163:30: note: when computing vector element at index '1'
6404// :163:30: error: use of undefined value here causes illegal behavior
6405// :163:30: note: when computing vector element at index '1'
6406// :163:30: error: use of undefined value here causes illegal behavior
6407// :163:30: note: when computing vector element at index '1'
6408// :163:30: error: use of undefined value here causes illegal behavior
6409// :163:30: note: when computing vector element at index '1'
6410// :163:30: error: use of undefined value here causes illegal behavior
6411// :163:30: note: when computing vector element at index '0'
6412// :163:30: error: use of undefined value here causes illegal behavior
6413// :163:30: note: when computing vector element at index '0'
6414// :163:30: error: use of undefined value here causes illegal behavior
6415// :163:30: note: when computing vector element at index '0'
6416// :163:30: error: use of undefined value here causes illegal behavior
6417// :163:30: note: when computing vector element at index '0'
6418// :163:30: error: use of undefined value here causes illegal behavior
6419// :163:30: error: use of undefined value here causes illegal behavior
6420// :163:30: error: use of undefined value here causes illegal behavior
6421// :163:30: error: use of undefined value here causes illegal behavior
6422// :163:30: error: use of undefined value here causes illegal behavior
6423// :163:30: error: use of undefined value here causes illegal behavior
6424// :163:30: error: use of undefined value here causes illegal behavior
6425// :163:30: note: when computing vector element at index '1'
6426// :163:30: error: use of undefined value here causes illegal behavior
6427// :163:30: note: when computing vector element at index '1'
6428// :163:30: error: use of undefined value here causes illegal behavior
6429// :163:30: note: when computing vector element at index '1'
6430// :163:30: error: use of undefined value here causes illegal behavior
6431// :163:30: note: when computing vector element at index '1'
6432// :163:30: error: use of undefined value here causes illegal behavior
6433// :163:30: note: when computing vector element at index '0'
6434// :163:30: error: use of undefined value here causes illegal behavior
6435// :163:30: note: when computing vector element at index '0'
6436// :163:30: error: use of undefined value here causes illegal behavior
6437// :163:30: note: when computing vector element at index '0'
6438// :163:30: error: use of undefined value here causes illegal behavior
6439// :163:30: note: when computing vector element at index '0'
6440// :163:30: error: use of undefined value here causes illegal behavior
6441// :163:30: error: use of undefined value here causes illegal behavior
6442// :163:30: error: use of undefined value here causes illegal behavior
6443// :163:30: error: use of undefined value here causes illegal behavior
6444// :163:30: error: use of undefined value here causes illegal behavior
6445// :163:30: error: use of undefined value here causes illegal behavior
6446// :163:30: error: use of undefined value here causes illegal behavior
6447// :163:30: note: when computing vector element at index '1'
6448// :163:30: error: use of undefined value here causes illegal behavior
6449// :163:30: note: when computing vector element at index '1'
6450// :163:30: error: use of undefined value here causes illegal behavior
6451// :163:30: note: when computing vector element at index '1'
6452// :163:30: error: use of undefined value here causes illegal behavior
6453// :163:30: note: when computing vector element at index '1'
6454// :163:30: error: use of undefined value here causes illegal behavior
6455// :163:30: note: when computing vector element at index '0'
6456// :163:30: error: use of undefined value here causes illegal behavior
6457// :163:30: note: when computing vector element at index '0'
6458// :163:30: error: use of undefined value here causes illegal behavior
6459// :163:30: note: when computing vector element at index '0'
6460// :163:30: error: use of undefined value here causes illegal behavior
6461// :163:30: note: when computing vector element at index '0'
6462// :163:30: error: use of undefined value here causes illegal behavior
6463// :163:30: error: use of undefined value here causes illegal behavior
6464// :163:30: error: use of undefined value here causes illegal behavior
6465// :163:30: error: use of undefined value here causes illegal behavior
6466// :163:30: error: use of undefined value here causes illegal behavior
6467// :163:30: error: use of undefined value here causes illegal behavior
6468// :163:30: error: use of undefined value here causes illegal behavior
6469// :163:30: note: when computing vector element at index '1'
6470// :163:30: error: use of undefined value here causes illegal behavior
6471// :163:30: note: when computing vector element at index '1'
6472// :163:30: error: use of undefined value here causes illegal behavior
6473// :163:30: note: when computing vector element at index '1'
6474// :163:30: error: use of undefined value here causes illegal behavior
6475// :163:30: note: when computing vector element at index '1'
6476// :163:30: error: use of undefined value here causes illegal behavior
6477// :163:30: note: when computing vector element at index '0'
6478// :163:30: error: use of undefined value here causes illegal behavior
6479// :163:30: note: when computing vector element at index '0'
6480// :163:30: error: use of undefined value here causes illegal behavior
6481// :163:30: note: when computing vector element at index '0'
6482// :163:30: error: use of undefined value here causes illegal behavior
6483// :163:30: note: when computing vector element at index '0'
6484// :163:30: error: use of undefined value here causes illegal behavior
6485// :163:30: error: use of undefined value here causes illegal behavior
6486// :163:30: error: use of undefined value here causes illegal behavior
6487// :163:30: error: use of undefined value here causes illegal behavior
6488// :163:30: error: use of undefined value here causes illegal behavior
6489// :163:30: error: use of undefined value here causes illegal behavior
6490// :163:30: error: use of undefined value here causes illegal behavior
6491// :163:30: note: when computing vector element at index '1'
6492// :163:30: error: use of undefined value here causes illegal behavior
6493// :163:30: note: when computing vector element at index '1'
6494// :163:30: error: use of undefined value here causes illegal behavior
6495// :163:30: note: when computing vector element at index '1'
6496// :163:30: error: use of undefined value here causes illegal behavior
6497// :163:30: note: when computing vector element at index '1'
6498// :163:30: error: use of undefined value here causes illegal behavior
6499// :163:30: note: when computing vector element at index '0'
6500// :163:30: error: use of undefined value here causes illegal behavior
6501// :163:30: note: when computing vector element at index '0'
6502// :163:30: error: use of undefined value here causes illegal behavior
6503// :163:30: note: when computing vector element at index '0'
6504// :163:30: error: use of undefined value here causes illegal behavior
6505// :163:30: note: when computing vector element at index '0'
6506// :163:30: error: use of undefined value here causes illegal behavior
6507// :163:30: error: use of undefined value here causes illegal behavior
6508// :163:30: error: use of undefined value here causes illegal behavior
6509// :163:30: error: use of undefined value here causes illegal behavior
6510// :163:30: error: use of undefined value here causes illegal behavior
6511// :163:30: error: use of undefined value here causes illegal behavior
6512// :163:30: error: use of undefined value here causes illegal behavior
6513// :163:30: note: when computing vector element at index '1'
6514// :163:30: error: use of undefined value here causes illegal behavior
6515// :163:30: note: when computing vector element at index '1'
6516// :163:30: error: use of undefined value here causes illegal behavior
6517// :163:30: note: when computing vector element at index '1'
6518// :163:30: error: use of undefined value here causes illegal behavior
6519// :163:30: note: when computing vector element at index '1'
6520// :163:30: error: use of undefined value here causes illegal behavior
6521// :163:30: note: when computing vector element at index '0'
6522// :163:30: error: use of undefined value here causes illegal behavior
6523// :163:30: note: when computing vector element at index '0'
6524// :163:30: error: use of undefined value here causes illegal behavior
6525// :163:30: note: when computing vector element at index '0'
6526// :163:30: error: use of undefined value here causes illegal behavior
6527// :163:30: note: when computing vector element at index '0'
6528// :163:30: error: use of undefined value here causes illegal behavior
6529// :163:30: error: use of undefined value here causes illegal behavior
6530// :163:30: error: use of undefined value here causes illegal behavior
6531// :163:30: error: use of undefined value here causes illegal behavior
6532// :163:30: error: use of undefined value here causes illegal behavior
6533// :163:30: error: use of undefined value here causes illegal behavior
6534// :163:30: error: use of undefined value here causes illegal behavior
6535// :163:30: note: when computing vector element at index '1'
6536// :163:30: error: use of undefined value here causes illegal behavior
6537// :163:30: note: when computing vector element at index '1'
6538// :163:30: error: use of undefined value here causes illegal behavior
6539// :163:30: note: when computing vector element at index '1'
6540// :163:30: error: use of undefined value here causes illegal behavior
6541// :163:30: note: when computing vector element at index '1'
6542// :163:30: error: use of undefined value here causes illegal behavior
6543// :163:30: note: when computing vector element at index '0'
6544// :163:30: error: use of undefined value here causes illegal behavior
6545// :163:30: note: when computing vector element at index '0'
6546// :163:30: error: use of undefined value here causes illegal behavior
6547// :163:30: note: when computing vector element at index '0'
6548// :163:30: error: use of undefined value here causes illegal behavior
6549// :163:30: note: when computing vector element at index '0'
6550// :163:30: error: use of undefined value here causes illegal behavior
6551// :163:30: error: use of undefined value here causes illegal behavior
6552// :163:30: error: use of undefined value here causes illegal behavior
6553// :163:30: error: use of undefined value here causes illegal behavior
6554// :163:30: error: use of undefined value here causes illegal behavior
6555// :163:30: error: use of undefined value here causes illegal behavior
6556// :163:30: error: use of undefined value here causes illegal behavior
6557// :163:30: note: when computing vector element at index '1'
6558// :163:30: error: use of undefined value here causes illegal behavior
6559// :163:30: note: when computing vector element at index '1'
6560// :163:30: error: use of undefined value here causes illegal behavior
6561// :163:30: note: when computing vector element at index '1'
6562// :163:30: error: use of undefined value here causes illegal behavior
6563// :163:30: note: when computing vector element at index '1'
6564// :163:30: error: use of undefined value here causes illegal behavior
6565// :163:30: note: when computing vector element at index '0'
6566// :163:30: error: use of undefined value here causes illegal behavior
6567// :163:30: note: when computing vector element at index '0'
6568// :163:30: error: use of undefined value here causes illegal behavior
6569// :163:30: note: when computing vector element at index '0'
6570// :163:30: error: use of undefined value here causes illegal behavior
6571// :163:30: note: when computing vector element at index '0'
6572// :163:30: error: use of undefined value here causes illegal behavior
6573// :163:30: error: use of undefined value here causes illegal behavior
6574// :163:30: error: use of undefined value here causes illegal behavior
6575// :163:30: error: use of undefined value here causes illegal behavior
6576// :163:30: error: use of undefined value here causes illegal behavior
6577// :163:30: error: use of undefined value here causes illegal behavior
6578// :163:30: error: use of undefined value here causes illegal behavior
6579// :163:30: note: when computing vector element at index '1'
6580// :163:30: error: use of undefined value here causes illegal behavior
6581// :163:30: note: when computing vector element at index '1'
6582// :163:30: error: use of undefined value here causes illegal behavior
6583// :163:30: note: when computing vector element at index '1'
6584// :163:30: error: use of undefined value here causes illegal behavior
6585// :163:30: note: when computing vector element at index '1'
6586// :163:30: error: use of undefined value here causes illegal behavior
6587// :163:30: note: when computing vector element at index '0'
6588// :163:30: error: use of undefined value here causes illegal behavior
6589// :163:30: note: when computing vector element at index '0'
6590// :163:30: error: use of undefined value here causes illegal behavior
6591// :163:30: note: when computing vector element at index '0'
6592// :163:30: error: use of undefined value here causes illegal behavior
6593// :163:30: note: when computing vector element at index '0'
6594// :163:30: error: use of undefined value here causes illegal behavior
6595// :163:30: error: use of undefined value here causes illegal behavior
6596// :163:30: error: use of undefined value here causes illegal behavior
6597// :163:30: error: use of undefined value here causes illegal behavior
6598// :163:30: error: use of undefined value here causes illegal behavior
6599// :163:30: error: use of undefined value here causes illegal behavior
6600// :163:30: error: use of undefined value here causes illegal behavior
6601// :163:30: note: when computing vector element at index '1'
6602// :163:30: error: use of undefined value here causes illegal behavior
6603// :163:30: note: when computing vector element at index '1'
6604// :163:30: error: use of undefined value here causes illegal behavior
6605// :163:30: note: when computing vector element at index '1'
6606// :163:30: error: use of undefined value here causes illegal behavior
6607// :163:30: note: when computing vector element at index '1'
6608// :163:30: error: use of undefined value here causes illegal behavior
6609// :163:30: note: when computing vector element at index '0'
6610// :163:30: error: use of undefined value here causes illegal behavior
6611// :163:30: note: when computing vector element at index '0'
6612// :163:30: error: use of undefined value here causes illegal behavior
6613// :163:30: note: when computing vector element at index '0'
6614// :163:30: error: use of undefined value here causes illegal behavior
6615// :163:30: note: when computing vector element at index '0'
6616// :167:25: error: use of undefined value here causes illegal behavior
6617// :167:25: error: use of undefined value here causes illegal behavior
6618// :167:25: error: use of undefined value here causes illegal behavior
6619// :167:25: error: use of undefined value here causes illegal behavior
6620// :167:25: error: use of undefined value here causes illegal behavior
6621// :167:25: error: use of undefined value here causes illegal behavior
6622// :167:25: error: use of undefined value here causes illegal behavior
6623// :167:25: note: when computing vector element at index '1'
6624// :167:25: error: use of undefined value here causes illegal behavior
6625// :167:25: note: when computing vector element at index '1'
6626// :167:25: error: use of undefined value here causes illegal behavior
6627// :167:25: note: when computing vector element at index '1'
6628// :167:25: error: use of undefined value here causes illegal behavior
6629// :167:25: note: when computing vector element at index '1'
6630// :167:25: error: use of undefined value here causes illegal behavior
6631// :167:25: note: when computing vector element at index '0'
6632// :167:25: error: use of undefined value here causes illegal behavior
6633// :167:25: note: when computing vector element at index '0'
6634// :167:25: error: use of undefined value here causes illegal behavior
6635// :167:25: note: when computing vector element at index '0'
6636// :167:25: error: use of undefined value here causes illegal behavior
6637// :167:25: note: when computing vector element at index '0'
6638// :167:25: error: use of undefined value here causes illegal behavior
6639// :167:25: error: use of undefined value here causes illegal behavior
6640// :167:25: error: use of undefined value here causes illegal behavior
6641// :167:25: error: use of undefined value here causes illegal behavior
6642// :167:25: error: use of undefined value here causes illegal behavior
6643// :167:25: error: use of undefined value here causes illegal behavior
6644// :167:25: error: use of undefined value here causes illegal behavior
6645// :167:25: note: when computing vector element at index '1'
6646// :167:25: error: use of undefined value here causes illegal behavior
6647// :167:25: note: when computing vector element at index '1'
6648// :167:25: error: use of undefined value here causes illegal behavior
6649// :167:25: note: when computing vector element at index '1'
6650// :167:25: error: use of undefined value here causes illegal behavior
6651// :167:25: note: when computing vector element at index '1'
6652// :167:25: error: use of undefined value here causes illegal behavior
6653// :167:25: note: when computing vector element at index '0'
6654// :167:25: error: use of undefined value here causes illegal behavior
6655// :167:25: note: when computing vector element at index '0'
6656// :167:25: error: use of undefined value here causes illegal behavior
6657// :167:25: note: when computing vector element at index '0'
6658// :167:25: error: use of undefined value here causes illegal behavior
6659// :167:25: note: when computing vector element at index '0'
6660// :167:25: error: use of undefined value here causes illegal behavior
6661// :167:25: error: use of undefined value here causes illegal behavior
6662// :167:25: error: use of undefined value here causes illegal behavior
6663// :167:25: error: use of undefined value here causes illegal behavior
6664// :167:25: error: use of undefined value here causes illegal behavior
6665// :167:25: error: use of undefined value here causes illegal behavior
6666// :167:25: error: use of undefined value here causes illegal behavior
6667// :167:25: note: when computing vector element at index '1'
6668// :167:25: error: use of undefined value here causes illegal behavior
6669// :167:25: note: when computing vector element at index '1'
6670// :167:25: error: use of undefined value here causes illegal behavior
6671// :167:25: note: when computing vector element at index '1'
6672// :167:25: error: use of undefined value here causes illegal behavior
6673// :167:25: note: when computing vector element at index '1'
6674// :167:25: error: use of undefined value here causes illegal behavior
6675// :167:25: note: when computing vector element at index '0'
6676// :167:25: error: use of undefined value here causes illegal behavior
6677// :167:25: note: when computing vector element at index '0'
6678// :167:25: error: use of undefined value here causes illegal behavior
6679// :167:25: note: when computing vector element at index '0'
6680// :167:25: error: use of undefined value here causes illegal behavior
6681// :167:25: note: when computing vector element at index '0'
6682// :167:25: error: use of undefined value here causes illegal behavior
6683// :167:25: error: use of undefined value here causes illegal behavior
6684// :167:25: error: use of undefined value here causes illegal behavior
6685// :167:25: error: use of undefined value here causes illegal behavior
6686// :167:25: error: use of undefined value here causes illegal behavior
6687// :167:25: error: use of undefined value here causes illegal behavior
6688// :167:25: error: use of undefined value here causes illegal behavior
6689// :167:25: note: when computing vector element at index '1'
6690// :167:25: error: use of undefined value here causes illegal behavior
6691// :167:25: note: when computing vector element at index '1'
6692// :167:25: error: use of undefined value here causes illegal behavior
6693// :167:25: note: when computing vector element at index '1'
6694// :167:25: error: use of undefined value here causes illegal behavior
6695// :167:25: note: when computing vector element at index '1'
6696// :167:25: error: use of undefined value here causes illegal behavior
6697// :167:25: note: when computing vector element at index '0'
6698// :167:25: error: use of undefined value here causes illegal behavior
6699// :167:25: note: when computing vector element at index '0'
6700// :167:25: error: use of undefined value here causes illegal behavior
6701// :167:25: note: when computing vector element at index '0'
6702// :167:25: error: use of undefined value here causes illegal behavior
6703// :167:25: note: when computing vector element at index '0'
6704// :167:25: error: use of undefined value here causes illegal behavior
6705// :167:25: error: use of undefined value here causes illegal behavior
6706// :167:25: error: use of undefined value here causes illegal behavior
6707// :167:25: error: use of undefined value here causes illegal behavior
6708// :167:25: error: use of undefined value here causes illegal behavior
6709// :167:25: error: use of undefined value here causes illegal behavior
6710// :167:25: error: use of undefined value here causes illegal behavior
6711// :167:25: note: when computing vector element at index '1'
6712// :167:25: error: use of undefined value here causes illegal behavior
6713// :167:25: note: when computing vector element at index '1'
6714// :167:25: error: use of undefined value here causes illegal behavior
6715// :167:25: note: when computing vector element at index '1'
6716// :167:25: error: use of undefined value here causes illegal behavior
6717// :167:25: note: when computing vector element at index '1'
6718// :167:25: error: use of undefined value here causes illegal behavior
6719// :167:25: note: when computing vector element at index '0'
6720// :167:25: error: use of undefined value here causes illegal behavior
6721// :167:25: note: when computing vector element at index '0'
6722// :167:25: error: use of undefined value here causes illegal behavior
6723// :167:25: note: when computing vector element at index '0'
6724// :167:25: error: use of undefined value here causes illegal behavior
6725// :167:25: note: when computing vector element at index '0'
6726// :167:25: error: use of undefined value here causes illegal behavior
6727// :167:25: error: use of undefined value here causes illegal behavior
6728// :167:25: error: use of undefined value here causes illegal behavior
6729// :167:25: error: use of undefined value here causes illegal behavior
6730// :167:25: error: use of undefined value here causes illegal behavior
6731// :167:25: error: use of undefined value here causes illegal behavior
6732// :167:25: error: use of undefined value here causes illegal behavior
6733// :167:25: note: when computing vector element at index '1'
6734// :167:25: error: use of undefined value here causes illegal behavior
6735// :167:25: note: when computing vector element at index '1'
6736// :167:25: error: use of undefined value here causes illegal behavior
6737// :167:25: note: when computing vector element at index '1'
6738// :167:25: error: use of undefined value here causes illegal behavior
6739// :167:25: note: when computing vector element at index '1'
6740// :167:25: error: use of undefined value here causes illegal behavior
6741// :167:25: note: when computing vector element at index '0'
6742// :167:25: error: use of undefined value here causes illegal behavior
6743// :167:25: note: when computing vector element at index '0'
6744// :167:25: error: use of undefined value here causes illegal behavior
6745// :167:25: note: when computing vector element at index '0'
6746// :167:25: error: use of undefined value here causes illegal behavior
6747// :167:25: note: when computing vector element at index '0'
6748// :167:25: error: use of undefined value here causes illegal behavior
6749// :167:25: error: use of undefined value here causes illegal behavior
6750// :167:25: error: use of undefined value here causes illegal behavior
6751// :167:25: error: use of undefined value here causes illegal behavior
6752// :167:25: error: use of undefined value here causes illegal behavior
6753// :167:25: error: use of undefined value here causes illegal behavior
6754// :167:25: error: use of undefined value here causes illegal behavior
6755// :167:25: note: when computing vector element at index '1'
6756// :167:25: error: use of undefined value here causes illegal behavior
6757// :167:25: note: when computing vector element at index '1'
6758// :167:25: error: use of undefined value here causes illegal behavior
6759// :167:25: note: when computing vector element at index '1'
6760// :167:25: error: use of undefined value here causes illegal behavior
6761// :167:25: note: when computing vector element at index '1'
6762// :167:25: error: use of undefined value here causes illegal behavior
6763// :167:25: note: when computing vector element at index '0'
6764// :167:25: error: use of undefined value here causes illegal behavior
6765// :167:25: note: when computing vector element at index '0'
6766// :167:25: error: use of undefined value here causes illegal behavior
6767// :167:25: note: when computing vector element at index '0'
6768// :167:25: error: use of undefined value here causes illegal behavior
6769// :167:25: note: when computing vector element at index '0'
6770// :167:25: error: use of undefined value here causes illegal behavior
6771// :167:25: error: use of undefined value here causes illegal behavior
6772// :167:25: error: use of undefined value here causes illegal behavior
6773// :167:25: error: use of undefined value here causes illegal behavior
6774// :167:25: error: use of undefined value here causes illegal behavior
6775// :167:25: error: use of undefined value here causes illegal behavior
6776// :167:25: error: use of undefined value here causes illegal behavior
6777// :167:25: note: when computing vector element at index '1'
6778// :167:25: error: use of undefined value here causes illegal behavior
6779// :167:25: note: when computing vector element at index '1'
6780// :167:25: error: use of undefined value here causes illegal behavior
6781// :167:25: note: when computing vector element at index '1'
6782// :167:25: error: use of undefined value here causes illegal behavior
6783// :167:25: note: when computing vector element at index '1'
6784// :167:25: error: use of undefined value here causes illegal behavior
6785// :167:25: note: when computing vector element at index '0'
6786// :167:25: error: use of undefined value here causes illegal behavior
6787// :167:25: note: when computing vector element at index '0'
6788// :167:25: error: use of undefined value here causes illegal behavior
6789// :167:25: note: when computing vector element at index '0'
6790// :167:25: error: use of undefined value here causes illegal behavior
6791// :167:25: note: when computing vector element at index '0'
6792// :167:25: error: use of undefined value here causes illegal behavior
6793// :167:25: error: use of undefined value here causes illegal behavior
6794// :167:25: error: use of undefined value here causes illegal behavior
6795// :167:25: error: use of undefined value here causes illegal behavior
6796// :167:25: error: use of undefined value here causes illegal behavior
6797// :167:25: error: use of undefined value here causes illegal behavior
6798// :167:25: error: use of undefined value here causes illegal behavior
6799// :167:25: note: when computing vector element at index '1'
6800// :167:25: error: use of undefined value here causes illegal behavior
6801// :167:25: note: when computing vector element at index '1'
6802// :167:25: error: use of undefined value here causes illegal behavior
6803// :167:25: note: when computing vector element at index '1'
6804// :167:25: error: use of undefined value here causes illegal behavior
6805// :167:25: note: when computing vector element at index '1'
6806// :167:25: error: use of undefined value here causes illegal behavior
6807// :167:25: note: when computing vector element at index '0'
6808// :167:25: error: use of undefined value here causes illegal behavior
6809// :167:25: note: when computing vector element at index '0'
6810// :167:25: error: use of undefined value here causes illegal behavior
6811// :167:25: note: when computing vector element at index '0'
6812// :167:25: error: use of undefined value here causes illegal behavior
6813// :167:25: note: when computing vector element at index '0'
6814// :167:25: error: use of undefined value here causes illegal behavior
6815// :167:25: error: use of undefined value here causes illegal behavior
6816// :167:25: error: use of undefined value here causes illegal behavior
6817// :167:25: error: use of undefined value here causes illegal behavior
6818// :167:25: error: use of undefined value here causes illegal behavior
6819// :167:25: error: use of undefined value here causes illegal behavior
6820// :167:25: error: use of undefined value here causes illegal behavior
6821// :167:25: note: when computing vector element at index '1'
6822// :167:25: error: use of undefined value here causes illegal behavior
6823// :167:25: note: when computing vector element at index '1'
6824// :167:25: error: use of undefined value here causes illegal behavior
6825// :167:25: note: when computing vector element at index '1'
6826// :167:25: error: use of undefined value here causes illegal behavior
6827// :167:25: note: when computing vector element at index '1'
6828// :167:25: error: use of undefined value here causes illegal behavior
6829// :167:25: note: when computing vector element at index '0'
6830// :167:25: error: use of undefined value here causes illegal behavior
6831// :167:25: note: when computing vector element at index '0'
6832// :167:25: error: use of undefined value here causes illegal behavior
6833// :167:25: note: when computing vector element at index '0'
6834// :167:25: error: use of undefined value here causes illegal behavior
6835// :167:25: note: when computing vector element at index '0'
6836// :167:25: error: use of undefined value here causes illegal behavior
6837// :167:25: error: use of undefined value here causes illegal behavior
6838// :167:25: error: use of undefined value here causes illegal behavior
6839// :167:25: error: use of undefined value here causes illegal behavior
6840// :167:25: error: use of undefined value here causes illegal behavior
6841// :167:25: error: use of undefined value here causes illegal behavior
6842// :167:25: error: use of undefined value here causes illegal behavior
6843// :167:25: note: when computing vector element at index '1'
6844// :167:25: error: use of undefined value here causes illegal behavior
6845// :167:25: note: when computing vector element at index '1'
6846// :167:25: error: use of undefined value here causes illegal behavior
6847// :167:25: note: when computing vector element at index '1'
6848// :167:25: error: use of undefined value here causes illegal behavior
6849// :167:25: note: when computing vector element at index '1'
6850// :167:25: error: use of undefined value here causes illegal behavior
6851// :167:25: note: when computing vector element at index '0'
6852// :167:25: error: use of undefined value here causes illegal behavior
6853// :167:25: note: when computing vector element at index '0'
6854// :167:25: error: use of undefined value here causes illegal behavior
6855// :167:25: note: when computing vector element at index '0'
6856// :167:25: error: use of undefined value here causes illegal behavior
6857// :167:25: note: when computing vector element at index '0'
6858// :171:25: error: use of undefined value here causes illegal behavior
6859// :171:25: error: use of undefined value here causes illegal behavior
6860// :171:25: error: use of undefined value here causes illegal behavior
6861// :171:25: error: use of undefined value here causes illegal behavior
6862// :171:25: error: use of undefined value here causes illegal behavior
6863// :171:25: error: use of undefined value here causes illegal behavior
6864// :171:25: error: use of undefined value here causes illegal behavior
6865// :171:25: note: when computing vector element at index '1'
6866// :171:25: error: use of undefined value here causes illegal behavior
6867// :171:25: note: when computing vector element at index '1'
6868// :171:25: error: use of undefined value here causes illegal behavior
6869// :171:25: note: when computing vector element at index '1'
6870// :171:25: error: use of undefined value here causes illegal behavior
6871// :171:25: note: when computing vector element at index '1'
6872// :171:25: error: use of undefined value here causes illegal behavior
6873// :171:25: note: when computing vector element at index '0'
6874// :171:25: error: use of undefined value here causes illegal behavior
6875// :171:25: note: when computing vector element at index '0'
6876// :171:25: error: use of undefined value here causes illegal behavior
6877// :171:25: note: when computing vector element at index '0'
6878// :171:25: error: use of undefined value here causes illegal behavior
6879// :171:25: note: when computing vector element at index '0'
6880// :171:25: error: use of undefined value here causes illegal behavior
6881// :171:25: error: use of undefined value here causes illegal behavior
6882// :171:25: error: use of undefined value here causes illegal behavior
6883// :171:25: error: use of undefined value here causes illegal behavior
6884// :171:25: error: use of undefined value here causes illegal behavior
6885// :171:25: error: use of undefined value here causes illegal behavior
6886// :171:25: error: use of undefined value here causes illegal behavior
6887// :171:25: note: when computing vector element at index '1'
6888// :171:25: error: use of undefined value here causes illegal behavior
6889// :171:25: note: when computing vector element at index '1'
6890// :171:25: error: use of undefined value here causes illegal behavior
6891// :171:25: note: when computing vector element at index '1'
6892// :171:25: error: use of undefined value here causes illegal behavior
6893// :171:25: note: when computing vector element at index '1'
6894// :171:25: error: use of undefined value here causes illegal behavior
6895// :171:25: note: when computing vector element at index '0'
6896// :171:25: error: use of undefined value here causes illegal behavior
6897// :171:25: note: when computing vector element at index '0'
6898// :171:25: error: use of undefined value here causes illegal behavior
6899// :171:25: note: when computing vector element at index '0'
6900// :171:25: error: use of undefined value here causes illegal behavior
6901// :171:25: note: when computing vector element at index '0'
6902// :171:25: error: use of undefined value here causes illegal behavior
6903// :171:25: error: use of undefined value here causes illegal behavior
6904// :171:25: error: use of undefined value here causes illegal behavior
6905// :171:25: error: use of undefined value here causes illegal behavior
6906// :171:25: error: use of undefined value here causes illegal behavior
6907// :171:25: error: use of undefined value here causes illegal behavior
6908// :171:25: error: use of undefined value here causes illegal behavior
6909// :171:25: note: when computing vector element at index '1'
6910// :171:25: error: use of undefined value here causes illegal behavior
6911// :171:25: note: when computing vector element at index '1'
6912// :171:25: error: use of undefined value here causes illegal behavior
6913// :171:25: note: when computing vector element at index '1'
6914// :171:25: error: use of undefined value here causes illegal behavior
6915// :171:25: note: when computing vector element at index '1'
6916// :171:25: error: use of undefined value here causes illegal behavior
6917// :171:25: note: when computing vector element at index '0'
6918// :171:25: error: use of undefined value here causes illegal behavior
6919// :171:25: note: when computing vector element at index '0'
6920// :171:25: error: use of undefined value here causes illegal behavior
6921// :171:25: note: when computing vector element at index '0'
6922// :171:25: error: use of undefined value here causes illegal behavior
6923// :171:25: note: when computing vector element at index '0'
6924// :171:25: error: use of undefined value here causes illegal behavior
6925// :171:25: error: use of undefined value here causes illegal behavior
6926// :171:25: error: use of undefined value here causes illegal behavior
6927// :171:25: error: use of undefined value here causes illegal behavior
6928// :171:25: error: use of undefined value here causes illegal behavior
6929// :171:25: error: use of undefined value here causes illegal behavior
6930// :171:25: error: use of undefined value here causes illegal behavior
6931// :171:25: note: when computing vector element at index '1'
6932// :171:25: error: use of undefined value here causes illegal behavior
6933// :171:25: note: when computing vector element at index '1'
6934// :171:25: error: use of undefined value here causes illegal behavior
6935// :171:25: note: when computing vector element at index '1'
6936// :171:25: error: use of undefined value here causes illegal behavior
6937// :171:25: note: when computing vector element at index '1'
6938// :171:25: error: use of undefined value here causes illegal behavior
6939// :171:25: note: when computing vector element at index '0'
6940// :171:25: error: use of undefined value here causes illegal behavior
6941// :171:25: note: when computing vector element at index '0'
6942// :171:25: error: use of undefined value here causes illegal behavior
6943// :171:25: note: when computing vector element at index '0'
6944// :171:25: error: use of undefined value here causes illegal behavior
6945// :171:25: note: when computing vector element at index '0'
6946// :171:25: error: use of undefined value here causes illegal behavior
6947// :171:25: error: use of undefined value here causes illegal behavior
6948// :171:25: error: use of undefined value here causes illegal behavior
6949// :171:25: error: use of undefined value here causes illegal behavior
6950// :171:25: error: use of undefined value here causes illegal behavior
6951// :171:25: error: use of undefined value here causes illegal behavior
6952// :171:25: error: use of undefined value here causes illegal behavior
6953// :171:25: note: when computing vector element at index '1'
6954// :171:25: error: use of undefined value here causes illegal behavior
6955// :171:25: note: when computing vector element at index '1'
6956// :171:25: error: use of undefined value here causes illegal behavior
6957// :171:25: note: when computing vector element at index '1'
6958// :171:25: error: use of undefined value here causes illegal behavior
6959// :171:25: note: when computing vector element at index '1'
6960// :171:25: error: use of undefined value here causes illegal behavior
6961// :171:25: note: when computing vector element at index '0'
6962// :171:25: error: use of undefined value here causes illegal behavior
6963// :171:25: note: when computing vector element at index '0'
6964// :171:25: error: use of undefined value here causes illegal behavior
6965// :171:25: note: when computing vector element at index '0'
6966// :171:25: error: use of undefined value here causes illegal behavior
6967// :171:25: note: when computing vector element at index '0'
6968// :171:25: error: use of undefined value here causes illegal behavior
6969// :171:25: error: use of undefined value here causes illegal behavior
6970// :171:25: error: use of undefined value here causes illegal behavior
6971// :171:25: error: use of undefined value here causes illegal behavior
6972// :171:25: error: use of undefined value here causes illegal behavior
6973// :171:25: error: use of undefined value here causes illegal behavior
6974// :171:25: error: use of undefined value here causes illegal behavior
6975// :171:25: note: when computing vector element at index '1'
6976// :171:25: error: use of undefined value here causes illegal behavior
6977// :171:25: note: when computing vector element at index '1'
6978// :171:25: error: use of undefined value here causes illegal behavior
6979// :171:25: note: when computing vector element at index '1'
6980// :171:25: error: use of undefined value here causes illegal behavior
6981// :171:25: note: when computing vector element at index '1'
6982// :171:25: error: use of undefined value here causes illegal behavior
6983// :171:25: note: when computing vector element at index '0'
6984// :171:25: error: use of undefined value here causes illegal behavior
6985// :171:25: note: when computing vector element at index '0'
6986// :171:25: error: use of undefined value here causes illegal behavior
6987// :171:25: note: when computing vector element at index '0'
6988// :171:25: error: use of undefined value here causes illegal behavior
6989// :171:25: note: when computing vector element at index '0'
6990// :171:25: error: use of undefined value here causes illegal behavior
6991// :171:25: error: use of undefined value here causes illegal behavior
6992// :171:25: error: use of undefined value here causes illegal behavior
6993// :171:25: error: use of undefined value here causes illegal behavior
6994// :171:25: error: use of undefined value here causes illegal behavior
6995// :171:25: error: use of undefined value here causes illegal behavior
6996// :171:25: error: use of undefined value here causes illegal behavior
6997// :171:25: note: when computing vector element at index '1'
6998// :171:25: error: use of undefined value here causes illegal behavior
6999// :171:25: note: when computing vector element at index '1'
7000// :171:25: error: use of undefined value here causes illegal behavior
7001// :171:25: note: when computing vector element at index '1'
7002// :171:25: error: use of undefined value here causes illegal behavior
7003// :171:25: note: when computing vector element at index '1'
7004// :171:25: error: use of undefined value here causes illegal behavior
7005// :171:25: note: when computing vector element at index '0'
7006// :171:25: error: use of undefined value here causes illegal behavior
7007// :171:25: note: when computing vector element at index '0'
7008// :171:25: error: use of undefined value here causes illegal behavior
7009// :171:25: note: when computing vector element at index '0'
7010// :171:25: error: use of undefined value here causes illegal behavior
7011// :171:25: note: when computing vector element at index '0'
7012// :171:25: error: use of undefined value here causes illegal behavior
7013// :171:25: error: use of undefined value here causes illegal behavior
7014// :171:25: error: use of undefined value here causes illegal behavior
7015// :171:25: error: use of undefined value here causes illegal behavior
7016// :171:25: error: use of undefined value here causes illegal behavior
7017// :171:25: error: use of undefined value here causes illegal behavior
7018// :171:25: error: use of undefined value here causes illegal behavior
7019// :171:25: note: when computing vector element at index '1'
7020// :171:25: error: use of undefined value here causes illegal behavior
7021// :171:25: note: when computing vector element at index '1'
7022// :171:25: error: use of undefined value here causes illegal behavior
7023// :171:25: note: when computing vector element at index '1'
7024// :171:25: error: use of undefined value here causes illegal behavior
7025// :171:25: note: when computing vector element at index '1'
7026// :171:25: error: use of undefined value here causes illegal behavior
7027// :171:25: note: when computing vector element at index '0'
7028// :171:25: error: use of undefined value here causes illegal behavior
7029// :171:25: note: when computing vector element at index '0'
7030// :171:25: error: use of undefined value here causes illegal behavior
7031// :171:25: note: when computing vector element at index '0'
7032// :171:25: error: use of undefined value here causes illegal behavior
7033// :171:25: note: when computing vector element at index '0'
7034// :171:25: error: use of undefined value here causes illegal behavior
7035// :171:25: error: use of undefined value here causes illegal behavior
7036// :171:25: error: use of undefined value here causes illegal behavior
7037// :171:25: error: use of undefined value here causes illegal behavior
7038// :171:25: error: use of undefined value here causes illegal behavior
7039// :171:25: error: use of undefined value here causes illegal behavior
7040// :171:25: error: use of undefined value here causes illegal behavior
7041// :171:25: note: when computing vector element at index '1'
7042// :171:25: error: use of undefined value here causes illegal behavior
7043// :171:25: note: when computing vector element at index '1'
7044// :171:25: error: use of undefined value here causes illegal behavior
7045// :171:25: note: when computing vector element at index '1'
7046// :171:25: error: use of undefined value here causes illegal behavior
7047// :171:25: note: when computing vector element at index '1'
7048// :171:25: error: use of undefined value here causes illegal behavior
7049// :171:25: note: when computing vector element at index '0'
7050// :171:25: error: use of undefined value here causes illegal behavior
7051// :171:25: note: when computing vector element at index '0'
7052// :171:25: error: use of undefined value here causes illegal behavior
7053// :171:25: note: when computing vector element at index '0'
7054// :171:25: error: use of undefined value here causes illegal behavior
7055// :171:25: note: when computing vector element at index '0'
7056// :171:25: error: use of undefined value here causes illegal behavior
7057// :171:25: error: use of undefined value here causes illegal behavior
7058// :171:25: error: use of undefined value here causes illegal behavior
7059// :171:25: error: use of undefined value here causes illegal behavior
7060// :171:25: error: use of undefined value here causes illegal behavior
7061// :171:25: error: use of undefined value here causes illegal behavior
7062// :171:25: error: use of undefined value here causes illegal behavior
7063// :171:25: note: when computing vector element at index '1'
7064// :171:25: error: use of undefined value here causes illegal behavior
7065// :171:25: note: when computing vector element at index '1'
7066// :171:25: error: use of undefined value here causes illegal behavior
7067// :171:25: note: when computing vector element at index '1'
7068// :171:25: error: use of undefined value here causes illegal behavior
7069// :171:25: note: when computing vector element at index '1'
7070// :171:25: error: use of undefined value here causes illegal behavior
7071// :171:25: note: when computing vector element at index '0'
7072// :171:25: error: use of undefined value here causes illegal behavior
7073// :171:25: note: when computing vector element at index '0'
7074// :171:25: error: use of undefined value here causes illegal behavior
7075// :171:25: note: when computing vector element at index '0'
7076// :171:25: error: use of undefined value here causes illegal behavior
7077// :171:25: note: when computing vector element at index '0'
7078// :171:25: error: use of undefined value here causes illegal behavior
7079// :171:25: error: use of undefined value here causes illegal behavior
7080// :171:25: error: use of undefined value here causes illegal behavior
7081// :171:25: error: use of undefined value here causes illegal behavior
7082// :171:25: error: use of undefined value here causes illegal behavior
7083// :171:25: error: use of undefined value here causes illegal behavior
7084// :171:25: error: use of undefined value here causes illegal behavior
7085// :171:25: note: when computing vector element at index '1'
7086// :171:25: error: use of undefined value here causes illegal behavior
7087// :171:25: note: when computing vector element at index '1'
7088// :171:25: error: use of undefined value here causes illegal behavior
7089// :171:25: note: when computing vector element at index '1'
7090// :171:25: error: use of undefined value here causes illegal behavior
7091// :171:25: note: when computing vector element at index '1'
7092// :171:25: error: use of undefined value here causes illegal behavior
7093// :171:25: note: when computing vector element at index '0'
7094// :171:25: error: use of undefined value here causes illegal behavior
7095// :171:25: note: when computing vector element at index '0'
7096// :171:25: error: use of undefined value here causes illegal behavior
7097// :171:25: note: when computing vector element at index '0'
7098// :171:25: error: use of undefined value here causes illegal behavior
7099// :171:25: note: when computing vector element at index '0'
7100// :177:17: error: use of undefined value here causes illegal behavior
7101// :177:17: error: use of undefined value here causes illegal behavior
7102// :177:17: error: use of undefined value here causes illegal behavior
7103// :177:17: note: when computing vector element at index '0'
7104// :177:17: error: use of undefined value here causes illegal behavior
7105// :177:17: note: when computing vector element at index '0'
7106// :177:17: error: use of undefined value here causes illegal behavior
7107// :177:17: note: when computing vector element at index '0'
7108// :177:17: error: use of undefined value here causes illegal behavior
7109// :177:17: note: when computing vector element at index '0'
7110// :177:17: error: use of undefined value here causes illegal behavior
7111// :177:17: note: when computing vector element at index '1'
7112// :177:17: error: use of undefined value here causes illegal behavior
7113// :177:17: note: when computing vector element at index '1'
7114// :177:17: error: use of undefined value here causes illegal behavior
7115// :177:17: note: when computing vector element at index '0'
7116// :177:17: error: use of undefined value here causes illegal behavior
7117// :177:17: note: when computing vector element at index '0'
7118// :177:17: error: use of undefined value here causes illegal behavior
7119// :177:17: note: when computing vector element at index '0'
7120// :177:17: error: use of undefined value here causes illegal behavior
7121// :177:17: note: when computing vector element at index '0'
7122// :177:17: error: use of undefined value here causes illegal behavior
7123// :177:17: error: use of undefined value here causes illegal behavior
7124// :177:17: error: use of undefined value here causes illegal behavior
7125// :177:17: note: when computing vector element at index '0'
7126// :177:17: error: use of undefined value here causes illegal behavior
7127// :177:17: note: when computing vector element at index '0'
7128// :177:17: error: use of undefined value here causes illegal behavior
7129// :177:17: note: when computing vector element at index '0'
7130// :177:17: error: use of undefined value here causes illegal behavior
7131// :177:17: note: when computing vector element at index '0'
7132// :177:17: error: use of undefined value here causes illegal behavior
7133// :177:17: note: when computing vector element at index '1'
7134// :177:17: error: use of undefined value here causes illegal behavior
7135// :177:17: note: when computing vector element at index '1'
7136// :177:17: error: use of undefined value here causes illegal behavior
7137// :177:17: note: when computing vector element at index '0'
7138// :177:17: error: use of undefined value here causes illegal behavior
7139// :177:17: note: when computing vector element at index '0'
7140// :177:17: error: use of undefined value here causes illegal behavior
7141// :177:17: note: when computing vector element at index '0'
7142// :177:17: error: use of undefined value here causes illegal behavior
7143// :177:17: note: when computing vector element at index '0'
7144// :177:17: error: use of undefined value here causes illegal behavior
7145// :177:17: error: use of undefined value here causes illegal behavior
7146// :177:17: error: use of undefined value here causes illegal behavior
7147// :177:17: note: when computing vector element at index '0'
7148// :177:17: error: use of undefined value here causes illegal behavior
7149// :177:17: note: when computing vector element at index '0'
7150// :177:17: error: use of undefined value here causes illegal behavior
7151// :177:17: note: when computing vector element at index '0'
7152// :177:17: error: use of undefined value here causes illegal behavior
7153// :177:17: note: when computing vector element at index '0'
7154// :177:17: error: use of undefined value here causes illegal behavior
7155// :177:17: note: when computing vector element at index '1'
7156// :177:17: error: use of undefined value here causes illegal behavior
7157// :177:17: note: when computing vector element at index '1'
7158// :177:17: error: use of undefined value here causes illegal behavior
7159// :177:17: note: when computing vector element at index '0'
7160// :177:17: error: use of undefined value here causes illegal behavior
7161// :177:17: note: when computing vector element at index '0'
7162// :177:17: error: use of undefined value here causes illegal behavior
7163// :177:17: note: when computing vector element at index '0'
7164// :177:17: error: use of undefined value here causes illegal behavior
7165// :177:17: note: when computing vector element at index '0'
7166// :177:17: error: use of undefined value here causes illegal behavior
7167// :177:17: error: use of undefined value here causes illegal behavior
7168// :177:17: error: use of undefined value here causes illegal behavior
7169// :177:17: note: when computing vector element at index '0'
7170// :177:17: error: use of undefined value here causes illegal behavior
7171// :177:17: note: when computing vector element at index '0'
7172// :177:17: error: use of undefined value here causes illegal behavior
7173// :177:17: note: when computing vector element at index '0'
7174// :177:17: error: use of undefined value here causes illegal behavior
7175// :177:17: note: when computing vector element at index '0'
7176// :177:17: error: use of undefined value here causes illegal behavior
7177// :177:17: note: when computing vector element at index '1'
7178// :177:17: error: use of undefined value here causes illegal behavior
7179// :177:17: note: when computing vector element at index '1'
7180// :177:17: error: use of undefined value here causes illegal behavior
7181// :177:17: note: when computing vector element at index '0'
7182// :177:17: error: use of undefined value here causes illegal behavior
7183// :177:17: note: when computing vector element at index '0'
7184// :177:17: error: use of undefined value here causes illegal behavior
7185// :177:17: note: when computing vector element at index '0'
7186// :177:17: error: use of undefined value here causes illegal behavior
7187// :177:17: note: when computing vector element at index '0'
7188// :177:17: error: use of undefined value here causes illegal behavior
7189// :177:17: error: use of undefined value here causes illegal behavior
7190// :177:17: error: use of undefined value here causes illegal behavior
7191// :177:17: note: when computing vector element at index '0'
7192// :177:17: error: use of undefined value here causes illegal behavior
7193// :177:17: note: when computing vector element at index '0'
7194// :177:17: error: use of undefined value here causes illegal behavior
7195// :177:17: note: when computing vector element at index '0'
7196// :177:17: error: use of undefined value here causes illegal behavior
7197// :177:17: note: when computing vector element at index '0'
7198// :177:17: error: use of undefined value here causes illegal behavior
7199// :177:17: note: when computing vector element at index '1'
7200// :177:17: error: use of undefined value here causes illegal behavior
7201// :177:17: note: when computing vector element at index '1'
7202// :177:17: error: use of undefined value here causes illegal behavior
7203// :177:17: note: when computing vector element at index '0'
7204// :177:17: error: use of undefined value here causes illegal behavior
7205// :177:17: note: when computing vector element at index '0'
7206// :177:17: error: use of undefined value here causes illegal behavior
7207// :177:17: note: when computing vector element at index '0'
7208// :177:17: error: use of undefined value here causes illegal behavior
7209// :177:17: note: when computing vector element at index '0'
7210// :177:17: error: use of undefined value here causes illegal behavior
7211// :177:17: error: use of undefined value here causes illegal behavior
7212// :177:17: error: use of undefined value here causes illegal behavior
7213// :177:17: note: when computing vector element at index '0'
7214// :177:17: error: use of undefined value here causes illegal behavior
7215// :177:17: note: when computing vector element at index '0'
7216// :177:17: error: use of undefined value here causes illegal behavior
7217// :177:17: note: when computing vector element at index '0'
7218// :177:17: error: use of undefined value here causes illegal behavior
7219// :177:17: note: when computing vector element at index '0'
7220// :177:17: error: use of undefined value here causes illegal behavior
7221// :177:17: note: when computing vector element at index '1'
7222// :177:17: error: use of undefined value here causes illegal behavior
7223// :177:17: note: when computing vector element at index '1'
7224// :177:17: error: use of undefined value here causes illegal behavior
7225// :177:17: note: when computing vector element at index '0'
7226// :177:17: error: use of undefined value here causes illegal behavior
7227// :177:17: note: when computing vector element at index '0'
7228// :177:17: error: use of undefined value here causes illegal behavior
7229// :177:17: note: when computing vector element at index '0'
7230// :177:17: error: use of undefined value here causes illegal behavior
7231// :177:17: note: when computing vector element at index '0'
7232// :177:21: error: use of undefined value here causes illegal behavior
7233// :177:21: note: when computing vector element at index '0'
7234// :177:21: error: use of undefined value here causes illegal behavior
7235// :177:21: note: when computing vector element at index '0'
7236// :177:21: error: use of undefined value here causes illegal behavior
7237// :177:21: note: when computing vector element at index '0'
7238// :177:21: error: use of undefined value here causes illegal behavior
7239// :177:21: note: when computing vector element at index '0'
7240// :177:21: error: use of undefined value here causes illegal behavior
7241// :177:21: note: when computing vector element at index '0'
7242// :177:21: error: use of undefined value here causes illegal behavior
7243// :177:21: note: when computing vector element at index '0'
7244// :177:21: error: use of undefined value here causes illegal behavior
7245// :177:21: note: when computing vector element at index '0'
7246// :177:21: error: use of undefined value here causes illegal behavior
7247// :177:21: note: when computing vector element at index '0'
7248// :177:21: error: use of undefined value here causes illegal behavior
7249// :177:21: note: when computing vector element at index '0'
7250// :177:21: error: use of undefined value here causes illegal behavior
7251// :177:21: note: when computing vector element at index '0'
7252// :177:21: error: use of undefined value here causes illegal behavior
7253// :177:21: note: when computing vector element at index '0'
7254// :177:21: error: use of undefined value here causes illegal behavior
7255// :177:21: note: when computing vector element at index '0'
7256// :180:17: error: use of undefined value here causes illegal behavior
7257// :180:17: error: use of undefined value here causes illegal behavior
7258// :180:17: error: use of undefined value here causes illegal behavior
7259// :180:17: note: when computing vector element at index '0'
7260// :180:17: error: use of undefined value here causes illegal behavior
7261// :180:17: note: when computing vector element at index '0'
7262// :180:17: error: use of undefined value here causes illegal behavior
7263// :180:17: note: when computing vector element at index '0'
7264// :180:17: error: use of undefined value here causes illegal behavior
7265// :180:17: note: when computing vector element at index '0'
7266// :180:17: error: use of undefined value here causes illegal behavior
7267// :180:17: note: when computing vector element at index '1'
7268// :180:17: error: use of undefined value here causes illegal behavior
7269// :180:17: note: when computing vector element at index '1'
7270// :180:17: error: use of undefined value here causes illegal behavior
7271// :180:17: note: when computing vector element at index '0'
7272// :180:17: error: use of undefined value here causes illegal behavior
7273// :180:17: note: when computing vector element at index '0'
7274// :180:17: error: use of undefined value here causes illegal behavior
7275// :180:17: note: when computing vector element at index '0'
7276// :180:17: error: use of undefined value here causes illegal behavior
7277// :180:17: note: when computing vector element at index '0'
7278// :180:17: error: use of undefined value here causes illegal behavior
7279// :180:17: error: use of undefined value here causes illegal behavior
7280// :180:17: error: use of undefined value here causes illegal behavior
7281// :180:17: note: when computing vector element at index '0'
7282// :180:17: error: use of undefined value here causes illegal behavior
7283// :180:17: note: when computing vector element at index '0'
7284// :180:17: error: use of undefined value here causes illegal behavior
7285// :180:17: note: when computing vector element at index '0'
7286// :180:17: error: use of undefined value here causes illegal behavior
7287// :180:17: note: when computing vector element at index '0'
7288// :180:17: error: use of undefined value here causes illegal behavior
7289// :180:17: note: when computing vector element at index '1'
7290// :180:17: error: use of undefined value here causes illegal behavior
7291// :180:17: note: when computing vector element at index '1'
7292// :180:17: error: use of undefined value here causes illegal behavior
7293// :180:17: note: when computing vector element at index '0'
7294// :180:17: error: use of undefined value here causes illegal behavior
7295// :180:17: note: when computing vector element at index '0'
7296// :180:17: error: use of undefined value here causes illegal behavior
7297// :180:17: note: when computing vector element at index '0'
7298// :180:17: error: use of undefined value here causes illegal behavior
7299// :180:17: note: when computing vector element at index '0'
7300// :180:17: error: use of undefined value here causes illegal behavior
7301// :180:17: error: use of undefined value here causes illegal behavior
7302// :180:17: error: use of undefined value here causes illegal behavior
7303// :180:17: note: when computing vector element at index '0'
7304// :180:17: error: use of undefined value here causes illegal behavior
7305// :180:17: note: when computing vector element at index '0'
7306// :180:17: error: use of undefined value here causes illegal behavior
7307// :180:17: note: when computing vector element at index '0'
7308// :180:17: error: use of undefined value here causes illegal behavior
7309// :180:17: note: when computing vector element at index '0'
7310// :180:17: error: use of undefined value here causes illegal behavior
7311// :180:17: note: when computing vector element at index '1'
7312// :180:17: error: use of undefined value here causes illegal behavior
7313// :180:17: note: when computing vector element at index '1'
7314// :180:17: error: use of undefined value here causes illegal behavior
7315// :180:17: note: when computing vector element at index '0'
7316// :180:17: error: use of undefined value here causes illegal behavior
7317// :180:17: note: when computing vector element at index '0'
7318// :180:17: error: use of undefined value here causes illegal behavior
7319// :180:17: note: when computing vector element at index '0'
7320// :180:17: error: use of undefined value here causes illegal behavior
7321// :180:17: note: when computing vector element at index '0'
7322// :180:17: error: use of undefined value here causes illegal behavior
7323// :180:17: error: use of undefined value here causes illegal behavior
7324// :180:17: error: use of undefined value here causes illegal behavior
7325// :180:17: note: when computing vector element at index '0'
7326// :180:17: error: use of undefined value here causes illegal behavior
7327// :180:17: note: when computing vector element at index '0'
7328// :180:17: error: use of undefined value here causes illegal behavior
7329// :180:17: note: when computing vector element at index '0'
7330// :180:17: error: use of undefined value here causes illegal behavior
7331// :180:17: note: when computing vector element at index '0'
7332// :180:17: error: use of undefined value here causes illegal behavior
7333// :180:17: note: when computing vector element at index '1'
7334// :180:17: error: use of undefined value here causes illegal behavior
7335// :180:17: note: when computing vector element at index '1'
7336// :180:17: error: use of undefined value here causes illegal behavior
7337// :180:17: note: when computing vector element at index '0'
7338// :180:17: error: use of undefined value here causes illegal behavior
7339// :180:17: note: when computing vector element at index '0'
7340// :180:17: error: use of undefined value here causes illegal behavior
7341// :180:17: note: when computing vector element at index '0'
7342// :180:17: error: use of undefined value here causes illegal behavior
7343// :180:17: note: when computing vector element at index '0'
7344// :180:17: error: use of undefined value here causes illegal behavior
7345// :180:17: error: use of undefined value here causes illegal behavior
7346// :180:17: error: use of undefined value here causes illegal behavior
7347// :180:17: note: when computing vector element at index '0'
7348// :180:17: error: use of undefined value here causes illegal behavior
7349// :180:17: note: when computing vector element at index '0'
7350// :180:17: error: use of undefined value here causes illegal behavior
7351// :180:17: note: when computing vector element at index '0'
7352// :180:17: error: use of undefined value here causes illegal behavior
7353// :180:17: note: when computing vector element at index '0'
7354// :180:17: error: use of undefined value here causes illegal behavior
7355// :180:17: note: when computing vector element at index '1'
7356// :180:17: error: use of undefined value here causes illegal behavior
7357// :180:17: note: when computing vector element at index '1'
7358// :180:17: error: use of undefined value here causes illegal behavior
7359// :180:17: note: when computing vector element at index '0'
7360// :180:17: error: use of undefined value here causes illegal behavior
7361// :180:17: note: when computing vector element at index '0'
7362// :180:17: error: use of undefined value here causes illegal behavior
7363// :180:17: note: when computing vector element at index '0'
7364// :180:17: error: use of undefined value here causes illegal behavior
7365// :180:17: note: when computing vector element at index '0'
7366// :180:17: error: use of undefined value here causes illegal behavior
7367// :180:17: error: use of undefined value here causes illegal behavior
7368// :180:17: error: use of undefined value here causes illegal behavior
7369// :180:17: note: when computing vector element at index '0'
7370// :180:17: error: use of undefined value here causes illegal behavior
7371// :180:17: note: when computing vector element at index '0'
7372// :180:17: error: use of undefined value here causes illegal behavior
7373// :180:17: note: when computing vector element at index '0'
7374// :180:17: error: use of undefined value here causes illegal behavior
7375// :180:17: note: when computing vector element at index '0'
7376// :180:17: error: use of undefined value here causes illegal behavior
7377// :180:17: note: when computing vector element at index '1'
7378// :180:17: error: use of undefined value here causes illegal behavior
7379// :180:17: note: when computing vector element at index '1'
7380// :180:17: error: use of undefined value here causes illegal behavior
7381// :180:17: note: when computing vector element at index '0'
7382// :180:17: error: use of undefined value here causes illegal behavior
7383// :180:17: note: when computing vector element at index '0'
7384// :180:17: error: use of undefined value here causes illegal behavior
7385// :180:17: note: when computing vector element at index '0'
7386// :180:17: error: use of undefined value here causes illegal behavior
7387// :180:17: note: when computing vector element at index '0'
7388// :180:21: error: use of undefined value here causes illegal behavior
7389// :180:21: note: when computing vector element at index '0'
7390// :180:21: error: use of undefined value here causes illegal behavior
7391// :180:21: note: when computing vector element at index '0'
7392// :180:21: error: use of undefined value here causes illegal behavior
7393// :180:21: note: when computing vector element at index '0'
7394// :180:21: error: use of undefined value here causes illegal behavior
7395// :180:21: note: when computing vector element at index '0'
7396// :180:21: error: use of undefined value here causes illegal behavior
7397// :180:21: note: when computing vector element at index '0'
7398// :180:21: error: use of undefined value here causes illegal behavior
7399// :180:21: note: when computing vector element at index '0'
7400// :180:21: error: use of undefined value here causes illegal behavior
7401// :180:21: note: when computing vector element at index '0'
7402// :180:21: error: use of undefined value here causes illegal behavior
7403// :180:21: note: when computing vector element at index '0'
7404// :180:21: error: use of undefined value here causes illegal behavior
7405// :180:21: note: when computing vector element at index '0'
7406// :180:21: error: use of undefined value here causes illegal behavior
7407// :180:21: note: when computing vector element at index '0'
7408// :180:21: error: use of undefined value here causes illegal behavior
7409// :180:21: note: when computing vector element at index '0'
7410// :180:21: error: use of undefined value here causes illegal behavior
7411// :180:21: note: when computing vector element at index '0'
7412// :183:17: error: use of undefined value here causes illegal behavior
7413// :183:17: error: use of undefined value here causes illegal behavior
7414// :183:17: error: use of undefined value here causes illegal behavior
7415// :183:17: note: when computing vector element at index '0'
7416// :183:17: error: use of undefined value here causes illegal behavior
7417// :183:17: note: when computing vector element at index '0'
7418// :183:17: error: use of undefined value here causes illegal behavior
7419// :183:17: note: when computing vector element at index '0'
7420// :183:17: error: use of undefined value here causes illegal behavior
7421// :183:17: note: when computing vector element at index '0'
7422// :183:17: error: use of undefined value here causes illegal behavior
7423// :183:17: note: when computing vector element at index '1'
7424// :183:17: error: use of undefined value here causes illegal behavior
7425// :183:17: note: when computing vector element at index '1'
7426// :183:17: error: use of undefined value here causes illegal behavior
7427// :183:17: note: when computing vector element at index '0'
7428// :183:17: error: use of undefined value here causes illegal behavior
7429// :183:17: note: when computing vector element at index '0'
7430// :183:17: error: use of undefined value here causes illegal behavior
7431// :183:17: note: when computing vector element at index '0'
7432// :183:17: error: use of undefined value here causes illegal behavior
7433// :183:17: note: when computing vector element at index '0'
7434// :183:17: error: use of undefined value here causes illegal behavior
7435// :183:17: error: use of undefined value here causes illegal behavior
7436// :183:17: error: use of undefined value here causes illegal behavior
7437// :183:17: note: when computing vector element at index '0'
7438// :183:17: error: use of undefined value here causes illegal behavior
7439// :183:17: note: when computing vector element at index '0'
7440// :183:17: error: use of undefined value here causes illegal behavior
7441// :183:17: note: when computing vector element at index '0'
7442// :183:17: error: use of undefined value here causes illegal behavior
7443// :183:17: note: when computing vector element at index '0'
7444// :183:17: error: use of undefined value here causes illegal behavior
7445// :183:17: note: when computing vector element at index '1'
7446// :183:17: error: use of undefined value here causes illegal behavior
7447// :183:17: note: when computing vector element at index '1'
7448// :183:17: error: use of undefined value here causes illegal behavior
7449// :183:17: note: when computing vector element at index '0'
7450// :183:17: error: use of undefined value here causes illegal behavior
7451// :183:17: note: when computing vector element at index '0'
7452// :183:17: error: use of undefined value here causes illegal behavior
7453// :183:17: note: when computing vector element at index '0'
7454// :183:17: error: use of undefined value here causes illegal behavior
7455// :183:17: note: when computing vector element at index '0'
7456// :183:17: error: use of undefined value here causes illegal behavior
7457// :183:17: error: use of undefined value here causes illegal behavior
7458// :183:17: error: use of undefined value here causes illegal behavior
7459// :183:17: note: when computing vector element at index '0'
7460// :183:17: error: use of undefined value here causes illegal behavior
7461// :183:17: note: when computing vector element at index '0'
7462// :183:17: error: use of undefined value here causes illegal behavior
7463// :183:17: note: when computing vector element at index '0'
7464// :183:17: error: use of undefined value here causes illegal behavior
7465// :183:17: note: when computing vector element at index '0'
7466// :183:17: error: use of undefined value here causes illegal behavior
7467// :183:17: note: when computing vector element at index '1'
7468// :183:17: error: use of undefined value here causes illegal behavior
7469// :183:17: note: when computing vector element at index '1'
7470// :183:17: error: use of undefined value here causes illegal behavior
7471// :183:17: note: when computing vector element at index '0'
7472// :183:17: error: use of undefined value here causes illegal behavior
7473// :183:17: note: when computing vector element at index '0'
7474// :183:17: error: use of undefined value here causes illegal behavior
7475// :183:17: note: when computing vector element at index '0'
7476// :183:17: error: use of undefined value here causes illegal behavior
7477// :183:17: note: when computing vector element at index '0'
7478// :183:17: error: use of undefined value here causes illegal behavior
7479// :183:17: error: use of undefined value here causes illegal behavior
7480// :183:17: error: use of undefined value here causes illegal behavior
7481// :183:17: note: when computing vector element at index '0'
7482// :183:17: error: use of undefined value here causes illegal behavior
7483// :183:17: note: when computing vector element at index '0'
7484// :183:17: error: use of undefined value here causes illegal behavior
7485// :183:17: note: when computing vector element at index '0'
7486// :183:17: error: use of undefined value here causes illegal behavior
7487// :183:17: note: when computing vector element at index '0'
7488// :183:17: error: use of undefined value here causes illegal behavior
7489// :183:17: note: when computing vector element at index '1'
7490// :183:17: error: use of undefined value here causes illegal behavior
7491// :183:17: note: when computing vector element at index '1'
7492// :183:17: error: use of undefined value here causes illegal behavior
7493// :183:17: note: when computing vector element at index '0'
7494// :183:17: error: use of undefined value here causes illegal behavior
7495// :183:17: note: when computing vector element at index '0'
7496// :183:17: error: use of undefined value here causes illegal behavior
7497// :183:17: note: when computing vector element at index '0'
7498// :183:17: error: use of undefined value here causes illegal behavior
7499// :183:17: note: when computing vector element at index '0'
7500// :183:17: error: use of undefined value here causes illegal behavior
7501// :183:17: error: use of undefined value here causes illegal behavior
7502// :183:17: error: use of undefined value here causes illegal behavior
7503// :183:17: note: when computing vector element at index '0'
7504// :183:17: error: use of undefined value here causes illegal behavior
7505// :183:17: note: when computing vector element at index '0'
7506// :183:17: error: use of undefined value here causes illegal behavior
7507// :183:17: note: when computing vector element at index '0'
7508// :183:17: error: use of undefined value here causes illegal behavior
7509// :183:17: note: when computing vector element at index '0'
7510// :183:17: error: use of undefined value here causes illegal behavior
7511// :183:17: note: when computing vector element at index '1'
7512// :183:17: error: use of undefined value here causes illegal behavior
7513// :183:17: note: when computing vector element at index '1'
7514// :183:17: error: use of undefined value here causes illegal behavior
7515// :183:17: note: when computing vector element at index '0'
7516// :183:17: error: use of undefined value here causes illegal behavior
7517// :183:17: note: when computing vector element at index '0'
7518// :183:17: error: use of undefined value here causes illegal behavior
7519// :183:17: note: when computing vector element at index '0'
7520// :183:17: error: use of undefined value here causes illegal behavior
7521// :183:17: note: when computing vector element at index '0'
7522// :183:17: error: use of undefined value here causes illegal behavior
7523// :183:17: error: use of undefined value here causes illegal behavior
7524// :183:17: error: use of undefined value here causes illegal behavior
7525// :183:17: note: when computing vector element at index '0'
7526// :183:17: error: use of undefined value here causes illegal behavior
7527// :183:17: note: when computing vector element at index '0'
7528// :183:17: error: use of undefined value here causes illegal behavior
7529// :183:17: note: when computing vector element at index '0'
7530// :183:17: error: use of undefined value here causes illegal behavior
7531// :183:17: note: when computing vector element at index '0'
7532// :183:17: error: use of undefined value here causes illegal behavior
7533// :183:17: note: when computing vector element at index '1'
7534// :183:17: error: use of undefined value here causes illegal behavior
7535// :183:17: note: when computing vector element at index '1'
7536// :183:17: error: use of undefined value here causes illegal behavior
7537// :183:17: note: when computing vector element at index '0'
7538// :183:17: error: use of undefined value here causes illegal behavior
7539// :183:17: note: when computing vector element at index '0'
7540// :183:17: error: use of undefined value here causes illegal behavior
7541// :183:17: note: when computing vector element at index '0'
7542// :183:17: error: use of undefined value here causes illegal behavior
7543// :183:17: note: when computing vector element at index '0'
7544// :183:21: error: use of undefined value here causes illegal behavior
7545// :183:21: note: when computing vector element at index '0'
7546// :183:21: error: use of undefined value here causes illegal behavior
7547// :183:21: note: when computing vector element at index '0'
7548// :183:21: error: use of undefined value here causes illegal behavior
7549// :183:21: note: when computing vector element at index '0'
7550// :183:21: error: use of undefined value here causes illegal behavior
7551// :183:21: note: when computing vector element at index '0'
7552// :183:21: error: use of undefined value here causes illegal behavior
7553// :183:21: note: when computing vector element at index '0'
7554// :183:21: error: use of undefined value here causes illegal behavior
7555// :183:21: note: when computing vector element at index '0'
7556// :183:21: error: use of undefined value here causes illegal behavior
7557// :183:21: note: when computing vector element at index '0'
7558// :183:21: error: use of undefined value here causes illegal behavior
7559// :183:21: note: when computing vector element at index '0'
7560// :183:21: error: use of undefined value here causes illegal behavior
7561// :183:21: note: when computing vector element at index '0'
7562// :183:21: error: use of undefined value here causes illegal behavior
7563// :183:21: note: when computing vector element at index '0'
7564// :183:21: error: use of undefined value here causes illegal behavior
7565// :183:21: note: when computing vector element at index '0'
7566// :183:21: error: use of undefined value here causes illegal behavior
7567// :183:21: note: when computing vector element at index '0'