Oct 14 15:44:39.745 INFO testing kanishkd4/Rust-by-example against try#40d4795669493f1965de7c44029c69552134fe1f for rustdoc-test-static-cling-1 Oct 14 15:44:39.745 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 14 15:44:40.083 INFO blam! 9832183951c6bcaab5d7b2a2b1c14b2c57008639acbe7100a799002b6d6ba7b6 Oct 14 15:44:40.087 INFO running `"docker" "start" "-a" "9832183951c6bcaab5d7b2a2b1c14b2c57008639acbe7100a799002b6d6ba7b6"` Oct 14 15:44:40.583 INFO kablam! usermod: no changes Oct 14 15:44:40.614 INFO kablam! Compiling rust-by-example v0.1.0 (/source) Oct 14 15:44:40.821 INFO kablam! warning: unused variable: `arg` Oct 14 15:44:40.822 INFO kablam! --> src/bin/c14_generics_functions_impl_traits.rs:8:11 Oct 14 15:44:40.822 INFO kablam! | Oct 14 15:44:40.822 INFO kablam! 8 | fn foo(arg: T) {} // becuase T has been specified as a generic type parameter using , Oct 14 15:44:40.822 INFO kablam! | ^^^ help: consider using `_arg` instead Oct 14 15:44:40.823 INFO kablam! | Oct 14 15:44:40.823 INFO kablam! = note: #[warn(unused_variables)] on by default Oct 14 15:44:40.825 INFO kablam! Oct 14 15:44:40.831 INFO kablam! warning: function is never used: `foo` Oct 14 15:44:40.831 INFO kablam! --> src/bin/c14_generics_functions_impl_traits.rs:8:1 Oct 14 15:44:40.831 INFO kablam! | Oct 14 15:44:40.831 INFO kablam! 8 | fn foo(arg: T) {} // becuase T has been specified as a generic type parameter using , Oct 14 15:44:40.831 INFO kablam! | ^^^^^^^^^^^^^^^^^ Oct 14 15:44:40.831 INFO kablam! | Oct 14 15:44:40.831 INFO kablam! = note: #[warn(dead_code)] on by default Oct 14 15:44:40.831 INFO kablam! Oct 14 15:44:40.831 INFO kablam! warning: type `web_event` should have a camel case name such as `WebEvent` Oct 14 15:44:40.831 INFO kablam! --> src/bin/c3_custom_types_enums1.rs:6:1 Oct 14 15:44:40.831 INFO kablam! | Oct 14 15:44:40.831 INFO kablam! 6 | / enum web_event { Oct 14 15:44:40.831 INFO kablam! 7 | | // an enum can be unit like Oct 14 15:44:40.831 INFO kablam! 8 | | page_load, Oct 14 15:44:40.831 INFO kablam! 9 | | page_unload, Oct 14 15:44:40.831 INFO kablam! warning: struct is never constructed: `S` Oct 14 15:44:40.831 INFO kablam! --> src/bin/c14_generics_functions_impl_traits.rs:48:1 Oct 14 15:44:40.831 INFO kablam! | Oct 14 15:44:40.831 INFO kablam! ... | Oct 14 15:44:40.831 INFO kablam! 14 | | click { x: i64, y: i64 }, Oct 14 15:44:40.831 INFO kablam! 15 | | } Oct 14 15:44:40.832 INFO kablam! | |_^ Oct 14 15:44:40.832 INFO kablam! 48 | struct S(A); // concrete type S that takes concrete type A defined above // commented for struct S below Oct 14 15:44:40.832 INFO kablam! | ^^^^^^^^^^^^ Oct 14 15:44:40.832 INFO kablam! Oct 14 15:44:40.832 INFO kablam! warning: struct is never constructed: `SGen` Oct 14 15:44:40.832 INFO kablam! --> src/bin/c14_generics_functions_impl_traits.rs:49:1 Oct 14 15:44:40.832 INFO kablam! | Oct 14 15:44:40.832 INFO kablam! 49 | struct SGen(T); // Generic type SGen Oct 14 15:44:40.832 INFO kablam! | ^^^^^^^^^^^^^^^^^^ Oct 14 15:44:40.832 INFO kablam! Oct 14 15:44:40.832 INFO kablam! warning: function is never used: `reg_fn` Oct 14 15:44:40.832 INFO kablam! --> src/bin/c14_generics_functions_impl_traits.rs:51:1 Oct 14 15:44:40.832 INFO kablam! | Oct 14 15:44:40.832 INFO kablam! 51 | fn reg_fn(_s: S) {} // a regular function that takes an argument of type S - not a generic function Oct 14 15:44:40.832 INFO kablam! | ^^^^^^^^^^^^^^^^ Oct 14 15:44:40.832 INFO kablam! Oct 14 15:44:40.832 INFO kablam! warning: function is never used: `gen_spec_t` Oct 14 15:44:40.832 INFO kablam! --> src/bin/c14_generics_functions_impl_traits.rs:53:1 Oct 14 15:44:40.832 INFO kablam! | Oct 14 15:44:40.832 INFO kablam! 53 | fn gen_spec_t(_s: SGen) {} // this is also not a generic as SGen has been given the type A Oct 14 15:44:40.832 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 14 15:44:40.832 INFO kablam! Oct 14 15:44:40.832 INFO kablam! warning: function is never used: `gen_spec_i32` Oct 14 15:44:40.832 INFO kablam! | Oct 14 15:44:40.832 INFO kablam! --> src/bin/c14_generics_functions_impl_traits.rs:54:1 Oct 14 15:44:40.832 INFO kablam! | Oct 14 15:44:40.832 INFO kablam! 54 | fn gen_spec_i32(_s: SGen) {} // this is also not a generic Oct 14 15:44:40.832 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 14 15:44:40.832 INFO kablam! = note: #[warn(non_camel_case_types)] on by default Oct 14 15:44:40.832 INFO kablam! Oct 14 15:44:40.832 INFO kablam! Oct 14 15:44:40.832 INFO kablam! warning: variant `page_load` should have a camel case name such as `PageLoad` Oct 14 15:44:40.832 INFO kablam! --> src/bin/c3_custom_types_enums1.rs:8:5 Oct 14 15:44:40.832 INFO kablam! | Oct 14 15:44:40.832 INFO kablam! 8 | page_load, Oct 14 15:44:40.832 INFO kablam! | ^^^^^^^^^ Oct 14 15:44:40.832 INFO kablam! warning: function is never used: `generic` Oct 14 15:44:40.832 INFO kablam! --> src/bin/c14_generics_functions_impl_traits.rs:55:1 Oct 14 15:44:40.832 INFO kablam! | Oct 14 15:44:40.832 INFO kablam! 55 | fn generic(_s: SGen) {} // a generic function Oct 14 15:44:40.832 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 14 15:44:40.832 INFO kablam! Oct 14 15:44:40.832 INFO kablam! warning: struct is never constructed: `S1` Oct 14 15:44:40.832 INFO kablam! --> src/bin/c14_generics_functions_impl_traits.rs:59:1 Oct 14 15:44:40.832 INFO kablam! | Oct 14 15:44:40.832 INFO kablam! 59 | struct S1; // concrete type S Oct 14 15:44:40.832 INFO kablam! | ^^^^^^^^^^ Oct 14 15:44:40.832 INFO kablam! Oct 14 15:44:40.832 INFO kablam! warning: struct is never constructed: `GenericVal` Oct 14 15:44:40.832 INFO kablam! --> src/bin/c14_generics_functions_impl_traits.rs:60:1 Oct 14 15:44:40.832 INFO kablam! | Oct 14 15:44:40.832 INFO kablam! 60 | struct GenericVal(T, ); // Generic type GenericVal Oct 14 15:44:40.832 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 14 15:44:40.832 INFO kablam! Oct 14 15:44:40.832 INFO kablam! warning: variant `page_unload` should have a camel case name such as `PageUnload` Oct 14 15:44:40.832 INFO kablam! --> src/bin/c3_custom_types_enums1.rs:9:5 Oct 14 15:44:40.832 INFO kablam! | Oct 14 15:44:40.832 INFO kablam! 9 | page_unload, Oct 14 15:44:40.832 INFO kablam! | ^^^^^^^^^^^ Oct 14 15:44:40.832 INFO kablam! Oct 14 15:44:40.832 INFO kablam! Oct 14 15:44:40.832 INFO kablam! warning: variant `key_press` should have a camel case name such as `KeyPress` Oct 14 15:44:40.832 INFO kablam! --> src/bin/c3_custom_types_enums1.rs:11:5 Oct 14 15:44:40.832 INFO kablam! | Oct 14 15:44:40.832 INFO kablam! 11 | key_press(char), Oct 14 15:44:40.832 INFO kablam! | ^^^^^^^^^^^^^^^ Oct 14 15:44:40.832 INFO kablam! Oct 14 15:44:40.832 INFO kablam! warning: variant `paste` should have a camel case name such as `Paste` Oct 14 15:44:40.832 INFO kablam! --> src/bin/c3_custom_types_enums1.rs:12:5 Oct 14 15:44:40.832 INFO kablam! | Oct 14 15:44:40.832 INFO kablam! 12 | paste(String), Oct 14 15:44:40.832 INFO kablam! | ^^^^^^^^^^^^^ Oct 14 15:44:40.832 INFO kablam! Oct 14 15:44:40.832 INFO kablam! warning: variant `click` should have a camel case name such as `Click` Oct 14 15:44:40.832 INFO kablam! --> src/bin/c3_custom_types_enums1.rs:14:5 Oct 14 15:44:40.832 INFO kablam! | Oct 14 15:44:40.832 INFO kablam! 14 | click { x: i64, y: i64 }, Oct 14 15:44:40.832 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^ Oct 14 15:44:40.832 INFO kablam! Oct 14 15:44:41.030 INFO kablam! warning: unused variable: `work` Oct 14 15:44:41.030 INFO kablam! --> src/bin/c3_custom_types_enums2.rs:72:9 Oct 14 15:44:41.030 INFO kablam! | Oct 14 15:44:41.030 INFO kablam! 72 | let work = Civilian; // equivalent to Work::Civilian Oct 14 15:44:41.030 INFO kablam! | ^^^^ help: consider using `_work` instead Oct 14 15:44:41.030 INFO kablam! | Oct 14 15:44:41.030 INFO kablam! = note: #[warn(unused_variables)] on by default Oct 14 15:44:41.030 INFO kablam! Oct 14 15:44:41.950 INFO kablam! warning: struct is never constructed: `Deep` Oct 14 15:44:41.951 INFO kablam! --> src/bin/c1_formatted_print.rs:34:1 Oct 14 15:44:41.951 INFO kablam! | Oct 14 15:44:41.951 INFO kablam! 34 | struct Deep(Structure); Oct 14 15:44:41.951 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^ Oct 14 15:44:41.951 INFO kablam! | Oct 14 15:44:41.951 INFO kablam! = note: #[warn(dead_code)] on by default Oct 14 15:44:41.951 INFO kablam! Oct 14 15:44:42.029 INFO kablam! warning: unused variable: `logical` Oct 14 15:44:42.029 INFO kablam! --> src/bin/c2_primitives.rs:6:9 Oct 14 15:44:42.029 INFO kablam! | Oct 14 15:44:42.030 INFO kablam! 6 | let logical: bool = true; Oct 14 15:44:42.030 INFO kablam! | ^^^^^^^ help: consider using `_logical` instead Oct 14 15:44:42.030 INFO kablam! | Oct 14 15:44:42.030 INFO kablam! = note: #[warn(unused_variables)] on by default Oct 14 15:44:42.030 INFO kablam! Oct 14 15:44:42.030 INFO kablam! warning: unused variable: `a_float` Oct 14 15:44:42.030 INFO kablam! --> src/bin/c2_primitives.rs:8:9 Oct 14 15:44:42.030 INFO kablam! | Oct 14 15:44:42.030 INFO kablam! 8 | let a_float: f64 = 1.0; // regular annotation Oct 14 15:44:42.030 INFO kablam! | ^^^^^^^ help: consider using `_a_float` instead Oct 14 15:44:42.030 INFO kablam! Oct 14 15:44:42.030 INFO kablam! warning: unused variable: `an_integer` Oct 14 15:44:42.030 INFO kablam! --> src/bin/c2_primitives.rs:9:9 Oct 14 15:44:42.030 INFO kablam! | Oct 14 15:44:42.030 INFO kablam! 9 | let an_integer = 5i32; // suffix annotation Oct 14 15:44:42.030 INFO kablam! | ^^^^^^^^^^ help: consider using `_an_integer` instead Oct 14 15:44:42.030 INFO kablam! Oct 14 15:44:42.030 INFO kablam! warning: unused variable: `default_float` Oct 14 15:44:42.030 INFO kablam! --> src/bin/c2_primitives.rs:11:9 Oct 14 15:44:42.030 INFO kablam! | Oct 14 15:44:42.030 INFO kablam! 11 | let default_float = 64.0; // f64 Oct 14 15:44:42.030 INFO kablam! | ^^^^^^^^^^^^^ help: consider using `_default_float` instead Oct 14 15:44:42.030 INFO kablam! Oct 14 15:44:42.030 INFO kablam! warning: unused variable: `default_integer` Oct 14 15:44:42.030 INFO kablam! --> src/bin/c2_primitives.rs:12:9 Oct 14 15:44:42.030 INFO kablam! | Oct 14 15:44:42.030 INFO kablam! 12 | let default_integer = 32; // i32 Oct 14 15:44:42.030 INFO kablam! | ^^^^^^^^^^^^^^^ help: consider using `_default_integer` instead Oct 14 15:44:42.031 INFO kablam! Oct 14 15:44:42.031 INFO kablam! warning: unused variable: `integer_new` Oct 14 15:44:42.031 INFO kablam! --> src/bin/c2_primitives.rs:15:13 Oct 14 15:44:42.031 INFO kablam! | Oct 14 15:44:42.031 INFO kablam! 15 | let mut integer_new: i32 = 32; Oct 14 15:44:42.031 INFO kablam! | ^^^^^^^^^^^ help: consider using `_integer_new` instead Oct 14 15:44:42.031 INFO kablam! Oct 14 15:44:42.031 INFO kablam! warning: unused variable: `integer_new` Oct 14 15:44:42.031 INFO kablam! --> src/bin/c2_primitives.rs:19:9 Oct 14 15:44:42.031 INFO kablam! | Oct 14 15:44:42.031 INFO kablam! 19 | let integer_new: i64 = 64; Oct 14 15:44:42.031 INFO kablam! | ^^^^^^^^^^^ help: consider using `_integer_new` instead Oct 14 15:44:42.035 INFO kablam! Oct 14 15:44:42.048 INFO kablam! warning: variable does not need to be mutable Oct 14 15:44:42.048 INFO kablam! --> src/bin/c2_primitives.rs:15:9 Oct 14 15:44:42.049 INFO kablam! | Oct 14 15:44:42.051 INFO kablam! 15 | let mut integer_new: i32 = 32; Oct 14 15:44:42.051 INFO kablam! | ----^^^^^^^^^^^ Oct 14 15:44:42.051 INFO kablam! | | Oct 14 15:44:42.051 INFO kablam! | help: remove this `mut` Oct 14 15:44:42.051 INFO kablam! | Oct 14 15:44:42.051 INFO kablam! = note: #[warn(unused_mut)] on by default Oct 14 15:44:42.051 INFO kablam! Oct 14 15:44:42.051 INFO kablam! warning: struct is never constructed: `Matrix` Oct 14 15:44:42.051 INFO kablam! --> src/bin/c2_primitives.rs:94:1 Oct 14 15:44:42.051 INFO kablam! | Oct 14 15:44:42.051 INFO kablam! 94 | struct Matrix(f32, f32, f32, f32); Oct 14 15:44:42.051 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 14 15:44:42.051 INFO kablam! | Oct 14 15:44:42.051 INFO kablam! = note: #[warn(dead_code)] on by default Oct 14 15:44:42.051 INFO kablam! Oct 14 15:44:42.211 INFO kablam! warning: unused variable: `a` Oct 14 15:44:42.211 INFO kablam! --> src/bin/c9_higher_order_diverging_functions.rs:33:9 Oct 14 15:44:42.211 INFO kablam! | Oct 14 15:44:42.211 INFO kablam! 33 | let a: () = some_fn(); Oct 14 15:44:42.211 INFO kablam! | ^ help: consider using `_a` instead Oct 14 15:44:42.211 INFO kablam! | Oct 14 15:44:42.211 INFO kablam! = note: #[warn(unused_variables)] on by default Oct 14 15:44:42.211 INFO kablam! Oct 14 15:44:42.211 INFO kablam! warning: function is never used: `foo` Oct 14 15:44:42.211 INFO kablam! --> src/bin/c9_higher_order_diverging_functions.rs:44:1 Oct 14 15:44:42.211 INFO kablam! | Oct 14 15:44:42.211 INFO kablam! 44 | fn foo() -> ! { Oct 14 15:44:42.211 INFO kablam! | ^^^^^^^^^^^^^ Oct 14 15:44:42.211 INFO kablam! | Oct 14 15:44:42.211 INFO kablam! = note: #[warn(dead_code)] on by default Oct 14 15:44:42.211 INFO kablam! Oct 14 15:44:42.591 INFO kablam! warning: type alias is never used: `u64_t` Oct 14 15:44:42.591 INFO kablam! --> src/bin/c5_types.rs:14:1 Oct 14 15:44:42.591 INFO kablam! | Oct 14 15:44:42.591 INFO kablam! 14 | type u64_t = u64; Oct 14 15:44:42.591 INFO kablam! | ^^^^^^^^^^^^^^^^^ Oct 14 15:44:42.591 INFO kablam! | Oct 14 15:44:42.591 INFO kablam! = note: #[warn(dead_code)] on by default Oct 14 15:44:42.591 INFO kablam! Oct 14 15:44:42.591 INFO kablam! warning: type `u64_t` should have a camel case name such as `U64T` Oct 14 15:44:42.591 INFO kablam! --> src/bin/c5_types.rs:14:1 Oct 14 15:44:42.591 INFO kablam! | Oct 14 15:44:42.591 INFO kablam! 14 | type u64_t = u64; Oct 14 15:44:42.591 INFO kablam! | ^^^^^^^^^^^^^^^^^ Oct 14 15:44:42.591 INFO kablam! | Oct 14 15:44:42.591 INFO kablam! = note: #[warn(non_camel_case_types)] on by default Oct 14 15:44:42.591 INFO kablam! Oct 14 15:44:42.661 INFO kablam! warning: field is never used: `p1` Oct 14 15:44:42.661 INFO kablam! --> src/bin/c3_custom_types_structs.rs:25:5 Oct 14 15:44:42.661 INFO kablam! | Oct 14 15:44:42.662 INFO kablam! 25 | p1: Point, Oct 14 15:44:42.662 INFO kablam! | ^^^^^^^^^ Oct 14 15:44:42.662 INFO kablam! | Oct 14 15:44:42.662 INFO kablam! = note: #[warn(dead_code)] on by default Oct 14 15:44:42.662 INFO kablam! Oct 14 15:44:42.662 INFO kablam! warning: field is never used: `p2` Oct 14 15:44:42.662 INFO kablam! --> src/bin/c3_custom_types_structs.rs:26:5 Oct 14 15:44:42.662 INFO kablam! | Oct 14 15:44:42.662 INFO kablam! 26 | p2: Point, Oct 14 15:44:42.662 INFO kablam! | ^^^^^^^^^ Oct 14 15:44:42.662 INFO kablam! Oct 14 15:44:43.007 INFO kablam! Finished dev [unoptimized + debuginfo] target(s) in 2.40s Oct 14 15:44:43.011 INFO kablam! su: No module specific data is present Oct 14 15:44:43.577 INFO running `"docker" "rm" "-f" "9832183951c6bcaab5d7b2a2b1c14b2c57008639acbe7100a799002b6d6ba7b6"` Oct 14 15:44:43.787 INFO blam! 9832183951c6bcaab5d7b2a2b1c14b2c57008639acbe7100a799002b6d6ba7b6 Oct 14 15:44:43.792 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 14 15:44:44.340 INFO blam! 19122ee73bc1c849ab49454becd22d24e2f1d8e511a62f904e4326803f6d0f3c Oct 14 15:44:44.343 INFO running `"docker" "start" "-a" "19122ee73bc1c849ab49454becd22d24e2f1d8e511a62f904e4326803f6d0f3c"` Oct 14 15:44:45.349 INFO kablam! usermod: no changes Oct 14 15:44:45.423 INFO kablam! Compiling rust-by-example v0.1.0 (/source) Oct 14 15:44:45.883 INFO kablam! warning: struct is never constructed: `Deep` Oct 14 15:44:45.883 INFO kablam! --> src/bin/c1_formatted_print.rs:34:1 Oct 14 15:44:45.883 INFO kablam! | Oct 14 15:44:45.883 INFO kablam! 34 | struct Deep(Structure); Oct 14 15:44:45.883 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^ Oct 14 15:44:45.883 INFO kablam! | Oct 14 15:44:45.883 INFO kablam! = note: #[warn(dead_code)] on by default Oct 14 15:44:45.883 INFO kablam! Oct 14 15:44:46.095 INFO kablam! warning: type alias is never used: `u64_t` Oct 14 15:44:46.095 INFO kablam! --> src/bin/c5_types.rs:14:1 Oct 14 15:44:46.095 INFO kablam! | Oct 14 15:44:46.095 INFO kablam! 14 | type u64_t = u64; Oct 14 15:44:46.095 INFO kablam! | ^^^^^^^^^^^^^^^^^ Oct 14 15:44:46.095 INFO kablam! | Oct 14 15:44:46.095 INFO kablam! = note: #[warn(dead_code)] on by default Oct 14 15:44:46.095 INFO kablam! Oct 14 15:44:46.096 INFO kablam! warning: type `u64_t` should have a camel case name such as `U64T` Oct 14 15:44:46.096 INFO kablam! --> src/bin/c5_types.rs:14:1 Oct 14 15:44:46.096 INFO kablam! | Oct 14 15:44:46.096 INFO kablam! 14 | type u64_t = u64; Oct 14 15:44:46.097 INFO kablam! | ^^^^^^^^^^^^^^^^^ Oct 14 15:44:46.097 INFO kablam! | Oct 14 15:44:46.097 INFO kablam! = note: #[warn(non_camel_case_types)] on by default Oct 14 15:44:46.097 INFO kablam! Oct 14 15:44:46.356 INFO kablam! warning: unused variable: `a` Oct 14 15:44:46.356 INFO kablam! --> src/bin/c9_higher_order_diverging_functions.rs:33:9 Oct 14 15:44:46.356 INFO kablam! | Oct 14 15:44:46.356 INFO kablam! 33 | let a: () = some_fn(); Oct 14 15:44:46.356 INFO kablam! | ^ help: consider using `_a` instead Oct 14 15:44:46.356 INFO kablam! | Oct 14 15:44:46.356 INFO kablam! = note: #[warn(unused_variables)] on by default Oct 14 15:44:46.356 INFO kablam! Oct 14 15:44:46.365 INFO kablam! warning: function is never used: `foo` Oct 14 15:44:46.365 INFO kablam! --> src/bin/c9_higher_order_diverging_functions.rs:44:1 Oct 14 15:44:46.365 INFO kablam! | Oct 14 15:44:46.365 INFO kablam! 44 | fn foo() -> ! { Oct 14 15:44:46.365 INFO kablam! | ^^^^^^^^^^^^^ Oct 14 15:44:46.365 INFO kablam! | Oct 14 15:44:46.365 INFO kablam! = note: #[warn(dead_code)] on by default Oct 14 15:44:46.365 INFO kablam! Oct 14 15:44:46.386 INFO kablam! warning: unused variable: `logical` Oct 14 15:44:46.386 INFO kablam! --> src/bin/c2_primitives.rs:6:9 Oct 14 15:44:46.386 INFO kablam! | Oct 14 15:44:46.388 INFO kablam! 6 | let logical: bool = true; Oct 14 15:44:46.388 INFO kablam! | ^^^^^^^ help: consider using `_logical` instead Oct 14 15:44:46.389 INFO kablam! | Oct 14 15:44:46.389 INFO kablam! = note: #[warn(unused_variables)] on by default Oct 14 15:44:46.389 INFO kablam! Oct 14 15:44:46.389 INFO kablam! warning: unused variable: `a_float` Oct 14 15:44:46.393 INFO kablam! --> src/bin/c2_primitives.rs:8:9 Oct 14 15:44:46.393 INFO kablam! | Oct 14 15:44:46.394 INFO kablam! 8 | let a_float: f64 = 1.0; // regular annotation Oct 14 15:44:46.394 INFO kablam! | ^^^^^^^ help: consider using `_a_float` instead Oct 14 15:44:46.394 INFO kablam! Oct 14 15:44:46.395 INFO kablam! warning: unused variable: `an_integer` Oct 14 15:44:46.395 INFO kablam! --> src/bin/c2_primitives.rs:9:9 Oct 14 15:44:46.395 INFO kablam! | Oct 14 15:44:46.395 INFO kablam! 9 | let an_integer = 5i32; // suffix annotation Oct 14 15:44:46.396 INFO kablam! | ^^^^^^^^^^ help: consider using `_an_integer` instead Oct 14 15:44:46.396 INFO kablam! Oct 14 15:44:46.396 INFO kablam! warning: unused variable: `default_float` Oct 14 15:44:46.397 INFO kablam! --> src/bin/c2_primitives.rs:11:9 Oct 14 15:44:46.397 INFO kablam! | Oct 14 15:44:46.397 INFO kablam! 11 | let default_float = 64.0; // f64 Oct 14 15:44:46.398 INFO kablam! | ^^^^^^^^^^^^^ help: consider using `_default_float` instead Oct 14 15:44:46.398 INFO kablam! Oct 14 15:44:46.398 INFO kablam! warning: unused variable: `default_integer` Oct 14 15:44:46.398 INFO kablam! --> src/bin/c2_primitives.rs:12:9 Oct 14 15:44:46.399 INFO kablam! | Oct 14 15:44:46.399 INFO kablam! 12 | let default_integer = 32; // i32 Oct 14 15:44:46.399 INFO kablam! | ^^^^^^^^^^^^^^^ help: consider using `_default_integer` instead Oct 14 15:44:46.400 INFO kablam! Oct 14 15:44:46.400 INFO kablam! warning: unused variable: `integer_new` Oct 14 15:44:46.400 INFO kablam! --> src/bin/c2_primitives.rs:15:13 Oct 14 15:44:46.400 INFO kablam! | Oct 14 15:44:46.401 INFO kablam! 15 | let mut integer_new: i32 = 32; Oct 14 15:44:46.401 INFO kablam! | ^^^^^^^^^^^ help: consider using `_integer_new` instead Oct 14 15:44:46.401 INFO kablam! Oct 14 15:44:46.402 INFO kablam! warning: unused variable: `integer_new` Oct 14 15:44:46.402 INFO kablam! --> src/bin/c2_primitives.rs:19:9 Oct 14 15:44:46.402 INFO kablam! | Oct 14 15:44:46.402 INFO kablam! 19 | let integer_new: i64 = 64; Oct 14 15:44:46.403 INFO kablam! | ^^^^^^^^^^^ help: consider using `_integer_new` instead Oct 14 15:44:46.403 INFO kablam! Oct 14 15:44:46.404 INFO kablam! warning: variable does not need to be mutable Oct 14 15:44:46.404 INFO kablam! --> src/bin/c2_primitives.rs:15:9 Oct 14 15:44:46.404 INFO kablam! | Oct 14 15:44:46.404 INFO kablam! 15 | let mut integer_new: i32 = 32; Oct 14 15:44:46.405 INFO kablam! | ----^^^^^^^^^^^ Oct 14 15:44:46.405 INFO kablam! | | Oct 14 15:44:46.405 INFO kablam! | help: remove this `mut` Oct 14 15:44:46.405 INFO kablam! | Oct 14 15:44:46.406 INFO kablam! = note: #[warn(unused_mut)] on by default Oct 14 15:44:46.406 INFO kablam! Oct 14 15:44:46.406 INFO kablam! warning: struct is never constructed: `Matrix` Oct 14 15:44:46.407 INFO kablam! --> src/bin/c2_primitives.rs:94:1 Oct 14 15:44:46.407 INFO kablam! | Oct 14 15:44:46.407 INFO kablam! 94 | struct Matrix(f32, f32, f32, f32); Oct 14 15:44:46.407 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 14 15:44:46.408 INFO kablam! | Oct 14 15:44:46.408 INFO kablam! = note: #[warn(dead_code)] on by default Oct 14 15:44:46.408 INFO kablam! Oct 14 15:44:47.103 INFO kablam! warning: unused variable: `work` Oct 14 15:44:47.103 INFO kablam! --> src/bin/c3_custom_types_enums2.rs:72:9 Oct 14 15:44:47.103 INFO kablam! | Oct 14 15:44:47.103 INFO kablam! 72 | let work = Civilian; // equivalent to Work::Civilian Oct 14 15:44:47.103 INFO kablam! | ^^^^ help: consider using `_work` instead Oct 14 15:44:47.103 INFO kablam! | Oct 14 15:44:47.103 INFO kablam! = note: #[warn(unused_variables)] on by default Oct 14 15:44:47.103 INFO kablam! Oct 14 15:44:47.159 INFO kablam! warning: field is never used: `p1` Oct 14 15:44:47.159 INFO kablam! --> src/bin/c3_custom_types_structs.rs:25:5 Oct 14 15:44:47.159 INFO kablam! | Oct 14 15:44:47.159 INFO kablam! 25 | p1: Point, Oct 14 15:44:47.159 INFO kablam! | ^^^^^^^^^ Oct 14 15:44:47.159 INFO kablam! | Oct 14 15:44:47.159 INFO kablam! = note: #[warn(dead_code)] on by default Oct 14 15:44:47.159 INFO kablam! Oct 14 15:44:47.159 INFO kablam! warning: field is never used: `p2` Oct 14 15:44:47.159 INFO kablam! --> src/bin/c3_custom_types_structs.rs:26:5 Oct 14 15:44:47.159 INFO kablam! | Oct 14 15:44:47.159 INFO kablam! 26 | p2: Point, Oct 14 15:44:47.159 INFO kablam! | ^^^^^^^^^ Oct 14 15:44:47.159 INFO kablam! Oct 14 15:44:47.328 INFO kablam! warning: unused variable: `arg` Oct 14 15:44:47.328 INFO kablam! --> src/bin/c14_generics_functions_impl_traits.rs:8:11 Oct 14 15:44:47.328 INFO kablam! | Oct 14 15:44:47.328 INFO kablam! 8 | fn foo(arg: T) {} // becuase T has been specified as a generic type parameter using , Oct 14 15:44:47.328 INFO kablam! | ^^^ help: consider using `_arg` instead Oct 14 15:44:47.328 INFO kablam! | Oct 14 15:44:47.328 INFO kablam! = note: #[warn(unused_variables)] on by default Oct 14 15:44:47.328 INFO kablam! Oct 14 15:44:47.328 INFO kablam! warning: function is never used: `foo` Oct 14 15:44:47.328 INFO kablam! --> src/bin/c14_generics_functions_impl_traits.rs:8:1 Oct 14 15:44:47.328 INFO kablam! | Oct 14 15:44:47.328 INFO kablam! 8 | fn foo(arg: T) {} // becuase T has been specified as a generic type parameter using , Oct 14 15:44:47.328 INFO kablam! | ^^^^^^^^^^^^^^^^^ Oct 14 15:44:47.328 INFO kablam! | Oct 14 15:44:47.328 INFO kablam! = note: #[warn(dead_code)] on by default Oct 14 15:44:47.328 INFO kablam! Oct 14 15:44:47.328 INFO kablam! warning: struct is never constructed: `S` Oct 14 15:44:47.328 INFO kablam! --> src/bin/c14_generics_functions_impl_traits.rs:48:1 Oct 14 15:44:47.328 INFO kablam! | Oct 14 15:44:47.328 INFO kablam! 48 | struct S(A); // concrete type S that takes concrete type A defined above // commented for struct S below Oct 14 15:44:47.328 INFO kablam! | ^^^^^^^^^^^^ Oct 14 15:44:47.328 INFO kablam! Oct 14 15:44:47.328 INFO kablam! warning: struct is never constructed: `SGen` Oct 14 15:44:47.328 INFO kablam! --> src/bin/c14_generics_functions_impl_traits.rs:49:1 Oct 14 15:44:47.328 INFO kablam! | Oct 14 15:44:47.328 INFO kablam! 49 | struct SGen(T); // Generic type SGen Oct 14 15:44:47.328 INFO kablam! | ^^^^^^^^^^^^^^^^^^ Oct 14 15:44:47.332 INFO kablam! Oct 14 15:44:47.332 INFO kablam! warning: function is never used: `reg_fn` Oct 14 15:44:47.332 INFO kablam! --> src/bin/c14_generics_functions_impl_traits.rs:51:1 Oct 14 15:44:47.332 INFO kablam! | Oct 14 15:44:47.332 INFO kablam! 51 | fn reg_fn(_s: S) {} // a regular function that takes an argument of type S - not a generic function Oct 14 15:44:47.332 INFO kablam! | ^^^^^^^^^^^^^^^^ Oct 14 15:44:47.332 INFO kablam! Oct 14 15:44:47.332 INFO kablam! warning: function is never used: `gen_spec_t` Oct 14 15:44:47.332 INFO kablam! --> src/bin/c14_generics_functions_impl_traits.rs:53:1 Oct 14 15:44:47.332 INFO kablam! | Oct 14 15:44:47.332 INFO kablam! 53 | fn gen_spec_t(_s: SGen) {} // this is also not a generic as SGen has been given the type A Oct 14 15:44:47.332 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 14 15:44:47.332 INFO kablam! Oct 14 15:44:47.332 INFO kablam! warning: function is never used: `gen_spec_i32` Oct 14 15:44:47.332 INFO kablam! --> src/bin/c14_generics_functions_impl_traits.rs:54:1 Oct 14 15:44:47.332 INFO kablam! | Oct 14 15:44:47.332 INFO kablam! 54 | fn gen_spec_i32(_s: SGen) {} // this is also not a generic Oct 14 15:44:47.332 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 14 15:44:47.332 INFO kablam! Oct 14 15:44:47.332 INFO kablam! warning: function is never used: `generic` Oct 14 15:44:47.332 INFO kablam! --> src/bin/c14_generics_functions_impl_traits.rs:55:1 Oct 14 15:44:47.332 INFO kablam! | Oct 14 15:44:47.332 INFO kablam! 55 | fn generic(_s: SGen) {} // a generic function Oct 14 15:44:47.332 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 14 15:44:47.332 INFO kablam! Oct 14 15:44:47.332 INFO kablam! warning: struct is never constructed: `S1` Oct 14 15:44:47.332 INFO kablam! --> src/bin/c14_generics_functions_impl_traits.rs:59:1 Oct 14 15:44:47.332 INFO kablam! | Oct 14 15:44:47.332 INFO kablam! 59 | struct S1; // concrete type S Oct 14 15:44:47.332 INFO kablam! | ^^^^^^^^^^ Oct 14 15:44:47.332 INFO kablam! Oct 14 15:44:47.332 INFO kablam! warning: struct is never constructed: `GenericVal` Oct 14 15:44:47.332 INFO kablam! --> src/bin/c14_generics_functions_impl_traits.rs:60:1 Oct 14 15:44:47.332 INFO kablam! | Oct 14 15:44:47.332 INFO kablam! 60 | struct GenericVal(T, ); // Generic type GenericVal Oct 14 15:44:47.332 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 14 15:44:47.332 INFO kablam! Oct 14 15:44:47.411 INFO kablam! warning: type `web_event` should have a camel case name such as `WebEvent` Oct 14 15:44:47.411 INFO kablam! --> src/bin/c3_custom_types_enums1.rs:6:1 Oct 14 15:44:47.411 INFO kablam! | Oct 14 15:44:47.411 INFO kablam! 6 | / enum web_event { Oct 14 15:44:47.411 INFO kablam! 7 | | // an enum can be unit like Oct 14 15:44:47.411 INFO kablam! 8 | | page_load, Oct 14 15:44:47.411 INFO kablam! 9 | | page_unload, Oct 14 15:44:47.411 INFO kablam! ... | Oct 14 15:44:47.411 INFO kablam! 14 | | click { x: i64, y: i64 }, Oct 14 15:44:47.411 INFO kablam! 15 | | } Oct 14 15:44:47.411 INFO kablam! | |_^ Oct 14 15:44:47.411 INFO kablam! | Oct 14 15:44:47.411 INFO kablam! = note: #[warn(non_camel_case_types)] on by default Oct 14 15:44:47.411 INFO kablam! Oct 14 15:44:47.411 INFO kablam! warning: variant `page_load` should have a camel case name such as `PageLoad` Oct 14 15:44:47.411 INFO kablam! --> src/bin/c3_custom_types_enums1.rs:8:5 Oct 14 15:44:47.411 INFO kablam! | Oct 14 15:44:47.411 INFO kablam! 8 | page_load, Oct 14 15:44:47.411 INFO kablam! | ^^^^^^^^^ Oct 14 15:44:47.411 INFO kablam! Oct 14 15:44:47.411 INFO kablam! warning: variant `page_unload` should have a camel case name such as `PageUnload` Oct 14 15:44:47.411 INFO kablam! --> src/bin/c3_custom_types_enums1.rs:9:5 Oct 14 15:44:47.411 INFO kablam! | Oct 14 15:44:47.411 INFO kablam! 9 | page_unload, Oct 14 15:44:47.411 INFO kablam! | ^^^^^^^^^^^ Oct 14 15:44:47.412 INFO kablam! Oct 14 15:44:47.412 INFO kablam! warning: variant `key_press` should have a camel case name such as `KeyPress` Oct 14 15:44:47.412 INFO kablam! --> src/bin/c3_custom_types_enums1.rs:11:5 Oct 14 15:44:47.412 INFO kablam! | Oct 14 15:44:47.412 INFO kablam! 11 | key_press(char), Oct 14 15:44:47.412 INFO kablam! | ^^^^^^^^^^^^^^^ Oct 14 15:44:47.418 INFO kablam! Oct 14 15:44:47.419 INFO kablam! warning: variant `paste` should have a camel case name such as `Paste` Oct 14 15:44:47.419 INFO kablam! --> src/bin/c3_custom_types_enums1.rs:12:5 Oct 14 15:44:47.419 INFO kablam! | Oct 14 15:44:47.419 INFO kablam! 12 | paste(String), Oct 14 15:44:47.419 INFO kablam! | ^^^^^^^^^^^^^ Oct 14 15:44:47.419 INFO kablam! Oct 14 15:44:47.419 INFO kablam! warning: variant `click` should have a camel case name such as `Click` Oct 14 15:44:47.419 INFO kablam! --> src/bin/c3_custom_types_enums1.rs:14:5 Oct 14 15:44:47.419 INFO kablam! | Oct 14 15:44:47.419 INFO kablam! 14 | click { x: i64, y: i64 }, Oct 14 15:44:47.419 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^ Oct 14 15:44:47.419 INFO kablam! Oct 14 15:44:48.712 INFO kablam! Finished dev [unoptimized + debuginfo] target(s) in 3.31s Oct 14 15:44:48.712 INFO kablam! su: No module specific data is present Oct 14 15:44:49.173 INFO running `"docker" "rm" "-f" "19122ee73bc1c849ab49454becd22d24e2f1d8e511a62f904e4326803f6d0f3c"` Oct 14 15:44:49.660 INFO blam! 19122ee73bc1c849ab49454becd22d24e2f1d8e511a62f904e4326803f6d0f3c Oct 14 15:44:49.666 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 14 15:44:49.950 INFO blam! 6b2cff215271e9cb8806515154aa45a1c5f02ca0af6080163fbab35340fc6f4f Oct 14 15:44:49.950 INFO running `"docker" "start" "-a" "6b2cff215271e9cb8806515154aa45a1c5f02ca0af6080163fbab35340fc6f4f"` Oct 14 15:44:50.747 INFO kablam! usermod: no changes Oct 14 15:44:50.775 INFO kablam! Finished dev [unoptimized + debuginfo] target(s) in 0.01s Oct 14 15:44:50.784 INFO kablam! Running /target/debug/deps/c10_modules_use_self_hierarchy-8f6b46b2bfa4625a Oct 14 15:44:50.788 INFO blam! Oct 14 15:44:50.788 INFO blam! running 0 tests Oct 14 15:44:50.788 INFO blam! Oct 14 15:44:50.788 INFO blam! test result: ok. 0 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out Oct 14 15:44:50.788 INFO blam! Oct 14 15:44:50.789 INFO kablam! Running /target/debug/deps/c10_modules_visibility-24915b53d8d0ba7d Oct 14 15:44:50.791 INFO blam! Oct 14 15:44:50.791 INFO blam! running 0 tests Oct 14 15:44:50.791 INFO blam! Oct 14 15:44:50.791 INFO blam! test result: ok. 0 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out Oct 14 15:44:50.791 INFO blam! Oct 14 15:44:50.792 INFO kablam! Running /target/debug/deps/c14_generics_functions_impl_traits-10843715f72c60c2 Oct 14 15:44:50.800 INFO kablam! Running /target/debug/deps/c1_formatted_print-df76d89072f3c371 Oct 14 15:44:50.800 INFO blam! Oct 14 15:44:50.800 INFO blam! running 0 tests Oct 14 15:44:50.800 INFO blam! Oct 14 15:44:50.800 INFO blam! test result: ok. 0 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out Oct 14 15:44:50.800 INFO blam! Oct 14 15:44:50.805 INFO blam! Oct 14 15:44:50.805 INFO blam! running 0 tests Oct 14 15:44:50.805 INFO blam! Oct 14 15:44:50.805 INFO blam! test result: ok. 0 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out Oct 14 15:44:50.805 INFO blam! Oct 14 15:44:50.805 INFO kablam! Running /target/debug/deps/c1_hello_world-25838c107e989183 Oct 14 15:44:50.806 INFO blam! Oct 14 15:44:50.806 INFO blam! running 0 tests Oct 14 15:44:50.806 INFO blam! Oct 14 15:44:50.806 INFO blam! test result: ok. 0 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out Oct 14 15:44:50.806 INFO blam! Oct 14 15:44:50.806 INFO kablam! Running /target/debug/deps/c2_primitives-ea2685766ba42bfb Oct 14 15:44:50.816 INFO blam! Oct 14 15:44:50.816 INFO blam! running 0 tests Oct 14 15:44:50.816 INFO blam! Oct 14 15:44:50.816 INFO blam! test result: ok. 0 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out Oct 14 15:44:50.816 INFO blam! Oct 14 15:44:50.817 INFO kablam! Running /target/debug/deps/c3_constants-4fe483cebe51a750 Oct 14 15:44:50.818 INFO blam! Oct 14 15:44:50.818 INFO blam! running 0 tests Oct 14 15:44:50.818 INFO blam! Oct 14 15:44:50.818 INFO blam! test result: ok. 0 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out Oct 14 15:44:50.818 INFO blam! Oct 14 15:44:50.819 INFO kablam! Running /target/debug/deps/c3_custom_types_enums1-d7148dc204a83099 Oct 14 15:44:50.822 INFO kablam! Running /target/debug/deps/c3_custom_types_enums2-7f3f44e0f3660eb1 Oct 14 15:44:50.822 INFO blam! Oct 14 15:44:50.822 INFO blam! running 0 tests Oct 14 15:44:50.822 INFO blam! Oct 14 15:44:50.822 INFO blam! test result: ok. 0 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out Oct 14 15:44:50.823 INFO blam! Oct 14 15:44:50.823 INFO blam! Oct 14 15:44:50.823 INFO blam! running 0 tests Oct 14 15:44:50.823 INFO blam! Oct 14 15:44:50.823 INFO blam! test result: ok. 0 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out Oct 14 15:44:50.823 INFO blam! Oct 14 15:44:50.823 INFO kablam! Running /target/debug/deps/c3_custom_types_structs-bb5ce0f19d2a092d Oct 14 15:44:50.828 INFO blam! Oct 14 15:44:50.828 INFO blam! running 0 tests Oct 14 15:44:50.828 INFO blam! Oct 14 15:44:50.828 INFO blam! test result: ok. 0 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out Oct 14 15:44:50.828 INFO blam! Oct 14 15:44:50.831 INFO kablam! Running /target/debug/deps/c4_variable_bindings-77ca3ed46b9ee286 Oct 14 15:44:50.835 INFO kablam! Running /target/debug/deps/c5_types-0ed0bccb7b08df60 Oct 14 15:44:50.835 INFO blam! Oct 14 15:44:50.835 INFO blam! running 0 tests Oct 14 15:44:50.835 INFO blam! Oct 14 15:44:50.835 INFO blam! test result: ok. 0 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out Oct 14 15:44:50.835 INFO blam! Oct 14 15:44:50.836 INFO blam! Oct 14 15:44:50.836 INFO blam! running 0 tests Oct 14 15:44:50.836 INFO blam! Oct 14 15:44:50.837 INFO blam! test result: ok. 0 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out Oct 14 15:44:50.837 INFO blam! Oct 14 15:44:50.837 INFO kablam! Running /target/debug/deps/c6_conversions-c8e2f18c7b9fe69d Oct 14 15:44:50.842 INFO kablam! Running /target/debug/deps/c8_flow_control_ifelse_loops-287fabcba5f15d3f Oct 14 15:44:50.842 INFO blam! Oct 14 15:44:50.843 INFO kablam! Running /target/debug/deps/c8_flow_control_match-0659b31909bf54b1 Oct 14 15:44:50.843 INFO blam! running 0 tests Oct 14 15:44:50.843 INFO blam! Oct 14 15:44:50.843 INFO blam! test result: ok. 0 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out Oct 14 15:44:50.843 INFO blam! Oct 14 15:44:50.843 INFO blam! Oct 14 15:44:50.843 INFO blam! running 0 tests Oct 14 15:44:50.843 INFO blam! Oct 14 15:44:50.843 INFO blam! test result: ok. 0 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out Oct 14 15:44:50.843 INFO blam! Oct 14 15:44:50.843 INFO blam! Oct 14 15:44:50.843 INFO kablam! Running /target/debug/deps/c9_functions_closures-06388902c1e65968 Oct 14 15:44:50.843 INFO blam! running 0 tests Oct 14 15:44:50.843 INFO blam! Oct 14 15:44:50.843 INFO blam! test result: ok. 0 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out Oct 14 15:44:50.843 INFO blam! Oct 14 15:44:50.844 INFO blam! Oct 14 15:44:50.844 INFO blam! running 0 tests Oct 14 15:44:50.844 INFO blam! Oct 14 15:44:50.844 INFO blam! test result: ok. 0 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out Oct 14 15:44:50.844 INFO blam! Oct 14 15:44:50.845 INFO kablam! Running /target/debug/deps/c9_functions_methods-51de4cdc37f30cd9 Oct 14 15:44:50.845 INFO blam! Oct 14 15:44:50.845 INFO blam! running 0 tests Oct 14 15:44:50.845 INFO blam! Oct 14 15:44:50.845 INFO blam! test result: ok. 0 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out Oct 14 15:44:50.845 INFO blam! Oct 14 15:44:50.847 INFO kablam! Running /target/debug/deps/c9_higher_order_diverging_functions-3cfc995b5d2a7755 Oct 14 15:44:50.848 INFO blam! Oct 14 15:44:50.848 INFO blam! running 0 tests Oct 14 15:44:50.848 INFO blam! Oct 14 15:44:50.848 INFO blam! test result: ok. 0 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out Oct 14 15:44:50.848 INFO blam! Oct 14 15:44:50.849 INFO kablam! su: No module specific data is present Oct 14 15:44:51.190 INFO running `"docker" "rm" "-f" "6b2cff215271e9cb8806515154aa45a1c5f02ca0af6080163fbab35340fc6f4f"` Oct 14 15:44:51.282 INFO blam! 6b2cff215271e9cb8806515154aa45a1c5f02ca0af6080163fbab35340fc6f4f