Oct 27 12:49:12.322 INFO checking AlisCode/AdventOfCode2017 against master#155510e377ae2a8d8ee0dad1a5f809c9062a5526 for pr-55192-2 Oct 27 12:49:12.323 INFO running `"docker" "create" "-v" "/mnt/big/crater/./work/local/target-dirs/pr-55192-2/worker-5/master#155510e377ae2a8d8ee0dad1a5f809c9062a5526:/target:rw,Z" "-v" "/mnt/big/crater/./work/local/test-source/worker-5/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 12:49:12.791 INFO blam! 294abc0c7583c400c5ad547ce5f57e480687587dd81adf4703e33afae776a360 Oct 27 12:49:12.793 INFO running `"docker" "start" "-a" "294abc0c7583c400c5ad547ce5f57e480687587dd81adf4703e33afae776a360"` Oct 27 12:49:15.183 INFO kablam! usermod: no changes Oct 27 12:49:15.399 INFO kablam! Checking petgraph v0.4.10 Oct 27 12:49:15.399 INFO kablam! Checking day16_parser v1.0.0 (/source/day16_parser) Oct 27 12:49:15.399 INFO kablam! Checking day9_parser v1.0.0 (/source/day9_parser) Oct 27 12:49:15.399 INFO kablam! Checking day7_parser v1.0.0 (/source/day7_parser) Oct 27 12:49:15.399 INFO kablam! Checking day23_parser v1.0.0 (/source/day23_parser) Oct 27 12:49:15.399 INFO kablam! Checking day12_parser v1.0.0 (/source/day12_parser) Oct 27 12:49:15.399 INFO kablam! Checking day8_parser v1.0.0 (/source/day8_parser) Oct 27 12:49:15.403 INFO kablam! Checking day18_parser v1.0.0 (/source/day18_parser) Oct 27 12:49:19.835 INFO kablam! Checking day20_parser v1.0.0 (/source/day20_parser) Oct 27 12:49:20.487 INFO kablam! Checking day25_parser v1.0.0 (/source/day25_parser) Oct 27 12:49:20.751 INFO kablam! warning: variable does not need to be mutable Oct 27 12:49:20.752 INFO kablam! --> day7_parser/src/lib.rs:86:13 Oct 27 12:49:20.752 INFO kablam! | Oct 27 12:49:20.753 INFO kablam! 86 | let mut groups = self.get_children_process(list).into_iter().group_by(|a| a.get_global_weight(list)); Oct 27 12:49:20.753 INFO kablam! | ----^^^^^^ Oct 27 12:49:20.754 INFO kablam! | | Oct 27 12:49:20.754 INFO kablam! | help: remove this `mut` Oct 27 12:49:20.755 INFO kablam! | Oct 27 12:49:20.755 INFO kablam! = note: #[warn(unused_mut)] on by default Oct 27 12:49:20.756 INFO kablam! Oct 27 12:49:20.756 INFO kablam! warning: variable does not need to be mutable Oct 27 12:49:20.757 INFO kablam! --> day7_parser/src/lib.rs:89:13 Oct 27 12:49:20.757 INFO kablam! | Oct 27 12:49:20.758 INFO kablam! 89 | let mut groups = self.get_children_process(list).into_iter().group_by(|a| a.get_global_weight(list)); Oct 27 12:49:20.758 INFO kablam! | ----^^^^^^ Oct 27 12:49:20.759 INFO kablam! | | Oct 27 12:49:20.759 INFO kablam! | help: remove this `mut` Oct 27 12:49:20.760 INFO kablam! Oct 27 12:49:26.989 INFO kablam! error[E0034]: multiple applicable items in scope Oct 27 12:49:26.990 INFO kablam! --> /cargo-home/registry/src/github.com-1ecc6299db9ec823/petgraph-0.4.10/src/graph_impl/stable_graph/mod.rs:1173:19 Oct 27 12:49:26.991 INFO kablam! | Oct 27 12:49:26.991 INFO kablam! 1173 | self.iter.find_map(|(i, node)| { Oct 27 12:49:26.992 INFO kablam! | ^^^^^^^^ multiple `find_map` found Oct 27 12:49:26.993 INFO kablam! | Oct 27 12:49:26.993 INFO kablam! note: candidate #1 is defined in an impl of the trait `iter_utils::IterUtilsExt` for the type `_` Oct 27 12:49:26.994 INFO kablam! --> /cargo-home/registry/src/github.com-1ecc6299db9ec823/petgraph-0.4.10/src/iter_utils.rs:5:5 Oct 27 12:49:26.995 INFO kablam! | Oct 27 12:49:26.999 INFO kablam! 5 | / fn find_map(&mut self, mut f: F) -> Option Oct 27 12:49:26.999 INFO kablam! 6 | | where F: FnMut(Self::Item) -> Option Oct 27 12:49:27.000 INFO kablam! 7 | | { Oct 27 12:49:27.000 INFO kablam! 8 | | while let Some(elt) = self.next() { Oct 27 12:49:27.000 INFO kablam! ... | Oct 27 12:49:27.000 INFO kablam! 13 | | None Oct 27 12:49:27.001 INFO kablam! 14 | | } Oct 27 12:49:27.001 INFO kablam! | |_____^ Oct 27 12:49:27.001 INFO kablam! = note: candidate #2 is defined in an impl of the trait `std::iter::Iterator` for the type `std::iter::Enumerate<_>` Oct 27 12:49:27.001 INFO kablam! Oct 27 12:49:27.018 INFO kablam! error[E0034]: multiple applicable items in scope Oct 27 12:49:27.018 INFO kablam! --> /cargo-home/registry/src/github.com-1ecc6299db9ec823/petgraph-0.4.10/src/graph_impl/stable_graph/mod.rs:1365:19 Oct 27 12:49:27.019 INFO kablam! | Oct 27 12:49:27.020 INFO kablam! 1365 | self.iter.find_map(|(i, edge)| Oct 27 12:49:27.020 INFO kablam! | ^^^^^^^^ multiple `find_map` found Oct 27 12:49:27.021 INFO kablam! | Oct 27 12:49:27.021 INFO kablam! note: candidate #1 is defined in an impl of the trait `iter_utils::IterUtilsExt` for the type `_` Oct 27 12:49:27.022 INFO kablam! --> /cargo-home/registry/src/github.com-1ecc6299db9ec823/petgraph-0.4.10/src/iter_utils.rs:5:5 Oct 27 12:49:27.023 INFO kablam! | Oct 27 12:49:27.023 INFO kablam! 5 | / fn find_map(&mut self, mut f: F) -> Option Oct 27 12:49:27.024 INFO kablam! 6 | | where F: FnMut(Self::Item) -> Option Oct 27 12:49:27.024 INFO kablam! 7 | | { Oct 27 12:49:27.024 INFO kablam! 8 | | while let Some(elt) = self.next() { Oct 27 12:49:27.025 INFO kablam! ... | Oct 27 12:49:27.025 INFO kablam! 13 | | None Oct 27 12:49:27.025 INFO kablam! 14 | | } Oct 27 12:49:27.025 INFO kablam! | |_____^ Oct 27 12:49:27.027 INFO kablam! = note: candidate #2 is defined in an impl of the trait `std::iter::Iterator` for the type `std::iter::Enumerate<_>` Oct 27 12:49:27.027 INFO kablam! Oct 27 12:49:27.036 INFO kablam! error[E0034]: multiple applicable items in scope Oct 27 12:49:27.036 INFO kablam! --> /cargo-home/registry/src/github.com-1ecc6299db9ec823/petgraph-0.4.10/src/graph_impl/stable_graph/mod.rs:1529:19 Oct 27 12:49:27.037 INFO kablam! | Oct 27 12:49:27.038 INFO kablam! 1529 | self.iter.find_map(|(i, node)| { Oct 27 12:49:27.038 INFO kablam! | ^^^^^^^^ multiple `find_map` found Oct 27 12:49:27.039 INFO kablam! | Oct 27 12:49:27.040 INFO kablam! note: candidate #1 is defined in an impl of the trait `iter_utils::IterUtilsExt` for the type `_` Oct 27 12:49:27.040 INFO kablam! --> /cargo-home/registry/src/github.com-1ecc6299db9ec823/petgraph-0.4.10/src/iter_utils.rs:5:5 Oct 27 12:49:27.041 INFO kablam! | Oct 27 12:49:27.042 INFO kablam! 5 | / fn find_map(&mut self, mut f: F) -> Option Oct 27 12:49:27.042 INFO kablam! 6 | | where F: FnMut(Self::Item) -> Option Oct 27 12:49:27.043 INFO kablam! 7 | | { Oct 27 12:49:27.043 INFO kablam! 8 | | while let Some(elt) = self.next() { Oct 27 12:49:27.043 INFO kablam! ... | Oct 27 12:49:27.043 INFO kablam! 13 | | None Oct 27 12:49:27.044 INFO kablam! 14 | | } Oct 27 12:49:27.044 INFO kablam! | |_____^ Oct 27 12:49:27.047 INFO kablam! = note: candidate #2 is defined in an impl of the trait `std::iter::Iterator` for the type `std::iter::Enumerate<_>` Oct 27 12:49:27.047 INFO kablam! Oct 27 12:49:27.049 INFO kablam! error[E0034]: multiple applicable items in scope Oct 27 12:49:27.050 INFO kablam! --> /cargo-home/registry/src/github.com-1ecc6299db9ec823/petgraph-0.4.10/src/graph_impl/stable_graph/mod.rs:1575:19 Oct 27 12:49:27.051 INFO kablam! | Oct 27 12:49:27.051 INFO kablam! 1575 | self.iter.find_map(|(i, node)| { Oct 27 12:49:27.052 INFO kablam! | ^^^^^^^^ multiple `find_map` found Oct 27 12:49:27.052 INFO kablam! | Oct 27 12:49:27.053 INFO kablam! note: candidate #1 is defined in an impl of the trait `iter_utils::IterUtilsExt` for the type `_` Oct 27 12:49:27.054 INFO kablam! --> /cargo-home/registry/src/github.com-1ecc6299db9ec823/petgraph-0.4.10/src/iter_utils.rs:5:5 Oct 27 12:49:27.054 INFO kablam! | Oct 27 12:49:27.055 INFO kablam! 5 | / fn find_map(&mut self, mut f: F) -> Option Oct 27 12:49:27.055 INFO kablam! 6 | | where F: FnMut(Self::Item) -> Option Oct 27 12:49:27.056 INFO kablam! 7 | | { Oct 27 12:49:27.056 INFO kablam! 8 | | while let Some(elt) = self.next() { Oct 27 12:49:27.056 INFO kablam! ... | Oct 27 12:49:27.057 INFO kablam! 13 | | None Oct 27 12:49:27.057 INFO kablam! 14 | | } Oct 27 12:49:27.057 INFO kablam! | |_____^ Oct 27 12:49:27.059 INFO kablam! = note: candidate #2 is defined in an impl of the trait `std::iter::Iterator` for the type `std::iter::Enumerate<_>` Oct 27 12:49:27.059 INFO kablam! Oct 27 12:49:27.923 INFO kablam! warning: variable does not need to be mutable Oct 27 12:49:27.923 INFO kablam! --> day7_parser/src/lib.rs:86:13 Oct 27 12:49:27.923 INFO kablam! | Oct 27 12:49:27.923 INFO kablam! 86 | let mut groups = self.get_children_process(list).into_iter().group_by(|a| a.get_global_weight(list)); Oct 27 12:49:27.923 INFO kablam! | ----^^^^^^ Oct 27 12:49:27.923 INFO kablam! | | Oct 27 12:49:27.923 INFO kablam! | help: remove this `mut` Oct 27 12:49:27.923 INFO kablam! | Oct 27 12:49:27.923 INFO kablam! = note: #[warn(unused_mut)] on by default Oct 27 12:49:27.923 INFO kablam! Oct 27 12:49:27.923 INFO kablam! warning: variable does not need to be mutable Oct 27 12:49:27.923 INFO kablam! --> day7_parser/src/lib.rs:89:13 Oct 27 12:49:27.923 INFO kablam! | Oct 27 12:49:27.923 INFO kablam! 89 | let mut groups = self.get_children_process(list).into_iter().group_by(|a| a.get_global_weight(list)); Oct 27 12:49:27.923 INFO kablam! | ----^^^^^^ Oct 27 12:49:27.923 INFO kablam! | | Oct 27 12:49:27.923 INFO kablam! | help: remove this `mut` Oct 27 12:49:27.923 INFO kablam! Oct 27 12:49:28.219 INFO kablam! error: aborting due to 4 previous errors Oct 27 12:49:28.219 INFO kablam! Oct 27 12:49:28.219 INFO kablam! For more information about this error, try `rustc --explain E0034`. Oct 27 12:49:28.225 INFO kablam! error: Could not compile `petgraph`. Oct 27 12:49:28.225 INFO kablam! warning: build failed, waiting for other jobs to finish... Oct 27 12:49:29.665 INFO kablam! error: build failed Oct 27 12:49:29.665 INFO kablam! su: No module specific data is present Oct 27 12:49:30.393 INFO running `"docker" "rm" "-f" "294abc0c7583c400c5ad547ce5f57e480687587dd81adf4703e33afae776a360"` Oct 27 12:49:30.691 INFO blam! 294abc0c7583c400c5ad547ce5f57e480687587dd81adf4703e33afae776a360