master
   1//! For shift 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    // 20*14*6 = 1680
   8
   9    testType(u8);
  10    testType(i8);
  11    testType(u32);
  12    testType(i32);
  13    testType(u500);
  14    testType(i500);
  15}
  16
  17fn testType(comptime Scalar: type) void {
  18    // zig fmt: off
  19    testInner(Scalar,             undefined,                 0                        );
  20    testInner(Scalar,             undefined,                 undefined                );
  21    testInner(@Vector(2, Scalar), .{ undefined, undefined }, .{ undefined, undefined });
  22    testInner(@Vector(2, Scalar), .{ undefined, undefined }, .{ 0,         0         });
  23    testInner(@Vector(2, Scalar), .{ undefined, undefined }, .{ 0,         undefined });
  24    testInner(@Vector(2, Scalar), .{ undefined, undefined }, .{ undefined, 0         });
  25    testInner(@Vector(2, Scalar), .{ 0,         undefined }, .{ undefined, undefined });
  26    testInner(@Vector(2, Scalar), .{ 0,         undefined }, .{ 0,         0         });
  27    testInner(@Vector(2, Scalar), .{ 0,         undefined }, .{ 0,         undefined });
  28    testInner(@Vector(2, Scalar), .{ 0,         undefined }, .{ undefined, 0         });
  29    testInner(@Vector(2, Scalar), .{ undefined, 0         }, .{ undefined, undefined });
  30    testInner(@Vector(2, Scalar), .{ undefined, 0         }, .{ 0,         0         });
  31    testInner(@Vector(2, Scalar), .{ undefined, 0         }, .{ 0,         undefined });
  32    testInner(@Vector(2, Scalar), .{ undefined, 0         }, .{ undefined, 0         });
  33    // zig fmt: on
  34}
  35
  36fn Log2T(comptime T: type) type {
  37    return switch (@typeInfo(T)) {
  38        .int => std.math.Log2Int(T),
  39        .vector => |v| @Vector(v.len, std.math.Log2Int(v.child)),
  40        else => unreachable,
  41    };
  42}
  43
  44/// At the time of writing, this is expected to trigger:
  45/// * 20 errors if `T` is an int (or vector of ints)
  46fn testInner(comptime T: type, comptime u: T, comptime maybe_defined: Log2T(T)) void {
  47    _ = struct {
  48        const a: Log2T(T) = maybe_defined;
  49        var b: Log2T(T) = maybe_defined;
  50
  51        // undef LHS, comptime-known RHS
  52        comptime {
  53            _ = u << a;
  54        }
  55        comptime {
  56            _ = @shlExact(u, a);
  57        }
  58        comptime {
  59            _ = @shlWithOverflow(u, a);
  60        }
  61        comptime {
  62            _ = u >> a;
  63        }
  64        comptime {
  65            _ = @shrExact(u, a);
  66        }
  67
  68        // undef LHS, runtime-known RHS
  69        comptime {
  70            _ = u << b;
  71        }
  72        comptime {
  73            _ = @shlExact(u, b);
  74        }
  75        comptime {
  76            _ = @shlWithOverflow(u, b);
  77        }
  78        comptime {
  79            _ = u >> @truncate(b);
  80        }
  81        comptime {
  82            _ = @shrExact(u, b);
  83        }
  84
  85        // undef RHS, comptime-known LHS
  86        comptime {
  87            _ = a << u;
  88        }
  89        comptime {
  90            _ = @shlExact(a, u);
  91        }
  92        comptime {
  93            _ = @shlWithOverflow(a, u);
  94        }
  95        comptime {
  96            _ = a >> u;
  97        }
  98        comptime {
  99            _ = @shrExact(a, u);
 100        }
 101
 102        // undef RHS, runtime-known LHS
 103        comptime {
 104            _ = b << u;
 105        }
 106        comptime {
 107            _ = @shlExact(b, u);
 108        }
 109        comptime {
 110            _ = @shlWithOverflow(b, u);
 111        }
 112        comptime {
 113            _ = b >> u;
 114        }
 115        comptime {
 116            _ = @shrExact(b, u);
 117        }
 118    };
 119}
 120
 121const std = @import("std");
 122
 123// error
 124//
 125// :53:17: error: use of undefined value here causes illegal behavior
 126// :53:17: error: use of undefined value here causes illegal behavior
 127// :53:17: error: use of undefined value here causes illegal behavior
 128// :53:17: note: when computing vector element at index '0'
 129// :53:17: error: use of undefined value here causes illegal behavior
 130// :53:17: note: when computing vector element at index '0'
 131// :53:17: error: use of undefined value here causes illegal behavior
 132// :53:17: note: when computing vector element at index '0'
 133// :53:17: error: use of undefined value here causes illegal behavior
 134// :53:17: note: when computing vector element at index '0'
 135// :53:17: error: use of undefined value here causes illegal behavior
 136// :53:17: note: when computing vector element at index '1'
 137// :53:17: error: use of undefined value here causes illegal behavior
 138// :53:17: note: when computing vector element at index '1'
 139// :53:17: error: use of undefined value here causes illegal behavior
 140// :53:17: note: when computing vector element at index '0'
 141// :53:17: error: use of undefined value here causes illegal behavior
 142// :53:17: note: when computing vector element at index '0'
 143// :53:17: error: use of undefined value here causes illegal behavior
 144// :53:17: note: when computing vector element at index '0'
 145// :53:17: error: use of undefined value here causes illegal behavior
 146// :53:17: note: when computing vector element at index '0'
 147// :53:17: error: use of undefined value here causes illegal behavior
 148// :53:17: error: use of undefined value here causes illegal behavior
 149// :53:17: error: use of undefined value here causes illegal behavior
 150// :53:17: note: when computing vector element at index '0'
 151// :53:17: error: use of undefined value here causes illegal behavior
 152// :53:17: note: when computing vector element at index '0'
 153// :53:17: error: use of undefined value here causes illegal behavior
 154// :53:17: note: when computing vector element at index '0'
 155// :53:17: error: use of undefined value here causes illegal behavior
 156// :53:17: note: when computing vector element at index '0'
 157// :53:17: error: use of undefined value here causes illegal behavior
 158// :53:17: note: when computing vector element at index '1'
 159// :53:17: error: use of undefined value here causes illegal behavior
 160// :53:17: note: when computing vector element at index '1'
 161// :53:17: error: use of undefined value here causes illegal behavior
 162// :53:17: note: when computing vector element at index '0'
 163// :53:17: error: use of undefined value here causes illegal behavior
 164// :53:17: note: when computing vector element at index '0'
 165// :53:17: error: use of undefined value here causes illegal behavior
 166// :53:17: note: when computing vector element at index '0'
 167// :53:17: error: use of undefined value here causes illegal behavior
 168// :53:17: note: when computing vector element at index '0'
 169// :53:17: error: use of undefined value here causes illegal behavior
 170// :53:17: error: use of undefined value here causes illegal behavior
 171// :53:17: error: use of undefined value here causes illegal behavior
 172// :53:17: note: when computing vector element at index '0'
 173// :53:17: error: use of undefined value here causes illegal behavior
 174// :53:17: note: when computing vector element at index '0'
 175// :53:17: error: use of undefined value here causes illegal behavior
 176// :53:17: note: when computing vector element at index '0'
 177// :53:17: error: use of undefined value here causes illegal behavior
 178// :53:17: note: when computing vector element at index '0'
 179// :53:17: error: use of undefined value here causes illegal behavior
 180// :53:17: note: when computing vector element at index '1'
 181// :53:17: error: use of undefined value here causes illegal behavior
 182// :53:17: note: when computing vector element at index '1'
 183// :53:17: error: use of undefined value here causes illegal behavior
 184// :53:17: note: when computing vector element at index '0'
 185// :53:17: error: use of undefined value here causes illegal behavior
 186// :53:17: note: when computing vector element at index '0'
 187// :53:17: error: use of undefined value here causes illegal behavior
 188// :53:17: note: when computing vector element at index '0'
 189// :53:17: error: use of undefined value here causes illegal behavior
 190// :53:17: note: when computing vector element at index '0'
 191// :53:17: error: use of undefined value here causes illegal behavior
 192// :53:17: error: use of undefined value here causes illegal behavior
 193// :53:17: error: use of undefined value here causes illegal behavior
 194// :53:17: note: when computing vector element at index '0'
 195// :53:17: error: use of undefined value here causes illegal behavior
 196// :53:17: note: when computing vector element at index '0'
 197// :53:17: error: use of undefined value here causes illegal behavior
 198// :53:17: note: when computing vector element at index '0'
 199// :53:17: error: use of undefined value here causes illegal behavior
 200// :53:17: note: when computing vector element at index '0'
 201// :53:17: error: use of undefined value here causes illegal behavior
 202// :53:17: note: when computing vector element at index '1'
 203// :53:17: error: use of undefined value here causes illegal behavior
 204// :53:17: note: when computing vector element at index '1'
 205// :53:17: error: use of undefined value here causes illegal behavior
 206// :53:17: note: when computing vector element at index '0'
 207// :53:17: error: use of undefined value here causes illegal behavior
 208// :53:17: note: when computing vector element at index '0'
 209// :53:17: error: use of undefined value here causes illegal behavior
 210// :53:17: note: when computing vector element at index '0'
 211// :53:17: error: use of undefined value here causes illegal behavior
 212// :53:17: note: when computing vector element at index '0'
 213// :53:17: error: use of undefined value here causes illegal behavior
 214// :53:17: error: use of undefined value here causes illegal behavior
 215// :53:17: error: use of undefined value here causes illegal behavior
 216// :53:17: note: when computing vector element at index '0'
 217// :53:17: error: use of undefined value here causes illegal behavior
 218// :53:17: note: when computing vector element at index '0'
 219// :53:17: error: use of undefined value here causes illegal behavior
 220// :53:17: note: when computing vector element at index '0'
 221// :53:17: error: use of undefined value here causes illegal behavior
 222// :53:17: note: when computing vector element at index '0'
 223// :53:17: error: use of undefined value here causes illegal behavior
 224// :53:17: note: when computing vector element at index '1'
 225// :53:17: error: use of undefined value here causes illegal behavior
 226// :53:17: note: when computing vector element at index '1'
 227// :53:17: error: use of undefined value here causes illegal behavior
 228// :53:17: note: when computing vector element at index '0'
 229// :53:17: error: use of undefined value here causes illegal behavior
 230// :53:17: note: when computing vector element at index '0'
 231// :53:17: error: use of undefined value here causes illegal behavior
 232// :53:17: note: when computing vector element at index '0'
 233// :53:17: error: use of undefined value here causes illegal behavior
 234// :53:17: note: when computing vector element at index '0'
 235// :53:17: error: use of undefined value here causes illegal behavior
 236// :53:17: error: use of undefined value here causes illegal behavior
 237// :53:17: error: use of undefined value here causes illegal behavior
 238// :53:17: note: when computing vector element at index '0'
 239// :53:17: error: use of undefined value here causes illegal behavior
 240// :53:17: note: when computing vector element at index '0'
 241// :53:17: error: use of undefined value here causes illegal behavior
 242// :53:17: note: when computing vector element at index '0'
 243// :53:17: error: use of undefined value here causes illegal behavior
 244// :53:17: note: when computing vector element at index '0'
 245// :53:17: error: use of undefined value here causes illegal behavior
 246// :53:17: note: when computing vector element at index '1'
 247// :53:17: error: use of undefined value here causes illegal behavior
 248// :53:17: note: when computing vector element at index '1'
 249// :53:17: error: use of undefined value here causes illegal behavior
 250// :53:17: note: when computing vector element at index '0'
 251// :53:17: error: use of undefined value here causes illegal behavior
 252// :53:17: note: when computing vector element at index '0'
 253// :53:17: error: use of undefined value here causes illegal behavior
 254// :53:17: note: when computing vector element at index '0'
 255// :53:17: error: use of undefined value here causes illegal behavior
 256// :53:17: note: when computing vector element at index '0'
 257// :53:22: error: use of undefined value here causes illegal behavior
 258// :53:22: note: when computing vector element at index '0'
 259// :53:22: error: use of undefined value here causes illegal behavior
 260// :53:22: note: when computing vector element at index '0'
 261// :53:22: error: use of undefined value here causes illegal behavior
 262// :53:22: note: when computing vector element at index '0'
 263// :53:22: error: use of undefined value here causes illegal behavior
 264// :53:22: note: when computing vector element at index '0'
 265// :53:22: error: use of undefined value here causes illegal behavior
 266// :53:22: note: when computing vector element at index '0'
 267// :53:22: error: use of undefined value here causes illegal behavior
 268// :53:22: note: when computing vector element at index '0'
 269// :53:22: error: use of undefined value here causes illegal behavior
 270// :53:22: note: when computing vector element at index '0'
 271// :53:22: error: use of undefined value here causes illegal behavior
 272// :53:22: note: when computing vector element at index '0'
 273// :53:22: error: use of undefined value here causes illegal behavior
 274// :53:22: note: when computing vector element at index '0'
 275// :53:22: error: use of undefined value here causes illegal behavior
 276// :53:22: note: when computing vector element at index '0'
 277// :53:22: error: use of undefined value here causes illegal behavior
 278// :53:22: note: when computing vector element at index '0'
 279// :53:22: error: use of undefined value here causes illegal behavior
 280// :53:22: note: when computing vector element at index '0'
 281// :56:27: error: use of undefined value here causes illegal behavior
 282// :56:27: error: use of undefined value here causes illegal behavior
 283// :56:27: error: use of undefined value here causes illegal behavior
 284// :56:27: note: when computing vector element at index '0'
 285// :56:27: error: use of undefined value here causes illegal behavior
 286// :56:27: note: when computing vector element at index '0'
 287// :56:27: error: use of undefined value here causes illegal behavior
 288// :56:27: note: when computing vector element at index '0'
 289// :56:27: error: use of undefined value here causes illegal behavior
 290// :56:27: note: when computing vector element at index '0'
 291// :56:27: error: use of undefined value here causes illegal behavior
 292// :56:27: note: when computing vector element at index '1'
 293// :56:27: error: use of undefined value here causes illegal behavior
 294// :56:27: note: when computing vector element at index '1'
 295// :56:27: error: use of undefined value here causes illegal behavior
 296// :56:27: note: when computing vector element at index '0'
 297// :56:27: error: use of undefined value here causes illegal behavior
 298// :56:27: note: when computing vector element at index '0'
 299// :56:27: error: use of undefined value here causes illegal behavior
 300// :56:27: note: when computing vector element at index '0'
 301// :56:27: error: use of undefined value here causes illegal behavior
 302// :56:27: note: when computing vector element at index '0'
 303// :56:27: error: use of undefined value here causes illegal behavior
 304// :56:27: error: use of undefined value here causes illegal behavior
 305// :56:27: error: use of undefined value here causes illegal behavior
 306// :56:27: note: when computing vector element at index '0'
 307// :56:27: error: use of undefined value here causes illegal behavior
 308// :56:27: note: when computing vector element at index '0'
 309// :56:27: error: use of undefined value here causes illegal behavior
 310// :56:27: note: when computing vector element at index '0'
 311// :56:27: error: use of undefined value here causes illegal behavior
 312// :56:27: note: when computing vector element at index '0'
 313// :56:27: error: use of undefined value here causes illegal behavior
 314// :56:27: note: when computing vector element at index '1'
 315// :56:27: error: use of undefined value here causes illegal behavior
 316// :56:27: note: when computing vector element at index '1'
 317// :56:27: error: use of undefined value here causes illegal behavior
 318// :56:27: note: when computing vector element at index '0'
 319// :56:27: error: use of undefined value here causes illegal behavior
 320// :56:27: note: when computing vector element at index '0'
 321// :56:27: error: use of undefined value here causes illegal behavior
 322// :56:27: note: when computing vector element at index '0'
 323// :56:27: error: use of undefined value here causes illegal behavior
 324// :56:27: note: when computing vector element at index '0'
 325// :56:27: error: use of undefined value here causes illegal behavior
 326// :56:27: error: use of undefined value here causes illegal behavior
 327// :56:27: error: use of undefined value here causes illegal behavior
 328// :56:27: note: when computing vector element at index '0'
 329// :56:27: error: use of undefined value here causes illegal behavior
 330// :56:27: note: when computing vector element at index '0'
 331// :56:27: error: use of undefined value here causes illegal behavior
 332// :56:27: note: when computing vector element at index '0'
 333// :56:27: error: use of undefined value here causes illegal behavior
 334// :56:27: note: when computing vector element at index '0'
 335// :56:27: error: use of undefined value here causes illegal behavior
 336// :56:27: note: when computing vector element at index '1'
 337// :56:27: error: use of undefined value here causes illegal behavior
 338// :56:27: note: when computing vector element at index '1'
 339// :56:27: error: use of undefined value here causes illegal behavior
 340// :56:27: note: when computing vector element at index '0'
 341// :56:27: error: use of undefined value here causes illegal behavior
 342// :56:27: note: when computing vector element at index '0'
 343// :56:27: error: use of undefined value here causes illegal behavior
 344// :56:27: note: when computing vector element at index '0'
 345// :56:27: error: use of undefined value here causes illegal behavior
 346// :56:27: note: when computing vector element at index '0'
 347// :56:27: error: use of undefined value here causes illegal behavior
 348// :56:27: error: use of undefined value here causes illegal behavior
 349// :56:27: error: use of undefined value here causes illegal behavior
 350// :56:27: note: when computing vector element at index '0'
 351// :56:27: error: use of undefined value here causes illegal behavior
 352// :56:27: note: when computing vector element at index '0'
 353// :56:27: error: use of undefined value here causes illegal behavior
 354// :56:27: note: when computing vector element at index '0'
 355// :56:27: error: use of undefined value here causes illegal behavior
 356// :56:27: note: when computing vector element at index '0'
 357// :56:27: error: use of undefined value here causes illegal behavior
 358// :56:27: note: when computing vector element at index '1'
 359// :56:27: error: use of undefined value here causes illegal behavior
 360// :56:27: note: when computing vector element at index '1'
 361// :56:27: error: use of undefined value here causes illegal behavior
 362// :56:27: note: when computing vector element at index '0'
 363// :56:27: error: use of undefined value here causes illegal behavior
 364// :56:27: note: when computing vector element at index '0'
 365// :56:27: error: use of undefined value here causes illegal behavior
 366// :56:27: note: when computing vector element at index '0'
 367// :56:27: error: use of undefined value here causes illegal behavior
 368// :56:27: note: when computing vector element at index '0'
 369// :56:27: error: use of undefined value here causes illegal behavior
 370// :56:27: error: use of undefined value here causes illegal behavior
 371// :56:27: error: use of undefined value here causes illegal behavior
 372// :56:27: note: when computing vector element at index '0'
 373// :56:27: error: use of undefined value here causes illegal behavior
 374// :56:27: note: when computing vector element at index '0'
 375// :56:27: error: use of undefined value here causes illegal behavior
 376// :56:27: note: when computing vector element at index '0'
 377// :56:27: error: use of undefined value here causes illegal behavior
 378// :56:27: note: when computing vector element at index '0'
 379// :56:27: error: use of undefined value here causes illegal behavior
 380// :56:27: note: when computing vector element at index '1'
 381// :56:27: error: use of undefined value here causes illegal behavior
 382// :56:27: note: when computing vector element at index '1'
 383// :56:27: error: use of undefined value here causes illegal behavior
 384// :56:27: note: when computing vector element at index '0'
 385// :56:27: error: use of undefined value here causes illegal behavior
 386// :56:27: note: when computing vector element at index '0'
 387// :56:27: error: use of undefined value here causes illegal behavior
 388// :56:27: note: when computing vector element at index '0'
 389// :56:27: error: use of undefined value here causes illegal behavior
 390// :56:27: note: when computing vector element at index '0'
 391// :56:27: error: use of undefined value here causes illegal behavior
 392// :56:27: error: use of undefined value here causes illegal behavior
 393// :56:27: error: use of undefined value here causes illegal behavior
 394// :56:27: note: when computing vector element at index '0'
 395// :56:27: error: use of undefined value here causes illegal behavior
 396// :56:27: note: when computing vector element at index '0'
 397// :56:27: error: use of undefined value here causes illegal behavior
 398// :56:27: note: when computing vector element at index '0'
 399// :56:27: error: use of undefined value here causes illegal behavior
 400// :56:27: note: when computing vector element at index '0'
 401// :56:27: error: use of undefined value here causes illegal behavior
 402// :56:27: note: when computing vector element at index '1'
 403// :56:27: error: use of undefined value here causes illegal behavior
 404// :56:27: note: when computing vector element at index '1'
 405// :56:27: error: use of undefined value here causes illegal behavior
 406// :56:27: note: when computing vector element at index '0'
 407// :56:27: error: use of undefined value here causes illegal behavior
 408// :56:27: note: when computing vector element at index '0'
 409// :56:27: error: use of undefined value here causes illegal behavior
 410// :56:27: note: when computing vector element at index '0'
 411// :56:27: error: use of undefined value here causes illegal behavior
 412// :56:27: note: when computing vector element at index '0'
 413// :56:30: error: use of undefined value here causes illegal behavior
 414// :56:30: note: when computing vector element at index '0'
 415// :56:30: error: use of undefined value here causes illegal behavior
 416// :56:30: note: when computing vector element at index '0'
 417// :56:30: error: use of undefined value here causes illegal behavior
 418// :56:30: note: when computing vector element at index '0'
 419// :56:30: error: use of undefined value here causes illegal behavior
 420// :56:30: note: when computing vector element at index '0'
 421// :56:30: error: use of undefined value here causes illegal behavior
 422// :56:30: note: when computing vector element at index '0'
 423// :56:30: error: use of undefined value here causes illegal behavior
 424// :56:30: note: when computing vector element at index '0'
 425// :56:30: error: use of undefined value here causes illegal behavior
 426// :56:30: note: when computing vector element at index '0'
 427// :56:30: error: use of undefined value here causes illegal behavior
 428// :56:30: note: when computing vector element at index '0'
 429// :56:30: error: use of undefined value here causes illegal behavior
 430// :56:30: note: when computing vector element at index '0'
 431// :56:30: error: use of undefined value here causes illegal behavior
 432// :56:30: note: when computing vector element at index '0'
 433// :56:30: error: use of undefined value here causes illegal behavior
 434// :56:30: note: when computing vector element at index '0'
 435// :56:30: error: use of undefined value here causes illegal behavior
 436// :56:30: note: when computing vector element at index '0'
 437// :59:34: error: use of undefined value here causes illegal behavior
 438// :59:34: error: use of undefined value here causes illegal behavior
 439// :59:34: error: use of undefined value here causes illegal behavior
 440// :59:34: note: when computing vector element at index '0'
 441// :59:34: error: use of undefined value here causes illegal behavior
 442// :59:34: note: when computing vector element at index '0'
 443// :59:34: error: use of undefined value here causes illegal behavior
 444// :59:34: note: when computing vector element at index '0'
 445// :59:34: error: use of undefined value here causes illegal behavior
 446// :59:34: note: when computing vector element at index '0'
 447// :59:34: error: use of undefined value here causes illegal behavior
 448// :59:34: note: when computing vector element at index '1'
 449// :59:34: error: use of undefined value here causes illegal behavior
 450// :59:34: note: when computing vector element at index '1'
 451// :59:34: error: use of undefined value here causes illegal behavior
 452// :59:34: note: when computing vector element at index '0'
 453// :59:34: error: use of undefined value here causes illegal behavior
 454// :59:34: note: when computing vector element at index '0'
 455// :59:34: error: use of undefined value here causes illegal behavior
 456// :59:34: note: when computing vector element at index '0'
 457// :59:34: error: use of undefined value here causes illegal behavior
 458// :59:34: note: when computing vector element at index '0'
 459// :59:34: error: use of undefined value here causes illegal behavior
 460// :59:34: error: use of undefined value here causes illegal behavior
 461// :59:34: error: use of undefined value here causes illegal behavior
 462// :59:34: note: when computing vector element at index '0'
 463// :59:34: error: use of undefined value here causes illegal behavior
 464// :59:34: note: when computing vector element at index '0'
 465// :59:34: error: use of undefined value here causes illegal behavior
 466// :59:34: note: when computing vector element at index '0'
 467// :59:34: error: use of undefined value here causes illegal behavior
 468// :59:34: note: when computing vector element at index '0'
 469// :59:34: error: use of undefined value here causes illegal behavior
 470// :59:34: note: when computing vector element at index '1'
 471// :59:34: error: use of undefined value here causes illegal behavior
 472// :59:34: note: when computing vector element at index '1'
 473// :59:34: error: use of undefined value here causes illegal behavior
 474// :59:34: note: when computing vector element at index '0'
 475// :59:34: error: use of undefined value here causes illegal behavior
 476// :59:34: note: when computing vector element at index '0'
 477// :59:34: error: use of undefined value here causes illegal behavior
 478// :59:34: note: when computing vector element at index '0'
 479// :59:34: error: use of undefined value here causes illegal behavior
 480// :59:34: note: when computing vector element at index '0'
 481// :59:34: error: use of undefined value here causes illegal behavior
 482// :59:34: error: use of undefined value here causes illegal behavior
 483// :59:34: error: use of undefined value here causes illegal behavior
 484// :59:34: note: when computing vector element at index '0'
 485// :59:34: error: use of undefined value here causes illegal behavior
 486// :59:34: note: when computing vector element at index '0'
 487// :59:34: error: use of undefined value here causes illegal behavior
 488// :59:34: note: when computing vector element at index '0'
 489// :59:34: error: use of undefined value here causes illegal behavior
 490// :59:34: note: when computing vector element at index '0'
 491// :59:34: error: use of undefined value here causes illegal behavior
 492// :59:34: note: when computing vector element at index '1'
 493// :59:34: error: use of undefined value here causes illegal behavior
 494// :59:34: note: when computing vector element at index '1'
 495// :59:34: error: use of undefined value here causes illegal behavior
 496// :59:34: note: when computing vector element at index '0'
 497// :59:34: error: use of undefined value here causes illegal behavior
 498// :59:34: note: when computing vector element at index '0'
 499// :59:34: error: use of undefined value here causes illegal behavior
 500// :59:34: note: when computing vector element at index '0'
 501// :59:34: error: use of undefined value here causes illegal behavior
 502// :59:34: note: when computing vector element at index '0'
 503// :59:34: error: use of undefined value here causes illegal behavior
 504// :59:34: error: use of undefined value here causes illegal behavior
 505// :59:34: error: use of undefined value here causes illegal behavior
 506// :59:34: note: when computing vector element at index '0'
 507// :59:34: error: use of undefined value here causes illegal behavior
 508// :59:34: note: when computing vector element at index '0'
 509// :59:34: error: use of undefined value here causes illegal behavior
 510// :59:34: note: when computing vector element at index '0'
 511// :59:34: error: use of undefined value here causes illegal behavior
 512// :59:34: note: when computing vector element at index '0'
 513// :59:34: error: use of undefined value here causes illegal behavior
 514// :59:34: note: when computing vector element at index '1'
 515// :59:34: error: use of undefined value here causes illegal behavior
 516// :59:34: note: when computing vector element at index '1'
 517// :59:34: error: use of undefined value here causes illegal behavior
 518// :59:34: note: when computing vector element at index '0'
 519// :59:34: error: use of undefined value here causes illegal behavior
 520// :59:34: note: when computing vector element at index '0'
 521// :59:34: error: use of undefined value here causes illegal behavior
 522// :59:34: note: when computing vector element at index '0'
 523// :59:34: error: use of undefined value here causes illegal behavior
 524// :59:34: note: when computing vector element at index '0'
 525// :59:34: error: use of undefined value here causes illegal behavior
 526// :59:34: error: use of undefined value here causes illegal behavior
 527// :59:34: error: use of undefined value here causes illegal behavior
 528// :59:34: note: when computing vector element at index '0'
 529// :59:34: error: use of undefined value here causes illegal behavior
 530// :59:34: note: when computing vector element at index '0'
 531// :59:34: error: use of undefined value here causes illegal behavior
 532// :59:34: note: when computing vector element at index '0'
 533// :59:34: error: use of undefined value here causes illegal behavior
 534// :59:34: note: when computing vector element at index '0'
 535// :59:34: error: use of undefined value here causes illegal behavior
 536// :59:34: note: when computing vector element at index '1'
 537// :59:34: error: use of undefined value here causes illegal behavior
 538// :59:34: note: when computing vector element at index '1'
 539// :59:34: error: use of undefined value here causes illegal behavior
 540// :59:34: note: when computing vector element at index '0'
 541// :59:34: error: use of undefined value here causes illegal behavior
 542// :59:34: note: when computing vector element at index '0'
 543// :59:34: error: use of undefined value here causes illegal behavior
 544// :59:34: note: when computing vector element at index '0'
 545// :59:34: error: use of undefined value here causes illegal behavior
 546// :59:34: note: when computing vector element at index '0'
 547// :59:34: error: use of undefined value here causes illegal behavior
 548// :59:34: error: use of undefined value here causes illegal behavior
 549// :59:34: error: use of undefined value here causes illegal behavior
 550// :59:34: note: when computing vector element at index '0'
 551// :59:34: error: use of undefined value here causes illegal behavior
 552// :59:34: note: when computing vector element at index '0'
 553// :59:34: error: use of undefined value here causes illegal behavior
 554// :59:34: note: when computing vector element at index '0'
 555// :59:34: error: use of undefined value here causes illegal behavior
 556// :59:34: note: when computing vector element at index '0'
 557// :59:34: error: use of undefined value here causes illegal behavior
 558// :59:34: note: when computing vector element at index '1'
 559// :59:34: error: use of undefined value here causes illegal behavior
 560// :59:34: note: when computing vector element at index '1'
 561// :59:34: error: use of undefined value here causes illegal behavior
 562// :59:34: note: when computing vector element at index '0'
 563// :59:34: error: use of undefined value here causes illegal behavior
 564// :59:34: note: when computing vector element at index '0'
 565// :59:34: error: use of undefined value here causes illegal behavior
 566// :59:34: note: when computing vector element at index '0'
 567// :59:34: error: use of undefined value here causes illegal behavior
 568// :59:34: note: when computing vector element at index '0'
 569// :59:37: error: use of undefined value here causes illegal behavior
 570// :59:37: note: when computing vector element at index '0'
 571// :59:37: error: use of undefined value here causes illegal behavior
 572// :59:37: note: when computing vector element at index '0'
 573// :59:37: error: use of undefined value here causes illegal behavior
 574// :59:37: note: when computing vector element at index '0'
 575// :59:37: error: use of undefined value here causes illegal behavior
 576// :59:37: note: when computing vector element at index '0'
 577// :59:37: error: use of undefined value here causes illegal behavior
 578// :59:37: note: when computing vector element at index '0'
 579// :59:37: error: use of undefined value here causes illegal behavior
 580// :59:37: note: when computing vector element at index '0'
 581// :59:37: error: use of undefined value here causes illegal behavior
 582// :59:37: note: when computing vector element at index '0'
 583// :59:37: error: use of undefined value here causes illegal behavior
 584// :59:37: note: when computing vector element at index '0'
 585// :59:37: error: use of undefined value here causes illegal behavior
 586// :59:37: note: when computing vector element at index '0'
 587// :59:37: error: use of undefined value here causes illegal behavior
 588// :59:37: note: when computing vector element at index '0'
 589// :59:37: error: use of undefined value here causes illegal behavior
 590// :59:37: note: when computing vector element at index '0'
 591// :59:37: error: use of undefined value here causes illegal behavior
 592// :59:37: note: when computing vector element at index '0'
 593// :62:17: error: use of undefined value here causes illegal behavior
 594// :62:17: error: use of undefined value here causes illegal behavior
 595// :62:17: error: use of undefined value here causes illegal behavior
 596// :62:17: note: when computing vector element at index '0'
 597// :62:17: error: use of undefined value here causes illegal behavior
 598// :62:17: note: when computing vector element at index '0'
 599// :62:17: error: use of undefined value here causes illegal behavior
 600// :62:17: note: when computing vector element at index '0'
 601// :62:17: error: use of undefined value here causes illegal behavior
 602// :62:17: note: when computing vector element at index '0'
 603// :62:17: error: use of undefined value here causes illegal behavior
 604// :62:17: note: when computing vector element at index '1'
 605// :62:17: error: use of undefined value here causes illegal behavior
 606// :62:17: note: when computing vector element at index '1'
 607// :62:17: error: use of undefined value here causes illegal behavior
 608// :62:17: note: when computing vector element at index '0'
 609// :62:17: error: use of undefined value here causes illegal behavior
 610// :62:17: note: when computing vector element at index '0'
 611// :62:17: error: use of undefined value here causes illegal behavior
 612// :62:17: note: when computing vector element at index '0'
 613// :62:17: error: use of undefined value here causes illegal behavior
 614// :62:17: note: when computing vector element at index '0'
 615// :62:17: error: use of undefined value here causes illegal behavior
 616// :62:17: error: use of undefined value here causes illegal behavior
 617// :62:17: error: use of undefined value here causes illegal behavior
 618// :62:17: note: when computing vector element at index '0'
 619// :62:17: error: use of undefined value here causes illegal behavior
 620// :62:17: note: when computing vector element at index '0'
 621// :62:17: error: use of undefined value here causes illegal behavior
 622// :62:17: note: when computing vector element at index '0'
 623// :62:17: error: use of undefined value here causes illegal behavior
 624// :62:17: note: when computing vector element at index '0'
 625// :62:17: error: use of undefined value here causes illegal behavior
 626// :62:17: note: when computing vector element at index '1'
 627// :62:17: error: use of undefined value here causes illegal behavior
 628// :62:17: note: when computing vector element at index '1'
 629// :62:17: error: use of undefined value here causes illegal behavior
 630// :62:17: note: when computing vector element at index '0'
 631// :62:17: error: use of undefined value here causes illegal behavior
 632// :62:17: note: when computing vector element at index '0'
 633// :62:17: error: use of undefined value here causes illegal behavior
 634// :62:17: note: when computing vector element at index '0'
 635// :62:17: error: use of undefined value here causes illegal behavior
 636// :62:17: note: when computing vector element at index '0'
 637// :62:17: error: use of undefined value here causes illegal behavior
 638// :62:17: error: use of undefined value here causes illegal behavior
 639// :62:17: error: use of undefined value here causes illegal behavior
 640// :62:17: note: when computing vector element at index '0'
 641// :62:17: error: use of undefined value here causes illegal behavior
 642// :62:17: note: when computing vector element at index '0'
 643// :62:17: error: use of undefined value here causes illegal behavior
 644// :62:17: note: when computing vector element at index '0'
 645// :62:17: error: use of undefined value here causes illegal behavior
 646// :62:17: note: when computing vector element at index '0'
 647// :62:17: error: use of undefined value here causes illegal behavior
 648// :62:17: note: when computing vector element at index '1'
 649// :62:17: error: use of undefined value here causes illegal behavior
 650// :62:17: note: when computing vector element at index '1'
 651// :62:17: error: use of undefined value here causes illegal behavior
 652// :62:17: note: when computing vector element at index '0'
 653// :62:17: error: use of undefined value here causes illegal behavior
 654// :62:17: note: when computing vector element at index '0'
 655// :62:17: error: use of undefined value here causes illegal behavior
 656// :62:17: note: when computing vector element at index '0'
 657// :62:17: error: use of undefined value here causes illegal behavior
 658// :62:17: note: when computing vector element at index '0'
 659// :62:17: error: use of undefined value here causes illegal behavior
 660// :62:17: error: use of undefined value here causes illegal behavior
 661// :62:17: error: use of undefined value here causes illegal behavior
 662// :62:17: note: when computing vector element at index '0'
 663// :62:17: error: use of undefined value here causes illegal behavior
 664// :62:17: note: when computing vector element at index '0'
 665// :62:17: error: use of undefined value here causes illegal behavior
 666// :62:17: note: when computing vector element at index '0'
 667// :62:17: error: use of undefined value here causes illegal behavior
 668// :62:17: note: when computing vector element at index '0'
 669// :62:17: error: use of undefined value here causes illegal behavior
 670// :62:17: note: when computing vector element at index '1'
 671// :62:17: error: use of undefined value here causes illegal behavior
 672// :62:17: note: when computing vector element at index '1'
 673// :62:17: error: use of undefined value here causes illegal behavior
 674// :62:17: note: when computing vector element at index '0'
 675// :62:17: error: use of undefined value here causes illegal behavior
 676// :62:17: note: when computing vector element at index '0'
 677// :62:17: error: use of undefined value here causes illegal behavior
 678// :62:17: note: when computing vector element at index '0'
 679// :62:17: error: use of undefined value here causes illegal behavior
 680// :62:17: note: when computing vector element at index '0'
 681// :62:17: error: use of undefined value here causes illegal behavior
 682// :62:17: error: use of undefined value here causes illegal behavior
 683// :62:17: error: use of undefined value here causes illegal behavior
 684// :62:17: note: when computing vector element at index '0'
 685// :62:17: error: use of undefined value here causes illegal behavior
 686// :62:17: note: when computing vector element at index '0'
 687// :62:17: error: use of undefined value here causes illegal behavior
 688// :62:17: note: when computing vector element at index '0'
 689// :62:17: error: use of undefined value here causes illegal behavior
 690// :62:17: note: when computing vector element at index '0'
 691// :62:17: error: use of undefined value here causes illegal behavior
 692// :62:17: note: when computing vector element at index '1'
 693// :62:17: error: use of undefined value here causes illegal behavior
 694// :62:17: note: when computing vector element at index '1'
 695// :62:17: error: use of undefined value here causes illegal behavior
 696// :62:17: note: when computing vector element at index '0'
 697// :62:17: error: use of undefined value here causes illegal behavior
 698// :62:17: note: when computing vector element at index '0'
 699// :62:17: error: use of undefined value here causes illegal behavior
 700// :62:17: note: when computing vector element at index '0'
 701// :62:17: error: use of undefined value here causes illegal behavior
 702// :62:17: note: when computing vector element at index '0'
 703// :62:17: error: use of undefined value here causes illegal behavior
 704// :62:17: error: use of undefined value here causes illegal behavior
 705// :62:17: error: use of undefined value here causes illegal behavior
 706// :62:17: note: when computing vector element at index '0'
 707// :62:17: error: use of undefined value here causes illegal behavior
 708// :62:17: note: when computing vector element at index '0'
 709// :62:17: error: use of undefined value here causes illegal behavior
 710// :62:17: note: when computing vector element at index '0'
 711// :62:17: error: use of undefined value here causes illegal behavior
 712// :62:17: note: when computing vector element at index '0'
 713// :62:17: error: use of undefined value here causes illegal behavior
 714// :62:17: note: when computing vector element at index '1'
 715// :62:17: error: use of undefined value here causes illegal behavior
 716// :62:17: note: when computing vector element at index '1'
 717// :62:17: error: use of undefined value here causes illegal behavior
 718// :62:17: note: when computing vector element at index '0'
 719// :62:17: error: use of undefined value here causes illegal behavior
 720// :62:17: note: when computing vector element at index '0'
 721// :62:17: error: use of undefined value here causes illegal behavior
 722// :62:17: note: when computing vector element at index '0'
 723// :62:17: error: use of undefined value here causes illegal behavior
 724// :62:17: note: when computing vector element at index '0'
 725// :62:22: error: use of undefined value here causes illegal behavior
 726// :62:22: note: when computing vector element at index '0'
 727// :62:22: error: use of undefined value here causes illegal behavior
 728// :62:22: note: when computing vector element at index '0'
 729// :62:22: error: use of undefined value here causes illegal behavior
 730// :62:22: note: when computing vector element at index '0'
 731// :62:22: error: use of undefined value here causes illegal behavior
 732// :62:22: note: when computing vector element at index '0'
 733// :62:22: error: use of undefined value here causes illegal behavior
 734// :62:22: note: when computing vector element at index '0'
 735// :62:22: error: use of undefined value here causes illegal behavior
 736// :62:22: note: when computing vector element at index '0'
 737// :62:22: error: use of undefined value here causes illegal behavior
 738// :62:22: note: when computing vector element at index '0'
 739// :62:22: error: use of undefined value here causes illegal behavior
 740// :62:22: note: when computing vector element at index '0'
 741// :62:22: error: use of undefined value here causes illegal behavior
 742// :62:22: note: when computing vector element at index '0'
 743// :62:22: error: use of undefined value here causes illegal behavior
 744// :62:22: note: when computing vector element at index '0'
 745// :62:22: error: use of undefined value here causes illegal behavior
 746// :62:22: note: when computing vector element at index '0'
 747// :62:22: error: use of undefined value here causes illegal behavior
 748// :62:22: note: when computing vector element at index '0'
 749// :65:27: error: use of undefined value here causes illegal behavior
 750// :65:27: error: use of undefined value here causes illegal behavior
 751// :65:27: error: use of undefined value here causes illegal behavior
 752// :65:27: note: when computing vector element at index '0'
 753// :65:27: error: use of undefined value here causes illegal behavior
 754// :65:27: note: when computing vector element at index '0'
 755// :65:27: error: use of undefined value here causes illegal behavior
 756// :65:27: note: when computing vector element at index '0'
 757// :65:27: error: use of undefined value here causes illegal behavior
 758// :65:27: note: when computing vector element at index '0'
 759// :65:27: error: use of undefined value here causes illegal behavior
 760// :65:27: note: when computing vector element at index '1'
 761// :65:27: error: use of undefined value here causes illegal behavior
 762// :65:27: note: when computing vector element at index '1'
 763// :65:27: error: use of undefined value here causes illegal behavior
 764// :65:27: note: when computing vector element at index '0'
 765// :65:27: error: use of undefined value here causes illegal behavior
 766// :65:27: note: when computing vector element at index '0'
 767// :65:27: error: use of undefined value here causes illegal behavior
 768// :65:27: note: when computing vector element at index '0'
 769// :65:27: error: use of undefined value here causes illegal behavior
 770// :65:27: note: when computing vector element at index '0'
 771// :65:27: error: use of undefined value here causes illegal behavior
 772// :65:27: error: use of undefined value here causes illegal behavior
 773// :65:27: error: use of undefined value here causes illegal behavior
 774// :65:27: note: when computing vector element at index '0'
 775// :65:27: error: use of undefined value here causes illegal behavior
 776// :65:27: note: when computing vector element at index '0'
 777// :65:27: error: use of undefined value here causes illegal behavior
 778// :65:27: note: when computing vector element at index '0'
 779// :65:27: error: use of undefined value here causes illegal behavior
 780// :65:27: note: when computing vector element at index '0'
 781// :65:27: error: use of undefined value here causes illegal behavior
 782// :65:27: note: when computing vector element at index '1'
 783// :65:27: error: use of undefined value here causes illegal behavior
 784// :65:27: note: when computing vector element at index '1'
 785// :65:27: error: use of undefined value here causes illegal behavior
 786// :65:27: note: when computing vector element at index '0'
 787// :65:27: error: use of undefined value here causes illegal behavior
 788// :65:27: note: when computing vector element at index '0'
 789// :65:27: error: use of undefined value here causes illegal behavior
 790// :65:27: note: when computing vector element at index '0'
 791// :65:27: error: use of undefined value here causes illegal behavior
 792// :65:27: note: when computing vector element at index '0'
 793// :65:27: error: use of undefined value here causes illegal behavior
 794// :65:27: error: use of undefined value here causes illegal behavior
 795// :65:27: error: use of undefined value here causes illegal behavior
 796// :65:27: note: when computing vector element at index '0'
 797// :65:27: error: use of undefined value here causes illegal behavior
 798// :65:27: note: when computing vector element at index '0'
 799// :65:27: error: use of undefined value here causes illegal behavior
 800// :65:27: note: when computing vector element at index '0'
 801// :65:27: error: use of undefined value here causes illegal behavior
 802// :65:27: note: when computing vector element at index '0'
 803// :65:27: error: use of undefined value here causes illegal behavior
 804// :65:27: note: when computing vector element at index '1'
 805// :65:27: error: use of undefined value here causes illegal behavior
 806// :65:27: note: when computing vector element at index '1'
 807// :65:27: error: use of undefined value here causes illegal behavior
 808// :65:27: note: when computing vector element at index '0'
 809// :65:27: error: use of undefined value here causes illegal behavior
 810// :65:27: note: when computing vector element at index '0'
 811// :65:27: error: use of undefined value here causes illegal behavior
 812// :65:27: note: when computing vector element at index '0'
 813// :65:27: error: use of undefined value here causes illegal behavior
 814// :65:27: note: when computing vector element at index '0'
 815// :65:27: error: use of undefined value here causes illegal behavior
 816// :65:27: error: use of undefined value here causes illegal behavior
 817// :65:27: error: use of undefined value here causes illegal behavior
 818// :65:27: note: when computing vector element at index '0'
 819// :65:27: error: use of undefined value here causes illegal behavior
 820// :65:27: note: when computing vector element at index '0'
 821// :65:27: error: use of undefined value here causes illegal behavior
 822// :65:27: note: when computing vector element at index '0'
 823// :65:27: error: use of undefined value here causes illegal behavior
 824// :65:27: note: when computing vector element at index '0'
 825// :65:27: error: use of undefined value here causes illegal behavior
 826// :65:27: note: when computing vector element at index '1'
 827// :65:27: error: use of undefined value here causes illegal behavior
 828// :65:27: note: when computing vector element at index '1'
 829// :65:27: error: use of undefined value here causes illegal behavior
 830// :65:27: note: when computing vector element at index '0'
 831// :65:27: error: use of undefined value here causes illegal behavior
 832// :65:27: note: when computing vector element at index '0'
 833// :65:27: error: use of undefined value here causes illegal behavior
 834// :65:27: note: when computing vector element at index '0'
 835// :65:27: error: use of undefined value here causes illegal behavior
 836// :65:27: note: when computing vector element at index '0'
 837// :65:27: error: use of undefined value here causes illegal behavior
 838// :65:27: error: use of undefined value here causes illegal behavior
 839// :65:27: error: use of undefined value here causes illegal behavior
 840// :65:27: note: when computing vector element at index '0'
 841// :65:27: error: use of undefined value here causes illegal behavior
 842// :65:27: note: when computing vector element at index '0'
 843// :65:27: error: use of undefined value here causes illegal behavior
 844// :65:27: note: when computing vector element at index '0'
 845// :65:27: error: use of undefined value here causes illegal behavior
 846// :65:27: note: when computing vector element at index '0'
 847// :65:27: error: use of undefined value here causes illegal behavior
 848// :65:27: note: when computing vector element at index '1'
 849// :65:27: error: use of undefined value here causes illegal behavior
 850// :65:27: note: when computing vector element at index '1'
 851// :65:27: error: use of undefined value here causes illegal behavior
 852// :65:27: note: when computing vector element at index '0'
 853// :65:27: error: use of undefined value here causes illegal behavior
 854// :65:27: note: when computing vector element at index '0'
 855// :65:27: error: use of undefined value here causes illegal behavior
 856// :65:27: note: when computing vector element at index '0'
 857// :65:27: error: use of undefined value here causes illegal behavior
 858// :65:27: note: when computing vector element at index '0'
 859// :65:27: error: use of undefined value here causes illegal behavior
 860// :65:27: error: use of undefined value here causes illegal behavior
 861// :65:27: error: use of undefined value here causes illegal behavior
 862// :65:27: note: when computing vector element at index '0'
 863// :65:27: error: use of undefined value here causes illegal behavior
 864// :65:27: note: when computing vector element at index '0'
 865// :65:27: error: use of undefined value here causes illegal behavior
 866// :65:27: note: when computing vector element at index '0'
 867// :65:27: error: use of undefined value here causes illegal behavior
 868// :65:27: note: when computing vector element at index '0'
 869// :65:27: error: use of undefined value here causes illegal behavior
 870// :65:27: note: when computing vector element at index '1'
 871// :65:27: error: use of undefined value here causes illegal behavior
 872// :65:27: note: when computing vector element at index '1'
 873// :65:27: error: use of undefined value here causes illegal behavior
 874// :65:27: note: when computing vector element at index '0'
 875// :65:27: error: use of undefined value here causes illegal behavior
 876// :65:27: note: when computing vector element at index '0'
 877// :65:27: error: use of undefined value here causes illegal behavior
 878// :65:27: note: when computing vector element at index '0'
 879// :65:27: error: use of undefined value here causes illegal behavior
 880// :65:27: note: when computing vector element at index '0'
 881// :65:30: error: use of undefined value here causes illegal behavior
 882// :65:30: note: when computing vector element at index '0'
 883// :65:30: error: use of undefined value here causes illegal behavior
 884// :65:30: note: when computing vector element at index '0'
 885// :65:30: error: use of undefined value here causes illegal behavior
 886// :65:30: note: when computing vector element at index '0'
 887// :65:30: error: use of undefined value here causes illegal behavior
 888// :65:30: note: when computing vector element at index '0'
 889// :65:30: error: use of undefined value here causes illegal behavior
 890// :65:30: note: when computing vector element at index '0'
 891// :65:30: error: use of undefined value here causes illegal behavior
 892// :65:30: note: when computing vector element at index '0'
 893// :65:30: error: use of undefined value here causes illegal behavior
 894// :65:30: note: when computing vector element at index '0'
 895// :65:30: error: use of undefined value here causes illegal behavior
 896// :65:30: note: when computing vector element at index '0'
 897// :65:30: error: use of undefined value here causes illegal behavior
 898// :65:30: note: when computing vector element at index '0'
 899// :65:30: error: use of undefined value here causes illegal behavior
 900// :65:30: note: when computing vector element at index '0'
 901// :65:30: error: use of undefined value here causes illegal behavior
 902// :65:30: note: when computing vector element at index '0'
 903// :65:30: error: use of undefined value here causes illegal behavior
 904// :65:30: note: when computing vector element at index '0'
 905// :70:17: error: use of undefined value here causes illegal behavior
 906// :70:17: error: use of undefined value here causes illegal behavior
 907// :70:17: error: use of undefined value here causes illegal behavior
 908// :70:17: error: use of undefined value here causes illegal behavior
 909// :70:17: error: use of undefined value here causes illegal behavior
 910// :70:17: error: use of undefined value here causes illegal behavior
 911// :70:17: error: use of undefined value here causes illegal behavior
 912// :70:17: note: when computing vector element at index '1'
 913// :70:17: error: use of undefined value here causes illegal behavior
 914// :70:17: note: when computing vector element at index '1'
 915// :70:17: error: use of undefined value here causes illegal behavior
 916// :70:17: note: when computing vector element at index '1'
 917// :70:17: error: use of undefined value here causes illegal behavior
 918// :70:17: note: when computing vector element at index '1'
 919// :70:17: error: use of undefined value here causes illegal behavior
 920// :70:17: note: when computing vector element at index '0'
 921// :70:17: error: use of undefined value here causes illegal behavior
 922// :70:17: note: when computing vector element at index '0'
 923// :70:17: error: use of undefined value here causes illegal behavior
 924// :70:17: note: when computing vector element at index '0'
 925// :70:17: error: use of undefined value here causes illegal behavior
 926// :70:17: note: when computing vector element at index '0'
 927// :70:17: error: use of undefined value here causes illegal behavior
 928// :70:17: error: use of undefined value here causes illegal behavior
 929// :70:17: error: use of undefined value here causes illegal behavior
 930// :70:17: error: use of undefined value here causes illegal behavior
 931// :70:17: error: use of undefined value here causes illegal behavior
 932// :70:17: error: use of undefined value here causes illegal behavior
 933// :70:17: error: use of undefined value here causes illegal behavior
 934// :70:17: note: when computing vector element at index '1'
 935// :70:17: error: use of undefined value here causes illegal behavior
 936// :70:17: note: when computing vector element at index '1'
 937// :70:17: error: use of undefined value here causes illegal behavior
 938// :70:17: note: when computing vector element at index '1'
 939// :70:17: error: use of undefined value here causes illegal behavior
 940// :70:17: note: when computing vector element at index '1'
 941// :70:17: error: use of undefined value here causes illegal behavior
 942// :70:17: note: when computing vector element at index '0'
 943// :70:17: error: use of undefined value here causes illegal behavior
 944// :70:17: note: when computing vector element at index '0'
 945// :70:17: error: use of undefined value here causes illegal behavior
 946// :70:17: note: when computing vector element at index '0'
 947// :70:17: error: use of undefined value here causes illegal behavior
 948// :70:17: note: when computing vector element at index '0'
 949// :70:17: error: use of undefined value here causes illegal behavior
 950// :70:17: error: use of undefined value here causes illegal behavior
 951// :70:17: error: use of undefined value here causes illegal behavior
 952// :70:17: error: use of undefined value here causes illegal behavior
 953// :70:17: error: use of undefined value here causes illegal behavior
 954// :70:17: error: use of undefined value here causes illegal behavior
 955// :70:17: error: use of undefined value here causes illegal behavior
 956// :70:17: note: when computing vector element at index '1'
 957// :70:17: error: use of undefined value here causes illegal behavior
 958// :70:17: note: when computing vector element at index '1'
 959// :70:17: error: use of undefined value here causes illegal behavior
 960// :70:17: note: when computing vector element at index '1'
 961// :70:17: error: use of undefined value here causes illegal behavior
 962// :70:17: note: when computing vector element at index '1'
 963// :70:17: error: use of undefined value here causes illegal behavior
 964// :70:17: note: when computing vector element at index '0'
 965// :70:17: error: use of undefined value here causes illegal behavior
 966// :70:17: note: when computing vector element at index '0'
 967// :70:17: error: use of undefined value here causes illegal behavior
 968// :70:17: note: when computing vector element at index '0'
 969// :70:17: error: use of undefined value here causes illegal behavior
 970// :70:17: note: when computing vector element at index '0'
 971// :70:17: error: use of undefined value here causes illegal behavior
 972// :70:17: error: use of undefined value here causes illegal behavior
 973// :70:17: error: use of undefined value here causes illegal behavior
 974// :70:17: error: use of undefined value here causes illegal behavior
 975// :70:17: error: use of undefined value here causes illegal behavior
 976// :70:17: error: use of undefined value here causes illegal behavior
 977// :70:17: error: use of undefined value here causes illegal behavior
 978// :70:17: note: when computing vector element at index '1'
 979// :70:17: error: use of undefined value here causes illegal behavior
 980// :70:17: note: when computing vector element at index '1'
 981// :70:17: error: use of undefined value here causes illegal behavior
 982// :70:17: note: when computing vector element at index '1'
 983// :70:17: error: use of undefined value here causes illegal behavior
 984// :70:17: note: when computing vector element at index '1'
 985// :70:17: error: use of undefined value here causes illegal behavior
 986// :70:17: note: when computing vector element at index '0'
 987// :70:17: error: use of undefined value here causes illegal behavior
 988// :70:17: note: when computing vector element at index '0'
 989// :70:17: error: use of undefined value here causes illegal behavior
 990// :70:17: note: when computing vector element at index '0'
 991// :70:17: error: use of undefined value here causes illegal behavior
 992// :70:17: note: when computing vector element at index '0'
 993// :70:17: error: use of undefined value here causes illegal behavior
 994// :70:17: error: use of undefined value here causes illegal behavior
 995// :70:17: error: use of undefined value here causes illegal behavior
 996// :70:17: error: use of undefined value here causes illegal behavior
 997// :70:17: error: use of undefined value here causes illegal behavior
 998// :70:17: error: use of undefined value here causes illegal behavior
 999// :70:17: error: use of undefined value here causes illegal behavior
1000// :70:17: note: when computing vector element at index '1'
1001// :70:17: error: use of undefined value here causes illegal behavior
1002// :70:17: note: when computing vector element at index '1'
1003// :70:17: error: use of undefined value here causes illegal behavior
1004// :70:17: note: when computing vector element at index '1'
1005// :70:17: error: use of undefined value here causes illegal behavior
1006// :70:17: note: when computing vector element at index '1'
1007// :70:17: error: use of undefined value here causes illegal behavior
1008// :70:17: note: when computing vector element at index '0'
1009// :70:17: error: use of undefined value here causes illegal behavior
1010// :70:17: note: when computing vector element at index '0'
1011// :70:17: error: use of undefined value here causes illegal behavior
1012// :70:17: note: when computing vector element at index '0'
1013// :70:17: error: use of undefined value here causes illegal behavior
1014// :70:17: note: when computing vector element at index '0'
1015// :70:17: error: use of undefined value here causes illegal behavior
1016// :70:17: error: use of undefined value here causes illegal behavior
1017// :70:17: error: use of undefined value here causes illegal behavior
1018// :70:17: error: use of undefined value here causes illegal behavior
1019// :70:17: error: use of undefined value here causes illegal behavior
1020// :70:17: error: use of undefined value here causes illegal behavior
1021// :70:17: error: use of undefined value here causes illegal behavior
1022// :70:17: note: when computing vector element at index '1'
1023// :70:17: error: use of undefined value here causes illegal behavior
1024// :70:17: note: when computing vector element at index '1'
1025// :70:17: error: use of undefined value here causes illegal behavior
1026// :70:17: note: when computing vector element at index '1'
1027// :70:17: error: use of undefined value here causes illegal behavior
1028// :70:17: note: when computing vector element at index '1'
1029// :70:17: error: use of undefined value here causes illegal behavior
1030// :70:17: note: when computing vector element at index '0'
1031// :70:17: error: use of undefined value here causes illegal behavior
1032// :70:17: note: when computing vector element at index '0'
1033// :70:17: error: use of undefined value here causes illegal behavior
1034// :70:17: note: when computing vector element at index '0'
1035// :70:17: error: use of undefined value here causes illegal behavior
1036// :70:17: note: when computing vector element at index '0'
1037// :73:27: error: use of undefined value here causes illegal behavior
1038// :73:27: error: use of undefined value here causes illegal behavior
1039// :73:27: error: use of undefined value here causes illegal behavior
1040// :73:27: error: use of undefined value here causes illegal behavior
1041// :73:27: error: use of undefined value here causes illegal behavior
1042// :73:27: error: use of undefined value here causes illegal behavior
1043// :73:27: error: use of undefined value here causes illegal behavior
1044// :73:27: note: when computing vector element at index '1'
1045// :73:27: error: use of undefined value here causes illegal behavior
1046// :73:27: note: when computing vector element at index '1'
1047// :73:27: error: use of undefined value here causes illegal behavior
1048// :73:27: note: when computing vector element at index '1'
1049// :73:27: error: use of undefined value here causes illegal behavior
1050// :73:27: note: when computing vector element at index '1'
1051// :73:27: error: use of undefined value here causes illegal behavior
1052// :73:27: note: when computing vector element at index '0'
1053// :73:27: error: use of undefined value here causes illegal behavior
1054// :73:27: note: when computing vector element at index '0'
1055// :73:27: error: use of undefined value here causes illegal behavior
1056// :73:27: note: when computing vector element at index '0'
1057// :73:27: error: use of undefined value here causes illegal behavior
1058// :73:27: note: when computing vector element at index '0'
1059// :73:27: error: use of undefined value here causes illegal behavior
1060// :73:27: error: use of undefined value here causes illegal behavior
1061// :73:27: error: use of undefined value here causes illegal behavior
1062// :73:27: error: use of undefined value here causes illegal behavior
1063// :73:27: error: use of undefined value here causes illegal behavior
1064// :73:27: error: use of undefined value here causes illegal behavior
1065// :73:27: error: use of undefined value here causes illegal behavior
1066// :73:27: note: when computing vector element at index '1'
1067// :73:27: error: use of undefined value here causes illegal behavior
1068// :73:27: note: when computing vector element at index '1'
1069// :73:27: error: use of undefined value here causes illegal behavior
1070// :73:27: note: when computing vector element at index '1'
1071// :73:27: error: use of undefined value here causes illegal behavior
1072// :73:27: note: when computing vector element at index '1'
1073// :73:27: error: use of undefined value here causes illegal behavior
1074// :73:27: note: when computing vector element at index '0'
1075// :73:27: error: use of undefined value here causes illegal behavior
1076// :73:27: note: when computing vector element at index '0'
1077// :73:27: error: use of undefined value here causes illegal behavior
1078// :73:27: note: when computing vector element at index '0'
1079// :73:27: error: use of undefined value here causes illegal behavior
1080// :73:27: note: when computing vector element at index '0'
1081// :73:27: error: use of undefined value here causes illegal behavior
1082// :73:27: error: use of undefined value here causes illegal behavior
1083// :73:27: error: use of undefined value here causes illegal behavior
1084// :73:27: error: use of undefined value here causes illegal behavior
1085// :73:27: error: use of undefined value here causes illegal behavior
1086// :73:27: error: use of undefined value here causes illegal behavior
1087// :73:27: error: use of undefined value here causes illegal behavior
1088// :73:27: note: when computing vector element at index '1'
1089// :73:27: error: use of undefined value here causes illegal behavior
1090// :73:27: note: when computing vector element at index '1'
1091// :73:27: error: use of undefined value here causes illegal behavior
1092// :73:27: note: when computing vector element at index '1'
1093// :73:27: error: use of undefined value here causes illegal behavior
1094// :73:27: note: when computing vector element at index '1'
1095// :73:27: error: use of undefined value here causes illegal behavior
1096// :73:27: note: when computing vector element at index '0'
1097// :73:27: error: use of undefined value here causes illegal behavior
1098// :73:27: note: when computing vector element at index '0'
1099// :73:27: error: use of undefined value here causes illegal behavior
1100// :73:27: note: when computing vector element at index '0'
1101// :73:27: error: use of undefined value here causes illegal behavior
1102// :73:27: note: when computing vector element at index '0'
1103// :73:27: error: use of undefined value here causes illegal behavior
1104// :73:27: error: use of undefined value here causes illegal behavior
1105// :73:27: error: use of undefined value here causes illegal behavior
1106// :73:27: error: use of undefined value here causes illegal behavior
1107// :73:27: error: use of undefined value here causes illegal behavior
1108// :73:27: error: use of undefined value here causes illegal behavior
1109// :73:27: error: use of undefined value here causes illegal behavior
1110// :73:27: note: when computing vector element at index '1'
1111// :73:27: error: use of undefined value here causes illegal behavior
1112// :73:27: note: when computing vector element at index '1'
1113// :73:27: error: use of undefined value here causes illegal behavior
1114// :73:27: note: when computing vector element at index '1'
1115// :73:27: error: use of undefined value here causes illegal behavior
1116// :73:27: note: when computing vector element at index '1'
1117// :73:27: error: use of undefined value here causes illegal behavior
1118// :73:27: note: when computing vector element at index '0'
1119// :73:27: error: use of undefined value here causes illegal behavior
1120// :73:27: note: when computing vector element at index '0'
1121// :73:27: error: use of undefined value here causes illegal behavior
1122// :73:27: note: when computing vector element at index '0'
1123// :73:27: error: use of undefined value here causes illegal behavior
1124// :73:27: note: when computing vector element at index '0'
1125// :73:27: error: use of undefined value here causes illegal behavior
1126// :73:27: error: use of undefined value here causes illegal behavior
1127// :73:27: error: use of undefined value here causes illegal behavior
1128// :73:27: error: use of undefined value here causes illegal behavior
1129// :73:27: error: use of undefined value here causes illegal behavior
1130// :73:27: error: use of undefined value here causes illegal behavior
1131// :73:27: error: use of undefined value here causes illegal behavior
1132// :73:27: note: when computing vector element at index '1'
1133// :73:27: error: use of undefined value here causes illegal behavior
1134// :73:27: note: when computing vector element at index '1'
1135// :73:27: error: use of undefined value here causes illegal behavior
1136// :73:27: note: when computing vector element at index '1'
1137// :73:27: error: use of undefined value here causes illegal behavior
1138// :73:27: note: when computing vector element at index '1'
1139// :73:27: error: use of undefined value here causes illegal behavior
1140// :73:27: note: when computing vector element at index '0'
1141// :73:27: error: use of undefined value here causes illegal behavior
1142// :73:27: note: when computing vector element at index '0'
1143// :73:27: error: use of undefined value here causes illegal behavior
1144// :73:27: note: when computing vector element at index '0'
1145// :73:27: error: use of undefined value here causes illegal behavior
1146// :73:27: note: when computing vector element at index '0'
1147// :73:27: error: use of undefined value here causes illegal behavior
1148// :73:27: error: use of undefined value here causes illegal behavior
1149// :73:27: error: use of undefined value here causes illegal behavior
1150// :73:27: error: use of undefined value here causes illegal behavior
1151// :73:27: error: use of undefined value here causes illegal behavior
1152// :73:27: error: use of undefined value here causes illegal behavior
1153// :73:27: error: use of undefined value here causes illegal behavior
1154// :73:27: note: when computing vector element at index '1'
1155// :73:27: error: use of undefined value here causes illegal behavior
1156// :73:27: note: when computing vector element at index '1'
1157// :73:27: error: use of undefined value here causes illegal behavior
1158// :73:27: note: when computing vector element at index '1'
1159// :73:27: error: use of undefined value here causes illegal behavior
1160// :73:27: note: when computing vector element at index '1'
1161// :73:27: error: use of undefined value here causes illegal behavior
1162// :73:27: note: when computing vector element at index '0'
1163// :73:27: error: use of undefined value here causes illegal behavior
1164// :73:27: note: when computing vector element at index '0'
1165// :73:27: error: use of undefined value here causes illegal behavior
1166// :73:27: note: when computing vector element at index '0'
1167// :73:27: error: use of undefined value here causes illegal behavior
1168// :73:27: note: when computing vector element at index '0'
1169// :76:34: error: use of undefined value here causes illegal behavior
1170// :76:34: error: use of undefined value here causes illegal behavior
1171// :76:34: error: use of undefined value here causes illegal behavior
1172// :76:34: error: use of undefined value here causes illegal behavior
1173// :76:34: error: use of undefined value here causes illegal behavior
1174// :76:34: error: use of undefined value here causes illegal behavior
1175// :76:34: error: use of undefined value here causes illegal behavior
1176// :76:34: note: when computing vector element at index '1'
1177// :76:34: error: use of undefined value here causes illegal behavior
1178// :76:34: note: when computing vector element at index '1'
1179// :76:34: error: use of undefined value here causes illegal behavior
1180// :76:34: note: when computing vector element at index '1'
1181// :76:34: error: use of undefined value here causes illegal behavior
1182// :76:34: note: when computing vector element at index '1'
1183// :76:34: error: use of undefined value here causes illegal behavior
1184// :76:34: note: when computing vector element at index '0'
1185// :76:34: error: use of undefined value here causes illegal behavior
1186// :76:34: note: when computing vector element at index '0'
1187// :76:34: error: use of undefined value here causes illegal behavior
1188// :76:34: note: when computing vector element at index '0'
1189// :76:34: error: use of undefined value here causes illegal behavior
1190// :76:34: note: when computing vector element at index '0'
1191// :76:34: error: use of undefined value here causes illegal behavior
1192// :76:34: error: use of undefined value here causes illegal behavior
1193// :76:34: error: use of undefined value here causes illegal behavior
1194// :76:34: error: use of undefined value here causes illegal behavior
1195// :76:34: error: use of undefined value here causes illegal behavior
1196// :76:34: error: use of undefined value here causes illegal behavior
1197// :76:34: error: use of undefined value here causes illegal behavior
1198// :76:34: note: when computing vector element at index '1'
1199// :76:34: error: use of undefined value here causes illegal behavior
1200// :76:34: note: when computing vector element at index '1'
1201// :76:34: error: use of undefined value here causes illegal behavior
1202// :76:34: note: when computing vector element at index '1'
1203// :76:34: error: use of undefined value here causes illegal behavior
1204// :76:34: note: when computing vector element at index '1'
1205// :76:34: error: use of undefined value here causes illegal behavior
1206// :76:34: note: when computing vector element at index '0'
1207// :76:34: error: use of undefined value here causes illegal behavior
1208// :76:34: note: when computing vector element at index '0'
1209// :76:34: error: use of undefined value here causes illegal behavior
1210// :76:34: note: when computing vector element at index '0'
1211// :76:34: error: use of undefined value here causes illegal behavior
1212// :76:34: note: when computing vector element at index '0'
1213// :76:34: error: use of undefined value here causes illegal behavior
1214// :76:34: error: use of undefined value here causes illegal behavior
1215// :76:34: error: use of undefined value here causes illegal behavior
1216// :76:34: error: use of undefined value here causes illegal behavior
1217// :76:34: error: use of undefined value here causes illegal behavior
1218// :76:34: error: use of undefined value here causes illegal behavior
1219// :76:34: error: use of undefined value here causes illegal behavior
1220// :76:34: note: when computing vector element at index '1'
1221// :76:34: error: use of undefined value here causes illegal behavior
1222// :76:34: note: when computing vector element at index '1'
1223// :76:34: error: use of undefined value here causes illegal behavior
1224// :76:34: note: when computing vector element at index '1'
1225// :76:34: error: use of undefined value here causes illegal behavior
1226// :76:34: note: when computing vector element at index '1'
1227// :76:34: error: use of undefined value here causes illegal behavior
1228// :76:34: note: when computing vector element at index '0'
1229// :76:34: error: use of undefined value here causes illegal behavior
1230// :76:34: note: when computing vector element at index '0'
1231// :76:34: error: use of undefined value here causes illegal behavior
1232// :76:34: note: when computing vector element at index '0'
1233// :76:34: error: use of undefined value here causes illegal behavior
1234// :76:34: note: when computing vector element at index '0'
1235// :76:34: error: use of undefined value here causes illegal behavior
1236// :76:34: error: use of undefined value here causes illegal behavior
1237// :76:34: error: use of undefined value here causes illegal behavior
1238// :76:34: error: use of undefined value here causes illegal behavior
1239// :76:34: error: use of undefined value here causes illegal behavior
1240// :76:34: error: use of undefined value here causes illegal behavior
1241// :76:34: error: use of undefined value here causes illegal behavior
1242// :76:34: note: when computing vector element at index '1'
1243// :76:34: error: use of undefined value here causes illegal behavior
1244// :76:34: note: when computing vector element at index '1'
1245// :76:34: error: use of undefined value here causes illegal behavior
1246// :76:34: note: when computing vector element at index '1'
1247// :76:34: error: use of undefined value here causes illegal behavior
1248// :76:34: note: when computing vector element at index '1'
1249// :76:34: error: use of undefined value here causes illegal behavior
1250// :76:34: note: when computing vector element at index '0'
1251// :76:34: error: use of undefined value here causes illegal behavior
1252// :76:34: note: when computing vector element at index '0'
1253// :76:34: error: use of undefined value here causes illegal behavior
1254// :76:34: note: when computing vector element at index '0'
1255// :76:34: error: use of undefined value here causes illegal behavior
1256// :76:34: note: when computing vector element at index '0'
1257// :76:34: error: use of undefined value here causes illegal behavior
1258// :76:34: error: use of undefined value here causes illegal behavior
1259// :76:34: error: use of undefined value here causes illegal behavior
1260// :76:34: error: use of undefined value here causes illegal behavior
1261// :76:34: error: use of undefined value here causes illegal behavior
1262// :76:34: error: use of undefined value here causes illegal behavior
1263// :76:34: error: use of undefined value here causes illegal behavior
1264// :76:34: note: when computing vector element at index '1'
1265// :76:34: error: use of undefined value here causes illegal behavior
1266// :76:34: note: when computing vector element at index '1'
1267// :76:34: error: use of undefined value here causes illegal behavior
1268// :76:34: note: when computing vector element at index '1'
1269// :76:34: error: use of undefined value here causes illegal behavior
1270// :76:34: note: when computing vector element at index '1'
1271// :76:34: error: use of undefined value here causes illegal behavior
1272// :76:34: note: when computing vector element at index '0'
1273// :76:34: error: use of undefined value here causes illegal behavior
1274// :76:34: note: when computing vector element at index '0'
1275// :76:34: error: use of undefined value here causes illegal behavior
1276// :76:34: note: when computing vector element at index '0'
1277// :76:34: error: use of undefined value here causes illegal behavior
1278// :76:34: note: when computing vector element at index '0'
1279// :76:34: error: use of undefined value here causes illegal behavior
1280// :76:34: error: use of undefined value here causes illegal behavior
1281// :76:34: error: use of undefined value here causes illegal behavior
1282// :76:34: error: use of undefined value here causes illegal behavior
1283// :76:34: error: use of undefined value here causes illegal behavior
1284// :76:34: error: use of undefined value here causes illegal behavior
1285// :76:34: error: use of undefined value here causes illegal behavior
1286// :76:34: note: when computing vector element at index '1'
1287// :76:34: error: use of undefined value here causes illegal behavior
1288// :76:34: note: when computing vector element at index '1'
1289// :76:34: error: use of undefined value here causes illegal behavior
1290// :76:34: note: when computing vector element at index '1'
1291// :76:34: error: use of undefined value here causes illegal behavior
1292// :76:34: note: when computing vector element at index '1'
1293// :76:34: error: use of undefined value here causes illegal behavior
1294// :76:34: note: when computing vector element at index '0'
1295// :76:34: error: use of undefined value here causes illegal behavior
1296// :76:34: note: when computing vector element at index '0'
1297// :76:34: error: use of undefined value here causes illegal behavior
1298// :76:34: note: when computing vector element at index '0'
1299// :76:34: error: use of undefined value here causes illegal behavior
1300// :76:34: note: when computing vector element at index '0'
1301// :79:17: error: use of undefined value here causes illegal behavior
1302// :79:17: error: use of undefined value here causes illegal behavior
1303// :79:17: error: use of undefined value here causes illegal behavior
1304// :79:17: error: use of undefined value here causes illegal behavior
1305// :79:17: error: use of undefined value here causes illegal behavior
1306// :79:17: error: use of undefined value here causes illegal behavior
1307// :79:17: error: use of undefined value here causes illegal behavior
1308// :79:17: note: when computing vector element at index '1'
1309// :79:17: error: use of undefined value here causes illegal behavior
1310// :79:17: note: when computing vector element at index '1'
1311// :79:17: error: use of undefined value here causes illegal behavior
1312// :79:17: note: when computing vector element at index '1'
1313// :79:17: error: use of undefined value here causes illegal behavior
1314// :79:17: note: when computing vector element at index '1'
1315// :79:17: error: use of undefined value here causes illegal behavior
1316// :79:17: note: when computing vector element at index '0'
1317// :79:17: error: use of undefined value here causes illegal behavior
1318// :79:17: note: when computing vector element at index '0'
1319// :79:17: error: use of undefined value here causes illegal behavior
1320// :79:17: note: when computing vector element at index '0'
1321// :79:17: error: use of undefined value here causes illegal behavior
1322// :79:17: note: when computing vector element at index '0'
1323// :79:17: error: use of undefined value here causes illegal behavior
1324// :79:17: error: use of undefined value here causes illegal behavior
1325// :79:17: error: use of undefined value here causes illegal behavior
1326// :79:17: error: use of undefined value here causes illegal behavior
1327// :79:17: error: use of undefined value here causes illegal behavior
1328// :79:17: error: use of undefined value here causes illegal behavior
1329// :79:17: error: use of undefined value here causes illegal behavior
1330// :79:17: note: when computing vector element at index '1'
1331// :79:17: error: use of undefined value here causes illegal behavior
1332// :79:17: note: when computing vector element at index '1'
1333// :79:17: error: use of undefined value here causes illegal behavior
1334// :79:17: note: when computing vector element at index '1'
1335// :79:17: error: use of undefined value here causes illegal behavior
1336// :79:17: note: when computing vector element at index '1'
1337// :79:17: error: use of undefined value here causes illegal behavior
1338// :79:17: note: when computing vector element at index '0'
1339// :79:17: error: use of undefined value here causes illegal behavior
1340// :79:17: note: when computing vector element at index '0'
1341// :79:17: error: use of undefined value here causes illegal behavior
1342// :79:17: note: when computing vector element at index '0'
1343// :79:17: error: use of undefined value here causes illegal behavior
1344// :79:17: note: when computing vector element at index '0'
1345// :79:17: error: use of undefined value here causes illegal behavior
1346// :79:17: error: use of undefined value here causes illegal behavior
1347// :79:17: error: use of undefined value here causes illegal behavior
1348// :79:17: error: use of undefined value here causes illegal behavior
1349// :79:17: error: use of undefined value here causes illegal behavior
1350// :79:17: error: use of undefined value here causes illegal behavior
1351// :79:17: error: use of undefined value here causes illegal behavior
1352// :79:17: note: when computing vector element at index '1'
1353// :79:17: error: use of undefined value here causes illegal behavior
1354// :79:17: note: when computing vector element at index '1'
1355// :79:17: error: use of undefined value here causes illegal behavior
1356// :79:17: note: when computing vector element at index '1'
1357// :79:17: error: use of undefined value here causes illegal behavior
1358// :79:17: note: when computing vector element at index '1'
1359// :79:17: error: use of undefined value here causes illegal behavior
1360// :79:17: note: when computing vector element at index '0'
1361// :79:17: error: use of undefined value here causes illegal behavior
1362// :79:17: note: when computing vector element at index '0'
1363// :79:17: error: use of undefined value here causes illegal behavior
1364// :79:17: note: when computing vector element at index '0'
1365// :79:17: error: use of undefined value here causes illegal behavior
1366// :79:17: note: when computing vector element at index '0'
1367// :79:17: error: use of undefined value here causes illegal behavior
1368// :79:17: error: use of undefined value here causes illegal behavior
1369// :79:17: error: use of undefined value here causes illegal behavior
1370// :79:17: error: use of undefined value here causes illegal behavior
1371// :79:17: error: use of undefined value here causes illegal behavior
1372// :79:17: error: use of undefined value here causes illegal behavior
1373// :79:17: error: use of undefined value here causes illegal behavior
1374// :79:17: note: when computing vector element at index '1'
1375// :79:17: error: use of undefined value here causes illegal behavior
1376// :79:17: note: when computing vector element at index '1'
1377// :79:17: error: use of undefined value here causes illegal behavior
1378// :79:17: note: when computing vector element at index '1'
1379// :79:17: error: use of undefined value here causes illegal behavior
1380// :79:17: note: when computing vector element at index '1'
1381// :79:17: error: use of undefined value here causes illegal behavior
1382// :79:17: note: when computing vector element at index '0'
1383// :79:17: error: use of undefined value here causes illegal behavior
1384// :79:17: note: when computing vector element at index '0'
1385// :79:17: error: use of undefined value here causes illegal behavior
1386// :79:17: note: when computing vector element at index '0'
1387// :79:17: error: use of undefined value here causes illegal behavior
1388// :79:17: note: when computing vector element at index '0'
1389// :79:17: error: use of undefined value here causes illegal behavior
1390// :79:17: error: use of undefined value here causes illegal behavior
1391// :79:17: error: use of undefined value here causes illegal behavior
1392// :79:17: error: use of undefined value here causes illegal behavior
1393// :79:17: error: use of undefined value here causes illegal behavior
1394// :79:17: error: use of undefined value here causes illegal behavior
1395// :79:17: error: use of undefined value here causes illegal behavior
1396// :79:17: note: when computing vector element at index '1'
1397// :79:17: error: use of undefined value here causes illegal behavior
1398// :79:17: note: when computing vector element at index '1'
1399// :79:17: error: use of undefined value here causes illegal behavior
1400// :79:17: note: when computing vector element at index '1'
1401// :79:17: error: use of undefined value here causes illegal behavior
1402// :79:17: note: when computing vector element at index '1'
1403// :79:17: error: use of undefined value here causes illegal behavior
1404// :79:17: note: when computing vector element at index '0'
1405// :79:17: error: use of undefined value here causes illegal behavior
1406// :79:17: note: when computing vector element at index '0'
1407// :79:17: error: use of undefined value here causes illegal behavior
1408// :79:17: note: when computing vector element at index '0'
1409// :79:17: error: use of undefined value here causes illegal behavior
1410// :79:17: note: when computing vector element at index '0'
1411// :79:17: error: use of undefined value here causes illegal behavior
1412// :79:17: error: use of undefined value here causes illegal behavior
1413// :79:17: error: use of undefined value here causes illegal behavior
1414// :79:17: error: use of undefined value here causes illegal behavior
1415// :79:17: error: use of undefined value here causes illegal behavior
1416// :79:17: error: use of undefined value here causes illegal behavior
1417// :79:17: error: use of undefined value here causes illegal behavior
1418// :79:17: note: when computing vector element at index '1'
1419// :79:17: error: use of undefined value here causes illegal behavior
1420// :79:17: note: when computing vector element at index '1'
1421// :79:17: error: use of undefined value here causes illegal behavior
1422// :79:17: note: when computing vector element at index '1'
1423// :79:17: error: use of undefined value here causes illegal behavior
1424// :79:17: note: when computing vector element at index '1'
1425// :79:17: error: use of undefined value here causes illegal behavior
1426// :79:17: note: when computing vector element at index '0'
1427// :79:17: error: use of undefined value here causes illegal behavior
1428// :79:17: note: when computing vector element at index '0'
1429// :79:17: error: use of undefined value here causes illegal behavior
1430// :79:17: note: when computing vector element at index '0'
1431// :79:17: error: use of undefined value here causes illegal behavior
1432// :79:17: note: when computing vector element at index '0'
1433// :82:27: error: use of undefined value here causes illegal behavior
1434// :82:27: error: use of undefined value here causes illegal behavior
1435// :82:27: error: use of undefined value here causes illegal behavior
1436// :82:27: error: use of undefined value here causes illegal behavior
1437// :82:27: error: use of undefined value here causes illegal behavior
1438// :82:27: error: use of undefined value here causes illegal behavior
1439// :82:27: error: use of undefined value here causes illegal behavior
1440// :82:27: note: when computing vector element at index '1'
1441// :82:27: error: use of undefined value here causes illegal behavior
1442// :82:27: note: when computing vector element at index '1'
1443// :82:27: error: use of undefined value here causes illegal behavior
1444// :82:27: note: when computing vector element at index '1'
1445// :82:27: error: use of undefined value here causes illegal behavior
1446// :82:27: note: when computing vector element at index '1'
1447// :82:27: error: use of undefined value here causes illegal behavior
1448// :82:27: note: when computing vector element at index '0'
1449// :82:27: error: use of undefined value here causes illegal behavior
1450// :82:27: note: when computing vector element at index '0'
1451// :82:27: error: use of undefined value here causes illegal behavior
1452// :82:27: note: when computing vector element at index '0'
1453// :82:27: error: use of undefined value here causes illegal behavior
1454// :82:27: note: when computing vector element at index '0'
1455// :82:27: error: use of undefined value here causes illegal behavior
1456// :82:27: error: use of undefined value here causes illegal behavior
1457// :82:27: error: use of undefined value here causes illegal behavior
1458// :82:27: error: use of undefined value here causes illegal behavior
1459// :82:27: error: use of undefined value here causes illegal behavior
1460// :82:27: error: use of undefined value here causes illegal behavior
1461// :82:27: error: use of undefined value here causes illegal behavior
1462// :82:27: note: when computing vector element at index '1'
1463// :82:27: error: use of undefined value here causes illegal behavior
1464// :82:27: note: when computing vector element at index '1'
1465// :82:27: error: use of undefined value here causes illegal behavior
1466// :82:27: note: when computing vector element at index '1'
1467// :82:27: error: use of undefined value here causes illegal behavior
1468// :82:27: note: when computing vector element at index '1'
1469// :82:27: error: use of undefined value here causes illegal behavior
1470// :82:27: note: when computing vector element at index '0'
1471// :82:27: error: use of undefined value here causes illegal behavior
1472// :82:27: note: when computing vector element at index '0'
1473// :82:27: error: use of undefined value here causes illegal behavior
1474// :82:27: note: when computing vector element at index '0'
1475// :82:27: error: use of undefined value here causes illegal behavior
1476// :82:27: note: when computing vector element at index '0'
1477// :82:27: error: use of undefined value here causes illegal behavior
1478// :82:27: error: use of undefined value here causes illegal behavior
1479// :82:27: error: use of undefined value here causes illegal behavior
1480// :82:27: error: use of undefined value here causes illegal behavior
1481// :82:27: error: use of undefined value here causes illegal behavior
1482// :82:27: error: use of undefined value here causes illegal behavior
1483// :82:27: error: use of undefined value here causes illegal behavior
1484// :82:27: note: when computing vector element at index '1'
1485// :82:27: error: use of undefined value here causes illegal behavior
1486// :82:27: note: when computing vector element at index '1'
1487// :82:27: error: use of undefined value here causes illegal behavior
1488// :82:27: note: when computing vector element at index '1'
1489// :82:27: error: use of undefined value here causes illegal behavior
1490// :82:27: note: when computing vector element at index '1'
1491// :82:27: error: use of undefined value here causes illegal behavior
1492// :82:27: note: when computing vector element at index '0'
1493// :82:27: error: use of undefined value here causes illegal behavior
1494// :82:27: note: when computing vector element at index '0'
1495// :82:27: error: use of undefined value here causes illegal behavior
1496// :82:27: note: when computing vector element at index '0'
1497// :82:27: error: use of undefined value here causes illegal behavior
1498// :82:27: note: when computing vector element at index '0'
1499// :82:27: error: use of undefined value here causes illegal behavior
1500// :82:27: error: use of undefined value here causes illegal behavior
1501// :82:27: error: use of undefined value here causes illegal behavior
1502// :82:27: error: use of undefined value here causes illegal behavior
1503// :82:27: error: use of undefined value here causes illegal behavior
1504// :82:27: error: use of undefined value here causes illegal behavior
1505// :82:27: error: use of undefined value here causes illegal behavior
1506// :82:27: note: when computing vector element at index '1'
1507// :82:27: error: use of undefined value here causes illegal behavior
1508// :82:27: note: when computing vector element at index '1'
1509// :82:27: error: use of undefined value here causes illegal behavior
1510// :82:27: note: when computing vector element at index '1'
1511// :82:27: error: use of undefined value here causes illegal behavior
1512// :82:27: note: when computing vector element at index '1'
1513// :82:27: error: use of undefined value here causes illegal behavior
1514// :82:27: note: when computing vector element at index '0'
1515// :82:27: error: use of undefined value here causes illegal behavior
1516// :82:27: note: when computing vector element at index '0'
1517// :82:27: error: use of undefined value here causes illegal behavior
1518// :82:27: note: when computing vector element at index '0'
1519// :82:27: error: use of undefined value here causes illegal behavior
1520// :82:27: note: when computing vector element at index '0'
1521// :82:27: error: use of undefined value here causes illegal behavior
1522// :82:27: error: use of undefined value here causes illegal behavior
1523// :82:27: error: use of undefined value here causes illegal behavior
1524// :82:27: error: use of undefined value here causes illegal behavior
1525// :82:27: error: use of undefined value here causes illegal behavior
1526// :82:27: error: use of undefined value here causes illegal behavior
1527// :82:27: error: use of undefined value here causes illegal behavior
1528// :82:27: note: when computing vector element at index '1'
1529// :82:27: error: use of undefined value here causes illegal behavior
1530// :82:27: note: when computing vector element at index '1'
1531// :82:27: error: use of undefined value here causes illegal behavior
1532// :82:27: note: when computing vector element at index '1'
1533// :82:27: error: use of undefined value here causes illegal behavior
1534// :82:27: note: when computing vector element at index '1'
1535// :82:27: error: use of undefined value here causes illegal behavior
1536// :82:27: note: when computing vector element at index '0'
1537// :82:27: error: use of undefined value here causes illegal behavior
1538// :82:27: note: when computing vector element at index '0'
1539// :82:27: error: use of undefined value here causes illegal behavior
1540// :82:27: note: when computing vector element at index '0'
1541// :82:27: error: use of undefined value here causes illegal behavior
1542// :82:27: note: when computing vector element at index '0'
1543// :82:27: error: use of undefined value here causes illegal behavior
1544// :82:27: error: use of undefined value here causes illegal behavior
1545// :82:27: error: use of undefined value here causes illegal behavior
1546// :82:27: error: use of undefined value here causes illegal behavior
1547// :82:27: error: use of undefined value here causes illegal behavior
1548// :82:27: error: use of undefined value here causes illegal behavior
1549// :82:27: error: use of undefined value here causes illegal behavior
1550// :82:27: note: when computing vector element at index '1'
1551// :82:27: error: use of undefined value here causes illegal behavior
1552// :82:27: note: when computing vector element at index '1'
1553// :82:27: error: use of undefined value here causes illegal behavior
1554// :82:27: note: when computing vector element at index '1'
1555// :82:27: error: use of undefined value here causes illegal behavior
1556// :82:27: note: when computing vector element at index '1'
1557// :82:27: error: use of undefined value here causes illegal behavior
1558// :82:27: note: when computing vector element at index '0'
1559// :82:27: error: use of undefined value here causes illegal behavior
1560// :82:27: note: when computing vector element at index '0'
1561// :82:27: error: use of undefined value here causes illegal behavior
1562// :82:27: note: when computing vector element at index '0'
1563// :82:27: error: use of undefined value here causes illegal behavior
1564// :82:27: note: when computing vector element at index '0'
1565// :87:17: error: use of undefined value here causes illegal behavior
1566// :87:17: error: use of undefined value here causes illegal behavior
1567// :87:17: note: when computing vector element at index '0'
1568// :87:17: error: use of undefined value here causes illegal behavior
1569// :87:17: note: when computing vector element at index '0'
1570// :87:17: error: use of undefined value here causes illegal behavior
1571// :87:17: note: when computing vector element at index '0'
1572// :87:17: error: use of undefined value here causes illegal behavior
1573// :87:17: note: when computing vector element at index '1'
1574// :87:17: error: use of undefined value here causes illegal behavior
1575// :87:17: note: when computing vector element at index '0'
1576// :87:17: error: use of undefined value here causes illegal behavior
1577// :87:17: note: when computing vector element at index '0'
1578// :87:17: error: use of undefined value here causes illegal behavior
1579// :87:17: note: when computing vector element at index '0'
1580// :87:17: error: use of undefined value here causes illegal behavior
1581// :87:17: error: use of undefined value here causes illegal behavior
1582// :87:17: note: when computing vector element at index '0'
1583// :87:17: error: use of undefined value here causes illegal behavior
1584// :87:17: note: when computing vector element at index '0'
1585// :87:17: error: use of undefined value here causes illegal behavior
1586// :87:17: note: when computing vector element at index '0'
1587// :87:17: error: use of undefined value here causes illegal behavior
1588// :87:17: note: when computing vector element at index '1'
1589// :87:17: error: use of undefined value here causes illegal behavior
1590// :87:17: note: when computing vector element at index '0'
1591// :87:17: error: use of undefined value here causes illegal behavior
1592// :87:17: note: when computing vector element at index '0'
1593// :87:17: error: use of undefined value here causes illegal behavior
1594// :87:17: note: when computing vector element at index '0'
1595// :87:17: error: use of undefined value here causes illegal behavior
1596// :87:17: error: use of undefined value here causes illegal behavior
1597// :87:17: note: when computing vector element at index '0'
1598// :87:17: error: use of undefined value here causes illegal behavior
1599// :87:17: note: when computing vector element at index '0'
1600// :87:17: error: use of undefined value here causes illegal behavior
1601// :87:17: note: when computing vector element at index '0'
1602// :87:17: error: use of undefined value here causes illegal behavior
1603// :87:17: note: when computing vector element at index '1'
1604// :87:17: error: use of undefined value here causes illegal behavior
1605// :87:17: note: when computing vector element at index '0'
1606// :87:17: error: use of undefined value here causes illegal behavior
1607// :87:17: note: when computing vector element at index '0'
1608// :87:17: error: use of undefined value here causes illegal behavior
1609// :87:17: note: when computing vector element at index '0'
1610// :87:17: error: use of undefined value here causes illegal behavior
1611// :87:17: error: use of undefined value here causes illegal behavior
1612// :87:17: note: when computing vector element at index '0'
1613// :87:17: error: use of undefined value here causes illegal behavior
1614// :87:17: note: when computing vector element at index '0'
1615// :87:17: error: use of undefined value here causes illegal behavior
1616// :87:17: note: when computing vector element at index '0'
1617// :87:17: error: use of undefined value here causes illegal behavior
1618// :87:17: note: when computing vector element at index '1'
1619// :87:17: error: use of undefined value here causes illegal behavior
1620// :87:17: note: when computing vector element at index '0'
1621// :87:17: error: use of undefined value here causes illegal behavior
1622// :87:17: note: when computing vector element at index '0'
1623// :87:17: error: use of undefined value here causes illegal behavior
1624// :87:17: note: when computing vector element at index '0'
1625// :87:17: error: use of undefined value here causes illegal behavior
1626// :87:17: error: use of undefined value here causes illegal behavior
1627// :87:17: note: when computing vector element at index '0'
1628// :87:17: error: use of undefined value here causes illegal behavior
1629// :87:17: note: when computing vector element at index '0'
1630// :87:17: error: use of undefined value here causes illegal behavior
1631// :87:17: note: when computing vector element at index '0'
1632// :87:17: error: use of undefined value here causes illegal behavior
1633// :87:17: note: when computing vector element at index '1'
1634// :87:17: error: use of undefined value here causes illegal behavior
1635// :87:17: note: when computing vector element at index '0'
1636// :87:17: error: use of undefined value here causes illegal behavior
1637// :87:17: note: when computing vector element at index '0'
1638// :87:17: error: use of undefined value here causes illegal behavior
1639// :87:17: note: when computing vector element at index '0'
1640// :87:17: error: use of undefined value here causes illegal behavior
1641// :87:17: error: use of undefined value here causes illegal behavior
1642// :87:17: note: when computing vector element at index '0'
1643// :87:17: error: use of undefined value here causes illegal behavior
1644// :87:17: note: when computing vector element at index '0'
1645// :87:17: error: use of undefined value here causes illegal behavior
1646// :87:17: note: when computing vector element at index '0'
1647// :87:17: error: use of undefined value here causes illegal behavior
1648// :87:17: note: when computing vector element at index '1'
1649// :87:17: error: use of undefined value here causes illegal behavior
1650// :87:17: note: when computing vector element at index '0'
1651// :87:17: error: use of undefined value here causes illegal behavior
1652// :87:17: note: when computing vector element at index '0'
1653// :87:17: error: use of undefined value here causes illegal behavior
1654// :87:17: note: when computing vector element at index '0'
1655// :87:22: error: use of undefined value here causes illegal behavior
1656// :87:22: error: use of undefined value here causes illegal behavior
1657// :87:22: note: when computing vector element at index '0'
1658// :87:22: error: use of undefined value here causes illegal behavior
1659// :87:22: note: when computing vector element at index '0'
1660// :87:22: error: use of undefined value here causes illegal behavior
1661// :87:22: note: when computing vector element at index '1'
1662// :87:22: error: use of undefined value here causes illegal behavior
1663// :87:22: note: when computing vector element at index '0'
1664// :87:22: error: use of undefined value here causes illegal behavior
1665// :87:22: note: when computing vector element at index '0'
1666// :87:22: error: use of undefined value here causes illegal behavior
1667// :87:22: error: use of undefined value here causes illegal behavior
1668// :87:22: note: when computing vector element at index '0'
1669// :87:22: error: use of undefined value here causes illegal behavior
1670// :87:22: note: when computing vector element at index '0'
1671// :87:22: error: use of undefined value here causes illegal behavior
1672// :87:22: note: when computing vector element at index '1'
1673// :87:22: error: use of undefined value here causes illegal behavior
1674// :87:22: note: when computing vector element at index '0'
1675// :87:22: error: use of undefined value here causes illegal behavior
1676// :87:22: note: when computing vector element at index '0'
1677// :87:22: error: use of undefined value here causes illegal behavior
1678// :87:22: error: use of undefined value here causes illegal behavior
1679// :87:22: note: when computing vector element at index '0'
1680// :87:22: error: use of undefined value here causes illegal behavior
1681// :87:22: note: when computing vector element at index '0'
1682// :87:22: error: use of undefined value here causes illegal behavior
1683// :87:22: note: when computing vector element at index '1'
1684// :87:22: error: use of undefined value here causes illegal behavior
1685// :87:22: note: when computing vector element at index '0'
1686// :87:22: error: use of undefined value here causes illegal behavior
1687// :87:22: note: when computing vector element at index '0'
1688// :87:22: error: use of undefined value here causes illegal behavior
1689// :87:22: error: use of undefined value here causes illegal behavior
1690// :87:22: note: when computing vector element at index '0'
1691// :87:22: error: use of undefined value here causes illegal behavior
1692// :87:22: note: when computing vector element at index '0'
1693// :87:22: error: use of undefined value here causes illegal behavior
1694// :87:22: note: when computing vector element at index '1'
1695// :87:22: error: use of undefined value here causes illegal behavior
1696// :87:22: note: when computing vector element at index '0'
1697// :87:22: error: use of undefined value here causes illegal behavior
1698// :87:22: note: when computing vector element at index '0'
1699// :87:22: error: use of undefined value here causes illegal behavior
1700// :87:22: error: use of undefined value here causes illegal behavior
1701// :87:22: note: when computing vector element at index '0'
1702// :87:22: error: use of undefined value here causes illegal behavior
1703// :87:22: note: when computing vector element at index '0'
1704// :87:22: error: use of undefined value here causes illegal behavior
1705// :87:22: note: when computing vector element at index '1'
1706// :87:22: error: use of undefined value here causes illegal behavior
1707// :87:22: note: when computing vector element at index '0'
1708// :87:22: error: use of undefined value here causes illegal behavior
1709// :87:22: note: when computing vector element at index '0'
1710// :87:22: error: use of undefined value here causes illegal behavior
1711// :87:22: error: use of undefined value here causes illegal behavior
1712// :87:22: note: when computing vector element at index '0'
1713// :87:22: error: use of undefined value here causes illegal behavior
1714// :87:22: note: when computing vector element at index '0'
1715// :87:22: error: use of undefined value here causes illegal behavior
1716// :87:22: note: when computing vector element at index '1'
1717// :87:22: error: use of undefined value here causes illegal behavior
1718// :87:22: note: when computing vector element at index '0'
1719// :87:22: error: use of undefined value here causes illegal behavior
1720// :87:22: note: when computing vector element at index '0'
1721// :90:27: error: use of undefined value here causes illegal behavior
1722// :90:27: error: use of undefined value here causes illegal behavior
1723// :90:27: note: when computing vector element at index '0'
1724// :90:27: error: use of undefined value here causes illegal behavior
1725// :90:27: note: when computing vector element at index '0'
1726// :90:27: error: use of undefined value here causes illegal behavior
1727// :90:27: note: when computing vector element at index '0'
1728// :90:27: error: use of undefined value here causes illegal behavior
1729// :90:27: note: when computing vector element at index '1'
1730// :90:27: error: use of undefined value here causes illegal behavior
1731// :90:27: note: when computing vector element at index '0'
1732// :90:27: error: use of undefined value here causes illegal behavior
1733// :90:27: note: when computing vector element at index '0'
1734// :90:27: error: use of undefined value here causes illegal behavior
1735// :90:27: note: when computing vector element at index '0'
1736// :90:27: error: use of undefined value here causes illegal behavior
1737// :90:27: error: use of undefined value here causes illegal behavior
1738// :90:27: note: when computing vector element at index '0'
1739// :90:27: error: use of undefined value here causes illegal behavior
1740// :90:27: note: when computing vector element at index '0'
1741// :90:27: error: use of undefined value here causes illegal behavior
1742// :90:27: note: when computing vector element at index '0'
1743// :90:27: error: use of undefined value here causes illegal behavior
1744// :90:27: note: when computing vector element at index '1'
1745// :90:27: error: use of undefined value here causes illegal behavior
1746// :90:27: note: when computing vector element at index '0'
1747// :90:27: error: use of undefined value here causes illegal behavior
1748// :90:27: note: when computing vector element at index '0'
1749// :90:27: error: use of undefined value here causes illegal behavior
1750// :90:27: note: when computing vector element at index '0'
1751// :90:27: error: use of undefined value here causes illegal behavior
1752// :90:27: error: use of undefined value here causes illegal behavior
1753// :90:27: note: when computing vector element at index '0'
1754// :90:27: error: use of undefined value here causes illegal behavior
1755// :90:27: note: when computing vector element at index '0'
1756// :90:27: error: use of undefined value here causes illegal behavior
1757// :90:27: note: when computing vector element at index '0'
1758// :90:27: error: use of undefined value here causes illegal behavior
1759// :90:27: note: when computing vector element at index '1'
1760// :90:27: error: use of undefined value here causes illegal behavior
1761// :90:27: note: when computing vector element at index '0'
1762// :90:27: error: use of undefined value here causes illegal behavior
1763// :90:27: note: when computing vector element at index '0'
1764// :90:27: error: use of undefined value here causes illegal behavior
1765// :90:27: note: when computing vector element at index '0'
1766// :90:27: error: use of undefined value here causes illegal behavior
1767// :90:27: error: use of undefined value here causes illegal behavior
1768// :90:27: note: when computing vector element at index '0'
1769// :90:27: error: use of undefined value here causes illegal behavior
1770// :90:27: note: when computing vector element at index '0'
1771// :90:27: error: use of undefined value here causes illegal behavior
1772// :90:27: note: when computing vector element at index '0'
1773// :90:27: error: use of undefined value here causes illegal behavior
1774// :90:27: note: when computing vector element at index '1'
1775// :90:27: error: use of undefined value here causes illegal behavior
1776// :90:27: note: when computing vector element at index '0'
1777// :90:27: error: use of undefined value here causes illegal behavior
1778// :90:27: note: when computing vector element at index '0'
1779// :90:27: error: use of undefined value here causes illegal behavior
1780// :90:27: note: when computing vector element at index '0'
1781// :90:27: error: use of undefined value here causes illegal behavior
1782// :90:27: error: use of undefined value here causes illegal behavior
1783// :90:27: note: when computing vector element at index '0'
1784// :90:27: error: use of undefined value here causes illegal behavior
1785// :90:27: note: when computing vector element at index '0'
1786// :90:27: error: use of undefined value here causes illegal behavior
1787// :90:27: note: when computing vector element at index '0'
1788// :90:27: error: use of undefined value here causes illegal behavior
1789// :90:27: note: when computing vector element at index '1'
1790// :90:27: error: use of undefined value here causes illegal behavior
1791// :90:27: note: when computing vector element at index '0'
1792// :90:27: error: use of undefined value here causes illegal behavior
1793// :90:27: note: when computing vector element at index '0'
1794// :90:27: error: use of undefined value here causes illegal behavior
1795// :90:27: note: when computing vector element at index '0'
1796// :90:27: error: use of undefined value here causes illegal behavior
1797// :90:27: error: use of undefined value here causes illegal behavior
1798// :90:27: note: when computing vector element at index '0'
1799// :90:27: error: use of undefined value here causes illegal behavior
1800// :90:27: note: when computing vector element at index '0'
1801// :90:27: error: use of undefined value here causes illegal behavior
1802// :90:27: note: when computing vector element at index '0'
1803// :90:27: error: use of undefined value here causes illegal behavior
1804// :90:27: note: when computing vector element at index '1'
1805// :90:27: error: use of undefined value here causes illegal behavior
1806// :90:27: note: when computing vector element at index '0'
1807// :90:27: error: use of undefined value here causes illegal behavior
1808// :90:27: note: when computing vector element at index '0'
1809// :90:27: error: use of undefined value here causes illegal behavior
1810// :90:27: note: when computing vector element at index '0'
1811// :90:30: error: use of undefined value here causes illegal behavior
1812// :90:30: error: use of undefined value here causes illegal behavior
1813// :90:30: note: when computing vector element at index '0'
1814// :90:30: error: use of undefined value here causes illegal behavior
1815// :90:30: note: when computing vector element at index '0'
1816// :90:30: error: use of undefined value here causes illegal behavior
1817// :90:30: note: when computing vector element at index '1'
1818// :90:30: error: use of undefined value here causes illegal behavior
1819// :90:30: note: when computing vector element at index '0'
1820// :90:30: error: use of undefined value here causes illegal behavior
1821// :90:30: note: when computing vector element at index '0'
1822// :90:30: error: use of undefined value here causes illegal behavior
1823// :90:30: error: use of undefined value here causes illegal behavior
1824// :90:30: note: when computing vector element at index '0'
1825// :90:30: error: use of undefined value here causes illegal behavior
1826// :90:30: note: when computing vector element at index '0'
1827// :90:30: error: use of undefined value here causes illegal behavior
1828// :90:30: note: when computing vector element at index '1'
1829// :90:30: error: use of undefined value here causes illegal behavior
1830// :90:30: note: when computing vector element at index '0'
1831// :90:30: error: use of undefined value here causes illegal behavior
1832// :90:30: note: when computing vector element at index '0'
1833// :90:30: error: use of undefined value here causes illegal behavior
1834// :90:30: error: use of undefined value here causes illegal behavior
1835// :90:30: note: when computing vector element at index '0'
1836// :90:30: error: use of undefined value here causes illegal behavior
1837// :90:30: note: when computing vector element at index '0'
1838// :90:30: error: use of undefined value here causes illegal behavior
1839// :90:30: note: when computing vector element at index '1'
1840// :90:30: error: use of undefined value here causes illegal behavior
1841// :90:30: note: when computing vector element at index '0'
1842// :90:30: error: use of undefined value here causes illegal behavior
1843// :90:30: note: when computing vector element at index '0'
1844// :90:30: error: use of undefined value here causes illegal behavior
1845// :90:30: error: use of undefined value here causes illegal behavior
1846// :90:30: note: when computing vector element at index '0'
1847// :90:30: error: use of undefined value here causes illegal behavior
1848// :90:30: note: when computing vector element at index '0'
1849// :90:30: error: use of undefined value here causes illegal behavior
1850// :90:30: note: when computing vector element at index '1'
1851// :90:30: error: use of undefined value here causes illegal behavior
1852// :90:30: note: when computing vector element at index '0'
1853// :90:30: error: use of undefined value here causes illegal behavior
1854// :90:30: note: when computing vector element at index '0'
1855// :90:30: error: use of undefined value here causes illegal behavior
1856// :90:30: error: use of undefined value here causes illegal behavior
1857// :90:30: note: when computing vector element at index '0'
1858// :90:30: error: use of undefined value here causes illegal behavior
1859// :90:30: note: when computing vector element at index '0'
1860// :90:30: error: use of undefined value here causes illegal behavior
1861// :90:30: note: when computing vector element at index '1'
1862// :90:30: error: use of undefined value here causes illegal behavior
1863// :90:30: note: when computing vector element at index '0'
1864// :90:30: error: use of undefined value here causes illegal behavior
1865// :90:30: note: when computing vector element at index '0'
1866// :90:30: error: use of undefined value here causes illegal behavior
1867// :90:30: error: use of undefined value here causes illegal behavior
1868// :90:30: note: when computing vector element at index '0'
1869// :90:30: error: use of undefined value here causes illegal behavior
1870// :90:30: note: when computing vector element at index '0'
1871// :90:30: error: use of undefined value here causes illegal behavior
1872// :90:30: note: when computing vector element at index '1'
1873// :90:30: error: use of undefined value here causes illegal behavior
1874// :90:30: note: when computing vector element at index '0'
1875// :90:30: error: use of undefined value here causes illegal behavior
1876// :90:30: note: when computing vector element at index '0'
1877// :93:34: error: use of undefined value here causes illegal behavior
1878// :93:34: error: use of undefined value here causes illegal behavior
1879// :93:34: note: when computing vector element at index '0'
1880// :93:34: error: use of undefined value here causes illegal behavior
1881// :93:34: note: when computing vector element at index '0'
1882// :93:34: error: use of undefined value here causes illegal behavior
1883// :93:34: note: when computing vector element at index '0'
1884// :93:34: error: use of undefined value here causes illegal behavior
1885// :93:34: note: when computing vector element at index '1'
1886// :93:34: error: use of undefined value here causes illegal behavior
1887// :93:34: note: when computing vector element at index '0'
1888// :93:34: error: use of undefined value here causes illegal behavior
1889// :93:34: note: when computing vector element at index '0'
1890// :93:34: error: use of undefined value here causes illegal behavior
1891// :93:34: note: when computing vector element at index '0'
1892// :93:34: error: use of undefined value here causes illegal behavior
1893// :93:34: error: use of undefined value here causes illegal behavior
1894// :93:34: note: when computing vector element at index '0'
1895// :93:34: error: use of undefined value here causes illegal behavior
1896// :93:34: note: when computing vector element at index '0'
1897// :93:34: error: use of undefined value here causes illegal behavior
1898// :93:34: note: when computing vector element at index '0'
1899// :93:34: error: use of undefined value here causes illegal behavior
1900// :93:34: note: when computing vector element at index '1'
1901// :93:34: error: use of undefined value here causes illegal behavior
1902// :93:34: note: when computing vector element at index '0'
1903// :93:34: error: use of undefined value here causes illegal behavior
1904// :93:34: note: when computing vector element at index '0'
1905// :93:34: error: use of undefined value here causes illegal behavior
1906// :93:34: note: when computing vector element at index '0'
1907// :93:34: error: use of undefined value here causes illegal behavior
1908// :93:34: error: use of undefined value here causes illegal behavior
1909// :93:34: note: when computing vector element at index '0'
1910// :93:34: error: use of undefined value here causes illegal behavior
1911// :93:34: note: when computing vector element at index '0'
1912// :93:34: error: use of undefined value here causes illegal behavior
1913// :93:34: note: when computing vector element at index '0'
1914// :93:34: error: use of undefined value here causes illegal behavior
1915// :93:34: note: when computing vector element at index '1'
1916// :93:34: error: use of undefined value here causes illegal behavior
1917// :93:34: note: when computing vector element at index '0'
1918// :93:34: error: use of undefined value here causes illegal behavior
1919// :93:34: note: when computing vector element at index '0'
1920// :93:34: error: use of undefined value here causes illegal behavior
1921// :93:34: note: when computing vector element at index '0'
1922// :93:34: error: use of undefined value here causes illegal behavior
1923// :93:34: error: use of undefined value here causes illegal behavior
1924// :93:34: note: when computing vector element at index '0'
1925// :93:34: error: use of undefined value here causes illegal behavior
1926// :93:34: note: when computing vector element at index '0'
1927// :93:34: error: use of undefined value here causes illegal behavior
1928// :93:34: note: when computing vector element at index '0'
1929// :93:34: error: use of undefined value here causes illegal behavior
1930// :93:34: note: when computing vector element at index '1'
1931// :93:34: error: use of undefined value here causes illegal behavior
1932// :93:34: note: when computing vector element at index '0'
1933// :93:34: error: use of undefined value here causes illegal behavior
1934// :93:34: note: when computing vector element at index '0'
1935// :93:34: error: use of undefined value here causes illegal behavior
1936// :93:34: note: when computing vector element at index '0'
1937// :93:34: error: use of undefined value here causes illegal behavior
1938// :93:34: error: use of undefined value here causes illegal behavior
1939// :93:34: note: when computing vector element at index '0'
1940// :93:34: error: use of undefined value here causes illegal behavior
1941// :93:34: note: when computing vector element at index '0'
1942// :93:34: error: use of undefined value here causes illegal behavior
1943// :93:34: note: when computing vector element at index '0'
1944// :93:34: error: use of undefined value here causes illegal behavior
1945// :93:34: note: when computing vector element at index '1'
1946// :93:34: error: use of undefined value here causes illegal behavior
1947// :93:34: note: when computing vector element at index '0'
1948// :93:34: error: use of undefined value here causes illegal behavior
1949// :93:34: note: when computing vector element at index '0'
1950// :93:34: error: use of undefined value here causes illegal behavior
1951// :93:34: note: when computing vector element at index '0'
1952// :93:34: error: use of undefined value here causes illegal behavior
1953// :93:34: error: use of undefined value here causes illegal behavior
1954// :93:34: note: when computing vector element at index '0'
1955// :93:34: error: use of undefined value here causes illegal behavior
1956// :93:34: note: when computing vector element at index '0'
1957// :93:34: error: use of undefined value here causes illegal behavior
1958// :93:34: note: when computing vector element at index '0'
1959// :93:34: error: use of undefined value here causes illegal behavior
1960// :93:34: note: when computing vector element at index '1'
1961// :93:34: error: use of undefined value here causes illegal behavior
1962// :93:34: note: when computing vector element at index '0'
1963// :93:34: error: use of undefined value here causes illegal behavior
1964// :93:34: note: when computing vector element at index '0'
1965// :93:34: error: use of undefined value here causes illegal behavior
1966// :93:34: note: when computing vector element at index '0'
1967// :93:37: error: use of undefined value here causes illegal behavior
1968// :93:37: error: use of undefined value here causes illegal behavior
1969// :93:37: note: when computing vector element at index '0'
1970// :93:37: error: use of undefined value here causes illegal behavior
1971// :93:37: note: when computing vector element at index '0'
1972// :93:37: error: use of undefined value here causes illegal behavior
1973// :93:37: note: when computing vector element at index '1'
1974// :93:37: error: use of undefined value here causes illegal behavior
1975// :93:37: note: when computing vector element at index '0'
1976// :93:37: error: use of undefined value here causes illegal behavior
1977// :93:37: note: when computing vector element at index '0'
1978// :93:37: error: use of undefined value here causes illegal behavior
1979// :93:37: error: use of undefined value here causes illegal behavior
1980// :93:37: note: when computing vector element at index '0'
1981// :93:37: error: use of undefined value here causes illegal behavior
1982// :93:37: note: when computing vector element at index '0'
1983// :93:37: error: use of undefined value here causes illegal behavior
1984// :93:37: note: when computing vector element at index '1'
1985// :93:37: error: use of undefined value here causes illegal behavior
1986// :93:37: note: when computing vector element at index '0'
1987// :93:37: error: use of undefined value here causes illegal behavior
1988// :93:37: note: when computing vector element at index '0'
1989// :93:37: error: use of undefined value here causes illegal behavior
1990// :93:37: error: use of undefined value here causes illegal behavior
1991// :93:37: note: when computing vector element at index '0'
1992// :93:37: error: use of undefined value here causes illegal behavior
1993// :93:37: note: when computing vector element at index '0'
1994// :93:37: error: use of undefined value here causes illegal behavior
1995// :93:37: note: when computing vector element at index '1'
1996// :93:37: error: use of undefined value here causes illegal behavior
1997// :93:37: note: when computing vector element at index '0'
1998// :93:37: error: use of undefined value here causes illegal behavior
1999// :93:37: note: when computing vector element at index '0'
2000// :93:37: error: use of undefined value here causes illegal behavior
2001// :93:37: error: use of undefined value here causes illegal behavior
2002// :93:37: note: when computing vector element at index '0'
2003// :93:37: error: use of undefined value here causes illegal behavior
2004// :93:37: note: when computing vector element at index '0'
2005// :93:37: error: use of undefined value here causes illegal behavior
2006// :93:37: note: when computing vector element at index '1'
2007// :93:37: error: use of undefined value here causes illegal behavior
2008// :93:37: note: when computing vector element at index '0'
2009// :93:37: error: use of undefined value here causes illegal behavior
2010// :93:37: note: when computing vector element at index '0'
2011// :93:37: error: use of undefined value here causes illegal behavior
2012// :93:37: error: use of undefined value here causes illegal behavior
2013// :93:37: note: when computing vector element at index '0'
2014// :93:37: error: use of undefined value here causes illegal behavior
2015// :93:37: note: when computing vector element at index '0'
2016// :93:37: error: use of undefined value here causes illegal behavior
2017// :93:37: note: when computing vector element at index '1'
2018// :93:37: error: use of undefined value here causes illegal behavior
2019// :93:37: note: when computing vector element at index '0'
2020// :93:37: error: use of undefined value here causes illegal behavior
2021// :93:37: note: when computing vector element at index '0'
2022// :93:37: error: use of undefined value here causes illegal behavior
2023// :93:37: error: use of undefined value here causes illegal behavior
2024// :93:37: note: when computing vector element at index '0'
2025// :93:37: error: use of undefined value here causes illegal behavior
2026// :93:37: note: when computing vector element at index '0'
2027// :93:37: error: use of undefined value here causes illegal behavior
2028// :93:37: note: when computing vector element at index '1'
2029// :93:37: error: use of undefined value here causes illegal behavior
2030// :93:37: note: when computing vector element at index '0'
2031// :93:37: error: use of undefined value here causes illegal behavior
2032// :93:37: note: when computing vector element at index '0'
2033// :96:17: error: use of undefined value here causes illegal behavior
2034// :96:17: error: use of undefined value here causes illegal behavior
2035// :96:17: note: when computing vector element at index '0'
2036// :96:17: error: use of undefined value here causes illegal behavior
2037// :96:17: note: when computing vector element at index '0'
2038// :96:17: error: use of undefined value here causes illegal behavior
2039// :96:17: note: when computing vector element at index '0'
2040// :96:17: error: use of undefined value here causes illegal behavior
2041// :96:17: note: when computing vector element at index '1'
2042// :96:17: error: use of undefined value here causes illegal behavior
2043// :96:17: note: when computing vector element at index '0'
2044// :96:17: error: use of undefined value here causes illegal behavior
2045// :96:17: note: when computing vector element at index '0'
2046// :96:17: error: use of undefined value here causes illegal behavior
2047// :96:17: note: when computing vector element at index '0'
2048// :96:17: error: use of undefined value here causes illegal behavior
2049// :96:17: error: use of undefined value here causes illegal behavior
2050// :96:17: note: when computing vector element at index '0'
2051// :96:17: error: use of undefined value here causes illegal behavior
2052// :96:17: note: when computing vector element at index '0'
2053// :96:17: error: use of undefined value here causes illegal behavior
2054// :96:17: note: when computing vector element at index '0'
2055// :96:17: error: use of undefined value here causes illegal behavior
2056// :96:17: note: when computing vector element at index '1'
2057// :96:17: error: use of undefined value here causes illegal behavior
2058// :96:17: note: when computing vector element at index '0'
2059// :96:17: error: use of undefined value here causes illegal behavior
2060// :96:17: note: when computing vector element at index '0'
2061// :96:17: error: use of undefined value here causes illegal behavior
2062// :96:17: note: when computing vector element at index '0'
2063// :96:17: error: use of undefined value here causes illegal behavior
2064// :96:17: error: use of undefined value here causes illegal behavior
2065// :96:17: note: when computing vector element at index '0'
2066// :96:17: error: use of undefined value here causes illegal behavior
2067// :96:17: note: when computing vector element at index '0'
2068// :96:17: error: use of undefined value here causes illegal behavior
2069// :96:17: note: when computing vector element at index '0'
2070// :96:17: error: use of undefined value here causes illegal behavior
2071// :96:17: note: when computing vector element at index '1'
2072// :96:17: error: use of undefined value here causes illegal behavior
2073// :96:17: note: when computing vector element at index '0'
2074// :96:17: error: use of undefined value here causes illegal behavior
2075// :96:17: note: when computing vector element at index '0'
2076// :96:17: error: use of undefined value here causes illegal behavior
2077// :96:17: note: when computing vector element at index '0'
2078// :96:17: error: use of undefined value here causes illegal behavior
2079// :96:17: error: use of undefined value here causes illegal behavior
2080// :96:17: note: when computing vector element at index '0'
2081// :96:17: error: use of undefined value here causes illegal behavior
2082// :96:17: note: when computing vector element at index '0'
2083// :96:17: error: use of undefined value here causes illegal behavior
2084// :96:17: note: when computing vector element at index '0'
2085// :96:17: error: use of undefined value here causes illegal behavior
2086// :96:17: note: when computing vector element at index '1'
2087// :96:17: error: use of undefined value here causes illegal behavior
2088// :96:17: note: when computing vector element at index '0'
2089// :96:17: error: use of undefined value here causes illegal behavior
2090// :96:17: note: when computing vector element at index '0'
2091// :96:17: error: use of undefined value here causes illegal behavior
2092// :96:17: note: when computing vector element at index '0'
2093// :96:17: error: use of undefined value here causes illegal behavior
2094// :96:17: error: use of undefined value here causes illegal behavior
2095// :96:17: note: when computing vector element at index '0'
2096// :96:17: error: use of undefined value here causes illegal behavior
2097// :96:17: note: when computing vector element at index '0'
2098// :96:17: error: use of undefined value here causes illegal behavior
2099// :96:17: note: when computing vector element at index '0'
2100// :96:17: error: use of undefined value here causes illegal behavior
2101// :96:17: note: when computing vector element at index '1'
2102// :96:17: error: use of undefined value here causes illegal behavior
2103// :96:17: note: when computing vector element at index '0'
2104// :96:17: error: use of undefined value here causes illegal behavior
2105// :96:17: note: when computing vector element at index '0'
2106// :96:17: error: use of undefined value here causes illegal behavior
2107// :96:17: note: when computing vector element at index '0'
2108// :96:17: error: use of undefined value here causes illegal behavior
2109// :96:17: error: use of undefined value here causes illegal behavior
2110// :96:17: note: when computing vector element at index '0'
2111// :96:17: error: use of undefined value here causes illegal behavior
2112// :96:17: note: when computing vector element at index '0'
2113// :96:17: error: use of undefined value here causes illegal behavior
2114// :96:17: note: when computing vector element at index '0'
2115// :96:17: error: use of undefined value here causes illegal behavior
2116// :96:17: note: when computing vector element at index '1'
2117// :96:17: error: use of undefined value here causes illegal behavior
2118// :96:17: note: when computing vector element at index '0'
2119// :96:17: error: use of undefined value here causes illegal behavior
2120// :96:17: note: when computing vector element at index '0'
2121// :96:17: error: use of undefined value here causes illegal behavior
2122// :96:17: note: when computing vector element at index '0'
2123// :96:22: error: use of undefined value here causes illegal behavior
2124// :96:22: error: use of undefined value here causes illegal behavior
2125// :96:22: note: when computing vector element at index '0'
2126// :96:22: error: use of undefined value here causes illegal behavior
2127// :96:22: note: when computing vector element at index '0'
2128// :96:22: error: use of undefined value here causes illegal behavior
2129// :96:22: note: when computing vector element at index '1'
2130// :96:22: error: use of undefined value here causes illegal behavior
2131// :96:22: note: when computing vector element at index '0'
2132// :96:22: error: use of undefined value here causes illegal behavior
2133// :96:22: note: when computing vector element at index '0'
2134// :96:22: error: use of undefined value here causes illegal behavior
2135// :96:22: error: use of undefined value here causes illegal behavior
2136// :96:22: note: when computing vector element at index '0'
2137// :96:22: error: use of undefined value here causes illegal behavior
2138// :96:22: note: when computing vector element at index '0'
2139// :96:22: error: use of undefined value here causes illegal behavior
2140// :96:22: note: when computing vector element at index '1'
2141// :96:22: error: use of undefined value here causes illegal behavior
2142// :96:22: note: when computing vector element at index '0'
2143// :96:22: error: use of undefined value here causes illegal behavior
2144// :96:22: note: when computing vector element at index '0'
2145// :96:22: error: use of undefined value here causes illegal behavior
2146// :96:22: error: use of undefined value here causes illegal behavior
2147// :96:22: note: when computing vector element at index '0'
2148// :96:22: error: use of undefined value here causes illegal behavior
2149// :96:22: note: when computing vector element at index '0'
2150// :96:22: error: use of undefined value here causes illegal behavior
2151// :96:22: note: when computing vector element at index '1'
2152// :96:22: error: use of undefined value here causes illegal behavior
2153// :96:22: note: when computing vector element at index '0'
2154// :96:22: error: use of undefined value here causes illegal behavior
2155// :96:22: note: when computing vector element at index '0'
2156// :96:22: error: use of undefined value here causes illegal behavior
2157// :96:22: error: use of undefined value here causes illegal behavior
2158// :96:22: note: when computing vector element at index '0'
2159// :96:22: error: use of undefined value here causes illegal behavior
2160// :96:22: note: when computing vector element at index '0'
2161// :96:22: error: use of undefined value here causes illegal behavior
2162// :96:22: note: when computing vector element at index '1'
2163// :96:22: error: use of undefined value here causes illegal behavior
2164// :96:22: note: when computing vector element at index '0'
2165// :96:22: error: use of undefined value here causes illegal behavior
2166// :96:22: note: when computing vector element at index '0'
2167// :96:22: error: use of undefined value here causes illegal behavior
2168// :96:22: error: use of undefined value here causes illegal behavior
2169// :96:22: note: when computing vector element at index '0'
2170// :96:22: error: use of undefined value here causes illegal behavior
2171// :96:22: note: when computing vector element at index '0'
2172// :96:22: error: use of undefined value here causes illegal behavior
2173// :96:22: note: when computing vector element at index '1'
2174// :96:22: error: use of undefined value here causes illegal behavior
2175// :96:22: note: when computing vector element at index '0'
2176// :96:22: error: use of undefined value here causes illegal behavior
2177// :96:22: note: when computing vector element at index '0'
2178// :96:22: error: use of undefined value here causes illegal behavior
2179// :96:22: error: use of undefined value here causes illegal behavior
2180// :96:22: note: when computing vector element at index '0'
2181// :96:22: error: use of undefined value here causes illegal behavior
2182// :96:22: note: when computing vector element at index '0'
2183// :96:22: error: use of undefined value here causes illegal behavior
2184// :96:22: note: when computing vector element at index '1'
2185// :96:22: error: use of undefined value here causes illegal behavior
2186// :96:22: note: when computing vector element at index '0'
2187// :96:22: error: use of undefined value here causes illegal behavior
2188// :96:22: note: when computing vector element at index '0'
2189// :99:27: error: use of undefined value here causes illegal behavior
2190// :99:27: error: use of undefined value here causes illegal behavior
2191// :99:27: note: when computing vector element at index '0'
2192// :99:27: error: use of undefined value here causes illegal behavior
2193// :99:27: note: when computing vector element at index '0'
2194// :99:27: error: use of undefined value here causes illegal behavior
2195// :99:27: note: when computing vector element at index '0'
2196// :99:27: error: use of undefined value here causes illegal behavior
2197// :99:27: note: when computing vector element at index '1'
2198// :99:27: error: use of undefined value here causes illegal behavior
2199// :99:27: note: when computing vector element at index '0'
2200// :99:27: error: use of undefined value here causes illegal behavior
2201// :99:27: note: when computing vector element at index '0'
2202// :99:27: error: use of undefined value here causes illegal behavior
2203// :99:27: note: when computing vector element at index '0'
2204// :99:27: error: use of undefined value here causes illegal behavior
2205// :99:27: error: use of undefined value here causes illegal behavior
2206// :99:27: note: when computing vector element at index '0'
2207// :99:27: error: use of undefined value here causes illegal behavior
2208// :99:27: note: when computing vector element at index '0'
2209// :99:27: error: use of undefined value here causes illegal behavior
2210// :99:27: note: when computing vector element at index '0'
2211// :99:27: error: use of undefined value here causes illegal behavior
2212// :99:27: note: when computing vector element at index '1'
2213// :99:27: error: use of undefined value here causes illegal behavior
2214// :99:27: note: when computing vector element at index '0'
2215// :99:27: error: use of undefined value here causes illegal behavior
2216// :99:27: note: when computing vector element at index '0'
2217// :99:27: error: use of undefined value here causes illegal behavior
2218// :99:27: note: when computing vector element at index '0'
2219// :99:27: error: use of undefined value here causes illegal behavior
2220// :99:27: error: use of undefined value here causes illegal behavior
2221// :99:27: note: when computing vector element at index '0'
2222// :99:27: error: use of undefined value here causes illegal behavior
2223// :99:27: note: when computing vector element at index '0'
2224// :99:27: error: use of undefined value here causes illegal behavior
2225// :99:27: note: when computing vector element at index '0'
2226// :99:27: error: use of undefined value here causes illegal behavior
2227// :99:27: note: when computing vector element at index '1'
2228// :99:27: error: use of undefined value here causes illegal behavior
2229// :99:27: note: when computing vector element at index '0'
2230// :99:27: error: use of undefined value here causes illegal behavior
2231// :99:27: note: when computing vector element at index '0'
2232// :99:27: error: use of undefined value here causes illegal behavior
2233// :99:27: note: when computing vector element at index '0'
2234// :99:27: error: use of undefined value here causes illegal behavior
2235// :99:27: error: use of undefined value here causes illegal behavior
2236// :99:27: note: when computing vector element at index '0'
2237// :99:27: error: use of undefined value here causes illegal behavior
2238// :99:27: note: when computing vector element at index '0'
2239// :99:27: error: use of undefined value here causes illegal behavior
2240// :99:27: note: when computing vector element at index '0'
2241// :99:27: error: use of undefined value here causes illegal behavior
2242// :99:27: note: when computing vector element at index '1'
2243// :99:27: error: use of undefined value here causes illegal behavior
2244// :99:27: note: when computing vector element at index '0'
2245// :99:27: error: use of undefined value here causes illegal behavior
2246// :99:27: note: when computing vector element at index '0'
2247// :99:27: error: use of undefined value here causes illegal behavior
2248// :99:27: note: when computing vector element at index '0'
2249// :99:27: error: use of undefined value here causes illegal behavior
2250// :99:27: error: use of undefined value here causes illegal behavior
2251// :99:27: note: when computing vector element at index '0'
2252// :99:27: error: use of undefined value here causes illegal behavior
2253// :99:27: note: when computing vector element at index '0'
2254// :99:27: error: use of undefined value here causes illegal behavior
2255// :99:27: note: when computing vector element at index '0'
2256// :99:27: error: use of undefined value here causes illegal behavior
2257// :99:27: note: when computing vector element at index '1'
2258// :99:27: error: use of undefined value here causes illegal behavior
2259// :99:27: note: when computing vector element at index '0'
2260// :99:27: error: use of undefined value here causes illegal behavior
2261// :99:27: note: when computing vector element at index '0'
2262// :99:27: error: use of undefined value here causes illegal behavior
2263// :99:27: note: when computing vector element at index '0'
2264// :99:27: error: use of undefined value here causes illegal behavior
2265// :99:27: error: use of undefined value here causes illegal behavior
2266// :99:27: note: when computing vector element at index '0'
2267// :99:27: error: use of undefined value here causes illegal behavior
2268// :99:27: note: when computing vector element at index '0'
2269// :99:27: error: use of undefined value here causes illegal behavior
2270// :99:27: note: when computing vector element at index '0'
2271// :99:27: error: use of undefined value here causes illegal behavior
2272// :99:27: note: when computing vector element at index '1'
2273// :99:27: error: use of undefined value here causes illegal behavior
2274// :99:27: note: when computing vector element at index '0'
2275// :99:27: error: use of undefined value here causes illegal behavior
2276// :99:27: note: when computing vector element at index '0'
2277// :99:27: error: use of undefined value here causes illegal behavior
2278// :99:27: note: when computing vector element at index '0'
2279// :99:30: error: use of undefined value here causes illegal behavior
2280// :99:30: error: use of undefined value here causes illegal behavior
2281// :99:30: note: when computing vector element at index '0'
2282// :99:30: error: use of undefined value here causes illegal behavior
2283// :99:30: note: when computing vector element at index '0'
2284// :99:30: error: use of undefined value here causes illegal behavior
2285// :99:30: note: when computing vector element at index '1'
2286// :99:30: error: use of undefined value here causes illegal behavior
2287// :99:30: note: when computing vector element at index '0'
2288// :99:30: error: use of undefined value here causes illegal behavior
2289// :99:30: note: when computing vector element at index '0'
2290// :99:30: error: use of undefined value here causes illegal behavior
2291// :99:30: error: use of undefined value here causes illegal behavior
2292// :99:30: note: when computing vector element at index '0'
2293// :99:30: error: use of undefined value here causes illegal behavior
2294// :99:30: note: when computing vector element at index '0'
2295// :99:30: error: use of undefined value here causes illegal behavior
2296// :99:30: note: when computing vector element at index '1'
2297// :99:30: error: use of undefined value here causes illegal behavior
2298// :99:30: note: when computing vector element at index '0'
2299// :99:30: error: use of undefined value here causes illegal behavior
2300// :99:30: note: when computing vector element at index '0'
2301// :99:30: error: use of undefined value here causes illegal behavior
2302// :99:30: error: use of undefined value here causes illegal behavior
2303// :99:30: note: when computing vector element at index '0'
2304// :99:30: error: use of undefined value here causes illegal behavior
2305// :99:30: note: when computing vector element at index '0'
2306// :99:30: error: use of undefined value here causes illegal behavior
2307// :99:30: note: when computing vector element at index '1'
2308// :99:30: error: use of undefined value here causes illegal behavior
2309// :99:30: note: when computing vector element at index '0'
2310// :99:30: error: use of undefined value here causes illegal behavior
2311// :99:30: note: when computing vector element at index '0'
2312// :99:30: error: use of undefined value here causes illegal behavior
2313// :99:30: error: use of undefined value here causes illegal behavior
2314// :99:30: note: when computing vector element at index '0'
2315// :99:30: error: use of undefined value here causes illegal behavior
2316// :99:30: note: when computing vector element at index '0'
2317// :99:30: error: use of undefined value here causes illegal behavior
2318// :99:30: note: when computing vector element at index '1'
2319// :99:30: error: use of undefined value here causes illegal behavior
2320// :99:30: note: when computing vector element at index '0'
2321// :99:30: error: use of undefined value here causes illegal behavior
2322// :99:30: note: when computing vector element at index '0'
2323// :99:30: error: use of undefined value here causes illegal behavior
2324// :99:30: error: use of undefined value here causes illegal behavior
2325// :99:30: note: when computing vector element at index '0'
2326// :99:30: error: use of undefined value here causes illegal behavior
2327// :99:30: note: when computing vector element at index '0'
2328// :99:30: error: use of undefined value here causes illegal behavior
2329// :99:30: note: when computing vector element at index '1'
2330// :99:30: error: use of undefined value here causes illegal behavior
2331// :99:30: note: when computing vector element at index '0'
2332// :99:30: error: use of undefined value here causes illegal behavior
2333// :99:30: note: when computing vector element at index '0'
2334// :99:30: error: use of undefined value here causes illegal behavior
2335// :99:30: error: use of undefined value here causes illegal behavior
2336// :99:30: note: when computing vector element at index '0'
2337// :99:30: error: use of undefined value here causes illegal behavior
2338// :99:30: note: when computing vector element at index '0'
2339// :99:30: error: use of undefined value here causes illegal behavior
2340// :99:30: note: when computing vector element at index '1'
2341// :99:30: error: use of undefined value here causes illegal behavior
2342// :99:30: note: when computing vector element at index '0'
2343// :99:30: error: use of undefined value here causes illegal behavior
2344// :99:30: note: when computing vector element at index '0'
2345// :104:22: error: use of undefined value here causes illegal behavior
2346// :104:22: error: use of undefined value here causes illegal behavior
2347// :104:22: error: use of undefined value here causes illegal behavior
2348// :104:22: error: use of undefined value here causes illegal behavior
2349// :104:22: error: use of undefined value here causes illegal behavior
2350// :104:22: error: use of undefined value here causes illegal behavior
2351// :104:22: error: use of undefined value here causes illegal behavior
2352// :104:22: note: when computing vector element at index '1'
2353// :104:22: error: use of undefined value here causes illegal behavior
2354// :104:22: note: when computing vector element at index '1'
2355// :104:22: error: use of undefined value here causes illegal behavior
2356// :104:22: note: when computing vector element at index '1'
2357// :104:22: error: use of undefined value here causes illegal behavior
2358// :104:22: note: when computing vector element at index '1'
2359// :104:22: error: use of undefined value here causes illegal behavior
2360// :104:22: note: when computing vector element at index '0'
2361// :104:22: error: use of undefined value here causes illegal behavior
2362// :104:22: note: when computing vector element at index '0'
2363// :104:22: error: use of undefined value here causes illegal behavior
2364// :104:22: note: when computing vector element at index '0'
2365// :104:22: error: use of undefined value here causes illegal behavior
2366// :104:22: note: when computing vector element at index '0'
2367// :104:22: error: use of undefined value here causes illegal behavior
2368// :104:22: error: use of undefined value here causes illegal behavior
2369// :104:22: error: use of undefined value here causes illegal behavior
2370// :104:22: error: use of undefined value here causes illegal behavior
2371// :104:22: error: use of undefined value here causes illegal behavior
2372// :104:22: error: use of undefined value here causes illegal behavior
2373// :104:22: error: use of undefined value here causes illegal behavior
2374// :104:22: note: when computing vector element at index '1'
2375// :104:22: error: use of undefined value here causes illegal behavior
2376// :104:22: note: when computing vector element at index '1'
2377// :104:22: error: use of undefined value here causes illegal behavior
2378// :104:22: note: when computing vector element at index '1'
2379// :104:22: error: use of undefined value here causes illegal behavior
2380// :104:22: note: when computing vector element at index '1'
2381// :104:22: error: use of undefined value here causes illegal behavior
2382// :104:22: note: when computing vector element at index '0'
2383// :104:22: error: use of undefined value here causes illegal behavior
2384// :104:22: note: when computing vector element at index '0'
2385// :104:22: error: use of undefined value here causes illegal behavior
2386// :104:22: note: when computing vector element at index '0'
2387// :104:22: error: use of undefined value here causes illegal behavior
2388// :104:22: note: when computing vector element at index '0'
2389// :104:22: error: use of undefined value here causes illegal behavior
2390// :104:22: error: use of undefined value here causes illegal behavior
2391// :104:22: error: use of undefined value here causes illegal behavior
2392// :104:22: error: use of undefined value here causes illegal behavior
2393// :104:22: error: use of undefined value here causes illegal behavior
2394// :104:22: error: use of undefined value here causes illegal behavior
2395// :104:22: error: use of undefined value here causes illegal behavior
2396// :104:22: note: when computing vector element at index '1'
2397// :104:22: error: use of undefined value here causes illegal behavior
2398// :104:22: note: when computing vector element at index '1'
2399// :104:22: error: use of undefined value here causes illegal behavior
2400// :104:22: note: when computing vector element at index '1'
2401// :104:22: error: use of undefined value here causes illegal behavior
2402// :104:22: note: when computing vector element at index '1'
2403// :104:22: error: use of undefined value here causes illegal behavior
2404// :104:22: note: when computing vector element at index '0'
2405// :104:22: error: use of undefined value here causes illegal behavior
2406// :104:22: note: when computing vector element at index '0'
2407// :104:22: error: use of undefined value here causes illegal behavior
2408// :104:22: note: when computing vector element at index '0'
2409// :104:22: error: use of undefined value here causes illegal behavior
2410// :104:22: note: when computing vector element at index '0'
2411// :104:22: error: use of undefined value here causes illegal behavior
2412// :104:22: error: use of undefined value here causes illegal behavior
2413// :104:22: error: use of undefined value here causes illegal behavior
2414// :104:22: error: use of undefined value here causes illegal behavior
2415// :104:22: error: use of undefined value here causes illegal behavior
2416// :104:22: error: use of undefined value here causes illegal behavior
2417// :104:22: error: use of undefined value here causes illegal behavior
2418// :104:22: note: when computing vector element at index '1'
2419// :104:22: error: use of undefined value here causes illegal behavior
2420// :104:22: note: when computing vector element at index '1'
2421// :104:22: error: use of undefined value here causes illegal behavior
2422// :104:22: note: when computing vector element at index '1'
2423// :104:22: error: use of undefined value here causes illegal behavior
2424// :104:22: note: when computing vector element at index '1'
2425// :104:22: error: use of undefined value here causes illegal behavior
2426// :104:22: note: when computing vector element at index '0'
2427// :104:22: error: use of undefined value here causes illegal behavior
2428// :104:22: note: when computing vector element at index '0'
2429// :104:22: error: use of undefined value here causes illegal behavior
2430// :104:22: note: when computing vector element at index '0'
2431// :104:22: error: use of undefined value here causes illegal behavior
2432// :104:22: note: when computing vector element at index '0'
2433// :104:22: error: use of undefined value here causes illegal behavior
2434// :104:22: error: use of undefined value here causes illegal behavior
2435// :104:22: error: use of undefined value here causes illegal behavior
2436// :104:22: error: use of undefined value here causes illegal behavior
2437// :104:22: error: use of undefined value here causes illegal behavior
2438// :104:22: error: use of undefined value here causes illegal behavior
2439// :104:22: error: use of undefined value here causes illegal behavior
2440// :104:22: note: when computing vector element at index '1'
2441// :104:22: error: use of undefined value here causes illegal behavior
2442// :104:22: note: when computing vector element at index '1'
2443// :104:22: error: use of undefined value here causes illegal behavior
2444// :104:22: note: when computing vector element at index '1'
2445// :104:22: error: use of undefined value here causes illegal behavior
2446// :104:22: note: when computing vector element at index '1'
2447// :104:22: error: use of undefined value here causes illegal behavior
2448// :104:22: note: when computing vector element at index '0'
2449// :104:22: error: use of undefined value here causes illegal behavior
2450// :104:22: note: when computing vector element at index '0'
2451// :104:22: error: use of undefined value here causes illegal behavior
2452// :104:22: note: when computing vector element at index '0'
2453// :104:22: error: use of undefined value here causes illegal behavior
2454// :104:22: note: when computing vector element at index '0'
2455// :104:22: error: use of undefined value here causes illegal behavior
2456// :104:22: error: use of undefined value here causes illegal behavior
2457// :104:22: error: use of undefined value here causes illegal behavior
2458// :104:22: error: use of undefined value here causes illegal behavior
2459// :104:22: error: use of undefined value here causes illegal behavior
2460// :104:22: error: use of undefined value here causes illegal behavior
2461// :104:22: error: use of undefined value here causes illegal behavior
2462// :104:22: note: when computing vector element at index '1'
2463// :104:22: error: use of undefined value here causes illegal behavior
2464// :104:22: note: when computing vector element at index '1'
2465// :104:22: error: use of undefined value here causes illegal behavior
2466// :104:22: note: when computing vector element at index '1'
2467// :104:22: error: use of undefined value here causes illegal behavior
2468// :104:22: note: when computing vector element at index '1'
2469// :104:22: error: use of undefined value here causes illegal behavior
2470// :104:22: note: when computing vector element at index '0'
2471// :104:22: error: use of undefined value here causes illegal behavior
2472// :104:22: note: when computing vector element at index '0'
2473// :104:22: error: use of undefined value here causes illegal behavior
2474// :104:22: note: when computing vector element at index '0'
2475// :104:22: error: use of undefined value here causes illegal behavior
2476// :104:22: note: when computing vector element at index '0'
2477// :107:30: error: use of undefined value here causes illegal behavior
2478// :107:30: error: use of undefined value here causes illegal behavior
2479// :107:30: error: use of undefined value here causes illegal behavior
2480// :107:30: error: use of undefined value here causes illegal behavior
2481// :107:30: error: use of undefined value here causes illegal behavior
2482// :107:30: error: use of undefined value here causes illegal behavior
2483// :107:30: error: use of undefined value here causes illegal behavior
2484// :107:30: note: when computing vector element at index '1'
2485// :107:30: error: use of undefined value here causes illegal behavior
2486// :107:30: note: when computing vector element at index '1'
2487// :107:30: error: use of undefined value here causes illegal behavior
2488// :107:30: note: when computing vector element at index '1'
2489// :107:30: error: use of undefined value here causes illegal behavior
2490// :107:30: note: when computing vector element at index '1'
2491// :107:30: error: use of undefined value here causes illegal behavior
2492// :107:30: note: when computing vector element at index '0'
2493// :107:30: error: use of undefined value here causes illegal behavior
2494// :107:30: note: when computing vector element at index '0'
2495// :107:30: error: use of undefined value here causes illegal behavior
2496// :107:30: note: when computing vector element at index '0'
2497// :107:30: error: use of undefined value here causes illegal behavior
2498// :107:30: note: when computing vector element at index '0'
2499// :107:30: error: use of undefined value here causes illegal behavior
2500// :107:30: error: use of undefined value here causes illegal behavior
2501// :107:30: error: use of undefined value here causes illegal behavior
2502// :107:30: error: use of undefined value here causes illegal behavior
2503// :107:30: error: use of undefined value here causes illegal behavior
2504// :107:30: error: use of undefined value here causes illegal behavior
2505// :107:30: error: use of undefined value here causes illegal behavior
2506// :107:30: note: when computing vector element at index '1'
2507// :107:30: error: use of undefined value here causes illegal behavior
2508// :107:30: note: when computing vector element at index '1'
2509// :107:30: error: use of undefined value here causes illegal behavior
2510// :107:30: note: when computing vector element at index '1'
2511// :107:30: error: use of undefined value here causes illegal behavior
2512// :107:30: note: when computing vector element at index '1'
2513// :107:30: error: use of undefined value here causes illegal behavior
2514// :107:30: note: when computing vector element at index '0'
2515// :107:30: error: use of undefined value here causes illegal behavior
2516// :107:30: note: when computing vector element at index '0'
2517// :107:30: error: use of undefined value here causes illegal behavior
2518// :107:30: note: when computing vector element at index '0'
2519// :107:30: error: use of undefined value here causes illegal behavior
2520// :107:30: note: when computing vector element at index '0'
2521// :107:30: error: use of undefined value here causes illegal behavior
2522// :107:30: error: use of undefined value here causes illegal behavior
2523// :107:30: error: use of undefined value here causes illegal behavior
2524// :107:30: error: use of undefined value here causes illegal behavior
2525// :107:30: error: use of undefined value here causes illegal behavior
2526// :107:30: error: use of undefined value here causes illegal behavior
2527// :107:30: error: use of undefined value here causes illegal behavior
2528// :107:30: note: when computing vector element at index '1'
2529// :107:30: error: use of undefined value here causes illegal behavior
2530// :107:30: note: when computing vector element at index '1'
2531// :107:30: error: use of undefined value here causes illegal behavior
2532// :107:30: note: when computing vector element at index '1'
2533// :107:30: error: use of undefined value here causes illegal behavior
2534// :107:30: note: when computing vector element at index '1'
2535// :107:30: error: use of undefined value here causes illegal behavior
2536// :107:30: note: when computing vector element at index '0'
2537// :107:30: error: use of undefined value here causes illegal behavior
2538// :107:30: note: when computing vector element at index '0'
2539// :107:30: error: use of undefined value here causes illegal behavior
2540// :107:30: note: when computing vector element at index '0'
2541// :107:30: error: use of undefined value here causes illegal behavior
2542// :107:30: note: when computing vector element at index '0'
2543// :107:30: error: use of undefined value here causes illegal behavior
2544// :107:30: error: use of undefined value here causes illegal behavior
2545// :107:30: error: use of undefined value here causes illegal behavior
2546// :107:30: error: use of undefined value here causes illegal behavior
2547// :107:30: error: use of undefined value here causes illegal behavior
2548// :107:30: error: use of undefined value here causes illegal behavior
2549// :107:30: error: use of undefined value here causes illegal behavior
2550// :107:30: note: when computing vector element at index '1'
2551// :107:30: error: use of undefined value here causes illegal behavior
2552// :107:30: note: when computing vector element at index '1'
2553// :107:30: error: use of undefined value here causes illegal behavior
2554// :107:30: note: when computing vector element at index '1'
2555// :107:30: error: use of undefined value here causes illegal behavior
2556// :107:30: note: when computing vector element at index '1'
2557// :107:30: error: use of undefined value here causes illegal behavior
2558// :107:30: note: when computing vector element at index '0'
2559// :107:30: error: use of undefined value here causes illegal behavior
2560// :107:30: note: when computing vector element at index '0'
2561// :107:30: error: use of undefined value here causes illegal behavior
2562// :107:30: note: when computing vector element at index '0'
2563// :107:30: error: use of undefined value here causes illegal behavior
2564// :107:30: note: when computing vector element at index '0'
2565// :107:30: error: use of undefined value here causes illegal behavior
2566// :107:30: error: use of undefined value here causes illegal behavior
2567// :107:30: error: use of undefined value here causes illegal behavior
2568// :107:30: error: use of undefined value here causes illegal behavior
2569// :107:30: error: use of undefined value here causes illegal behavior
2570// :107:30: error: use of undefined value here causes illegal behavior
2571// :107:30: error: use of undefined value here causes illegal behavior
2572// :107:30: note: when computing vector element at index '1'
2573// :107:30: error: use of undefined value here causes illegal behavior
2574// :107:30: note: when computing vector element at index '1'
2575// :107:30: error: use of undefined value here causes illegal behavior
2576// :107:30: note: when computing vector element at index '1'
2577// :107:30: error: use of undefined value here causes illegal behavior
2578// :107:30: note: when computing vector element at index '1'
2579// :107:30: error: use of undefined value here causes illegal behavior
2580// :107:30: note: when computing vector element at index '0'
2581// :107:30: error: use of undefined value here causes illegal behavior
2582// :107:30: note: when computing vector element at index '0'
2583// :107:30: error: use of undefined value here causes illegal behavior
2584// :107:30: note: when computing vector element at index '0'
2585// :107:30: error: use of undefined value here causes illegal behavior
2586// :107:30: note: when computing vector element at index '0'
2587// :107:30: error: use of undefined value here causes illegal behavior
2588// :107:30: error: use of undefined value here causes illegal behavior
2589// :107:30: error: use of undefined value here causes illegal behavior
2590// :107:30: error: use of undefined value here causes illegal behavior
2591// :107:30: error: use of undefined value here causes illegal behavior
2592// :107:30: error: use of undefined value here causes illegal behavior
2593// :107:30: error: use of undefined value here causes illegal behavior
2594// :107:30: note: when computing vector element at index '1'
2595// :107:30: error: use of undefined value here causes illegal behavior
2596// :107:30: note: when computing vector element at index '1'
2597// :107:30: error: use of undefined value here causes illegal behavior
2598// :107:30: note: when computing vector element at index '1'
2599// :107:30: error: use of undefined value here causes illegal behavior
2600// :107:30: note: when computing vector element at index '1'
2601// :107:30: error: use of undefined value here causes illegal behavior
2602// :107:30: note: when computing vector element at index '0'
2603// :107:30: error: use of undefined value here causes illegal behavior
2604// :107:30: note: when computing vector element at index '0'
2605// :107:30: error: use of undefined value here causes illegal behavior
2606// :107:30: note: when computing vector element at index '0'
2607// :107:30: error: use of undefined value here causes illegal behavior
2608// :107:30: note: when computing vector element at index '0'
2609// :110:37: error: use of undefined value here causes illegal behavior
2610// :110:37: error: use of undefined value here causes illegal behavior
2611// :110:37: error: use of undefined value here causes illegal behavior
2612// :110:37: error: use of undefined value here causes illegal behavior
2613// :110:37: error: use of undefined value here causes illegal behavior
2614// :110:37: error: use of undefined value here causes illegal behavior
2615// :110:37: error: use of undefined value here causes illegal behavior
2616// :110:37: note: when computing vector element at index '1'
2617// :110:37: error: use of undefined value here causes illegal behavior
2618// :110:37: note: when computing vector element at index '1'
2619// :110:37: error: use of undefined value here causes illegal behavior
2620// :110:37: note: when computing vector element at index '1'
2621// :110:37: error: use of undefined value here causes illegal behavior
2622// :110:37: note: when computing vector element at index '1'
2623// :110:37: error: use of undefined value here causes illegal behavior
2624// :110:37: note: when computing vector element at index '0'
2625// :110:37: error: use of undefined value here causes illegal behavior
2626// :110:37: note: when computing vector element at index '0'
2627// :110:37: error: use of undefined value here causes illegal behavior
2628// :110:37: note: when computing vector element at index '0'
2629// :110:37: error: use of undefined value here causes illegal behavior
2630// :110:37: note: when computing vector element at index '0'
2631// :110:37: error: use of undefined value here causes illegal behavior
2632// :110:37: error: use of undefined value here causes illegal behavior
2633// :110:37: error: use of undefined value here causes illegal behavior
2634// :110:37: error: use of undefined value here causes illegal behavior
2635// :110:37: error: use of undefined value here causes illegal behavior
2636// :110:37: error: use of undefined value here causes illegal behavior
2637// :110:37: error: use of undefined value here causes illegal behavior
2638// :110:37: note: when computing vector element at index '1'
2639// :110:37: error: use of undefined value here causes illegal behavior
2640// :110:37: note: when computing vector element at index '1'
2641// :110:37: error: use of undefined value here causes illegal behavior
2642// :110:37: note: when computing vector element at index '1'
2643// :110:37: error: use of undefined value here causes illegal behavior
2644// :110:37: note: when computing vector element at index '1'
2645// :110:37: error: use of undefined value here causes illegal behavior
2646// :110:37: note: when computing vector element at index '0'
2647// :110:37: error: use of undefined value here causes illegal behavior
2648// :110:37: note: when computing vector element at index '0'
2649// :110:37: error: use of undefined value here causes illegal behavior
2650// :110:37: note: when computing vector element at index '0'
2651// :110:37: error: use of undefined value here causes illegal behavior
2652// :110:37: note: when computing vector element at index '0'
2653// :110:37: error: use of undefined value here causes illegal behavior
2654// :110:37: error: use of undefined value here causes illegal behavior
2655// :110:37: error: use of undefined value here causes illegal behavior
2656// :110:37: error: use of undefined value here causes illegal behavior
2657// :110:37: error: use of undefined value here causes illegal behavior
2658// :110:37: error: use of undefined value here causes illegal behavior
2659// :110:37: error: use of undefined value here causes illegal behavior
2660// :110:37: note: when computing vector element at index '1'
2661// :110:37: error: use of undefined value here causes illegal behavior
2662// :110:37: note: when computing vector element at index '1'
2663// :110:37: error: use of undefined value here causes illegal behavior
2664// :110:37: note: when computing vector element at index '1'
2665// :110:37: error: use of undefined value here causes illegal behavior
2666// :110:37: note: when computing vector element at index '1'
2667// :110:37: error: use of undefined value here causes illegal behavior
2668// :110:37: note: when computing vector element at index '0'
2669// :110:37: error: use of undefined value here causes illegal behavior
2670// :110:37: note: when computing vector element at index '0'
2671// :110:37: error: use of undefined value here causes illegal behavior
2672// :110:37: note: when computing vector element at index '0'
2673// :110:37: error: use of undefined value here causes illegal behavior
2674// :110:37: note: when computing vector element at index '0'
2675// :110:37: error: use of undefined value here causes illegal behavior
2676// :110:37: error: use of undefined value here causes illegal behavior
2677// :110:37: error: use of undefined value here causes illegal behavior
2678// :110:37: error: use of undefined value here causes illegal behavior
2679// :110:37: error: use of undefined value here causes illegal behavior
2680// :110:37: error: use of undefined value here causes illegal behavior
2681// :110:37: error: use of undefined value here causes illegal behavior
2682// :110:37: note: when computing vector element at index '1'
2683// :110:37: error: use of undefined value here causes illegal behavior
2684// :110:37: note: when computing vector element at index '1'
2685// :110:37: error: use of undefined value here causes illegal behavior
2686// :110:37: note: when computing vector element at index '1'
2687// :110:37: error: use of undefined value here causes illegal behavior
2688// :110:37: note: when computing vector element at index '1'
2689// :110:37: error: use of undefined value here causes illegal behavior
2690// :110:37: note: when computing vector element at index '0'
2691// :110:37: error: use of undefined value here causes illegal behavior
2692// :110:37: note: when computing vector element at index '0'
2693// :110:37: error: use of undefined value here causes illegal behavior
2694// :110:37: note: when computing vector element at index '0'
2695// :110:37: error: use of undefined value here causes illegal behavior
2696// :110:37: note: when computing vector element at index '0'
2697// :110:37: error: use of undefined value here causes illegal behavior
2698// :110:37: error: use of undefined value here causes illegal behavior
2699// :110:37: error: use of undefined value here causes illegal behavior
2700// :110:37: error: use of undefined value here causes illegal behavior
2701// :110:37: error: use of undefined value here causes illegal behavior
2702// :110:37: error: use of undefined value here causes illegal behavior
2703// :110:37: error: use of undefined value here causes illegal behavior
2704// :110:37: note: when computing vector element at index '1'
2705// :110:37: error: use of undefined value here causes illegal behavior
2706// :110:37: note: when computing vector element at index '1'
2707// :110:37: error: use of undefined value here causes illegal behavior
2708// :110:37: note: when computing vector element at index '1'
2709// :110:37: error: use of undefined value here causes illegal behavior
2710// :110:37: note: when computing vector element at index '1'
2711// :110:37: error: use of undefined value here causes illegal behavior
2712// :110:37: note: when computing vector element at index '0'
2713// :110:37: error: use of undefined value here causes illegal behavior
2714// :110:37: note: when computing vector element at index '0'
2715// :110:37: error: use of undefined value here causes illegal behavior
2716// :110:37: note: when computing vector element at index '0'
2717// :110:37: error: use of undefined value here causes illegal behavior
2718// :110:37: note: when computing vector element at index '0'
2719// :110:37: error: use of undefined value here causes illegal behavior
2720// :110:37: error: use of undefined value here causes illegal behavior
2721// :110:37: error: use of undefined value here causes illegal behavior
2722// :110:37: error: use of undefined value here causes illegal behavior
2723// :110:37: error: use of undefined value here causes illegal behavior
2724// :110:37: error: use of undefined value here causes illegal behavior
2725// :110:37: error: use of undefined value here causes illegal behavior
2726// :110:37: note: when computing vector element at index '1'
2727// :110:37: error: use of undefined value here causes illegal behavior
2728// :110:37: note: when computing vector element at index '1'
2729// :110:37: error: use of undefined value here causes illegal behavior
2730// :110:37: note: when computing vector element at index '1'
2731// :110:37: error: use of undefined value here causes illegal behavior
2732// :110:37: note: when computing vector element at index '1'
2733// :110:37: error: use of undefined value here causes illegal behavior
2734// :110:37: note: when computing vector element at index '0'
2735// :110:37: error: use of undefined value here causes illegal behavior
2736// :110:37: note: when computing vector element at index '0'
2737// :110:37: error: use of undefined value here causes illegal behavior
2738// :110:37: note: when computing vector element at index '0'
2739// :110:37: error: use of undefined value here causes illegal behavior
2740// :110:37: note: when computing vector element at index '0'
2741// :113:22: error: use of undefined value here causes illegal behavior
2742// :113:22: error: use of undefined value here causes illegal behavior
2743// :113:22: error: use of undefined value here causes illegal behavior
2744// :113:22: error: use of undefined value here causes illegal behavior
2745// :113:22: error: use of undefined value here causes illegal behavior
2746// :113:22: error: use of undefined value here causes illegal behavior
2747// :113:22: error: use of undefined value here causes illegal behavior
2748// :113:22: note: when computing vector element at index '1'
2749// :113:22: error: use of undefined value here causes illegal behavior
2750// :113:22: note: when computing vector element at index '1'
2751// :113:22: error: use of undefined value here causes illegal behavior
2752// :113:22: note: when computing vector element at index '1'
2753// :113:22: error: use of undefined value here causes illegal behavior
2754// :113:22: note: when computing vector element at index '1'
2755// :113:22: error: use of undefined value here causes illegal behavior
2756// :113:22: note: when computing vector element at index '0'
2757// :113:22: error: use of undefined value here causes illegal behavior
2758// :113:22: note: when computing vector element at index '0'
2759// :113:22: error: use of undefined value here causes illegal behavior
2760// :113:22: note: when computing vector element at index '0'
2761// :113:22: error: use of undefined value here causes illegal behavior
2762// :113:22: note: when computing vector element at index '0'
2763// :113:22: error: use of undefined value here causes illegal behavior
2764// :113:22: error: use of undefined value here causes illegal behavior
2765// :113:22: error: use of undefined value here causes illegal behavior
2766// :113:22: error: use of undefined value here causes illegal behavior
2767// :113:22: error: use of undefined value here causes illegal behavior
2768// :113:22: error: use of undefined value here causes illegal behavior
2769// :113:22: error: use of undefined value here causes illegal behavior
2770// :113:22: note: when computing vector element at index '1'
2771// :113:22: error: use of undefined value here causes illegal behavior
2772// :113:22: note: when computing vector element at index '1'
2773// :113:22: error: use of undefined value here causes illegal behavior
2774// :113:22: note: when computing vector element at index '1'
2775// :113:22: error: use of undefined value here causes illegal behavior
2776// :113:22: note: when computing vector element at index '1'
2777// :113:22: error: use of undefined value here causes illegal behavior
2778// :113:22: note: when computing vector element at index '0'
2779// :113:22: error: use of undefined value here causes illegal behavior
2780// :113:22: note: when computing vector element at index '0'
2781// :113:22: error: use of undefined value here causes illegal behavior
2782// :113:22: note: when computing vector element at index '0'
2783// :113:22: error: use of undefined value here causes illegal behavior
2784// :113:22: note: when computing vector element at index '0'
2785// :113:22: error: use of undefined value here causes illegal behavior
2786// :113:22: error: use of undefined value here causes illegal behavior
2787// :113:22: error: use of undefined value here causes illegal behavior
2788// :113:22: error: use of undefined value here causes illegal behavior
2789// :113:22: error: use of undefined value here causes illegal behavior
2790// :113:22: error: use of undefined value here causes illegal behavior
2791// :113:22: error: use of undefined value here causes illegal behavior
2792// :113:22: note: when computing vector element at index '1'
2793// :113:22: error: use of undefined value here causes illegal behavior
2794// :113:22: note: when computing vector element at index '1'
2795// :113:22: error: use of undefined value here causes illegal behavior
2796// :113:22: note: when computing vector element at index '1'
2797// :113:22: error: use of undefined value here causes illegal behavior
2798// :113:22: note: when computing vector element at index '1'
2799// :113:22: error: use of undefined value here causes illegal behavior
2800// :113:22: note: when computing vector element at index '0'
2801// :113:22: error: use of undefined value here causes illegal behavior
2802// :113:22: note: when computing vector element at index '0'
2803// :113:22: error: use of undefined value here causes illegal behavior
2804// :113:22: note: when computing vector element at index '0'
2805// :113:22: error: use of undefined value here causes illegal behavior
2806// :113:22: note: when computing vector element at index '0'
2807// :113:22: error: use of undefined value here causes illegal behavior
2808// :113:22: error: use of undefined value here causes illegal behavior
2809// :113:22: error: use of undefined value here causes illegal behavior
2810// :113:22: error: use of undefined value here causes illegal behavior
2811// :113:22: error: use of undefined value here causes illegal behavior
2812// :113:22: error: use of undefined value here causes illegal behavior
2813// :113:22: error: use of undefined value here causes illegal behavior
2814// :113:22: note: when computing vector element at index '1'
2815// :113:22: error: use of undefined value here causes illegal behavior
2816// :113:22: note: when computing vector element at index '1'
2817// :113:22: error: use of undefined value here causes illegal behavior
2818// :113:22: note: when computing vector element at index '1'
2819// :113:22: error: use of undefined value here causes illegal behavior
2820// :113:22: note: when computing vector element at index '1'
2821// :113:22: error: use of undefined value here causes illegal behavior
2822// :113:22: note: when computing vector element at index '0'
2823// :113:22: error: use of undefined value here causes illegal behavior
2824// :113:22: note: when computing vector element at index '0'
2825// :113:22: error: use of undefined value here causes illegal behavior
2826// :113:22: note: when computing vector element at index '0'
2827// :113:22: error: use of undefined value here causes illegal behavior
2828// :113:22: note: when computing vector element at index '0'
2829// :113:22: error: use of undefined value here causes illegal behavior
2830// :113:22: error: use of undefined value here causes illegal behavior
2831// :113:22: error: use of undefined value here causes illegal behavior
2832// :113:22: error: use of undefined value here causes illegal behavior
2833// :113:22: error: use of undefined value here causes illegal behavior
2834// :113:22: error: use of undefined value here causes illegal behavior
2835// :113:22: error: use of undefined value here causes illegal behavior
2836// :113:22: note: when computing vector element at index '1'
2837// :113:22: error: use of undefined value here causes illegal behavior
2838// :113:22: note: when computing vector element at index '1'
2839// :113:22: error: use of undefined value here causes illegal behavior
2840// :113:22: note: when computing vector element at index '1'
2841// :113:22: error: use of undefined value here causes illegal behavior
2842// :113:22: note: when computing vector element at index '1'
2843// :113:22: error: use of undefined value here causes illegal behavior
2844// :113:22: note: when computing vector element at index '0'
2845// :113:22: error: use of undefined value here causes illegal behavior
2846// :113:22: note: when computing vector element at index '0'
2847// :113:22: error: use of undefined value here causes illegal behavior
2848// :113:22: note: when computing vector element at index '0'
2849// :113:22: error: use of undefined value here causes illegal behavior
2850// :113:22: note: when computing vector element at index '0'
2851// :113:22: error: use of undefined value here causes illegal behavior
2852// :113:22: error: use of undefined value here causes illegal behavior
2853// :113:22: error: use of undefined value here causes illegal behavior
2854// :113:22: error: use of undefined value here causes illegal behavior
2855// :113:22: error: use of undefined value here causes illegal behavior
2856// :113:22: error: use of undefined value here causes illegal behavior
2857// :113:22: error: use of undefined value here causes illegal behavior
2858// :113:22: note: when computing vector element at index '1'
2859// :113:22: error: use of undefined value here causes illegal behavior
2860// :113:22: note: when computing vector element at index '1'
2861// :113:22: error: use of undefined value here causes illegal behavior
2862// :113:22: note: when computing vector element at index '1'
2863// :113:22: error: use of undefined value here causes illegal behavior
2864// :113:22: note: when computing vector element at index '1'
2865// :113:22: error: use of undefined value here causes illegal behavior
2866// :113:22: note: when computing vector element at index '0'
2867// :113:22: error: use of undefined value here causes illegal behavior
2868// :113:22: note: when computing vector element at index '0'
2869// :113:22: error: use of undefined value here causes illegal behavior
2870// :113:22: note: when computing vector element at index '0'
2871// :113:22: error: use of undefined value here causes illegal behavior
2872// :113:22: note: when computing vector element at index '0'
2873// :116:30: error: use of undefined value here causes illegal behavior
2874// :116:30: error: use of undefined value here causes illegal behavior
2875// :116:30: error: use of undefined value here causes illegal behavior
2876// :116:30: error: use of undefined value here causes illegal behavior
2877// :116:30: error: use of undefined value here causes illegal behavior
2878// :116:30: error: use of undefined value here causes illegal behavior
2879// :116:30: error: use of undefined value here causes illegal behavior
2880// :116:30: note: when computing vector element at index '1'
2881// :116:30: error: use of undefined value here causes illegal behavior
2882// :116:30: note: when computing vector element at index '1'
2883// :116:30: error: use of undefined value here causes illegal behavior
2884// :116:30: note: when computing vector element at index '1'
2885// :116:30: error: use of undefined value here causes illegal behavior
2886// :116:30: note: when computing vector element at index '1'
2887// :116:30: error: use of undefined value here causes illegal behavior
2888// :116:30: note: when computing vector element at index '0'
2889// :116:30: error: use of undefined value here causes illegal behavior
2890// :116:30: note: when computing vector element at index '0'
2891// :116:30: error: use of undefined value here causes illegal behavior
2892// :116:30: note: when computing vector element at index '0'
2893// :116:30: error: use of undefined value here causes illegal behavior
2894// :116:30: note: when computing vector element at index '0'
2895// :116:30: error: use of undefined value here causes illegal behavior
2896// :116:30: error: use of undefined value here causes illegal behavior
2897// :116:30: error: use of undefined value here causes illegal behavior
2898// :116:30: error: use of undefined value here causes illegal behavior
2899// :116:30: error: use of undefined value here causes illegal behavior
2900// :116:30: error: use of undefined value here causes illegal behavior
2901// :116:30: error: use of undefined value here causes illegal behavior
2902// :116:30: note: when computing vector element at index '1'
2903// :116:30: error: use of undefined value here causes illegal behavior
2904// :116:30: note: when computing vector element at index '1'
2905// :116:30: error: use of undefined value here causes illegal behavior
2906// :116:30: note: when computing vector element at index '1'
2907// :116:30: error: use of undefined value here causes illegal behavior
2908// :116:30: note: when computing vector element at index '1'
2909// :116:30: error: use of undefined value here causes illegal behavior
2910// :116:30: note: when computing vector element at index '0'
2911// :116:30: error: use of undefined value here causes illegal behavior
2912// :116:30: note: when computing vector element at index '0'
2913// :116:30: error: use of undefined value here causes illegal behavior
2914// :116:30: note: when computing vector element at index '0'
2915// :116:30: error: use of undefined value here causes illegal behavior
2916// :116:30: note: when computing vector element at index '0'
2917// :116:30: error: use of undefined value here causes illegal behavior
2918// :116:30: error: use of undefined value here causes illegal behavior
2919// :116:30: error: use of undefined value here causes illegal behavior
2920// :116:30: error: use of undefined value here causes illegal behavior
2921// :116:30: error: use of undefined value here causes illegal behavior
2922// :116:30: error: use of undefined value here causes illegal behavior
2923// :116:30: error: use of undefined value here causes illegal behavior
2924// :116:30: note: when computing vector element at index '1'
2925// :116:30: error: use of undefined value here causes illegal behavior
2926// :116:30: note: when computing vector element at index '1'
2927// :116:30: error: use of undefined value here causes illegal behavior
2928// :116:30: note: when computing vector element at index '1'
2929// :116:30: error: use of undefined value here causes illegal behavior
2930// :116:30: note: when computing vector element at index '1'
2931// :116:30: error: use of undefined value here causes illegal behavior
2932// :116:30: note: when computing vector element at index '0'
2933// :116:30: error: use of undefined value here causes illegal behavior
2934// :116:30: note: when computing vector element at index '0'
2935// :116:30: error: use of undefined value here causes illegal behavior
2936// :116:30: note: when computing vector element at index '0'
2937// :116:30: error: use of undefined value here causes illegal behavior
2938// :116:30: note: when computing vector element at index '0'
2939// :116:30: error: use of undefined value here causes illegal behavior
2940// :116:30: error: use of undefined value here causes illegal behavior
2941// :116:30: error: use of undefined value here causes illegal behavior
2942// :116:30: error: use of undefined value here causes illegal behavior
2943// :116:30: error: use of undefined value here causes illegal behavior
2944// :116:30: error: use of undefined value here causes illegal behavior
2945// :116:30: error: use of undefined value here causes illegal behavior
2946// :116:30: note: when computing vector element at index '1'
2947// :116:30: error: use of undefined value here causes illegal behavior
2948// :116:30: note: when computing vector element at index '1'
2949// :116:30: error: use of undefined value here causes illegal behavior
2950// :116:30: note: when computing vector element at index '1'
2951// :116:30: error: use of undefined value here causes illegal behavior
2952// :116:30: note: when computing vector element at index '1'
2953// :116:30: error: use of undefined value here causes illegal behavior
2954// :116:30: note: when computing vector element at index '0'
2955// :116:30: error: use of undefined value here causes illegal behavior
2956// :116:30: note: when computing vector element at index '0'
2957// :116:30: error: use of undefined value here causes illegal behavior
2958// :116:30: note: when computing vector element at index '0'
2959// :116:30: error: use of undefined value here causes illegal behavior
2960// :116:30: note: when computing vector element at index '0'
2961// :116:30: error: use of undefined value here causes illegal behavior
2962// :116:30: error: use of undefined value here causes illegal behavior
2963// :116:30: error: use of undefined value here causes illegal behavior
2964// :116:30: error: use of undefined value here causes illegal behavior
2965// :116:30: error: use of undefined value here causes illegal behavior
2966// :116:30: error: use of undefined value here causes illegal behavior
2967// :116:30: error: use of undefined value here causes illegal behavior
2968// :116:30: note: when computing vector element at index '1'
2969// :116:30: error: use of undefined value here causes illegal behavior
2970// :116:30: note: when computing vector element at index '1'
2971// :116:30: error: use of undefined value here causes illegal behavior
2972// :116:30: note: when computing vector element at index '1'
2973// :116:30: error: use of undefined value here causes illegal behavior
2974// :116:30: note: when computing vector element at index '1'
2975// :116:30: error: use of undefined value here causes illegal behavior
2976// :116:30: note: when computing vector element at index '0'
2977// :116:30: error: use of undefined value here causes illegal behavior
2978// :116:30: note: when computing vector element at index '0'
2979// :116:30: error: use of undefined value here causes illegal behavior
2980// :116:30: note: when computing vector element at index '0'
2981// :116:30: error: use of undefined value here causes illegal behavior
2982// :116:30: note: when computing vector element at index '0'
2983// :116:30: error: use of undefined value here causes illegal behavior
2984// :116:30: error: use of undefined value here causes illegal behavior
2985// :116:30: error: use of undefined value here causes illegal behavior
2986// :116:30: error: use of undefined value here causes illegal behavior
2987// :116:30: error: use of undefined value here causes illegal behavior
2988// :116:30: error: use of undefined value here causes illegal behavior
2989// :116:30: error: use of undefined value here causes illegal behavior
2990// :116:30: note: when computing vector element at index '1'
2991// :116:30: error: use of undefined value here causes illegal behavior
2992// :116:30: note: when computing vector element at index '1'
2993// :116:30: error: use of undefined value here causes illegal behavior
2994// :116:30: note: when computing vector element at index '1'
2995// :116:30: error: use of undefined value here causes illegal behavior
2996// :116:30: note: when computing vector element at index '1'
2997// :116:30: error: use of undefined value here causes illegal behavior
2998// :116:30: note: when computing vector element at index '0'
2999// :116:30: error: use of undefined value here causes illegal behavior
3000// :116:30: note: when computing vector element at index '0'
3001// :116:30: error: use of undefined value here causes illegal behavior
3002// :116:30: note: when computing vector element at index '0'
3003// :116:30: error: use of undefined value here causes illegal behavior
3004// :116:30: note: when computing vector element at index '0'