Oct 13 01:43:07.411 INFO testing ryota-sakamoto/rust_study against try#40d4795669493f1965de7c44029c69552134fe1f for rustdoc-test-static-cling-1 Oct 13 01:43:07.412 INFO running `"docker" "create" "-v" "/mnt/big/crater/./work/local/target-dirs/rustdoc-test-static-cling-1/worker-1/try#40d4795669493f1965de7c44029c69552134fe1f:/target:rw,Z" "-v" "/mnt/big/crater/./work/local/test-source/worker-1/rustdoc-test-static-cling-1/try#40d4795669493f1965de7c44029c69552134fe1f:/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 +40d4795669493f1965de7c44029c69552134fe1f-alt build --frozen" "-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 13 01:43:07.893 INFO blam! ae459492f77dad55867beae8f187fd467c2480738de82b609ea2d9c0857cc011 Oct 13 01:43:07.903 INFO running `"docker" "start" "-a" "ae459492f77dad55867beae8f187fd467c2480738de82b609ea2d9c0857cc011"` Oct 13 01:43:09.232 INFO kablam! usermod: no changes Oct 13 01:43:09.299 INFO kablam! Compiling rust_test v0.1.0 (/source) Oct 13 01:43:09.571 INFO kablam! warning: unused macro definition Oct 13 01:43:09.571 INFO kablam! --> src/list.rs:53:1 Oct 13 01:43:09.571 INFO kablam! | Oct 13 01:43:09.572 INFO kablam! 53 | / macro_rules! list { Oct 13 01:43:09.572 INFO kablam! 54 | | ($($n: expr),*) => { Oct 13 01:43:09.572 INFO kablam! 55 | | { Oct 13 01:43:09.572 INFO kablam! 56 | | let mut list = List::empty_list(); Oct 13 01:43:09.572 INFO kablam! ... | Oct 13 01:43:09.572 INFO kablam! 74 | | }; Oct 13 01:43:09.572 INFO kablam! 75 | | } Oct 13 01:43:09.572 INFO kablam! | |_^ Oct 13 01:43:09.572 INFO kablam! | Oct 13 01:43:09.572 INFO kablam! = note: #[warn(unused_macros)] on by default Oct 13 01:43:09.572 INFO kablam! Oct 13 01:43:09.621 INFO kablam! warning: function is never used: `call` Oct 13 01:43:09.622 INFO kablam! --> src/module.rs:1:1 Oct 13 01:43:09.622 INFO kablam! | Oct 13 01:43:09.622 INFO kablam! 1 | pub fn call() { Oct 13 01:43:09.623 INFO kablam! | ^^^^^^^^^^^^^ Oct 13 01:43:09.623 INFO kablam! | Oct 13 01:43:09.623 INFO kablam! = note: #[warn(dead_code)] on by default Oct 13 01:43:09.623 INFO kablam! Oct 13 01:43:09.624 INFO kablam! warning: enum is never used: `List` Oct 13 01:43:09.624 INFO kablam! --> src/list.rs:4:1 Oct 13 01:43:09.624 INFO kablam! | Oct 13 01:43:09.624 INFO kablam! 4 | pub enum List { Oct 13 01:43:09.625 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^ Oct 13 01:43:09.625 INFO kablam! Oct 13 01:43:09.625 INFO kablam! warning: method is never used: `empty_list` Oct 13 01:43:09.625 INFO kablam! --> src/list.rs:13:5 Oct 13 01:43:09.626 INFO kablam! | Oct 13 01:43:09.626 INFO kablam! 13 | pub fn empty_list() -> List { Oct 13 01:43:09.626 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 13 01:43:09.626 INFO kablam! Oct 13 01:43:09.627 INFO kablam! warning: method is never used: `prepend` Oct 13 01:43:09.627 INFO kablam! --> src/list.rs:17:5 Oct 13 01:43:09.627 INFO kablam! | Oct 13 01:43:09.628 INFO kablam! 17 | pub fn prepend(self, t: T) -> Self { Oct 13 01:43:09.628 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 13 01:43:09.628 INFO kablam! Oct 13 01:43:09.628 INFO kablam! warning: method is never used: `head` Oct 13 01:43:09.629 INFO kablam! --> src/list.rs:24:5 Oct 13 01:43:09.629 INFO kablam! | Oct 13 01:43:09.629 INFO kablam! 24 | pub fn head(&self) -> &T { Oct 13 01:43:09.629 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^ Oct 13 01:43:09.630 INFO kablam! Oct 13 01:43:09.630 INFO kablam! warning: method is never used: `last` Oct 13 01:43:09.630 INFO kablam! --> src/list.rs:31:5 Oct 13 01:43:09.631 INFO kablam! | Oct 13 01:43:09.631 INFO kablam! 31 | pub fn last(&self) -> &T { Oct 13 01:43:09.631 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^ Oct 13 01:43:09.631 INFO kablam! Oct 13 01:43:09.632 INFO kablam! warning: method is never used: `is_empty` Oct 13 01:43:09.632 INFO kablam! --> src/list.rs:44:5 Oct 13 01:43:09.632 INFO kablam! | Oct 13 01:43:09.633 INFO kablam! 44 | fn is_empty(&self) -> bool { Oct 13 01:43:09.633 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 13 01:43:09.633 INFO kablam! Oct 13 01:43:09.633 INFO kablam! warning: function is never used: `tailrec` Oct 13 01:43:09.634 INFO kablam! --> src/list.rs:87:1 Oct 13 01:43:09.634 INFO kablam! | Oct 13 01:43:09.634 INFO kablam! 87 | fn tailrec(list: &List) { Oct 13 01:43:09.634 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 13 01:43:09.640 INFO kablam! Oct 13 01:43:09.641 INFO kablam! warning: the `head:` in this pattern is redundant Oct 13 01:43:09.641 INFO kablam! --> src/list.rs:27:26 Oct 13 01:43:09.641 INFO kablam! | Oct 13 01:43:09.641 INFO kablam! 27 | &List::List {head: ref head, tail: _} => head, Oct 13 01:43:09.642 INFO kablam! | -----^^^^^^^^^ Oct 13 01:43:09.642 INFO kablam! | | Oct 13 01:43:09.642 INFO kablam! | help: remove this Oct 13 01:43:09.642 INFO kablam! | Oct 13 01:43:09.643 INFO kablam! = note: #[warn(non_shorthand_field_patterns)] on by default Oct 13 01:43:09.643 INFO kablam! Oct 13 01:43:09.643 INFO kablam! warning: the `head:` in this pattern is redundant Oct 13 01:43:09.643 INFO kablam! --> src/list.rs:34:26 Oct 13 01:43:09.644 INFO kablam! | Oct 13 01:43:09.644 INFO kablam! 34 | &List::List {head: ref head, tail: ref tail} => { Oct 13 01:43:09.644 INFO kablam! | -----^^^^^^^^^ Oct 13 01:43:09.644 INFO kablam! | | Oct 13 01:43:09.645 INFO kablam! | help: remove this Oct 13 01:43:09.645 INFO kablam! Oct 13 01:43:09.645 INFO kablam! warning: the `tail:` in this pattern is redundant Oct 13 01:43:09.645 INFO kablam! --> src/list.rs:34:42 Oct 13 01:43:09.646 INFO kablam! | Oct 13 01:43:09.646 INFO kablam! 34 | &List::List {head: ref head, tail: ref tail} => { Oct 13 01:43:09.646 INFO kablam! | -----^^^^^^^^^ Oct 13 01:43:09.647 INFO kablam! | | Oct 13 01:43:09.647 INFO kablam! | help: remove this Oct 13 01:43:09.647 INFO kablam! Oct 13 01:43:09.647 INFO kablam! warning: the `head:` in this pattern is redundant Oct 13 01:43:09.648 INFO kablam! --> src/list.rs:90:22 Oct 13 01:43:09.648 INFO kablam! | Oct 13 01:43:09.648 INFO kablam! 90 | &List::List {head: ref head, tail: ref tail} => { Oct 13 01:43:09.648 INFO kablam! | -----^^^^^^^^^ Oct 13 01:43:09.649 INFO kablam! | | Oct 13 01:43:09.649 INFO kablam! | help: remove this Oct 13 01:43:09.649 INFO kablam! Oct 13 01:43:09.649 INFO kablam! warning: the `tail:` in this pattern is redundant Oct 13 01:43:09.650 INFO kablam! --> src/list.rs:90:38 Oct 13 01:43:09.650 INFO kablam! | Oct 13 01:43:09.650 INFO kablam! 90 | &List::List {head: ref head, tail: ref tail} => { Oct 13 01:43:09.655 INFO kablam! | -----^^^^^^^^^ Oct 13 01:43:09.655 INFO kablam! | | Oct 13 01:43:09.655 INFO kablam! | help: remove this Oct 13 01:43:09.656 INFO kablam! Oct 13 01:43:09.971 INFO kablam! warning: unused macro definition Oct 13 01:43:09.971 INFO kablam! --> src/list.rs:53:1 Oct 13 01:43:09.971 INFO kablam! | Oct 13 01:43:09.971 INFO kablam! 53 | / macro_rules! list { Oct 13 01:43:09.971 INFO kablam! 54 | | ($($n: expr),*) => { Oct 13 01:43:09.971 INFO kablam! 55 | | { Oct 13 01:43:09.971 INFO kablam! 56 | | let mut list = List::empty_list(); Oct 13 01:43:09.971 INFO kablam! ... | Oct 13 01:43:09.971 INFO kablam! 74 | | }; Oct 13 01:43:09.971 INFO kablam! 75 | | } Oct 13 01:43:09.971 INFO kablam! | |_^ Oct 13 01:43:09.971 INFO kablam! | Oct 13 01:43:09.971 INFO kablam! = note: #[warn(unused_macros)] on by default Oct 13 01:43:09.971 INFO kablam! Oct 13 01:43:10.093 INFO kablam! warning: method is never used: `head` Oct 13 01:43:10.093 INFO kablam! --> src/list.rs:24:5 Oct 13 01:43:10.094 INFO kablam! | Oct 13 01:43:10.094 INFO kablam! 24 | pub fn head(&self) -> &T { Oct 13 01:43:10.094 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^ Oct 13 01:43:10.095 INFO kablam! | Oct 13 01:43:10.095 INFO kablam! = note: #[warn(dead_code)] on by default Oct 13 01:43:10.095 INFO kablam! Oct 13 01:43:10.095 INFO kablam! warning: method is never used: `last` Oct 13 01:43:10.096 INFO kablam! --> src/list.rs:31:5 Oct 13 01:43:10.096 INFO kablam! | Oct 13 01:43:10.096 INFO kablam! 31 | pub fn last(&self) -> &T { Oct 13 01:43:10.097 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^ Oct 13 01:43:10.097 INFO kablam! Oct 13 01:43:10.097 INFO kablam! warning: method is never used: `is_empty` Oct 13 01:43:10.097 INFO kablam! --> src/list.rs:44:5 Oct 13 01:43:10.098 INFO kablam! | Oct 13 01:43:10.098 INFO kablam! 44 | fn is_empty(&self) -> bool { Oct 13 01:43:10.098 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 13 01:43:10.098 INFO kablam! Oct 13 01:43:10.099 INFO kablam! warning: function is never used: `tailrec` Oct 13 01:43:10.099 INFO kablam! --> src/list.rs:87:1 Oct 13 01:43:10.099 INFO kablam! | Oct 13 01:43:10.100 INFO kablam! 87 | fn tailrec(list: &List) { Oct 13 01:43:10.100 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 13 01:43:10.100 INFO kablam! Oct 13 01:43:10.100 INFO kablam! warning: the `head:` in this pattern is redundant Oct 13 01:43:10.101 INFO kablam! --> src/list.rs:27:26 Oct 13 01:43:10.101 INFO kablam! | Oct 13 01:43:10.101 INFO kablam! 27 | &List::List {head: ref head, tail: _} => head, Oct 13 01:43:10.101 INFO kablam! | -----^^^^^^^^^ Oct 13 01:43:10.102 INFO kablam! | | Oct 13 01:43:10.102 INFO kablam! | help: remove this Oct 13 01:43:10.102 INFO kablam! | Oct 13 01:43:10.102 INFO kablam! = note: #[warn(non_shorthand_field_patterns)] on by default Oct 13 01:43:10.103 INFO kablam! Oct 13 01:43:10.103 INFO kablam! warning: the `head:` in this pattern is redundant Oct 13 01:43:10.103 INFO kablam! --> src/list.rs:34:26 Oct 13 01:43:10.103 INFO kablam! | Oct 13 01:43:10.104 INFO kablam! 34 | &List::List {head: ref head, tail: ref tail} => { Oct 13 01:43:10.104 INFO kablam! | -----^^^^^^^^^ Oct 13 01:43:10.104 INFO kablam! | | Oct 13 01:43:10.104 INFO kablam! | help: remove this Oct 13 01:43:10.105 INFO kablam! Oct 13 01:43:10.105 INFO kablam! warning: the `tail:` in this pattern is redundant Oct 13 01:43:10.105 INFO kablam! --> src/list.rs:34:42 Oct 13 01:43:10.105 INFO kablam! | Oct 13 01:43:10.106 INFO kablam! 34 | &List::List {head: ref head, tail: ref tail} => { Oct 13 01:43:10.106 INFO kablam! | -----^^^^^^^^^ Oct 13 01:43:10.106 INFO kablam! | | Oct 13 01:43:10.110 INFO kablam! | help: remove this Oct 13 01:43:10.111 INFO kablam! Oct 13 01:43:10.111 INFO kablam! warning: the `head:` in this pattern is redundant Oct 13 01:43:10.111 INFO kablam! --> src/list.rs:90:22 Oct 13 01:43:10.112 INFO kablam! | Oct 13 01:43:10.112 INFO kablam! 90 | &List::List {head: ref head, tail: ref tail} => { Oct 13 01:43:10.112 INFO kablam! | -----^^^^^^^^^ Oct 13 01:43:10.112 INFO kablam! | | Oct 13 01:43:10.113 INFO kablam! | help: remove this Oct 13 01:43:10.113 INFO kablam! Oct 13 01:43:10.113 INFO kablam! warning: the `tail:` in this pattern is redundant Oct 13 01:43:10.113 INFO kablam! --> src/list.rs:90:38 Oct 13 01:43:10.114 INFO kablam! | Oct 13 01:43:10.114 INFO kablam! 90 | &List::List {head: ref head, tail: ref tail} => { Oct 13 01:43:10.114 INFO kablam! | -----^^^^^^^^^ Oct 13 01:43:10.115 INFO kablam! | | Oct 13 01:43:10.115 INFO kablam! | help: remove this Oct 13 01:43:10.115 INFO kablam! Oct 13 01:43:10.875 INFO kablam! Finished dev [unoptimized + debuginfo] target(s) in 1.61s Oct 13 01:43:10.883 INFO kablam! su: No module specific data is present Oct 13 01:43:11.505 INFO running `"docker" "rm" "-f" "ae459492f77dad55867beae8f187fd467c2480738de82b609ea2d9c0857cc011"` Oct 13 01:43:11.807 INFO blam! ae459492f77dad55867beae8f187fd467c2480738de82b609ea2d9c0857cc011 Oct 13 01:43:11.819 INFO running `"docker" "create" "-v" "/mnt/big/crater/./work/local/target-dirs/rustdoc-test-static-cling-1/worker-1/try#40d4795669493f1965de7c44029c69552134fe1f:/target:rw,Z" "-v" "/mnt/big/crater/./work/local/test-source/worker-1/rustdoc-test-static-cling-1/try#40d4795669493f1965de7c44029c69552134fe1f:/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 +40d4795669493f1965de7c44029c69552134fe1f-alt test --frozen --no-run" "-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 13 01:43:12.420 INFO blam! 7c08e4a329ad95dc34ee8093193ca7c8fd00c1a99211ce1fa4c1687f8629b29d Oct 13 01:43:12.421 INFO running `"docker" "start" "-a" "7c08e4a329ad95dc34ee8093193ca7c8fd00c1a99211ce1fa4c1687f8629b29d"` Oct 13 01:43:13.651 INFO kablam! usermod: no changes Oct 13 01:43:13.755 INFO kablam! Compiling rust_test v0.1.0 (/source) Oct 13 01:43:14.139 INFO kablam! warning: unused macro definition Oct 13 01:43:14.139 INFO kablam! --> src/list.rs:53:1 Oct 13 01:43:14.139 INFO kablam! | Oct 13 01:43:14.139 INFO kablam! 53 | / macro_rules! list { Oct 13 01:43:14.139 INFO kablam! 54 | | ($($n: expr),*) => { Oct 13 01:43:14.139 INFO kablam! 55 | | { Oct 13 01:43:14.139 INFO kablam! 56 | | let mut list = List::empty_list(); Oct 13 01:43:14.139 INFO kablam! ... | Oct 13 01:43:14.139 INFO kablam! 74 | | }; Oct 13 01:43:14.139 INFO kablam! 75 | | } Oct 13 01:43:14.139 INFO kablam! | |_^ Oct 13 01:43:14.139 INFO kablam! | Oct 13 01:43:14.139 INFO kablam! = note: #[warn(unused_macros)] on by default Oct 13 01:43:14.139 INFO kablam! Oct 13 01:43:14.159 INFO kablam! warning: unused macro definition Oct 13 01:43:14.159 INFO kablam! --> src/list.rs:53:1 Oct 13 01:43:14.159 INFO kablam! | Oct 13 01:43:14.159 INFO kablam! 53 | / macro_rules! list { Oct 13 01:43:14.159 INFO kablam! 54 | | ($($n: expr),*) => { Oct 13 01:43:14.159 INFO kablam! 55 | | { Oct 13 01:43:14.159 INFO kablam! 56 | | let mut list = List::empty_list(); Oct 13 01:43:14.159 INFO kablam! ... | Oct 13 01:43:14.159 INFO kablam! 74 | | }; Oct 13 01:43:14.159 INFO kablam! 75 | | } Oct 13 01:43:14.159 INFO kablam! | |_^ Oct 13 01:43:14.159 INFO kablam! | Oct 13 01:43:14.159 INFO kablam! = note: #[warn(unused_macros)] on by default Oct 13 01:43:14.159 INFO kablam! Oct 13 01:43:14.227 INFO kablam! warning: function is never used: `call` Oct 13 01:43:14.227 INFO kablam! --> src/module.rs:1:1 Oct 13 01:43:14.227 INFO kablam! | Oct 13 01:43:14.227 INFO kablam! 1 | pub fn call() { Oct 13 01:43:14.227 INFO kablam! | ^^^^^^^^^^^^^ Oct 13 01:43:14.228 INFO kablam! | Oct 13 01:43:14.228 INFO kablam! = note: #[warn(dead_code)] on by default Oct 13 01:43:14.228 INFO kablam! Oct 13 01:43:14.228 INFO kablam! warning: enum is never used: `List` Oct 13 01:43:14.228 INFO kablam! --> src/list.rs:4:1 Oct 13 01:43:14.228 INFO kablam! | Oct 13 01:43:14.228 INFO kablam! 4 | pub enum List { Oct 13 01:43:14.228 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^ Oct 13 01:43:14.228 INFO kablam! Oct 13 01:43:14.228 INFO kablam! warning: method is never used: `empty_list` Oct 13 01:43:14.228 INFO kablam! --> src/list.rs:13:5 Oct 13 01:43:14.228 INFO kablam! | Oct 13 01:43:14.228 INFO kablam! 13 | pub fn empty_list() -> List { Oct 13 01:43:14.228 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 13 01:43:14.228 INFO kablam! Oct 13 01:43:14.228 INFO kablam! warning: method is never used: `prepend` Oct 13 01:43:14.229 INFO kablam! --> src/list.rs:17:5 Oct 13 01:43:14.229 INFO kablam! | Oct 13 01:43:14.229 INFO kablam! 17 | pub fn prepend(self, t: T) -> Self { Oct 13 01:43:14.229 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 13 01:43:14.229 INFO kablam! Oct 13 01:43:14.229 INFO kablam! warning: method is never used: `head` Oct 13 01:43:14.229 INFO kablam! --> src/list.rs:24:5 Oct 13 01:43:14.229 INFO kablam! | Oct 13 01:43:14.229 INFO kablam! 24 | pub fn head(&self) -> &T { Oct 13 01:43:14.229 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^ Oct 13 01:43:14.229 INFO kablam! Oct 13 01:43:14.231 INFO kablam! warning: method is never used: `last` Oct 13 01:43:14.231 INFO kablam! --> src/list.rs:31:5 Oct 13 01:43:14.232 INFO kablam! | Oct 13 01:43:14.232 INFO kablam! 31 | pub fn last(&self) -> &T { Oct 13 01:43:14.232 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^ Oct 13 01:43:14.232 INFO kablam! Oct 13 01:43:14.232 INFO kablam! warning: method is never used: `is_empty` Oct 13 01:43:14.232 INFO kablam! --> src/list.rs:44:5 Oct 13 01:43:14.232 INFO kablam! | Oct 13 01:43:14.232 INFO kablam! 44 | fn is_empty(&self) -> bool { Oct 13 01:43:14.232 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 13 01:43:14.232 INFO kablam! Oct 13 01:43:14.232 INFO kablam! warning: function is never used: `tailrec` Oct 13 01:43:14.232 INFO kablam! --> src/list.rs:87:1 Oct 13 01:43:14.232 INFO kablam! | Oct 13 01:43:14.232 INFO kablam! 87 | fn tailrec(list: &List) { Oct 13 01:43:14.232 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 13 01:43:14.232 INFO kablam! Oct 13 01:43:14.244 INFO kablam! warning: the `head:` in this pattern is redundant Oct 13 01:43:14.244 INFO kablam! --> src/list.rs:27:26 Oct 13 01:43:14.244 INFO kablam! | Oct 13 01:43:14.244 INFO kablam! 27 | &List::List {head: ref head, tail: _} => head, Oct 13 01:43:14.244 INFO kablam! | -----^^^^^^^^^ Oct 13 01:43:14.244 INFO kablam! | | Oct 13 01:43:14.244 INFO kablam! | help: remove this Oct 13 01:43:14.244 INFO kablam! | Oct 13 01:43:14.244 INFO kablam! = note: #[warn(non_shorthand_field_patterns)] on by default Oct 13 01:43:14.244 INFO kablam! Oct 13 01:43:14.244 INFO kablam! warning: the `head:` in this pattern is redundant Oct 13 01:43:14.244 INFO kablam! --> src/list.rs:34:26 Oct 13 01:43:14.244 INFO kablam! | Oct 13 01:43:14.244 INFO kablam! 34 | &List::List {head: ref head, tail: ref tail} => { Oct 13 01:43:14.244 INFO kablam! | -----^^^^^^^^^ Oct 13 01:43:14.244 INFO kablam! | | Oct 13 01:43:14.244 INFO kablam! | help: remove this Oct 13 01:43:14.244 INFO kablam! Oct 13 01:43:14.245 INFO kablam! warning: the `tail:` in this pattern is redundant Oct 13 01:43:14.245 INFO kablam! --> src/list.rs:34:42 Oct 13 01:43:14.245 INFO kablam! | Oct 13 01:43:14.245 INFO kablam! 34 | &List::List {head: ref head, tail: ref tail} => { Oct 13 01:43:14.245 INFO kablam! | -----^^^^^^^^^ Oct 13 01:43:14.245 INFO kablam! | | Oct 13 01:43:14.245 INFO kablam! | help: remove this Oct 13 01:43:14.245 INFO kablam! Oct 13 01:43:14.245 INFO kablam! warning: the `head:` in this pattern is redundant Oct 13 01:43:14.245 INFO kablam! --> src/list.rs:90:22 Oct 13 01:43:14.245 INFO kablam! | Oct 13 01:43:14.245 INFO kablam! 90 | &List::List {head: ref head, tail: ref tail} => { Oct 13 01:43:14.245 INFO kablam! | -----^^^^^^^^^ Oct 13 01:43:14.245 INFO kablam! | | Oct 13 01:43:14.245 INFO kablam! | help: remove this Oct 13 01:43:14.245 INFO kablam! Oct 13 01:43:14.245 INFO kablam! warning: the `tail:` in this pattern is redundant Oct 13 01:43:14.245 INFO kablam! --> src/list.rs:90:38 Oct 13 01:43:14.245 INFO kablam! | Oct 13 01:43:14.245 INFO kablam! 90 | &List::List {head: ref head, tail: ref tail} => { Oct 13 01:43:14.245 INFO kablam! | -----^^^^^^^^^ Oct 13 01:43:14.245 INFO kablam! | | Oct 13 01:43:14.245 INFO kablam! | help: remove this Oct 13 01:43:14.245 INFO kablam! Oct 13 01:43:14.407 INFO kablam! warning: method is never used: `head` Oct 13 01:43:14.407 INFO kablam! --> src/list.rs:24:5 Oct 13 01:43:14.407 INFO kablam! | Oct 13 01:43:14.407 INFO kablam! 24 | pub fn head(&self) -> &T { Oct 13 01:43:14.407 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^ Oct 13 01:43:14.407 INFO kablam! | Oct 13 01:43:14.407 INFO kablam! = note: #[warn(dead_code)] on by default Oct 13 01:43:14.407 INFO kablam! Oct 13 01:43:14.407 INFO kablam! warning: method is never used: `last` Oct 13 01:43:14.407 INFO kablam! --> src/list.rs:31:5 Oct 13 01:43:14.407 INFO kablam! | Oct 13 01:43:14.407 INFO kablam! 31 | pub fn last(&self) -> &T { Oct 13 01:43:14.407 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^ Oct 13 01:43:14.407 INFO kablam! Oct 13 01:43:14.407 INFO kablam! warning: method is never used: `is_empty` Oct 13 01:43:14.407 INFO kablam! --> src/list.rs:44:5 Oct 13 01:43:14.407 INFO kablam! | Oct 13 01:43:14.407 INFO kablam! 44 | fn is_empty(&self) -> bool { Oct 13 01:43:14.407 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 13 01:43:14.407 INFO kablam! Oct 13 01:43:14.407 INFO kablam! warning: function is never used: `tailrec` Oct 13 01:43:14.407 INFO kablam! --> src/list.rs:87:1 Oct 13 01:43:14.407 INFO kablam! | Oct 13 01:43:14.407 INFO kablam! 87 | fn tailrec(list: &List) { Oct 13 01:43:14.407 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 13 01:43:14.407 INFO kablam! Oct 13 01:43:14.423 INFO kablam! warning: the `head:` in this pattern is redundant Oct 13 01:43:14.423 INFO kablam! --> src/list.rs:27:26 Oct 13 01:43:14.423 INFO kablam! | Oct 13 01:43:14.423 INFO kablam! 27 | &List::List {head: ref head, tail: _} => head, Oct 13 01:43:14.423 INFO kablam! | -----^^^^^^^^^ Oct 13 01:43:14.423 INFO kablam! | | Oct 13 01:43:14.423 INFO kablam! | help: remove this Oct 13 01:43:14.423 INFO kablam! | Oct 13 01:43:14.423 INFO kablam! = note: #[warn(non_shorthand_field_patterns)] on by default Oct 13 01:43:14.423 INFO kablam! Oct 13 01:43:14.423 INFO kablam! warning: the `head:` in this pattern is redundant Oct 13 01:43:14.423 INFO kablam! --> src/list.rs:34:26 Oct 13 01:43:14.423 INFO kablam! | Oct 13 01:43:14.423 INFO kablam! 34 | &List::List {head: ref head, tail: ref tail} => { Oct 13 01:43:14.423 INFO kablam! | -----^^^^^^^^^ Oct 13 01:43:14.423 INFO kablam! | | Oct 13 01:43:14.423 INFO kablam! | help: remove this Oct 13 01:43:14.423 INFO kablam! Oct 13 01:43:14.423 INFO kablam! warning: the `tail:` in this pattern is redundant Oct 13 01:43:14.423 INFO kablam! --> src/list.rs:34:42 Oct 13 01:43:14.423 INFO kablam! | Oct 13 01:43:14.423 INFO kablam! 34 | &List::List {head: ref head, tail: ref tail} => { Oct 13 01:43:14.423 INFO kablam! | -----^^^^^^^^^ Oct 13 01:43:14.423 INFO kablam! | | Oct 13 01:43:14.423 INFO kablam! | help: remove this Oct 13 01:43:14.423 INFO kablam! Oct 13 01:43:14.423 INFO kablam! warning: the `head:` in this pattern is redundant Oct 13 01:43:14.423 INFO kablam! --> src/list.rs:90:22 Oct 13 01:43:14.423 INFO kablam! | Oct 13 01:43:14.423 INFO kablam! 90 | &List::List {head: ref head, tail: ref tail} => { Oct 13 01:43:14.423 INFO kablam! | -----^^^^^^^^^ Oct 13 01:43:14.423 INFO kablam! | | Oct 13 01:43:14.423 INFO kablam! | help: remove this Oct 13 01:43:14.423 INFO kablam! Oct 13 01:43:14.423 INFO kablam! warning: the `tail:` in this pattern is redundant Oct 13 01:43:14.423 INFO kablam! --> src/list.rs:90:38 Oct 13 01:43:14.423 INFO kablam! | Oct 13 01:43:14.423 INFO kablam! 90 | &List::List {head: ref head, tail: ref tail} => { Oct 13 01:43:14.423 INFO kablam! | -----^^^^^^^^^ Oct 13 01:43:14.423 INFO kablam! | | Oct 13 01:43:14.423 INFO kablam! | help: remove this Oct 13 01:43:14.423 INFO kablam! Oct 13 01:43:15.063 INFO kablam! Finished dev [unoptimized + debuginfo] target(s) in 1.38s Oct 13 01:43:15.071 INFO kablam! su: No module specific data is present Oct 13 01:43:15.696 INFO running `"docker" "rm" "-f" "7c08e4a329ad95dc34ee8093193ca7c8fd00c1a99211ce1fa4c1687f8629b29d"` Oct 13 01:43:15.927 INFO blam! 7c08e4a329ad95dc34ee8093193ca7c8fd00c1a99211ce1fa4c1687f8629b29d Oct 13 01:43:15.931 INFO running `"docker" "create" "-v" "/mnt/big/crater/./work/local/target-dirs/rustdoc-test-static-cling-1/worker-1/try#40d4795669493f1965de7c44029c69552134fe1f:/target:rw,Z" "-v" "/mnt/big/crater/./work/local/test-source/worker-1/rustdoc-test-static-cling-1/try#40d4795669493f1965de7c44029c69552134fe1f:/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 +40d4795669493f1965de7c44029c69552134fe1f-alt test --frozen" "-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 13 01:43:16.343 INFO blam! 7221cafb9ccff9db4a3b7adf70d9d49815076590e8973407558b94fe8f115433 Oct 13 01:43:16.345 INFO running `"docker" "start" "-a" "7221cafb9ccff9db4a3b7adf70d9d49815076590e8973407558b94fe8f115433"` Oct 13 01:43:17.453 INFO kablam! usermod: no changes Oct 13 01:43:17.535 INFO kablam! Finished dev [unoptimized + debuginfo] target(s) in 0.05s Oct 13 01:43:17.536 INFO kablam! Running /target/debug/deps/rust_test-1080c01cd1b42b42 Oct 13 01:43:17.543 INFO blam! Oct 13 01:43:17.543 INFO blam! running 0 tests Oct 13 01:43:17.543 INFO blam! Oct 13 01:43:17.543 INFO blam! test result: ok. 0 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out Oct 13 01:43:17.543 INFO blam! Oct 13 01:43:17.543 INFO kablam! Running /target/debug/deps/rust_test-a8d630c367645ded Oct 13 01:43:17.547 INFO blam! Oct 13 01:43:17.547 INFO blam! running 0 tests Oct 13 01:43:17.547 INFO blam! Oct 13 01:43:17.547 INFO blam! test result: ok. 0 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out Oct 13 01:43:17.547 INFO blam! Oct 13 01:43:17.547 INFO kablam! Doc-tests rust_test Oct 13 01:43:17.919 INFO blam! Oct 13 01:43:17.919 INFO blam! running 0 tests Oct 13 01:43:17.919 INFO blam! Oct 13 01:43:17.919 INFO blam! test result: ok. 0 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out Oct 13 01:43:17.919 INFO blam! Oct 13 01:43:17.928 INFO kablam! su: No module specific data is present Oct 13 01:43:18.651 INFO running `"docker" "rm" "-f" "7221cafb9ccff9db4a3b7adf70d9d49815076590e8973407558b94fe8f115433"` Oct 13 01:43:18.911 INFO blam! 7221cafb9ccff9db4a3b7adf70d9d49815076590e8973407558b94fe8f115433