[INFO] fetching crate slice-utils 2.2.1...
[INFO] testing slice-utils-2.2.1 against 1.95.0 for beta-1.96-2
[INFO] extracting crate slice-utils 2.2.1 into /workspace/builds/worker-3-tc1/source
[INFO] removed /workspace/builds/worker-3-tc1/source/rust-toolchain
[INFO] started tweaking crates.io crate slice-utils 2.2.1
[INFO] finished tweaking crates.io crate slice-utils 2.2.1
[INFO] tweaked toml for crates.io crate slice-utils 2.2.1 written to /workspace/builds/worker-3-tc1/source/Cargo.toml
[INFO] validating manifest of crates.io crate slice-utils 2.2.1 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] [stderr]     Updating crates.io index
[INFO] [stderr]      Locking 1 package to latest compatible version
[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-3-tc1/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-3-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] 7efc9eef42510108de628d0a38b9a9f719f027883bfd1b9c99bc7754e17ad0a3
[INFO] running `Command { std: "docker" "start" "-a" "7efc9eef42510108de628d0a38b9a9f719f027883bfd1b9c99bc7754e17ad0a3", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "inspect" "7efc9eef42510108de628d0a38b9a9f719f027883bfd1b9c99bc7754e17ad0a3", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "rm" "-f" "7efc9eef42510108de628d0a38b9a9f719f027883bfd1b9c99bc7754e17ad0a3", kill_on_drop: false }`
[INFO] [stdout] 7efc9eef42510108de628d0a38b9a9f719f027883bfd1b9c99bc7754e17ad0a3
[INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-3-tc1/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-3-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] 18f12b002839365bc227cafbdad21dd2b1284fb421f93bead9d4bb60bc9c41c2
[INFO] running `Command { std: "docker" "start" "-a" "18f12b002839365bc227cafbdad21dd2b1284fb421f93bead9d4bb60bc9c41c2", kill_on_drop: false }`
[INFO] [stderr]    Compiling slice-utils v2.2.1 (/opt/rustwide/workdir)
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/lib.rs:222:37
[INFO] [stdout]     |
[INFO] [stdout] 222 |     fn array_chunks<const N: usize>(&self) -> ArrayChunksBorrowed<Self, N> {
[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] 222 |     fn array_chunks<const N: usize>(&self) -> ArrayChunksBorrowed<'_, Self, N> {
[INFO] [stdout]     |                                                                   +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/lib.rs:251:38
[INFO] [stdout]     |
[INFO] [stdout] 251 |     fn array_windows<const N: usize>(&self) -> ArrayWindowsBorrowed<Self, N> {
[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] 251 |     fn array_windows<const N: usize>(&self) -> ArrayWindowsBorrowed<'_, Self, N> {
[INFO] [stdout]     |                                                                     +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/lib.rs:276:15
[INFO] [stdout]     |
[INFO] [stdout] 276 |     fn chunks(&self, size: usize) -> ChunksBorrowed<Self> {
[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] 276 |     fn chunks(&self, size: usize) -> ChunksBorrowed<'_, Self> {
[INFO] [stdout]     |                                                     +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/lib.rs:336:13
[INFO] [stdout]     |
[INFO] [stdout] 336 |     fn iter(&self) -> IterBorrowed<Self> {
[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] 336 |     fn iter(&self) -> IterBorrowed<'_, Self> {
[INFO] [stdout]     |                                    +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/lib.rs:365:16
[INFO] [stdout]     |
[INFO] [stdout] 365 |     fn windows(&self, size: usize) -> WindowsBorrowed<Self> {
[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] 365 |     fn windows(&self, size: usize) -> WindowsBorrowed<'_, Self> {
[INFO] [stdout]     |                                                       +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/lib.rs:396:18
[INFO] [stdout]     |
[INFO] [stdout] 396 |     fn split_mut(&mut self, at: usize) -> Option<(SplitMut<Self>, SplitMut<Self>)>
[INFO] [stdout]     |                  ^^^^^^^^^                        ^^^^^^^^^^^^^^  ^^^^^^^^^^^^^^ the same lifetime is hidden here
[INFO] [stdout]     |                  |                                |
[INFO] [stdout]     |                  |                                the same lifetime is hidden here
[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] 396 |     fn split_mut(&mut self, at: usize) -> Option<(SplitMut<'_, Self>, SplitMut<'_, Self>)>
[INFO] [stdout]     |                                                            +++                 +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/lib.rs:524:15
[INFO] [stdout]     |
[INFO] [stdout] 524 |     fn chunks(&self, size: usize) -> ChunksOwned<Self> {
[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] 524 |     fn chunks(&self, size: usize) -> ChunksOwned<'_, Self> {
[INFO] [stdout]     |                                                  +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/lib.rs:607:16
[INFO] [stdout]     |
[INFO] [stdout] 607 |     fn windows(&self, size: usize) -> WindowsOwned<Self> {
[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] 607 |     fn windows(&self, size: usize) -> WindowsOwned<'_, Self> {
[INFO] [stdout]     |                                                    +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stderr]     Finished `dev` profile [unoptimized + debuginfo] target(s) in 0.36s
[INFO] running `Command { std: "docker" "inspect" "18f12b002839365bc227cafbdad21dd2b1284fb421f93bead9d4bb60bc9c41c2", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "rm" "-f" "18f12b002839365bc227cafbdad21dd2b1284fb421f93bead9d4bb60bc9c41c2", kill_on_drop: false }`
[INFO] [stdout] 18f12b002839365bc227cafbdad21dd2b1284fb421f93bead9d4bb60bc9c41c2
[INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-3-tc1/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-3-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] 5897d3a30f1ad6ffd7577f6cb45e0c7985c4485d9d29fb4e3ff3cc481e84d76d
[INFO] running `Command { std: "docker" "start" "-a" "5897d3a30f1ad6ffd7577f6cb45e0c7985c4485d9d29fb4e3ff3cc481e84d76d", kill_on_drop: false }`
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/lib.rs:222:37
[INFO] [stdout]     |
[INFO] [stdout] 222 |     fn array_chunks<const N: usize>(&self) -> ArrayChunksBorrowed<Self, N> {
[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] 222 |     fn array_chunks<const N: usize>(&self) -> ArrayChunksBorrowed<'_, Self, N> {
[INFO] [stdout]     |                                                                   +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/lib.rs:251:38
[INFO] [stdout]     |
[INFO] [stdout] 251 |     fn array_windows<const N: usize>(&self) -> ArrayWindowsBorrowed<Self, N> {
[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] 251 |     fn array_windows<const N: usize>(&self) -> ArrayWindowsBorrowed<'_, Self, N> {
[INFO] [stdout]     |                                                                     +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/lib.rs:276:15
[INFO] [stdout]     |
[INFO] [stdout] 276 |     fn chunks(&self, size: usize) -> ChunksBorrowed<Self> {
[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] 276 |     fn chunks(&self, size: usize) -> ChunksBorrowed<'_, Self> {
[INFO] [stdout]     |                                                     +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/lib.rs:336:13
[INFO] [stdout]     |
[INFO] [stdout] 336 |     fn iter(&self) -> IterBorrowed<Self> {
[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] 336 |     fn iter(&self) -> IterBorrowed<'_, Self> {
[INFO] [stdout]     |                                    +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/lib.rs:365:16
[INFO] [stdout]     |
[INFO] [stdout] 365 |     fn windows(&self, size: usize) -> WindowsBorrowed<Self> {
[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] 365 |     fn windows(&self, size: usize) -> WindowsBorrowed<'_, Self> {
[INFO] [stdout]     |                                                       +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/lib.rs:396:18
[INFO] [stdout]     |
[INFO] [stdout] 396 |     fn split_mut(&mut self, at: usize) -> Option<(SplitMut<Self>, SplitMut<Self>)>
[INFO] [stdout]     |                  ^^^^^^^^^                        ^^^^^^^^^^^^^^  ^^^^^^^^^^^^^^ the same lifetime is hidden here
[INFO] [stdout]     |                  |                                |
[INFO] [stdout]     |                  |                                the same lifetime is hidden here
[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] 396 |     fn split_mut(&mut self, at: usize) -> Option<(SplitMut<'_, Self>, SplitMut<'_, Self>)>
[INFO] [stdout]     |                                                            +++                 +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stderr]    Compiling slice-utils v2.2.1 (/opt/rustwide/workdir)
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/lib.rs:524:15
[INFO] [stdout]     |
[INFO] [stdout] 524 |     fn chunks(&self, size: usize) -> ChunksOwned<Self> {
[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] 524 |     fn chunks(&self, size: usize) -> ChunksOwned<'_, Self> {
[INFO] [stdout]     |                                                  +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/lib.rs:607:16
[INFO] [stdout]     |
[INFO] [stdout] 607 |     fn windows(&self, size: usize) -> WindowsOwned<Self> {
[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] 607 |     fn windows(&self, size: usize) -> WindowsOwned<'_, Self> {
[INFO] [stdout]     |                                                    +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/lib.rs:222:37
[INFO] [stdout]     |
[INFO] [stdout] 222 |     fn array_chunks<const N: usize>(&self) -> ArrayChunksBorrowed<Self, N> {
[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] 222 |     fn array_chunks<const N: usize>(&self) -> ArrayChunksBorrowed<'_, Self, N> {
[INFO] [stdout]     |                                                                   +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/lib.rs:251:38
[INFO] [stdout]     |
[INFO] [stdout] 251 |     fn array_windows<const N: usize>(&self) -> ArrayWindowsBorrowed<Self, N> {
[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] 251 |     fn array_windows<const N: usize>(&self) -> ArrayWindowsBorrowed<'_, Self, N> {
[INFO] [stdout]     |                                                                     +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/lib.rs:276:15
[INFO] [stdout]     |
[INFO] [stdout] 276 |     fn chunks(&self, size: usize) -> ChunksBorrowed<Self> {
[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] 276 |     fn chunks(&self, size: usize) -> ChunksBorrowed<'_, Self> {
[INFO] [stdout]     |                                                     +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/lib.rs:336:13
[INFO] [stdout]     |
[INFO] [stdout] 336 |     fn iter(&self) -> IterBorrowed<Self> {
[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] 336 |     fn iter(&self) -> IterBorrowed<'_, Self> {
[INFO] [stdout]     |                                    +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/lib.rs:365:16
[INFO] [stdout]     |
[INFO] [stdout] 365 |     fn windows(&self, size: usize) -> WindowsBorrowed<Self> {
[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] 365 |     fn windows(&self, size: usize) -> WindowsBorrowed<'_, Self> {
[INFO] [stdout]     |                                                       +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/lib.rs:396:18
[INFO] [stdout]     |
[INFO] [stdout] 396 |     fn split_mut(&mut self, at: usize) -> Option<(SplitMut<Self>, SplitMut<Self>)>
[INFO] [stdout]     |                  ^^^^^^^^^                        ^^^^^^^^^^^^^^  ^^^^^^^^^^^^^^ the same lifetime is hidden here
[INFO] [stdout]     |                  |                                |
[INFO] [stdout]     |                  |                                the same lifetime is hidden here
[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] 396 |     fn split_mut(&mut self, at: usize) -> Option<(SplitMut<'_, Self>, SplitMut<'_, Self>)>
[INFO] [stdout]     |                                                            +++                 +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/lib.rs:524:15
[INFO] [stdout]     |
[INFO] [stdout] 524 |     fn chunks(&self, size: usize) -> ChunksOwned<Self> {
[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] 524 |     fn chunks(&self, size: usize) -> ChunksOwned<'_, Self> {
[INFO] [stdout]     |                                                  +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/lib.rs:607:16
[INFO] [stdout]     |
[INFO] [stdout] 607 |     fn windows(&self, size: usize) -> WindowsOwned<Self> {
[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] 607 |     fn windows(&self, size: usize) -> WindowsOwned<'_, Self> {
[INFO] [stdout]     |                                                    +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stderr]     Finished `test` profile [unoptimized + debuginfo] target(s) in 0.65s
[INFO] running `Command { std: "docker" "inspect" "5897d3a30f1ad6ffd7577f6cb45e0c7985c4485d9d29fb4e3ff3cc481e84d76d", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "rm" "-f" "5897d3a30f1ad6ffd7577f6cb45e0c7985c4485d9d29fb4e3ff3cc481e84d76d", kill_on_drop: false }`
[INFO] [stdout] 5897d3a30f1ad6ffd7577f6cb45e0c7985c4485d9d29fb4e3ff3cc481e84d76d
[INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-3-tc1/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-3-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] e7f03e18d7c112e65686ff80ec6ebdd588a805d0e0279074c4ac114555253e54
[INFO] running `Command { std: "docker" "start" "-a" "e7f03e18d7c112e65686ff80ec6ebdd588a805d0e0279074c4ac114555253e54", kill_on_drop: false }`
[INFO] [stderr] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stderr]    --> src/lib.rs:222:37
[INFO] [stderr]     |
[INFO] [stderr] 222 |     fn array_chunks<const N: usize>(&self) -> ArrayChunksBorrowed<Self, N> {
[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] 222 |     fn array_chunks<const N: usize>(&self) -> ArrayChunksBorrowed<'_, Self, N> {
[INFO] [stderr]     |                                                                   +++
[INFO] [stderr] 
[INFO] [stderr] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stderr]    --> src/lib.rs:251:38
[INFO] [stderr]     |
[INFO] [stderr] 251 |     fn array_windows<const N: usize>(&self) -> ArrayWindowsBorrowed<Self, N> {
[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] 251 |     fn array_windows<const N: usize>(&self) -> ArrayWindowsBorrowed<'_, Self, N> {
[INFO] [stderr]     |                                                                     +++
[INFO] [stderr] 
[INFO] [stderr] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stderr]    --> src/lib.rs:276:15
[INFO] [stderr]     |
[INFO] [stderr] 276 |     fn chunks(&self, size: usize) -> ChunksBorrowed<Self> {
[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] 276 |     fn chunks(&self, size: usize) -> ChunksBorrowed<'_, Self> {
[INFO] [stderr]     |                                                     +++
[INFO] [stderr] 
[INFO] [stderr] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stderr]    --> src/lib.rs:336:13
[INFO] [stderr]     |
[INFO] [stderr] 336 |     fn iter(&self) -> IterBorrowed<Self> {
[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] 336 |     fn iter(&self) -> IterBorrowed<'_, Self> {
[INFO] [stderr]     |                                    +++
[INFO] [stderr] 
[INFO] [stderr] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stderr]    --> src/lib.rs:365:16
[INFO] [stderr]     |
[INFO] [stderr] 365 |     fn windows(&self, size: usize) -> WindowsBorrowed<Self> {
[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] 365 |     fn windows(&self, size: usize) -> WindowsBorrowed<'_, Self> {
[INFO] [stderr]     |                                                       +++
[INFO] [stderr] 
[INFO] [stderr] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stderr]    --> src/lib.rs:396:18
[INFO] [stderr]     |
[INFO] [stderr] 396 |     fn split_mut(&mut self, at: usize) -> Option<(SplitMut<Self>, SplitMut<Self>)>
[INFO] [stderr]     |                  ^^^^^^^^^                        ^^^^^^^^^^^^^^  ^^^^^^^^^^^^^^ the same lifetime is hidden here
[INFO] [stderr]     |                  |                                |
[INFO] [stderr]     |                  |                                the same lifetime is hidden here
[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] 396 |     fn split_mut(&mut self, at: usize) -> Option<(SplitMut<'_, Self>, SplitMut<'_, Self>)>
[INFO] [stderr]     |                                                            +++                 +++
[INFO] [stderr] 
[INFO] [stderr] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stderr]    --> src/lib.rs:524:15
[INFO] [stderr]     |
[INFO] [stderr] 524 |     fn chunks(&self, size: usize) -> ChunksOwned<Self> {
[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] 524 |     fn chunks(&self, size: usize) -> ChunksOwned<'_, Self> {
[INFO] [stderr]     |                                                  +++
[INFO] [stderr] 
[INFO] [stderr] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stderr]    --> src/lib.rs:607:16
[INFO] [stderr]     |
[INFO] [stderr] 607 |     fn windows(&self, size: usize) -> WindowsOwned<Self> {
[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] 607 |     fn windows(&self, size: usize) -> WindowsOwned<'_, Self> {
[INFO] [stderr]     |                                                    +++
[INFO] [stderr] 
[INFO] [stderr] warning: `slice-utils` (lib) generated 8 warnings (run `cargo fix --lib -p slice-utils` to apply 8 suggestions)
[INFO] [stderr] warning: `slice-utils` (lib test) generated 8 warnings (8 duplicates)
[INFO] [stderr]     Finished `test` profile [unoptimized + debuginfo] target(s) in 0.11s
[INFO] [stderr]      Running unittests src/lib.rs (/opt/rustwide/target/debug/deps/slice_utils-bb686d095041a602)
[INFO] [stdout] 
[INFO] [stdout] running 5 tests
[INFO] [stdout] test test::ranges ... ok
[INFO] [stdout] test test::debug_impl ... ok
[INFO] [stdout] test test::slices ... ok
[INFO] [stdout] test test::mutability ... ok
[INFO] [stdout] test test::index - should panic ... ok
[INFO] [stdout] 
[INFO] [stdout] test result: ok. 5 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.07s
[INFO] [stdout] 
[INFO] [stderr]    Doc-tests slice_utils
[INFO] [stdout] 
[INFO] [stdout] running 27 tests
[INFO] [stdout] test src/lib.rs - ContiguousMut::contiguous_mut (line 692) ... ok
[INFO] [stdout] test src/lib.rs - Slice::interleave (line 125) ... ok
[INFO] [stdout] test src/lib.rs - Slice::slice (line 164) ... ok
[INFO] [stdout] test src/lib.rs - ContiguousBorrowed::contiguous (line 671) ... ok
[INFO] [stdout] test src/lib.rs - Slice::get_with (line 64) ... ok
[INFO] [stdout] test src/lib.rs - Slice::chain (line 87) ... ok
[INFO] [stdout] test src/lib.rs - SliceBorrowed::cloned (line 303) ... ok
[INFO] [stdout] test src/lib.rs - SliceBorrowed::array_chunks (line 212) ... ok
[INFO] [stdout] test src/lib.rs - SliceBorrowed::iter (line 327) ... ok
[INFO] [stdout] test src/lib.rs - Slice::cycle (line 107) ... ok
[INFO] [stdout] test src/lib.rs - Slice::rev (line 146) ... ok
[INFO] [stdout] test src/lib.rs - SliceBorrowed::array_windows (line 237) ... ok
[INFO] [stdout] test src/lib.rs - SliceBorrowed::chunks (line 266) ... ok
[INFO] [stdout] test src/lib.rs - Slice::split (line 183) ... ok
[INFO] [stdout] test src/lib.rs - SliceOwned::array_chunks (line 457) ... ok
[INFO] [stdout] test src/lib.rs - SliceMut::split_mut (line 384) ... ok
[INFO] [stdout] test src/lib.rs - SliceOwned::iter (line 550) ... ok
[INFO] [stdout] test src/lib.rs - SliceOwned::chunks (line 514) ... ok
[INFO] [stdout] test src/lib.rs - SliceBorrowed::windows (line 351) ... ok
[INFO] [stdout] test src/lib.rs - SliceMut::copy_from_slice (line 414) ... ok
[INFO] [stdout] test src/lib.rs - SliceBorrowed::map (line 286) ... ok
[INFO] [stdout] test src/lib.rs - SliceOwned::array_windows (line 485) ... ok
[INFO] [stdout] test src/lib.rs - SliceOwned::map (line 534) ... ok
[INFO] [stdout] test src/lib.rs - SliceOwned::try_array (line 571) ... ok
[INFO] [stdout] test src/lib.rs - SliceOwned::windows (line 596) ... ok
[INFO] [stdout] test src/lib.rs - from_fn (line 718) ... ok
[INFO] [stdout] test src/lib.rs - SliceOwned::zip (line 618) ... ok
[INFO] [stdout] 
[INFO] [stdout] test result: ok. 27 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 2.75s
[INFO] [stdout] 
[INFO] running `Command { std: "docker" "inspect" "e7f03e18d7c112e65686ff80ec6ebdd588a805d0e0279074c4ac114555253e54", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "rm" "-f" "e7f03e18d7c112e65686ff80ec6ebdd588a805d0e0279074c4ac114555253e54", kill_on_drop: false }`
[INFO] [stdout] e7f03e18d7c112e65686ff80ec6ebdd588a805d0e0279074c4ac114555253e54
