[INFO] updating cached repository https://github.com/de-passage/tic-tac-toe.rust [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] c5e34ac55f9b7368a2b88ce5495e22bc5f375f34 [INFO] checking de-passage/tic-tac-toe.rust against beta-2019-10-27 for pr-65897 [INFO] running `"git" "clone" "/workspace/cache/git-repos/https%3A%2F%2Fgithub.com%2Fde-passage%2Ftic-tac-toe.rust" "/workspace/builds/worker-8/source"` [INFO] [stderr] Cloning into '/workspace/builds/worker-8/source'... [INFO] [stderr] done. [INFO] validating manifest of git repo https://github.com/de-passage/tic-tac-toe.rust 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/de-passage/tic-tac-toe.rust [INFO] finished tweaking git repo https://github.com/de-passage/tic-tac-toe.rust [INFO] tweaked toml for git repo https://github.com/de-passage/tic-tac-toe.rust written to /workspace/builds/worker-8/source/Cargo.toml [INFO] crate git repo https://github.com/de-passage/tic-tac-toe.rust 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-8/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-8/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] [stderr] WARNING: Your kernel does not support swap limit capabilities or the cgroup is not mounted. Memory limited without swap. [INFO] [stdout] e5f6f472412643e5c4193b726fc9a3f4938314563702d1e4e1dcaaa07cd3ac53 [INFO] running `"docker" "start" "-a" "e5f6f472412643e5c4193b726fc9a3f4938314563702d1e4e1dcaaa07cd3ac53"` [INFO] [stderr] Checking tic-tac-toe v0.1.0 (/opt/rustwide/workdir) [INFO] [stderr] error[E0423]: expected function, found struct `Board` [INFO] [stderr] --> src/main.rs:176:10 [INFO] [stderr] | [INFO] [stderr] 176 | let b = Board([1, 2, 1, 2, 0, 2, 1, 2, 1]); [INFO] [stderr] | ^^^^^ constructor is not visible here due to private fields [INFO] [stderr] [INFO] [stderr] error[E0423]: expected function, found struct `Board` [INFO] [stderr] --> src/main.rs:183:10 [INFO] [stderr] | [INFO] [stderr] 183 | let b = Board([1, 1, 0, 1, 1, 0, 0, 1, 0]); // the algorithm doesnt actually care that the game is in a valid state [INFO] [stderr] | ^^^^^ constructor is not visible here due to private fields [INFO] [stderr] [INFO] [stderr] error[E0423]: expected function, found struct `Board` [INFO] [stderr] --> src/main.rs:193:10 [INFO] [stderr] | [INFO] [stderr] 193 | let b = Board([1, 0, 0, 2, 1, 0, 0, 0, 2]); [INFO] [stderr] | ^^^^^ constructor is not visible here due to private fields [INFO] [stderr] [INFO] [stderr] error[E0423]: expected function, found struct `Board` [INFO] [stderr] --> src/main.rs:204:10 [INFO] [stderr] | [INFO] [stderr] 204 | let b = Board([1, 2, 2, 2, 1, 0, 1, 1, 0]); [INFO] [stderr] | ^^^^^ constructor is not visible here due to private fields [INFO] [stderr] [INFO] [stderr] error[E0423]: expected function, found struct `Board` [INFO] [stderr] --> src/main.rs:207:10 [INFO] [stderr] | [INFO] [stderr] 207 | let b = Board([1, 0, 0, 0, 0, 2, 0, 0, 2]); [INFO] [stderr] | ^^^^^ constructor is not visible here due to private fields [INFO] [stderr] [INFO] [stderr] error[E0423]: expected function, found struct `Board` [INFO] [stderr] --> src/main.rs:210:10 [INFO] [stderr] | [INFO] [stderr] 210 | let b = Board([1, 2, 0, 1, 0, 2, 0, 0, 0]); [INFO] [stderr] | ^^^^^ constructor is not visible here due to private fields [INFO] [stderr] [INFO] [stderr] error[E0423]: expected function, found struct `Board` [INFO] [stderr] --> src/main.rs:216:14 [INFO] [stderr] | [INFO] [stderr] 216 | let mut b = Board([1, 1, 0, 2, 0, 0, 2, 0, 0]); [INFO] [stderr] | ^^^^^ constructor is not visible here due to private fields [INFO] [stderr] [INFO] [stderr] error[E0423]: expected function, found struct `Board` [INFO] [stderr] --> src/main.rs:223:14 [INFO] [stderr] | [INFO] [stderr] 223 | let mut b = Board([1, 1, 0, 2, 1, 0, 2, 0, 0]); [INFO] [stderr] | ^^^^^ constructor is not visible here due to private fields [INFO] [stderr] [INFO] [stderr] error[E0423]: expected function, found struct `Board` [INFO] [stderr] --> src/main.rs:230:14 [INFO] [stderr] | [INFO] [stderr] 230 | let mut b = Board([0, 0, 0, 2, 0, 1, 2, 0, 1]); [INFO] [stderr] | ^^^^^ constructor is not visible here due to private fields [INFO] [stderr] [INFO] [stderr] error: aborting due to 9 previous errors [INFO] [stderr] [INFO] [stderr] For more information about this error, try `rustc --explain E0423`. [INFO] [stderr] error: could not compile `tic-tac-toe`. [INFO] [stderr] [INFO] [stderr] To learn more, run the command again with --verbose. [INFO] running `"docker" "inspect" "e5f6f472412643e5c4193b726fc9a3f4938314563702d1e4e1dcaaa07cd3ac53"` [INFO] running `"docker" "rm" "-f" "e5f6f472412643e5c4193b726fc9a3f4938314563702d1e4e1dcaaa07cd3ac53"` [INFO] [stdout] e5f6f472412643e5c4193b726fc9a3f4938314563702d1e4e1dcaaa07cd3ac53