Oct 12 18:42:13.327 INFO checking krzyk/rraytrace against master#5af0bb83044c3fb43d59ad5f49ee5ae1a293901f for pr-54977 Oct 12 18:42:13.327 INFO running `"docker" "create" "-v" "/mnt/big/crater/./work/local/target-dirs/pr-54977/worker-7/master#5af0bb83044c3fb43d59ad5f49ee5ae1a293901f:/target:rw,Z" "-v" "/mnt/big/crater/./work/local/test-source/worker-7/pr-54977/master#5af0bb83044c3fb43d59ad5f49ee5ae1a293901f:/source:ro,Z" "-v" "/mnt/big/crater/./work/local/cargo-home:/cargo-home:ro,Z" "-v" "/mnt/big/crater/./work/local/rustup-home:/rustup-home:ro,Z" "-e" "USER_ID=1000" "-e" "SOURCE_DIR=/source" "-e" "USER_ID=1000" "-e" "CMD=cargo +5af0bb83044c3fb43d59ad5f49ee5ae1a293901f-alt check --frozen --all --all-targets" "-e" "CARGO_TARGET_DIR=/target" "-e" "CARGO_INCREMENTAL=0" "-e" "RUST_BACKTRACE=full" "-e" "RUSTFLAGS=--cap-lints=forbid" "-e" "CARGO_HOME=/cargo-home" "-e" "RUSTUP_HOME=/rustup-home" "-m" "1536M" "--network" "none" "crater"` Oct 12 18:42:13.748 INFO blam! 88ef2f4fdc9088aaf6046fc6d03736c560dab0978f8fbbc1d809d31736f8d864 Oct 12 18:42:13.750 INFO running `"docker" "start" "-a" "88ef2f4fdc9088aaf6046fc6d03736c560dab0978f8fbbc1d809d31736f8d864"` Oct 12 18:42:15.692 INFO kablam! usermod: no changes Oct 12 18:42:15.728 INFO kablam! Checking rraytrace v0.1.0 (/source) Oct 12 18:42:16.376 INFO kablam! warning: value assigned to `rec` is never read Oct 12 18:42:16.376 INFO kablam! --> src/main.rs:249:17 Oct 12 18:42:16.376 INFO kablam! | Oct 12 18:42:16.376 INFO kablam! 249 | rec = temp_rec.clone(); Oct 12 18:42:16.376 INFO kablam! | ^^^ Oct 12 18:42:16.376 INFO kablam! | Oct 12 18:42:16.376 INFO kablam! = note: #[warn(unused_assignments)] on by default Oct 12 18:42:16.376 INFO kablam! Oct 12 18:42:16.378 INFO kablam! warning: variable `rec` is assigned to, but never used Oct 12 18:42:16.378 INFO kablam! --> src/main.rs:241:56 Oct 12 18:42:16.378 INFO kablam! | Oct 12 18:42:16.378 INFO kablam! 241 | fn hit(&self, r: &Ray, t_min: f64, t_max: f64, mut rec: HitRecord) -> bool { Oct 12 18:42:16.378 INFO kablam! | ^^^ Oct 12 18:42:16.378 INFO kablam! | Oct 12 18:42:16.378 INFO kablam! = note: #[warn(unused_variables)] on by default Oct 12 18:42:16.378 INFO kablam! = note: consider using `_rec` instead Oct 12 18:42:16.379 INFO kablam! Oct 12 18:42:16.404 INFO kablam! warning: variable does not need to be mutable Oct 12 18:42:16.404 INFO kablam! --> src/main.rs:242:13 Oct 12 18:42:16.404 INFO kablam! | Oct 12 18:42:16.404 INFO kablam! 242 | let mut temp_rec = HitRecord::new(); Oct 12 18:42:16.404 INFO kablam! | ----^^^^^^^^ Oct 12 18:42:16.404 INFO kablam! | | Oct 12 18:42:16.404 INFO kablam! | help: remove this `mut` Oct 12 18:42:16.404 INFO kablam! | Oct 12 18:42:16.404 INFO kablam! = note: #[warn(unused_mut)] on by default Oct 12 18:42:16.404 INFO kablam! Oct 12 18:42:16.417 INFO kablam! warning: variable does not need to be mutable Oct 12 18:42:16.417 INFO kablam! --> src/main.rs:257:9 Oct 12 18:42:16.417 INFO kablam! | Oct 12 18:42:16.418 INFO kablam! 257 | let mut rec = HitRecord::new(); Oct 12 18:42:16.418 INFO kablam! | ----^^^ Oct 12 18:42:16.418 INFO kablam! | | Oct 12 18:42:16.418 INFO kablam! | help: remove this `mut` Oct 12 18:42:16.418 INFO kablam! Oct 12 18:42:16.429 INFO kablam! warning: method is never used: `squared_length` Oct 12 18:42:16.429 INFO kablam! --> src/main.rs:70:5 Oct 12 18:42:16.429 INFO kablam! | Oct 12 18:42:16.429 INFO kablam! 70 | fn squared_length(&self) -> f64 { Oct 12 18:42:16.429 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 12 18:42:16.429 INFO kablam! | Oct 12 18:42:16.429 INFO kablam! = note: #[warn(dead_code)] on by default Oct 12 18:42:16.429 INFO kablam! Oct 12 18:42:16.429 INFO kablam! warning: method is never used: `cross` Oct 12 18:42:16.429 INFO kablam! --> src/main.rs:78:5 Oct 12 18:42:16.429 INFO kablam! | Oct 12 18:42:16.429 INFO kablam! 78 | fn cross(&self, other: Coords) -> Coords { Oct 12 18:42:16.429 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 12 18:42:16.429 INFO kablam! Oct 12 18:42:16.430 INFO kablam! warning: method is never used: `unit_vector` Oct 12 18:42:16.430 INFO kablam! --> src/main.rs:86:5 Oct 12 18:42:16.430 INFO kablam! | Oct 12 18:42:16.430 INFO kablam! 86 | fn unit_vector(self, other: Coords) -> Coords { Oct 12 18:42:16.430 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 12 18:42:16.430 INFO kablam! Oct 12 18:42:16.572 INFO kablam! warning: value assigned to `rec` is never read Oct 12 18:42:16.572 INFO kablam! --> src/main.rs:249:17 Oct 12 18:42:16.572 INFO kablam! | Oct 12 18:42:16.572 INFO kablam! 249 | rec = temp_rec.clone(); Oct 12 18:42:16.572 INFO kablam! | ^^^ Oct 12 18:42:16.572 INFO kablam! | Oct 12 18:42:16.572 INFO kablam! = note: #[warn(unused_assignments)] on by default Oct 12 18:42:16.572 INFO kablam! Oct 12 18:42:16.572 INFO kablam! warning: variable `rec` is assigned to, but never used Oct 12 18:42:16.572 INFO kablam! --> src/main.rs:241:56 Oct 12 18:42:16.572 INFO kablam! | Oct 12 18:42:16.572 INFO kablam! 241 | fn hit(&self, r: &Ray, t_min: f64, t_max: f64, mut rec: HitRecord) -> bool { Oct 12 18:42:16.572 INFO kablam! | ^^^ Oct 12 18:42:16.576 INFO kablam! | Oct 12 18:42:16.576 INFO kablam! = note: #[warn(unused_variables)] on by default Oct 12 18:42:16.576 INFO kablam! = note: consider using `_rec` instead Oct 12 18:42:16.576 INFO kablam! Oct 12 18:42:16.591 INFO kablam! warning: variable does not need to be mutable Oct 12 18:42:16.592 INFO kablam! --> src/main.rs:242:13 Oct 12 18:42:16.592 INFO kablam! | Oct 12 18:42:16.592 INFO kablam! 242 | let mut temp_rec = HitRecord::new(); Oct 12 18:42:16.592 INFO kablam! | ----^^^^^^^^ Oct 12 18:42:16.592 INFO kablam! | | Oct 12 18:42:16.592 INFO kablam! | help: remove this `mut` Oct 12 18:42:16.592 INFO kablam! | Oct 12 18:42:16.592 INFO kablam! = note: #[warn(unused_mut)] on by default Oct 12 18:42:16.592 INFO kablam! Oct 12 18:42:16.596 INFO kablam! warning: variable does not need to be mutable Oct 12 18:42:16.596 INFO kablam! --> src/main.rs:257:9 Oct 12 18:42:16.596 INFO kablam! | Oct 12 18:42:16.596 INFO kablam! 257 | let mut rec = HitRecord::new(); Oct 12 18:42:16.596 INFO kablam! | ----^^^ Oct 12 18:42:16.596 INFO kablam! | | Oct 12 18:42:16.596 INFO kablam! | help: remove this `mut` Oct 12 18:42:16.596 INFO kablam! Oct 12 18:42:16.599 INFO kablam! warning: method is never used: `squared_length` Oct 12 18:42:16.599 INFO kablam! --> src/main.rs:70:5 Oct 12 18:42:16.599 INFO kablam! | Oct 12 18:42:16.599 INFO kablam! 70 | fn squared_length(&self) -> f64 { Oct 12 18:42:16.599 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 12 18:42:16.599 INFO kablam! | Oct 12 18:42:16.599 INFO kablam! = note: #[warn(dead_code)] on by default Oct 12 18:42:16.599 INFO kablam! Oct 12 18:42:16.600 INFO kablam! warning: method is never used: `cross` Oct 12 18:42:16.600 INFO kablam! --> src/main.rs:78:5 Oct 12 18:42:16.600 INFO kablam! | Oct 12 18:42:16.600 INFO kablam! 78 | fn cross(&self, other: Coords) -> Coords { Oct 12 18:42:16.600 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 12 18:42:16.600 INFO kablam! Oct 12 18:42:16.604 INFO kablam! warning: method is never used: `unit_vector` Oct 12 18:42:16.604 INFO kablam! --> src/main.rs:86:5 Oct 12 18:42:16.604 INFO kablam! | Oct 12 18:42:16.604 INFO kablam! 86 | fn unit_vector(self, other: Coords) -> Coords { Oct 12 18:42:16.604 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 12 18:42:16.604 INFO kablam! Oct 12 18:42:16.680 INFO kablam! Finished dev [unoptimized + debuginfo] target(s) in 0.96s Oct 12 18:42:16.680 INFO kablam! su: No module specific data is present Oct 12 18:42:18.132 INFO running `"docker" "rm" "-f" "88ef2f4fdc9088aaf6046fc6d03736c560dab0978f8fbbc1d809d31736f8d864"` Oct 12 18:42:18.408 INFO blam! 88ef2f4fdc9088aaf6046fc6d03736c560dab0978f8fbbc1d809d31736f8d864