[INFO] updating cached repository https://github.com/agatan/rparse [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] b0abac886422a2fbc1276c8524e5e67f4a46272d [INFO] checking agatan/rparse against try#e4dba30b9b475d8750370c4dfb49b6541990904d for pr-71393 [INFO] running `"git" "clone" "/workspace/cache/git-repos/https%3A%2F%2Fgithub.com%2Fagatan%2Frparse" "/workspace/builds/worker-7/source"` [INFO] [stderr] Cloning into '/workspace/builds/worker-7/source'... [INFO] [stderr] done. [INFO] validating manifest of git repo https://github.com/agatan/rparse 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/agatan/rparse [INFO] finished tweaking git repo https://github.com/agatan/rparse [INFO] tweaked toml for git repo https://github.com/agatan/rparse written to /workspace/builds/worker-7/source/Cargo.toml [INFO] crate git repo https://github.com/agatan/rparse already has a lockfile, it will not be regenerated [INFO] running `"/workspace/cargo-home/bin/cargo" "+e4dba30b9b475d8750370c4dfb49b6541990904d" "fetch" "--locked" "--manifest-path" "Cargo.toml"` [INFO] running `"docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-7/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-7/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] [stderr] WARNING: Your kernel does not support swap limit capabilities or the cgroup is not mounted. Memory limited without swap. [INFO] [stdout] 5305bf620ee0153ce3c89f58faf939ee78daab429dbcd016282009b1b7cd2b56 [INFO] running `"docker" "start" "-a" "5305bf620ee0153ce3c89f58faf939ee78daab429dbcd016282009b1b7cd2b56"` [INFO] [stderr] Checking rparse v0.1.0 (/opt/rustwide/workdir) [INFO] [stderr] warning: use of deprecated item 'try': use the `?` operator instead [INFO] [stderr] --> src/combinator.rs:280:25 [INFO] [stderr] | [INFO] [stderr] 280 | let (r1, ctx) = try!(self.p1.parse(src)); [INFO] [stderr] | ^^^ [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(deprecated)]` on by default [INFO] [stderr] [INFO] [stderr] error: patterns aren't allowed in functions without bodies [INFO] [stderr] --> src/prim/mod.rs:31:28 [INFO] [stderr] | [INFO] [stderr] 31 | fn parse(&mut self, mut src: Peekable) [INFO] [stderr] | ^^^^^^^ [INFO] [stderr] | [INFO] [stderr] = note: `#[deny(patterns_in_fns_without_body)]` on by default [INFO] [stderr] = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release! [INFO] [stderr] = note: for more information, see issue #35203 [INFO] [stderr] [INFO] [stderr] warning: use of deprecated item 'try': use the `?` operator instead [INFO] [stderr] --> src/combinator.rs:280:25 [INFO] [stderr] | [INFO] [stderr] 280 | let (r1, ctx) = try!(self.p1.parse(src)); [INFO] [stderr] | ^^^ [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(deprecated)]` on by default [INFO] [stderr] [INFO] [stderr] error: patterns aren't allowed in functions without bodies [INFO] [stderr] --> src/prim/mod.rs:31:28 [INFO] [stderr] | [INFO] [stderr] 31 | fn parse(&mut self, mut src: Peekable) [INFO] [stderr] | ^^^^^^^ [INFO] [stderr] | [INFO] [stderr] = note: `#[deny(patterns_in_fns_without_body)]` on by default [INFO] [stderr] = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release! [INFO] [stderr] = note: for more information, see issue #35203 [INFO] [stderr] [INFO] [stderr] error[E0277]: the size for values of type `Self` cannot be known at compilation time [INFO] [stderr] --> src/combinator.rs:28:33 [INFO] [stderr] | [INFO] [stderr] 28 | fn map(self, f: F) -> Map [INFO] [stderr] | ^^^^^^^^^^^^ doesn't have a size known at compile-time [INFO] [stderr] 29 | where F: FnMut(Self::Output) -> B; [INFO] [stderr] | - help: consider further restricting `Self`: `, Self: std::marker::Sized` [INFO] [stderr] ... [INFO] [stderr] 141 | pub struct Map { [INFO] [stderr] | - required by this bound in `combinator::Map` [INFO] [stderr] | [INFO] [stderr] = help: the trait `std::marker::Sized` is not implemented for `Self` [INFO] [stderr] = note: to learn more, visit [INFO] [stderr] [INFO] [stderr] error[E0277]: the size for values of type `Self` cannot be known at compilation time [INFO] [stderr] --> src/combinator.rs:49:12 [INFO] [stderr] | [INFO] [stderr] 49 | -> FollowedBy; [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^- help: consider further restricting `Self`: `where Self: std::marker::Sized` [INFO] [stderr] | | [INFO] [stderr] | doesn't have a size known at compile-time [INFO] [stderr] ... [INFO] [stderr] 182 | pub struct FollowedBy> { [INFO] [stderr] | -- required by this bound in `combinator::FollowedBy` [INFO] [stderr] | [INFO] [stderr] = help: the trait `std::marker::Sized` is not implemented for `Self` [INFO] [stderr] = note: to learn more, visit [INFO] [stderr] [INFO] [stderr] error[E0277]: the size for values of type `Self` cannot be known at compilation time [INFO] [stderr] --> src/combinator.rs:68:12 [INFO] [stderr] | [INFO] [stderr] 68 | -> NotFollowedBy; [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^- help: consider further restricting `Self`: `where Self: std::marker::Sized` [INFO] [stderr] | | [INFO] [stderr] | doesn't have a size known at compile-time [INFO] [stderr] ... [INFO] [stderr] 223 | pub struct NotFollowedBy> { [INFO] [stderr] | -- required by this bound in `combinator::NotFollowedBy` [INFO] [stderr] | [INFO] [stderr] = help: the trait `std::marker::Sized` is not implemented for `Self` [INFO] [stderr] = note: to learn more, visit [INFO] [stderr] [INFO] [stderr] error[E0277]: the size for values of type `Self` cannot be known at compilation time [INFO] [stderr] --> src/combinator.rs:89:12 [INFO] [stderr] | [INFO] [stderr] 89 | -> Seq; [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^- help: consider further restricting `Self`: `where Self: std::marker::Sized` [INFO] [stderr] | | [INFO] [stderr] | doesn't have a size known at compile-time [INFO] [stderr] ... [INFO] [stderr] 265 | pub struct Seq, P2: Parser> { [INFO] [stderr] | -- required by this bound in `combinator::Seq` [INFO] [stderr] | [INFO] [stderr] = help: the trait `std::marker::Sized` is not implemented for `Self` [INFO] [stderr] = note: to learn more, visit [INFO] [stderr] [INFO] [stderr] error[E0277]: the size for values of type `Self` cannot be known at compilation time [INFO] [stderr] --> src/combinator.rs:109:12 [INFO] [stderr] | [INFO] [stderr] 109 | -> Skip; [INFO] [stderr] | ^^^^^^^^^^^^^- help: consider further restricting `Self`: `where Self: std::marker::Sized` [INFO] [stderr] | | [INFO] [stderr] | doesn't have a size known at compile-time [INFO] [stderr] ... [INFO] [stderr] 313 | pub struct Skip> { [INFO] [stderr] | -- required by this bound in `combinator::Skip` [INFO] [stderr] | [INFO] [stderr] = help: the trait `std::marker::Sized` is not implemented for `Self` [INFO] [stderr] = note: to learn more, visit [INFO] [stderr] [INFO] [stderr] error[E0277]: the size for values of type `Self` cannot be known at compilation time [INFO] [stderr] --> src/combinator.rs:28:33 [INFO] [stderr] | [INFO] [stderr] 28 | fn map(self, f: F) -> Map [INFO] [stderr] | ^^^^^^^^^^^^ doesn't have a size known at compile-time [INFO] [stderr] 29 | where F: FnMut(Self::Output) -> B; [INFO] [stderr] | - help: consider further restricting `Self`: `, Self: std::marker::Sized` [INFO] [stderr] ... [INFO] [stderr] 141 | pub struct Map { [INFO] [stderr] | - required by this bound in `combinator::Map` [INFO] [stderr] | [INFO] [stderr] = help: the trait `std::marker::Sized` is not implemented for `Self` [INFO] [stderr] = note: to learn more, visit [INFO] [stderr] [INFO] [stderr] error[E0277]: the size for values of type `Self` cannot be known at compilation time [INFO] [stderr] --> src/combinator.rs:49:12 [INFO] [stderr] | [INFO] [stderr] 49 | -> FollowedBy; [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^- help: consider further restricting `Self`: `where Self: std::marker::Sized` [INFO] [stderr] | | [INFO] [stderr] | doesn't have a size known at compile-time [INFO] [stderr] ... [INFO] [stderr] 182 | pub struct FollowedBy> { [INFO] [stderr] | -- required by this bound in `combinator::FollowedBy` [INFO] [stderr] | [INFO] [stderr] = help: the trait `std::marker::Sized` is not implemented for `Self` [INFO] [stderr] = note: to learn more, visit [INFO] [stderr] [INFO] [stderr] error[E0277]: the size for values of type `Self` cannot be known at compilation time [INFO] [stderr] --> src/combinator.rs:68:12 [INFO] [stderr] | [INFO] [stderr] 68 | -> NotFollowedBy; [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^- help: consider further restricting `Self`: `where Self: std::marker::Sized` [INFO] [stderr] | | [INFO] [stderr] | doesn't have a size known at compile-time [INFO] [stderr] ... [INFO] [stderr] 223 | pub struct NotFollowedBy> { [INFO] [stderr] | -- required by this bound in `combinator::NotFollowedBy` [INFO] [stderr] | [INFO] [stderr] = help: the trait `std::marker::Sized` is not implemented for `Self` [INFO] [stderr] = note: to learn more, visit [INFO] [stderr] [INFO] [stderr] error[E0277]: the size for values of type `Self` cannot be known at compilation time [INFO] [stderr] --> src/combinator.rs:89:12 [INFO] [stderr] | [INFO] [stderr] 89 | -> Seq; [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^- help: consider further restricting `Self`: `where Self: std::marker::Sized` [INFO] [stderr] | | [INFO] [stderr] | doesn't have a size known at compile-time [INFO] [stderr] ... [INFO] [stderr] 265 | pub struct Seq, P2: Parser> { [INFO] [stderr] | -- required by this bound in `combinator::Seq` [INFO] [stderr] | [INFO] [stderr] = help: the trait `std::marker::Sized` is not implemented for `Self` [INFO] [stderr] = note: to learn more, visit [INFO] [stderr] [INFO] [stderr] error[E0277]: the size for values of type `Self` cannot be known at compilation time [INFO] [stderr] --> src/combinator.rs:109:12 [INFO] [stderr] | [INFO] [stderr] 109 | -> Skip; [INFO] [stderr] | ^^^^^^^^^^^^^- help: consider further restricting `Self`: `where Self: std::marker::Sized` [INFO] [stderr] | | [INFO] [stderr] | doesn't have a size known at compile-time [INFO] [stderr] ... [INFO] [stderr] 313 | pub struct Skip> { [INFO] [stderr] | -- required by this bound in `combinator::Skip` [INFO] [stderr] | [INFO] [stderr] = help: the trait `std::marker::Sized` is not implemented for `Self` [INFO] [stderr] = note: to learn more, visit [INFO] [stderr] [INFO] [stderr] error: aborting due to 6 previous errors; 1 warning emitted [INFO] [stderr] [INFO] [stderr] For more information about this error, try `rustc --explain E0277`. [INFO] [stderr] error: aborting due to 6 previous errors; 1 warning emitted [INFO] [stderr] [INFO] [stderr] For more information about this error, try `rustc --explain E0277`. [INFO] [stderr] error: could not compile `rparse`. [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: could not compile `rparse`. [INFO] [stderr] [INFO] [stderr] To learn more, run the command again with --verbose. [INFO] running `"docker" "inspect" "5305bf620ee0153ce3c89f58faf939ee78daab429dbcd016282009b1b7cd2b56"` [INFO] running `"docker" "rm" "-f" "5305bf620ee0153ce3c89f58faf939ee78daab429dbcd016282009b1b7cd2b56"` [INFO] [stdout] 5305bf620ee0153ce3c89f58faf939ee78daab429dbcd016282009b1b7cd2b56