Oct 14 20:02:07.798 INFO testing gdemarcsek/learn-rust against master#0e07c4281c343e9e15a0a8fca79538ad1a8eb513 for rustdoc-test-static-cling-1 Oct 14 20:02:07.798 INFO running `"docker" "create" "-v" "/mnt/big/crater/./work/local/target-dirs/rustdoc-test-static-cling-1/worker-4/master#0e07c4281c343e9e15a0a8fca79538ad1a8eb513:/target:rw,Z" "-v" "/mnt/big/crater/./work/local/test-source/worker-4/rustdoc-test-static-cling-1/master#0e07c4281c343e9e15a0a8fca79538ad1a8eb513:/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 +0e07c4281c343e9e15a0a8fca79538ad1a8eb513-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 14 20:02:08.245 INFO blam! 2321ffe023471a33bc3d481fe96fe81379592e31175add508b891ddf117d6182 Oct 14 20:02:08.245 INFO running `"docker" "start" "-a" "2321ffe023471a33bc3d481fe96fe81379592e31175add508b891ddf117d6182"` Oct 14 20:02:09.359 INFO kablam! usermod: no changes Oct 14 20:02:09.423 INFO kablam! Compiling learn-rust v0.1.0 (/source) Oct 14 20:02:09.727 INFO kablam! warning: unused import: `std::*` Oct 14 20:02:09.727 INFO kablam! --> src/main.rs:297:9 Oct 14 20:02:09.727 INFO kablam! | Oct 14 20:02:09.727 INFO kablam! 297 | use std::*; // glob import from Rust's standard library Oct 14 20:02:09.727 INFO kablam! | ^^^^^^ Oct 14 20:02:09.727 INFO kablam! | Oct 14 20:02:09.727 INFO kablam! = note: #[warn(unused_imports)] on by default Oct 14 20:02:09.727 INFO kablam! Oct 14 20:02:09.803 INFO kablam! warning: unreachable pattern Oct 14 20:02:09.803 INFO kablam! --> src/main.rs:269:9 Oct 14 20:02:09.803 INFO kablam! | Oct 14 20:02:09.803 INFO kablam! 269 | _ => -1, // _ is a placeholder that matches any value - if we put it as last, this will mean what the "default" label menas for "switch" in C++ Oct 14 20:02:09.803 INFO kablam! | ^ Oct 14 20:02:09.803 INFO kablam! | Oct 14 20:02:09.803 INFO kablam! = note: #[warn(unreachable_patterns)] on by default Oct 14 20:02:09.803 INFO kablam! Oct 14 20:02:09.803 INFO kablam! warning: unused variable: `x` Oct 14 20:02:09.803 INFO kablam! --> src/main.rs:17:9 Oct 14 20:02:09.803 INFO kablam! | Oct 14 20:02:09.803 INFO kablam! 17 | let x = 42; // (type is inferred by the compiler whenever possible) Oct 14 20:02:09.803 INFO kablam! | ^ help: consider using `_x` instead Oct 14 20:02:09.803 INFO kablam! | Oct 14 20:02:09.803 INFO kablam! = note: #[warn(unused_variables)] on by default Oct 14 20:02:09.803 INFO kablam! Oct 14 20:02:09.803 INFO kablam! warning: variable `x` is assigned to, but never used Oct 14 20:02:09.803 INFO kablam! --> src/main.rs:19:13 Oct 14 20:02:09.803 INFO kablam! | Oct 14 20:02:09.803 INFO kablam! 19 | let mut x = 42; // Now 'x' is declared to be mutable, thus... Oct 14 20:02:09.803 INFO kablam! | ^ Oct 14 20:02:09.803 INFO kablam! | Oct 14 20:02:09.803 INFO kablam! = note: consider using `_x` instead Oct 14 20:02:09.803 INFO kablam! Oct 14 20:02:09.803 INFO kablam! warning: value assigned to `x` is never read Oct 14 20:02:09.803 INFO kablam! --> src/main.rs:20:5 Oct 14 20:02:09.803 INFO kablam! | Oct 14 20:02:09.804 INFO kablam! 20 | x = 21; // its value can be changed later on Oct 14 20:02:09.804 INFO kablam! | ^ Oct 14 20:02:09.804 INFO kablam! | Oct 14 20:02:09.804 INFO kablam! = note: #[warn(unused_assignments)] on by default Oct 14 20:02:09.804 INFO kablam! Oct 14 20:02:09.804 INFO kablam! warning: unused variable: `s` Oct 14 20:02:09.804 INFO kablam! --> src/main.rs:40:13 Oct 14 20:02:09.804 INFO kablam! | Oct 14 20:02:09.804 INFO kablam! 40 | let s = String::from("dynamically allocated string"); // s owns the allocated memory... Oct 14 20:02:09.804 INFO kablam! | ^ help: consider using `_s` instead Oct 14 20:02:09.804 INFO kablam! Oct 14 20:02:09.804 INFO kablam! warning: unused variable: `y` Oct 14 20:02:09.804 INFO kablam! --> src/main.rs:50:9 Oct 14 20:02:09.804 INFO kablam! | Oct 14 20:02:09.804 INFO kablam! 50 | let y = x; // a copy of the value of 'x' Oct 14 20:02:09.804 INFO kablam! | ^ help: consider using `_y` instead Oct 14 20:02:09.804 INFO kablam! Oct 14 20:02:09.804 INFO kablam! warning: unused variable: `s4` Oct 14 20:02:09.804 INFO kablam! --> src/main.rs:72:9 Oct 14 20:02:09.804 INFO kablam! | Oct 14 20:02:09.804 INFO kablam! 72 | let s4 = gives_ownership(); Oct 14 20:02:09.804 INFO kablam! | ^^ help: consider using `_s4` instead Oct 14 20:02:09.804 INFO kablam! Oct 14 20:02:09.804 INFO kablam! warning: unused variable: `r1` Oct 14 20:02:09.804 INFO kablam! --> src/main.rs:105:13 Oct 14 20:02:09.804 INFO kablam! | Oct 14 20:02:09.804 INFO kablam! 105 | let r1 = &mut s1; Oct 14 20:02:09.804 INFO kablam! | ^^ help: consider using `_r1` instead Oct 14 20:02:09.804 INFO kablam! Oct 14 20:02:09.804 INFO kablam! warning: unused variable: `r2` Oct 14 20:02:09.804 INFO kablam! --> src/main.rs:110:9 Oct 14 20:02:09.804 INFO kablam! | Oct 14 20:02:09.804 INFO kablam! 110 | let r2 = &s1; // but out of the scope of 'r1', we can create a reference again... Oct 14 20:02:09.804 INFO kablam! | ^^ help: consider using `_r2` instead Oct 14 20:02:09.804 INFO kablam! Oct 14 20:02:09.804 INFO kablam! warning: unused variable: `r3` Oct 14 20:02:09.804 INFO kablam! --> src/main.rs:111:9 Oct 14 20:02:09.804 INFO kablam! | Oct 14 20:02:09.804 INFO kablam! 111 | let r3 = &s1; // ...even multiple immutable ones Oct 14 20:02:09.804 INFO kablam! | ^^ help: consider using `_r3` instead Oct 14 20:02:09.804 INFO kablam! Oct 14 20:02:09.804 INFO kablam! warning: value assigned to `slice3` is never read Oct 14 20:02:09.804 INFO kablam! --> src/main.rs:150:13 Oct 14 20:02:09.804 INFO kablam! | Oct 14 20:02:09.804 INFO kablam! 150 | let mut slice3 = &s[1..6]; Oct 14 20:02:09.804 INFO kablam! | ^^^^^^ Oct 14 20:02:09.804 INFO kablam! Oct 14 20:02:09.804 INFO kablam! warning: unused variable: `slice4` Oct 14 20:02:09.804 INFO kablam! --> src/main.rs:155:9 Oct 14 20:02:09.804 INFO kablam! | Oct 14 20:02:09.804 INFO kablam! 155 | let slice4: &[i32]; // the type of each item must be 'i32' Oct 14 20:02:09.804 INFO kablam! | ^^^^^^ help: consider using `_slice4` instead Oct 14 20:02:09.804 INFO kablam! Oct 14 20:02:09.804 INFO kablam! warning: unused variable: `red` Oct 14 20:02:09.804 INFO kablam! --> src/main.rs:191:9 Oct 14 20:02:09.804 INFO kablam! | Oct 14 20:02:09.804 INFO kablam! 191 | let red = RGBColor(0xff, 0x00, 0x00); Oct 14 20:02:09.804 INFO kablam! | ^^^ help: consider using `_red` instead Oct 14 20:02:09.804 INFO kablam! Oct 14 20:02:09.804 INFO kablam! warning: unused variable: `foreign` Oct 14 20:02:09.804 INFO kablam! --> src/main.rs:233:9 Oct 14 20:02:09.804 INFO kablam! | Oct 14 20:02:09.804 INFO kablam! 233 | let foreign = IpAddress::V6(314159263, 123442); Oct 14 20:02:09.804 INFO kablam! | ^^^^^^^ help: consider using `_foreign` instead Oct 14 20:02:09.804 INFO kablam! Oct 14 20:02:09.804 INFO kablam! warning: unused variable: `some_ip` Oct 14 20:02:09.804 INFO kablam! --> src/main.rs:238:9 Oct 14 20:02:09.804 INFO kablam! | Oct 14 20:02:09.804 INFO kablam! 238 | let some_ip = Some(home); Oct 14 20:02:09.804 INFO kablam! | ^^^^^^^ help: consider using `_some_ip` instead Oct 14 20:02:09.804 INFO kablam! Oct 14 20:02:09.807 INFO kablam! warning: unused variable: `absent_ip` Oct 14 20:02:09.807 INFO kablam! --> src/main.rs:240:9 Oct 14 20:02:09.807 INFO kablam! | Oct 14 20:02:09.807 INFO kablam! 240 | let absent_ip: Option = None; Oct 14 20:02:09.807 INFO kablam! | ^^^^^^^^^ help: consider using `_absent_ip` instead Oct 14 20:02:09.807 INFO kablam! Oct 14 20:02:09.807 INFO kablam! warning: unused variable: `x` Oct 14 20:02:09.807 INFO kablam! --> src/main.rs:243:9 Oct 14 20:02:09.807 INFO kablam! | Oct 14 20:02:09.807 INFO kablam! 243 | let x: i8 = 5; Oct 14 20:02:09.807 INFO kablam! | ^ help: consider using `_x` instead Oct 14 20:02:09.807 INFO kablam! Oct 14 20:02:09.807 INFO kablam! warning: unused variable: `y` Oct 14 20:02:09.807 INFO kablam! --> src/main.rs:244:9 Oct 14 20:02:09.807 INFO kablam! | Oct 14 20:02:09.807 INFO kablam! 244 | let y: Option = Some(5); Oct 14 20:02:09.807 INFO kablam! | ^ help: consider using `_y` instead Oct 14 20:02:09.808 INFO kablam! Oct 14 20:02:09.808 INFO kablam! warning: unused variable: `retcode` Oct 14 20:02:09.808 INFO kablam! --> src/main.rs:259:9 Oct 14 20:02:09.808 INFO kablam! | Oct 14 20:02:09.808 INFO kablam! 259 | let retcode = match error { // match forces us to cover all possible cases Oct 14 20:02:09.808 INFO kablam! | ^^^^^^^ help: consider using `_retcode` instead Oct 14 20:02:09.808 INFO kablam! Oct 14 20:02:09.809 INFO kablam! warning: variable does not need to be mutable Oct 14 20:02:09.809 INFO kablam! --> src/main.rs:139:9 Oct 14 20:02:09.809 INFO kablam! | Oct 14 20:02:09.809 INFO kablam! 139 | let mut s = String::from("hello world"); Oct 14 20:02:09.809 INFO kablam! | ----^ Oct 14 20:02:09.809 INFO kablam! | | Oct 14 20:02:09.809 INFO kablam! | help: remove this `mut` Oct 14 20:02:09.819 INFO kablam! | Oct 14 20:02:09.819 INFO kablam! = note: #[warn(unused_mut)] on by default Oct 14 20:02:09.819 INFO kablam! Oct 14 20:02:09.823 INFO kablam! warning: variant is never constructed: `NetworkError` Oct 14 20:02:09.823 INFO kablam! --> src/main.rs:252:9 Oct 14 20:02:09.823 INFO kablam! | Oct 14 20:02:09.823 INFO kablam! 252 | NetworkError, Oct 14 20:02:09.823 INFO kablam! | ^^^^^^^^^^^^ Oct 14 20:02:09.823 INFO kablam! | Oct 14 20:02:09.823 INFO kablam! = note: #[warn(dead_code)] on by default Oct 14 20:02:09.823 INFO kablam! Oct 14 20:02:09.823 INFO kablam! warning: variant is never constructed: `SerilizationError` Oct 14 20:02:09.823 INFO kablam! --> src/main.rs:253:9 Oct 14 20:02:09.823 INFO kablam! | Oct 14 20:02:09.823 INFO kablam! 253 | SerilizationError(String), Oct 14 20:02:09.823 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 14 20:02:09.823 INFO kablam! Oct 14 20:02:09.823 INFO kablam! warning: function is never used: `closures` Oct 14 20:02:09.823 INFO kablam! --> src/main.rs:310:1 Oct 14 20:02:09.823 INFO kablam! | Oct 14 20:02:09.823 INFO kablam! 310 | fn closures() { Oct 14 20:02:09.823 INFO kablam! | ^^^^^^^^^^^^^ Oct 14 20:02:09.823 INFO kablam! Oct 14 20:02:09.823 INFO kablam! warning: variable `className` should have a snake case name such as `class_name` Oct 14 20:02:09.823 INFO kablam! --> src/main.rs:264:41 Oct 14 20:02:09.823 INFO kablam! | Oct 14 20:02:09.823 INFO kablam! 264 | RPCCallError::SerilizationError(className) => { Oct 14 20:02:09.823 INFO kablam! | ^^^^^^^^^ Oct 14 20:02:09.823 INFO kablam! | Oct 14 20:02:09.823 INFO kablam! = note: #[warn(non_snake_case)] on by default Oct 14 20:02:09.823 INFO kablam! Oct 14 20:02:10.525 INFO kablam! Finished dev [unoptimized + debuginfo] target(s) in 1.14s Oct 14 20:02:10.527 INFO kablam! su: No module specific data is present Oct 14 20:02:11.310 INFO running `"docker" "rm" "-f" "2321ffe023471a33bc3d481fe96fe81379592e31175add508b891ddf117d6182"` Oct 14 20:02:11.602 INFO blam! 2321ffe023471a33bc3d481fe96fe81379592e31175add508b891ddf117d6182 Oct 14 20:02:11.615 INFO running `"docker" "create" "-v" "/mnt/big/crater/./work/local/target-dirs/rustdoc-test-static-cling-1/worker-4/master#0e07c4281c343e9e15a0a8fca79538ad1a8eb513:/target:rw,Z" "-v" "/mnt/big/crater/./work/local/test-source/worker-4/rustdoc-test-static-cling-1/master#0e07c4281c343e9e15a0a8fca79538ad1a8eb513:/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 +0e07c4281c343e9e15a0a8fca79538ad1a8eb513-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 14 20:02:11.989 INFO blam! 41254e810b5f8e927786326c46a3ef9616b1845f8d1b7735b46ac9b5517c623b Oct 14 20:02:12.011 INFO running `"docker" "start" "-a" "41254e810b5f8e927786326c46a3ef9616b1845f8d1b7735b46ac9b5517c623b"` Oct 14 20:02:13.130 INFO kablam! usermod: no changes Oct 14 20:02:13.167 INFO kablam! Compiling learn-rust v0.1.0 (/source) Oct 14 20:02:13.467 INFO kablam! warning: unused import: `std::*` Oct 14 20:02:13.467 INFO kablam! --> src/main.rs:297:9 Oct 14 20:02:13.467 INFO kablam! | Oct 14 20:02:13.467 INFO kablam! 297 | use std::*; // glob import from Rust's standard library Oct 14 20:02:13.467 INFO kablam! | ^^^^^^ Oct 14 20:02:13.467 INFO kablam! | Oct 14 20:02:13.467 INFO kablam! = note: #[warn(unused_imports)] on by default Oct 14 20:02:13.467 INFO kablam! Oct 14 20:02:13.548 INFO kablam! warning: unreachable pattern Oct 14 20:02:13.548 INFO kablam! --> src/main.rs:269:9 Oct 14 20:02:13.548 INFO kablam! | Oct 14 20:02:13.548 INFO kablam! 269 | _ => -1, // _ is a placeholder that matches any value - if we put it as last, this will mean what the "default" label menas for "switch" in C++ Oct 14 20:02:13.548 INFO kablam! | ^ Oct 14 20:02:13.548 INFO kablam! | Oct 14 20:02:13.548 INFO kablam! = note: #[warn(unreachable_patterns)] on by default Oct 14 20:02:13.548 INFO kablam! Oct 14 20:02:13.549 INFO kablam! warning: unused variable: `x` Oct 14 20:02:13.549 INFO kablam! --> src/main.rs:17:9 Oct 14 20:02:13.549 INFO kablam! | Oct 14 20:02:13.549 INFO kablam! 17 | let x = 42; // (type is inferred by the compiler whenever possible) Oct 14 20:02:13.549 INFO kablam! | ^ help: consider using `_x` instead Oct 14 20:02:13.549 INFO kablam! | Oct 14 20:02:13.549 INFO kablam! = note: #[warn(unused_variables)] on by default Oct 14 20:02:13.549 INFO kablam! Oct 14 20:02:13.549 INFO kablam! warning: variable `x` is assigned to, but never used Oct 14 20:02:13.549 INFO kablam! --> src/main.rs:19:13 Oct 14 20:02:13.549 INFO kablam! | Oct 14 20:02:13.550 INFO kablam! 19 | let mut x = 42; // Now 'x' is declared to be mutable, thus... Oct 14 20:02:13.550 INFO kablam! | ^ Oct 14 20:02:13.550 INFO kablam! | Oct 14 20:02:13.550 INFO kablam! = note: consider using `_x` instead Oct 14 20:02:13.550 INFO kablam! Oct 14 20:02:13.550 INFO kablam! warning: value assigned to `x` is never read Oct 14 20:02:13.550 INFO kablam! --> src/main.rs:20:5 Oct 14 20:02:13.550 INFO kablam! | Oct 14 20:02:13.550 INFO kablam! 20 | x = 21; // its value can be changed later on Oct 14 20:02:13.550 INFO kablam! | ^ Oct 14 20:02:13.550 INFO kablam! | Oct 14 20:02:13.550 INFO kablam! = note: #[warn(unused_assignments)] on by default Oct 14 20:02:13.550 INFO kablam! Oct 14 20:02:13.550 INFO kablam! warning: unused variable: `s` Oct 14 20:02:13.550 INFO kablam! --> src/main.rs:40:13 Oct 14 20:02:13.550 INFO kablam! | Oct 14 20:02:13.550 INFO kablam! 40 | let s = String::from("dynamically allocated string"); // s owns the allocated memory... Oct 14 20:02:13.550 INFO kablam! | ^ help: consider using `_s` instead Oct 14 20:02:13.550 INFO kablam! Oct 14 20:02:13.550 INFO kablam! warning: unused variable: `y` Oct 14 20:02:13.551 INFO kablam! --> src/main.rs:50:9 Oct 14 20:02:13.551 INFO kablam! | Oct 14 20:02:13.551 INFO kablam! 50 | let y = x; // a copy of the value of 'x' Oct 14 20:02:13.551 INFO kablam! | ^ help: consider using `_y` instead Oct 14 20:02:13.551 INFO kablam! Oct 14 20:02:13.551 INFO kablam! warning: unused variable: `s4` Oct 14 20:02:13.551 INFO kablam! --> src/main.rs:72:9 Oct 14 20:02:13.551 INFO kablam! | Oct 14 20:02:13.551 INFO kablam! 72 | let s4 = gives_ownership(); Oct 14 20:02:13.551 INFO kablam! | ^^ help: consider using `_s4` instead Oct 14 20:02:13.551 INFO kablam! Oct 14 20:02:13.551 INFO kablam! warning: unused variable: `r1` Oct 14 20:02:13.551 INFO kablam! --> src/main.rs:105:13 Oct 14 20:02:13.551 INFO kablam! | Oct 14 20:02:13.551 INFO kablam! 105 | let r1 = &mut s1; Oct 14 20:02:13.551 INFO kablam! | ^^ help: consider using `_r1` instead Oct 14 20:02:13.551 INFO kablam! Oct 14 20:02:13.551 INFO kablam! warning: unused variable: `r2` Oct 14 20:02:13.551 INFO kablam! --> src/main.rs:110:9 Oct 14 20:02:13.551 INFO kablam! | Oct 14 20:02:13.551 INFO kablam! 110 | let r2 = &s1; // but out of the scope of 'r1', we can create a reference again... Oct 14 20:02:13.552 INFO kablam! | ^^ help: consider using `_r2` instead Oct 14 20:02:13.552 INFO kablam! Oct 14 20:02:13.552 INFO kablam! warning: unused variable: `r3` Oct 14 20:02:13.552 INFO kablam! --> src/main.rs:111:9 Oct 14 20:02:13.552 INFO kablam! | Oct 14 20:02:13.552 INFO kablam! 111 | let r3 = &s1; // ...even multiple immutable ones Oct 14 20:02:13.552 INFO kablam! | ^^ help: consider using `_r3` instead Oct 14 20:02:13.552 INFO kablam! Oct 14 20:02:13.552 INFO kablam! warning: value assigned to `slice3` is never read Oct 14 20:02:13.552 INFO kablam! --> src/main.rs:150:13 Oct 14 20:02:13.552 INFO kablam! | Oct 14 20:02:13.552 INFO kablam! 150 | let mut slice3 = &s[1..6]; Oct 14 20:02:13.552 INFO kablam! | ^^^^^^ Oct 14 20:02:13.552 INFO kablam! Oct 14 20:02:13.552 INFO kablam! warning: unused variable: `slice4` Oct 14 20:02:13.552 INFO kablam! --> src/main.rs:155:9 Oct 14 20:02:13.552 INFO kablam! | Oct 14 20:02:13.552 INFO kablam! 155 | let slice4: &[i32]; // the type of each item must be 'i32' Oct 14 20:02:13.552 INFO kablam! | ^^^^^^ help: consider using `_slice4` instead Oct 14 20:02:13.552 INFO kablam! Oct 14 20:02:13.552 INFO kablam! warning: unused variable: `red` Oct 14 20:02:13.553 INFO kablam! --> src/main.rs:191:9 Oct 14 20:02:13.553 INFO kablam! | Oct 14 20:02:13.553 INFO kablam! 191 | let red = RGBColor(0xff, 0x00, 0x00); Oct 14 20:02:13.553 INFO kablam! | ^^^ help: consider using `_red` instead Oct 14 20:02:13.553 INFO kablam! Oct 14 20:02:13.553 INFO kablam! warning: unused variable: `foreign` Oct 14 20:02:13.553 INFO kablam! --> src/main.rs:233:9 Oct 14 20:02:13.553 INFO kablam! | Oct 14 20:02:13.553 INFO kablam! 233 | let foreign = IpAddress::V6(314159263, 123442); Oct 14 20:02:13.553 INFO kablam! | ^^^^^^^ help: consider using `_foreign` instead Oct 14 20:02:13.553 INFO kablam! Oct 14 20:02:13.553 INFO kablam! warning: unused variable: `some_ip` Oct 14 20:02:13.553 INFO kablam! --> src/main.rs:238:9 Oct 14 20:02:13.553 INFO kablam! | Oct 14 20:02:13.553 INFO kablam! 238 | let some_ip = Some(home); Oct 14 20:02:13.553 INFO kablam! | ^^^^^^^ help: consider using `_some_ip` instead Oct 14 20:02:13.553 INFO kablam! Oct 14 20:02:13.553 INFO kablam! warning: unused variable: `absent_ip` Oct 14 20:02:13.553 INFO kablam! --> src/main.rs:240:9 Oct 14 20:02:13.553 INFO kablam! | Oct 14 20:02:13.553 INFO kablam! 240 | let absent_ip: Option = None; Oct 14 20:02:13.554 INFO kablam! | ^^^^^^^^^ help: consider using `_absent_ip` instead Oct 14 20:02:13.554 INFO kablam! Oct 14 20:02:13.554 INFO kablam! warning: unused variable: `x` Oct 14 20:02:13.554 INFO kablam! --> src/main.rs:243:9 Oct 14 20:02:13.554 INFO kablam! | Oct 14 20:02:13.554 INFO kablam! 243 | let x: i8 = 5; Oct 14 20:02:13.554 INFO kablam! | ^ help: consider using `_x` instead Oct 14 20:02:13.554 INFO kablam! Oct 14 20:02:13.554 INFO kablam! warning: unused variable: `y` Oct 14 20:02:13.554 INFO kablam! --> src/main.rs:244:9 Oct 14 20:02:13.554 INFO kablam! | Oct 14 20:02:13.554 INFO kablam! 244 | let y: Option = Some(5); Oct 14 20:02:13.554 INFO kablam! | ^ help: consider using `_y` instead Oct 14 20:02:13.554 INFO kablam! Oct 14 20:02:13.554 INFO kablam! warning: unused variable: `retcode` Oct 14 20:02:13.554 INFO kablam! --> src/main.rs:259:9 Oct 14 20:02:13.554 INFO kablam! | Oct 14 20:02:13.554 INFO kablam! 259 | let retcode = match error { // match forces us to cover all possible cases Oct 14 20:02:13.554 INFO kablam! | ^^^^^^^ help: consider using `_retcode` instead Oct 14 20:02:13.554 INFO kablam! Oct 14 20:02:13.558 INFO kablam! warning: variable does not need to be mutable Oct 14 20:02:13.558 INFO kablam! --> src/main.rs:139:9 Oct 14 20:02:13.558 INFO kablam! | Oct 14 20:02:13.558 INFO kablam! 139 | let mut s = String::from("hello world"); Oct 14 20:02:13.558 INFO kablam! | ----^ Oct 14 20:02:13.558 INFO kablam! | | Oct 14 20:02:13.558 INFO kablam! | help: remove this `mut` Oct 14 20:02:13.558 INFO kablam! | Oct 14 20:02:13.558 INFO kablam! = note: #[warn(unused_mut)] on by default Oct 14 20:02:13.558 INFO kablam! Oct 14 20:02:13.564 INFO kablam! warning: variant is never constructed: `NetworkError` Oct 14 20:02:13.565 INFO kablam! --> src/main.rs:252:9 Oct 14 20:02:13.565 INFO kablam! | Oct 14 20:02:13.565 INFO kablam! 252 | NetworkError, Oct 14 20:02:13.565 INFO kablam! | ^^^^^^^^^^^^ Oct 14 20:02:13.565 INFO kablam! | Oct 14 20:02:13.566 INFO kablam! = note: #[warn(dead_code)] on by default Oct 14 20:02:13.566 INFO kablam! Oct 14 20:02:13.566 INFO kablam! warning: variant is never constructed: `SerilizationError` Oct 14 20:02:13.566 INFO kablam! --> src/main.rs:253:9 Oct 14 20:02:13.566 INFO kablam! | Oct 14 20:02:13.566 INFO kablam! 253 | SerilizationError(String), Oct 14 20:02:13.566 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 14 20:02:13.566 INFO kablam! Oct 14 20:02:13.566 INFO kablam! warning: function is never used: `closures` Oct 14 20:02:13.566 INFO kablam! --> src/main.rs:310:1 Oct 14 20:02:13.566 INFO kablam! | Oct 14 20:02:13.566 INFO kablam! 310 | fn closures() { Oct 14 20:02:13.566 INFO kablam! | ^^^^^^^^^^^^^ Oct 14 20:02:13.566 INFO kablam! Oct 14 20:02:13.567 INFO kablam! warning: variable `className` should have a snake case name such as `class_name` Oct 14 20:02:13.567 INFO kablam! --> src/main.rs:264:41 Oct 14 20:02:13.567 INFO kablam! | Oct 14 20:02:13.567 INFO kablam! 264 | RPCCallError::SerilizationError(className) => { Oct 14 20:02:13.567 INFO kablam! | ^^^^^^^^^ Oct 14 20:02:13.567 INFO kablam! | Oct 14 20:02:13.567 INFO kablam! = note: #[warn(non_snake_case)] on by default Oct 14 20:02:13.567 INFO kablam! Oct 14 20:02:14.062 INFO kablam! Finished dev [unoptimized + debuginfo] target(s) in 0.91s Oct 14 20:02:14.062 INFO kablam! su: No module specific data is present Oct 14 20:02:14.853 INFO running `"docker" "rm" "-f" "41254e810b5f8e927786326c46a3ef9616b1845f8d1b7735b46ac9b5517c623b"` Oct 14 20:02:15.123 INFO blam! 41254e810b5f8e927786326c46a3ef9616b1845f8d1b7735b46ac9b5517c623b Oct 14 20:02:15.135 INFO running `"docker" "create" "-v" "/mnt/big/crater/./work/local/target-dirs/rustdoc-test-static-cling-1/worker-4/master#0e07c4281c343e9e15a0a8fca79538ad1a8eb513:/target:rw,Z" "-v" "/mnt/big/crater/./work/local/test-source/worker-4/rustdoc-test-static-cling-1/master#0e07c4281c343e9e15a0a8fca79538ad1a8eb513:/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 +0e07c4281c343e9e15a0a8fca79538ad1a8eb513-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 14 20:02:15.768 INFO blam! b11f89cfe25a9cb88cfc0a370db15c1926abc08afa8b0ea7ad24a706b9aa2737 Oct 14 20:02:15.768 INFO running `"docker" "start" "-a" "b11f89cfe25a9cb88cfc0a370db15c1926abc08afa8b0ea7ad24a706b9aa2737"` Oct 14 20:02:17.172 INFO kablam! usermod: no changes Oct 14 20:02:17.225 INFO kablam! Finished dev [unoptimized + debuginfo] target(s) in 0.02s Oct 14 20:02:17.235 INFO kablam! Running /target/debug/deps/learn_rust-2414fc84b1ed024d Oct 14 20:02:17.239 INFO blam! Oct 14 20:02:17.239 INFO blam! running 0 tests Oct 14 20:02:17.239 INFO blam! Oct 14 20:02:17.239 INFO kablam! su: No module specific data is present Oct 14 20:02:17.239 INFO blam! test result: ok. 0 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out Oct 14 20:02:17.239 INFO blam! Oct 14 20:02:17.805 INFO running `"docker" "rm" "-f" "b11f89cfe25a9cb88cfc0a370db15c1926abc08afa8b0ea7ad24a706b9aa2737"` Oct 14 20:02:17.994 INFO blam! b11f89cfe25a9cb88cfc0a370db15c1926abc08afa8b0ea7ad24a706b9aa2737