[INFO] updating cached repository https://github.com/owainlewis/rsc [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] ab09fadcbead42ab1c85177f0e77781a35273426 [INFO] testing owainlewis/rsc against 1.44.0 for beta-1.45-1 [INFO] running `"git" "clone" "/workspace/cache/git-repos/https%3A%2F%2Fgithub.com%2Fowainlewis%2Frsc" "/workspace/builds/worker-1/source"` [INFO] [stderr] Cloning into '/workspace/builds/worker-1/source'... [INFO] [stderr] done. [INFO] validating manifest of git repo https://github.com/owainlewis/rsc on toolchain 1.44.0 [INFO] running `"/workspace/cargo-home/bin/cargo" "+1.44.0" "read-manifest" "--manifest-path" "Cargo.toml"` [INFO] started tweaking git repo https://github.com/owainlewis/rsc [INFO] finished tweaking git repo https://github.com/owainlewis/rsc [INFO] tweaked toml for git repo https://github.com/owainlewis/rsc written to /workspace/builds/worker-1/source/Cargo.toml [INFO] crate git repo https://github.com/owainlewis/rsc already has a lockfile, it will not be regenerated [INFO] running `"/workspace/cargo-home/bin/cargo" "+1.44.0" "fetch" "--locked" "--manifest-path" "Cargo.toml"` [INFO] running `"docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-1/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-1/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=warn" "-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" "+1.44.0" "build" "--frozen"` [INFO] [stderr] WARNING: Your kernel does not support swap limit capabilities or the cgroup is not mounted. Memory limited without swap. [INFO] [stdout] d72419115f59ee6f85feca97645cbeddad2d3a29deafa93eda1c801e25a547af [INFO] running `"docker" "start" "-a" "d72419115f59ee6f85feca97645cbeddad2d3a29deafa93eda1c801e25a547af"` [INFO] [stderr] sudo: setrlimit(RLIMIT_CORE): Operation not permitted [INFO] [stderr] Compiling rsc v0.1.0 (/opt/rustwide/workdir) [INFO] [stderr] warning: `...` range patterns are deprecated [INFO] [stderr] --> src/lexer.rs:63:27 [INFO] [stderr] | [INFO] [stderr] 63 | '-' | '0' ... '9' => lex_number(&self.input), [INFO] [stderr] | ^^^ help: use `..=` for an inclusive range [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(ellipsis_inclusive_range_patterns)]` on by default [INFO] [stderr] [INFO] [stderr] warning: `...` range patterns are deprecated [INFO] [stderr] --> src/lexer.rs:64:21 [INFO] [stderr] | [INFO] [stderr] 64 | 'a' ... 'z' => lex_identifier(&self.input), [INFO] [stderr] | ^^^ help: use `..=` for an inclusive range [INFO] [stderr] [INFO] [stderr] warning: unused doc comment [INFO] [stderr] --> src/lexer.rs:66:21 [INFO] [stderr] | [INFO] [stderr] 66 | /// Ignore whitespace [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] 67 | self.advance(1); [INFO] [stderr] | --------------- rustdoc does not generate documentation for expressions [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(unused_doc_comments)]` on by default [INFO] [stderr] [INFO] [stderr] warning: `...` range patterns are deprecated [INFO] [stderr] --> src/lexer.rs:92:16 [INFO] [stderr] | [INFO] [stderr] 92 | '0' ... '9' => { [INFO] [stderr] | ^^^ help: use `..=` for an inclusive range [INFO] [stderr] [INFO] [stderr] warning: unused variable: `ind` [INFO] [stderr] --> src/lexer.rs:90:10 [INFO] [stderr] | [INFO] [stderr] 90 | for (ind, ch) in input.char_indices() { [INFO] [stderr] | ^^^ help: if this is intentional, prefix it with an underscore: `_ind` [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(unused_variables)]` on by default [INFO] [stderr] [INFO] [stderr] warning: unused variable: `ind` [INFO] [stderr] --> src/lexer.rs:104:10 [INFO] [stderr] | [INFO] [stderr] 104 | for (ind, ch) in input.char_indices() { [INFO] [stderr] | ^^^ help: if this is intentional, prefix it with an underscore: `_ind` [INFO] [stderr] [INFO] [stderr] warning: unused variable: `size` [INFO] [stderr] --> src/lexer.rs:46:30 [INFO] [stderr] | [INFO] [stderr] 46 | while let Ok((token, size)) = self. [INFO] [stderr] | ^^^^ help: if this is intentional, prefix it with an underscore: `_size` [INFO] [stderr] [INFO] [stderr] warning: unused variable: `c` [INFO] [stderr] --> src/lexer.rs:70:17 [INFO] [stderr] | [INFO] [stderr] 70 | c => { [INFO] [stderr] | ^ help: if this is intentional, prefix it with an underscore: `_c` [INFO] [stderr] [INFO] [stderr] error[E0499]: cannot borrow `*self` as mutable more than once at a time [INFO] [stderr] --> src/lexer.rs:46:39 [INFO] [stderr] | [INFO] [stderr] 44 | pub fn tokens(&mut self) -> Vec { [INFO] [stderr] | - let's call the lifetime of this reference `'1` [INFO] [stderr] 45 | let mut tokens = Vec::new(); [INFO] [stderr] 46 | while let Ok((token, size)) = self. [INFO] [stderr] | ^^^^ mutable borrow starts here in previous iteration of loop [INFO] [stderr] ... [INFO] [stderr] 54 | return tokens [INFO] [stderr] | ------ returning this value requires that `*self` is borrowed for `'1` [INFO] [stderr] [INFO] [stderr] error: aborting due to previous error; 8 warnings emitted [INFO] [stderr] [INFO] [stderr] For more information about this error, try `rustc --explain E0499`. [INFO] [stderr] error: could not compile `rsc`. [INFO] [stderr] [INFO] [stderr] To learn more, run the command again with --verbose. [INFO] running `"docker" "inspect" "d72419115f59ee6f85feca97645cbeddad2d3a29deafa93eda1c801e25a547af"` [INFO] running `"docker" "rm" "-f" "d72419115f59ee6f85feca97645cbeddad2d3a29deafa93eda1c801e25a547af"` [INFO] [stdout] d72419115f59ee6f85feca97645cbeddad2d3a29deafa93eda1c801e25a547af