[INFO] fetching crate sashay 0.5.0...
[INFO] testing sashay-0.5.0 against 1.95.0 for beta-1.96-2
[INFO] extracting crate sashay 0.5.0 into /workspace/builds/worker-5-tc1/source
[INFO] started tweaking crates.io crate sashay 0.5.0
[INFO] finished tweaking crates.io crate sashay 0.5.0
[INFO] tweaked toml for crates.io crate sashay 0.5.0 written to /workspace/builds/worker-5-tc1/source/Cargo.toml
[INFO] validating manifest of crates.io crate sashay 0.5.0 on toolchain 1.95.0
[INFO] running `Command { std: CARGO_HOME="/workspace/cargo-home" RUSTUP_HOME="/workspace/rustup-home" "/workspace/cargo-home/bin/cargo" "+1.95.0" "metadata" "--manifest-path" "Cargo.toml" "--no-deps", kill_on_drop: false }`
[INFO] running `Command { std: CARGO_HOME="/workspace/cargo-home" RUSTUP_HOME="/workspace/rustup-home" "/workspace/cargo-home/bin/cargo" "+1.95.0" "generate-lockfile" "--manifest-path" "Cargo.toml", kill_on_drop: false }`
[INFO] running `Command { std: CARGO_HOME="/workspace/cargo-home" RUSTUP_HOME="/workspace/rustup-home" "/workspace/cargo-home/bin/cargo" "+1.95.0" "fetch" "--manifest-path" "Cargo.toml", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-5-tc1/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-5-tc1/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:d429b63d4308055ea97f60fb1d3dfca48854a00942f1bd2ad806beaf015945ec" "/opt/rustwide/cargo-home/bin/cargo" "+1.95.0" "metadata" "--no-deps" "--format-version=1", kill_on_drop: false }`
[INFO] [stdout] 38a1ecca457b785cf9d02e3cd3d3bf9e048ce628092403eb5fd1a1455582ca6e
[INFO] running `Command { std: "docker" "start" "-a" "38a1ecca457b785cf9d02e3cd3d3bf9e048ce628092403eb5fd1a1455582ca6e", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "inspect" "38a1ecca457b785cf9d02e3cd3d3bf9e048ce628092403eb5fd1a1455582ca6e", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "rm" "-f" "38a1ecca457b785cf9d02e3cd3d3bf9e048ce628092403eb5fd1a1455582ca6e", kill_on_drop: false }`
[INFO] [stdout] 38a1ecca457b785cf9d02e3cd3d3bf9e048ce628092403eb5fd1a1455582ca6e
[INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-5-tc1/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-5-tc1/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=warn" "-e" "RUSTDOCFLAGS=--cap-lints=warn" "-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:d429b63d4308055ea97f60fb1d3dfca48854a00942f1bd2ad806beaf015945ec" "/opt/rustwide/cargo-home/bin/cargo" "+1.95.0" "build" "--frozen" "--message-format=json", kill_on_drop: false }`
[INFO] [stdout] b27c61df41fda3a82605b88d4e4d2bbc47a068a59a2dde3cd685ba27c14e669f
[INFO] running `Command { std: "docker" "start" "-a" "b27c61df41fda3a82605b88d4e4d2bbc47a068a59a2dde3cd685ba27c14e669f", kill_on_drop: false }`
[INFO] [stderr]    Compiling sashay v0.5.0 (/opt/rustwide/workdir)
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/any_mut.rs:189:19
[INFO] [stdout]     |
[INFO] [stdout] 189 |     pub fn borrow(&self) -> AnyRef {
[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] 189 |     pub fn borrow(&self) -> AnyRef<'_> {
[INFO] [stdout]     |                                   ++++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/any_mut.rs:213:23
[INFO] [stdout]     |
[INFO] [stdout] 213 |     pub fn borrow_mut(&mut self) -> AnyMut {
[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] 213 |     pub fn borrow_mut(&mut self) -> AnyMut<'_> {
[INFO] [stdout]     |                                           ++++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/any_slice_mut.rs:228:19
[INFO] [stdout]     |
[INFO] [stdout] 228 |     pub fn borrow(&self) -> AnySliceRef {
[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] 228 |     pub fn borrow(&self) -> AnySliceRef<'_> {
[INFO] [stdout]     |                                        ++++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/any_slice_mut.rs:259:23
[INFO] [stdout]     |
[INFO] [stdout] 259 |     pub fn borrow_mut(&mut self) -> AnySliceMut {
[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] 259 |     pub fn borrow_mut(&mut self) -> AnySliceMut<'_> {
[INFO] [stdout]     |                                                ++++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/any_slice_mut.rs:273:16
[INFO] [stdout]     |
[INFO] [stdout] 273 |     pub fn get(&self, index: usize) -> Option<AnyRef> {
[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] 273 |     pub fn get(&self, index: usize) -> Option<AnyRef<'_>> {
[INFO] [stdout]     |                                                     ++++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/any_slice_mut.rs:307:20
[INFO] [stdout]     |
[INFO] [stdout] 307 |     pub fn get_mut(&mut self, index: usize) -> Option<AnyMut> {
[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] 307 |     pub fn get_mut(&mut self, index: usize) -> Option<AnyMut<'_>> {
[INFO] [stdout]     |                                                             ++++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/any_slice_mut.rs:346:24
[INFO] [stdout]     |
[INFO] [stdout] 346 |     pub fn subslice<R>(&self, range: R) -> AnySliceRef
[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] 346 |     pub fn subslice<R>(&self, range: R) -> AnySliceRef<'_>
[INFO] [stdout]     |                                                       ++++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/any_slice_mut.rs:391:28
[INFO] [stdout]     |
[INFO] [stdout] 391 |     pub fn subslice_mut<R>(&mut self, range: R) -> AnySliceMut
[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] 391 |     pub fn subslice_mut<R>(&mut self, range: R) -> AnySliceMut<'_>
[INFO] [stdout]     |                                                               ++++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/any_slice_ref.rs:186:16
[INFO] [stdout]     |
[INFO] [stdout] 186 |     pub fn get(&self, index: usize) -> Option<AnyRef> {
[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] 186 |     pub fn get(&self, index: usize) -> Option<AnyRef<'_>> {
[INFO] [stdout]     |                                                     ++++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/any_slice_ref.rs:222:24
[INFO] [stdout]     |
[INFO] [stdout] 222 |     pub fn subslice<R>(&self, range: R) -> AnySliceRef
[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] 222 |     pub fn subslice<R>(&self, range: R) -> AnySliceRef<'_>
[INFO] [stdout]     |                                                       ++++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stderr]     Finished `dev` profile [unoptimized + debuginfo] target(s) in 0.23s
[INFO] running `Command { std: "docker" "inspect" "b27c61df41fda3a82605b88d4e4d2bbc47a068a59a2dde3cd685ba27c14e669f", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "rm" "-f" "b27c61df41fda3a82605b88d4e4d2bbc47a068a59a2dde3cd685ba27c14e669f", kill_on_drop: false }`
[INFO] [stdout] b27c61df41fda3a82605b88d4e4d2bbc47a068a59a2dde3cd685ba27c14e669f
[INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-5-tc1/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-5-tc1/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=warn" "-e" "RUSTDOCFLAGS=--cap-lints=warn" "-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:d429b63d4308055ea97f60fb1d3dfca48854a00942f1bd2ad806beaf015945ec" "/opt/rustwide/cargo-home/bin/cargo" "+1.95.0" "test" "--frozen" "--no-run" "--message-format=json", kill_on_drop: false }`
[INFO] [stdout] 8365ddb119549cd30763a55eb62e3607f0ec5152003559ab18e9199429926f75
[INFO] running `Command { std: "docker" "start" "-a" "8365ddb119549cd30763a55eb62e3607f0ec5152003559ab18e9199429926f75", kill_on_drop: false }`
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/any_mut.rs:189:19
[INFO] [stdout]     |
[INFO] [stdout] 189 |     pub fn borrow(&self) -> AnyRef {
[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] 189 |     pub fn borrow(&self) -> AnyRef<'_> {
[INFO] [stdout]     |                                   ++++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/any_mut.rs:213:23
[INFO] [stdout]     |
[INFO] [stdout] 213 |     pub fn borrow_mut(&mut self) -> AnyMut {
[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] 213 |     pub fn borrow_mut(&mut self) -> AnyMut<'_> {
[INFO] [stdout]     |                                           ++++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/any_slice_mut.rs:228:19
[INFO] [stdout]     |
[INFO] [stdout] 228 |     pub fn borrow(&self) -> AnySliceRef {
[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] 228 |     pub fn borrow(&self) -> AnySliceRef<'_> {
[INFO] [stdout]     |                                        ++++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/any_slice_mut.rs:259:23
[INFO] [stdout]     |
[INFO] [stdout] 259 |     pub fn borrow_mut(&mut self) -> AnySliceMut {
[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] 259 |     pub fn borrow_mut(&mut self) -> AnySliceMut<'_> {
[INFO] [stdout]     |                                                ++++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/any_slice_mut.rs:273:16
[INFO] [stdout]     |
[INFO] [stdout] 273 |     pub fn get(&self, index: usize) -> Option<AnyRef> {
[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] 273 |     pub fn get(&self, index: usize) -> Option<AnyRef<'_>> {
[INFO] [stdout]     |                                                     ++++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/any_slice_mut.rs:307:20
[INFO] [stdout]     |
[INFO] [stdout] 307 |     pub fn get_mut(&mut self, index: usize) -> Option<AnyMut> {
[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] 307 |     pub fn get_mut(&mut self, index: usize) -> Option<AnyMut<'_>> {
[INFO] [stdout]     |                                                             ++++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/any_slice_mut.rs:346:24
[INFO] [stdout]     |
[INFO] [stdout] 346 |     pub fn subslice<R>(&self, range: R) -> AnySliceRef
[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] 346 |     pub fn subslice<R>(&self, range: R) -> AnySliceRef<'_>
[INFO] [stdout]     |                                                       ++++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/any_slice_mut.rs:391:28
[INFO] [stdout]     |
[INFO] [stdout] 391 |     pub fn subslice_mut<R>(&mut self, range: R) -> AnySliceMut
[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] 391 |     pub fn subslice_mut<R>(&mut self, range: R) -> AnySliceMut<'_>
[INFO] [stdout]     |                                                               ++++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/any_slice_ref.rs:186:16
[INFO] [stdout]     |
[INFO] [stdout] 186 |     pub fn get(&self, index: usize) -> Option<AnyRef> {
[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] 186 |     pub fn get(&self, index: usize) -> Option<AnyRef<'_>> {
[INFO] [stdout]     |                                                     ++++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/any_slice_ref.rs:222:24
[INFO] [stdout]     |
[INFO] [stdout] 222 |     pub fn subslice<R>(&self, range: R) -> AnySliceRef
[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] 222 |     pub fn subslice<R>(&self, range: R) -> AnySliceRef<'_>
[INFO] [stdout]     |                                                       ++++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stderr]    Compiling sashay v0.5.0 (/opt/rustwide/workdir)
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/any_mut.rs:189:19
[INFO] [stdout]     |
[INFO] [stdout] 189 |     pub fn borrow(&self) -> AnyRef {
[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] 189 |     pub fn borrow(&self) -> AnyRef<'_> {
[INFO] [stdout]     |                                   ++++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/any_mut.rs:213:23
[INFO] [stdout]     |
[INFO] [stdout] 213 |     pub fn borrow_mut(&mut self) -> AnyMut {
[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] 213 |     pub fn borrow_mut(&mut self) -> AnyMut<'_> {
[INFO] [stdout]     |                                           ++++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/any_slice_mut.rs:228:19
[INFO] [stdout]     |
[INFO] [stdout] 228 |     pub fn borrow(&self) -> AnySliceRef {
[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] 228 |     pub fn borrow(&self) -> AnySliceRef<'_> {
[INFO] [stdout]     |                                        ++++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/any_slice_mut.rs:259:23
[INFO] [stdout]     |
[INFO] [stdout] 259 |     pub fn borrow_mut(&mut self) -> AnySliceMut {
[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] 259 |     pub fn borrow_mut(&mut self) -> AnySliceMut<'_> {
[INFO] [stdout]     |                                                ++++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/any_slice_mut.rs:273:16
[INFO] [stdout]     |
[INFO] [stdout] 273 |     pub fn get(&self, index: usize) -> Option<AnyRef> {
[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] 273 |     pub fn get(&self, index: usize) -> Option<AnyRef<'_>> {
[INFO] [stdout]     |                                                     ++++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/any_slice_mut.rs:307:20
[INFO] [stdout]     |
[INFO] [stdout] 307 |     pub fn get_mut(&mut self, index: usize) -> Option<AnyMut> {
[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] 307 |     pub fn get_mut(&mut self, index: usize) -> Option<AnyMut<'_>> {
[INFO] [stdout]     |                                                             ++++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/any_slice_mut.rs:346:24
[INFO] [stdout]     |
[INFO] [stdout] 346 |     pub fn subslice<R>(&self, range: R) -> AnySliceRef
[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] 346 |     pub fn subslice<R>(&self, range: R) -> AnySliceRef<'_>
[INFO] [stdout]     |                                                       ++++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/any_slice_mut.rs:391:28
[INFO] [stdout]     |
[INFO] [stdout] 391 |     pub fn subslice_mut<R>(&mut self, range: R) -> AnySliceMut
[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] 391 |     pub fn subslice_mut<R>(&mut self, range: R) -> AnySliceMut<'_>
[INFO] [stdout]     |                                                               ++++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/any_slice_ref.rs:186:16
[INFO] [stdout]     |
[INFO] [stdout] 186 |     pub fn get(&self, index: usize) -> Option<AnyRef> {
[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] 186 |     pub fn get(&self, index: usize) -> Option<AnyRef<'_>> {
[INFO] [stdout]     |                                                     ++++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/any_slice_ref.rs:222:24
[INFO] [stdout]     |
[INFO] [stdout] 222 |     pub fn subslice<R>(&self, range: R) -> AnySliceRef
[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] 222 |     pub fn subslice<R>(&self, range: R) -> AnySliceRef<'_>
[INFO] [stdout]     |                                                       ++++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stderr]     Finished `test` profile [unoptimized + debuginfo] target(s) in 0.59s
[INFO] running `Command { std: "docker" "inspect" "8365ddb119549cd30763a55eb62e3607f0ec5152003559ab18e9199429926f75", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "rm" "-f" "8365ddb119549cd30763a55eb62e3607f0ec5152003559ab18e9199429926f75", kill_on_drop: false }`
[INFO] [stdout] 8365ddb119549cd30763a55eb62e3607f0ec5152003559ab18e9199429926f75
[INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-5-tc1/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-5-tc1/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=warn" "-e" "RUSTDOCFLAGS=--cap-lints=warn" "-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:d429b63d4308055ea97f60fb1d3dfca48854a00942f1bd2ad806beaf015945ec" "/opt/rustwide/cargo-home/bin/cargo" "+1.95.0" "test" "--frozen", kill_on_drop: false }`
[INFO] [stdout] 334ee9eb8d9337b45d2f8aeaa09b6f5a6d4ca381372493450cafd9133923d087
[INFO] running `Command { std: "docker" "start" "-a" "334ee9eb8d9337b45d2f8aeaa09b6f5a6d4ca381372493450cafd9133923d087", kill_on_drop: false }`
[INFO] [stderr] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stderr]    --> src/any_mut.rs:189:19
[INFO] [stderr]     |
[INFO] [stderr] 189 |     pub fn borrow(&self) -> AnyRef {
[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] 189 |     pub fn borrow(&self) -> AnyRef<'_> {
[INFO] [stderr]     |                                   ++++
[INFO] [stderr] 
[INFO] [stderr] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stderr]    --> src/any_mut.rs:213:23
[INFO] [stderr]     |
[INFO] [stderr] 213 |     pub fn borrow_mut(&mut self) -> AnyMut {
[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] 213 |     pub fn borrow_mut(&mut self) -> AnyMut<'_> {
[INFO] [stderr]     |                                           ++++
[INFO] [stderr] 
[INFO] [stderr] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stderr]    --> src/any_slice_mut.rs:228:19
[INFO] [stderr]     |
[INFO] [stderr] 228 |     pub fn borrow(&self) -> AnySliceRef {
[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] 228 |     pub fn borrow(&self) -> AnySliceRef<'_> {
[INFO] [stderr]     |                                        ++++
[INFO] [stderr] 
[INFO] [stderr] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stderr]    --> src/any_slice_mut.rs:259:23
[INFO] [stderr]     |
[INFO] [stderr] 259 |     pub fn borrow_mut(&mut self) -> AnySliceMut {
[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] 259 |     pub fn borrow_mut(&mut self) -> AnySliceMut<'_> {
[INFO] [stderr]     |                                                ++++
[INFO] [stderr] 
[INFO] [stderr] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stderr]    --> src/any_slice_mut.rs:273:16
[INFO] [stderr]     |
[INFO] [stderr] 273 |     pub fn get(&self, index: usize) -> Option<AnyRef> {
[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] 273 |     pub fn get(&self, index: usize) -> Option<AnyRef<'_>> {
[INFO] [stderr]     |                                                     ++++
[INFO] [stderr] 
[INFO] [stderr] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stderr]    --> src/any_slice_mut.rs:307:20
[INFO] [stderr]     |
[INFO] [stderr] 307 |     pub fn get_mut(&mut self, index: usize) -> Option<AnyMut> {
[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] 307 |     pub fn get_mut(&mut self, index: usize) -> Option<AnyMut<'_>> {
[INFO] [stderr]     |                                                             ++++
[INFO] [stderr] 
[INFO] [stderr] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stderr]    --> src/any_slice_mut.rs:346:24
[INFO] [stderr]     |
[INFO] [stderr] 346 |     pub fn subslice<R>(&self, range: R) -> AnySliceRef
[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] 346 |     pub fn subslice<R>(&self, range: R) -> AnySliceRef<'_>
[INFO] [stderr]     |                                                       ++++
[INFO] [stderr] 
[INFO] [stderr] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stderr]    --> src/any_slice_mut.rs:391:28
[INFO] [stderr]     |
[INFO] [stderr] 391 |     pub fn subslice_mut<R>(&mut self, range: R) -> AnySliceMut
[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] 391 |     pub fn subslice_mut<R>(&mut self, range: R) -> AnySliceMut<'_>
[INFO] [stderr]     |                                                               ++++
[INFO] [stderr] 
[INFO] [stderr] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stderr]    --> src/any_slice_ref.rs:186:16
[INFO] [stderr]     |
[INFO] [stderr] 186 |     pub fn get(&self, index: usize) -> Option<AnyRef> {
[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] 186 |     pub fn get(&self, index: usize) -> Option<AnyRef<'_>> {
[INFO] [stderr]     |                                                     ++++
[INFO] [stderr] 
[INFO] [stderr] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stderr]    --> src/any_slice_ref.rs:222:24
[INFO] [stderr]     |
[INFO] [stderr] 222 |     pub fn subslice<R>(&self, range: R) -> AnySliceRef
[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] 222 |     pub fn subslice<R>(&self, range: R) -> AnySliceRef<'_>
[INFO] [stderr]     |                                                       ++++
[INFO] [stderr] 
[INFO] [stderr] warning: `sashay` (lib) generated 10 warnings (run `cargo fix --lib -p sashay` to apply 10 suggestions)
[INFO] [stderr] warning: `sashay` (lib test) generated 10 warnings (10 duplicates)
[INFO] [stderr]     Finished `test` profile [unoptimized + debuginfo] target(s) in 0.02s
[INFO] [stderr]      Running unittests src/lib.rs (/opt/rustwide/target/debug/deps/sashay-ab0f252d06b6c9ff)
[INFO] [stdout] 
[INFO] [stdout] running 5 tests
[INFO] [stdout] test any_slice_ref::tests::erase_unerase ... ok
[INFO] [stdout] test any_slice_ref::tests::sub ... ok
[INFO] [stdout] test range::range_types ... ok
[INFO] [stdout] test any_slice_mut::tests::sub ... ok
[INFO] [stdout] test any_slice_mut::tests::erase_unerase ... ok
[INFO] [stdout] 
[INFO] [stdout] test result: ok. 5 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.01s
[INFO] [stdout] 
[INFO] [stderr]    Doc-tests sashay
[INFO] [stdout] 
[INFO] [stdout] running 31 tests
[INFO] [stdout] test src/any_mut.rs - any_mut::AnyMut<'a>::erase (line 42) ... ok
[INFO] [stdout] test src/any_mut.rs - any_mut::AnyMut<'a>::unerase (line 83) ... ok
[INFO] [stdout] test src/any_mut.rs - any_mut::AnyMut (line 13) ... ok
[INFO] [stdout] test src/any_mut.rs - any_mut::AnyMut<'a>::borrow_mut (line 202) ... ok
[INFO] [stdout] test src/any_ref.rs - any_ref::AnyRef (line 12) ... ok
[INFO] [stdout] test src/any_mut.rs - any_mut::AnyMut<'a>::unerase_into (line 144) ... ok
[INFO] [stdout] test src/any_ref.rs - any_ref::AnyRef<'a>::unerase_into (line 108) ... ok
[INFO] [stdout] test src/any_mut.rs - any_mut::AnyMut<'a>::unerase_mut (line 116) ... ok
[INFO] [stdout] test src/any_slice_mut.rs - any_slice_mut::AnySliceMut<'a>::borrow (line 217) ... ok
[INFO] [stdout] test src/any_ref.rs - any_ref::AnyRef<'a>::erase (line 39) ... ok
[INFO] [stdout] test src/any_slice_mut.rs - any_slice_mut::AnySliceMut<'a>::borrow_mut (line 248) ... ok
[INFO] [stdout] test src/any_mut.rs - any_mut::AnyMut<'a>::borrow (line 178) ... ok
[INFO] [stdout] test src/any_slice_mut.rs - any_slice_mut::AnySliceMut (line 17) ... ok
[INFO] [stdout] test src/any_ref.rs - any_ref::AnyRef<'a>::unerase (line 77) ... ok
[INFO] [stdout] test src/any_slice_mut.rs - any_slice_mut::AnySliceMut<'a>::get (line 267) ... ok
[INFO] [stdout] test src/any_slice_mut.rs - any_slice_mut::AnySliceMut<'a>::get_mut (line 298) ... ok
[INFO] [stdout] test src/any_slice_mut.rs - any_slice_mut::AnySliceMut<'a>::subslice (line 336) ... ok
[INFO] [stdout] test src/any_slice_mut.rs - any_slice_mut::AnySliceMut<'a>::erase (line 64) ... ok
[INFO] [stdout] test src/any_slice_mut.rs - any_slice_mut::AnySliceMut<'a>::subslice_into (line 419) ... ok
[INFO] [stdout] test src/any_slice_ref.rs - any_slice_ref::AnySliceRef<'a>::erase (line 59) ... ok
[INFO] [stdout] test src/any_slice_mut.rs - any_slice_mut::AnySliceMut<'a>::subslice_mut (line 378) ... ok
[INFO] [stdout] test src/any_slice_mut.rs - any_slice_mut::AnySliceMut<'a>::unerase_mut (line 155) ... ok
[INFO] [stdout] test src/any_slice_mut.rs - any_slice_mut::AnySliceMut<'a>::unerase_into (line 183) ... ok
[INFO] [stdout] test src/any_slice_mut.rs - any_slice_mut::AnySliceMut<'a>::unerase (line 122) ... ok
[INFO] [stdout] test src/any_slice_ref.rs - any_slice_ref::AnySliceRef (line 13) ... ok
[INFO] [stdout] test src/any_slice_ref.rs - any_slice_ref::AnySliceRef<'a>::get (line 180) ... ok
[INFO] [stdout] test src/any_slice_ref.rs - any_slice_ref::AnySliceRef<'a>::subslice (line 212) ... ok
[INFO] [stdout] test src/any_slice_ref.rs - any_slice_ref::AnySliceRef<'a>::subslice_into (line 250) ... ok
[INFO] [stdout] test src/any_slice_ref.rs - any_slice_ref::AnySliceRef<'a>::unerase_into (line 150) ... ok
[INFO] [stdout] test src/any_slice_ref.rs - any_slice_ref::AnySliceRef<'a>::unerase (line 119) ... ok
[INFO] [stdout] test src/lib.rs - (line 22) ... ok
[INFO] [stdout] 
[INFO] [stdout] test result: ok. 31 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 2.44s
[INFO] [stdout] 
[INFO] running `Command { std: "docker" "inspect" "334ee9eb8d9337b45d2f8aeaa09b6f5a6d4ca381372493450cafd9133923d087", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "rm" "-f" "334ee9eb8d9337b45d2f8aeaa09b6f5a6d4ca381372493450cafd9133923d087", kill_on_drop: false }`
[INFO] [stdout] 334ee9eb8d9337b45d2f8aeaa09b6f5a6d4ca381372493450cafd9133923d087
