[INFO] updating cached repository https://github.com/djallen89/beams
[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] 1ba76cd57700855d97cc3d25f318a2c5705e1aad
[INFO] checking djallen89/beams against master#bf1f2eedda4fa02b7c9347dd849ed73ddd43dedc for pr-70917
[INFO] running `"git" "clone" "/workspace/cache/git-repos/https%3A%2F%2Fgithub.com%2Fdjallen89%2Fbeams" "/workspace/builds/worker-2/source"`
[INFO] [stderr] Cloning into '/workspace/builds/worker-2/source'...
[INFO] [stderr] done.
[INFO] validating manifest of git repo https://github.com/djallen89/beams on toolchain bf1f2eedda4fa02b7c9347dd849ed73ddd43dedc
[INFO] running `"/workspace/cargo-home/bin/cargo" "+bf1f2eedda4fa02b7c9347dd849ed73ddd43dedc" "read-manifest" "--manifest-path" "Cargo.toml"`
[INFO] started tweaking git repo https://github.com/djallen89/beams
[INFO] finished tweaking git repo https://github.com/djallen89/beams
[INFO] tweaked toml for git repo https://github.com/djallen89/beams written to /workspace/builds/worker-2/source/Cargo.toml
[INFO] crate git repo https://github.com/djallen89/beams already has a lockfile, it will not be regenerated
[INFO] running `"/workspace/cargo-home/bin/cargo" "+bf1f2eedda4fa02b7c9347dd849ed73ddd43dedc" "fetch" "--locked" "--manifest-path" "Cargo.toml"`
[INFO] running `"docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-2/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-2/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" "+bf1f2eedda4fa02b7c9347dd849ed73ddd43dedc" "check" "--frozen" "--all" "--all-targets"`
[INFO] [stdout] d3ef63753c9c5e3368e2bc963d76add7f505be088260e950f0cedbd565182f25
[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" "d3ef63753c9c5e3368e2bc963d76add7f505be088260e950f0cedbd565182f25"`
[INFO] [stderr]     Checking beams v0.1.0 (/opt/rustwide/workdir)
[INFO] [stderr] error: expected one of `(` or `<`, found keyword `pub`
[INFO] [stderr]    --> src/geometry.rs:122:5
[INFO] [stderr]     |
[INFO] [stderr] 102 | impl<T: Math<T> + Clone> Rectangle<T> {
[INFO] [stderr]     |                                       - while parsing this item list starting here
[INFO] [stderr] ...
[INFO] [stderr] 119 |     pub fn len
[INFO] [stderr]     |               - expected one of `(` or `<`
[INFO] [stderr] ...
[INFO] [stderr] 122 |     pub fn ratio(&self, lxw: bool) -> T {
[INFO] [stderr]     |     ^^^ unexpected token
[INFO] [stderr] ...
[INFO] [stderr] 132 | }
[INFO] [stderr]     | - the item list ends here
[INFO] [stderr] 
[INFO] [stderr] error: expected one of `(` or `<`, found keyword `pub`
[INFO] [stderr]    --> src/geometry.rs:122:5
[INFO] [stderr]     |
[INFO] [stderr] 102 | impl<T: Math<T> + Clone> Rectangle<T> {
[INFO] [stderr]     |                                       - while parsing this item list starting here
[INFO] [stderr] ...
[INFO] [stderr] 119 |     pub fn len
[INFO] [stderr]     |               - expected one of `(` or `<`
[INFO] [stderr] ...
[INFO] [stderr] 122 |     pub fn ratio(&self, lxw: bool) -> T {
[INFO] [stderr]     |     ^^^ unexpected token
[INFO] [stderr] ...
[INFO] [stderr] 132 | }
[INFO] [stderr]     | - the item list ends here
[INFO] [stderr] 
[INFO] [stderr] error[E0432]: unresolved import `super::wectors::Axis`
[INFO] [stderr]  --> src/geometry.rs:2:22
[INFO] [stderr]   |
[INFO] [stderr] 2 | use super::wectors::{Axis, Point, Wector, Coordinates};
[INFO] [stderr]   |                      ^^^^ no `Axis` in `wectors`
[INFO] [stderr] 
[INFO] [stderr] error: cannot find derive macro `CLone` in this scope
[INFO] [stderr]    --> src/wectors.rs:4:16
[INFO] [stderr]     |
[INFO] [stderr] 4   |   #[derive(Copy, CLone, Debug)]
[INFO] [stderr]     |                  ^^^^^ help: a derive macro with a similar name exists: `Clone`
[INFO] [stderr] 
[INFO] [stderr] error[E0425]: cannot find value `s` in this scope
[INFO] [stderr]   --> src/xsection.rs:25:9
[INFO] [stderr]    |
[INFO] [stderr] 25 |         s.iter().fold(T::zero(), |acc, x| acc + x.area())
[INFO] [stderr]    |         ^ not found in this scope
[INFO] [stderr] 
[INFO] [stderr] error[E0119]: conflicting implementations of trait `std::marker::Copy` for type `wectors::Cartesian`:
[INFO] [stderr]  --> src/wectors.rs:4:10
[INFO] [stderr]   |
[INFO] [stderr] 4 | #[derive(Copy, CLone, Debug)]
[INFO] [stderr]   |          ^^^^ conflicting implementation for `wectors::Cartesian`
[INFO] [stderr] 5 | 
[INFO] [stderr] 6 | #[derive(Copy, Clone, Debug)]
[INFO] [stderr]   |          ---- first implementation here
[INFO] [stderr]   |
[INFO] [stderr]   = note: this error originates in a derive macro (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stderr] 
[INFO] [stderr] error[E0119]: conflicting implementations of trait `std::fmt::Debug` for type `wectors::Cartesian`:
[INFO] [stderr]  --> src/wectors.rs:4:23
[INFO] [stderr]   |
[INFO] [stderr] 4 | #[derive(Copy, CLone, Debug)]
[INFO] [stderr]   |                       ^^^^^ conflicting implementation for `wectors::Cartesian`
[INFO] [stderr] 5 | 
[INFO] [stderr] 6 | #[derive(Copy, Clone, Debug)]
[INFO] [stderr]   |                       ----- first implementation here
[INFO] [stderr]   |
[INFO] [stderr]   = note: this error originates in a derive macro (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stderr] 
[INFO] [stderr] error: aborting due to 6 previous errors
[INFO] [stderr] 
[INFO] [stderr] Some errors have detailed explanations: E0119, E0425, E0432.
[INFO] [stderr] For more information about an error, try `rustc --explain E0119`.
[INFO] [stderr] error: could not compile `beams`.
[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 `super::wectors::Axis`
[INFO] [stderr]  --> src/geometry.rs:2:22
[INFO] [stderr]   |
[INFO] [stderr] 2 | use super::wectors::{Axis, Point, Wector, Coordinates};
[INFO] [stderr]   |                      ^^^^ no `Axis` in `wectors`
[INFO] [stderr] 
[INFO] [stderr] error: cannot find derive macro `CLone` in this scope
[INFO] [stderr]    --> src/wectors.rs:4:16
[INFO] [stderr]     |
[INFO] [stderr] 4   |   #[derive(Copy, CLone, Debug)]
[INFO] [stderr]     |                  ^^^^^ help: a derive macro with a similar name exists: `Clone`
[INFO] [stderr] 
[INFO] [stderr] error[E0425]: cannot find value `s` in this scope
[INFO] [stderr]   --> src/xsection.rs:25:9
[INFO] [stderr]    |
[INFO] [stderr] 25 |         s.iter().fold(T::zero(), |acc, x| acc + x.area())
[INFO] [stderr]    |         ^ not found in this scope
[INFO] [stderr] 
[INFO] [stderr] error[E0119]: conflicting implementations of trait `std::marker::Copy` for type `wectors::Cartesian`:
[INFO] [stderr]  --> src/wectors.rs:4:10
[INFO] [stderr]   |
[INFO] [stderr] 4 | #[derive(Copy, CLone, Debug)]
[INFO] [stderr]   |          ^^^^ conflicting implementation for `wectors::Cartesian`
[INFO] [stderr] 5 | 
[INFO] [stderr] 6 | #[derive(Copy, Clone, Debug)]
[INFO] [stderr]   |          ---- first implementation here
[INFO] [stderr]   |
[INFO] [stderr]   = note: this error originates in a derive macro (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stderr] 
[INFO] [stderr] error[E0119]: conflicting implementations of trait `std::fmt::Debug` for type `wectors::Cartesian`:
[INFO] [stderr]  --> src/wectors.rs:4:23
[INFO] [stderr]   |
[INFO] [stderr] 4 | #[derive(Copy, CLone, Debug)]
[INFO] [stderr]   |                       ^^^^^ conflicting implementation for `wectors::Cartesian`
[INFO] [stderr] 5 | 
[INFO] [stderr] 6 | #[derive(Copy, Clone, Debug)]
[INFO] [stderr]   |                       ----- first implementation here
[INFO] [stderr]   |
[INFO] [stderr]   = note: this error originates in a derive macro (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stderr] 
[INFO] [stderr] error: aborting due to 6 previous errors
[INFO] [stderr] 
[INFO] [stderr] Some errors have detailed explanations: E0119, E0425, E0432.
[INFO] [stderr] For more information about an error, try `rustc --explain E0119`.
[INFO] [stderr] error: could not compile `beams`.
[INFO] [stderr] 
[INFO] [stderr] To learn more, run the command again with --verbose.
[INFO] running `"docker" "inspect" "d3ef63753c9c5e3368e2bc963d76add7f505be088260e950f0cedbd565182f25"`
[INFO] running `"docker" "rm" "-f" "d3ef63753c9c5e3368e2bc963d76add7f505be088260e950f0cedbd565182f25"`
[INFO] [stdout] d3ef63753c9c5e3368e2bc963d76add7f505be088260e950f0cedbd565182f25
