Oct 21 19:36:54.653 INFO checking athorwall/parser-combinators against master#155510e377ae2a8d8ee0dad1a5f809c9062a5526 for pr-55192 Oct 21 19:36:54.653 INFO running `"docker" "create" "-v" "/mnt/big/crater/./work/local/target-dirs/pr-55192/worker-2/master#155510e377ae2a8d8ee0dad1a5f809c9062a5526:/target:rw,Z" "-v" "/mnt/big/crater/./work/local/test-source/worker-2/pr-55192/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 21 19:36:55.212 INFO blam! 50a14156ed2c1577d75211e1dca8672ac42813d7fcfc91b768b98d34c454c1ae Oct 21 19:36:55.217 INFO running `"docker" "start" "-a" "50a14156ed2c1577d75211e1dca8672ac42813d7fcfc91b768b98d34c454c1ae"` Oct 21 19:36:56.436 INFO kablam! usermod: no changes Oct 21 19:36:56.485 INFO kablam! Checking parser-combinators v0.1.0 (/source) Oct 21 19:36:57.265 INFO kablam! warning: unused variable: `value` Oct 21 19:36:57.265 INFO kablam! --> src/parser.rs:42:26 Oct 21 19:36:57.266 INFO kablam! | Oct 21 19:36:57.266 INFO kablam! 42 | Some(value) => { Oct 21 19:36:57.266 INFO kablam! | ^^^^^ help: consider using `_value` instead Oct 21 19:36:57.267 INFO kablam! | Oct 21 19:36:57.267 INFO kablam! = note: #[warn(unused_variables)] on by default Oct 21 19:36:57.267 INFO kablam! Oct 21 19:36:57.267 INFO kablam! warning: unused variable: `new_input` Oct 21 19:36:57.268 INFO kablam! --> src/parser.rs:43:33 Oct 21 19:36:57.268 INFO kablam! | Oct 21 19:36:57.268 INFO kablam! 43 | let mut new_input = input.clone(); Oct 21 19:36:57.269 INFO kablam! | ^^^^^^^^^ help: consider using `_new_input` instead Oct 21 19:36:57.269 INFO kablam! Oct 21 19:36:57.272 INFO kablam! warning: unused variable: `value` Oct 21 19:36:57.272 INFO kablam! --> src/parser.rs:42:26 Oct 21 19:36:57.272 INFO kablam! | Oct 21 19:36:57.272 INFO kablam! 42 | Some(value) => { Oct 21 19:36:57.272 INFO kablam! | ^^^^^ help: consider using `_value` instead Oct 21 19:36:57.272 INFO kablam! | Oct 21 19:36:57.272 INFO kablam! = note: #[warn(unused_variables)] on by default Oct 21 19:36:57.272 INFO kablam! Oct 21 19:36:57.272 INFO kablam! warning: unused variable: `new_input` Oct 21 19:36:57.272 INFO kablam! --> src/parser.rs:43:33 Oct 21 19:36:57.272 INFO kablam! | Oct 21 19:36:57.272 INFO kablam! 43 | let mut new_input = input.clone(); Oct 21 19:36:57.272 INFO kablam! | ^^^^^^^^^ help: consider using `_new_input` instead Oct 21 19:36:57.272 INFO kablam! Oct 21 19:36:57.293 INFO kablam! warning: struct is never constructed: `Parser` Oct 21 19:36:57.293 INFO kablam! --> src/parser.rs:3:1 Oct 21 19:36:57.293 INFO kablam! | Oct 21 19:36:57.294 INFO kablam! 3 | struct Parser<'a, T> { Oct 21 19:36:57.294 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^ Oct 21 19:36:57.294 INFO kablam! | Oct 21 19:36:57.295 INFO kablam! = note: #[warn(dead_code)] on by default Oct 21 19:36:57.295 INFO kablam! Oct 21 19:36:57.295 INFO kablam! warning: method is never used: `parse` Oct 21 19:36:57.295 INFO kablam! --> src/parser.rs:8:5 Oct 21 19:36:57.296 INFO kablam! | Oct 21 19:36:57.296 INFO kablam! 8 | pub fn parse(&self, input: &String) -> Result { Oct 21 19:36:57.296 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 21 19:36:57.297 INFO kablam! Oct 21 19:36:57.297 INFO kablam! warning: method is never used: `map` Oct 21 19:36:57.298 INFO kablam! --> src/parser.rs:24:5 Oct 21 19:36:57.313 INFO kablam! | Oct 21 19:36:57.313 INFO kablam! 24 | pub fn map(self, func: Box U>) -> Parser<'a, U> where T: 'a, U: 'a { Oct 21 19:36:57.313 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 21 19:36:57.313 INFO kablam! Oct 21 19:36:57.313 INFO kablam! warning: method is never used: `one` Oct 21 19:36:57.313 INFO kablam! --> src/parser.rs:38:5 Oct 21 19:36:57.313 INFO kablam! | Oct 21 19:36:57.313 INFO kablam! 38 | pub fn one(t: char) -> Parser<'a, char> { Oct 21 19:36:57.313 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 21 19:36:57.314 INFO kablam! Oct 21 19:36:57.314 INFO kablam! warning: method is never used: `combine` Oct 21 19:36:57.314 INFO kablam! --> src/parser.rs:62:5 Oct 21 19:36:57.314 INFO kablam! | Oct 21 19:36:57.314 INFO kablam! 62 | / pub fn combine<'b, U>(p1: Parser<'b, U>, p2: Parser<'b, U>) -> Parser<'b, U> Oct 21 19:36:57.314 INFO kablam! 63 | | where U: Copy + 'b { Oct 21 19:36:57.314 INFO kablam! 64 | | Parser{ Oct 21 19:36:57.314 INFO kablam! 65 | | f: Box::from(move |input: &String| { Oct 21 19:36:57.314 INFO kablam! ... | Oct 21 19:36:57.314 INFO kablam! 71 | | } Oct 21 19:36:57.314 INFO kablam! 72 | | } Oct 21 19:36:57.314 INFO kablam! | |_____^ Oct 21 19:36:57.314 INFO kablam! Oct 21 19:36:57.314 INFO kablam! warning: method is never used: `option` Oct 21 19:36:57.314 INFO kablam! --> src/parser.rs:75:5 Oct 21 19:36:57.314 INFO kablam! | Oct 21 19:36:57.314 INFO kablam! 75 | / pub fn option<'b, U>(p1: Parser<'b, U>, p2: Parser<'b, U>) -> Parser<'b, U> Oct 21 19:36:57.314 INFO kablam! 76 | | where U: Copy + 'b { Oct 21 19:36:57.314 INFO kablam! 77 | | Parser{ Oct 21 19:36:57.314 INFO kablam! 78 | | f: Box::from(move |input: &String| { Oct 21 19:36:57.314 INFO kablam! ... | Oct 21 19:36:57.314 INFO kablam! 86 | | } Oct 21 19:36:57.314 INFO kablam! 87 | | } Oct 21 19:36:57.314 INFO kablam! | |_____^ Oct 21 19:36:57.314 INFO kablam! Oct 21 19:36:57.315 INFO kablam! warning: method is never used: `bind` Oct 21 19:36:57.315 INFO kablam! --> src/parser.rs:90:5 Oct 21 19:36:57.315 INFO kablam! | Oct 21 19:36:57.315 INFO kablam! 90 | / pub fn bind<'b, U, V>(p1: Parser<'b, U>, p2: Box Parser<'b, V>>) -> Parser<'b, V> Oct 21 19:36:57.315 INFO kablam! 91 | | where U: Copy + 'b, V: 'b { Oct 21 19:36:57.315 INFO kablam! 92 | | Parser{ Oct 21 19:36:57.315 INFO kablam! 93 | | f: Box::from(move |input: &String| { Oct 21 19:36:57.315 INFO kablam! ... | Oct 21 19:36:57.315 INFO kablam! 100 | | } Oct 21 19:36:57.315 INFO kablam! 101 | | } Oct 21 19:36:57.315 INFO kablam! | |_____^ Oct 21 19:36:57.315 INFO kablam! Oct 21 19:36:57.340 INFO kablam! warning: variable does not need to be mutable Oct 21 19:36:57.340 INFO kablam! --> src/parser.rs:153:21 Oct 21 19:36:57.340 INFO kablam! | Oct 21 19:36:57.340 INFO kablam! 153 | let mut s = a.to_string(); Oct 21 19:36:57.340 INFO kablam! | ----^ Oct 21 19:36:57.340 INFO kablam! | | Oct 21 19:36:57.340 INFO kablam! | help: remove this `mut` Oct 21 19:36:57.340 INFO kablam! | Oct 21 19:36:57.341 INFO kablam! = note: #[warn(unused_mut)] on by default Oct 21 19:36:57.341 INFO kablam! Oct 21 19:36:57.341 INFO kablam! warning: variable does not need to be mutable Oct 21 19:36:57.341 INFO kablam! --> src/parser.rs:153:21 Oct 21 19:36:57.341 INFO kablam! | Oct 21 19:36:57.341 INFO kablam! 153 | let mut s = a.to_string(); Oct 21 19:36:57.341 INFO kablam! | ----^ Oct 21 19:36:57.341 INFO kablam! | | Oct 21 19:36:57.341 INFO kablam! | help: remove this `mut` Oct 21 19:36:57.341 INFO kablam! Oct 21 19:36:57.381 INFO kablam! Finished dev [unoptimized + debuginfo] target(s) in 0.92s Oct 21 19:36:57.385 INFO kablam! su: No module specific data is present Oct 21 19:36:58.049 INFO running `"docker" "rm" "-f" "50a14156ed2c1577d75211e1dca8672ac42813d7fcfc91b768b98d34c454c1ae"` Oct 21 19:36:58.440 INFO blam! 50a14156ed2c1577d75211e1dca8672ac42813d7fcfc91b768b98d34c454c1ae