[INFO] updating cached repository https://github.com/aelred/nes-rust [INFO] running `"git" "-c" "credential.helper=" "-c" "credential.helper=/workspace/cargo-home/bin/git-credential-null" "-c" "remote.origin.fetch=refs/heads/*:refs/heads/*" "fetch" "origin" "--force" "--prune"` [INFO] running `"git" "rev-parse" "HEAD"` [INFO] [stdout] 4deb07e9f9bdf56aacac46ed1a5bfda2fb1005f3 [INFO] checking aelred/nes-rust against master#fdc0011561c6365c596dfd8fa1ef388162bc89c7 for pr-66504-1 [INFO] running `"git" "clone" "/workspace/cache/git-repos/https%3A%2F%2Fgithub.com%2Faelred%2Fnes-rust" "/workspace/builds/worker-1/source"` [INFO] [stderr] Cloning into '/workspace/builds/worker-1/source'... [INFO] [stderr] done. [INFO] validating manifest of git repo https://github.com/aelred/nes-rust on toolchain fdc0011561c6365c596dfd8fa1ef388162bc89c7 [INFO] running `"/workspace/cargo-home/bin/cargo" "+fdc0011561c6365c596dfd8fa1ef388162bc89c7" "read-manifest" "--manifest-path" "Cargo.toml"` [INFO] started tweaking git repo https://github.com/aelred/nes-rust [INFO] finished tweaking git repo https://github.com/aelred/nes-rust [INFO] tweaked toml for git repo https://github.com/aelred/nes-rust written to /workspace/builds/worker-1/source/Cargo.toml [INFO] crate git repo https://github.com/aelred/nes-rust already has a lockfile, it will not be regenerated [INFO] running `"/workspace/cargo-home/bin/cargo" "+fdc0011561c6365c596dfd8fa1ef388162bc89c7" "fetch" "--locked" "--manifest-path" "Cargo.toml"` [INFO] running `"docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-1/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-1/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" "MAP_USER_ID=0" "-e" "CARGO_TARGET_DIR=/opt/rustwide/target" "-e" "CARGO_INCREMENTAL=0" "-e" "RUST_BACKTRACE=full" "-e" "RUSTFLAGS=--cap-lints=forbid" "-e" "CARGO_HOME=/opt/rustwide/cargo-home" "-e" "RUSTUP_HOME=/opt/rustwide/rustup-home" "-w" "/opt/rustwide/workdir" "-m" "1610612736" "--network" "none" "rustops/crates-build-env" "/opt/rustwide/cargo-home/bin/cargo" "+fdc0011561c6365c596dfd8fa1ef388162bc89c7" "check" "--frozen" "--all" "--all-targets"` [INFO] [stderr] WARNING: Your kernel does not support swap limit capabilities or the cgroup is not mounted. Memory limited without swap. [INFO] [stdout] ec521a80b6ce705589e4dd7fc718c6a6c69ec8dd95a3dd96c024303c6ee055d9 [INFO] running `"docker" "start" "-a" "ec521a80b6ce705589e4dd7fc718c6a6c69ec8dd95a3dd96c024303c6ee055d9"` [INFO] [stderr] Compiling libc v0.2.47 [INFO] [stderr] Compiling cfg-if v0.1.6 [INFO] [stderr] Checking termcolor v1.0.4 [INFO] [stderr] Checking nodrop v0.1.13 [INFO] [stderr] Compiling rand v0.6.4 [INFO] [stderr] Checking rand_chacha v0.1.1 [INFO] [stderr] Compiling num-traits v0.1.43 [INFO] [stderr] Checking num-iter v0.1.37 [INFO] [stderr] Compiling sdl2-sys v0.32.5 [INFO] [stderr] Compiling enum-primitive-derive v0.1.2 [INFO] [stderr] Checking num v0.1.42 [INFO] [stderr] Checking arrayvec v0.3.25 [INFO] [stderr] Checking hexdump v0.1.0 [INFO] [stderr] Checking rand_os v0.1.1 [INFO] [stderr] Checking atty v0.2.11 [INFO] [stderr] Checking env_logger v0.6.0 [INFO] [stderr] Checking sdl2 v0.32.1 [INFO] [stderr] Checking nes-rust v0.1.0 (/opt/rustwide/workdir) [INFO] [stderr] warning: unnecessary parentheses around type [INFO] [stderr] --> src/cpu.rs:408:89 [INFO] [stderr] | [INFO] [stderr] 408 | fn shift(&mut self, reference: Reference, carry_bit: u8, op: impl FnOnce(u8, u8) -> (u8)) { [INFO] [stderr] | ^^^^ help: remove these parentheses [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(unused_parens)]` on by default [INFO] [stderr] [INFO] [stderr] warning: unnecessary parentheses around type [INFO] [stderr] --> src/cpu.rs:408:89 [INFO] [stderr] | [INFO] [stderr] 408 | fn shift(&mut self, reference: Reference, carry_bit: u8, op: impl FnOnce(u8, u8) -> (u8)) { [INFO] [stderr] | ^^^^ help: remove these parentheses [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(unused_parens)]` on by default [INFO] [stderr] [INFO] [stderr] warning: this method call currently resolves to `<&[T; N] as IntoIterator>::into_iter` (due to autoref coercions), but that might change in the future when `IntoIterator` impls for arrays are added. [INFO] [stderr] --> tests/simple_programs.rs:15:39 [INFO] [stderr] | [INFO] [stderr] 15 | let params: Vec = $params.into_iter().cloned().collect(); [INFO] [stderr] | ^^^^^^^^^ help: use `.iter()` instead of `.into_iter()` to avoid ambiguity: `iter` [INFO] [stderr] ... [INFO] [stderr] 80 | / run!([1, 2] -> [3]; [INFO] [stderr] 81 | | LDA_ABSOLUTE, PARAM_ADDRESS, 0, [INFO] [stderr] 82 | | INX, [INFO] [stderr] 83 | | ADC_ABSOLUTE_X, PARAM_ADDRESS, 0, [INFO] [stderr] ... | [INFO] [stderr] 86 | | STA_ABSOLUTE, HALT_ADDRESS, 0 [INFO] [stderr] 87 | | ); [INFO] [stderr] | |______- in this macro invocation [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(array_into_iter)]` on by default [INFO] [stderr] = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release! [INFO] [stderr] = note: for more information, see issue #66145 [INFO] [stderr] [INFO] [stderr] warning: this method call currently resolves to `<&[T; N] as IntoIterator>::into_iter` (due to autoref coercions), but that might change in the future when `IntoIterator` impls for arrays are added. [INFO] [stderr] --> tests/simple_programs.rs:16:43 [INFO] [stderr] | [INFO] [stderr] 16 | let expected: Vec = $expected.into_iter().cloned().collect(); [INFO] [stderr] | ^^^^^^^^^ help: use `.iter()` instead of `.into_iter()` to avoid ambiguity: `iter` [INFO] [stderr] ... [INFO] [stderr] 80 | / run!([1, 2] -> [3]; [INFO] [stderr] 81 | | LDA_ABSOLUTE, PARAM_ADDRESS, 0, [INFO] [stderr] 82 | | INX, [INFO] [stderr] 83 | | ADC_ABSOLUTE_X, PARAM_ADDRESS, 0, [INFO] [stderr] ... | [INFO] [stderr] 86 | | STA_ABSOLUTE, HALT_ADDRESS, 0 [INFO] [stderr] 87 | | ); [INFO] [stderr] | |______- in this macro invocation [INFO] [stderr] | [INFO] [stderr] = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release! [INFO] [stderr] = note: for more information, see issue #66145 [INFO] [stderr] [INFO] [stderr] warning: this method call currently resolves to `<&[T; N] as IntoIterator>::into_iter` (due to autoref coercions), but that might change in the future when `IntoIterator` impls for arrays are added. [INFO] [stderr] --> tests/simple_programs.rs:15:39 [INFO] [stderr] | [INFO] [stderr] 15 | let params: Vec = $params.into_iter().cloned().collect(); [INFO] [stderr] | ^^^^^^^^^ help: use `.iter()` instead of `.into_iter()` to avoid ambiguity: `iter` [INFO] [stderr] ... [INFO] [stderr] 92 | / run!([7, 6] -> [42]; [INFO] [stderr] 93 | | LDA_IMMEDIATE, 0u8, [INFO] [stderr] 94 | | LDY_ABSOLUTE, PARAM_ADDRESS, 0, [INFO] [stderr] 95 | | INX, [INFO] [stderr] ... | [INFO] [stderr] 101 | | STA_ABSOLUTE, HALT_ADDRESS, 0 [INFO] [stderr] 102 | | ); [INFO] [stderr] | |______- in this macro invocation [INFO] [stderr] | [INFO] [stderr] = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release! [INFO] [stderr] = note: for more information, see issue #66145 [INFO] [stderr] [INFO] [stderr] warning: this method call currently resolves to `<&[T; N] as IntoIterator>::into_iter` (due to autoref coercions), but that might change in the future when `IntoIterator` impls for arrays are added. [INFO] [stderr] --> tests/simple_programs.rs:16:43 [INFO] [stderr] | [INFO] [stderr] 16 | let expected: Vec = $expected.into_iter().cloned().collect(); [INFO] [stderr] | ^^^^^^^^^ help: use `.iter()` instead of `.into_iter()` to avoid ambiguity: `iter` [INFO] [stderr] ... [INFO] [stderr] 92 | / run!([7, 6] -> [42]; [INFO] [stderr] 93 | | LDA_IMMEDIATE, 0u8, [INFO] [stderr] 94 | | LDY_ABSOLUTE, PARAM_ADDRESS, 0, [INFO] [stderr] 95 | | INX, [INFO] [stderr] ... | [INFO] [stderr] 101 | | STA_ABSOLUTE, HALT_ADDRESS, 0 [INFO] [stderr] 102 | | ); [INFO] [stderr] | |______- in this macro invocation [INFO] [stderr] | [INFO] [stderr] = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release! [INFO] [stderr] = note: for more information, see issue #66145 [INFO] [stderr] [INFO] [stderr] warning: this method call currently resolves to `<&[T; N] as IntoIterator>::into_iter` (due to autoref coercions), but that might change in the future when `IntoIterator` impls for arrays are added. [INFO] [stderr] --> tests/simple_programs.rs:15:39 [INFO] [stderr] | [INFO] [stderr] 15 | let params: Vec = $params.into_iter().cloned().collect(); [INFO] [stderr] | ^^^^^^^^^ help: use `.iter()` instead of `.into_iter()` to avoid ambiguity: `iter` [INFO] [stderr] ... [INFO] [stderr] 107 | / run!([20] -> [210]; [INFO] [stderr] 108 | | LDA_IMMEDIATE, 0u8, [INFO] [stderr] 109 | | LDX_ABSOLUTE, PARAM_ADDRESS, 0, [INFO] [stderr] 110 | | ADC_ABSOLUTE, PARAM_ADDRESS, 0, [INFO] [stderr] ... | [INFO] [stderr] 115 | | STA_ABSOLUTE, HALT_ADDRESS, 0 [INFO] [stderr] 116 | | ); [INFO] [stderr] | |______- in this macro invocation [INFO] [stderr] | [INFO] [stderr] = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release! [INFO] [stderr] = note: for more information, see issue #66145 [INFO] [stderr] [INFO] [stderr] warning: this method call currently resolves to `<&[T; N] as IntoIterator>::into_iter` (due to autoref coercions), but that might change in the future when `IntoIterator` impls for arrays are added. [INFO] [stderr] --> tests/simple_programs.rs:16:43 [INFO] [stderr] | [INFO] [stderr] 16 | let expected: Vec = $expected.into_iter().cloned().collect(); [INFO] [stderr] | ^^^^^^^^^ help: use `.iter()` instead of `.into_iter()` to avoid ambiguity: `iter` [INFO] [stderr] ... [INFO] [stderr] 107 | / run!([20] -> [210]; [INFO] [stderr] 108 | | LDA_IMMEDIATE, 0u8, [INFO] [stderr] 109 | | LDX_ABSOLUTE, PARAM_ADDRESS, 0, [INFO] [stderr] 110 | | ADC_ABSOLUTE, PARAM_ADDRESS, 0, [INFO] [stderr] ... | [INFO] [stderr] 115 | | STA_ABSOLUTE, HALT_ADDRESS, 0 [INFO] [stderr] 116 | | ); [INFO] [stderr] | |______- in this macro invocation [INFO] [stderr] | [INFO] [stderr] = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release! [INFO] [stderr] = note: for more information, see issue #66145 [INFO] [stderr] [INFO] [stderr] warning: this method call currently resolves to `<&[T; N] as IntoIterator>::into_iter` (due to autoref coercions), but that might change in the future when `IntoIterator` impls for arrays are added. [INFO] [stderr] --> tests/simple_programs.rs:15:39 [INFO] [stderr] | [INFO] [stderr] 15 | let params: Vec = $params.into_iter().cloned().collect(); [INFO] [stderr] | ^^^^^^^^^ help: use `.iter()` instead of `.into_iter()` to avoid ambiguity: `iter` [INFO] [stderr] ... [INFO] [stderr] 121 | / run!([20] -> [210]; [INFO] [stderr] 122 | | 0 => { [INFO] [stderr] 123 | | JSR, 0x34, 0x12, [INFO] [stderr] 124 | | LDA_IMMEDIATE, 1u8, [INFO] [stderr] ... | [INFO] [stderr] 135 | | } [INFO] [stderr] 136 | | ); [INFO] [stderr] | |______- in this macro invocation [INFO] [stderr] | [INFO] [stderr] = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release! [INFO] [stderr] = note: for more information, see issue #66145 [INFO] [stderr] [INFO] [stderr] warning: this method call currently resolves to `<&[T; N] as IntoIterator>::into_iter` (due to autoref coercions), but that might change in the future when `IntoIterator` impls for arrays are added. [INFO] [stderr] --> tests/simple_programs.rs:16:43 [INFO] [stderr] | [INFO] [stderr] 16 | let expected: Vec = $expected.into_iter().cloned().collect(); [INFO] [stderr] | ^^^^^^^^^ help: use `.iter()` instead of `.into_iter()` to avoid ambiguity: `iter` [INFO] [stderr] ... [INFO] [stderr] 121 | / run!([20] -> [210]; [INFO] [stderr] 122 | | 0 => { [INFO] [stderr] 123 | | JSR, 0x34, 0x12, [INFO] [stderr] 124 | | LDA_IMMEDIATE, 1u8, [INFO] [stderr] ... | [INFO] [stderr] 135 | | } [INFO] [stderr] 136 | | ); [INFO] [stderr] | |______- in this macro invocation [INFO] [stderr] | [INFO] [stderr] = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release! [INFO] [stderr] = note: for more information, see issue #66145 [INFO] [stderr] [INFO] [stderr] warning: this method call currently resolves to `<&[T; N] as IntoIterator>::into_iter` (due to autoref coercions), but that might change in the future when `IntoIterator` impls for arrays are added. [INFO] [stderr] --> tests/simple_programs.rs:15:39 [INFO] [stderr] | [INFO] [stderr] 15 | let params: Vec = $params.into_iter().cloned().collect(); [INFO] [stderr] | ^^^^^^^^^ help: use `.iter()` instead of `.into_iter()` to avoid ambiguity: `iter` [INFO] [stderr] ... [INFO] [stderr] 141 | / run!([11] -> [89]; [INFO] [stderr] 142 | | LDX_IMMEDIATE, 0x01u8, [INFO] [stderr] 143 | | STX_ZERO_PAGE, 0xefu8, [INFO] [stderr] 144 | | SEC, [INFO] [stderr] ... | [INFO] [stderr] 160 | | STA_ABSOLUTE, HALT_ADDRESS, 0 [INFO] [stderr] 161 | | ); [INFO] [stderr] | |______- in this macro invocation [INFO] [stderr] | [INFO] [stderr] = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release! [INFO] [stderr] = note: for more information, see issue #66145 [INFO] [stderr] [INFO] [stderr] warning: this method call currently resolves to `<&[T; N] as IntoIterator>::into_iter` (due to autoref coercions), but that might change in the future when `IntoIterator` impls for arrays are added. [INFO] [stderr] --> tests/simple_programs.rs:16:43 [INFO] [stderr] | [INFO] [stderr] 16 | let expected: Vec = $expected.into_iter().cloned().collect(); [INFO] [stderr] | ^^^^^^^^^ help: use `.iter()` instead of `.into_iter()` to avoid ambiguity: `iter` [INFO] [stderr] ... [INFO] [stderr] 141 | / run!([11] -> [89]; [INFO] [stderr] 142 | | LDX_IMMEDIATE, 0x01u8, [INFO] [stderr] 143 | | STX_ZERO_PAGE, 0xefu8, [INFO] [stderr] 144 | | SEC, [INFO] [stderr] ... | [INFO] [stderr] 160 | | STA_ABSOLUTE, HALT_ADDRESS, 0 [INFO] [stderr] 161 | | ); [INFO] [stderr] | |______- in this macro invocation [INFO] [stderr] | [INFO] [stderr] = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release! [INFO] [stderr] = note: for more information, see issue #66145 [INFO] [stderr] [INFO] [stderr] Finished dev [unoptimized + debuginfo] target(s) in 20.64s [INFO] running `"docker" "inspect" "ec521a80b6ce705589e4dd7fc718c6a6c69ec8dd95a3dd96c024303c6ee055d9"` [INFO] running `"docker" "rm" "-f" "ec521a80b6ce705589e4dd7fc718c6a6c69ec8dd95a3dd96c024303c6ee055d9"` [INFO] [stdout] ec521a80b6ce705589e4dd7fc718c6a6c69ec8dd95a3dd96c024303c6ee055d9