[INFO] fetching crate field-project 0.1.0...
[INFO] testing field-project-0.1.0 against try#db823df02fd0c2cf67b43025ac3fef3f2d743245 for pr-150681
[INFO] extracting crate field-project 0.1.0 into /workspace/builds/worker-5-tc2/source
[INFO] started tweaking crates.io crate field-project 0.1.0
[INFO] finished tweaking crates.io crate field-project 0.1.0
[INFO] tweaked toml for crates.io crate field-project 0.1.0 written to /workspace/builds/worker-5-tc2/source/Cargo.toml
[INFO] validating manifest of crates.io crate field-project 0.1.0 on toolchain db823df02fd0c2cf67b43025ac3fef3f2d743245
[INFO] running `Command { std: CARGO_HOME="/workspace/cargo-home" RUSTUP_HOME="/workspace/rustup-home" "/workspace/cargo-home/bin/cargo" "+db823df02fd0c2cf67b43025ac3fef3f2d743245" "metadata" "--manifest-path" "Cargo.toml" "--no-deps", kill_on_drop: false }`
[INFO] crate crates.io crate field-project 0.1.0 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" "+db823df02fd0c2cf67b43025ac3fef3f2d743245" "fetch" "--manifest-path" "Cargo.toml", kill_on_drop: false }`
[INFO] [stderr]     Blocking waiting for file lock on package cache
[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:845e597a41426bbf2703be69acdb67d10b6de511142d05cba7bbe119c898b2c7" "/opt/rustwide/cargo-home/bin/cargo" "+db823df02fd0c2cf67b43025ac3fef3f2d743245" "metadata" "--no-deps" "--format-version=1", kill_on_drop: false }`
[INFO] [stdout] b2bb0bcad6baf84d034d7cec4cd368588b5779e22dc9b7085d12cdb0a206ea5c
[INFO] running `Command { std: "docker" "start" "-a" "b2bb0bcad6baf84d034d7cec4cd368588b5779e22dc9b7085d12cdb0a206ea5c", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "inspect" "b2bb0bcad6baf84d034d7cec4cd368588b5779e22dc9b7085d12cdb0a206ea5c", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "rm" "-f" "b2bb0bcad6baf84d034d7cec4cd368588b5779e22dc9b7085d12cdb0a206ea5c", kill_on_drop: false }`
[INFO] [stdout] b2bb0bcad6baf84d034d7cec4cd368588b5779e22dc9b7085d12cdb0a206ea5c
[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:845e597a41426bbf2703be69acdb67d10b6de511142d05cba7bbe119c898b2c7" "/opt/rustwide/cargo-home/bin/cargo" "+db823df02fd0c2cf67b43025ac3fef3f2d743245" "build" "--frozen" "--message-format=json", kill_on_drop: false }`
[INFO] [stdout] 42bd274481504c0ae7407a48b46a7926bc5c2c4ab261d89710d4a1988c8db2d2
[INFO] running `Command { std: "docker" "start" "-a" "42bd274481504c0ae7407a48b46a7926bc5c2c4ab261d89710d4a1988c8db2d2", kill_on_drop: false }`
[INFO] [stderr]    Compiling field-project v0.1.0 (/opt/rustwide/workdir)
[INFO] [stdout] warning: where clause not allowed here
[INFO] [stdout]  --> src/pin.rs:8:32
[INFO] [stdout]   |
[INFO] [stdout] 8 |     type Output<'a, Field: 'a> where Self: 'a = Pin<&'a Field>;
[INFO] [stdout]   |                                ^^^^^^^^^^^^^^
[INFO] [stdout]   |
[INFO] [stdout]   = note: see issue #89122 <https://github.com/rust-lang/rust/issues/89122> for more information
[INFO] [stdout]   = note: `#[warn(deprecated_where_clause_location)]` on by default
[INFO] [stdout] help: move it to the end of the type declaration
[INFO] [stdout]   |
[INFO] [stdout] 8 -     type Output<'a, Field: 'a> where Self: 'a = Pin<&'a Field>;
[INFO] [stdout] 8 +     type Output<'a, Field: 'a>  = Pin<&'a Field> where Self: 'a;
[INFO] [stdout]   |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: where clause not allowed here
[INFO] [stdout]   --> src/pin.rs:18:35
[INFO] [stdout]    |
[INFO] [stdout] 18 |     type OutputMut<'a, Field: 'a> where Self: 'a = Pin<&'a mut Field>;
[INFO] [stdout]    |                                   ^^^^^^^^^^^^^^
[INFO] [stdout]    |
[INFO] [stdout]    = note: see issue #89122 <https://github.com/rust-lang/rust/issues/89122> for more information
[INFO] [stdout] help: move it to the end of the type declaration
[INFO] [stdout]    |
[INFO] [stdout] 18 -     type OutputMut<'a, Field: 'a> where Self: 'a = Pin<&'a mut Field>;
[INFO] [stdout] 18 +     type OutputMut<'a, Field: 'a>  = Pin<&'a mut Field> where Self: 'a;
[INFO] [stdout]    |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: where clause not allowed here
[INFO] [stdout]  --> src/maybe_uninit.rs:6:32
[INFO] [stdout]   |
[INFO] [stdout] 6 |     type Output<'a, Field: 'a> where Self: 'a = &'a MaybeUninit<Field>;
[INFO] [stdout]   |                                ^^^^^^^^^^^^^^
[INFO] [stdout]   |
[INFO] [stdout]   = note: see issue #89122 <https://github.com/rust-lang/rust/issues/89122> for more information
[INFO] [stdout] help: move it to the end of the type declaration
[INFO] [stdout]   |
[INFO] [stdout] 6 -     type Output<'a, Field: 'a> where Self: 'a = &'a MaybeUninit<Field>;
[INFO] [stdout] 6 +     type Output<'a, Field: 'a>  = &'a MaybeUninit<Field> where Self: 'a;
[INFO] [stdout]   |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: where clause not allowed here
[INFO] [stdout]   --> src/maybe_uninit.rs:16:35
[INFO] [stdout]    |
[INFO] [stdout] 16 |     type OutputMut<'a, Field: 'a> where Self: 'a = &'a mut MaybeUninit<Field>;
[INFO] [stdout]    |                                   ^^^^^^^^^^^^^^
[INFO] [stdout]    |
[INFO] [stdout]    = note: see issue #89122 <https://github.com/rust-lang/rust/issues/89122> for more information
[INFO] [stdout] help: move it to the end of the type declaration
[INFO] [stdout]    |
[INFO] [stdout] 16 -     type OutputMut<'a, Field: 'a> where Self: 'a = &'a mut MaybeUninit<Field>;
[INFO] [stdout] 16 +     type OutputMut<'a, Field: 'a>  = &'a mut MaybeUninit<Field> where Self: 'a;
[INFO] [stdout]    |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: where clause not allowed here
[INFO] [stdout]   --> src/lib.rs:22:32
[INFO] [stdout]    |
[INFO] [stdout] 22 |     type Output<'a, Field: 'a> where Self: 'a = T::Output<'a, Field>;
[INFO] [stdout]    |                                ^^^^^^^^^^^^^^
[INFO] [stdout]    |
[INFO] [stdout]    = note: see issue #89122 <https://github.com/rust-lang/rust/issues/89122> for more information
[INFO] [stdout] help: move it to the end of the type declaration
[INFO] [stdout]    |
[INFO] [stdout] 22 -     type Output<'a, Field: 'a> where Self: 'a = T::Output<'a, Field>;
[INFO] [stdout] 22 +     type Output<'a, Field: 'a>  = T::Output<'a, Field> where Self: 'a;
[INFO] [stdout]    |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: where clause not allowed here
[INFO] [stdout]   --> src/lib.rs:33:32
[INFO] [stdout]    |
[INFO] [stdout] 33 |     type Output<'a, Field: 'a> where Self: 'a = T::Output<'a, Field>;
[INFO] [stdout]    |                                ^^^^^^^^^^^^^^
[INFO] [stdout]    |
[INFO] [stdout]    = note: see issue #89122 <https://github.com/rust-lang/rust/issues/89122> for more information
[INFO] [stdout] help: move it to the end of the type declaration
[INFO] [stdout]    |
[INFO] [stdout] 33 -     type Output<'a, Field: 'a> where Self: 'a = T::Output<'a, Field>;
[INFO] [stdout] 33 +     type Output<'a, Field: 'a>  = T::Output<'a, Field> where Self: 'a;
[INFO] [stdout]    |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: where clause not allowed here
[INFO] [stdout]   --> src/lib.rs:43:35
[INFO] [stdout]    |
[INFO] [stdout] 43 |     type OutputMut<'a, Field: 'a> where Self: 'a = T::OutputMut<'a, Field>;
[INFO] [stdout]    |                                   ^^^^^^^^^^^^^^
[INFO] [stdout]    |
[INFO] [stdout]    = note: see issue #89122 <https://github.com/rust-lang/rust/issues/89122> for more information
[INFO] [stdout] help: move it to the end of the type declaration
[INFO] [stdout]    |
[INFO] [stdout] 43 -     type OutputMut<'a, Field: 'a> where Self: 'a = T::OutputMut<'a, Field>;
[INFO] [stdout] 43 +     type OutputMut<'a, Field: 'a>  = T::OutputMut<'a, Field> where Self: 'a;
[INFO] [stdout]    |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: where clause not allowed here
[INFO] [stdout]   --> src/lib.rs:54:32
[INFO] [stdout]    |
[INFO] [stdout] 54 |     type Output<'a, Field: 'a> where Self: 'a = T::Output<'a, Field>;
[INFO] [stdout]    |                                ^^^^^^^^^^^^^^
[INFO] [stdout]    |
[INFO] [stdout]    = note: see issue #89122 <https://github.com/rust-lang/rust/issues/89122> for more information
[INFO] [stdout] help: move it to the end of the type declaration
[INFO] [stdout]    |
[INFO] [stdout] 54 -     type Output<'a, Field: 'a> where Self: 'a = T::Output<'a, Field>;
[INFO] [stdout] 54 +     type Output<'a, Field: 'a>  = T::Output<'a, Field> where Self: 'a;
[INFO] [stdout]    |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: the feature `generic_associated_types` has been stable since 1.65.0 and no longer requires an attribute to enable
[INFO] [stdout]  --> src/lib.rs:1:12
[INFO] [stdout]   |
[INFO] [stdout] 1 | #![feature(generic_associated_types)]
[INFO] [stdout]   |            ^^^^^^^^^^^^^^^^^^^^^^^^
[INFO] [stdout]   |
[INFO] [stdout]   = note: `#[warn(stable_features)]` on by default
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stderr]     Finished `dev` profile [unoptimized + debuginfo] target(s) in 0.14s
[INFO] running `Command { std: "docker" "inspect" "42bd274481504c0ae7407a48b46a7926bc5c2c4ab261d89710d4a1988c8db2d2", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "rm" "-f" "42bd274481504c0ae7407a48b46a7926bc5c2c4ab261d89710d4a1988c8db2d2", kill_on_drop: false }`
[INFO] [stdout] 42bd274481504c0ae7407a48b46a7926bc5c2c4ab261d89710d4a1988c8db2d2
[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:845e597a41426bbf2703be69acdb67d10b6de511142d05cba7bbe119c898b2c7" "/opt/rustwide/cargo-home/bin/cargo" "+db823df02fd0c2cf67b43025ac3fef3f2d743245" "test" "--frozen" "--no-run" "--message-format=json", kill_on_drop: false }`
[INFO] [stdout] 1d628dced37cdac1103c21d19b1cbc5ac6b5daa787a5bfd5972e39cfdbaf8fa6
[INFO] running `Command { std: "docker" "start" "-a" "1d628dced37cdac1103c21d19b1cbc5ac6b5daa787a5bfd5972e39cfdbaf8fa6", kill_on_drop: false }`
[INFO] [stdout] warning: where clause not allowed here
[INFO] [stdout]  --> src/pin.rs:8:32
[INFO] [stdout]   |
[INFO] [stdout] 8 |     type Output<'a, Field: 'a> where Self: 'a = Pin<&'a Field>;
[INFO] [stdout]   |                                ^^^^^^^^^^^^^^
[INFO] [stdout]   |
[INFO] [stdout]   = note: see issue #89122 <https://github.com/rust-lang/rust/issues/89122> for more information
[INFO] [stdout]   = note: `#[warn(deprecated_where_clause_location)]` on by default
[INFO] [stdout] help: move it to the end of the type declaration
[INFO] [stdout]   |
[INFO] [stdout] 8 -     type Output<'a, Field: 'a> where Self: 'a = Pin<&'a Field>;
[INFO] [stdout] 8 +     type Output<'a, Field: 'a>  = Pin<&'a Field> where Self: 'a;
[INFO] [stdout]   |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: where clause not allowed here
[INFO] [stdout]   --> src/pin.rs:18:35
[INFO] [stdout]    |
[INFO] [stdout] 18 |     type OutputMut<'a, Field: 'a> where Self: 'a = Pin<&'a mut Field>;
[INFO] [stdout]    |                                   ^^^^^^^^^^^^^^
[INFO] [stdout]    |
[INFO] [stdout]    = note: see issue #89122 <https://github.com/rust-lang/rust/issues/89122> for more information
[INFO] [stdout] help: move it to the end of the type declaration
[INFO] [stdout]    |
[INFO] [stdout] 18 -     type OutputMut<'a, Field: 'a> where Self: 'a = Pin<&'a mut Field>;
[INFO] [stdout] 18 +     type OutputMut<'a, Field: 'a>  = Pin<&'a mut Field> where Self: 'a;
[INFO] [stdout]    |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: where clause not allowed here
[INFO] [stdout]  --> src/maybe_uninit.rs:6:32
[INFO] [stdout]   |
[INFO] [stdout] 6 |     type Output<'a, Field: 'a> where Self: 'a = &'a MaybeUninit<Field>;
[INFO] [stdout]   |                                ^^^^^^^^^^^^^^
[INFO] [stdout]   |
[INFO] [stdout]   = note: see issue #89122 <https://github.com/rust-lang/rust/issues/89122> for more information
[INFO] [stdout] help: move it to the end of the type declaration
[INFO] [stdout]   |
[INFO] [stdout] 6 -     type Output<'a, Field: 'a> where Self: 'a = &'a MaybeUninit<Field>;
[INFO] [stdout] 6 +     type Output<'a, Field: 'a>  = &'a MaybeUninit<Field> where Self: 'a;
[INFO] [stdout]   |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: where clause not allowed here
[INFO] [stdout]   --> src/maybe_uninit.rs:16:35
[INFO] [stdout]    |
[INFO] [stdout] 16 |     type OutputMut<'a, Field: 'a> where Self: 'a = &'a mut MaybeUninit<Field>;
[INFO] [stdout]    |                                   ^^^^^^^^^^^^^^
[INFO] [stdout]    |
[INFO] [stdout]    = note: see issue #89122 <https://github.com/rust-lang/rust/issues/89122> for more information
[INFO] [stdout] help: move it to the end of the type declaration
[INFO] [stdout]    |
[INFO] [stdout] 16 -     type OutputMut<'a, Field: 'a> where Self: 'a = &'a mut MaybeUninit<Field>;
[INFO] [stdout] 16 +     type OutputMut<'a, Field: 'a>  = &'a mut MaybeUninit<Field> where Self: 'a;
[INFO] [stdout]    |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: where clause not allowed here
[INFO] [stdout]   --> src/lib.rs:22:32
[INFO] [stdout]    |
[INFO] [stdout] 22 |     type Output<'a, Field: 'a> where Self: 'a = T::Output<'a, Field>;
[INFO] [stdout]    |                                ^^^^^^^^^^^^^^
[INFO] [stdout]    |
[INFO] [stdout]    = note: see issue #89122 <https://github.com/rust-lang/rust/issues/89122> for more information
[INFO] [stdout] help: move it to the end of the type declaration
[INFO] [stdout]    |
[INFO] [stdout] 22 -     type Output<'a, Field: 'a> where Self: 'a = T::Output<'a, Field>;
[INFO] [stdout] 22 +     type Output<'a, Field: 'a>  = T::Output<'a, Field> where Self: 'a;
[INFO] [stdout]    |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stderr]    Compiling field-project v0.1.0 (/opt/rustwide/workdir)
[INFO] [stdout] warning: where clause not allowed here
[INFO] [stdout]   --> src/lib.rs:33:32
[INFO] [stdout]    |
[INFO] [stdout] 33 |     type Output<'a, Field: 'a> where Self: 'a = T::Output<'a, Field>;
[INFO] [stdout]    |                                ^^^^^^^^^^^^^^
[INFO] [stdout]    |
[INFO] [stdout]    = note: see issue #89122 <https://github.com/rust-lang/rust/issues/89122> for more information
[INFO] [stdout] help: move it to the end of the type declaration
[INFO] [stdout]    |
[INFO] [stdout] 33 -     type Output<'a, Field: 'a> where Self: 'a = T::Output<'a, Field>;
[INFO] [stdout] 33 +     type Output<'a, Field: 'a>  = T::Output<'a, Field> where Self: 'a;
[INFO] [stdout]    |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: where clause not allowed here
[INFO] [stdout]   --> src/lib.rs:43:35
[INFO] [stdout]    |
[INFO] [stdout] 43 |     type OutputMut<'a, Field: 'a> where Self: 'a = T::OutputMut<'a, Field>;
[INFO] [stdout]    |                                   ^^^^^^^^^^^^^^
[INFO] [stdout]    |
[INFO] [stdout]    = note: see issue #89122 <https://github.com/rust-lang/rust/issues/89122> for more information
[INFO] [stdout] help: move it to the end of the type declaration
[INFO] [stdout]    |
[INFO] [stdout] 43 -     type OutputMut<'a, Field: 'a> where Self: 'a = T::OutputMut<'a, Field>;
[INFO] [stdout] 43 +     type OutputMut<'a, Field: 'a>  = T::OutputMut<'a, Field> where Self: 'a;
[INFO] [stdout]    |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: where clause not allowed here
[INFO] [stdout]   --> src/lib.rs:54:32
[INFO] [stdout]    |
[INFO] [stdout] 54 |     type Output<'a, Field: 'a> where Self: 'a = T::Output<'a, Field>;
[INFO] [stdout]    |                                ^^^^^^^^^^^^^^
[INFO] [stdout]    |
[INFO] [stdout]    = note: see issue #89122 <https://github.com/rust-lang/rust/issues/89122> for more information
[INFO] [stdout] help: move it to the end of the type declaration
[INFO] [stdout]    |
[INFO] [stdout] 54 -     type Output<'a, Field: 'a> where Self: 'a = T::Output<'a, Field>;
[INFO] [stdout] 54 +     type Output<'a, Field: 'a>  = T::Output<'a, Field> where Self: 'a;
[INFO] [stdout]    |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: the feature `generic_associated_types` has been stable since 1.65.0 and no longer requires an attribute to enable
[INFO] [stdout]  --> src/lib.rs:1:12
[INFO] [stdout]   |
[INFO] [stdout] 1 | #![feature(generic_associated_types)]
[INFO] [stdout]   |            ^^^^^^^^^^^^^^^^^^^^^^^^
[INFO] [stdout]   |
[INFO] [stdout]   = note: `#[warn(stable_features)]` on by default
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: where clause not allowed here
[INFO] [stdout]   --> examples/volatile_ref.rs:61:32
[INFO] [stdout]    |
[INFO] [stdout] 61 |     type Output<'a, Field: 'a> where Self: 'a = VolatileRef<'a, Field>;
[INFO] [stdout]    |                                ^^^^^^^^^^^^^^
[INFO] [stdout]    |
[INFO] [stdout]    = note: see issue #89122 <https://github.com/rust-lang/rust/issues/89122> for more information
[INFO] [stdout]    = note: `#[warn(deprecated_where_clause_location)]` on by default
[INFO] [stdout] help: move it to the end of the type declaration
[INFO] [stdout]    |
[INFO] [stdout] 61 -     type Output<'a, Field: 'a> where Self: 'a = VolatileRef<'a, Field>;
[INFO] [stdout] 61 +     type Output<'a, Field: 'a>  = VolatileRef<'a, Field> where Self: 'a;
[INFO] [stdout]    |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: where clause not allowed here
[INFO] [stdout]   --> examples/volatile_ref.rs:72:32
[INFO] [stdout]    |
[INFO] [stdout] 72 |     type Output<'a, Field: 'a> where Self: 'a = VolatileMut<'a, Field>;
[INFO] [stdout]    |                                ^^^^^^^^^^^^^^
[INFO] [stdout]    |
[INFO] [stdout]    = note: see issue #89122 <https://github.com/rust-lang/rust/issues/89122> for more information
[INFO] [stdout] help: move it to the end of the type declaration
[INFO] [stdout]    |
[INFO] [stdout] 72 -     type Output<'a, Field: 'a> where Self: 'a = VolatileMut<'a, Field>;
[INFO] [stdout] 72 +     type Output<'a, Field: 'a>  = VolatileMut<'a, Field> where Self: 'a;
[INFO] [stdout]    |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: where clause not allowed here
[INFO] [stdout]   --> examples/volatile_ref.rs:82:35
[INFO] [stdout]    |
[INFO] [stdout] 82 |     type OutputMut<'a, Field: 'a> where Self: 'a = VolatileMut<'a, Field>;
[INFO] [stdout]    |                                   ^^^^^^^^^^^^^^
[INFO] [stdout]    |
[INFO] [stdout]    = note: see issue #89122 <https://github.com/rust-lang/rust/issues/89122> for more information
[INFO] [stdout] help: move it to the end of the type declaration
[INFO] [stdout]    |
[INFO] [stdout] 82 -     type OutputMut<'a, Field: 'a> where Self: 'a = VolatileMut<'a, Field>;
[INFO] [stdout] 82 +     type OutputMut<'a, Field: 'a>  = VolatileMut<'a, Field> where Self: 'a;
[INFO] [stdout]    |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: the feature `generic_associated_types` has been stable since 1.65.0 and no longer requires an attribute to enable
[INFO] [stdout]  --> examples/volatile_ref.rs:1:12
[INFO] [stdout]   |
[INFO] [stdout] 1 | #![feature(generic_associated_types)]
[INFO] [stdout]   |            ^^^^^^^^^^^^^^^^^^^^^^^^
[INFO] [stdout]   |
[INFO] [stdout]   = note: `#[warn(stable_features)]` on by default
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: variable does not need to be mutable
[INFO] [stdout]   --> examples/volatile_ref.rs:98:9
[INFO] [stdout]    |
[INFO] [stdout] 98 |     let mut v = unsafe { VolatileMut::new(&mut Foo::default()) };
[INFO] [stdout]    |         ----^
[INFO] [stdout]    |         |
[INFO] [stdout]    |         help: remove this `mut`
[INFO] [stdout]    |
[INFO] [stdout]    = note: `#[warn(unused_mut)]` (part of `#[warn(unused)]`) on by default
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: field `reg2` is never read
[INFO] [stdout]   --> examples/volatile_ref.rs:94:5
[INFO] [stdout]    |
[INFO] [stdout] 92 | struct Foo {
[INFO] [stdout]    |        --- field in this struct
[INFO] [stdout] 93 |     reg1: u32,
[INFO] [stdout] 94 |     reg2: i32,
[INFO] [stdout]    |     ^^^^
[INFO] [stdout]    |
[INFO] [stdout]    = note: `#[warn(dead_code)]` (part of `#[warn(unused)]`) on by default
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: where clause not allowed here
[INFO] [stdout]  --> src/pin.rs:8:32
[INFO] [stdout]   |
[INFO] [stdout] 8 |     type Output<'a, Field: 'a> where Self: 'a = Pin<&'a Field>;
[INFO] [stdout]   |                                ^^^^^^^^^^^^^^
[INFO] [stdout]   |
[INFO] [stdout]   = note: see issue #89122 <https://github.com/rust-lang/rust/issues/89122> for more information
[INFO] [stdout]   = note: `#[warn(deprecated_where_clause_location)]` on by default
[INFO] [stdout] help: move it to the end of the type declaration
[INFO] [stdout]   |
[INFO] [stdout] 8 -     type Output<'a, Field: 'a> where Self: 'a = Pin<&'a Field>;
[INFO] [stdout] 8 +     type Output<'a, Field: 'a>  = Pin<&'a Field> where Self: 'a;
[INFO] [stdout]   |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: where clause not allowed here
[INFO] [stdout]   --> src/pin.rs:18:35
[INFO] [stdout]    |
[INFO] [stdout] 18 |     type OutputMut<'a, Field: 'a> where Self: 'a = Pin<&'a mut Field>;
[INFO] [stdout]    |                                   ^^^^^^^^^^^^^^
[INFO] [stdout]    |
[INFO] [stdout]    = note: see issue #89122 <https://github.com/rust-lang/rust/issues/89122> for more information
[INFO] [stdout] help: move it to the end of the type declaration
[INFO] [stdout]    |
[INFO] [stdout] 18 -     type OutputMut<'a, Field: 'a> where Self: 'a = Pin<&'a mut Field>;
[INFO] [stdout] 18 +     type OutputMut<'a, Field: 'a>  = Pin<&'a mut Field> where Self: 'a;
[INFO] [stdout]    |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: where clause not allowed here
[INFO] [stdout]  --> src/maybe_uninit.rs:6:32
[INFO] [stdout]   |
[INFO] [stdout] 6 |     type Output<'a, Field: 'a> where Self: 'a = &'a MaybeUninit<Field>;
[INFO] [stdout]   |                                ^^^^^^^^^^^^^^
[INFO] [stdout]   |
[INFO] [stdout]   = note: see issue #89122 <https://github.com/rust-lang/rust/issues/89122> for more information
[INFO] [stdout] help: move it to the end of the type declaration
[INFO] [stdout]   |
[INFO] [stdout] 6 -     type Output<'a, Field: 'a> where Self: 'a = &'a MaybeUninit<Field>;
[INFO] [stdout] 6 +     type Output<'a, Field: 'a>  = &'a MaybeUninit<Field> where Self: 'a;
[INFO] [stdout]   |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: where clause not allowed here
[INFO] [stdout]   --> src/maybe_uninit.rs:16:35
[INFO] [stdout]    |
[INFO] [stdout] 16 |     type OutputMut<'a, Field: 'a> where Self: 'a = &'a mut MaybeUninit<Field>;
[INFO] [stdout]    |                                   ^^^^^^^^^^^^^^
[INFO] [stdout]    |
[INFO] [stdout]    = note: see issue #89122 <https://github.com/rust-lang/rust/issues/89122> for more information
[INFO] [stdout] help: move it to the end of the type declaration
[INFO] [stdout]    |
[INFO] [stdout] 16 -     type OutputMut<'a, Field: 'a> where Self: 'a = &'a mut MaybeUninit<Field>;
[INFO] [stdout] 16 +     type OutputMut<'a, Field: 'a>  = &'a mut MaybeUninit<Field> where Self: 'a;
[INFO] [stdout]    |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: where clause not allowed here
[INFO] [stdout]   --> src/lib.rs:22:32
[INFO] [stdout]    |
[INFO] [stdout] 22 |     type Output<'a, Field: 'a> where Self: 'a = T::Output<'a, Field>;
[INFO] [stdout]    |                                ^^^^^^^^^^^^^^
[INFO] [stdout]    |
[INFO] [stdout]    = note: see issue #89122 <https://github.com/rust-lang/rust/issues/89122> for more information
[INFO] [stdout] help: move it to the end of the type declaration
[INFO] [stdout]    |
[INFO] [stdout] 22 -     type Output<'a, Field: 'a> where Self: 'a = T::Output<'a, Field>;
[INFO] [stdout] 22 +     type Output<'a, Field: 'a>  = T::Output<'a, Field> where Self: 'a;
[INFO] [stdout]    |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: where clause not allowed here
[INFO] [stdout]   --> src/lib.rs:33:32
[INFO] [stdout]    |
[INFO] [stdout] 33 |     type Output<'a, Field: 'a> where Self: 'a = T::Output<'a, Field>;
[INFO] [stdout]    |                                ^^^^^^^^^^^^^^
[INFO] [stdout]    |
[INFO] [stdout]    = note: see issue #89122 <https://github.com/rust-lang/rust/issues/89122> for more information
[INFO] [stdout] help: move it to the end of the type declaration
[INFO] [stdout]    |
[INFO] [stdout] 33 -     type Output<'a, Field: 'a> where Self: 'a = T::Output<'a, Field>;
[INFO] [stdout] 33 +     type Output<'a, Field: 'a>  = T::Output<'a, Field> where Self: 'a;
[INFO] [stdout]    |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: where clause not allowed here
[INFO] [stdout]   --> src/lib.rs:43:35
[INFO] [stdout]    |
[INFO] [stdout] 43 |     type OutputMut<'a, Field: 'a> where Self: 'a = T::OutputMut<'a, Field>;
[INFO] [stdout]    |                                   ^^^^^^^^^^^^^^
[INFO] [stdout]    |
[INFO] [stdout]    = note: see issue #89122 <https://github.com/rust-lang/rust/issues/89122> for more information
[INFO] [stdout] help: move it to the end of the type declaration
[INFO] [stdout]    |
[INFO] [stdout] 43 -     type OutputMut<'a, Field: 'a> where Self: 'a = T::OutputMut<'a, Field>;
[INFO] [stdout] 43 +     type OutputMut<'a, Field: 'a>  = T::OutputMut<'a, Field> where Self: 'a;
[INFO] [stdout]    |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: where clause not allowed here
[INFO] [stdout]   --> src/lib.rs:54:32
[INFO] [stdout]    |
[INFO] [stdout] 54 |     type Output<'a, Field: 'a> where Self: 'a = T::Output<'a, Field>;
[INFO] [stdout]    |                                ^^^^^^^^^^^^^^
[INFO] [stdout]    |
[INFO] [stdout]    = note: see issue #89122 <https://github.com/rust-lang/rust/issues/89122> for more information
[INFO] [stdout] help: move it to the end of the type declaration
[INFO] [stdout]    |
[INFO] [stdout] 54 -     type Output<'a, Field: 'a> where Self: 'a = T::Output<'a, Field>;
[INFO] [stdout] 54 +     type Output<'a, Field: 'a>  = T::Output<'a, Field> where Self: 'a;
[INFO] [stdout]    |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: the feature `generic_associated_types` has been stable since 1.65.0 and no longer requires an attribute to enable
[INFO] [stdout]  --> src/lib.rs:1:12
[INFO] [stdout]   |
[INFO] [stdout] 1 | #![feature(generic_associated_types)]
[INFO] [stdout]   |            ^^^^^^^^^^^^^^^^^^^^^^^^
[INFO] [stdout]   |
[INFO] [stdout]   = note: `#[warn(stable_features)]` on by default
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stderr]     Finished `test` profile [unoptimized + debuginfo] target(s) in 0.42s
[INFO] running `Command { std: "docker" "inspect" "1d628dced37cdac1103c21d19b1cbc5ac6b5daa787a5bfd5972e39cfdbaf8fa6", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "rm" "-f" "1d628dced37cdac1103c21d19b1cbc5ac6b5daa787a5bfd5972e39cfdbaf8fa6", kill_on_drop: false }`
[INFO] [stdout] 1d628dced37cdac1103c21d19b1cbc5ac6b5daa787a5bfd5972e39cfdbaf8fa6
[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:845e597a41426bbf2703be69acdb67d10b6de511142d05cba7bbe119c898b2c7" "/opt/rustwide/cargo-home/bin/cargo" "+db823df02fd0c2cf67b43025ac3fef3f2d743245" "test" "--frozen", kill_on_drop: false }`
[INFO] [stdout] 78e852018e21182beeff83806ddfc2ab55f175e6aa255b8b1c42c00e38898d69
[INFO] running `Command { std: "docker" "start" "-a" "78e852018e21182beeff83806ddfc2ab55f175e6aa255b8b1c42c00e38898d69", kill_on_drop: false }`
[INFO] [stderr] warning: where clause not allowed here
[INFO] [stderr]  --> src/pin.rs:8:32
[INFO] [stderr]   |
[INFO] [stderr] 8 |     type Output<'a, Field: 'a> where Self: 'a = Pin<&'a Field>;
[INFO] [stderr]   |                                ^^^^^^^^^^^^^^
[INFO] [stderr]   |
[INFO] [stderr]   = note: see issue #89122 <https://github.com/rust-lang/rust/issues/89122> for more information
[INFO] [stderr]   = note: `#[warn(deprecated_where_clause_location)]` on by default
[INFO] [stderr] help: move it to the end of the type declaration
[INFO] [stderr]   |
[INFO] [stderr] 8 -     type Output<'a, Field: 'a> where Self: 'a = Pin<&'a Field>;
[INFO] [stderr] 8 +     type Output<'a, Field: 'a>  = Pin<&'a Field> where Self: 'a;
[INFO] [stderr]   |
[INFO] [stderr] 
[INFO] [stderr] warning: where clause not allowed here
[INFO] [stderr]   --> src/pin.rs:18:35
[INFO] [stderr]    |
[INFO] [stderr] 18 |     type OutputMut<'a, Field: 'a> where Self: 'a = Pin<&'a mut Field>;
[INFO] [stderr]    |                                   ^^^^^^^^^^^^^^
[INFO] [stderr]    |
[INFO] [stderr]    = note: see issue #89122 <https://github.com/rust-lang/rust/issues/89122> for more information
[INFO] [stderr] help: move it to the end of the type declaration
[INFO] [stderr]    |
[INFO] [stderr] 18 -     type OutputMut<'a, Field: 'a> where Self: 'a = Pin<&'a mut Field>;
[INFO] [stderr] 18 +     type OutputMut<'a, Field: 'a>  = Pin<&'a mut Field> where Self: 'a;
[INFO] [stderr]    |
[INFO] [stderr] 
[INFO] [stderr] warning: where clause not allowed here
[INFO] [stderr]  --> src/maybe_uninit.rs:6:32
[INFO] [stderr]   |
[INFO] [stderr] 6 |     type Output<'a, Field: 'a> where Self: 'a = &'a MaybeUninit<Field>;
[INFO] [stderr]   |                                ^^^^^^^^^^^^^^
[INFO] [stderr]   |
[INFO] [stderr]   = note: see issue #89122 <https://github.com/rust-lang/rust/issues/89122> for more information
[INFO] [stderr] help: move it to the end of the type declaration
[INFO] [stderr]   |
[INFO] [stderr] 6 -     type Output<'a, Field: 'a> where Self: 'a = &'a MaybeUninit<Field>;
[INFO] [stderr] 6 +     type Output<'a, Field: 'a>  = &'a MaybeUninit<Field> where Self: 'a;
[INFO] [stderr]   |
[INFO] [stderr] 
[INFO] [stderr] warning: where clause not allowed here
[INFO] [stderr]   --> src/maybe_uninit.rs:16:35
[INFO] [stderr]    |
[INFO] [stderr] 16 |     type OutputMut<'a, Field: 'a> where Self: 'a = &'a mut MaybeUninit<Field>;
[INFO] [stderr]    |                                   ^^^^^^^^^^^^^^
[INFO] [stderr]    |
[INFO] [stderr]    = note: see issue #89122 <https://github.com/rust-lang/rust/issues/89122> for more information
[INFO] [stderr] help: move it to the end of the type declaration
[INFO] [stderr]    |
[INFO] [stderr] 16 -     type OutputMut<'a, Field: 'a> where Self: 'a = &'a mut MaybeUninit<Field>;
[INFO] [stderr] 16 +     type OutputMut<'a, Field: 'a>  = &'a mut MaybeUninit<Field> where Self: 'a;
[INFO] [stderr]    |
[INFO] [stderr] 
[INFO] [stderr] warning: where clause not allowed here
[INFO] [stderr]   --> src/lib.rs:22:32
[INFO] [stderr]    |
[INFO] [stderr] 22 |     type Output<'a, Field: 'a> where Self: 'a = T::Output<'a, Field>;
[INFO] [stderr]    |                                ^^^^^^^^^^^^^^
[INFO] [stderr]    |
[INFO] [stderr]    = note: see issue #89122 <https://github.com/rust-lang/rust/issues/89122> for more information
[INFO] [stderr] help: move it to the end of the type declaration
[INFO] [stderr]    |
[INFO] [stderr] 22 -     type Output<'a, Field: 'a> where Self: 'a = T::Output<'a, Field>;
[INFO] [stderr] 22 +     type Output<'a, Field: 'a>  = T::Output<'a, Field> where Self: 'a;
[INFO] [stderr]    |
[INFO] [stderr] 
[INFO] [stderr] warning: where clause not allowed here
[INFO] [stderr]   --> src/lib.rs:33:32
[INFO] [stderr]    |
[INFO] [stderr] 33 |     type Output<'a, Field: 'a> where Self: 'a = T::Output<'a, Field>;
[INFO] [stderr]    |                                ^^^^^^^^^^^^^^
[INFO] [stderr]    |
[INFO] [stderr]    = note: see issue #89122 <https://github.com/rust-lang/rust/issues/89122> for more information
[INFO] [stderr] help: move it to the end of the type declaration
[INFO] [stderr]    |
[INFO] [stderr] 33 -     type Output<'a, Field: 'a> where Self: 'a = T::Output<'a, Field>;
[INFO] [stderr] 33 +     type Output<'a, Field: 'a>  = T::Output<'a, Field> where Self: 'a;
[INFO] [stderr]    |
[INFO] [stderr] 
[INFO] [stderr] warning: where clause not allowed here
[INFO] [stderr]   --> src/lib.rs:43:35
[INFO] [stderr]    |
[INFO] [stderr] 43 |     type OutputMut<'a, Field: 'a> where Self: 'a = T::OutputMut<'a, Field>;
[INFO] [stderr]    |                                   ^^^^^^^^^^^^^^
[INFO] [stderr]    |
[INFO] [stderr]    = note: see issue #89122 <https://github.com/rust-lang/rust/issues/89122> for more information
[INFO] [stderr] help: move it to the end of the type declaration
[INFO] [stderr]    |
[INFO] [stderr] 43 -     type OutputMut<'a, Field: 'a> where Self: 'a = T::OutputMut<'a, Field>;
[INFO] [stderr] 43 +     type OutputMut<'a, Field: 'a>  = T::OutputMut<'a, Field> where Self: 'a;
[INFO] [stderr]    |
[INFO] [stderr] 
[INFO] [stderr] warning: where clause not allowed here
[INFO] [stderr]   --> src/lib.rs:54:32
[INFO] [stderr]    |
[INFO] [stderr] 54 |     type Output<'a, Field: 'a> where Self: 'a = T::Output<'a, Field>;
[INFO] [stderr]    |                                ^^^^^^^^^^^^^^
[INFO] [stderr]    |
[INFO] [stderr]    = note: see issue #89122 <https://github.com/rust-lang/rust/issues/89122> for more information
[INFO] [stderr] help: move it to the end of the type declaration
[INFO] [stderr]    |
[INFO] [stderr] 54 -     type Output<'a, Field: 'a> where Self: 'a = T::Output<'a, Field>;
[INFO] [stderr] 54 +     type Output<'a, Field: 'a>  = T::Output<'a, Field> where Self: 'a;
[INFO] [stderr]    |
[INFO] [stderr] 
[INFO] [stderr] warning: the feature `generic_associated_types` has been stable since 1.65.0 and no longer requires an attribute to enable
[INFO] [stderr]  --> src/lib.rs:1:12
[INFO] [stderr]   |
[INFO] [stderr] 1 | #![feature(generic_associated_types)]
[INFO] [stderr]   |            ^^^^^^^^^^^^^^^^^^^^^^^^
[INFO] [stderr]   |
[INFO] [stderr]   = note: `#[warn(stable_features)]` on by default
[INFO] [stderr] 
[INFO] [stderr] warning: `field-project` (lib) generated 9 warnings (run `cargo fix --lib -p field-project` to apply 8 suggestions)
[INFO] [stderr] warning: where clause not allowed here
[INFO] [stderr]   --> examples/volatile_ref.rs:61:32
[INFO] [stderr]    |
[INFO] [stderr] 61 |     type Output<'a, Field: 'a> where Self: 'a = VolatileRef<'a, Field>;
[INFO] [stderr]    |                                ^^^^^^^^^^^^^^
[INFO] [stderr]    |
[INFO] [stderr]    = note: see issue #89122 <https://github.com/rust-lang/rust/issues/89122> for more information
[INFO] [stderr]    = note: `#[warn(deprecated_where_clause_location)]` on by default
[INFO] [stderr] help: move it to the end of the type declaration
[INFO] [stderr]    |
[INFO] [stderr] 61 -     type Output<'a, Field: 'a> where Self: 'a = VolatileRef<'a, Field>;
[INFO] [stderr] 61 +     type Output<'a, Field: 'a>  = VolatileRef<'a, Field> where Self: 'a;
[INFO] [stderr]    |
[INFO] [stderr] 
[INFO] [stderr] warning: where clause not allowed here
[INFO] [stderr]   --> examples/volatile_ref.rs:72:32
[INFO] [stderr]    |
[INFO] [stderr] 72 |     type Output<'a, Field: 'a> where Self: 'a = VolatileMut<'a, Field>;
[INFO] [stderr]    |                                ^^^^^^^^^^^^^^
[INFO] [stderr]    |
[INFO] [stderr]    = note: see issue #89122 <https://github.com/rust-lang/rust/issues/89122> for more information
[INFO] [stderr] help: move it to the end of the type declaration
[INFO] [stderr]    |
[INFO] [stderr] 72 -     type Output<'a, Field: 'a> where Self: 'a = VolatileMut<'a, Field>;
[INFO] [stderr] 72 +     type Output<'a, Field: 'a>  = VolatileMut<'a, Field> where Self: 'a;
[INFO] [stderr]    |
[INFO] [stderr] 
[INFO] [stderr] warning: where clause not allowed here
[INFO] [stderr]   --> examples/volatile_ref.rs:82:35
[INFO] [stderr]    |
[INFO] [stderr] 82 |     type OutputMut<'a, Field: 'a> where Self: 'a = VolatileMut<'a, Field>;
[INFO] [stderr]    |                                   ^^^^^^^^^^^^^^
[INFO] [stderr]    |
[INFO] [stderr]    = note: see issue #89122 <https://github.com/rust-lang/rust/issues/89122> for more information
[INFO] [stderr] help: move it to the end of the type declaration
[INFO] [stderr]    |
[INFO] [stderr] 82 -     type OutputMut<'a, Field: 'a> where Self: 'a = VolatileMut<'a, Field>;
[INFO] [stderr] 82 +     type OutputMut<'a, Field: 'a>  = VolatileMut<'a, Field> where Self: 'a;
[INFO] [stderr]    |
[INFO] [stderr] 
[INFO] [stderr] warning: the feature `generic_associated_types` has been stable since 1.65.0 and no longer requires an attribute to enable
[INFO] [stderr]  --> examples/volatile_ref.rs:1:12
[INFO] [stderr]   |
[INFO] [stderr] 1 | #![feature(generic_associated_types)]
[INFO] [stderr]   |            ^^^^^^^^^^^^^^^^^^^^^^^^
[INFO] [stderr]   |
[INFO] [stderr]   = note: `#[warn(stable_features)]` on by default
[INFO] [stderr] 
[INFO] [stderr] warning: variable does not need to be mutable
[INFO] [stderr]   --> examples/volatile_ref.rs:98:9
[INFO] [stderr]    |
[INFO] [stderr] 98 |     let mut v = unsafe { VolatileMut::new(&mut Foo::default()) };
[INFO] [stderr]    |         ----^
[INFO] [stderr]    |         |
[INFO] [stderr]    |         help: remove this `mut`
[INFO] [stderr]    |
[INFO] [stderr]    = note: `#[warn(unused_mut)]` (part of `#[warn(unused)]`) on by default
[INFO] [stderr] 
[INFO] [stderr] warning: field `reg2` is never read
[INFO] [stderr]   --> examples/volatile_ref.rs:94:5
[INFO] [stderr]    |
[INFO] [stderr] 92 | struct Foo {
[INFO] [stderr]    |        --- field in this struct
[INFO] [stderr] 93 |     reg1: u32,
[INFO] [stderr] 94 |     reg2: i32,
[INFO] [stderr]    |     ^^^^
[INFO] [stderr]    |
[INFO] [stderr]    = note: `#[warn(dead_code)]` (part of `#[warn(unused)]`) on by default
[INFO] [stderr] 
[INFO] [stderr] warning: `field-project` (example "volatile_ref") generated 6 warnings (run `cargo fix --example "volatile_ref" -p field-project` to apply 4 suggestions)
[INFO] [stderr] warning: `field-project` (lib test) generated 9 warnings (9 duplicates)
[INFO] [stderr]     Finished `test` profile [unoptimized + debuginfo] target(s) in 0.03s
[INFO] [stderr]      Running unittests src/lib.rs (/opt/rustwide/target/debug/deps/field_project-79f415af768706fa)
[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] [stderr]    Doc-tests field_project
[INFO] [stdout] 
[INFO] [stdout] running 1 test
[INFO] [stdout] test src/lib.rs - proj (line 66) ... FAILED
[INFO] [stdout] 
[INFO] [stdout] failures:
[INFO] [stdout] 
[INFO] [stdout] ---- src/lib.rs - proj (line 66) stdout ----
[INFO] [stdout] error[E0425]: cannot find type `Pin` in this scope
[INFO] [stdout]   --> src/lib.rs:76:8
[INFO] [stdout]    |
[INFO] [stdout] 76 | let a: Pin<_> = proj!(foo.a);
[INFO] [stdout]    |        ^^^ not found in this scope
[INFO] [stdout]    |
[INFO] [stdout] help: consider importing this struct
[INFO] [stdout]    |
[INFO] [stdout] 65 + use std::pin::Pin;
[INFO] [stdout]    |
[INFO] [stdout] 
[INFO] [stdout] error: aborting due to 1 previous error
[INFO] [stdout] 
[INFO] [stdout] For more information about this error, try `rustc --explain E0425`.
[INFO] [stdout] Couldn't compile the test.
[INFO] [stdout] 
[INFO] [stdout] failures:
[INFO] [stdout]     src/lib.rs - proj (line 66)
[INFO] [stdout] 
[INFO] [stdout] test result: FAILED. 0 passed; 1 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.09s
[INFO] [stdout] 
[INFO] [stderr] error: doctest failed, to rerun pass `--doc`
[INFO] running `Command { std: "docker" "inspect" "78e852018e21182beeff83806ddfc2ab55f175e6aa255b8b1c42c00e38898d69", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "rm" "-f" "78e852018e21182beeff83806ddfc2ab55f175e6aa255b8b1c42c00e38898d69", kill_on_drop: false }`
[INFO] [stdout] 78e852018e21182beeff83806ddfc2ab55f175e6aa255b8b1c42c00e38898d69
