[INFO] updating cached repository https://github.com/chansuke/basalt [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] [stderr] From https://github.com/chansuke/basalt [INFO] [stderr] 65805b9..03641a8 develop -> develop [INFO] [stderr] * [new branch] hotfix/fix-error-handling -> hotfix/fix-error-handling [INFO] running `"git" "rev-parse" "HEAD"` [INFO] [stdout] 03641a8eebac389de603eb431c8d88ac5a1e70a6 [INFO] checking chansuke/basalt against try#d27c6c6a469a28343396a8f3ac1c9d403aabda69 for pr-66037 [INFO] running `"git" "clone" "/workspace/cache/git-repos/https%3A%2F%2Fgithub.com%2Fchansuke%2Fbasalt" "/workspace/builds/worker-11/source"` [INFO] [stderr] Cloning into '/workspace/builds/worker-11/source'... [INFO] [stderr] done. [INFO] validating manifest of git repo https://github.com/chansuke/basalt on toolchain d27c6c6a469a28343396a8f3ac1c9d403aabda69 [INFO] running `"/workspace/cargo-home/bin/cargo" "+d27c6c6a469a28343396a8f3ac1c9d403aabda69" "read-manifest" "--manifest-path" "Cargo.toml"` [INFO] started tweaking git repo https://github.com/chansuke/basalt [INFO] finished tweaking git repo https://github.com/chansuke/basalt [INFO] tweaked toml for git repo https://github.com/chansuke/basalt written to /workspace/builds/worker-11/source/Cargo.toml [INFO] crate git repo https://github.com/chansuke/basalt already has a lockfile, it will not be regenerated [INFO] running `"/workspace/cargo-home/bin/cargo" "+d27c6c6a469a28343396a8f3ac1c9d403aabda69" "fetch" "--locked" "--manifest-path" "Cargo.toml"` [INFO] running `"docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-11/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-11/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" "+d27c6c6a469a28343396a8f3ac1c9d403aabda69" "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] 02265279ab05d2fb21904f8690a8c0ea3a8288465400e04c0443bba3b1b82a3a [INFO] running `"docker" "start" "-a" "02265279ab05d2fb21904f8690a8c0ea3a8288465400e04c0443bba3b1b82a3a"` [INFO] [stderr] Compiling libc v0.2.66 [INFO] [stderr] Checking termcolor v1.0.5 [INFO] [stderr] Checking yaml-rust v0.3.5 [INFO] [stderr] Compiling nom v4.2.3 [INFO] [stderr] Checking atty v0.2.13 [INFO] [stderr] Checking clap v2.33.0 [INFO] [stderr] Checking env_logger v0.5.13 [INFO] [stderr] Checking basalt v0.1.0 (/opt/rustwide/workdir) [INFO] [stderr] error[E0433]: failed to resolve: use of undeclared type or module `Opcode` [INFO] [stderr] --> src/instruction.rs:90:22 [INFO] [stderr] | [INFO] [stderr] 90 | let opcode = Opcode::HLT; [INFO] [stderr] | ^^^^^^ use of undeclared type or module `Opcode` [INFO] [stderr] [INFO] [stderr] error[E0433]: failed to resolve: use of undeclared type or module `Opcode` [INFO] [stderr] --> src/instruction.rs:91:28 [INFO] [stderr] | [INFO] [stderr] 91 | assert_eq!(opcode, Opcode::HLT); [INFO] [stderr] | ^^^^^^ use of undeclared type or module `Opcode` [INFO] [stderr] [INFO] [stderr] error[E0433]: failed to resolve: use of undeclared type or module `Instruction` [INFO] [stderr] --> src/instruction.rs:96:27 [INFO] [stderr] | [INFO] [stderr] 96 | let instruction = Instruction::new(Opcode::HLT); [INFO] [stderr] | ^^^^^^^^^^^ use of undeclared type or module `Instruction` [INFO] [stderr] [INFO] [stderr] error[E0433]: failed to resolve: use of undeclared type or module `Opcode` [INFO] [stderr] --> src/instruction.rs:96:44 [INFO] [stderr] | [INFO] [stderr] 96 | let instruction = Instruction::new(Opcode::HLT); [INFO] [stderr] | ^^^^^^ use of undeclared type or module `Opcode` [INFO] [stderr] [INFO] [stderr] error[E0433]: failed to resolve: use of undeclared type or module `Opcode` [INFO] [stderr] --> src/instruction.rs:97:40 [INFO] [stderr] | [INFO] [stderr] 97 | assert_eq!(instruction.opcode, Opcode::HLT); [INFO] [stderr] | ^^^^^^ use of undeclared type or module `Opcode` [INFO] [stderr] [INFO] [stderr] error: aborting due to 5 previous errors [INFO] [stderr] [INFO] [stderr] For more information about this error, try `rustc --explain E0433`. [INFO] [stderr] error: could not compile `basalt`. [INFO] [stderr] warning: build failed, waiting for other jobs to finish... [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] --> src/assembler/mod.rs:139:39 [INFO] [stderr] | [INFO] [stderr] 139 | for byte in PIE_HEADER_PREFIX.into_iter() { [INFO] [stderr] | ^^^^^^^^^ help: use `.iter()` instead of `.into_iter()` to avoid ambiguity: `iter` [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] error: build failed [INFO] running `"docker" "inspect" "02265279ab05d2fb21904f8690a8c0ea3a8288465400e04c0443bba3b1b82a3a"` [INFO] running `"docker" "rm" "-f" "02265279ab05d2fb21904f8690a8c0ea3a8288465400e04c0443bba3b1b82a3a"` [INFO] [stdout] 02265279ab05d2fb21904f8690a8c0ea3a8288465400e04c0443bba3b1b82a3a