[INFO] fetching crate rt_ref 0.3.0... [INFO] testing rt_ref-0.3.0 against try#2440211fe03bc45c89b6dc1a3df18382ce91e32b for pr-146098-1 [INFO] extracting crate rt_ref 0.3.0 into /workspace/builds/worker-2-tc2/source [INFO] removed /workspace/builds/worker-2-tc2/source/.cargo/config.toml [INFO] started tweaking crates.io crate rt_ref 0.3.0 [INFO] finished tweaking crates.io crate rt_ref 0.3.0 [INFO] tweaked toml for crates.io crate rt_ref 0.3.0 written to /workspace/builds/worker-2-tc2/source/Cargo.toml [INFO] validating manifest of crates.io crate rt_ref 0.3.0 on toolchain 2440211fe03bc45c89b6dc1a3df18382ce91e32b [INFO] running `Command { std: CARGO_HOME="/workspace/cargo-home" RUSTUP_HOME="/workspace/rustup-home" "/workspace/cargo-home/bin/cargo" "+2440211fe03bc45c89b6dc1a3df18382ce91e32b" "metadata" "--manifest-path" "Cargo.toml" "--no-deps", kill_on_drop: false }` [INFO] crate crates.io crate rt_ref 0.3.0 already has a lockfile, it will not be regenerated [INFO] running `Command { std: CARGO_HOME="/workspace/cargo-home" RUSTUP_HOME="/workspace/rustup-home" "/workspace/cargo-home/bin/cargo" "+2440211fe03bc45c89b6dc1a3df18382ce91e32b" "fetch" "--manifest-path" "Cargo.toml", kill_on_drop: false }` [INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-2-tc2/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-2-tc2/source:/opt/rustwide/workdir:ro,Z" "-v" "/var/lib/crater-agent-workspace/cargo-home:/opt/rustwide/cargo-home:ro,Z" "-v" "/var/lib/crater-agent-workspace/rustup-home:/opt/rustwide/rustup-home:ro,Z" "-e" "SOURCE_DIR=/opt/rustwide/workdir" "-e" "CARGO_TARGET_DIR=/opt/rustwide/target" "-e" "CARGO_HOME=/opt/rustwide/cargo-home" "-e" "RUSTUP_HOME=/opt/rustwide/rustup-home" "-w" "/opt/rustwide/workdir" "-m" "1610612736" "--user" "0:0" "--network" "none" "ghcr.io/rust-lang/crates-build-env/linux@sha256:e90291280db7d1fac5b66fc6dad9f9662629e7365a55743daf9bdf73ebc4ea79" "/opt/rustwide/cargo-home/bin/cargo" "+2440211fe03bc45c89b6dc1a3df18382ce91e32b" "metadata" "--no-deps" "--format-version=1", kill_on_drop: false }` [INFO] [stdout] 0749b968a4121dc7b4ca2cdd71609e77dd28dfa60785021ac95bd93f8b208182 [INFO] running `Command { std: "docker" "start" "-a" "0749b968a4121dc7b4ca2cdd71609e77dd28dfa60785021ac95bd93f8b208182", kill_on_drop: false }` [INFO] running `Command { std: "docker" "inspect" "0749b968a4121dc7b4ca2cdd71609e77dd28dfa60785021ac95bd93f8b208182", kill_on_drop: false }` [INFO] running `Command { std: "docker" "rm" "-f" "0749b968a4121dc7b4ca2cdd71609e77dd28dfa60785021ac95bd93f8b208182", kill_on_drop: false }` [INFO] [stdout] 0749b968a4121dc7b4ca2cdd71609e77dd28dfa60785021ac95bd93f8b208182 [INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-2-tc2/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-2-tc2/source:/opt/rustwide/workdir:ro,Z" "-v" "/var/lib/crater-agent-workspace/cargo-home:/opt/rustwide/cargo-home:ro,Z" "-v" "/var/lib/crater-agent-workspace/rustup-home:/opt/rustwide/rustup-home:ro,Z" "-e" "SOURCE_DIR=/opt/rustwide/workdir" "-e" "CARGO_TARGET_DIR=/opt/rustwide/target" "-e" "CARGO_INCREMENTAL=0" "-e" "RUST_BACKTRACE=full" "-e" "RUSTFLAGS=--cap-lints=forbid" "-e" "RUSTDOCFLAGS=--cap-lints=forbid" "-e" "CARGO_HOME=/opt/rustwide/cargo-home" "-e" "RUSTUP_HOME=/opt/rustwide/rustup-home" "-w" "/opt/rustwide/workdir" "-m" "1610612736" "--user" "0:0" "--network" "none" "ghcr.io/rust-lang/crates-build-env/linux@sha256:e90291280db7d1fac5b66fc6dad9f9662629e7365a55743daf9bdf73ebc4ea79" "/opt/rustwide/cargo-home/bin/cargo" "+2440211fe03bc45c89b6dc1a3df18382ce91e32b" "build" "--frozen" "--message-format=json", kill_on_drop: false }` [INFO] [stdout] 39fc582e593be8babf96bb551ebdb06bc547c652c8940761a5bbbc0165fcd962 [INFO] running `Command { std: "docker" "start" "-a" "39fc582e593be8babf96bb551ebdb06bc547c652c8940761a5bbbc0165fcd962", kill_on_drop: false }` [INFO] [stderr] Compiling rt_ref v0.3.0 (/opt/rustwide/workdir) [INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing [INFO] [stdout] --> src/cell.rs:48:19 [INFO] [stdout] | [INFO] [stdout] 48 | pub fn borrow(&self) -> CellRef { [INFO] [stdout] | ^^^^^ ^^^^^^^^^^ the same lifetime is hidden here [INFO] [stdout] | | [INFO] [stdout] | the lifetime is elided here [INFO] [stdout] | [INFO] [stdout] = help: the same lifetime is referred to in inconsistent ways, making the signature confusing [INFO] [stdout] = note: `#[warn(mismatched_lifetime_syntaxes)]` on by default [INFO] [stdout] help: use `'_` for type paths [INFO] [stdout] | [INFO] [stdout] 48 | pub fn borrow(&self) -> CellRef<'_, T> { [INFO] [stdout] | +++ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing [INFO] [stdout] --> src/cell.rs:63:23 [INFO] [stdout] | [INFO] [stdout] 63 | pub fn try_borrow(&self) -> Result, BorrowFail> { [INFO] [stdout] | ^^^^^ ^^^^^^^^^^ the same lifetime is hidden here [INFO] [stdout] | | [INFO] [stdout] | the lifetime is elided here [INFO] [stdout] | [INFO] [stdout] = help: the same lifetime is referred to in inconsistent ways, making the signature confusing [INFO] [stdout] help: use `'_` for type paths [INFO] [stdout] | [INFO] [stdout] 63 | pub fn try_borrow(&self) -> Result, BorrowFail> { [INFO] [stdout] | +++ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing [INFO] [stdout] --> src/cell.rs:82:23 [INFO] [stdout] | [INFO] [stdout] 82 | pub fn borrow_mut(&self) -> CellRefMut { [INFO] [stdout] | ^^^^^ ^^^^^^^^^^^^^ the same lifetime is hidden here [INFO] [stdout] | | [INFO] [stdout] | the lifetime is elided here [INFO] [stdout] | [INFO] [stdout] = help: the same lifetime is referred to in inconsistent ways, making the signature confusing [INFO] [stdout] help: use `'_` for type paths [INFO] [stdout] | [INFO] [stdout] 82 | pub fn borrow_mut(&self) -> CellRefMut<'_, T> { [INFO] [stdout] | +++ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing [INFO] [stdout] --> src/cell.rs:97:27 [INFO] [stdout] | [INFO] [stdout] 97 | pub fn try_borrow_mut(&self) -> Result, BorrowFail> { [INFO] [stdout] | ^^^^^ ^^^^^^^^^^^^^ the same lifetime is hidden here [INFO] [stdout] | | [INFO] [stdout] | the lifetime is elided here [INFO] [stdout] | [INFO] [stdout] = help: the same lifetime is referred to in inconsistent ways, making the signature confusing [INFO] [stdout] help: use `'_` for type paths [INFO] [stdout] | [INFO] [stdout] 97 | pub fn try_borrow_mut(&self) -> Result, BorrowFail> { [INFO] [stdout] | +++ [INFO] [stdout] [INFO] [stdout] [INFO] [stderr] Finished `dev` profile [unoptimized + debuginfo] target(s) in 0.27s [INFO] running `Command { std: "docker" "inspect" "39fc582e593be8babf96bb551ebdb06bc547c652c8940761a5bbbc0165fcd962", kill_on_drop: false }` [INFO] running `Command { std: "docker" "rm" "-f" "39fc582e593be8babf96bb551ebdb06bc547c652c8940761a5bbbc0165fcd962", kill_on_drop: false }` [INFO] [stdout] 39fc582e593be8babf96bb551ebdb06bc547c652c8940761a5bbbc0165fcd962 [INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-2-tc2/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-2-tc2/source:/opt/rustwide/workdir:ro,Z" "-v" "/var/lib/crater-agent-workspace/cargo-home:/opt/rustwide/cargo-home:ro,Z" "-v" "/var/lib/crater-agent-workspace/rustup-home:/opt/rustwide/rustup-home:ro,Z" "-e" "SOURCE_DIR=/opt/rustwide/workdir" "-e" "CARGO_TARGET_DIR=/opt/rustwide/target" "-e" "CARGO_INCREMENTAL=0" "-e" "RUST_BACKTRACE=full" "-e" "RUSTFLAGS=--cap-lints=forbid" "-e" "RUSTDOCFLAGS=--cap-lints=forbid" "-e" "CARGO_HOME=/opt/rustwide/cargo-home" "-e" "RUSTUP_HOME=/opt/rustwide/rustup-home" "-w" "/opt/rustwide/workdir" "-m" "1610612736" "--user" "0:0" "--network" "none" "ghcr.io/rust-lang/crates-build-env/linux@sha256:e90291280db7d1fac5b66fc6dad9f9662629e7365a55743daf9bdf73ebc4ea79" "/opt/rustwide/cargo-home/bin/cargo" "+2440211fe03bc45c89b6dc1a3df18382ce91e32b" "test" "--frozen" "--no-run" "--message-format=json", kill_on_drop: false }` [INFO] [stdout] 7e2fd025bb251c8bbd2c130a3e49d30c9cd0572a991f37118c83713e70dc7753 [INFO] running `Command { std: "docker" "start" "-a" "7e2fd025bb251c8bbd2c130a3e49d30c9cd0572a991f37118c83713e70dc7753", kill_on_drop: false }` [INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing [INFO] [stdout] --> src/cell.rs:48:19 [INFO] [stdout] | [INFO] [stdout] 48 | pub fn borrow(&self) -> CellRef { [INFO] [stdout] | ^^^^^ ^^^^^^^^^^ the same lifetime is hidden here [INFO] [stdout] | | [INFO] [stdout] | the lifetime is elided here [INFO] [stdout] | [INFO] [stdout] = help: the same lifetime is referred to in inconsistent ways, making the signature confusing [INFO] [stdout] = note: `#[warn(mismatched_lifetime_syntaxes)]` on by default [INFO] [stdout] help: use `'_` for type paths [INFO] [stdout] | [INFO] [stdout] 48 | pub fn borrow(&self) -> CellRef<'_, T> { [INFO] [stdout] | +++ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing [INFO] [stdout] --> src/cell.rs:63:23 [INFO] [stdout] | [INFO] [stdout] 63 | pub fn try_borrow(&self) -> Result, BorrowFail> { [INFO] [stdout] | ^^^^^ ^^^^^^^^^^ the same lifetime is hidden here [INFO] [stdout] | | [INFO] [stdout] | the lifetime is elided here [INFO] [stdout] | [INFO] [stdout] = help: the same lifetime is referred to in inconsistent ways, making the signature confusing [INFO] [stdout] help: use `'_` for type paths [INFO] [stdout] | [INFO] [stdout] 63 | pub fn try_borrow(&self) -> Result, BorrowFail> { [INFO] [stdout] | +++ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing [INFO] [stdout] --> src/cell.rs:82:23 [INFO] [stdout] | [INFO] [stdout] 82 | pub fn borrow_mut(&self) -> CellRefMut { [INFO] [stdout] | ^^^^^ ^^^^^^^^^^^^^ the same lifetime is hidden here [INFO] [stdout] | | [INFO] [stdout] | the lifetime is elided here [INFO] [stdout] | [INFO] [stdout] = help: the same lifetime is referred to in inconsistent ways, making the signature confusing [INFO] [stdout] help: use `'_` for type paths [INFO] [stdout] | [INFO] [stdout] 82 | pub fn borrow_mut(&self) -> CellRefMut<'_, T> { [INFO] [stdout] | +++ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing [INFO] [stdout] --> src/cell.rs:97:27 [INFO] [stdout] | [INFO] [stdout] 97 | pub fn try_borrow_mut(&self) -> Result, BorrowFail> { [INFO] [stdout] | ^^^^^ ^^^^^^^^^^^^^ the same lifetime is hidden here [INFO] [stdout] | | [INFO] [stdout] | the lifetime is elided here [INFO] [stdout] | [INFO] [stdout] = help: the same lifetime is referred to in inconsistent ways, making the signature confusing [INFO] [stdout] help: use `'_` for type paths [INFO] [stdout] | [INFO] [stdout] 97 | pub fn try_borrow_mut(&self) -> Result, BorrowFail> { [INFO] [stdout] | +++ [INFO] [stdout] [INFO] [stdout] [INFO] [stderr] Compiling rt_ref v0.3.0 (/opt/rustwide/workdir) [INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing [INFO] [stdout] --> src/cell.rs:48:19 [INFO] [stdout] | [INFO] [stdout] 48 | pub fn borrow(&self) -> CellRef { [INFO] [stdout] | ^^^^^ ^^^^^^^^^^ the same lifetime is hidden here [INFO] [stdout] | | [INFO] [stdout] | the lifetime is elided here [INFO] [stdout] | [INFO] [stdout] = help: the same lifetime is referred to in inconsistent ways, making the signature confusing [INFO] [stdout] = note: `#[warn(mismatched_lifetime_syntaxes)]` on by default [INFO] [stdout] help: use `'_` for type paths [INFO] [stdout] | [INFO] [stdout] 48 | pub fn borrow(&self) -> CellRef<'_, T> { [INFO] [stdout] | +++ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing [INFO] [stdout] --> src/cell.rs:63:23 [INFO] [stdout] | [INFO] [stdout] 63 | pub fn try_borrow(&self) -> Result, BorrowFail> { [INFO] [stdout] | ^^^^^ ^^^^^^^^^^ the same lifetime is hidden here [INFO] [stdout] | | [INFO] [stdout] | the lifetime is elided here [INFO] [stdout] | [INFO] [stdout] = help: the same lifetime is referred to in inconsistent ways, making the signature confusing [INFO] [stdout] help: use `'_` for type paths [INFO] [stdout] | [INFO] [stdout] 63 | pub fn try_borrow(&self) -> Result, BorrowFail> { [INFO] [stdout] | +++ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing [INFO] [stdout] --> src/cell.rs:82:23 [INFO] [stdout] | [INFO] [stdout] 82 | pub fn borrow_mut(&self) -> CellRefMut { [INFO] [stdout] | ^^^^^ ^^^^^^^^^^^^^ the same lifetime is hidden here [INFO] [stdout] | | [INFO] [stdout] | the lifetime is elided here [INFO] [stdout] | [INFO] [stdout] = help: the same lifetime is referred to in inconsistent ways, making the signature confusing [INFO] [stdout] help: use `'_` for type paths [INFO] [stdout] | [INFO] [stdout] 82 | pub fn borrow_mut(&self) -> CellRefMut<'_, T> { [INFO] [stdout] | +++ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing [INFO] [stdout] --> src/cell.rs:97:27 [INFO] [stdout] | [INFO] [stdout] 97 | pub fn try_borrow_mut(&self) -> Result, BorrowFail> { [INFO] [stdout] | ^^^^^ ^^^^^^^^^^^^^ the same lifetime is hidden here [INFO] [stdout] | | [INFO] [stdout] | the lifetime is elided here [INFO] [stdout] | [INFO] [stdout] = help: the same lifetime is referred to in inconsistent ways, making the signature confusing [INFO] [stdout] help: use `'_` for type paths [INFO] [stdout] | [INFO] [stdout] 97 | pub fn try_borrow_mut(&self) -> Result, BorrowFail> { [INFO] [stdout] | +++ [INFO] [stdout] [INFO] [stdout] [INFO] [stderr] Finished `test` profile [unoptimized + debuginfo] target(s) in 0.57s [INFO] running `Command { std: "docker" "inspect" "7e2fd025bb251c8bbd2c130a3e49d30c9cd0572a991f37118c83713e70dc7753", kill_on_drop: false }` [INFO] running `Command { std: "docker" "rm" "-f" "7e2fd025bb251c8bbd2c130a3e49d30c9cd0572a991f37118c83713e70dc7753", kill_on_drop: false }` [INFO] [stdout] 7e2fd025bb251c8bbd2c130a3e49d30c9cd0572a991f37118c83713e70dc7753 [INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-2-tc2/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-2-tc2/source:/opt/rustwide/workdir:ro,Z" "-v" "/var/lib/crater-agent-workspace/cargo-home:/opt/rustwide/cargo-home:ro,Z" "-v" "/var/lib/crater-agent-workspace/rustup-home:/opt/rustwide/rustup-home:ro,Z" "-e" "SOURCE_DIR=/opt/rustwide/workdir" "-e" "CARGO_TARGET_DIR=/opt/rustwide/target" "-e" "CARGO_INCREMENTAL=0" "-e" "RUST_BACKTRACE=full" "-e" "RUSTFLAGS=--cap-lints=forbid" "-e" "RUSTDOCFLAGS=--cap-lints=forbid" "-e" "CARGO_HOME=/opt/rustwide/cargo-home" "-e" "RUSTUP_HOME=/opt/rustwide/rustup-home" "-w" "/opt/rustwide/workdir" "-m" "1610612736" "--user" "0:0" "--network" "none" "ghcr.io/rust-lang/crates-build-env/linux@sha256:e90291280db7d1fac5b66fc6dad9f9662629e7365a55743daf9bdf73ebc4ea79" "/opt/rustwide/cargo-home/bin/cargo" "+2440211fe03bc45c89b6dc1a3df18382ce91e32b" "test" "--frozen", kill_on_drop: false }` [INFO] [stdout] 0c57cc1a67917fa4410b081e9bacd4a0d90abe4d2750fef3a1ffac8c4cb5ae6e [INFO] running `Command { std: "docker" "start" "-a" "0c57cc1a67917fa4410b081e9bacd4a0d90abe4d2750fef3a1ffac8c4cb5ae6e", kill_on_drop: false }` [INFO] [stderr] warning: hiding a lifetime that's elided elsewhere is confusing [INFO] [stderr] --> src/cell.rs:48:19 [INFO] [stderr] | [INFO] [stderr] 48 | pub fn borrow(&self) -> CellRef { [INFO] [stderr] | ^^^^^ ^^^^^^^^^^ the same lifetime is hidden here [INFO] [stderr] | | [INFO] [stderr] | the lifetime is elided here [INFO] [stderr] | [INFO] [stderr] = help: the same lifetime is referred to in inconsistent ways, making the signature confusing [INFO] [stderr] = note: `#[warn(mismatched_lifetime_syntaxes)]` on by default [INFO] [stderr] help: use `'_` for type paths [INFO] [stderr] | [INFO] [stderr] 48 | pub fn borrow(&self) -> CellRef<'_, T> { [INFO] [stderr] | +++ [INFO] [stderr] [INFO] [stderr] warning: hiding a lifetime that's elided elsewhere is confusing [INFO] [stderr] --> src/cell.rs:63:23 [INFO] [stderr] | [INFO] [stderr] 63 | pub fn try_borrow(&self) -> Result, BorrowFail> { [INFO] [stderr] | ^^^^^ ^^^^^^^^^^ the same lifetime is hidden here [INFO] [stderr] | | [INFO] [stderr] | the lifetime is elided here [INFO] [stderr] | [INFO] [stderr] = help: the same lifetime is referred to in inconsistent ways, making the signature confusing [INFO] [stderr] help: use `'_` for type paths [INFO] [stderr] | [INFO] [stderr] 63 | pub fn try_borrow(&self) -> Result, BorrowFail> { [INFO] [stderr] | +++ [INFO] [stderr] [INFO] [stderr] warning: hiding a lifetime that's elided elsewhere is confusing [INFO] [stderr] --> src/cell.rs:82:23 [INFO] [stderr] | [INFO] [stderr] 82 | pub fn borrow_mut(&self) -> CellRefMut { [INFO] [stderr] | ^^^^^ ^^^^^^^^^^^^^ the same lifetime is hidden here [INFO] [stderr] | | [INFO] [stderr] | the lifetime is elided here [INFO] [stderr] | [INFO] [stderr] = help: the same lifetime is referred to in inconsistent ways, making the signature confusing [INFO] [stderr] help: use `'_` for type paths [INFO] [stderr] | [INFO] [stderr] 82 | pub fn borrow_mut(&self) -> CellRefMut<'_, T> { [INFO] [stderr] | +++ [INFO] [stderr] [INFO] [stderr] warning: hiding a lifetime that's elided elsewhere is confusing [INFO] [stderr] --> src/cell.rs:97:27 [INFO] [stderr] | [INFO] [stderr] 97 | pub fn try_borrow_mut(&self) -> Result, BorrowFail> { [INFO] [stderr] | ^^^^^ ^^^^^^^^^^^^^ the same lifetime is hidden here [INFO] [stderr] | | [INFO] [stderr] | the lifetime is elided here [INFO] [stderr] | [INFO] [stderr] = help: the same lifetime is referred to in inconsistent ways, making the signature confusing [INFO] [stderr] help: use `'_` for type paths [INFO] [stderr] | [INFO] [stderr] 97 | pub fn try_borrow_mut(&self) -> Result, BorrowFail> { [INFO] [stderr] | +++ [INFO] [stderr] [INFO] [stderr] warning: `rt_ref` (lib) generated 4 warnings (run `cargo fix --lib -p rt_ref` to apply 4 suggestions) [INFO] [stderr] warning: `rt_ref` (lib test) generated 4 warnings (4 duplicates) [INFO] [stderr] Finished `test` profile [unoptimized + debuginfo] target(s) in 0.05s [INFO] [stderr] Running unittests src/lib.rs (/opt/rustwide/target/debug/deps/rt_ref-a69332efa629c016) [INFO] [stdout] [INFO] [stdout] running 39 tests [INFO] [stdout] test cell::tests::allow_clone_reads ... ok [INFO] [stdout] test cell::tests::cloned_borrow_does_not_allow_write ... ok [INFO] [stdout] test cell::tests::into_inner_returns_value ... ok [INFO] [stdout] test cell::tests::allow_single_write ... ok [INFO] [stdout] test cell::tests::ref_map_box ... ok [INFO] [stdout] test cell::tests::ref_map_drops_borrow ... ok [INFO] [stdout] test cell::tests::debug ... ok [INFO] [stdout] test cell::tests::ref_map_preserves_flag ... ok [INFO] [stdout] test cell::tests::ref_mut_map_box ... ok [INFO] [stdout] test cell::tests::ref_mut_map_drops_borrow ... ok [INFO] [stdout] test cell::tests::ref_mut_map_preserves_flag ... ok [INFO] [stdout] test cell::tests::ref_mut_with_non_sized ... ok [INFO] [stdout] test cell::tests::ref_with_non_sized_clone ... ok [INFO] [stdout] test cell::tests::ref_with_non_sized ... ok [INFO] [stdout] test cell::tests::ref_map_retains_borrow ... ok [INFO] [stdout] test cell::tests::try_write_and_write ... ok [INFO] [stdout] test cell_ref::tests::clone_returns_cell_ref_when_ref_count_less_than_isize_max ... ok [INFO] [stdout] test cell_ref::tests::try_clone_returns_err_when_ref_count_equals_isize_max ... ok [INFO] [stdout] test r#ref::tests::debug_includes_inner_field ... ok [INFO] [stdout] test r#ref::tests::partial_eq_compares_value ... ok [INFO] [stdout] test r#ref::tests::try_clone_returns_err_when_ref_count_equals_usize_max ... ok [INFO] [stdout] test cell::tests::ref_mut_with_trait_obj ... ok [INFO] [stdout] test ref_mut::tests::debug_includes_inner_field ... ok [INFO] [stdout] test ref_mut::tests::deref_mut_returns_value ... ok [INFO] [stdout] test r#ref::tests::try_clone_returns_ok_when_ref_count_less_than_usize_max ... ok [INFO] [stdout] test ref_mut::tests::partial_eq_compares_value ... ok [INFO] [stdout] test cell::tests::get_mut_allows_write ... ok [INFO] [stdout] test cell_ref::tests::try_clone_returns_ok_when_ref_count_less_than_isize_max ... ok [INFO] [stdout] test r#ref::tests::clone_increments_cell_ref_count ... ok [INFO] [stdout] test cell::tests::allow_multiple_reads ... ok [INFO] [stdout] test cell::tests::try_read_and_write ... ok [INFO] [stdout] test cell::tests::try_write_and_read ... ok [INFO] [stdout] test cell::tests::ref_with_trait_obj ... ok [INFO] [stdout] test cell::tests::panic_write_and_read - should panic ... ok [INFO] [stderr] Doc-tests rt_ref [INFO] [stdout] test cell::tests::panic_write_and_write - should panic ... ok [INFO] [stdout] test cell_ref::tests::clone_panics_when_ref_count_equals_isize_max - should panic ... ok [INFO] [stdout] test cell::tests::ref_mut_map_retains_mut_borrow - should panic ... ok [INFO] [stdout] test cell::tests::panic_read_and_write - should panic ... ok [INFO] [stdout] test r#ref::tests::clone_panics_when_ref_count_equals_usize_max - should panic ... ok [INFO] [stdout] [INFO] [stdout] test result: ok. 39 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.06s [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] running 6 tests [INFO] [stdout] test src/cell_ref_mut.rs - cell_ref_mut::CellRefMut<'a,T>::map (line 58) ... ok [INFO] [stdout] test src/cell_ref.rs - cell_ref::CellRef<'a,T>::map (line 93) ... ok [INFO] [stdout] test src/cell_ref_mut.rs - cell_ref_mut::CellRefMut<'a,T>::map (line 39) ... ok [INFO] [stdout] test src/cell_ref.rs - cell_ref::CellRef<'a,T>::map (line 74) ... ok [INFO] [stdout] test src/lib.rs - (line 17) ... ok [INFO] [stdout] test src/lib.rs - (line 44) ... ok [INFO] [stdout] [INFO] [stdout] test result: ok. 6 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.01s [INFO] [stdout] [INFO] running `Command { std: "docker" "inspect" "0c57cc1a67917fa4410b081e9bacd4a0d90abe4d2750fef3a1ffac8c4cb5ae6e", kill_on_drop: false }` [INFO] running `Command { std: "docker" "rm" "-f" "0c57cc1a67917fa4410b081e9bacd4a0d90abe4d2750fef3a1ffac8c4cb5ae6e", kill_on_drop: false }` [INFO] [stdout] 0c57cc1a67917fa4410b081e9bacd4a0d90abe4d2750fef3a1ffac8c4cb5ae6e