[INFO] updating cached repository https://github.com/zargony/rusty64 [INFO] running `"git" "-c" "credential.helper=" "-c" "credential.helper=/big/crater/work/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] 91b9c5edd70a39085000e084cb232828288cbf35 [INFO] testing zargony/rusty64 against 1.38.0 for beta-1.39-1 [INFO] running `"git" "clone" "work/cache/git-repos/https%3A%2F%2Fgithub.com%2Fzargony%2Frusty64" "work/builds/worker-5/source"` [INFO] [stderr] Cloning into 'work/builds/worker-5/source'... [INFO] [stderr] done. [INFO] validating manifest of git repo https://github.com/zargony/rusty64 on toolchain 1.38.0 [INFO] running `"/big/crater/work/cargo-home/bin/cargo" "+1.38.0" "read-manifest" "--manifest-path" "Cargo.toml"` [INFO] started tweaking git repo https://github.com/zargony/rusty64 [INFO] finished tweaking git repo https://github.com/zargony/rusty64 [INFO] tweaked toml for git repo https://github.com/zargony/rusty64 written to work/builds/worker-5/source/Cargo.toml [INFO] crate git repo https://github.com/zargony/rusty64 already has a lockfile, it will not be regenerated [INFO] running `"/big/crater/work/cargo-home/bin/cargo" "+1.38.0" "fetch" "--locked" "--manifest-path" "Cargo.toml"` [INFO] [stderr] error: the lock file /big/crater/work/builds/worker-5/source/Cargo.lock needs to be updated but --locked was passed to prevent this [INFO] the lockfile is outdated, regenerating it [INFO] running `"/big/crater/work/cargo-home/bin/cargo" "+1.38.0" "generate-lockfile" "--manifest-path" "Cargo.toml" "-Zno-index-update"` [INFO] running `"/big/crater/work/cargo-home/bin/cargo" "+1.38.0" "fetch" "--locked" "--manifest-path" "Cargo.toml"` [INFO] running `"docker" "create" "-v" "/big/crater/work/builds/worker-5/target:/opt/rustwide/target:rw,Z" "-v" "/big/crater/work/builds/worker-5/source:/opt/rustwide/workdir:ro,Z" "-v" "/big/crater/work/cargo-home:/opt/rustwide/cargo-home:ro,Z" "-v" "/big/crater/work/rustup-home:/opt/rustwide/rustup-home:ro,Z" "-e" "SOURCE_DIR=/opt/rustwide/workdir" "-e" "MAP_USER_ID=1000" "-e" "CARGO_TARGET_DIR=/opt/rustwide/target" "-e" "CARGO_INCREMENTAL=0" "-e" "RUST_BACKTRACE=full" "-e" "RUSTFLAGS=--cap-lints=warn" "-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" "+1.38.0" "build" "--frozen"` [INFO] [stdout] a7b7350c3df4f0a777318c1a142ed1d61e3b36bace6f44e3949b5ae7315ba5d1 [INFO] running `"docker" "start" "-a" "a7b7350c3df4f0a777318c1a142ed1d61e3b36bace6f44e3949b5ae7315ba5d1"` [INFO] [stderr] Compiling log v0.4.8 [INFO] [stderr] Compiling bitflags v0.3.3 [INFO] [stderr] Compiling memchr v0.1.11 [INFO] [stderr] Compiling thread-id v2.0.0 [INFO] [stderr] Compiling thread_local v0.2.7 [INFO] [stderr] Compiling aho-corasick v0.5.3 [INFO] [stderr] Compiling regex v0.1.80 [INFO] [stderr] Compiling log v0.3.9 [INFO] [stderr] Compiling env_logger v0.3.5 [INFO] [stderr] Compiling rusty64 v0.0.3 (/opt/rustwide/workdir) [INFO] [stderr] error[E0599]: no method named `offset` found for type `addr::masked::Masked<{integer}>` in the current scope [INFO] [stderr] --> src/cpu/mos6502/mod.rs:272:43 [INFO] [stderr] | [INFO] [stderr] 272 | let addr = Masked(0x0100, 0xff00).offset(self.sp as i16 + 1); [INFO] [stderr] | ^^^^^^ [INFO] [stderr] | [INFO] [stderr] ::: src/addr/masked.rs:19:1 [INFO] [stderr] | [INFO] [stderr] 19 | pub struct Masked(pub T, pub T); [INFO] [stderr] | ----------------------------------- method `offset` not found for this [INFO] [stderr] | [INFO] [stderr] = note: the method `offset` exists but the following trait bounds were not satisfied: [INFO] [stderr] `addr::masked::Masked<{integer}> : addr::address::Address` [INFO] [stderr] = help: items from traits can only be used if the trait is implemented and in scope [INFO] [stderr] = note: the following trait defines an item `offset`, perhaps you need to implement it: [INFO] [stderr] candidate #1: `addr::address::Address` [INFO] [stderr] [INFO] [stderr] error[E0599]: no method named `offset` found for type `addr::masked::Masked<{integer}>` in the current scope [INFO] [stderr] --> src/cpu/mos6502/mod.rs:279:43 [INFO] [stderr] | [INFO] [stderr] 279 | let addr = Masked(0x0100, 0xff00).offset(self.sp as i16 + 1); [INFO] [stderr] | ^^^^^^ [INFO] [stderr] | [INFO] [stderr] ::: src/addr/masked.rs:19:1 [INFO] [stderr] | [INFO] [stderr] 19 | pub struct Masked(pub T, pub T); [INFO] [stderr] | ----------------------------------- method `offset` not found for this [INFO] [stderr] | [INFO] [stderr] = note: the method `offset` exists but the following trait bounds were not satisfied: [INFO] [stderr] `addr::masked::Masked<{integer}> : addr::address::Address` [INFO] [stderr] = help: items from traits can only be used if the trait is implemented and in scope [INFO] [stderr] = note: the following trait defines an item `offset`, perhaps you need to implement it: [INFO] [stderr] candidate #1: `addr::address::Address` [INFO] [stderr] [INFO] [stderr] error[E0275]: overflow evaluating the requirement `u16: addr::masked::Maskable` [INFO] [stderr] --> src/cpu/mos6502/operand.rs:39:68 [INFO] [stderr] | [INFO] [stderr] 39 | Operand::Indirect(addr) => cpu.mem.get_le(Masked(addr, 0xff00)), // simulating MSB-bug [INFO] [stderr] | ^^^^^^ [INFO] [stderr] | [INFO] [stderr] = note: required because of the requirements on the impl of `addr::address::Address` for `addr::masked::Masked` [INFO] [stderr] [INFO] [stderr] error: aborting due to 3 previous errors [INFO] [stderr] [INFO] [stderr] Some errors have detailed explanations: E0275, E0599. [INFO] [stderr] For more information about an error, try `rustc --explain E0275`. [INFO] [stderr] error: Could not compile `rusty64`. [INFO] [stderr] [INFO] [stderr] To learn more, run the command again with --verbose. [INFO] running `"docker" "inspect" "a7b7350c3df4f0a777318c1a142ed1d61e3b36bace6f44e3949b5ae7315ba5d1"` [INFO] running `"docker" "rm" "-f" "a7b7350c3df4f0a777318c1a142ed1d61e3b36bace6f44e3949b5ae7315ba5d1"` [INFO] [stdout] a7b7350c3df4f0a777318c1a142ed1d61e3b36bace6f44e3949b5ae7315ba5d1