[INFO] updating cached repository https://github.com/CopperWasp/LETREC_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] 92152c21cb291e721405a590cfca7e647db1aa44 [INFO] checking CopperWasp/LETREC_interpreter against beta-2019-10-27 for pr-65897 [INFO] running `"git" "clone" "/workspace/cache/git-repos/https%3A%2F%2Fgithub.com%2FCopperWasp%2FLETREC_interpreter" "/workspace/builds/worker-2/source"` [INFO] [stderr] Cloning into '/workspace/builds/worker-2/source'... [INFO] [stderr] done. [INFO] validating manifest of git repo https://github.com/CopperWasp/LETREC_interpreter on toolchain beta-2019-10-27 [INFO] running `"/workspace/cargo-home/bin/cargo" "+beta-2019-10-27" "read-manifest" "--manifest-path" "Cargo.toml"` [INFO] started tweaking git repo https://github.com/CopperWasp/LETREC_interpreter [INFO] finished tweaking git repo https://github.com/CopperWasp/LETREC_interpreter [INFO] tweaked toml for git repo https://github.com/CopperWasp/LETREC_interpreter written to /workspace/builds/worker-2/source/Cargo.toml [INFO] crate git repo https://github.com/CopperWasp/LETREC_interpreter already has a lockfile, it will not be regenerated [INFO] running `"/workspace/cargo-home/bin/cargo" "+beta-2019-10-27" "fetch" "--locked" "--manifest-path" "Cargo.toml"` [INFO] running `"docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-2/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-2/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=allow" "-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" "+beta-2019-10-27" "check" "--frozen" "--all" "--all-targets"` [INFO] [stdout] b6e1b18daf34cfe321c54584bae497cf726661b6a78ccb9c37a385e884526908 [INFO] [stderr] WARNING: Your kernel does not support swap limit capabilities or the cgroup is not mounted. Memory limited without swap. [INFO] running `"docker" "start" "-a" "b6e1b18daf34cfe321c54584bae497cf726661b6a78ccb9c37a385e884526908"` [INFO] [stderr] Checking let_lang_proj v0.1.0 (/opt/rustwide/workdir) [INFO] [stderr] error[E0412]: cannot find type `VarExp` in this scope [INFO] [stderr] --> src/let_lang_exp.rs:17:13 [INFO] [stderr] | [INFO] [stderr] 17 | ProcExp(VarExp, Rc, Rc), //proc-exp(var, body) [INFO] [stderr] | ^^^^^^ not found in this scope [INFO] [stderr] help: there is an enum variant `let_lang_exp::LetLangExp::VarExp`; try using the variant's enum [INFO] [stderr] | [INFO] [stderr] 17 | ProcExp(let_lang_exp::LetLangExp, Rc, Rc), //proc-exp(var, body) [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] error[E0308]: mismatched types [INFO] [stderr] --> src/let_lang_exp.rs:44:90 [INFO] [stderr] | [INFO] [stderr] 44 | pub fn new_proc_exp(v: &String, arg: &LetLangExp, env: &let_lang_env::LetLangEnv) -> Self{ [INFO] [stderr] | ------------ ^^^^ expected enum `let_lang_exp::LetLangExp`, found () [INFO] [stderr] | | [INFO] [stderr] | implicitly returns `()` as its body has no tail or `return` expression [INFO] [stderr] 45 | LetLangExp::ProcExp(v.clone(), Rc::new(arg.clone()), Rc::new(env.clone())); [INFO] [stderr] | - help: consider removing this semicolon [INFO] [stderr] | [INFO] [stderr] = note: expected type `let_lang_exp::LetLangExp` [INFO] [stderr] found type `()` [INFO] [stderr] [INFO] [stderr] error[E0023]: this pattern has 2 fields, but the corresponding tuple variant has 3 fields [INFO] [stderr] --> src/let_lang_exp.rs:80:13 [INFO] [stderr] | [INFO] [stderr] 17 | ProcExp(VarExp, Rc, Rc), //proc-exp(var, body) [INFO] [stderr] | ------------------------------------------------------------- tuple variant defined here [INFO] [stderr] ... [INFO] [stderr] 80 | LetLangExp::ProcExp(v, e) => {let mut temp= "proc( ".to_string(); [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^ expected 3 fields, found 2 [INFO] [stderr] [INFO] [stderr] error[E0412]: cannot find type `VarExp` in this scope [INFO] [stderr] --> src/let_lang_exp.rs:17:13 [INFO] [stderr] | [INFO] [stderr] 17 | ProcExp(VarExp, Rc, Rc), //proc-exp(var, body) [INFO] [stderr] | ^^^^^^ not found in this scope [INFO] [stderr] help: there is an enum variant `let_lang_exp::LetLangExp::VarExp`; try using the variant's enum [INFO] [stderr] | [INFO] [stderr] 17 | ProcExp(let_lang_exp::LetLangExp, Rc, Rc), //proc-exp(var, body) [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] error[E0308]: mismatched types [INFO] [stderr] --> src/let_lang_exp.rs:86:63 [INFO] [stderr] | [INFO] [stderr] 86 | ... temp.push_str(e1.to_string()); [INFO] [stderr] | ^^^^^^^^^^^^^^ [INFO] [stderr] | | [INFO] [stderr] | expected &str, found struct `std::string::String` [INFO] [stderr] | help: consider borrowing here: `&e1.to_string()` [INFO] [stderr] | [INFO] [stderr] = note: expected type `&str` [INFO] [stderr] found type `std::string::String` [INFO] [stderr] [INFO] [stderr] error[E0308]: mismatched types [INFO] [stderr] --> src/let_lang_exp.rs:88:63 [INFO] [stderr] | [INFO] [stderr] 88 | ... temp.push_str(e2.to_string()); [INFO] [stderr] | ^^^^^^^^^^^^^^ [INFO] [stderr] | | [INFO] [stderr] | expected &str, found struct `std::string::String` [INFO] [stderr] | help: consider borrowing here: `&e2.to_string()` [INFO] [stderr] | [INFO] [stderr] = note: expected type `&str` [INFO] [stderr] found type `std::string::String` [INFO] [stderr] [INFO] [stderr] error: aborting due to 5 previous errors [INFO] [stderr] [INFO] [stderr] Some errors have detailed explanations: E0023, E0308, E0412. [INFO] [stderr] For more information about an error, try `rustc --explain E0023`. [INFO] [stderr] error: could not compile `let_lang_proj`. [INFO] [stderr] warning: build failed, waiting for other jobs to finish... [INFO] [stderr] error[E0308]: mismatched types [INFO] [stderr] --> src/let_lang_exp.rs:44:90 [INFO] [stderr] | [INFO] [stderr] 44 | pub fn new_proc_exp(v: &String, arg: &LetLangExp, env: &let_lang_env::LetLangEnv) -> Self{ [INFO] [stderr] | ------------ ^^^^ expected enum `let_lang_exp::LetLangExp`, found () [INFO] [stderr] | | [INFO] [stderr] | implicitly returns `()` as its body has no tail or `return` expression [INFO] [stderr] 45 | LetLangExp::ProcExp(v.clone(), Rc::new(arg.clone()), Rc::new(env.clone())); [INFO] [stderr] | - help: consider removing this semicolon [INFO] [stderr] | [INFO] [stderr] = note: expected type `let_lang_exp::LetLangExp` [INFO] [stderr] found type `()` [INFO] [stderr] [INFO] [stderr] error[E0023]: this pattern has 2 fields, but the corresponding tuple variant has 3 fields [INFO] [stderr] --> src/let_lang_exp.rs:80:13 [INFO] [stderr] | [INFO] [stderr] 17 | ProcExp(VarExp, Rc, Rc), //proc-exp(var, body) [INFO] [stderr] | ------------------------------------------------------------- tuple variant defined here [INFO] [stderr] ... [INFO] [stderr] 80 | LetLangExp::ProcExp(v, e) => {let mut temp= "proc( ".to_string(); [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^ expected 3 fields, found 2 [INFO] [stderr] [INFO] [stderr] error[E0308]: mismatched types [INFO] [stderr] --> src/let_lang_exp.rs:86:63 [INFO] [stderr] | [INFO] [stderr] 86 | ... temp.push_str(e1.to_string()); [INFO] [stderr] | ^^^^^^^^^^^^^^ [INFO] [stderr] | | [INFO] [stderr] | expected &str, found struct `std::string::String` [INFO] [stderr] | help: consider borrowing here: `&e1.to_string()` [INFO] [stderr] | [INFO] [stderr] = note: expected type `&str` [INFO] [stderr] found type `std::string::String` [INFO] [stderr] [INFO] [stderr] error[E0308]: mismatched types [INFO] [stderr] --> src/let_lang_exp.rs:88:63 [INFO] [stderr] | [INFO] [stderr] 88 | ... temp.push_str(e2.to_string()); [INFO] [stderr] | ^^^^^^^^^^^^^^ [INFO] [stderr] | | [INFO] [stderr] | expected &str, found struct `std::string::String` [INFO] [stderr] | help: consider borrowing here: `&e2.to_string()` [INFO] [stderr] | [INFO] [stderr] = note: expected type `&str` [INFO] [stderr] found type `std::string::String` [INFO] [stderr] [INFO] [stderr] error[E0308]: mismatched types [INFO] [stderr] --> src/let_lang_env.rs:65:63 [INFO] [stderr] | [INFO] [stderr] 65 | let env2 = null_env.extend_env(&("var1".to_string()), 25); [INFO] [stderr] | ^^ [INFO] [stderr] | | [INFO] [stderr] | expected enum `int_bool::IntBool`, found integer [INFO] [stderr] | help: try using a variant of the expected type: `int_bool::IntBool::Integer(25)` [INFO] [stderr] | [INFO] [stderr] = note: expected type `int_bool::IntBool` [INFO] [stderr] found type `{integer}` [INFO] [stderr] [INFO] [stderr] error: aborting due to 6 previous errors [INFO] [stderr] [INFO] [stderr] Some errors have detailed explanations: E0023, E0308, E0412. [INFO] [stderr] For more information about an error, try `rustc --explain E0023`. [INFO] [stderr] error: could not compile `let_lang_proj`. [INFO] [stderr] [INFO] [stderr] To learn more, run the command again with --verbose. [INFO] running `"docker" "inspect" "b6e1b18daf34cfe321c54584bae497cf726661b6a78ccb9c37a385e884526908"` [INFO] running `"docker" "rm" "-f" "b6e1b18daf34cfe321c54584bae497cf726661b6a78ccb9c37a385e884526908"` [INFO] [stdout] b6e1b18daf34cfe321c54584bae497cf726661b6a78ccb9c37a385e884526908