[INFO] fetching crate pinocchio 0.9.2...
[INFO] testing pinocchio-0.9.2 against beta-2025-10-28 for beta-1.92-2
[INFO] extracting crate pinocchio 0.9.2 into /workspace/builds/worker-6-tc2/source
[INFO] started tweaking crates.io crate pinocchio 0.9.2
[INFO] finished tweaking crates.io crate pinocchio 0.9.2
[INFO] tweaked toml for crates.io crate pinocchio 0.9.2 written to /workspace/builds/worker-6-tc2/source/Cargo.toml
[INFO] validating manifest of crates.io crate pinocchio 0.9.2 on toolchain beta-2025-10-28
[INFO] running `Command { std: CARGO_HOME="/workspace/cargo-home" RUSTUP_HOME="/workspace/rustup-home" "/workspace/cargo-home/bin/cargo" "+beta-2025-10-28" "metadata" "--manifest-path" "Cargo.toml" "--no-deps", kill_on_drop: false }`
[INFO] crate crates.io crate pinocchio 0.9.2 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" "+beta-2025-10-28" "fetch" "--manifest-path" "Cargo.toml", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-6-tc2/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-6-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" "+beta-2025-10-28" "metadata" "--no-deps" "--format-version=1", kill_on_drop: false }`
[INFO] [stdout] f6451aa84a51a9409b95cc7aaba9668df5423f6c0507c404e482ddc034cc5f83
[INFO] running `Command { std: "docker" "start" "-a" "f6451aa84a51a9409b95cc7aaba9668df5423f6c0507c404e482ddc034cc5f83", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "inspect" "f6451aa84a51a9409b95cc7aaba9668df5423f6c0507c404e482ddc034cc5f83", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "rm" "-f" "f6451aa84a51a9409b95cc7aaba9668df5423f6c0507c404e482ddc034cc5f83", kill_on_drop: false }`
[INFO] [stdout] f6451aa84a51a9409b95cc7aaba9668df5423f6c0507c404e482ddc034cc5f83
[INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-6-tc2/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-6-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=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:4848fb76d95f26979359cc7e45710b1dbc8f3acb7aeedee7c460d7702230f228" "/opt/rustwide/cargo-home/bin/cargo" "+beta-2025-10-28" "build" "--frozen" "--message-format=json", kill_on_drop: false }`
[INFO] [stdout] 79a6debd7310c86a6260bd1b713062b2945d3bd28380690255935bc61a3c4737
[INFO] running `Command { std: "docker" "start" "-a" "79a6debd7310c86a6260bd1b713062b2945d3bd28380690255935bc61a3c4737", kill_on_drop: false }`
[INFO] [stderr]    Compiling pinocchio v0.9.2 (/opt/rustwide/workdir)
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/account_info.rs:267:32
[INFO] [stdout]     |
[INFO] [stdout] 267 |     pub fn try_borrow_lamports(&self) -> Result<Ref<u64>, ProgramError> {
[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] 267 |     pub fn try_borrow_lamports(&self) -> Result<Ref<'_, u64>, ProgramError> {
[INFO] [stdout]     |                                                     +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/account_info.rs:291:36
[INFO] [stdout]     |
[INFO] [stdout] 291 |     pub fn try_borrow_mut_lamports(&self) -> Result<RefMut<u64>, ProgramError> {
[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] 291 |     pub fn try_borrow_mut_lamports(&self) -> Result<RefMut<'_, u64>, ProgramError> {
[INFO] [stdout]     |                                                            +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/account_info.rs:366:28
[INFO] [stdout]     |
[INFO] [stdout] 366 |     pub fn try_borrow_data(&self) -> Result<Ref<[u8]>, ProgramError> {
[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] 366 |     pub fn try_borrow_data(&self) -> Result<Ref<'_, [u8]>, ProgramError> {
[INFO] [stdout]     |                                                 +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/account_info.rs:390:32
[INFO] [stdout]     |
[INFO] [stdout] 390 |     pub fn try_borrow_mut_data(&self) -> Result<RefMut<[u8]>, ProgramError> {
[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] 390 |     pub fn try_borrow_mut_data(&self) -> Result<RefMut<'_, [u8]>, ProgramError> {
[INFO] [stdout]     |                                                        +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]   --> src/sysvars/clock.rs:89:44
[INFO] [stdout]    |
[INFO] [stdout] 89 |     pub fn from_account_info(account_info: &AccountInfo) -> Result<Ref<Clock>, ProgramError> {
[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] 89 |     pub fn from_account_info(account_info: &AccountInfo) -> Result<Ref<'_, Clock>, ProgramError> {
[INFO] [stdout]    |                                                                        +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]   --> src/sysvars/instructions.rs:67:9
[INFO] [stdout]    |
[INFO] [stdout] 67 |         &self,
[INFO] [stdout]    |         ^^^^^ the lifetime is elided here
[INFO] [stdout] 68 |         index: usize,
[INFO] [stdout] 69 |     ) -> IntrospectedInstruction {
[INFO] [stdout]    |          ^^^^^^^^^^^^^^^^^^^^^^^ the same lifetime is hidden 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] 69 |     ) -> IntrospectedInstruction<'_> {
[INFO] [stdout]    |                                 ++++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]   --> src/sysvars/instructions.rs:84:9
[INFO] [stdout]    |
[INFO] [stdout] 84 |         &self,
[INFO] [stdout]    |         ^^^^^ the lifetime is elided here
[INFO] [stdout] 85 |         index: usize,
[INFO] [stdout] 86 |     ) -> Result<IntrospectedInstruction, ProgramError> {
[INFO] [stdout]    |                 ^^^^^^^^^^^^^^^^^^^^^^^ the same lifetime is hidden 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] 86 |     ) -> Result<IntrospectedInstruction<'_>, ProgramError> {
[INFO] [stdout]    |                                        ++++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/sysvars/instructions.rs:99:9
[INFO] [stdout]     |
[INFO] [stdout]  99 |         &self,
[INFO] [stdout]     |         ^^^^^ the lifetime is elided here
[INFO] [stdout] 100 |         index_relative_to_current: i64,
[INFO] [stdout] 101 |     ) -> Result<IntrospectedInstruction, ProgramError> {
[INFO] [stdout]     |                 ^^^^^^^^^^^^^^^^^^^^^^^ the same lifetime is hidden 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] 101 |     ) -> Result<IntrospectedInstruction<'_>, ProgramError> {
[INFO] [stdout]     |                                        ++++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/sysvars/instructions.rs:244:28
[INFO] [stdout]     |
[INFO] [stdout] 244 |     pub fn to_account_meta(&self) -> AccountMeta {
[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] 244 |     pub fn to_account_meta(&self) -> AccountMeta<'_> {
[INFO] [stdout]     |                                                 ++++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]   --> src/sysvars/rent.rs:98:44
[INFO] [stdout]    |
[INFO] [stdout] 98 |     pub fn from_account_info(account_info: &AccountInfo) -> Result<Ref<Rent>, ProgramError> {
[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] 98 |     pub fn from_account_info(account_info: &AccountInfo) -> Result<Ref<'_, Rent>, ProgramError> {
[INFO] [stdout]    |                                                                        +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stderr]     Finished `dev` profile [unoptimized + debuginfo] target(s) in 0.41s
[INFO] running `Command { std: "docker" "inspect" "79a6debd7310c86a6260bd1b713062b2945d3bd28380690255935bc61a3c4737", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "rm" "-f" "79a6debd7310c86a6260bd1b713062b2945d3bd28380690255935bc61a3c4737", kill_on_drop: false }`
[INFO] [stdout] 79a6debd7310c86a6260bd1b713062b2945d3bd28380690255935bc61a3c4737
[INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-6-tc2/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-6-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=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:4848fb76d95f26979359cc7e45710b1dbc8f3acb7aeedee7c460d7702230f228" "/opt/rustwide/cargo-home/bin/cargo" "+beta-2025-10-28" "test" "--frozen" "--no-run" "--message-format=json", kill_on_drop: false }`
[INFO] [stdout] 3e2fd567e71a53746a85d17752bb0933732e320922bbb042dc169b7568459f8f
[INFO] running `Command { std: "docker" "start" "-a" "3e2fd567e71a53746a85d17752bb0933732e320922bbb042dc169b7568459f8f", kill_on_drop: false }`
[INFO] [stderr]    Compiling five8_core v0.1.2
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/account_info.rs:267:32
[INFO] [stdout]     |
[INFO] [stdout] 267 |     pub fn try_borrow_lamports(&self) -> Result<Ref<u64>, ProgramError> {
[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] 267 |     pub fn try_borrow_lamports(&self) -> Result<Ref<'_, u64>, ProgramError> {
[INFO] [stdout]     |                                                     +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/account_info.rs:291:36
[INFO] [stdout]     |
[INFO] [stdout] 291 |     pub fn try_borrow_mut_lamports(&self) -> Result<RefMut<u64>, ProgramError> {
[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] 291 |     pub fn try_borrow_mut_lamports(&self) -> Result<RefMut<'_, u64>, ProgramError> {
[INFO] [stdout]     |                                                            +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/account_info.rs:366:28
[INFO] [stdout]     |
[INFO] [stdout] 366 |     pub fn try_borrow_data(&self) -> Result<Ref<[u8]>, ProgramError> {
[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] 366 |     pub fn try_borrow_data(&self) -> Result<Ref<'_, [u8]>, ProgramError> {
[INFO] [stdout]     |                                                 +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/account_info.rs:390:32
[INFO] [stdout]     |
[INFO] [stdout] 390 |     pub fn try_borrow_mut_data(&self) -> Result<RefMut<[u8]>, ProgramError> {
[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] 390 |     pub fn try_borrow_mut_data(&self) -> Result<RefMut<'_, [u8]>, ProgramError> {
[INFO] [stdout]     |                                                        +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]   --> src/sysvars/clock.rs:89:44
[INFO] [stdout]    |
[INFO] [stdout] 89 |     pub fn from_account_info(account_info: &AccountInfo) -> Result<Ref<Clock>, ProgramError> {
[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] 89 |     pub fn from_account_info(account_info: &AccountInfo) -> Result<Ref<'_, Clock>, ProgramError> {
[INFO] [stdout]    |                                                                        +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]   --> src/sysvars/instructions.rs:67:9
[INFO] [stdout]    |
[INFO] [stdout] 67 |         &self,
[INFO] [stdout]    |         ^^^^^ the lifetime is elided here
[INFO] [stdout] 68 |         index: usize,
[INFO] [stdout] 69 |     ) -> IntrospectedInstruction {
[INFO] [stdout]    |          ^^^^^^^^^^^^^^^^^^^^^^^ the same lifetime is hidden 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] 69 |     ) -> IntrospectedInstruction<'_> {
[INFO] [stdout]    |                                 ++++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]   --> src/sysvars/instructions.rs:84:9
[INFO] [stdout]    |
[INFO] [stdout] 84 |         &self,
[INFO] [stdout]    |         ^^^^^ the lifetime is elided here
[INFO] [stdout] 85 |         index: usize,
[INFO] [stdout] 86 |     ) -> Result<IntrospectedInstruction, ProgramError> {
[INFO] [stdout]    |                 ^^^^^^^^^^^^^^^^^^^^^^^ the same lifetime is hidden 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] 86 |     ) -> Result<IntrospectedInstruction<'_>, ProgramError> {
[INFO] [stdout]    |                                        ++++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/sysvars/instructions.rs:99:9
[INFO] [stdout]     |
[INFO] [stdout]  99 |         &self,
[INFO] [stdout]     |         ^^^^^ the lifetime is elided here
[INFO] [stdout] 100 |         index_relative_to_current: i64,
[INFO] [stdout] 101 |     ) -> Result<IntrospectedInstruction, ProgramError> {
[INFO] [stdout]     |                 ^^^^^^^^^^^^^^^^^^^^^^^ the same lifetime is hidden 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] 101 |     ) -> Result<IntrospectedInstruction<'_>, ProgramError> {
[INFO] [stdout]     |                                        ++++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/sysvars/instructions.rs:244:28
[INFO] [stdout]     |
[INFO] [stdout] 244 |     pub fn to_account_meta(&self) -> AccountMeta {
[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] 244 |     pub fn to_account_meta(&self) -> AccountMeta<'_> {
[INFO] [stdout]     |                                                 ++++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]   --> src/sysvars/rent.rs:98:44
[INFO] [stdout]    |
[INFO] [stdout] 98 |     pub fn from_account_info(account_info: &AccountInfo) -> Result<Ref<Rent>, ProgramError> {
[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] 98 |     pub fn from_account_info(account_info: &AccountInfo) -> Result<Ref<'_, Rent>, ProgramError> {
[INFO] [stdout]    |                                                                        +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stderr]    Compiling five8_const v0.1.4
[INFO] [stderr]    Compiling pinocchio v0.9.2 (/opt/rustwide/workdir)
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/account_info.rs:267:32
[INFO] [stdout]     |
[INFO] [stdout] 267 |     pub fn try_borrow_lamports(&self) -> Result<Ref<u64>, ProgramError> {
[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] 267 |     pub fn try_borrow_lamports(&self) -> Result<Ref<'_, u64>, ProgramError> {
[INFO] [stdout]     |                                                     +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/account_info.rs:291:36
[INFO] [stdout]     |
[INFO] [stdout] 291 |     pub fn try_borrow_mut_lamports(&self) -> Result<RefMut<u64>, ProgramError> {
[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] 291 |     pub fn try_borrow_mut_lamports(&self) -> Result<RefMut<'_, u64>, ProgramError> {
[INFO] [stdout]     |                                                            +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/account_info.rs:366:28
[INFO] [stdout]     |
[INFO] [stdout] 366 |     pub fn try_borrow_data(&self) -> Result<Ref<[u8]>, ProgramError> {
[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] 366 |     pub fn try_borrow_data(&self) -> Result<Ref<'_, [u8]>, ProgramError> {
[INFO] [stdout]     |                                                 +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/account_info.rs:390:32
[INFO] [stdout]     |
[INFO] [stdout] 390 |     pub fn try_borrow_mut_data(&self) -> Result<RefMut<[u8]>, ProgramError> {
[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] 390 |     pub fn try_borrow_mut_data(&self) -> Result<RefMut<'_, [u8]>, ProgramError> {
[INFO] [stdout]     |                                                        +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]   --> src/sysvars/clock.rs:89:44
[INFO] [stdout]    |
[INFO] [stdout] 89 |     pub fn from_account_info(account_info: &AccountInfo) -> Result<Ref<Clock>, ProgramError> {
[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] 89 |     pub fn from_account_info(account_info: &AccountInfo) -> Result<Ref<'_, Clock>, ProgramError> {
[INFO] [stdout]    |                                                                        +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]   --> src/sysvars/instructions.rs:67:9
[INFO] [stdout]    |
[INFO] [stdout] 67 |         &self,
[INFO] [stdout]    |         ^^^^^ the lifetime is elided here
[INFO] [stdout] 68 |         index: usize,
[INFO] [stdout] 69 |     ) -> IntrospectedInstruction {
[INFO] [stdout]    |          ^^^^^^^^^^^^^^^^^^^^^^^ the same lifetime is hidden 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] 69 |     ) -> IntrospectedInstruction<'_> {
[INFO] [stdout]    |                                 ++++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]   --> src/sysvars/instructions.rs:84:9
[INFO] [stdout]    |
[INFO] [stdout] 84 |         &self,
[INFO] [stdout]    |         ^^^^^ the lifetime is elided here
[INFO] [stdout] 85 |         index: usize,
[INFO] [stdout] 86 |     ) -> Result<IntrospectedInstruction, ProgramError> {
[INFO] [stdout]    |                 ^^^^^^^^^^^^^^^^^^^^^^^ the same lifetime is hidden 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] 86 |     ) -> Result<IntrospectedInstruction<'_>, ProgramError> {
[INFO] [stdout]    |                                        ++++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/sysvars/instructions.rs:99:9
[INFO] [stdout]     |
[INFO] [stdout]  99 |         &self,
[INFO] [stdout]     |         ^^^^^ the lifetime is elided here
[INFO] [stdout] 100 |         index_relative_to_current: i64,
[INFO] [stdout] 101 |     ) -> Result<IntrospectedInstruction, ProgramError> {
[INFO] [stdout]     |                 ^^^^^^^^^^^^^^^^^^^^^^^ the same lifetime is hidden 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] 101 |     ) -> Result<IntrospectedInstruction<'_>, ProgramError> {
[INFO] [stdout]     |                                        ++++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/sysvars/instructions.rs:244:28
[INFO] [stdout]     |
[INFO] [stdout] 244 |     pub fn to_account_meta(&self) -> AccountMeta {
[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] 244 |     pub fn to_account_meta(&self) -> AccountMeta<'_> {
[INFO] [stdout]     |                                                 ++++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]   --> src/sysvars/rent.rs:98:44
[INFO] [stdout]    |
[INFO] [stdout] 98 |     pub fn from_account_info(account_info: &AccountInfo) -> Result<Ref<Rent>, ProgramError> {
[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] 98 |     pub fn from_account_info(account_info: &AccountInfo) -> Result<Ref<'_, Rent>, ProgramError> {
[INFO] [stdout]    |                                                                        +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stderr]     Finished `test` profile [unoptimized + debuginfo] target(s) in 1.58s
[INFO] running `Command { std: "docker" "inspect" "3e2fd567e71a53746a85d17752bb0933732e320922bbb042dc169b7568459f8f", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "rm" "-f" "3e2fd567e71a53746a85d17752bb0933732e320922bbb042dc169b7568459f8f", kill_on_drop: false }`
[INFO] [stdout] 3e2fd567e71a53746a85d17752bb0933732e320922bbb042dc169b7568459f8f
[INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-6-tc2/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-6-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=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:4848fb76d95f26979359cc7e45710b1dbc8f3acb7aeedee7c460d7702230f228" "/opt/rustwide/cargo-home/bin/cargo" "+beta-2025-10-28" "test" "--frozen", kill_on_drop: false }`
[INFO] [stdout] 17fc82100879883d53fc59ccf08d0197c5283568d7df7338210672a06ef41519
[INFO] running `Command { std: "docker" "start" "-a" "17fc82100879883d53fc59ccf08d0197c5283568d7df7338210672a06ef41519", kill_on_drop: false }`
[INFO] [stderr] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stderr]    --> src/account_info.rs:267:32
[INFO] [stderr]     |
[INFO] [stderr] 267 |     pub fn try_borrow_lamports(&self) -> Result<Ref<u64>, ProgramError> {
[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] 267 |     pub fn try_borrow_lamports(&self) -> Result<Ref<'_, u64>, ProgramError> {
[INFO] [stderr]     |                                                     +++
[INFO] [stderr] 
[INFO] [stderr] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stderr]    --> src/account_info.rs:291:36
[INFO] [stderr]     |
[INFO] [stderr] 291 |     pub fn try_borrow_mut_lamports(&self) -> Result<RefMut<u64>, ProgramError> {
[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] 291 |     pub fn try_borrow_mut_lamports(&self) -> Result<RefMut<'_, u64>, ProgramError> {
[INFO] [stderr]     |                                                            +++
[INFO] [stderr] 
[INFO] [stderr] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stderr]    --> src/account_info.rs:366:28
[INFO] [stderr]     |
[INFO] [stderr] 366 |     pub fn try_borrow_data(&self) -> Result<Ref<[u8]>, ProgramError> {
[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] 366 |     pub fn try_borrow_data(&self) -> Result<Ref<'_, [u8]>, ProgramError> {
[INFO] [stderr]     |                                                 +++
[INFO] [stderr] 
[INFO] [stderr] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stderr]    --> src/account_info.rs:390:32
[INFO] [stderr]     |
[INFO] [stderr] 390 |     pub fn try_borrow_mut_data(&self) -> Result<RefMut<[u8]>, ProgramError> {
[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] 390 |     pub fn try_borrow_mut_data(&self) -> Result<RefMut<'_, [u8]>, ProgramError> {
[INFO] [stderr]     |                                                        +++
[INFO] [stderr] 
[INFO] [stderr] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stderr]   --> src/sysvars/clock.rs:89:44
[INFO] [stderr]    |
[INFO] [stderr] 89 |     pub fn from_account_info(account_info: &AccountInfo) -> Result<Ref<Clock>, ProgramError> {
[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] 89 |     pub fn from_account_info(account_info: &AccountInfo) -> Result<Ref<'_, Clock>, ProgramError> {
[INFO] [stderr]    |                                                                        +++
[INFO] [stderr] 
[INFO] [stderr] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stderr]   --> src/sysvars/instructions.rs:67:9
[INFO] [stderr]    |
[INFO] [stderr] 67 |         &self,
[INFO] [stderr]    |         ^^^^^ the lifetime is elided here
[INFO] [stderr] 68 |         index: usize,
[INFO] [stderr] 69 |     ) -> IntrospectedInstruction {
[INFO] [stderr]    |          ^^^^^^^^^^^^^^^^^^^^^^^ the same lifetime is hidden 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] 69 |     ) -> IntrospectedInstruction<'_> {
[INFO] [stderr]    |                                 ++++
[INFO] [stderr] 
[INFO] [stderr] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stderr]   --> src/sysvars/instructions.rs:84:9
[INFO] [stderr]    |
[INFO] [stderr] 84 |         &self,
[INFO] [stderr]    |         ^^^^^ the lifetime is elided here
[INFO] [stderr] 85 |         index: usize,
[INFO] [stderr] 86 |     ) -> Result<IntrospectedInstruction, ProgramError> {
[INFO] [stderr]    |                 ^^^^^^^^^^^^^^^^^^^^^^^ the same lifetime is hidden 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] 86 |     ) -> Result<IntrospectedInstruction<'_>, ProgramError> {
[INFO] [stderr]    |                                        ++++
[INFO] [stderr] 
[INFO] [stderr] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stderr]    --> src/sysvars/instructions.rs:99:9
[INFO] [stderr]     |
[INFO] [stderr]  99 |         &self,
[INFO] [stderr]     |         ^^^^^ the lifetime is elided here
[INFO] [stderr] 100 |         index_relative_to_current: i64,
[INFO] [stderr] 101 |     ) -> Result<IntrospectedInstruction, ProgramError> {
[INFO] [stderr]     |                 ^^^^^^^^^^^^^^^^^^^^^^^ the same lifetime is hidden 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] 101 |     ) -> Result<IntrospectedInstruction<'_>, ProgramError> {
[INFO] [stderr]     |                                        ++++
[INFO] [stderr] 
[INFO] [stderr] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stderr]    --> src/sysvars/instructions.rs:244:28
[INFO] [stderr]     |
[INFO] [stderr] 244 |     pub fn to_account_meta(&self) -> AccountMeta {
[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] 244 |     pub fn to_account_meta(&self) -> AccountMeta<'_> {
[INFO] [stderr]     |                                                 ++++
[INFO] [stdout] 
[INFO] [stderr] 
[INFO] [stdout] running 39 tests
[INFO] [stderr] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stderr]   --> src/sysvars/rent.rs:98:44
[INFO] [stderr]    |
[INFO] [stderr] 98 |     pub fn from_account_info(account_info: &AccountInfo) -> Result<Ref<Rent>, ProgramError> {
[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] 98 |     pub fn from_account_info(account_info: &AccountInfo) -> Result<Ref<'_, Rent>, ProgramError> {
[INFO] [stderr]    |                                                                        +++
[INFO] [stderr] 
[INFO] [stderr] warning: `pinocchio` (lib) generated 10 warnings (run `cargo fix --lib -p pinocchio` to apply 10 suggestions)
[INFO] [stderr] warning: `pinocchio` (lib test) generated 10 warnings (10 duplicates)
[INFO] [stderr]     Finished `test` profile [unoptimized + debuginfo] target(s) in 0.07s
[INFO] [stderr]      Running unittests src/lib.rs (/opt/rustwide/target/debug/deps/pinocchio-f8bcc002cc640b4d)
[INFO] [stdout] test account_info::tests::test_borrow_data ... ok
[INFO] [stdout] test account_info::tests::test_borrow_lamports ... ok
[INFO] [stdout] test account_info::tests::test_lamports_ref_mut ... ok
[INFO] [stdout] test account_info::tests::test_data_ref_mut ... ok
[INFO] [stdout] test account_info::tests::test_lamports_ref ... ok
[INFO] [stdout] test account_info::tests::test_data_ref ... ok
[INFO] [stdout] test account_info::tests::test_realloc ... ok
[INFO] [stdout] test entrypoint::tests::test_deserialize ... ok
[INFO] [stdout] test sysvars::rent::tests::test_minimum_balance_simd0194 ... ok
[INFO] [stdout] test pubkey::tests::test_pubkey_eq_matches_default_eq ... ok
[INFO] [stdout] test sysvars::slot_hashes::test::test_basic_getters_and_iterator_no_std ... ok
[INFO] [stdout] test sysvars::rent::tests::test_minimum_balance ... ok
[INFO] [stdout] test sysvars::slot_hashes::test::test_from_account_info_constructor ... ok
[INFO] [stdout] test sysvars::slot_hashes::test::test_get_entry_unchecked_no_std ... ok
[INFO] [stdout] test sysvars::slot_hashes::test::test_binary_search_no_std ... ok
[INFO] [stdout] test entrypoint::tests::test_deserialize_duplicated ... ok
[INFO] [stdout] test sysvars::slot_hashes::test::test_iterator_into_ref_no_std ... ok
[INFO] [stdout] test sysvars::slot_hashes::test::test_layout_constants ... ok
[INFO] [stdout] test sysvars::slot_hashes::test::test_mock_offset_copy ... ok
[INFO] [stdout] test sysvars::slot_hashes::test::test_mock_data_max_entries_boundary ... ok
[INFO] [stdout] test sysvars::slot_hashes::test::test_log_function ... ok
[INFO] [stdout] test sysvars::slot_hashes::test::test_mock_data_raw_byte_layout ... ok
[INFO] [stdout] test sysvars::slot_hashes::test::test_safe_vs_unsafe_getters_consistency ... ok
[INFO] [stdout] test sysvars::slot_hashes::test_edge::test_borrow_state_failure_from_account_info ... ok
[INFO] [stdout] test sysvars::slot_hashes::test::test_read_entry_count_from_bytes ... ok
[INFO] [stdout] test sysvars::slot_hashes::test_edge::test_duplicate_slots_binary_search_safe ... ok
[INFO] [stdout] test sysvars::slot_hashes::test_edge::test_wrong_size_buffer_rejected ... ok
[INFO] [stdout] test sysvars::slot_hashes::test_edge::test_truncated_payload_with_max_size_buffer_is_valid ... ok
[INFO] [stdout] test sysvars::slot_hashes::test_edge::test_wrong_key_from_account_info ... ok
[INFO] [stdout] test sysvars::slot_hashes::test_edge::test_zero_len_minimal_slice_iterates_empty ... ok
[INFO] [stdout] test sysvars::slot_hashes::test_raw::test_fetch_into_host_stub ... ok
[INFO] [stdout] test sysvars::slot_hashes::test_raw::test_fetch_into_offset_avoids_incorrect_entry_count ... ok
[INFO] [stdout] test sysvars::slot_hashes::test_raw::test_fetch_into_offset_validation ... ok
[INFO] [stdout] test sysvars::slot_hashes::test_raw::test_validate_buffer_size ... ok
[INFO] [stdout] test sysvars::slot_hashes::test_utils::test_account_layout_compatibility ... ok
[INFO] [stdout] test sysvars::slot_hashes::test::test_entry_count_header_too_short ... ok
[INFO] [stdout] test sysvars::slot_hashes::test::test_entry_count_no_std ... ok
[INFO] [stdout] test sysvars::slot_hashes::test::test_get_entry_unchecked_last_no_std ... ok
[INFO] [stderr]    Doc-tests pinocchio
[INFO] [stdout] test sysvars::slot_hashes::test::test_entries_exposed_no_std ... ok
[INFO] [stdout] 
[INFO] [stdout] test result: ok. 39 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.02s
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] running 15 tests
[INFO] [stdout] test src/entrypoint/lazy.rs - entrypoint::lazy::lazy_program_entrypoint (line 45) ... ignored
[INFO] [stdout] test src/entrypoint/mod.rs - entrypoint::entrypoint (line 66) ... ignored
[INFO] [stdout] test src/entrypoint/mod.rs - entrypoint::program_entrypoint (line 150) ... ignored
[INFO] [stdout] test src/lib.rs - (line 137) ... ignored
[INFO] [stdout] test src/lib.rs - (line 174) ... ignored
[INFO] [stdout] test src/lib.rs - (line 192) ... ignored
[INFO] [stdout] test src/lib.rs - (line 217) ... ignored
[INFO] [stdout] test src/lib.rs - (line 31) ... ignored
[INFO] [stdout] test src/lib.rs - (line 63) ... ignored
[INFO] [stdout] test src/lib.rs - (line 91) ... ignored
[INFO] [stdout] test src/entrypoint/mod.rs - entrypoint::entrypoint (line 90) - compile ... ok
[INFO] [stdout] test src/entrypoint/lazy.rs - entrypoint::lazy::lazy_program_entrypoint (line 57) - compile ... ok
[INFO] [stdout] test src/instruction.rs - instruction::signer (line 278) ... ok
[INFO] [stdout] test src/instruction.rs - instruction::seeds (line 299) ... ok
[INFO] [stdout] test src/log.rs - log::msg (line 45) ... ok
[INFO] [stdout] 
[INFO] [stdout] test result: ok. 5 passed; 0 failed; 10 ignored; 0 measured; 0 filtered out; finished in 0.54s
[INFO] [stdout] 
[INFO] running `Command { std: "docker" "inspect" "17fc82100879883d53fc59ccf08d0197c5283568d7df7338210672a06ef41519", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "rm" "-f" "17fc82100879883d53fc59ccf08d0197c5283568d7df7338210672a06ef41519", kill_on_drop: false }`
[INFO] [stdout] 17fc82100879883d53fc59ccf08d0197c5283568d7df7338210672a06ef41519
