[INFO] fetching crate rt_ref 0.3.0... [INFO] testing rt_ref-0.3.0 against try#c2e32f1c9652b13ed99608599c1e855462f421f3 for pr-146098-8 [INFO] extracting crate rt_ref 0.3.0 into /workspace/builds/worker-5-tc2/source [INFO] removed /workspace/builds/worker-5-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-5-tc2/source/Cargo.toml [INFO] validating manifest of crates.io crate rt_ref 0.3.0 on toolchain c2e32f1c9652b13ed99608599c1e855462f421f3 [INFO] running `Command { std: CARGO_HOME="/workspace/cargo-home" RUSTUP_HOME="/workspace/rustup-home" "/workspace/cargo-home/bin/cargo" "+c2e32f1c9652b13ed99608599c1e855462f421f3" "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" "+c2e32f1c9652b13ed99608599c1e855462f421f3" "fetch" "--manifest-path" "Cargo.toml", kill_on_drop: false }` [INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-5-tc2/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-5-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:4848fb76d95f26979359cc7e45710b1dbc8f3acb7aeedee7c460d7702230f228" "/opt/rustwide/cargo-home/bin/cargo" "+c2e32f1c9652b13ed99608599c1e855462f421f3" "metadata" "--no-deps" "--format-version=1", kill_on_drop: false }` [INFO] [stdout] ef4555bfe0f117beb5674f5c0af22bc954a2e4a855bd62a3f51e708b5f059e24 [INFO] running `Command { std: "docker" "start" "-a" "ef4555bfe0f117beb5674f5c0af22bc954a2e4a855bd62a3f51e708b5f059e24", kill_on_drop: false }` [INFO] running `Command { std: "docker" "inspect" "ef4555bfe0f117beb5674f5c0af22bc954a2e4a855bd62a3f51e708b5f059e24", kill_on_drop: false }` [INFO] running `Command { std: "docker" "rm" "-f" "ef4555bfe0f117beb5674f5c0af22bc954a2e4a855bd62a3f51e708b5f059e24", kill_on_drop: false }` [INFO] [stdout] ef4555bfe0f117beb5674f5c0af22bc954a2e4a855bd62a3f51e708b5f059e24 [INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-5-tc2/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-5-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:4848fb76d95f26979359cc7e45710b1dbc8f3acb7aeedee7c460d7702230f228" "/opt/rustwide/cargo-home/bin/cargo" "+c2e32f1c9652b13ed99608599c1e855462f421f3" "build" "--frozen" "--message-format=json", kill_on_drop: false }` [INFO] [stdout] a4c73abf267b3e6f8ab0004e299a8224a384d07c2f928acf908a7c08564e563a [INFO] running `Command { std: "docker" "start" "-a" "a4c73abf267b3e6f8ab0004e299a8224a384d07c2f928acf908a7c08564e563a", 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.28s [INFO] running `Command { std: "docker" "inspect" "a4c73abf267b3e6f8ab0004e299a8224a384d07c2f928acf908a7c08564e563a", kill_on_drop: false }` [INFO] running `Command { std: "docker" "rm" "-f" "a4c73abf267b3e6f8ab0004e299a8224a384d07c2f928acf908a7c08564e563a", kill_on_drop: false }` [INFO] [stdout] a4c73abf267b3e6f8ab0004e299a8224a384d07c2f928acf908a7c08564e563a [INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-5-tc2/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-5-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:4848fb76d95f26979359cc7e45710b1dbc8f3acb7aeedee7c460d7702230f228" "/opt/rustwide/cargo-home/bin/cargo" "+c2e32f1c9652b13ed99608599c1e855462f421f3" "test" "--frozen" "--no-run" "--message-format=json", kill_on_drop: false }` [INFO] [stdout] 77798677cdec5d91bbedd81815204dee0b6df63f65549f69f86b80c24fdc5946 [INFO] running `Command { std: "docker" "start" "-a" "77798677cdec5d91bbedd81815204dee0b6df63f65549f69f86b80c24fdc5946", 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.89s [INFO] running `Command { std: "docker" "inspect" "77798677cdec5d91bbedd81815204dee0b6df63f65549f69f86b80c24fdc5946", kill_on_drop: false }` [INFO] running `Command { std: "docker" "rm" "-f" "77798677cdec5d91bbedd81815204dee0b6df63f65549f69f86b80c24fdc5946", kill_on_drop: false }` [INFO] [stdout] 77798677cdec5d91bbedd81815204dee0b6df63f65549f69f86b80c24fdc5946 [INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-5-tc2/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-5-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:4848fb76d95f26979359cc7e45710b1dbc8f3acb7aeedee7c460d7702230f228" "/opt/rustwide/cargo-home/bin/cargo" "+c2e32f1c9652b13ed99608599c1e855462f421f3" "test" "--frozen", kill_on_drop: false }` [INFO] [stdout] 01ee40bd1f064ac568d3cfeb58a3362e295f383820451c1070a996237b678ab6 [INFO] running `Command { std: "docker" "start" "-a" "01ee40bd1f064ac568d3cfeb58a3362e295f383820451c1070a996237b678ab6", 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.09s [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::debug ... 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::get_mut_allows_write ... ok [INFO] [stdout] test cell::tests::cloned_borrow_does_not_allow_write ... ok [INFO] [stdout] test cell::tests::allow_multiple_reads ... 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::ref_mut_map_preserves_flag ... ok [INFO] [stdout] test cell::tests::ref_mut_with_non_sized ... ok [INFO] [stdout] test cell::tests::ref_mut_with_trait_obj ... ok [INFO] [stdout] test cell::tests::ref_map_preserves_flag ... ok [INFO] [stdout] test cell::tests::ref_map_retains_borrow ... ok [INFO] [stdout] test cell::tests::ref_mut_map_box ... 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::try_read_and_write ... ok [INFO] [stdout] test cell::tests::ref_with_trait_obj ... ok [INFO] [stdout] test cell::tests::try_write_and_read ... ok [INFO] [stdout] test cell_ref::tests::try_clone_returns_err_when_ref_count_equals_isize_max ... 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 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 r#ref::tests::try_clone_returns_ok_when_ref_count_less_than_usize_max ... 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 cell::tests::try_write_and_write ... ok [INFO] [stdout] test ref_mut::tests::partial_eq_compares_value ... ok [INFO] [stdout] test cell_ref::tests::clone_returns_cell_ref_when_ref_count_less_than_isize_max ... ok [INFO] [stdout] test cell::tests::panic_write_and_read - should panic ... ok [INFO] [stdout] test cell::tests::panic_write_and_write - should panic ... ok [INFO] [stdout] test cell::tests::panic_read_and_write - should panic ... ok [INFO] [stdout] test cell::tests::ref_mut_map_retains_mut_borrow - should panic ... ok [INFO] [stdout] test cell_ref::tests::clone_panics_when_ref_count_equals_isize_max - should panic ... ok [INFO] [stdout] test r#ref::tests::clone_panics_when_ref_count_equals_usize_max - should panic ... ok [INFO] [stdout] test cell::tests::ref_mut_map_drops_borrow ... ok [INFO] [stdout] [INFO] [stdout] test result: ok. 39 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.03s [INFO] [stdout] [INFO] [stderr] Doc-tests rt_ref [INFO] [stdout] [INFO] [stdout] running 6 tests [INFO] [stdout] test src/cell_ref.rs - cell_ref::CellRef<'a,T>::map (line 74) ... 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 93) ... ok [INFO] [stdout] test src/cell_ref_mut.rs - cell_ref_mut::CellRefMut<'a,T>::map (line 58) ... ok [INFO] [stdout] test src/lib.rs - (line 44) ... ok [INFO] [stdout] test src/lib.rs - (line 17) ... 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] [stdout] all doctests ran in 0.73s; merged doctests compilation took 0.72s [INFO] running `Command { std: "docker" "inspect" "01ee40bd1f064ac568d3cfeb58a3362e295f383820451c1070a996237b678ab6", kill_on_drop: false }` [INFO] running `Command { std: "docker" "rm" "-f" "01ee40bd1f064ac568d3cfeb58a3362e295f383820451c1070a996237b678ab6", kill_on_drop: false }` [INFO] [stdout] 01ee40bd1f064ac568d3cfeb58a3362e295f383820451c1070a996237b678ab6