[INFO] updating cached repository https://github.com/sayaks/fraction-interpreter [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] 9f1ebb1090b73fbcbf5dc30093dc7e91f34a70ea [INFO] checking sayaks/fraction-interpreter against try#f149601db42efe10ece8b284ab681fd4a6fcb89c for pr-68766 [INFO] running `"git" "clone" "/workspace/cache/git-repos/https%3A%2F%2Fgithub.com%2Fsayaks%2Ffraction-interpreter" "/workspace/builds/worker-6/source"` [INFO] [stderr] Cloning into '/workspace/builds/worker-6/source'... [INFO] [stderr] done. [INFO] validating manifest of git repo https://github.com/sayaks/fraction-interpreter on toolchain f149601db42efe10ece8b284ab681fd4a6fcb89c [INFO] running `"/workspace/cargo-home/bin/cargo" "+f149601db42efe10ece8b284ab681fd4a6fcb89c" "read-manifest" "--manifest-path" "Cargo.toml"` [INFO] started tweaking git repo https://github.com/sayaks/fraction-interpreter [INFO] finished tweaking git repo https://github.com/sayaks/fraction-interpreter [INFO] tweaked toml for git repo https://github.com/sayaks/fraction-interpreter written to /workspace/builds/worker-6/source/Cargo.toml [INFO] crate git repo https://github.com/sayaks/fraction-interpreter already has a lockfile, it will not be regenerated [INFO] running `"/workspace/cargo-home/bin/cargo" "+f149601db42efe10ece8b284ab681fd4a6fcb89c" "fetch" "--locked" "--manifest-path" "Cargo.toml"` [INFO] running `"docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-6/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-6/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" "+f149601db42efe10ece8b284ab681fd4a6fcb89c" "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] bcb3f13d53827c62d0a445e15202a04b7b968518a12083cd808b8332048c96ff [INFO] running `"docker" "start" "-a" "bcb3f13d53827c62d0a445e15202a04b7b968518a12083cd808b8332048c96ff"` [INFO] [stderr] Compiling syn v0.15.30 [INFO] [stderr] Checking rpds v0.6.0 [INFO] [stderr] Compiling pest_generator v2.1.0 [INFO] [stderr] Compiling pest_derive v2.1.0 [INFO] [stderr] Checking fraction-interpreter v0.1.0 (/opt/rustwide/workdir) [INFO] [stderr] error[E0425]: cannot find value `state` in this scope [INFO] [stderr] --> src/interpreter/parser.rs:5:10 [INFO] [stderr] | [INFO] [stderr] 5 | #[derive(Parser)] [INFO] [stderr] | ^^^^^^ not found in this scope [INFO] [stderr] | [INFO] [stderr] = note: possible candidate is found in another module, you can import it into scope: [INFO] [stderr] pest::state [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/interpreter/ast.rs:93:19 [INFO] [stderr] | [INFO] [stderr] 93 | pub func: &'a Fn (&List>) -> Result, RuntimeError>, [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use `dyn`: `dyn Fn (&List>) -> Result, RuntimeError>` [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(bare_trait_objects)]` on by default [INFO] [stderr] [INFO] [stderr] warning: unreachable statement [INFO] [stderr] --> src/interpreter/parser.rs:37:5 [INFO] [stderr] | [INFO] [stderr] 31 | / match assignment_type.as_rule() { [INFO] [stderr] 32 | | Rule::var_assign => unimplemented!(), [INFO] [stderr] 33 | | Rule::func_assign => unimplemented!(), [INFO] [stderr] 34 | | _ => unreachable!(), [INFO] [stderr] 35 | | }; [INFO] [stderr] | |_____- any code following this `match` expression is unreachable, as all arms diverge [INFO] [stderr] 36 | [INFO] [stderr] 37 | unimplemented!(); [INFO] [stderr] | ^^^^^^^^^^^^^^^^^ unreachable statement [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(unreachable_code)]` on by default [INFO] [stderr] = note: this warning originates in a macro outside of the current crate (in Nightly builds, run with -Z external-macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] error: aborting due to previous error [INFO] [stderr] [INFO] [stderr] For more information about this error, try `rustc --explain E0425`. [INFO] [stderr] error: could not compile `fraction-interpreter`. [INFO] [stderr] warning: build failed, waiting for other jobs to finish... [INFO] [stderr] error[E0425]: cannot find value `state` in this scope [INFO] [stderr] --> src/interpreter/parser.rs:5:10 [INFO] [stderr] | [INFO] [stderr] 5 | #[derive(Parser)] [INFO] [stderr] | ^^^^^^ not found in this scope [INFO] [stderr] | [INFO] [stderr] = note: possible candidate is found in another module, you can import it into scope: [INFO] [stderr] pest::state [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/interpreter/ast.rs:93:19 [INFO] [stderr] | [INFO] [stderr] 93 | pub func: &'a Fn (&List>) -> Result, RuntimeError>, [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use `dyn`: `dyn Fn (&List>) -> Result, RuntimeError>` [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(bare_trait_objects)]` on by default [INFO] [stderr] [INFO] [stderr] warning: unreachable statement [INFO] [stderr] --> src/interpreter/parser.rs:37:5 [INFO] [stderr] | [INFO] [stderr] 31 | / match assignment_type.as_rule() { [INFO] [stderr] 32 | | Rule::var_assign => unimplemented!(), [INFO] [stderr] 33 | | Rule::func_assign => unimplemented!(), [INFO] [stderr] 34 | | _ => unreachable!(), [INFO] [stderr] 35 | | }; [INFO] [stderr] | |_____- any code following this `match` expression is unreachable, as all arms diverge [INFO] [stderr] 36 | [INFO] [stderr] 37 | unimplemented!(); [INFO] [stderr] | ^^^^^^^^^^^^^^^^^ unreachable statement [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(unreachable_code)]` on by default [INFO] [stderr] = note: this warning originates in a macro outside of the current crate (in Nightly builds, run with -Z external-macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] error: aborting due to previous error [INFO] [stderr] [INFO] [stderr] For more information about this error, try `rustc --explain E0425`. [INFO] [stderr] error: could not compile `fraction-interpreter`. [INFO] [stderr] [INFO] [stderr] To learn more, run the command again with --verbose. [INFO] running `"docker" "inspect" "bcb3f13d53827c62d0a445e15202a04b7b968518a12083cd808b8332048c96ff"` [INFO] running `"docker" "rm" "-f" "bcb3f13d53827c62d0a445e15202a04b7b968518a12083cd808b8332048c96ff"` [INFO] [stdout] bcb3f13d53827c62d0a445e15202a04b7b968518a12083cd808b8332048c96ff