[INFO] fetching crate exn 0.3.0...
[INFO] checking exn-0.3.0 against try#7b3da9103634dffd4f4365cfd8642427c781d99f+rustflags=-Dinherent-method-on-receiver for 152214-denied
[INFO] extracting crate exn 0.3.0 into /workspace/builds/worker-5-tc2/source
[INFO] started tweaking crates.io crate exn 0.3.0
[INFO] removed 0 missing tests
[INFO] finished tweaking crates.io crate exn 0.3.0
[INFO] tweaked toml for crates.io crate exn 0.3.0 written to /workspace/builds/worker-5-tc2/source/Cargo.toml
[INFO] validating manifest of crates.io crate exn 0.3.0 on toolchain 7b3da9103634dffd4f4365cfd8642427c781d99f
[INFO] running `Command { std: CARGO_HOME="/workspace/cargo-home" RUSTUP_HOME="/workspace/rustup-home" "/workspace/cargo-home/bin/cargo" "+7b3da9103634dffd4f4365cfd8642427c781d99f" "metadata" "--manifest-path" "Cargo.toml" "--no-deps", kill_on_drop: false }`
[INFO] crate crates.io crate exn 0.3.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" "+7b3da9103634dffd4f4365cfd8642427c781d99f" "fetch" "--manifest-path" "Cargo.toml", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-5-tc2/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-5-tc2/source:/opt/rustwide/workdir:ro,Z" "-v" "/var/lib/crater-agent-workspace/cargo-home:/opt/rustwide/cargo-home:ro,Z" "-v" "/var/lib/crater-agent-workspace/rustup-home:/opt/rustwide/rustup-home:ro,Z" "-e" "SOURCE_DIR=/opt/rustwide/workdir" "-e" "CARGO_TARGET_DIR=/opt/rustwide/target" "-e" "CARGO_HOME=/opt/rustwide/cargo-home" "-e" "RUSTUP_HOME=/opt/rustwide/rustup-home" "-w" "/opt/rustwide/workdir" "-m" "1610612736" "--user" "0:0" "--network" "none" "ghcr.io/rust-lang/crates-build-env/linux@sha256:29356a839a4d14451438f794ce8414e707d72405f44418718d724d22562fe786" "/opt/rustwide/cargo-home/bin/cargo" "+7b3da9103634dffd4f4365cfd8642427c781d99f" "metadata" "--no-deps" "--format-version=1", kill_on_drop: false }`
[INFO] [stdout] d926f5ca10ccfe7516ab12f062e77e7393ad927e26f6e2e1d9a919ce1fa6b866
[INFO] running `Command { std: "docker" "start" "-a" "d926f5ca10ccfe7516ab12f062e77e7393ad927e26f6e2e1d9a919ce1fa6b866", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "inspect" "d926f5ca10ccfe7516ab12f062e77e7393ad927e26f6e2e1d9a919ce1fa6b866", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "rm" "-f" "d926f5ca10ccfe7516ab12f062e77e7393ad927e26f6e2e1d9a919ce1fa6b866", kill_on_drop: false }`
[INFO] [stdout] d926f5ca10ccfe7516ab12f062e77e7393ad927e26f6e2e1d9a919ce1fa6b866
[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 -Dinherent-method-on-receiver" "-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:29356a839a4d14451438f794ce8414e707d72405f44418718d724d22562fe786" "/opt/rustwide/cargo-home/bin/cargo" "+7b3da9103634dffd4f4365cfd8642427c781d99f" "check" "--frozen" "--all" "--all-targets" "--message-format=json", kill_on_drop: false }`
[INFO] [stdout] be7cf15270168154b8d052fb4b675b7941f2b52c5a7853f0fc080e5ec41ba3ce
[INFO] running `Command { std: "docker" "start" "-a" "be7cf15270168154b8d052fb4b675b7941f2b52c5a7853f0fc080e5ec41ba3ce", kill_on_drop: false }`
[INFO] [stderr]    Compiling libc v0.2.178
[INFO] [stderr]    Compiling rustix v1.1.2
[INFO] [stderr]    Compiling getrandom v0.3.4
[INFO] [stderr]     Checking linux-raw-sys v0.11.0
[INFO] [stderr]     Checking bitflags v2.10.0
[INFO] [stderr]     Checking exn v0.3.0 (/opt/rustwide/workdir)
[INFO] [stdout] error: inherent methods on types that implement `Deref` or `Receiver` shadow methods of their target
[INFO] [stdout]    --> src/impls.rs:116:52
[INFO] [stdout]     |
[INFO] [stdout] 116 |       pub fn raise<T: Error + Send + Sync + 'static>(self, err: T) -> Exn<T> {
[INFO] [stdout]     |                                                      ^^^^
[INFO] [stdout] ...
[INFO] [stdout] 128 | / impl<E> Deref for Exn<E>
[INFO] [stdout] 129 | | where
[INFO] [stdout] 130 | |     E: Error + Send + Sync + 'static,
[INFO] [stdout]     | |_____________________________________- trait implemented here
[INFO] [stdout] 131 |   {
[INFO] [stdout] 132 |       type Target = E;
[INFO] [stdout]     |       ----------- with `Target` set here
[INFO] [stdout]     |
[INFO] [stdout]     = note: requested on the command line with `-D inherent-method-on-receiver`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error: inherent methods on types that implement `Deref` or `Receiver` shadow methods of their target
[INFO] [stdout]    --> src/impls.rs:123:18
[INFO] [stdout]     |
[INFO] [stdout] 123 |       pub fn frame(&self) -> &Frame {
[INFO] [stdout]     |                    ^^^^^
[INFO] [stdout] ...
[INFO] [stdout] 128 | / impl<E> Deref for Exn<E>
[INFO] [stdout] 129 | | where
[INFO] [stdout] 130 | |     E: Error + Send + Sync + 'static,
[INFO] [stdout]     | |_____________________________________- trait implemented here
[INFO] [stdout] 131 |   {
[INFO] [stdout] 132 |       type Target = E;
[INFO] [stdout]     |       ----------- with `Target` set here
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stderr] error: could not compile `exn` (lib) due to 2 previous errors
[INFO] [stderr] warning: build failed, waiting for other jobs to finish...
[INFO] running `Command { std: "docker" "inspect" "be7cf15270168154b8d052fb4b675b7941f2b52c5a7853f0fc080e5ec41ba3ce", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "rm" "-f" "be7cf15270168154b8d052fb4b675b7941f2b52c5a7853f0fc080e5ec41ba3ce", kill_on_drop: false }`
[INFO] [stdout] be7cf15270168154b8d052fb4b675b7941f2b52c5a7853f0fc080e5ec41ba3ce
