[INFO] updating cached repository https://github.com/szeka94/rust_tetris [INFO] running `"git" "-c" "credential.helper=" "-c" "credential.helper=/big/crater/work/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] e12187d5b4f875ed3c6c1d2b52cfea048bf9ba21 [INFO] testing szeka94/rust_tetris against beta-2019-09-28 for beta-1.39-1 [INFO] running `"git" "clone" "work/cache/git-repos/https%3A%2F%2Fgithub.com%2Fszeka94%2Frust_tetris" "work/builds/worker-5/source"` [INFO] [stderr] Cloning into 'work/builds/worker-5/source'... [INFO] [stderr] done. [INFO] validating manifest of git repo https://github.com/szeka94/rust_tetris on toolchain beta-2019-09-28 [INFO] running `"/big/crater/work/cargo-home/bin/cargo" "+beta-2019-09-28" "read-manifest" "--manifest-path" "Cargo.toml"` [INFO] started tweaking git repo https://github.com/szeka94/rust_tetris [INFO] finished tweaking git repo https://github.com/szeka94/rust_tetris [INFO] tweaked toml for git repo https://github.com/szeka94/rust_tetris written to work/builds/worker-5/source/Cargo.toml [INFO] crate git repo https://github.com/szeka94/rust_tetris already has a lockfile, it will not be regenerated [INFO] running `"/big/crater/work/cargo-home/bin/cargo" "+beta-2019-09-28" "fetch" "--locked" "--manifest-path" "Cargo.toml"` [INFO] [stderr] Blocking waiting for file lock on package cache [INFO] running `"docker" "create" "-v" "/big/crater/work/builds/worker-5/target:/opt/rustwide/target:rw,Z" "-v" "/big/crater/work/builds/worker-5/source:/opt/rustwide/workdir:ro,Z" "-v" "/big/crater/work/cargo-home:/opt/rustwide/cargo-home:ro,Z" "-v" "/big/crater/work/rustup-home:/opt/rustwide/rustup-home:ro,Z" "-e" "SOURCE_DIR=/opt/rustwide/workdir" "-e" "MAP_USER_ID=1000" "-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" "+beta-2019-09-28" "build" "--frozen"` [INFO] [stdout] 0e72d49704b9d324d93583103f4019174a7d26bf9a208565d1489843401720e1 [INFO] running `"docker" "start" "-a" "0e72d49704b9d324d93583103f4019174a7d26bf9a208565d1489843401720e1"` [INFO] [stderr] Compiling wayland-scanner v0.21.4 [INFO] [stderr] Compiling piston-viewport v0.4.0 [INFO] [stderr] Compiling smallvec v0.6.6 [INFO] [stderr] Compiling approx v0.3.0 [INFO] [stderr] Compiling rayon-core v1.4.1 [INFO] [stderr] Compiling gl v0.10.0 [INFO] [stderr] Compiling ordered-float v0.5.2 [INFO] [stderr] Compiling wayland-sys v0.21.4 [INFO] [stderr] Compiling gfx_core v0.8.3 [INFO] [stderr] Compiling png v0.12.0 [INFO] [stderr] Compiling tiff v0.2.1 [INFO] [stderr] Compiling pistoncore-input v0.22.0 [INFO] [stderr] Compiling rusttype v0.5.2 [INFO] [stderr] Compiling rusttype v0.7.3 [INFO] [stderr] Compiling wayland-commons v0.21.4 [INFO] [stderr] Compiling parking_lot_core v0.3.1 [INFO] [stderr] Compiling rayon v1.0.3 [INFO] [stderr] Compiling andrew v0.1.4 [INFO] [stderr] Compiling piston2d-graphics v0.27.0 [INFO] [stderr] Compiling parking_lot v0.6.4 [INFO] [stderr] Compiling wayland-client v0.21.4 [INFO] [stderr] Compiling wayland-protocols v0.21.4 [INFO] [stderr] Compiling pistoncore-window v0.33.0 [INFO] [stderr] Compiling jpeg-decoder v0.1.15 [INFO] [stderr] Compiling pistoncore-event_loop v0.38.0 [INFO] [stderr] Compiling piston v0.38.0 [INFO] [stderr] Compiling image v0.20.1 [INFO] [stderr] Compiling smithay-client-toolkit v0.4.2 [INFO] [stderr] Compiling winit v0.18.0 [INFO] [stderr] Compiling glutin v0.19.0 [INFO] [stderr] Compiling gfx v0.17.1 [INFO] [stderr] Compiling gfx_device_gl v0.15.3 [INFO] [stderr] Compiling pistoncore-glutin_window v0.50.1 [INFO] [stderr] Compiling piston-gfx_texture v0.34.0 [INFO] [stderr] Compiling piston2d-gfx_graphics v0.53.0 [INFO] [stderr] Compiling piston_window v0.84.0 [INFO] [stderr] Compiling tetris v0.1.0 (/opt/rustwide/workdir) [INFO] [stderr] error: expected identifier, found keyword `type` [INFO] [stderr] --> src/game.rs:15:5 [INFO] [stderr] | [INFO] [stderr] 15 | type: CellType, [INFO] [stderr] | ^^^^ expected identifier, found keyword [INFO] [stderr] help: you can escape reserved keywords to use them as identifiers [INFO] [stderr] | [INFO] [stderr] 15 | r#type: CellType, [INFO] [stderr] | ^^^^^^ [INFO] [stderr] [INFO] [stderr] error: expected identifier, found keyword `type` [INFO] [stderr] --> src/game.rs:19:12 [INFO] [stderr] | [INFO] [stderr] 19 | fn new(type: CellType) -> Cell { [INFO] [stderr] | ^^^^ expected identifier, found keyword [INFO] [stderr] help: you can escape reserved keywords to use them as identifiers [INFO] [stderr] | [INFO] [stderr] 19 | fn new(r#type: CellType) -> Cell { [INFO] [stderr] | ^^^^^^ [INFO] [stderr] [INFO] [stderr] error: expected identifier, found keyword `type` [INFO] [stderr] --> src/game.rs:21:13 [INFO] [stderr] | [INFO] [stderr] 20 | Cell { [INFO] [stderr] | ---- while parsing this struct [INFO] [stderr] 21 | type [INFO] [stderr] | ^^^^ expected identifier, found keyword [INFO] [stderr] help: you can escape reserved keywords to use them as identifiers [INFO] [stderr] | [INFO] [stderr] 21 | r#type [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] error: expected identifier, found keyword `type` [INFO] [stderr] --> src/game.rs:42:5 [INFO] [stderr] | [INFO] [stderr] 42 | type: TetrisType, [INFO] [stderr] | ^^^^ expected identifier, found keyword [INFO] [stderr] help: you can escape reserved keywords to use them as identifiers [INFO] [stderr] | [INFO] [stderr] 42 | r#type: TetrisType, [INFO] [stderr] | ^^^^^^ [INFO] [stderr] [INFO] [stderr] error: expected identifier, found keyword `type` [INFO] [stderr] --> src/game.rs:49:16 [INFO] [stderr] | [INFO] [stderr] 49 | pub fn new(type: TetrisType) -> Tetris { [INFO] [stderr] | ^^^^ expected identifier, found keyword [INFO] [stderr] help: you can escape reserved keywords to use them as identifiers [INFO] [stderr] | [INFO] [stderr] 49 | pub fn new(r#type: TetrisType) -> Tetris { [INFO] [stderr] | ^^^^^^ [INFO] [stderr] [INFO] [stderr] error: expected identifier, found keyword `type` [INFO] [stderr] --> src/game.rs:51:13 [INFO] [stderr] | [INFO] [stderr] 50 | Tetris { [INFO] [stderr] | ------ while parsing this struct [INFO] [stderr] 51 | type, [INFO] [stderr] | ^^^^ expected identifier, found keyword [INFO] [stderr] help: you can escape reserved keywords to use them as identifiers [INFO] [stderr] | [INFO] [stderr] 51 | r#type, [INFO] [stderr] | ^^^^^^ [INFO] [stderr] [INFO] [stderr] error[E0583]: file not found for module `tetris` [INFO] [stderr] --> src/main.rs:6:5 [INFO] [stderr] | [INFO] [stderr] 6 | mod tetris; [INFO] [stderr] | ^^^^^^ [INFO] [stderr] | [INFO] [stderr] = help: name the file either tetris.rs or tetris/mod.rs inside the directory "src" [INFO] [stderr] [INFO] [stderr] error: aborting due to 7 previous errors [INFO] [stderr] [INFO] [stderr] For more information about this error, try `rustc --explain E0583`. [INFO] [stderr] error: could not compile `tetris`. [INFO] [stderr] [INFO] [stderr] To learn more, run the command again with --verbose. [INFO] running `"docker" "inspect" "0e72d49704b9d324d93583103f4019174a7d26bf9a208565d1489843401720e1"` [INFO] running `"docker" "rm" "-f" "0e72d49704b9d324d93583103f4019174a7d26bf9a208565d1489843401720e1"` [INFO] [stdout] 0e72d49704b9d324d93583103f4019174a7d26bf9a208565d1489843401720e1