()
| 524 | i += 1 |
| 525 | } |
| 526 | if v.len != 100 { return 3 } |
| 527 | if v.capacity < 100 { return 4 } |
| 528 | |
| 529 | i = 0 |
| 530 | while i < 100 { |
| 531 | slot: i64* = Vec_get<i64>(&v, i as u64) |
| 532 | if slot == null { return 5 } |
| 533 | if @slot != i * 3 { return 6 } |
| 534 | i += 1 |
| 535 | } |
| 536 | if Vec_get<i64>(&v, 100) != null { return 7 } |
| 537 | |
| 538 | out: i64 = 0 |
| 539 | if Vec_pop<i64>(&v, &out) == false { return 8 } |
| 540 | if out != 99 * 3 { return 9 } |
| 541 | if v.len != 99 { return 10 } |
nothing calls this directly
no test coverage detected