[INFO] updating cached repository https://github.com/ivansandrk/AdventOfCode2019
[INFO] running `"git" "-c" "credential.helper=" "-c" "credential.helper=/workspace/cargo-home/bin/git-credential-null" "-c" "remote.origin.fetch=refs/heads/*:refs/heads/*" "fetch" "origin" "--force" "--prune"`
[INFO] running `"git" "rev-parse" "HEAD"`
[INFO] [stdout] 73f80d2d16582a71ad34674342f525902b4bd051
[INFO] checking ivansandrk/AdventOfCode2019 against master#209b2be09fcaff937480d1fbbe8b31646e361c7a for pr-70917
[INFO] running `"git" "clone" "/workspace/cache/git-repos/https%3A%2F%2Fgithub.com%2Fivansandrk%2FAdventOfCode2019" "/workspace/builds/worker-5/source"`
[INFO] [stderr] Cloning into '/workspace/builds/worker-5/source'...
[INFO] [stderr] done.
[INFO] validating manifest of git repo https://github.com/ivansandrk/AdventOfCode2019 on toolchain 209b2be09fcaff937480d1fbbe8b31646e361c7a
[INFO] running `"/workspace/cargo-home/bin/cargo" "+209b2be09fcaff937480d1fbbe8b31646e361c7a" "read-manifest" "--manifest-path" "Cargo.toml"`
[INFO] started tweaking git repo https://github.com/ivansandrk/AdventOfCode2019
[INFO] finished tweaking git repo https://github.com/ivansandrk/AdventOfCode2019
[INFO] tweaked toml for git repo https://github.com/ivansandrk/AdventOfCode2019 written to /workspace/builds/worker-5/source/Cargo.toml
[INFO] crate git repo https://github.com/ivansandrk/AdventOfCode2019 already has a lockfile, it will not be regenerated
[INFO] running `"/workspace/cargo-home/bin/cargo" "+209b2be09fcaff937480d1fbbe8b31646e361c7a" "fetch" "--locked" "--manifest-path" "Cargo.toml"`
[INFO] running `"docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-5/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-5/source:/opt/rustwide/workdir:ro,Z" "-v" "/var/lib/crater-agent-workspace/cargo-home:/opt/rustwide/cargo-home:ro,Z" "-v" "/var/lib/crater-agent-workspace/rustup-home:/opt/rustwide/rustup-home:ro,Z" "-e" "SOURCE_DIR=/opt/rustwide/workdir" "-e" "MAP_USER_ID=0" "-e" "CARGO_TARGET_DIR=/opt/rustwide/target" "-e" "CARGO_INCREMENTAL=0" "-e" "RUST_BACKTRACE=full" "-e" "RUSTFLAGS=--cap-lints=forbid" "-e" "CARGO_HOME=/opt/rustwide/cargo-home" "-e" "RUSTUP_HOME=/opt/rustwide/rustup-home" "-w" "/opt/rustwide/workdir" "-m" "1610612736" "--network" "none" "rustops/crates-build-env" "/opt/rustwide/cargo-home/bin/cargo" "+209b2be09fcaff937480d1fbbe8b31646e361c7a" "check" "--frozen" "--all" "--all-targets"`
[INFO] [stderr] WARNING: Your kernel does not support swap limit capabilities or the cgroup is not mounted. Memory limited without swap.
[INFO] [stdout] 5cc2adede1415472e1d0b322e422605726fed4afe7901afd3bf476018fcb336a
[INFO] running `"docker" "start" "-a" "5cc2adede1415472e1d0b322e422605726fed4afe7901afd3bf476018fcb336a"`
[INFO] [stderr]     Checking aoc v0.1.0 (/opt/rustwide/workdir)
[INFO] [stderr] warning: unused variable: `v`
[INFO] [stderr]  --> src/bin/main.rs:1:8
[INFO] [stderr]   |
[INFO] [stderr] 1 | fn foo(v: &mut Vec<i32>) {
[INFO] [stderr]   |        ^ help: if this is intentional, prefix it with an underscore: `_v`
[INFO] [stderr]   |
[INFO] [stderr]   = note: `#[warn(unused_variables)]` on by default
[INFO] [stderr] 
[INFO] [stderr] error[E0061]: this function takes 1 argument but 2 arguments were supplied
[INFO] [stderr]   --> src/bin/day5.rs:14:24
[INFO] [stderr]    |
[INFO] [stderr] 14 |     let mut computer = cpu::Computer::new(mem.clone(), vec![1]);
[INFO] [stderr]    |                        ^^^^^^^^^^^^^^^^^^ -----------  ------- supplied 2 arguments
[INFO] [stderr]    |                        |
[INFO] [stderr]    |                        expected 1 argument
[INFO] [stderr]    | 
[INFO] [stderr]   ::: src/bin/cpu.rs:45:3
[INFO] [stderr]    |
[INFO] [stderr] 45 |   pub fn new(memory: Vec<MemType>) -> Computer {
[INFO] [stderr]    |   -------------------------------------------- defined here
[INFO] [stderr] 
[INFO] [stderr] warning: unused label
[INFO] [stderr]   --> src/bin/day15.rs:92:3
[INFO] [stderr]    |
[INFO] [stderr] 92 |   'outer: while let Some(((row, col), distance)) = open.pop_front() {
[INFO] [stderr]    |   ^^^^^^
[INFO] [stderr]    |
[INFO] [stderr]    = note: `#[warn(unused_labels)]` on by default
[INFO] [stderr] 
[INFO] [stderr] error[E0061]: this function takes 1 argument but 0 arguments were supplied
[INFO] [stderr]    --> src/bin/day5.rs:15:31
[INFO] [stderr]     |
[INFO] [stderr] 15  |     println!("{:?}", computer.run());
[INFO] [stderr]     |                               ^^^- supplied 0 arguments
[INFO] [stderr]     |                               |
[INFO] [stderr]     |                               expected 1 argument
[INFO] [stderr]     | 
[INFO] [stderr]    ::: src/bin/cpu.rs:171:3
[INFO] [stderr]     |
[INFO] [stderr] 171 |   pub fn run(&mut self, input: Vec<MemType>) -> Vec<MemType> {
[INFO] [stderr]     |   ---------------------------------------------------------- defined here
[INFO] [stderr] 
[INFO] [stderr] error[E0061]: this function takes 1 argument but 2 arguments were supplied
[INFO] [stderr]   --> src/bin/day5.rs:17:24
[INFO] [stderr]    |
[INFO] [stderr] 17 |     let mut computer = cpu::Computer::new(mem.clone(), vec![5]);
[INFO] [stderr]    |                        ^^^^^^^^^^^^^^^^^^ -----------  ------- supplied 2 arguments
[INFO] [stderr]    |                        |
[INFO] [stderr]    |                        expected 1 argument
[INFO] [stderr]    | 
[INFO] [stderr]   ::: src/bin/cpu.rs:45:3
[INFO] [stderr]    |
[INFO] [stderr] 45 |   pub fn new(memory: Vec<MemType>) -> Computer {
[INFO] [stderr]    |   -------------------------------------------- defined here
[INFO] [stderr] 
[INFO] [stderr] error[E0061]: this function takes 1 argument but 0 arguments were supplied
[INFO] [stderr]    --> src/bin/day5.rs:18:31
[INFO] [stderr]     |
[INFO] [stderr] 18  |     println!("{:?}", computer.run());
[INFO] [stderr]     |                               ^^^- supplied 0 arguments
[INFO] [stderr]     |                               |
[INFO] [stderr]     |                               expected 1 argument
[INFO] [stderr]     | 
[INFO] [stderr]    ::: src/bin/cpu.rs:171:3
[INFO] [stderr]     |
[INFO] [stderr] 171 |   pub fn run(&mut self, input: Vec<MemType>) -> Vec<MemType> {
[INFO] [stderr]     |   ---------------------------------------------------------- defined here
[INFO] [stderr] 
[INFO] [stderr] error[E0061]: this function takes 1 argument but 2 arguments were supplied
[INFO] [stderr]   --> src/bin/day7.rs:16:22
[INFO] [stderr]    |
[INFO] [stderr] 16 |       computers.push(cpu::Computer::new(mem.clone(), vec![phase_setting[i]]));
[INFO] [stderr]    |                      ^^^^^^^^^^^^^^^^^^ -----------  ---------------------- supplied 2 arguments
[INFO] [stderr]    |                      |
[INFO] [stderr]    |                      expected 1 argument
[INFO] [stderr]    | 
[INFO] [stderr]   ::: src/bin/cpu.rs:45:3
[INFO] [stderr]    |
[INFO] [stderr] 45 |   pub fn new(memory: Vec<MemType>) -> Computer {
[INFO] [stderr]    |   -------------------------------------------- defined here
[INFO] [stderr] 
[INFO] [stderr] warning: unreachable statement
[INFO] [stderr]   --> src/bin/day15.rs:24:3
[INFO] [stderr]    |
[INFO] [stderr] 22 |     return;
[INFO] [stderr]    |     ------ any code following this expression is unreachable
[INFO] [stderr] 23 |     // println!("{}", "\n".repeat(10));
[INFO] [stderr] 24 | /   for row in -21..=19 {
[INFO] [stderr] 25 | |     for col in -21..=19 {
[INFO] [stderr] 26 | |       let t = if row == cur_row && col == cur_col {
[INFO] [stderr] 27 | |         &Tile::Current
[INFO] [stderr] ...  |
[INFO] [stderr] 41 | |     println!("");
[INFO] [stderr] 42 | |   }
[INFO] [stderr]    | |___^ unreachable statement
[INFO] [stderr]    |
[INFO] [stderr]    = note: `#[warn(unreachable_code)]` on by default
[INFO] [stderr] 
[INFO] [stderr] error: aborting due to 4 previous errors
[INFO] [stderr] 
[INFO] [stderr] For more information about this error, try `rustc --explain E0061`.
[INFO] [stderr] error: could not compile `aoc`.
[INFO] [stderr] 
[INFO] [stderr] To learn more, run the command again with --verbose.
[INFO] [stderr] warning: build failed, waiting for other jobs to finish...
[INFO] [stderr] warning: unused variable: `P2`
[INFO] [stderr]   --> src/bin/day12.rs:85:7
[INFO] [stderr]    |
[INFO] [stderr] 85 |   let P2 = [
[INFO] [stderr]    |       ^^ help: if this is intentional, prefix it with an underscore: `_P2`
[INFO] [stderr]    |
[INFO] [stderr]    = note: `#[warn(unused_variables)]` on by default
[INFO] [stderr] 
[INFO] [stderr] warning: unused variable: `P1`
[INFO] [stderr]   --> src/bin/day12.rs:91:7
[INFO] [stderr]    |
[INFO] [stderr] 91 |   let P1 = [
[INFO] [stderr]    |       ^^ help: if this is intentional, prefix it with an underscore: `_P1`
[INFO] [stderr] 
[INFO] [stderr] error[E0599]: no method named `extend_input` found for mutable reference `&mut cpu::Computer` in the current scope
[INFO] [stderr]   --> src/bin/day7.rs:20:11
[INFO] [stderr]    |
[INFO] [stderr] 20 |         c.extend_input(vec![signal]);
[INFO] [stderr]    |           ^^^^^^^^^^^^ method not found in `&mut cpu::Computer`
[INFO] [stderr] 
[INFO] [stderr] error[E0061]: this function takes 1 argument but 0 arguments were supplied
[INFO] [stderr]    --> src/bin/day7.rs:21:20
[INFO] [stderr]     |
[INFO] [stderr] 21  |         signal = c.run()[0];
[INFO] [stderr]     |                    ^^^- supplied 0 arguments
[INFO] [stderr]     |                    |
[INFO] [stderr]     |                    expected 1 argument
[INFO] [stderr]     | 
[INFO] [stderr]    ::: src/bin/cpu.rs:171:3
[INFO] [stderr]     |
[INFO] [stderr] 171 |   pub fn run(&mut self, input: Vec<MemType>) -> Vec<MemType> {
[INFO] [stderr]     |   ---------------------------------------------------------- defined here
[INFO] [stderr] 
[INFO] [stderr] error[E0599]: no method named `halted` found for struct `cpu::Computer` in the current scope
[INFO] [stderr]   --> src/bin/day7.rs:23:23
[INFO] [stderr]    |
[INFO] [stderr] 23 |       if computers[0].halted() {
[INFO] [stderr]    |                       ^^^^^^ private field, not a method
[INFO] [stderr]    | 
[INFO] [stderr]   ::: src/bin/cpu.rs:34:1
[INFO] [stderr]    |
[INFO] [stderr] 34 | pub struct Computer {
[INFO] [stderr]    | ------------------- method `halted` not found for this
[INFO] [stderr] 
[INFO] [stderr] error[E0599]: no method named `halted` found for struct `cpu::Computer` in the current scope
[INFO] [stderr]   --> src/bin/day7.rs:25:32
[INFO] [stderr]    |
[INFO] [stderr] 25 |           assert!(computers[i].halted());
[INFO] [stderr]    |                                ^^^^^^ private field, not a method
[INFO] [stderr]    | 
[INFO] [stderr]   ::: src/bin/cpu.rs:34:1
[INFO] [stderr]    |
[INFO] [stderr] 34 | pub struct Computer {
[INFO] [stderr]    | ------------------- method `halted` not found for this
[INFO] [stderr] 
[INFO] [stderr] error[E0308]: mismatched types
[INFO] [stderr]   --> src/bin/day7.rs:38:3
[INFO] [stderr]    |
[INFO] [stderr] 9  | fn highest_thrusters_signal(mem: &Vec<i32>, phase_setting: &mut [i32]) -> i32 {
[INFO] [stderr]    |                                                                           --- expected `i32` because of return type
[INFO] [stderr] ...
[INFO] [stderr] 38 |   max_output
[INFO] [stderr]    |   ^^^^^^^^^^ expected `i32`, found `i64`
[INFO] [stderr]    |
[INFO] [stderr] help: you can convert an `i64` to `i32` and panic if the converted value wouldn't fit
[INFO] [stderr]    |
[INFO] [stderr] 38 |   max_output.try_into().unwrap()
[INFO] [stderr]    |
[INFO] [stderr] 
[INFO] [stderr] warning: function is never used: `dump`
[INFO] [stderr]   --> src/bin/day12.rs:62:4
[INFO] [stderr]    |
[INFO] [stderr] 62 | fn dump(P: &[Vector; 4], V: &[Vector; 4]) {
[INFO] [stderr]    |    ^^^^
[INFO] [stderr]    |
[INFO] [stderr]    = note: `#[warn(dead_code)]` on by default
[INFO] [stderr] 
[INFO] [stderr] warning: unused variable: `map`
[INFO] [stderr]   --> src/bin/day15.rs:21:13
[INFO] [stderr]    |
[INFO] [stderr] 21 | fn draw_map(map: &HashMap<(i32,i32),Tile>, cur_row: i32, cur_col: i32) {
[INFO] [stderr]    |             ^^^ help: if this is intentional, prefix it with an underscore: `_map`
[INFO] [stderr]    |
[INFO] [stderr]    = note: `#[warn(unused_variables)]` on by default
[INFO] [stderr] 
[INFO] [stderr] warning: unused variable: `cur_row`
[INFO] [stderr]   --> src/bin/day15.rs:21:44
[INFO] [stderr]    |
[INFO] [stderr] 21 | fn draw_map(map: &HashMap<(i32,i32),Tile>, cur_row: i32, cur_col: i32) {
[INFO] [stderr]    |                                            ^^^^^^^ help: if this is intentional, prefix it with an underscore: `_cur_row`
[INFO] [stderr] 
[INFO] [stderr] warning: unused variable: `cur_col`
[INFO] [stderr]   --> src/bin/day15.rs:21:58
[INFO] [stderr]    |
[INFO] [stderr] 21 | fn draw_map(map: &HashMap<(i32,i32),Tile>, cur_row: i32, cur_col: i32) {
[INFO] [stderr]    |                                                          ^^^^^^^ help: if this is intentional, prefix it with an underscore: `_cur_col`
[INFO] [stderr] 
[INFO] [stderr] error[E0308]: mismatched types
[INFO] [stderr]   --> src/bin/day7.rs:48:47
[INFO] [stderr]    |
[INFO] [stderr] 48 |     println!("{:?}", highest_thrusters_signal(&mem, &mut [0, 1, 2, 3, 4]));
[INFO] [stderr]    |                                               ^^^^ expected `i32`, found `i64`
[INFO] [stderr]    |
[INFO] [stderr]    = note: expected reference `&std::vec::Vec<i32>`
[INFO] [stderr]               found reference `&std::vec::Vec<i64>`
[INFO] [stderr] 
[INFO] [stderr] error[E0308]: mismatched types
[INFO] [stderr]   --> src/bin/day2.rs:54:34
[INFO] [stderr]    |
[INFO] [stderr] 54 |     println!("{:?}", run_program(mem.clone(), 12, 2));
[INFO] [stderr]    |                                  ^^^^^^^^^^^ expected `i32`, found `i64`
[INFO] [stderr]    |
[INFO] [stderr]    = note: expected struct `std::vec::Vec<i32>`
[INFO] [stderr]               found struct `std::vec::Vec<i64>`
[INFO] [stderr] 
[INFO] [stderr] error[E0308]: mismatched types
[INFO] [stderr]   --> src/bin/day2.rs:60:28
[INFO] [stderr]    |
[INFO] [stderr] 60 |             if run_program(mem.clone(), noun, verb) == TARGET_OUTPUT {
[INFO] [stderr]    |                            ^^^^^^^^^^^ expected `i32`, found `i64`
[INFO] [stderr]    |
[INFO] [stderr]    = note: expected struct `std::vec::Vec<i32>`
[INFO] [stderr]               found struct `std::vec::Vec<i64>`
[INFO] [stderr] 
[INFO] [stderr] error[E0308]: mismatched types
[INFO] [stderr]   --> src/bin/day7.rs:49:47
[INFO] [stderr]    |
[INFO] [stderr] 49 |     println!("{:?}", highest_thrusters_signal(&mem, &mut [5, 6, 7, 8, 9]));
[INFO] [stderr]    |                                               ^^^^ expected `i32`, found `i64`
[INFO] [stderr]    |
[INFO] [stderr]    = note: expected reference `&std::vec::Vec<i32>`
[INFO] [stderr]               found reference `&std::vec::Vec<i64>`
[INFO] [stderr] 
[INFO] [stderr] error: aborting due to 2 previous errors
[INFO] [stderr] 
[INFO] [stderr] For more information about this error, try `rustc --explain E0308`.
[INFO] [stderr] error: could not compile `aoc`.
[INFO] [stderr] 
[INFO] [stderr] To learn more, run the command again with --verbose.
[INFO] [stderr] warning: build failed, waiting for other jobs to finish...
[INFO] [stderr] error: aborting due to 8 previous errors
[INFO] [stderr] 
[INFO] [stderr] Some errors have detailed explanations: E0061, E0308, E0599.
[INFO] [stderr] For more information about an error, try `rustc --explain E0061`.
[INFO] [stderr] error: could not compile `aoc`.
[INFO] [stderr] 
[INFO] [stderr] To learn more, run the command again with --verbose.
[INFO] [stderr] warning: build failed, waiting for other jobs to finish...
[INFO] [stderr] warning: function is never used: `dump`
[INFO] [stderr]   --> src/bin/day17.rs:15:4
[INFO] [stderr]    |
[INFO] [stderr] 15 | fn dump(V: &Vec<Vec<char>>, row: i32, col: i32, dir: usize) {
[INFO] [stderr]    |    ^^^^
[INFO] [stderr]    |
[INFO] [stderr]    = note: `#[warn(dead_code)]` on by default
[INFO] [stderr] 
[INFO] [stderr] warning: function is never used: `determine_drawing_function`
[INFO] [stderr]   --> src/bin/day17.rs:30:4
[INFO] [stderr]    |
[INFO] [stderr] 30 | fn determine_drawing_function(V: &Vec<Vec<char>>) {
[INFO] [stderr]    |    ^^^^^^^^^^^^^^^^^^^^^^^^^^
[INFO] [stderr] 
[INFO] [stderr] warning: variable `V` should have a snake case name
[INFO] [stderr]  --> src/bin/day17.rs:7:40
[INFO] [stderr]   |
[INFO] [stderr] 7 | fn is_intersection(i: usize, j: usize, V: &Vec<Vec<char>>) -> bool {
[INFO] [stderr]   |                                        ^ help: convert the identifier to snake case (notice the capitalization): `v`
[INFO] [stderr]   |
[INFO] [stderr]   = note: `#[warn(non_snake_case)]` on by default
[INFO] [stderr] 
[INFO] [stderr] warning: variable `V` should have a snake case name
[INFO] [stderr]   --> src/bin/day17.rs:15:9
[INFO] [stderr]    |
[INFO] [stderr] 15 | fn dump(V: &Vec<Vec<char>>, row: i32, col: i32, dir: usize) {
[INFO] [stderr]    |         ^ help: convert the identifier to snake case (notice the capitalization): `v`
[INFO] [stderr] 
[INFO] [stderr] warning: variable `V` should have a snake case name
[INFO] [stderr]   --> src/bin/day17.rs:30:31
[INFO] [stderr]    |
[INFO] [stderr] 30 | fn determine_drawing_function(V: &Vec<Vec<char>>) {
[INFO] [stderr]    |                               ^ help: convert the identifier to snake case (notice the capitalization): `v`
[INFO] [stderr] 
[INFO] [stderr] warning: variable `V` should have a snake case name
[INFO] [stderr]   --> src/bin/day17.rs:65:11
[INFO] [stderr]    |
[INFO] [stderr] 65 |   let mut V = Vec::new();
[INFO] [stderr]    |           ^ help: convert the identifier to snake case (notice the capitalization): `v`
[INFO] [stderr] 
[INFO] [stderr] warning: variable `V` should have a snake case name
[INFO] [stderr]   --> src/bin/day17.rs:89:7
[INFO] [stderr]    |
[INFO] [stderr] 89 |   let V = output_to_vector(&cpu.run(vec![]));
[INFO] [stderr]    |       ^ help: convert the identifier to snake case (notice the capitalization): `v`
[INFO] [stderr] 
[INFO] [stderr] error: build failed
[INFO] running `"docker" "inspect" "5cc2adede1415472e1d0b322e422605726fed4afe7901afd3bf476018fcb336a"`
[INFO] running `"docker" "rm" "-f" "5cc2adede1415472e1d0b322e422605726fed4afe7901afd3bf476018fcb336a"`
[INFO] [stdout] 5cc2adede1415472e1d0b322e422605726fed4afe7901afd3bf476018fcb336a
