[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] running `"git" "rev-parse" "HEAD"` [INFO] [stdout] 2bfbc8c31a78316e8488ad8a9fd1eea8a166ac54 [INFO] checking chansuke/basalt against master#fdc0011561c6365c596dfd8fa1ef388162bc89c7 for pr-66504-1 [INFO] running `"git" "clone" "/workspace/cache/git-repos/https%3A%2F%2Fgithub.com%2Fchansuke%2Fbasalt" "/workspace/builds/worker-5/source"` [INFO] [stderr] Cloning into '/workspace/builds/worker-5/source'... [INFO] [stderr] done. [INFO] validating manifest of git repo https://github.com/chansuke/basalt 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/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-5/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" "+fdc0011561c6365c596dfd8fa1ef388162bc89c7" "fetch" "--locked" "--manifest-path" "Cargo.toml"` [INFO] running `"docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-5/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-5/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] f16513e20688a4476c3e580fa6257c0054b04e48812bb965dfd1d7bb0a7d44f8 [INFO] running `"docker" "start" "-a" "f16513e20688a4476c3e580fa6257c0054b04e48812bb965dfd1d7bb0a7d44f8"` [INFO] [stderr] Checking nom v4.2.3 [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:58:22 [INFO] [stderr] | [INFO] [stderr] 58 | 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:59:28 [INFO] [stderr] | [INFO] [stderr] 59 | 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:64:27 [INFO] [stderr] | [INFO] [stderr] 64 | 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:64:44 [INFO] [stderr] | [INFO] [stderr] 64 | 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:65:40 [INFO] [stderr] | [INFO] [stderr] 65 | assert_eq!(instruction.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 `Token` [INFO] [stderr] --> src/assembler/opcode_parsers.rs:33:27 [INFO] [stderr] | [INFO] [stderr] 33 | assert_eq!(value, Token::IntegerOperand { value: 10 }); [INFO] [stderr] | ^^^^^ use of undeclared type or module `Token` [INFO] [stderr] [INFO] [stderr] error[E0433]: failed to resolve: use of undeclared type or module `Token` [INFO] [stderr] --> src/assembler/operand_parsers.rs:26:27 [INFO] [stderr] | [INFO] [stderr] 26 | assert_eq!(value, Token::IntegerOperand { value: 10 }); [INFO] [stderr] | ^^^^^ use of undeclared type or module `Token` [INFO] [stderr] [INFO] [stderr] error[E0425]: cannot find function `integer_operand` in this scope [INFO] [stderr] --> src/assembler/opcode_parsers.rs:29:22 [INFO] [stderr] | [INFO] [stderr] 29 | let result = integer_operand(CompleteStr("#10")); [INFO] [stderr] | ^^^^^^^^^^^^^^^ not found in this scope [INFO] [stderr] | [INFO] [stderr] help: possible candidates are found in other modules, you can import them into scope [INFO] [stderr] | [INFO] [stderr] 28 | use crate::assembler::opcode_parsers::integer_operand; [INFO] [stderr] | [INFO] [stderr] 28 | use crate::assembler::operand_parsers::integer_operand; [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] error[E0425]: cannot find function, tuple struct or tuple variant `CompleteStr` in this scope [INFO] [stderr] --> src/assembler/opcode_parsers.rs:29:38 [INFO] [stderr] | [INFO] [stderr] 29 | let result = integer_operand(CompleteStr("#10")); [INFO] [stderr] | ^^^^^^^^^^^ not found in this scope [INFO] [stderr] | [INFO] [stderr] help: possible candidate is found in another module, you can import it into scope [INFO] [stderr] | [INFO] [stderr] 28 | use nom::types::CompleteStr; [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] error[E0425]: cannot find function, tuple struct or tuple variant `CompleteStr` in this scope [INFO] [stderr] --> src/assembler/opcode_parsers.rs:32:26 [INFO] [stderr] | [INFO] [stderr] 32 | assert_eq!(rest, CompleteStr("")); [INFO] [stderr] | ^^^^^^^^^^^ not found in this scope [INFO] [stderr] | [INFO] [stderr] help: possible candidate is found in another module, you can import it into scope [INFO] [stderr] | [INFO] [stderr] 28 | use nom::types::CompleteStr; [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] error[E0425]: cannot find function `integer_operand` in this scope [INFO] [stderr] --> src/assembler/opcode_parsers.rs:35:22 [INFO] [stderr] | [INFO] [stderr] 35 | let result = integer_operand(CompleteStr("10")); [INFO] [stderr] | ^^^^^^^^^^^^^^^ not found in this scope [INFO] [stderr] | [INFO] [stderr] help: possible candidates are found in other modules, you can import them into scope [INFO] [stderr] | [INFO] [stderr] 28 | use crate::assembler::opcode_parsers::integer_operand; [INFO] [stderr] | [INFO] [stderr] 28 | use crate::assembler::operand_parsers::integer_operand; [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] error[E0425]: cannot find function, tuple struct or tuple variant `CompleteStr` in this scope [INFO] [stderr] --> src/assembler/opcode_parsers.rs:35:38 [INFO] [stderr] | [INFO] [stderr] 35 | let result = integer_operand(CompleteStr("10")); [INFO] [stderr] | ^^^^^^^^^^^ not found in this scope [INFO] [stderr] | [INFO] [stderr] help: possible candidate is found in another module, you can import it into scope [INFO] [stderr] | [INFO] [stderr] 28 | use nom::types::CompleteStr; [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] error[E0425]: cannot find function `integer_operand` in this scope [INFO] [stderr] --> src/assembler/operand_parsers.rs:22:22 [INFO] [stderr] | [INFO] [stderr] 22 | let result = integer_operand(CompleteStr("#10")); [INFO] [stderr] | ^^^^^^^^^^^^^^^ not found in this scope [INFO] [stderr] | [INFO] [stderr] help: possible candidates are found in other modules, you can import them into scope [INFO] [stderr] | [INFO] [stderr] 21 | use crate::assembler::opcode_parsers::integer_operand; [INFO] [stderr] | [INFO] [stderr] 21 | use crate::assembler::operand_parsers::integer_operand; [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] error[E0425]: cannot find function, tuple struct or tuple variant `CompleteStr` in this scope [INFO] [stderr] --> src/assembler/operand_parsers.rs:22:38 [INFO] [stderr] | [INFO] [stderr] 22 | let result = integer_operand(CompleteStr("#10")); [INFO] [stderr] | ^^^^^^^^^^^ not found in this scope [INFO] [stderr] | [INFO] [stderr] help: possible candidate is found in another module, you can import it into scope [INFO] [stderr] | [INFO] [stderr] 21 | use nom::types::CompleteStr; [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] error[E0425]: cannot find function, tuple struct or tuple variant `CompleteStr` in this scope [INFO] [stderr] --> src/assembler/operand_parsers.rs:25:26 [INFO] [stderr] | [INFO] [stderr] 25 | assert_eq!(rest, CompleteStr("")); [INFO] [stderr] | ^^^^^^^^^^^ not found in this scope [INFO] [stderr] | [INFO] [stderr] help: possible candidate is found in another module, you can import it into scope [INFO] [stderr] | [INFO] [stderr] 21 | use nom::types::CompleteStr; [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] error[E0425]: cannot find function `integer_operand` in this scope [INFO] [stderr] --> src/assembler/operand_parsers.rs:28:22 [INFO] [stderr] | [INFO] [stderr] 28 | let result = integer_operand(CompleteStr("10")); [INFO] [stderr] | ^^^^^^^^^^^^^^^ not found in this scope [INFO] [stderr] | [INFO] [stderr] help: possible candidates are found in other modules, you can import them into scope [INFO] [stderr] | [INFO] [stderr] 21 | use crate::assembler::opcode_parsers::integer_operand; [INFO] [stderr] | [INFO] [stderr] 21 | use crate::assembler::operand_parsers::integer_operand; [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] error[E0425]: cannot find function, tuple struct or tuple variant `CompleteStr` in this scope [INFO] [stderr] --> src/assembler/operand_parsers.rs:28:38 [INFO] [stderr] | [INFO] [stderr] 28 | let result = integer_operand(CompleteStr("10")); [INFO] [stderr] | ^^^^^^^^^^^ not found in this scope [INFO] [stderr] | [INFO] [stderr] help: possible candidate is found in another module, you can import it into scope [INFO] [stderr] | [INFO] [stderr] 21 | use nom::types::CompleteStr; [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] error: aborting due to 17 previous errors [INFO] [stderr] [INFO] [stderr] Some errors have detailed explanations: E0425, E0433. [INFO] [stderr] For more information about an error, try `rustc --explain E0425`. [INFO] [stderr] error: could not compile `basalt`. [INFO] [stderr] [INFO] [stderr] To learn more, run the command again with --verbose. [INFO] running `"docker" "inspect" "f16513e20688a4476c3e580fa6257c0054b04e48812bb965dfd1d7bb0a7d44f8"` [INFO] running `"docker" "rm" "-f" "f16513e20688a4476c3e580fa6257c0054b04e48812bb965dfd1d7bb0a7d44f8"` [INFO] [stdout] f16513e20688a4476c3e580fa6257c0054b04e48812bb965dfd1d7bb0a7d44f8