[INFO] fetching crate bmap 0.2.2...
[INFO] testing bmap-0.2.2 against try#c2e32f1c9652b13ed99608599c1e855462f421f3 for pr-146098-7
[INFO] extracting crate bmap 0.2.2 into /workspace/builds/worker-5-tc2/source
[INFO] started tweaking crates.io crate bmap 0.2.2
[INFO] finished tweaking crates.io crate bmap 0.2.2
[INFO] tweaked toml for crates.io crate bmap 0.2.2 written to /workspace/builds/worker-5-tc2/source/Cargo.toml
[INFO] validating manifest of crates.io crate bmap 0.2.2 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] running `Command { std: CARGO_HOME="/workspace/cargo-home" RUSTUP_HOME="/workspace/rustup-home" "/workspace/cargo-home/bin/cargo" "+c2e32f1c9652b13ed99608599c1e855462f421f3" "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" "+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] 69b030b6f91dca566b98e584720c9d4675da4c30c498214119b8290006eddccc
[INFO] running `Command { std: "docker" "start" "-a" "69b030b6f91dca566b98e584720c9d4675da4c30c498214119b8290006eddccc", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "inspect" "69b030b6f91dca566b98e584720c9d4675da4c30c498214119b8290006eddccc", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "rm" "-f" "69b030b6f91dca566b98e584720c9d4675da4c30c498214119b8290006eddccc", kill_on_drop: false }`
[INFO] [stdout] 69b030b6f91dca566b98e584720c9d4675da4c30c498214119b8290006eddccc
[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] dd9dc5b63ac947513eb54582b71099c743678a15de88b5e664cdeee4424b8f05
[INFO] running `Command { std: "docker" "start" "-a" "dd9dc5b63ac947513eb54582b71099c743678a15de88b5e664cdeee4424b8f05", kill_on_drop: false }`
[INFO] [stderr]    Compiling bmap v0.2.2 (/opt/rustwide/workdir)
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/lib.rs:295:15
[INFO] [stdout]     |
[INFO] [stdout] 295 |   pub fn iter(&self) -> BitIter {
[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] 295 |   pub fn iter(&self) -> BitIter<'_> {
[INFO] [stdout]     |                                ++++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/lib.rs:313:22
[INFO] [stdout]     |
[INFO] [stdout] 313 |   pub fn iter_zeroes(&self) -> BitValIter {
[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] 313 |   pub fn iter_zeroes(&self) -> BitValIter<'_> {
[INFO] [stdout]     |                                          ++++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/lib.rs:335:20
[INFO] [stdout]     |
[INFO] [stdout] 335 |   pub fn iter_ones(&self) -> BitValIter {
[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] 335 |   pub fn iter_ones(&self) -> BitValIter<'_> {
[INFO] [stdout]     |                                        ++++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/lib.rs:356:28
[INFO] [stdout]     |
[INFO] [stdout] 356 |   pub fn iter_zeroes_block(&self) -> BitBlocksIter {
[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] 356 |   pub fn iter_zeroes_block(&self) -> BitBlocksIter<'_> {
[INFO] [stdout]     |                                                   ++++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/lib.rs:378:26
[INFO] [stdout]     |
[INFO] [stdout] 378 |   pub fn iter_ones_block(&self) -> BitBlocksIter {
[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] 378 |   pub fn iter_ones_block(&self) -> BitBlocksIter<'_> {
[INFO] [stdout]     |                                                 ++++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stderr]     Finished `dev` profile [unoptimized + debuginfo] target(s) in 0.29s
[INFO] running `Command { std: "docker" "inspect" "dd9dc5b63ac947513eb54582b71099c743678a15de88b5e664cdeee4424b8f05", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "rm" "-f" "dd9dc5b63ac947513eb54582b71099c743678a15de88b5e664cdeee4424b8f05", kill_on_drop: false }`
[INFO] [stdout] dd9dc5b63ac947513eb54582b71099c743678a15de88b5e664cdeee4424b8f05
[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] 760e318d010b3564c60149929fd856fe0b0bb559b207e05e15529e0cfdee0cf5
[INFO] running `Command { std: "docker" "start" "-a" "760e318d010b3564c60149929fd856fe0b0bb559b207e05e15529e0cfdee0cf5", kill_on_drop: false }`
[INFO] [stderr]    Compiling bmap v0.2.2 (/opt/rustwide/workdir)
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/lib.rs:295:15
[INFO] [stdout]     |
[INFO] [stdout] 295 |   pub fn iter(&self) -> BitIter {
[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] 295 |   pub fn iter(&self) -> BitIter<'_> {
[INFO] [stdout]     |                                ++++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/lib.rs:313:22
[INFO] [stdout]     |
[INFO] [stdout] 313 |   pub fn iter_zeroes(&self) -> BitValIter {
[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] 313 |   pub fn iter_zeroes(&self) -> BitValIter<'_> {
[INFO] [stdout]     |                                          ++++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/lib.rs:335:20
[INFO] [stdout]     |
[INFO] [stdout] 335 |   pub fn iter_ones(&self) -> BitValIter {
[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] 335 |   pub fn iter_ones(&self) -> BitValIter<'_> {
[INFO] [stdout]     |                                        ++++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/lib.rs:356:28
[INFO] [stdout]     |
[INFO] [stdout] 356 |   pub fn iter_zeroes_block(&self) -> BitBlocksIter {
[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] 356 |   pub fn iter_zeroes_block(&self) -> BitBlocksIter<'_> {
[INFO] [stdout]     |                                                   ++++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/lib.rs:378:26
[INFO] [stdout]     |
[INFO] [stdout] 378 |   pub fn iter_ones_block(&self) -> BitBlocksIter {
[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] 378 |   pub fn iter_ones_block(&self) -> BitBlocksIter<'_> {
[INFO] [stdout]     |                                                 ++++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/lib.rs:295:15
[INFO] [stdout]     |
[INFO] [stdout] 295 |   pub fn iter(&self) -> BitIter {
[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] 295 |   pub fn iter(&self) -> BitIter<'_> {
[INFO] [stdout]     |                                ++++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/lib.rs:313:22
[INFO] [stdout]     |
[INFO] [stdout] 313 |   pub fn iter_zeroes(&self) -> BitValIter {
[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] 313 |   pub fn iter_zeroes(&self) -> BitValIter<'_> {
[INFO] [stdout]     |                                          ++++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/lib.rs:335:20
[INFO] [stdout]     |
[INFO] [stdout] 335 |   pub fn iter_ones(&self) -> BitValIter {
[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] 335 |   pub fn iter_ones(&self) -> BitValIter<'_> {
[INFO] [stdout]     |                                        ++++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/lib.rs:356:28
[INFO] [stdout]     |
[INFO] [stdout] 356 |   pub fn iter_zeroes_block(&self) -> BitBlocksIter {
[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] 356 |   pub fn iter_zeroes_block(&self) -> BitBlocksIter<'_> {
[INFO] [stdout]     |                                                   ++++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/lib.rs:378:26
[INFO] [stdout]     |
[INFO] [stdout] 378 |   pub fn iter_ones_block(&self) -> BitBlocksIter {
[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] 378 |   pub fn iter_ones_block(&self) -> BitBlocksIter<'_> {
[INFO] [stdout]     |                                                 ++++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stderr]     Finished `test` profile [unoptimized + debuginfo] target(s) in 0.42s
[INFO] running `Command { std: "docker" "inspect" "760e318d010b3564c60149929fd856fe0b0bb559b207e05e15529e0cfdee0cf5", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "rm" "-f" "760e318d010b3564c60149929fd856fe0b0bb559b207e05e15529e0cfdee0cf5", kill_on_drop: false }`
[INFO] [stdout] 760e318d010b3564c60149929fd856fe0b0bb559b207e05e15529e0cfdee0cf5
[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] 6af0c4e8c206669847afbe19c0d7b75f80759954aa8f5236871e560e43d93813
[INFO] running `Command { std: "docker" "start" "-a" "6af0c4e8c206669847afbe19c0d7b75f80759954aa8f5236871e560e43d93813", kill_on_drop: false }`
[INFO] [stderr] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stderr]    --> src/lib.rs:295:15
[INFO] [stderr]     |
[INFO] [stderr] 295 |   pub fn iter(&self) -> BitIter {
[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] 295 |   pub fn iter(&self) -> BitIter<'_> {
[INFO] [stderr]     |                                ++++
[INFO] [stderr] 
[INFO] [stderr] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stderr]    --> src/lib.rs:313:22
[INFO] [stderr]     |
[INFO] [stderr] 313 |   pub fn iter_zeroes(&self) -> BitValIter {
[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] 313 |   pub fn iter_zeroes(&self) -> BitValIter<'_> {
[INFO] [stderr]     |                                          ++++
[INFO] [stderr] 
[INFO] [stderr] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stderr]    --> src/lib.rs:335:20
[INFO] [stderr]     |
[INFO] [stderr] 335 |   pub fn iter_ones(&self) -> BitValIter {
[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] 335 |   pub fn iter_ones(&self) -> BitValIter<'_> {
[INFO] [stderr]     |                                        ++++
[INFO] [stderr] 
[INFO] [stderr] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stderr]    --> src/lib.rs:356:28
[INFO] [stderr]     |
[INFO] [stderr] 356 |   pub fn iter_zeroes_block(&self) -> BitBlocksIter {
[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] 356 |   pub fn iter_zeroes_block(&self) -> BitBlocksIter<'_> {
[INFO] [stderr]     |                                                   ++++
[INFO] [stderr] 
[INFO] [stderr] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stderr]    --> src/lib.rs:378:26
[INFO] [stderr]     |
[INFO] [stderr] 378 |   pub fn iter_ones_block(&self) -> BitBlocksIter {
[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] 378 |   pub fn iter_ones_block(&self) -> BitBlocksIter<'_> {
[INFO] [stderr]     |                                                 ++++
[INFO] [stderr] 
[INFO] [stderr] warning: `bmap` (lib) generated 5 warnings (run `cargo fix --lib -p bmap` to apply 5 suggestions)
[INFO] [stderr] warning: `bmap` (lib test) generated 5 warnings (5 duplicates)
[INFO] [stderr]     Finished `test` profile [unoptimized + debuginfo] target(s) in 0.04s
[INFO] [stderr]      Running unittests src/lib.rs (/opt/rustwide/target/debug/deps/bmap-b6cda4527638c4ce)
[INFO] [stdout] 
[INFO] [stdout] running 6 tests
[INFO] [stdout] test tests::dbg_output0 ... ok
[INFO] [stdout] test tests::finished ... ok
[INFO] [stdout] test tests::dbg_output1 ... ok
[INFO] [stdout] test tests::size ... ok
[INFO] [stdout] test tests::dbg_output3 ... ok
[INFO] [stdout] test tests::dbg_output2 ... 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] [stderr]    Doc-tests bmap
[INFO] [stdout] 
[INFO] [stdout] running 14 tests
[INFO] [stdout] test src/lib.rs - CountedBitmap::iter_ones (line 325) ... ok
[INFO] [stdout] test src/lib.rs - CountedBitmap::iter_zeroes (line 303) ... ok
[INFO] [stdout] test src/lib.rs - CountedBitmap::is_set (line 147) ... ok
[INFO] [stdout] test src/lib.rs - CountedBitmap::is_empty (line 78) ... ok
[INFO] [stdout] test src/lib.rs - CountedBitmap::cond_set (line 244) ... ok
[INFO] [stdout] test src/lib.rs - CountedBitmap::is_finished (line 125) ... ok
[INFO] [stdout] test src/lib.rs - CountedBitmap::len (line 66) ... ok
[INFO] [stdout] test src/lib.rs - CountedBitmap::iter_ones_block (line 369) ... ok
[INFO] [stdout] test src/lib.rs - CountedBitmap::iter (line 283) ... ok
[INFO] [stdout] test src/lib.rs - CountedBitmap::set_unchecked (line 189) ... ok
[INFO] [stdout] test src/lib.rs - CountedBitmap::remain (line 98) ... ok
[INFO] [stdout] test src/lib.rs - CountedBitmap::iter_zeroes_block (line 347) ... ok
[INFO] [stdout] test src/lib.rs - CountedBitmap::unset (line 211) ... ok
[INFO] [stdout] test src/lib.rs - CountedBitmap::set (line 167) ... ok
[INFO] [stdout] 
[INFO] [stdout] test result: ok. 14 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.74s
[INFO] [stdout] 
[INFO] running `Command { std: "docker" "inspect" "6af0c4e8c206669847afbe19c0d7b75f80759954aa8f5236871e560e43d93813", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "rm" "-f" "6af0c4e8c206669847afbe19c0d7b75f80759954aa8f5236871e560e43d93813", kill_on_drop: false }`
[INFO] [stdout] 6af0c4e8c206669847afbe19c0d7b75f80759954aa8f5236871e560e43d93813
