Oct 27 11:57:31.035 INFO checking ErikPartridge/sudoku-generator against master#155510e377ae2a8d8ee0dad1a5f809c9062a5526 for pr-55192-2 Oct 27 11:57:31.035 INFO running `"docker" "create" "-v" "/mnt/big/crater/./work/local/target-dirs/pr-55192-2/worker-6/master#155510e377ae2a8d8ee0dad1a5f809c9062a5526:/target:rw,Z" "-v" "/mnt/big/crater/./work/local/test-source/worker-6/pr-55192-2/master#155510e377ae2a8d8ee0dad1a5f809c9062a5526:/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 +155510e377ae2a8d8ee0dad1a5f809c9062a5526-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 27 11:57:31.242 INFO blam! 868209341fa73250ea2d5142f4707310b82ef694e2bc176a9ac5e65cb8523d3f Oct 27 11:57:31.244 INFO running `"docker" "start" "-a" "868209341fa73250ea2d5142f4707310b82ef694e2bc176a9ac5e65cb8523d3f"` Oct 27 11:57:31.721 INFO kablam! usermod: no changes Oct 27 11:57:31.765 INFO kablam! Checking sudoku-generator v0.1.0 (/source) Oct 27 11:57:32.217 INFO kablam! warning: unused import: `freedom::Freedom` Oct 27 11:57:32.217 INFO kablam! --> src/main.rs:3:5 Oct 27 11:57:32.217 INFO kablam! | Oct 27 11:57:32.217 INFO kablam! 3 | use freedom::Freedom; Oct 27 11:57:32.217 INFO kablam! | ^^^^^^^^^^^^^^^^ Oct 27 11:57:32.217 INFO kablam! | Oct 27 11:57:32.217 INFO kablam! = note: #[warn(unused_imports)] on by default Oct 27 11:57:32.217 INFO kablam! Oct 27 11:57:32.217 INFO kablam! warning: unused import: `problem::Problem` Oct 27 11:57:32.217 INFO kablam! --> src/main.rs:4:5 Oct 27 11:57:32.217 INFO kablam! | Oct 27 11:57:32.217 INFO kablam! 4 | use problem::Problem; Oct 27 11:57:32.217 INFO kablam! | ^^^^^^^^^^^^^^^^ Oct 27 11:57:32.217 INFO kablam! Oct 27 11:57:32.266 INFO kablam! warning: unused variable: `j` Oct 27 11:57:32.266 INFO kablam! --> src/freedom.rs:28:9 Oct 27 11:57:32.266 INFO kablam! | Oct 27 11:57:32.266 INFO kablam! 28 | for j in 0..3 { Oct 27 11:57:32.266 INFO kablam! | ^ help: consider using `_j` instead Oct 27 11:57:32.266 INFO kablam! | Oct 27 11:57:32.266 INFO kablam! = note: #[warn(unused_variables)] on by default Oct 27 11:57:32.266 INFO kablam! Oct 27 11:57:32.275 INFO kablam! warning: constant item is never used: `ORDER` Oct 27 11:57:32.275 INFO kablam! --> src/freedom.rs:1:1 Oct 27 11:57:32.275 INFO kablam! | Oct 27 11:57:32.275 INFO kablam! 1 | const ORDER: u8 = 3; Oct 27 11:57:32.275 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^ Oct 27 11:57:32.275 INFO kablam! | Oct 27 11:57:32.275 INFO kablam! = note: #[warn(dead_code)] on by default Oct 27 11:57:32.275 INFO kablam! Oct 27 11:57:32.275 INFO kablam! warning: constant item is never used: `DIM` Oct 27 11:57:32.275 INFO kablam! --> src/freedom.rs:2:1 Oct 27 11:57:32.275 INFO kablam! | Oct 27 11:57:32.275 INFO kablam! 2 | const DIM: u8 = ORDER * ORDER; Oct 27 11:57:32.275 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 27 11:57:32.275 INFO kablam! Oct 27 11:57:32.275 INFO kablam! warning: constant item is never used: `ELEMENTS` Oct 27 11:57:32.275 INFO kablam! --> src/freedom.rs:3:1 Oct 27 11:57:32.275 INFO kablam! | Oct 27 11:57:32.275 INFO kablam! 3 | const ELEMENTS: u8 = DIM * DIM; Oct 27 11:57:32.275 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 27 11:57:32.275 INFO kablam! Oct 27 11:57:32.275 INFO kablam! warning: constant item is never used: `ALL_VALUES` Oct 27 11:57:32.275 INFO kablam! --> src/freedom.rs:4:1 Oct 27 11:57:32.275 INFO kablam! | Oct 27 11:57:32.275 INFO kablam! 4 | const ALL_VALUES: u16 = (1 << DIM) - 1; Oct 27 11:57:32.275 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 27 11:57:32.275 INFO kablam! Oct 27 11:57:32.275 INFO kablam! warning: struct is never constructed: `Freedom` Oct 27 11:57:32.275 INFO kablam! --> src/freedom.rs:7:1 Oct 27 11:57:32.275 INFO kablam! | Oct 27 11:57:32.275 INFO kablam! 7 | pub struct Freedom { Oct 27 11:57:32.275 INFO kablam! | ^^^^^^^^^^^^^^^^^^ Oct 27 11:57:32.275 INFO kablam! Oct 27 11:57:32.275 INFO kablam! warning: function is never used: `singleton` Oct 27 11:57:32.275 INFO kablam! --> src/freedom.rs:11:1 Oct 27 11:57:32.275 INFO kablam! | Oct 27 11:57:32.275 INFO kablam! 11 | fn singleton(v: u16) -> u16 { Oct 27 11:57:32.275 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 27 11:57:32.275 INFO kablam! Oct 27 11:57:32.275 INFO kablam! warning: function is never used: `freedom_eliminate` Oct 27 11:57:32.275 INFO kablam! --> src/freedom.rs:16:1 Oct 27 11:57:32.275 INFO kablam! | Oct 27 11:57:32.275 INFO kablam! 16 | fn freedom_eliminate(f: &Freedom, col: u16, row: u16, value: u16) -> Freedom { Oct 27 11:57:32.275 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 27 11:57:32.275 INFO kablam! Oct 27 11:57:32.275 INFO kablam! warning: function is never used: `create_freedom` Oct 27 11:57:32.275 INFO kablam! --> src/freedom.rs:38:1 Oct 27 11:57:32.275 INFO kablam! | Oct 27 11:57:32.275 INFO kablam! 38 | fn create_freedom(problem: &Problem) -> Freedom { Oct 27 11:57:32.275 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 27 11:57:32.275 INFO kablam! Oct 27 11:57:32.275 INFO kablam! warning: function is never used: `sanity_check` Oct 27 11:57:32.275 INFO kablam! --> src/freedom.rs:52:1 Oct 27 11:57:32.275 INFO kablam! | Oct 27 11:57:32.275 INFO kablam! 52 | fn sanity_check(problem: &Problem, freedom: &Freedom) -> bool { Oct 27 11:57:32.275 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 27 11:57:32.275 INFO kablam! Oct 27 11:57:32.275 INFO kablam! warning: function is never used: `search_least_free` Oct 27 11:57:32.275 INFO kablam! --> src/freedom.rs:63:1 Oct 27 11:57:32.275 INFO kablam! | Oct 27 11:57:32.275 INFO kablam! 63 | fn search_least_free(problem: &Problem, freedom: &Freedom) -> u16 { Oct 27 11:57:32.275 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 27 11:57:32.275 INFO kablam! Oct 27 11:57:32.275 INFO kablam! warning: struct is never constructed: `Problem` Oct 27 11:57:32.275 INFO kablam! --> src/problem.rs:1:1 Oct 27 11:57:32.275 INFO kablam! | Oct 27 11:57:32.275 INFO kablam! 1 | pub struct Problem { Oct 27 11:57:32.275 INFO kablam! | ^^^^^^^^^^^^^^^^^^ Oct 27 11:57:32.275 INFO kablam! Oct 27 11:57:32.320 INFO kablam! warning: unused import: `freedom::Freedom` Oct 27 11:57:32.320 INFO kablam! --> src/main.rs:3:5 Oct 27 11:57:32.321 INFO kablam! | Oct 27 11:57:32.321 INFO kablam! 3 | use freedom::Freedom; Oct 27 11:57:32.321 INFO kablam! | ^^^^^^^^^^^^^^^^ Oct 27 11:57:32.321 INFO kablam! | Oct 27 11:57:32.321 INFO kablam! = note: #[warn(unused_imports)] on by default Oct 27 11:57:32.321 INFO kablam! Oct 27 11:57:32.321 INFO kablam! warning: unused import: `problem::Problem` Oct 27 11:57:32.321 INFO kablam! --> src/main.rs:4:5 Oct 27 11:57:32.321 INFO kablam! | Oct 27 11:57:32.321 INFO kablam! 4 | use problem::Problem; Oct 27 11:57:32.321 INFO kablam! | ^^^^^^^^^^^^^^^^ Oct 27 11:57:32.321 INFO kablam! Oct 27 11:57:32.369 INFO kablam! warning: unused variable: `j` Oct 27 11:57:32.369 INFO kablam! --> src/freedom.rs:28:9 Oct 27 11:57:32.369 INFO kablam! | Oct 27 11:57:32.369 INFO kablam! 28 | for j in 0..3 { Oct 27 11:57:32.369 INFO kablam! | ^ help: consider using `_j` instead Oct 27 11:57:32.369 INFO kablam! | Oct 27 11:57:32.369 INFO kablam! = note: #[warn(unused_variables)] on by default Oct 27 11:57:32.369 INFO kablam! Oct 27 11:57:32.375 INFO kablam! warning: constant item is never used: `ORDER` Oct 27 11:57:32.375 INFO kablam! --> src/freedom.rs:1:1 Oct 27 11:57:32.375 INFO kablam! | Oct 27 11:57:32.375 INFO kablam! 1 | const ORDER: u8 = 3; Oct 27 11:57:32.375 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^ Oct 27 11:57:32.375 INFO kablam! | Oct 27 11:57:32.375 INFO kablam! = note: #[warn(dead_code)] on by default Oct 27 11:57:32.375 INFO kablam! Oct 27 11:57:32.376 INFO kablam! warning: constant item is never used: `DIM` Oct 27 11:57:32.376 INFO kablam! --> src/freedom.rs:2:1 Oct 27 11:57:32.376 INFO kablam! | Oct 27 11:57:32.376 INFO kablam! 2 | const DIM: u8 = ORDER * ORDER; Oct 27 11:57:32.376 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 27 11:57:32.376 INFO kablam! Oct 27 11:57:32.376 INFO kablam! warning: constant item is never used: `ELEMENTS` Oct 27 11:57:32.376 INFO kablam! --> src/freedom.rs:3:1 Oct 27 11:57:32.376 INFO kablam! | Oct 27 11:57:32.376 INFO kablam! 3 | const ELEMENTS: u8 = DIM * DIM; Oct 27 11:57:32.380 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 27 11:57:32.380 INFO kablam! Oct 27 11:57:32.380 INFO kablam! warning: constant item is never used: `ALL_VALUES` Oct 27 11:57:32.380 INFO kablam! --> src/freedom.rs:4:1 Oct 27 11:57:32.381 INFO kablam! | Oct 27 11:57:32.381 INFO kablam! 4 | const ALL_VALUES: u16 = (1 << DIM) - 1; Oct 27 11:57:32.381 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 27 11:57:32.381 INFO kablam! Oct 27 11:57:32.381 INFO kablam! warning: struct is never constructed: `Freedom` Oct 27 11:57:32.381 INFO kablam! --> src/freedom.rs:7:1 Oct 27 11:57:32.381 INFO kablam! | Oct 27 11:57:32.381 INFO kablam! 7 | pub struct Freedom { Oct 27 11:57:32.381 INFO kablam! | ^^^^^^^^^^^^^^^^^^ Oct 27 11:57:32.381 INFO kablam! Oct 27 11:57:32.381 INFO kablam! warning: function is never used: `singleton` Oct 27 11:57:32.381 INFO kablam! --> src/freedom.rs:11:1 Oct 27 11:57:32.381 INFO kablam! | Oct 27 11:57:32.381 INFO kablam! 11 | fn singleton(v: u16) -> u16 { Oct 27 11:57:32.381 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 27 11:57:32.381 INFO kablam! Oct 27 11:57:32.381 INFO kablam! warning: function is never used: `freedom_eliminate` Oct 27 11:57:32.381 INFO kablam! --> src/freedom.rs:16:1 Oct 27 11:57:32.381 INFO kablam! | Oct 27 11:57:32.381 INFO kablam! 16 | fn freedom_eliminate(f: &Freedom, col: u16, row: u16, value: u16) -> Freedom { Oct 27 11:57:32.381 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 27 11:57:32.381 INFO kablam! Oct 27 11:57:32.381 INFO kablam! warning: function is never used: `create_freedom` Oct 27 11:57:32.381 INFO kablam! --> src/freedom.rs:38:1 Oct 27 11:57:32.381 INFO kablam! | Oct 27 11:57:32.381 INFO kablam! 38 | fn create_freedom(problem: &Problem) -> Freedom { Oct 27 11:57:32.381 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 27 11:57:32.381 INFO kablam! Oct 27 11:57:32.381 INFO kablam! warning: function is never used: `sanity_check` Oct 27 11:57:32.381 INFO kablam! --> src/freedom.rs:52:1 Oct 27 11:57:32.381 INFO kablam! | Oct 27 11:57:32.381 INFO kablam! 52 | fn sanity_check(problem: &Problem, freedom: &Freedom) -> bool { Oct 27 11:57:32.381 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 27 11:57:32.381 INFO kablam! Oct 27 11:57:32.381 INFO kablam! warning: function is never used: `search_least_free` Oct 27 11:57:32.381 INFO kablam! --> src/freedom.rs:63:1 Oct 27 11:57:32.381 INFO kablam! | Oct 27 11:57:32.381 INFO kablam! 63 | fn search_least_free(problem: &Problem, freedom: &Freedom) -> u16 { Oct 27 11:57:32.381 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 27 11:57:32.381 INFO kablam! Oct 27 11:57:32.381 INFO kablam! warning: struct is never constructed: `Problem` Oct 27 11:57:32.381 INFO kablam! --> src/problem.rs:1:1 Oct 27 11:57:32.381 INFO kablam! | Oct 27 11:57:32.381 INFO kablam! 1 | pub struct Problem { Oct 27 11:57:32.381 INFO kablam! | ^^^^^^^^^^^^^^^^^^ Oct 27 11:57:32.381 INFO kablam! Oct 27 11:57:32.389 INFO kablam! Finished dev [unoptimized + debuginfo] target(s) in 0.64s Oct 27 11:57:32.391 INFO kablam! su: No module specific data is present Oct 27 11:57:32.727 INFO running `"docker" "rm" "-f" "868209341fa73250ea2d5142f4707310b82ef694e2bc176a9ac5e65cb8523d3f"` Oct 27 11:57:33.095 INFO blam! 868209341fa73250ea2d5142f4707310b82ef694e2bc176a9ac5e65cb8523d3f