[INFO] updating cached repository https://github.com/BlakeWilliams/rust-brainfuck [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] 2bfffbc4584601297338231f62c9b0669263cbd6 [INFO] checking BlakeWilliams/rust-brainfuck against try#e4dba30b9b475d8750370c4dfb49b6541990904d for pr-71393 [INFO] running `"git" "clone" "/workspace/cache/git-repos/https%3A%2F%2Fgithub.com%2FBlakeWilliams%2Frust-brainfuck" "/workspace/builds/worker-4/source"` [INFO] [stderr] Cloning into '/workspace/builds/worker-4/source'... [INFO] [stderr] done. [INFO] validating manifest of git repo https://github.com/BlakeWilliams/rust-brainfuck 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/BlakeWilliams/rust-brainfuck [INFO] finished tweaking git repo https://github.com/BlakeWilliams/rust-brainfuck [INFO] tweaked toml for git repo https://github.com/BlakeWilliams/rust-brainfuck written to /workspace/builds/worker-4/source/Cargo.toml [INFO] crate git repo https://github.com/BlakeWilliams/rust-brainfuck already has a lockfile, it will not be regenerated [INFO] running `"/workspace/cargo-home/bin/cargo" "+e4dba30b9b475d8750370c4dfb49b6541990904d" "fetch" "--locked" "--manifest-path" "Cargo.toml"` [INFO] [stderr] Blocking waiting for file lock on package cache [INFO] [stderr] Blocking waiting for file lock on package cache [INFO] running `"docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-4/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-4/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] [stdout] d86d7a1429ce1ba3e6c2bc9baa9ee3878ca2e7bd659cd469f59d079828d903d5 [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" "d86d7a1429ce1ba3e6c2bc9baa9ee3878ca2e7bd659cd469f59d079828d903d5"` [INFO] [stderr] Checking brainfuck v0.0.1 (/opt/rustwide/workdir) [INFO] [stderr] error: invalid suffix `us` for integer literal [INFO] [stderr] --> src/brainfuck/tape.rs:12:45 [INFO] [stderr] | [INFO] [stderr] 12 | content: iter::repeat(0u8).take(30_000us).collect(), [INFO] [stderr] | ^^^^^^^^ invalid suffix `us` [INFO] [stderr] | [INFO] [stderr] = help: the suffix must be one of the integral types (`u32`, `isize`, etc) [INFO] [stderr] [INFO] [stderr] error[E0432]: unresolved import `std::io::stdio::StdinReader` [INFO] [stderr] --> src/brainfuck/tape.rs:2:5 [INFO] [stderr] | [INFO] [stderr] 2 | use std::io::stdio::StdinReader; [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^ no `StdinReader` in `io::stdio` [INFO] [stderr] [INFO] [stderr] error[E0432]: unresolved import `std::io::File` [INFO] [stderr] --> src/brainfuck/program.rs:1:5 [INFO] [stderr] | [INFO] [stderr] 1 | use std::io::File; [INFO] [stderr] | ^^^^^^^^^^^^^ no `File` in `io` [INFO] [stderr] [INFO] [stderr] error[E0433]: failed to resolve: use of undeclared type or module `Path` [INFO] [stderr] --> src/main.rs:43:5 [INFO] [stderr] | [INFO] [stderr] 43 | Path::new(path_string) [INFO] [stderr] | ^^^^ use of undeclared type or module `Path` [INFO] [stderr] [INFO] [stderr] error[E0412]: cannot find type `Path` in this scope [INFO] [stderr] --> src/brainfuck/program.rs:9:28 [INFO] [stderr] | [INFO] [stderr] 9 | pub fn new(file_path: &Path) -> Program { [INFO] [stderr] | ^^^^ not found in this scope [INFO] [stderr] | [INFO] [stderr] help: possible candidate is found in another module, you can import it into scope [INFO] [stderr] | [INFO] [stderr] 1 | use std::path::Path; [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] error[E0412]: cannot find type `Path` in this scope [INFO] [stderr] --> src/brainfuck/program.rs:57:28 [INFO] [stderr] | [INFO] [stderr] 57 | fn read_program(path: &Path) -> Vec { [INFO] [stderr] | ^^^^ not found in this scope [INFO] [stderr] | [INFO] [stderr] help: possible candidate is found in another module, you can import it into scope [INFO] [stderr] | [INFO] [stderr] 1 | use std::path::Path; [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] error[E0412]: cannot find type `Path` in this scope [INFO] [stderr] --> src/main.rs:35:18 [INFO] [stderr] | [INFO] [stderr] 35 | fn get_path() -> Path { [INFO] [stderr] | ^^^^ not found in this scope [INFO] [stderr] | [INFO] [stderr] help: possible candidate is found in another module, you can import it into scope [INFO] [stderr] | [INFO] [stderr] 3 | use std::path::Path; [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] error[E0425]: cannot find function `args` in module `std::os` [INFO] [stderr] --> src/main.rs:36:25 [INFO] [stderr] | [INFO] [stderr] 36 | let args = std::os::args().clone(); [INFO] [stderr] | ^^^^ not found in `std::os` [INFO] [stderr] | [INFO] [stderr] help: possible candidate is found in another module, you can import it into scope [INFO] [stderr] | [INFO] [stderr] 3 | use std::env::args; [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] error[E0425]: cannot find function `args` in module `std::os` [INFO] [stderr] --> src/main.rs:42:32 [INFO] [stderr] | [INFO] [stderr] 42 | let path_string = std::os::args()[1].clone(); [INFO] [stderr] | ^^^^ not found in `std::os` [INFO] [stderr] | [INFO] [stderr] help: possible candidate is found in another module, you can import it into scope [INFO] [stderr] | [INFO] [stderr] 3 | use std::env::args; [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] error[E0603]: module `stdio` is private [INFO] [stderr] --> src/brainfuck/tape.rs:2:14 [INFO] [stderr] | [INFO] [stderr] 2 | use std::io::stdio::StdinReader; [INFO] [stderr] | ^^^^^ private module [INFO] [stderr] | [INFO] [stderr] note: the module `stdio` is defined here [INFO] [stderr] [INFO] [stderr] error: invalid suffix `us` for integer literal [INFO] [stderr] --> src/brainfuck/tape.rs:12:45 [INFO] [stderr] | [INFO] [stderr] 12 | content: iter::repeat(0u8).take(30_000us).collect(), [INFO] [stderr] | ^^^^^^^^ invalid suffix `us` [INFO] [stderr] | [INFO] [stderr] = help: the suffix must be one of the integral types (`u32`, `isize`, etc) [INFO] [stderr] [INFO] [stderr] error[E0432]: unresolved import `std::io::stdio::StdinReader` [INFO] [stderr] --> src/brainfuck/tape.rs:2:5 [INFO] [stderr] | [INFO] [stderr] 2 | use std::io::stdio::StdinReader; [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^ no `StdinReader` in `io::stdio` [INFO] [stderr] [INFO] [stderr] error: aborting due to 10 previous errors [INFO] [stderr] [INFO] [stderr] Some errors have detailed explanations: E0412, E0425, E0432, E0433, E0603. [INFO] [stderr] For more information about an error, try `rustc --explain E0412`. [INFO] [stderr] error: could not compile `brainfuck`. [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[E0432]: unresolved import `std::io::File` [INFO] [stderr] --> src/brainfuck/program.rs:1:5 [INFO] [stderr] | [INFO] [stderr] 1 | use std::io::File; [INFO] [stderr] | ^^^^^^^^^^^^^ no `File` in `io` [INFO] [stderr] [INFO] [stderr] error[E0433]: failed to resolve: use of undeclared type or module `Path` [INFO] [stderr] --> src/main.rs:43:5 [INFO] [stderr] | [INFO] [stderr] 43 | Path::new(path_string) [INFO] [stderr] | ^^^^ use of undeclared type or module `Path` [INFO] [stderr] [INFO] [stderr] error[E0412]: cannot find type `Path` in this scope [INFO] [stderr] --> src/brainfuck/program.rs:9:28 [INFO] [stderr] | [INFO] [stderr] 9 | pub fn new(file_path: &Path) -> Program { [INFO] [stderr] | ^^^^ not found in this scope [INFO] [stderr] | [INFO] [stderr] help: possible candidate is found in another module, you can import it into scope [INFO] [stderr] | [INFO] [stderr] 1 | use std::path::Path; [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] error[E0412]: cannot find type `Path` in this scope [INFO] [stderr] --> src/brainfuck/program.rs:57:28 [INFO] [stderr] | [INFO] [stderr] 57 | fn read_program(path: &Path) -> Vec { [INFO] [stderr] | ^^^^ not found in this scope [INFO] [stderr] | [INFO] [stderr] help: possible candidate is found in another module, you can import it into scope [INFO] [stderr] | [INFO] [stderr] 1 | use std::path::Path; [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] error[E0412]: cannot find type `Path` in this scope [INFO] [stderr] --> src/main.rs:35:18 [INFO] [stderr] | [INFO] [stderr] 35 | fn get_path() -> Path { [INFO] [stderr] | ^^^^ not found in this scope [INFO] [stderr] | [INFO] [stderr] help: possible candidate is found in another module, you can import it into scope [INFO] [stderr] | [INFO] [stderr] 3 | use std::path::Path; [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] error[E0425]: cannot find function `args` in module `std::os` [INFO] [stderr] --> src/main.rs:36:25 [INFO] [stderr] | [INFO] [stderr] 36 | let args = std::os::args().clone(); [INFO] [stderr] | ^^^^ not found in `std::os` [INFO] [stderr] | [INFO] [stderr] help: possible candidate is found in another module, you can import it into scope [INFO] [stderr] | [INFO] [stderr] 3 | use std::env::args; [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] error[E0425]: cannot find function `args` in module `std::os` [INFO] [stderr] --> src/main.rs:42:32 [INFO] [stderr] | [INFO] [stderr] 42 | let path_string = std::os::args()[1].clone(); [INFO] [stderr] | ^^^^ not found in `std::os` [INFO] [stderr] | [INFO] [stderr] help: possible candidate is found in another module, you can import it into scope [INFO] [stderr] | [INFO] [stderr] 3 | use std::env::args; [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] error[E0603]: module `stdio` is private [INFO] [stderr] --> src/brainfuck/tape.rs:2:14 [INFO] [stderr] | [INFO] [stderr] 2 | use std::io::stdio::StdinReader; [INFO] [stderr] | ^^^^^ private module [INFO] [stderr] | [INFO] [stderr] note: the module `stdio` is defined here [INFO] [stderr] [INFO] [stderr] error: aborting due to 10 previous errors [INFO] [stderr] [INFO] [stderr] Some errors have detailed explanations: E0412, E0425, E0432, E0433, E0603. [INFO] [stderr] For more information about an error, try `rustc --explain E0412`. [INFO] [stderr] error: could not compile `brainfuck`. [INFO] [stderr] [INFO] [stderr] To learn more, run the command again with --verbose. [INFO] running `"docker" "inspect" "d86d7a1429ce1ba3e6c2bc9baa9ee3878ca2e7bd659cd469f59d079828d903d5"` [INFO] running `"docker" "rm" "-f" "d86d7a1429ce1ba3e6c2bc9baa9ee3878ca2e7bd659cd469f59d079828d903d5"` [INFO] [stdout] d86d7a1429ce1ba3e6c2bc9baa9ee3878ca2e7bd659cd469f59d079828d903d5