[INFO] cloning repository https://github.com/jml/rust-scratch
[INFO] running `Command { std: "git" "-c" "credential.helper=" "-c" "credential.helper=/workspace/cargo-home/bin/git-credential-null" "clone" "--bare" "https://github.com/jml/rust-scratch" "/workspace/cache/git-repos/https%3A%2F%2Fgithub.com%2Fjml%2Frust-scratch", kill_on_drop: false }`
[INFO] [stderr] Cloning into bare repository '/workspace/cache/git-repos/https%3A%2F%2Fgithub.com%2Fjml%2Frust-scratch'...
[INFO] running `Command { std: "git" "rev-parse" "HEAD", kill_on_drop: false }`
[INFO] [stdout] cc4ed43122015a4c7fde821eb62b575b53737764
[INFO] testing jml/rust-scratch against 1.98.0-beta.8+cargoflags=--release for beta-release-1.99-2
[INFO] running `Command { std: "git" "clone" "/workspace/cache/git-repos/https%3A%2F%2Fgithub.com%2Fjml%2Frust-scratch" "/workspace/builds/worker-6-tc1/source", kill_on_drop: false }`
[INFO] [stderr] Cloning into '/workspace/builds/worker-6-tc1/source'...
[INFO] [stderr] done.
[INFO] started tweaking git repo https://github.com/jml/rust-scratch
[INFO] finished tweaking git repo https://github.com/jml/rust-scratch
[INFO] tweaked toml for git repo https://github.com/jml/rust-scratch written to /workspace/builds/worker-6-tc1/source/Cargo.toml
[INFO] validating manifest of git repo https://github.com/jml/rust-scratch on toolchain 1.98.0-beta.8
[INFO] running `Command { std: CARGO_HOME="/workspace/cargo-home" RUSTUP_HOME="/workspace/rustup-home" "/workspace/cargo-home/bin/cargo" "+1.98.0-beta.8" "metadata" "--manifest-path" "Cargo.toml" "--no-deps", kill_on_drop: false }`
[INFO] crate git repo https://github.com/jml/rust-scratch already has a lockfile, it will not be regenerated
[INFO] running `Command { std: CARGO_HOME="/workspace/cargo-home" RUSTUP_HOME="/workspace/rustup-home" "/workspace/cargo-home/bin/cargo" "+1.98.0-beta.8" "fetch" "--manifest-path" "Cargo.toml", kill_on_drop: false }`
[INFO] [stderr] warning: Cargo.toml: `package.edition` is unspecified, defaulting to `2015` while the latest is `2024`
[INFO] [stderr] warning: `target` (manifest) generated 1 warning
[INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-6-tc1/source:/opt/rustwide/workdir:ro,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-6-tc1/target:/opt/rustwide/target:rw,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" "-m" "1610612736" "--network" "none" "ghcr.io/rust-lang/crates-build-env/linux@sha256:8683fc1fc2eb5c9ac98e0d076ab094b2ffac7f99da555d2b6a2e27f346de2ec7" "sleep" "infinity", kill_on_drop: false }`
[INFO] [stdout] 8e089316a3b30dff8d9058e9321eae1b0b5ef53e10529deb4e43b9ffab0c05ec
[INFO] running `Command { std: "docker" "start" "8e089316a3b30dff8d9058e9321eae1b0b5ef53e10529deb4e43b9ffab0c05ec", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "inspect" "8e089316a3b30dff8d9058e9321eae1b0b5ef53e10529deb4e43b9ffab0c05ec", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "exec" "-e" "SOURCE_DIR=/opt/rustwide/workdir" "-e" "CARGO_HOME=/opt/rustwide/cargo-home" "-e" "RUSTUP_HOME=/opt/rustwide/rustup-home" "-e" "CARGO_TARGET_DIR=/opt/rustwide/target" "-w" "/opt/rustwide/workdir" "--user" "0:0" "8e089316a3b30dff8d9058e9321eae1b0b5ef53e10529deb4e43b9ffab0c05ec" "/opt/rustwide/cargo-home/bin/cargo" "+1.98.0-beta.8" "metadata" "--no-deps" "--format-version=1", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "inspect" "8e089316a3b30dff8d9058e9321eae1b0b5ef53e10529deb4e43b9ffab0c05ec", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "exec" "-e" "SOURCE_DIR=/opt/rustwide/workdir" "-e" "CARGO_HOME=/opt/rustwide/cargo-home" "-e" "RUSTUP_HOME=/opt/rustwide/rustup-home" "-e" "CARGO_TARGET_DIR=/opt/rustwide/target" "-e" "CARGO_INCREMENTAL=0" "-e" "RUST_BACKTRACE=full" "-e" "RUSTFLAGS=--cap-lints=warn" "-e" "RUSTDOCFLAGS=--cap-lints=warn" "-w" "/opt/rustwide/workdir" "--user" "0:0" "8e089316a3b30dff8d9058e9321eae1b0b5ef53e10529deb4e43b9ffab0c05ec" "/opt/rustwide/cargo-home/bin/cargo" "+1.98.0-beta.8" "build" "--frozen" "--message-format=json" "--release", kill_on_drop: false }`
[INFO] [stderr] warning: Cargo.toml: `package.edition` is unspecified, defaulting to `2015` while the latest is `2024`
[INFO] [stderr] warning: `target` (manifest) generated 1 warning
[INFO] [stderr]    Compiling target v0.0.1 (/opt/rustwide/workdir)
[INFO] [stdout] error: expected type, found `|`
[INFO] [stdout]   --> src/lib.rs:51:91
[INFO] [stdout]    |
[INFO] [stdout] 51 | pub fn accumulate<K: Ord + Clone, A: Clone, T: Iterator<K>>(sequence: &mut T, init: A, f: |A, K| -> A) -> TreeMap<K, A> {
[INFO] [stdout]    |                                                                                           ^ expected type
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error: expected parameter name, found `->`
[INFO] [stdout]   --> src/lib.rs:51:98
[INFO] [stdout]    |
[INFO] [stdout] 51 | pub fn accumulate<K: Ord + Clone, A: Clone, T: Iterator<K>>(sequence: &mut T, init: A, f: |A, K| -> A) -> TreeMap<K, A> {
[INFO] [stdout]    |                                                                                               -  ^^ expected parameter name
[INFO] [stdout]    |                                                                                               |
[INFO] [stdout]    |                                                                                               while parsing this or-pattern starting here
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0432]: unresolved import `std::collections::TreeMap`
[INFO] [stdout]  --> src/lib.rs:3:5
[INFO] [stdout]   |
[INFO] [stdout] 3 | use std::collections::TreeMap;
[INFO] [stdout]   |     ^^^^^^^^^^^^^^^^^^-------
[INFO] [stdout]   |                       |
[INFO] [stdout]   |                       no `TreeMap` in `collections`
[INFO] [stdout]   |
[INFO] [stdout] help: a similar name exists in the module
[INFO] [stdout]   |
[INFO] [stdout] 3 | use std::collections::BTreeMap;
[INFO] [stdout]   |                       +
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0432]: unresolved import `std::collections::TreeMap`
[INFO] [stdout]    --> src/lib.rs:160:9
[INFO] [stdout]     |
[INFO] [stdout] 160 |     use std::collections::TreeMap;
[INFO] [stdout]     |         ^^^^^^^^^^^^^^^^^^-------
[INFO] [stdout]     |                           |
[INFO] [stdout]     |                           no `TreeMap` in `collections`
[INFO] [stdout]     |
[INFO] [stdout] help: a similar name exists in the module
[INFO] [stdout]     |
[INFO] [stdout] 160 |     use std::collections::BTreeMap;
[INFO] [stdout]     |                           +
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0425]: cannot find type `int` in this scope
[INFO] [stdout]   --> src/lib.rs:86:82
[INFO] [stdout]    |
[INFO] [stdout] 86 | pub fn frequency<A: Ord + Clone, T: Iterator<A>>(sequence: &mut T) -> TreeMap<A, int> {
[INFO] [stdout]    |                                                                                  ^^^ not found in this scope
[INFO] [stdout]    |
[INFO] [stdout] help: perhaps you intended to use this type
[INFO] [stdout]    |
[INFO] [stdout] 86 - pub fn frequency<A: Ord + Clone, T: Iterator<A>>(sequence: &mut T) -> TreeMap<A, int> {
[INFO] [stdout] 86 + pub fn frequency<A: Ord + Clone, T: Iterator<A>>(sequence: &mut T) -> TreeMap<A, i32> {
[INFO] [stdout]    |
[INFO] [stdout] help: you might be missing a type parameter
[INFO] [stdout]    |
[INFO] [stdout] 86 | pub fn frequency<A: Ord + Clone, T: Iterator<A>, int>(sequence: &mut T) -> TreeMap<A, int> {
[INFO] [stdout]    |                                                +++++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0425]: cannot find type `int` in this scope
[INFO] [stdout]    --> src/lib.rs:111:51
[INFO] [stdout]     |
[INFO] [stdout] 111 | pub fn letter_counts(word: &str) -> TreeMap<char, int> {
[INFO] [stdout]     |                                                   ^^^ not found in this scope
[INFO] [stdout]     |
[INFO] [stdout] help: perhaps you intended to use this type
[INFO] [stdout]     |
[INFO] [stdout] 111 - pub fn letter_counts(word: &str) -> TreeMap<char, int> {
[INFO] [stdout] 111 + pub fn letter_counts(word: &str) -> TreeMap<char, i32> {
[INFO] [stdout]     |
[INFO] [stdout] help: you might be missing a type parameter
[INFO] [stdout]     |
[INFO] [stdout] 111 | pub fn letter_counts<int>(word: &str) -> TreeMap<char, int> {
[INFO] [stdout]     |                     +++++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error: invalid suffix `i` for number literal
[INFO] [stdout]   --> src/lib.rs:87:42
[INFO] [stdout]    |
[INFO] [stdout] 87 |     accumulate(sequence, 1, |x, _| { x + 1i })
[INFO] [stdout]    |                                          ^^ invalid suffix `i`
[INFO] [stdout]    |
[INFO] [stdout]    = help: the suffix must be one of the numeric types (`u32`, `isize`, `f32`, etc.)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error: invalid suffix `i` for number literal
[INFO] [stdout]    --> src/lib.rs:131:33
[INFO] [stdout]     |
[INFO] [stdout] 131 |             Some(x) => if *x >= 1i { *x -= 1i } else { return false },
[INFO] [stdout]     |                                 ^^ invalid suffix `i`
[INFO] [stdout]     |
[INFO] [stdout]     = help: the suffix must be one of the numeric types (`u32`, `isize`, `f32`, etc.)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error: invalid suffix `i` for number literal
[INFO] [stdout]    --> src/lib.rs:131:44
[INFO] [stdout]     |
[INFO] [stdout] 131 |             Some(x) => if *x >= 1i { *x -= 1i } else { return false },
[INFO] [stdout]     |                                            ^^ invalid suffix `i`
[INFO] [stdout]     |
[INFO] [stdout]     = help: the suffix must be one of the numeric types (`u32`, `isize`, `f32`, etc.)
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0107]: trait takes 0 generic arguments but 1 generic argument was supplied
[INFO] [stdout]   --> src/lib.rs:51:48
[INFO] [stdout]    |
[INFO] [stdout] 51 | pub fn accumulate<K: Ord + Clone, A: Clone, T: Iterator<K>>(sequence: &mut T, init: A, f: |A, K| -> A) -> TreeMap<K, A> {
[INFO] [stdout]    |                                                ^^^^^^^^ expected 0 generic arguments
[INFO] [stdout]    |
[INFO] [stdout] help: turn the generic argument into an associated item binding
[INFO] [stdout]    |
[INFO] [stdout] 51 | pub fn accumulate<K: Ord + Clone, A: Clone, T: Iterator<Item = K>>(sequence: &mut T, init: A, f: |A, K| -> A) -> TreeMap<K, A> {
[INFO] [stdout]    |                                                         ++++++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0107]: trait takes 0 generic arguments but 1 generic argument was supplied
[INFO] [stdout]   --> src/lib.rs:86:37
[INFO] [stdout]    |
[INFO] [stdout] 86 | pub fn frequency<A: Ord + Clone, T: Iterator<A>>(sequence: &mut T) -> TreeMap<A, int> {
[INFO] [stdout]    |                                     ^^^^^^^^ expected 0 generic arguments
[INFO] [stdout]    |
[INFO] [stdout] help: turn the generic argument into an associated item binding
[INFO] [stdout]    |
[INFO] [stdout] 86 | pub fn frequency<A: Ord + Clone, T: Iterator<Item = A>>(sequence: &mut T) -> TreeMap<A, int> {
[INFO] [stdout]    |                                              ++++++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0599]: no method named `clone` found for associated type `<T as Iterator>::Item` in the current scope
[INFO] [stdout]   --> src/lib.rs:59:35
[INFO] [stdout]    |
[INFO] [stdout] 59 |                 Some(i) => f(i, x.clone()),
[INFO] [stdout]    |                                   ^^^^^ method not found in `<T as Iterator>::Item`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0425]: cannot find function `f` in this scope
[INFO] [stdout]   --> src/lib.rs:59:28
[INFO] [stdout]    |
[INFO] [stdout] 59 |                 Some(i) => f(i, x.clone()),
[INFO] [stdout]    |                            ^
[INFO] [stdout]    |
[INFO] [stdout] help: a local variable with a similar name exists
[INFO] [stdout]    |
[INFO] [stdout] 59 -                 Some(i) => f(i, x.clone()),
[INFO] [stdout] 59 +                 Some(i) => i(i, x.clone()),
[INFO] [stdout]    |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0061]: this function takes 4 arguments but 3 arguments were supplied
[INFO] [stdout]   --> src/lib.rs:87:5
[INFO] [stdout]    |
[INFO] [stdout] 87 |     accumulate(sequence, 1, |x, _| { x + 1i })
[INFO] [stdout]    |     ^^^^^^^^^^-------------------------------- argument #4 is missing
[INFO] [stdout]    |
[INFO] [stdout] note: function defined here
[INFO] [stdout]   --> src/lib.rs:51:8
[INFO] [stdout]    |
[INFO] [stdout] 51 | pub fn accumulate<K: Ord + Clone, A: Clone, T: Iterator<K>>(sequence: &mut T, init: A, f: |A, K| -> A) -> TreeMap<K, A> {
[INFO] [stdout]    |        ^^^^^^^^^^                                                                              ------
[INFO] [stdout] help: provide the argument
[INFO] [stdout]    |
[INFO] [stdout] 87 |     accumulate(sequence, 1, |x, _| { x + 1i }, /* _ */)
[INFO] [stdout]    |                                              +++++++++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0599]: no method named `char_len` found for reference `&str` in the current scope
[INFO] [stdout]    --> src/lib.rs:141:15
[INFO] [stdout]     |
[INFO] [stdout] 141 |     candidate.char_len() >= 4
[INFO] [stdout]     |               ^^^^^^^^ method not found in `&str`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0599]: no method named `contains_char` found for reference `&str` in the current scope
[INFO] [stdout]    --> src/lib.rs:142:22
[INFO] [stdout]     |
[INFO] [stdout] 142 |         && candidate.contains_char(target_char)
[INFO] [stdout]     |                      ^^^^^^^^^^^^^
[INFO] [stdout]     |
[INFO] [stdout] help: there is a method `contains` with a similar name
[INFO] [stdout]     |
[INFO] [stdout] 142 -         && candidate.contains_char(target_char)
[INFO] [stdout] 142 +         && candidate.contains(target_char)
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] Some errors have detailed explanations: E0061, E0107, E0425, E0432, E0599.
[INFO] [stdout] 
[INFO] [stdout] For more information about an error, try `rustc --explain E0061`.
[INFO] [stdout] 
[INFO] [stderr] error: could not compile `target` (lib) due to 16 previous errors
[INFO] running `Command { std: "docker" "inspect" "8e089316a3b30dff8d9058e9321eae1b0b5ef53e10529deb4e43b9ffab0c05ec", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "rm" "-f" "8e089316a3b30dff8d9058e9321eae1b0b5ef53e10529deb4e43b9ffab0c05ec", kill_on_drop: false }`
[INFO] [stdout] 8e089316a3b30dff8d9058e9321eae1b0b5ef53e10529deb4e43b9ffab0c05ec
