[INFO] fetching crate menu_genie 0.1.1...
[INFO] testing menu_genie-0.1.1 against master#733b47ea4b1b86216f14ef56e49440c33933f230+rustflags=-Copt-level=3 for pr-138759
[INFO] extracting crate menu_genie 0.1.1 into /workspace/builds/worker-4-tc2/source
[INFO] started tweaking crates.io crate menu_genie 0.1.1
[INFO] finished tweaking crates.io crate menu_genie 0.1.1
[INFO] tweaked toml for crates.io crate menu_genie 0.1.1 written to /workspace/builds/worker-4-tc2/source/Cargo.toml
[INFO] validating manifest of crates.io crate menu_genie 0.1.1 on toolchain 733b47ea4b1b86216f14ef56e49440c33933f230
[INFO] running `Command { std: CARGO_HOME="/workspace/cargo-home" RUSTUP_HOME="/workspace/rustup-home" "/workspace/cargo-home/bin/cargo" "+733b47ea4b1b86216f14ef56e49440c33933f230" "metadata" "--manifest-path" "Cargo.toml" "--no-deps", kill_on_drop: false }`
[INFO] crate crates.io crate menu_genie 0.1.1 already has a lockfile, it will not be regenerated
[INFO] running `Command { std: CARGO_HOME="/workspace/cargo-home" RUSTUP_HOME="/workspace/rustup-home" "/workspace/cargo-home/bin/cargo" "+733b47ea4b1b86216f14ef56e49440c33933f230" "fetch" "--manifest-path" "Cargo.toml", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-4-tc2/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-4-tc2/source:/opt/rustwide/workdir:ro,Z" "-v" "/var/lib/crater-agent-workspace/cargo-home:/opt/rustwide/cargo-home:ro,Z" "-v" "/var/lib/crater-agent-workspace/rustup-home:/opt/rustwide/rustup-home:ro,Z" "-e" "SOURCE_DIR=/opt/rustwide/workdir" "-e" "CARGO_TARGET_DIR=/opt/rustwide/target" "-e" "CARGO_HOME=/opt/rustwide/cargo-home" "-e" "RUSTUP_HOME=/opt/rustwide/rustup-home" "-w" "/opt/rustwide/workdir" "-m" "1610612736" "--user" "0:0" "--network" "none" "ghcr.io/rust-lang/crates-build-env/linux@sha256:e90291280db7d1fac5b66fc6dad9f9662629e7365a55743daf9bdf73ebc4ea79" "/opt/rustwide/cargo-home/bin/cargo" "+733b47ea4b1b86216f14ef56e49440c33933f230" "metadata" "--no-deps" "--format-version=1", kill_on_drop: false }`
[INFO] [stdout] 859f784cb56eb06477ded18e6c93a5b185e8179133e280ef34e0eb5b89874591
[INFO] running `Command { std: "docker" "start" "-a" "859f784cb56eb06477ded18e6c93a5b185e8179133e280ef34e0eb5b89874591", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "inspect" "859f784cb56eb06477ded18e6c93a5b185e8179133e280ef34e0eb5b89874591", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "rm" "-f" "859f784cb56eb06477ded18e6c93a5b185e8179133e280ef34e0eb5b89874591", kill_on_drop: false }`
[INFO] [stdout] 859f784cb56eb06477ded18e6c93a5b185e8179133e280ef34e0eb5b89874591
[INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-4-tc2/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-4-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 -Copt-level=3" "-e" "RUSTDOCFLAGS=--cap-lints=forbid" "-e" "CARGO_HOME=/opt/rustwide/cargo-home" "-e" "RUSTUP_HOME=/opt/rustwide/rustup-home" "-w" "/opt/rustwide/workdir" "-m" "1610612736" "--user" "0:0" "--network" "none" "ghcr.io/rust-lang/crates-build-env/linux@sha256:e90291280db7d1fac5b66fc6dad9f9662629e7365a55743daf9bdf73ebc4ea79" "/opt/rustwide/cargo-home/bin/cargo" "+733b47ea4b1b86216f14ef56e49440c33933f230" "build" "--frozen" "--message-format=json", kill_on_drop: false }`
[INFO] [stdout] 67e118cb90cbc059ffb613c88ed136ac53266e46acfddef2d12ae41944d9206e
[INFO] running `Command { std: "docker" "start" "-a" "67e118cb90cbc059ffb613c88ed136ac53266e46acfddef2d12ae41944d9206e", kill_on_drop: false }`
[INFO] [stderr]    Compiling menu_genie v0.1.1 (/opt/rustwide/workdir)
[INFO] [stdout] warning: lifetime flowing from input to output with different syntax can be confusing
[INFO] [stdout]   --> src/lib.rs:78:17
[INFO] [stdout]    |
[INFO] [stdout] 78 |     fn get_menu(&self, menu_id: usize) -> Result<&Menu, MgError> {
[INFO] [stdout]    |                 ^^^^^                            -----
[INFO] [stdout]    |                 |                                ||
[INFO] [stdout]    |                 |                                |the lifetimes get resolved as `'_`
[INFO] [stdout]    |                 |                                the lifetimes get resolved as `'_`
[INFO] [stdout]    |                 this lifetime flows to the output
[INFO] [stdout]    |
[INFO] [stdout]    = note: `#[warn(mismatched_lifetime_syntaxes)]` on by default
[INFO] [stdout] help: one option is to remove the lifetime for references and use the anonymous lifetime for paths
[INFO] [stdout]    |
[INFO] [stdout] 78 |     fn get_menu(&self, menu_id: usize) -> Result<&Menu<'_>, MgError> {
[INFO] [stdout]    |                                                       ++++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: lifetime flowing from input to output with different syntax can be confusing
[INFO] [stdout]   --> src/lib.rs:85:25
[INFO] [stdout]    |
[INFO] [stdout] 85 |     fn get_current_menu(&self) -> Result<&Menu, MgError> {
[INFO] [stdout]    |                         ^^^^^            -----
[INFO] [stdout]    |                         |                ||
[INFO] [stdout]    |                         |                |the lifetimes get resolved as `'_`
[INFO] [stdout]    |                         |                the lifetimes get resolved as `'_`
[INFO] [stdout]    |                         this lifetime flows to the output
[INFO] [stdout]    |
[INFO] [stdout] help: one option is to remove the lifetime for references and use the anonymous lifetime for paths
[INFO] [stdout]    |
[INFO] [stdout] 85 |     fn get_current_menu(&self) -> Result<&Menu<'_>, MgError> {
[INFO] [stdout]    |                                               ++++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: lifetime flowing from input to output with different syntax can be confusing
[INFO] [stdout]   --> src/lib.rs:92:35
[INFO] [stdout]    |
[INFO] [stdout] 92 |     fn get_current_menu_unchecked(&self) -> &Menu {
[INFO] [stdout]    |                                   ^^^^^     -----
[INFO] [stdout]    |                                   |         ||
[INFO] [stdout]    |                                   |         |the lifetimes get resolved as `'_`
[INFO] [stdout]    |                                   |         the lifetimes get resolved as `'_`
[INFO] [stdout]    |                                   this lifetime flows to the output
[INFO] [stdout]    |
[INFO] [stdout] help: one option is to remove the lifetime for references and use the anonymous lifetime for paths
[INFO] [stdout]    |
[INFO] [stdout] 92 |     fn get_current_menu_unchecked(&self) -> &Menu<'_> {
[INFO] [stdout]    |                                                  ++++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: lifetime flowing from input to output with different syntax can be confusing
[INFO] [stdout]   --> src/menu.rs:16:26
[INFO] [stdout]    |
[INFO] [stdout] 16 |     pub fn get_menu_item(&self, key: usize) -> Option<&MenuItem> {
[INFO] [stdout]    |                          ^^^^^                        ---------
[INFO] [stdout]    |                          |                            ||
[INFO] [stdout]    |                          |                            |the lifetimes get resolved as `'_`
[INFO] [stdout]    |                          |                            the lifetimes get resolved as `'_`
[INFO] [stdout]    |                          this lifetime flows to the output
[INFO] [stdout]    |
[INFO] [stdout] help: one option is to remove the lifetime for references and use the anonymous lifetime for paths
[INFO] [stdout]    |
[INFO] [stdout] 16 |     pub fn get_menu_item(&self, key: usize) -> Option<&MenuItem<'_>> {
[INFO] [stdout]    |                                                                ++++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stderr]     Finished `dev` profile [unoptimized + debuginfo] target(s) in 0.45s
[INFO] running `Command { std: "docker" "inspect" "67e118cb90cbc059ffb613c88ed136ac53266e46acfddef2d12ae41944d9206e", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "rm" "-f" "67e118cb90cbc059ffb613c88ed136ac53266e46acfddef2d12ae41944d9206e", kill_on_drop: false }`
[INFO] [stdout] 67e118cb90cbc059ffb613c88ed136ac53266e46acfddef2d12ae41944d9206e
[INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-4-tc2/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-4-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 -Copt-level=3" "-e" "RUSTDOCFLAGS=--cap-lints=forbid" "-e" "CARGO_HOME=/opt/rustwide/cargo-home" "-e" "RUSTUP_HOME=/opt/rustwide/rustup-home" "-w" "/opt/rustwide/workdir" "-m" "1610612736" "--user" "0:0" "--network" "none" "ghcr.io/rust-lang/crates-build-env/linux@sha256:e90291280db7d1fac5b66fc6dad9f9662629e7365a55743daf9bdf73ebc4ea79" "/opt/rustwide/cargo-home/bin/cargo" "+733b47ea4b1b86216f14ef56e49440c33933f230" "test" "--frozen" "--no-run" "--message-format=json", kill_on_drop: false }`
[INFO] [stdout] 5bc94018a8a21e79cb78558b669b6b85a19c8f49fb0986c031aa805517f8fc78
[INFO] running `Command { std: "docker" "start" "-a" "5bc94018a8a21e79cb78558b669b6b85a19c8f49fb0986c031aa805517f8fc78", kill_on_drop: false }`
[INFO] [stdout] warning: lifetime flowing from input to output with different syntax can be confusing
[INFO] [stdout]   --> src/lib.rs:78:17
[INFO] [stdout]    |
[INFO] [stdout] 78 |     fn get_menu(&self, menu_id: usize) -> Result<&Menu, MgError> {
[INFO] [stdout]    |                 ^^^^^                            -----
[INFO] [stdout]    |                 |                                ||
[INFO] [stdout]    |                 |                                |the lifetimes get resolved as `'_`
[INFO] [stdout]    |                 |                                the lifetimes get resolved as `'_`
[INFO] [stdout]    |                 this lifetime flows to the output
[INFO] [stdout]    |
[INFO] [stdout]    = note: `#[warn(mismatched_lifetime_syntaxes)]` on by default
[INFO] [stdout] help: one option is to remove the lifetime for references and use the anonymous lifetime for paths
[INFO] [stdout]    |
[INFO] [stdout] 78 |     fn get_menu(&self, menu_id: usize) -> Result<&Menu<'_>, MgError> {
[INFO] [stdout]    |                                                       ++++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: lifetime flowing from input to output with different syntax can be confusing
[INFO] [stdout]   --> src/lib.rs:85:25
[INFO] [stdout]    |
[INFO] [stdout] 85 |     fn get_current_menu(&self) -> Result<&Menu, MgError> {
[INFO] [stdout]    |                         ^^^^^            -----
[INFO] [stdout]    |                         |                ||
[INFO] [stdout]    |                         |                |the lifetimes get resolved as `'_`
[INFO] [stdout]    |                         |                the lifetimes get resolved as `'_`
[INFO] [stdout]    |                         this lifetime flows to the output
[INFO] [stdout]    |
[INFO] [stdout] help: one option is to remove the lifetime for references and use the anonymous lifetime for paths
[INFO] [stdout]    |
[INFO] [stdout] 85 |     fn get_current_menu(&self) -> Result<&Menu<'_>, MgError> {
[INFO] [stdout]    |                                               ++++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stderr]    Compiling menu_genie v0.1.1 (/opt/rustwide/workdir)
[INFO] [stdout] warning: lifetime flowing from input to output with different syntax can be confusing
[INFO] [stdout]   --> src/lib.rs:92:35
[INFO] [stdout]    |
[INFO] [stdout] 92 |     fn get_current_menu_unchecked(&self) -> &Menu {
[INFO] [stdout]    |                                   ^^^^^     -----
[INFO] [stdout]    |                                   |         ||
[INFO] [stdout]    |                                   |         |the lifetimes get resolved as `'_`
[INFO] [stdout]    |                                   |         the lifetimes get resolved as `'_`
[INFO] [stdout]    |                                   this lifetime flows to the output
[INFO] [stdout]    |
[INFO] [stdout] help: one option is to remove the lifetime for references and use the anonymous lifetime for paths
[INFO] [stdout]    |
[INFO] [stdout] 92 |     fn get_current_menu_unchecked(&self) -> &Menu<'_> {
[INFO] [stdout]    |                                                  ++++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: lifetime flowing from input to output with different syntax can be confusing
[INFO] [stdout]   --> src/menu.rs:16:26
[INFO] [stdout]    |
[INFO] [stdout] 16 |     pub fn get_menu_item(&self, key: usize) -> Option<&MenuItem> {
[INFO] [stdout]    |                          ^^^^^                        ---------
[INFO] [stdout]    |                          |                            ||
[INFO] [stdout]    |                          |                            |the lifetimes get resolved as `'_`
[INFO] [stdout]    |                          |                            the lifetimes get resolved as `'_`
[INFO] [stdout]    |                          this lifetime flows to the output
[INFO] [stdout]    |
[INFO] [stdout] help: one option is to remove the lifetime for references and use the anonymous lifetime for paths
[INFO] [stdout]    |
[INFO] [stdout] 16 |     pub fn get_menu_item(&self, key: usize) -> Option<&MenuItem<'_>> {
[INFO] [stdout]    |                                                                ++++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: lifetime flowing from input to output with different syntax can be confusing
[INFO] [stdout]   --> src/lib.rs:78:17
[INFO] [stdout]    |
[INFO] [stdout] 78 |     fn get_menu(&self, menu_id: usize) -> Result<&Menu, MgError> {
[INFO] [stdout]    |                 ^^^^^                            -----
[INFO] [stdout]    |                 |                                ||
[INFO] [stdout]    |                 |                                |the lifetimes get resolved as `'_`
[INFO] [stdout]    |                 |                                the lifetimes get resolved as `'_`
[INFO] [stdout]    |                 this lifetime flows to the output
[INFO] [stdout]    |
[INFO] [stdout]    = note: `#[warn(mismatched_lifetime_syntaxes)]` on by default
[INFO] [stdout] help: one option is to remove the lifetime for references and use the anonymous lifetime for paths
[INFO] [stdout]    |
[INFO] [stdout] 78 |     fn get_menu(&self, menu_id: usize) -> Result<&Menu<'_>, MgError> {
[INFO] [stdout]    |                                                       ++++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: lifetime flowing from input to output with different syntax can be confusing
[INFO] [stdout]   --> src/lib.rs:85:25
[INFO] [stdout]    |
[INFO] [stdout] 85 |     fn get_current_menu(&self) -> Result<&Menu, MgError> {
[INFO] [stdout]    |                         ^^^^^            -----
[INFO] [stdout]    |                         |                ||
[INFO] [stdout]    |                         |                |the lifetimes get resolved as `'_`
[INFO] [stdout]    |                         |                the lifetimes get resolved as `'_`
[INFO] [stdout]    |                         this lifetime flows to the output
[INFO] [stdout]    |
[INFO] [stdout] help: one option is to remove the lifetime for references and use the anonymous lifetime for paths
[INFO] [stdout]    |
[INFO] [stdout] 85 |     fn get_current_menu(&self) -> Result<&Menu<'_>, MgError> {
[INFO] [stdout]    |                                               ++++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: lifetime flowing from input to output with different syntax can be confusing
[INFO] [stdout]   --> src/lib.rs:92:35
[INFO] [stdout]    |
[INFO] [stdout] 92 |     fn get_current_menu_unchecked(&self) -> &Menu {
[INFO] [stdout]    |                                   ^^^^^     -----
[INFO] [stdout]    |                                   |         ||
[INFO] [stdout]    |                                   |         |the lifetimes get resolved as `'_`
[INFO] [stdout]    |                                   |         the lifetimes get resolved as `'_`
[INFO] [stdout]    |                                   this lifetime flows to the output
[INFO] [stdout]    |
[INFO] [stdout] help: one option is to remove the lifetime for references and use the anonymous lifetime for paths
[INFO] [stdout]    |
[INFO] [stdout] 92 |     fn get_current_menu_unchecked(&self) -> &Menu<'_> {
[INFO] [stdout]    |                                                  ++++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: lifetime flowing from input to output with different syntax can be confusing
[INFO] [stdout]   --> src/menu.rs:16:26
[INFO] [stdout]    |
[INFO] [stdout] 16 |     pub fn get_menu_item(&self, key: usize) -> Option<&MenuItem> {
[INFO] [stdout]    |                          ^^^^^                        ---------
[INFO] [stdout]    |                          |                            ||
[INFO] [stdout]    |                          |                            |the lifetimes get resolved as `'_`
[INFO] [stdout]    |                          |                            the lifetimes get resolved as `'_`
[INFO] [stdout]    |                          this lifetime flows to the output
[INFO] [stdout]    |
[INFO] [stdout] help: one option is to remove the lifetime for references and use the anonymous lifetime for paths
[INFO] [stdout]    |
[INFO] [stdout] 16 |     pub fn get_menu_item(&self, key: usize) -> Option<&MenuItem<'_>> {
[INFO] [stdout]    |                                                                ++++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stderr]     Finished `test` profile [unoptimized + debuginfo] target(s) in 0.33s
[INFO] running `Command { std: "docker" "inspect" "5bc94018a8a21e79cb78558b669b6b85a19c8f49fb0986c031aa805517f8fc78", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "rm" "-f" "5bc94018a8a21e79cb78558b669b6b85a19c8f49fb0986c031aa805517f8fc78", kill_on_drop: false }`
[INFO] [stdout] 5bc94018a8a21e79cb78558b669b6b85a19c8f49fb0986c031aa805517f8fc78
[INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-4-tc2/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-4-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 -Copt-level=3" "-e" "RUSTDOCFLAGS=--cap-lints=forbid" "-e" "CARGO_HOME=/opt/rustwide/cargo-home" "-e" "RUSTUP_HOME=/opt/rustwide/rustup-home" "-w" "/opt/rustwide/workdir" "-m" "1610612736" "--user" "0:0" "--network" "none" "ghcr.io/rust-lang/crates-build-env/linux@sha256:e90291280db7d1fac5b66fc6dad9f9662629e7365a55743daf9bdf73ebc4ea79" "/opt/rustwide/cargo-home/bin/cargo" "+733b47ea4b1b86216f14ef56e49440c33933f230" "test" "--frozen", kill_on_drop: false }`
[INFO] [stdout] 781c28baa028b27ebfb8edf18f14d056f21260535ed3c3c949da1e5ad6c71d93
[INFO] running `Command { std: "docker" "start" "-a" "781c28baa028b27ebfb8edf18f14d056f21260535ed3c3c949da1e5ad6c71d93", kill_on_drop: false }`
[INFO] [stderr] warning: lifetime flowing from input to output with different syntax can be confusing
[INFO] [stderr]   --> src/lib.rs:78:17
[INFO] [stderr]    |
[INFO] [stderr] 78 |     fn get_menu(&self, menu_id: usize) -> Result<&Menu, MgError> {
[INFO] [stderr]    |                 ^^^^^                            -----
[INFO] [stderr]    |                 |                                ||
[INFO] [stderr]    |                 |                                |the lifetimes get resolved as `'_`
[INFO] [stderr]    |                 |                                the lifetimes get resolved as `'_`
[INFO] [stderr]    |                 this lifetime flows to the output
[INFO] [stderr]    |
[INFO] [stderr]    = note: `#[warn(mismatched_lifetime_syntaxes)]` on by default
[INFO] [stderr] help: one option is to remove the lifetime for references and use the anonymous lifetime for paths
[INFO] [stderr]    |
[INFO] [stderr] 78 |     fn get_menu(&self, menu_id: usize) -> Result<&Menu<'_>, MgError> {
[INFO] [stderr]    |                                                       ++++
[INFO] [stderr] 
[INFO] [stderr] warning: lifetime flowing from input to output with different syntax can be confusing
[INFO] [stderr]   --> src/lib.rs:85:25
[INFO] [stderr]    |
[INFO] [stderr] 85 |     fn get_current_menu(&self) -> Result<&Menu, MgError> {
[INFO] [stderr]    |                         ^^^^^            -----
[INFO] [stderr]    |                         |                ||
[INFO] [stderr]    |                         |                |the lifetimes get resolved as `'_`
[INFO] [stderr]    |                         |                the lifetimes get resolved as `'_`
[INFO] [stderr]    |                         this lifetime flows to the output
[INFO] [stderr]    |
[INFO] [stderr] help: one option is to remove the lifetime for references and use the anonymous lifetime for paths
[INFO] [stderr]    |
[INFO] [stderr] 85 |     fn get_current_menu(&self) -> Result<&Menu<'_>, MgError> {
[INFO] [stderr]    |                                               ++++
[INFO] [stderr] 
[INFO] [stderr] warning: lifetime flowing from input to output with different syntax can be confusing
[INFO] [stderr]   --> src/lib.rs:92:35
[INFO] [stderr]    |
[INFO] [stderr] 92 |     fn get_current_menu_unchecked(&self) -> &Menu {
[INFO] [stderr]    |                                   ^^^^^     -----
[INFO] [stderr]    |                                   |         ||
[INFO] [stderr]    |                                   |         |the lifetimes get resolved as `'_`
[INFO] [stderr]    |                                   |         the lifetimes get resolved as `'_`
[INFO] [stderr]    |                                   this lifetime flows to the output
[INFO] [stderr]    |
[INFO] [stderr] help: one option is to remove the lifetime for references and use the anonymous lifetime for paths
[INFO] [stderr]    |
[INFO] [stderr] 92 |     fn get_current_menu_unchecked(&self) -> &Menu<'_> {
[INFO] [stderr]    |                                                  ++++
[INFO] [stderr] 
[INFO] [stderr] warning: lifetime flowing from input to output with different syntax can be confusing
[INFO] [stderr]   --> src/menu.rs:16:26
[INFO] [stderr]    |
[INFO] [stderr] 16 |     pub fn get_menu_item(&self, key: usize) -> Option<&MenuItem> {
[INFO] [stderr]    |                          ^^^^^                        ---------
[INFO] [stderr]    |                          |                            ||
[INFO] [stderr]    |                          |                            |the lifetimes get resolved as `'_`
[INFO] [stderr]    |                          |                            the lifetimes get resolved as `'_`
[INFO] [stderr]    |                          this lifetime flows to the output
[INFO] [stderr]    |
[INFO] [stderr] help: one option is to remove the lifetime for references and use the anonymous lifetime for paths
[INFO] [stderr]    |
[INFO] [stderr] 16 |     pub fn get_menu_item(&self, key: usize) -> Option<&MenuItem<'_>> {
[INFO] [stderr]    |                                                                ++++
[INFO] [stderr] 
[INFO] [stderr] warning: `menu_genie` (lib) generated 4 warnings
[INFO] [stderr] warning: `menu_genie` (lib test) generated 4 warnings (4 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/menu_genie-1ba165fc651f82be)
[INFO] [stderr]    Doc-tests menu_genie
[INFO] [stdout] 
[INFO] [stdout] running 0 tests
[INFO] [stdout] 
[INFO] [stdout] test result: ok. 0 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.00s
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] running 1 test
[INFO] [stdout] test src/lib.rs - (line 15) ... FAILED
[INFO] [stdout] 
[INFO] [stdout] failures:
[INFO] [stdout] 
[INFO] [stdout] ---- src/lib.rs - (line 15) stdout ----
[INFO] [stdout] error[E0433]: failed to resolve: use of undeclared type `MenuAction`
[INFO] [stdout]  --> src/lib.rs:19:36
[INFO] [stdout]   |
[INFO] [stdout] 7 |     .with_menu_item("Create Todo", MenuAction::Nothing)
[INFO] [stdout]   |                                    ^^^^^^^^^^ use of undeclared type `MenuAction`
[INFO] [stdout]   |
[INFO] [stdout] help: consider importing this enum
[INFO] [stdout]   |
[INFO] [stdout] 2 + use menu_genie::MenuAction;
[INFO] [stdout]   |
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: failed to resolve: use of undeclared type `MenuAction`
[INFO] [stdout]  --> src/lib.rs:20:36
[INFO] [stdout]   |
[INFO] [stdout] 8 |     .with_menu_item("Delete Todo", MenuAction::Nothing)
[INFO] [stdout]   |                                    ^^^^^^^^^^ use of undeclared type `MenuAction`
[INFO] [stdout]   |
[INFO] [stdout] help: consider importing this enum
[INFO] [stdout]   |
[INFO] [stdout] 2 + use menu_genie::MenuAction;
[INFO] [stdout]   |
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: failed to resolve: use of undeclared type `MenuAction`
[INFO] [stdout]  --> src/lib.rs:21:34
[INFO] [stdout]   |
[INFO] [stdout] 9 |     .with_menu_item("Edit Todo", MenuAction::Navigate(2))
[INFO] [stdout]   |                                  ^^^^^^^^^^ use of undeclared type `MenuAction`
[INFO] [stdout]   |
[INFO] [stdout] help: consider importing this enum
[INFO] [stdout]   |
[INFO] [stdout] 2 + use menu_genie::MenuAction;
[INFO] [stdout]   |
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: failed to resolve: use of undeclared type `MenuAction`
[INFO] [stdout]   --> src/lib.rs:24:36
[INFO] [stdout]    |
[INFO] [stdout] 12 |     .with_menu_item("Change Name", MenuAction::Nothing)
[INFO] [stdout]    |                                    ^^^^^^^^^^ use of undeclared type `MenuAction`
[INFO] [stdout]    |
[INFO] [stdout] help: consider importing this enum
[INFO] [stdout]    |
[INFO] [stdout] 2  + use menu_genie::MenuAction;
[INFO] [stdout]    |
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: failed to resolve: use of undeclared type `MenuAction`
[INFO] [stdout]   --> src/lib.rs:25:43
[INFO] [stdout]    |
[INFO] [stdout] 13 |     .with_menu_item("Change Description", MenuAction::Nothing)
[INFO] [stdout]    |                                           ^^^^^^^^^^ use of undeclared type `MenuAction`
[INFO] [stdout]    |
[INFO] [stdout] help: consider importing this enum
[INFO] [stdout]    |
[INFO] [stdout] 2  + use menu_genie::MenuAction;
[INFO] [stdout]    |
[INFO] [stdout] 
[INFO] [stdout] error[E0423]: expected function, found macro `println`
[INFO] [stdout]   --> src/lib.rs:40:13
[INFO] [stdout]    |
[INFO] [stdout] 28 |             println("{e}");
[INFO] [stdout]    |             ^^^^^^^ not a function
[INFO] [stdout]    |
[INFO] [stdout] help: use `!` to invoke the macro
[INFO] [stdout]    |
[INFO] [stdout] 28 |             println!("{e}");
[INFO] [stdout]    |                    +
[INFO] [stdout] 
[INFO] [stdout] error: aborting due to 6 previous errors
[INFO] [stdout] 
[INFO] [stdout] Some errors have detailed explanations: E0423, E0433.
[INFO] [stdout] For more information about an error, try `rustc --explain E0423`.
[INFO] [stdout] Couldn't compile the test.
[INFO] [stdout] 
[INFO] [stdout] failures:
[INFO] [stdout]     src/lib.rs - (line 15)
[INFO] [stdout] 
[INFO] [stdout] test result: FAILED. 0 passed; 1 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.12s
[INFO] [stdout] 
[INFO] [stderr] error: doctest failed, to rerun pass `--doc`
[INFO] running `Command { std: "docker" "inspect" "781c28baa028b27ebfb8edf18f14d056f21260535ed3c3c949da1e5ad6c71d93", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "rm" "-f" "781c28baa028b27ebfb8edf18f14d056f21260535ed3c3c949da1e5ad6c71d93", kill_on_drop: false }`
[INFO] [stdout] 781c28baa028b27ebfb8edf18f14d056f21260535ed3c3c949da1e5ad6c71d93
