[INFO] cloning repository https://github.com/jechase/rlox [INFO] running `"git" "-c" "credential.helper=" "-c" "credential.helper=/workspace/cargo-home/bin/git-credential-null" "clone" "--bare" "https://github.com/jechase/rlox" "/workspace/cache/git-repos/https%3A%2F%2Fgithub.com%2Fjechase%2Frlox"` [INFO] [stderr] Cloning into bare repository '/workspace/cache/git-repos/https%3A%2F%2Fgithub.com%2Fjechase%2Frlox'... [INFO] running `"git" "rev-parse" "HEAD"` [INFO] [stdout] 230eb638a84406f9de10f057b182bc3baa465242 [INFO] checking jechase/rlox against try#e4dba30b9b475d8750370c4dfb49b6541990904d for pr-71393 [INFO] running `"git" "clone" "/workspace/cache/git-repos/https%3A%2F%2Fgithub.com%2Fjechase%2Frlox" "/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/jechase/rlox on toolchain e4dba30b9b475d8750370c4dfb49b6541990904d [INFO] running `"/workspace/cargo-home/bin/cargo" "+e4dba30b9b475d8750370c4dfb49b6541990904d" "read-manifest" "--manifest-path" "Cargo.toml"` [INFO] started tweaking git repo https://github.com/jechase/rlox [INFO] finished tweaking git repo https://github.com/jechase/rlox [INFO] tweaked toml for git repo https://github.com/jechase/rlox written to /workspace/builds/worker-5/source/Cargo.toml [INFO] crate git repo https://github.com/jechase/rlox already has a lockfile, it will not be regenerated [INFO] running `"/workspace/cargo-home/bin/cargo" "+e4dba30b9b475d8750370c4dfb49b6541990904d" "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" "+e4dba30b9b475d8750370c4dfb49b6541990904d" "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] e95ee8b0bcc1414a07f1710f8dc39465d72c8d17e4194d571801d9e4a087484b [INFO] running `"docker" "start" "-a" "e95ee8b0bcc1414a07f1710f8dc39465d72c8d17e4194d571801d9e4a087484b"` [INFO] [stderr] Compiling unicode-xid v0.1.0 [INFO] [stderr] Compiling cc v1.0.23 [INFO] [stderr] Compiling unicode-xid v0.0.4 [INFO] [stderr] Checking void v1.0.2 [INFO] [stderr] Compiling quote v0.3.15 [INFO] [stderr] Compiling failure_derive v0.1.2 [INFO] [stderr] Checking rustc-demangle v0.1.9 [INFO] [stderr] Compiling proc-macro2 v0.4.18 [INFO] [stderr] Checking lazy_static v1.1.0 [INFO] [stderr] Checking unreachable v1.0.0 [INFO] [stderr] Compiling synom v0.11.3 [INFO] [stderr] Checking new_debug_unreachable v1.0.1 [INFO] [stderr] Checking futf v0.1.4 [INFO] [stderr] Compiling quote v0.6.8 [INFO] [stderr] Compiling syn v0.11.11 [INFO] [stderr] Checking tendril v0.4.0 [INFO] [stderr] Compiling syn v0.14.9 [INFO] [stderr] Compiling backtrace-sys v0.1.24 [INFO] [stderr] Checking backtrace v0.3.9 [INFO] [stderr] Compiling synstructure v0.6.1 [INFO] [stderr] Compiling display_derive v0.0.0 [INFO] [stderr] Compiling synstructure v0.9.0 [INFO] [stderr] Checking failure v0.1.2 [INFO] [stderr] Checking rlox v0.1.0 (/opt/rustwide/workdir) [INFO] [stderr] error[E0502]: cannot borrow `*self` as mutable because it is also borrowed as immutable [INFO] [stderr] --> src/lib/scanner.rs:194:9 [INFO] [stderr] | [INFO] [stderr] 193 | let text = self.source.get(self.start..self.current).unwrap(); [INFO] [stderr] | ----------- immutable borrow occurs here [INFO] [stderr] 194 | self.build_token( [INFO] [stderr] | ^^^^ mutable borrow occurs here [INFO] [stderr] 195 | TokenType::Number, [INFO] [stderr] 196 | Primitive::Number(f64::from_str(text).expect(&format!("parse float: {}", text))), [INFO] [stderr] | ---- immutable borrow later used here [INFO] [stderr] [INFO] [stderr] error: aborting due to previous error [INFO] [stderr] [INFO] [stderr] For more information about this error, try `rustc --explain E0502`. [INFO] [stderr] error: could not compile `rlox`. [INFO] [stderr] [INFO] [stderr] To learn more, run the command again with --verbose. [INFO] [stderr] warning: build failed, waiting for other jobs to finish... [INFO] [stderr] error[E0502]: cannot borrow `*self` as mutable because it is also borrowed as immutable [INFO] [stderr] --> src/lib/scanner.rs:194:9 [INFO] [stderr] | [INFO] [stderr] 193 | let text = self.source.get(self.start..self.current).unwrap(); [INFO] [stderr] | ----------- immutable borrow occurs here [INFO] [stderr] 194 | self.build_token( [INFO] [stderr] | ^^^^ mutable borrow occurs here [INFO] [stderr] 195 | TokenType::Number, [INFO] [stderr] 196 | Primitive::Number(f64::from_str(text).expect(&format!("parse float: {}", text))), [INFO] [stderr] | ---- immutable borrow later used here [INFO] [stderr] [INFO] [stderr] error: aborting due to previous error [INFO] [stderr] [INFO] [stderr] For more information about this error, try `rustc --explain E0502`. [INFO] [stderr] error: could not compile `rlox`. [INFO] [stderr] [INFO] [stderr] To learn more, run the command again with --verbose. [INFO] running `"docker" "inspect" "e95ee8b0bcc1414a07f1710f8dc39465d72c8d17e4194d571801d9e4a087484b"` [INFO] running `"docker" "rm" "-f" "e95ee8b0bcc1414a07f1710f8dc39465d72c8d17e4194d571801d9e4a087484b"` [INFO] [stdout] e95ee8b0bcc1414a07f1710f8dc39465d72c8d17e4194d571801d9e4a087484b