[INFO] updating cached repository https://github.com/eggmund/Prey [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] 368817a33c994b7b91e64f1a79df5119666b01c4 [INFO] checking eggmund/Prey against try#a243773eaf3fedcd203f10ae4579e4f106bf7ccd for pr-68325 [INFO] running `"git" "clone" "/workspace/cache/git-repos/https%3A%2F%2Fgithub.com%2Feggmund%2FPrey" "/workspace/builds/worker-1/source"` [INFO] [stderr] Cloning into '/workspace/builds/worker-1/source'... [INFO] [stderr] done. [INFO] validating manifest of git repo https://github.com/eggmund/Prey on toolchain a243773eaf3fedcd203f10ae4579e4f106bf7ccd [INFO] running `"/workspace/cargo-home/bin/cargo" "+a243773eaf3fedcd203f10ae4579e4f106bf7ccd" "read-manifest" "--manifest-path" "Cargo.toml"` [INFO] started tweaking git repo https://github.com/eggmund/Prey [INFO] finished tweaking git repo https://github.com/eggmund/Prey [INFO] tweaked toml for git repo https://github.com/eggmund/Prey written to /workspace/builds/worker-1/source/Cargo.toml [INFO] crate git repo https://github.com/eggmund/Prey already has a lockfile, it will not be regenerated [INFO] running `"/workspace/cargo-home/bin/cargo" "+a243773eaf3fedcd203f10ae4579e4f106bf7ccd" "fetch" "--locked" "--manifest-path" "Cargo.toml"` [INFO] running `"docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-1/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-1/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" "+a243773eaf3fedcd203f10ae4579e4f106bf7ccd" "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] 1c4b6b6de71954fb131a76e5be0a46b00e3483028f281142eed882971f8afdd9 [INFO] running `"docker" "start" "-a" "1c4b6b6de71954fb131a76e5be0a46b00e3483028f281142eed882971f8afdd9"` [INFO] [stderr] Checking Prey v0.1.0 (/opt/rustwide/workdir) [INFO] [stderr] warning: unnecessary parentheses around assigned value [INFO] [stderr] --> src/main.rs:80:35 [INFO] [stderr] | [INFO] [stderr] 80 | boid.position.x = (SCREEN_DIMS[0] + BOID_SIZE[0] / 2.0); [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: remove these parentheses [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(unused_parens)]` on by default [INFO] [stderr] [INFO] [stderr] warning: unnecessary parentheses around assigned value [INFO] [stderr] --> src/main.rs:87:35 [INFO] [stderr] | [INFO] [stderr] 87 | boid.position.y = (SCREEN_DIMS[1] + BOID_SIZE[0] / 2.0); [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: remove these parentheses [INFO] [stderr] [INFO] [stderr] warning: unused variable: `ctx` [INFO] [stderr] --> src/main.rs:218:9 [INFO] [stderr] | [INFO] [stderr] 218 | ctx: &mut Context, [INFO] [stderr] | ^^^ help: consider prefixing with an underscore: `_ctx` [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(unused_variables)]` on by default [INFO] [stderr] [INFO] [stderr] error[E0502]: cannot borrow `current` as immutable because it is also borrowed as mutable [INFO] [stderr] --> src/main.rs:170:41 [INFO] [stderr] | [INFO] [stderr] 169 | ... current.acceleration -= diff_vector [INFO] [stderr] | ------- [INFO] [stderr] | | [INFO] [stderr] | _______________________mutable borrow occurs here [INFO] [stderr] | | [INFO] [stderr] 170 | | ... * match current.b_type { [INFO] [stderr] | | ^^^^^^^ immutable borrow occurs here [INFO] [stderr] 171 | | ... BoidType::Predator => PREDATOR_SEPERATION_MULT, [INFO] [stderr] 172 | | ... _ => SEPARATION_MULT, [INFO] [stderr] 173 | | ... }; [INFO] [stderr] | |___________________________- mutable borrow later used here [INFO] [stderr] [INFO] [stderr] error[E0502]: cannot borrow `current` as immutable because it is also borrowed as mutable [INFO] [stderr] --> src/main.rs:192:56 [INFO] [stderr] | [INFO] [stderr] 192 | current.acceleration += (desired_vel - current.velocity) * ALIGNMENT_MULT; [INFO] [stderr] | ---------------------------------------^^^^^^^--------------------------- [INFO] [stderr] | | | [INFO] [stderr] | | immutable borrow occurs here [INFO] [stderr] | mutable borrow occurs here [INFO] [stderr] | mutable borrow later used here [INFO] [stderr] [INFO] [stderr] error[E0502]: cannot borrow `current` as immutable because it is also borrowed as mutable [INFO] [stderr] --> src/main.rs:195:36 [INFO] [stderr] | [INFO] [stderr] 194 | current.acceleration += (desired_pos [INFO] [stderr] | ------- [INFO] [stderr] | | [INFO] [stderr] | _________________mutable borrow occurs here [INFO] [stderr] | | [INFO] [stderr] 195 | | - Vector2::new(current.position.x, current.position.y)) [INFO] [stderr] | | ^^^^^^^ immutable borrow occurs here [INFO] [stderr] 196 | | * COHESION_MULT; [INFO] [stderr] | |___________________________________- mutable borrow later used here [INFO] [stderr] [INFO] [stderr] error[E0502]: cannot borrow `current` as immutable because it is also borrowed as mutable [INFO] [stderr] --> src/main.rs:195:56 [INFO] [stderr] | [INFO] [stderr] 194 | current.acceleration += (desired_pos [INFO] [stderr] | ------- [INFO] [stderr] | | [INFO] [stderr] | _________________mutable borrow occurs here [INFO] [stderr] | | [INFO] [stderr] 195 | | - Vector2::new(current.position.x, current.position.y)) [INFO] [stderr] | | ^^^^^^^ immutable borrow occurs here [INFO] [stderr] 196 | | * COHESION_MULT; [INFO] [stderr] | |___________________________________- mutable borrow later used here [INFO] [stderr] [INFO] [stderr] error: aborting due to 4 previous errors [INFO] [stderr] [INFO] [stderr] For more information about this error, try `rustc --explain E0502`. [INFO] [stderr] error: could not compile `Prey`. [INFO] [stderr] warning: build failed, waiting for other jobs to finish... [INFO] [stderr] warning: unnecessary parentheses around assigned value [INFO] [stderr] --> src/main.rs:80:35 [INFO] [stderr] | [INFO] [stderr] 80 | boid.position.x = (SCREEN_DIMS[0] + BOID_SIZE[0] / 2.0); [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: remove these parentheses [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(unused_parens)]` on by default [INFO] [stderr] [INFO] [stderr] warning: unnecessary parentheses around assigned value [INFO] [stderr] --> src/main.rs:87:35 [INFO] [stderr] | [INFO] [stderr] 87 | boid.position.y = (SCREEN_DIMS[1] + BOID_SIZE[0] / 2.0); [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: remove these parentheses [INFO] [stderr] [INFO] [stderr] warning: unused variable: `ctx` [INFO] [stderr] --> src/main.rs:218:9 [INFO] [stderr] | [INFO] [stderr] 218 | ctx: &mut Context, [INFO] [stderr] | ^^^ help: consider prefixing with an underscore: `_ctx` [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(unused_variables)]` on by default [INFO] [stderr] [INFO] [stderr] error[E0502]: cannot borrow `current` as immutable because it is also borrowed as mutable [INFO] [stderr] --> src/main.rs:170:41 [INFO] [stderr] | [INFO] [stderr] 169 | ... current.acceleration -= diff_vector [INFO] [stderr] | ------- [INFO] [stderr] | | [INFO] [stderr] | _______________________mutable borrow occurs here [INFO] [stderr] | | [INFO] [stderr] 170 | | ... * match current.b_type { [INFO] [stderr] | | ^^^^^^^ immutable borrow occurs here [INFO] [stderr] 171 | | ... BoidType::Predator => PREDATOR_SEPERATION_MULT, [INFO] [stderr] 172 | | ... _ => SEPARATION_MULT, [INFO] [stderr] 173 | | ... }; [INFO] [stderr] | |___________________________- mutable borrow later used here [INFO] [stderr] [INFO] [stderr] error[E0502]: cannot borrow `current` as immutable because it is also borrowed as mutable [INFO] [stderr] --> src/main.rs:192:56 [INFO] [stderr] | [INFO] [stderr] 192 | current.acceleration += (desired_vel - current.velocity) * ALIGNMENT_MULT; [INFO] [stderr] | ---------------------------------------^^^^^^^--------------------------- [INFO] [stderr] | | | [INFO] [stderr] | | immutable borrow occurs here [INFO] [stderr] | mutable borrow occurs here [INFO] [stderr] | mutable borrow later used here [INFO] [stderr] [INFO] [stderr] error[E0502]: cannot borrow `current` as immutable because it is also borrowed as mutable [INFO] [stderr] --> src/main.rs:195:36 [INFO] [stderr] | [INFO] [stderr] 194 | current.acceleration += (desired_pos [INFO] [stderr] | ------- [INFO] [stderr] | | [INFO] [stderr] | _________________mutable borrow occurs here [INFO] [stderr] | | [INFO] [stderr] 195 | | - Vector2::new(current.position.x, current.position.y)) [INFO] [stderr] | | ^^^^^^^ immutable borrow occurs here [INFO] [stderr] 196 | | * COHESION_MULT; [INFO] [stderr] | |___________________________________- mutable borrow later used here [INFO] [stderr] [INFO] [stderr] error[E0502]: cannot borrow `current` as immutable because it is also borrowed as mutable [INFO] [stderr] --> src/main.rs:195:56 [INFO] [stderr] | [INFO] [stderr] 194 | current.acceleration += (desired_pos [INFO] [stderr] | ------- [INFO] [stderr] | | [INFO] [stderr] | _________________mutable borrow occurs here [INFO] [stderr] | | [INFO] [stderr] 195 | | - Vector2::new(current.position.x, current.position.y)) [INFO] [stderr] | | ^^^^^^^ immutable borrow occurs here [INFO] [stderr] 196 | | * COHESION_MULT; [INFO] [stderr] | |___________________________________- mutable borrow later used here [INFO] [stderr] [INFO] [stderr] error: aborting due to 4 previous errors [INFO] [stderr] [INFO] [stderr] For more information about this error, try `rustc --explain E0502`. [INFO] [stderr] error: could not compile `Prey`. [INFO] [stderr] [INFO] [stderr] To learn more, run the command again with --verbose. [INFO] running `"docker" "inspect" "1c4b6b6de71954fb131a76e5be0a46b00e3483028f281142eed882971f8afdd9"` [INFO] running `"docker" "rm" "-f" "1c4b6b6de71954fb131a76e5be0a46b00e3483028f281142eed882971f8afdd9"` [INFO] [stdout] 1c4b6b6de71954fb131a76e5be0a46b00e3483028f281142eed882971f8afdd9