[INFO] updating cached repository https://github.com/bit-shift/resonance
[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] 5ea5cb3b9bd36ec9350a477120f709dfca2e90df
[INFO] checking bit-shift/resonance against master#bf1f2eedda4fa02b7c9347dd849ed73ddd43dedc for pr-70917
[INFO] running `"git" "clone" "/workspace/cache/git-repos/https%3A%2F%2Fgithub.com%2Fbit-shift%2Fresonance" "/workspace/builds/worker-3/source"`
[INFO] [stderr] Cloning into '/workspace/builds/worker-3/source'...
[INFO] [stderr] done.
[INFO] validating manifest of git repo https://github.com/bit-shift/resonance 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/bit-shift/resonance
[INFO] finished tweaking git repo https://github.com/bit-shift/resonance
[INFO] tweaked toml for git repo https://github.com/bit-shift/resonance written to /workspace/builds/worker-3/source/Cargo.toml
[INFO] crate git repo https://github.com/bit-shift/resonance 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-3/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-3/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] [stderr] WARNING: Your kernel does not support swap limit capabilities or the cgroup is not mounted. Memory limited without swap.
[INFO] [stdout] 6fa07c3ac59fbe5a4a9ea34833102a526c4998faf4b1ab2063816bed147a4574
[INFO] running `"docker" "start" "-a" "6fa07c3ac59fbe5a4a9ea34833102a526c4998faf4b1ab2063816bed147a4574"`
[INFO] [stderr]     Checking resonance v0.0.1 (/opt/rustwide/workdir)
[INFO] [stderr] error: invalid suffix `i` for integer literal
[INFO] [stderr]   --> src/lib.rs:17:20
[INFO] [stderr]    |
[INFO] [stderr] 17 |     for _ in range(0i, 1000) {
[INFO] [stderr]    |                    ^^ invalid suffix `i`
[INFO] [stderr]    |
[INFO] [stderr]    = help: the suffix must be one of the integral types (`u32`, `isize`, etc)
[INFO] [stderr] 
[INFO] [stderr] error: macros that expand to items must be delimited with braces or followed by a semicolon
[INFO] [stderr]   --> src/units.rs:2:29
[INFO] [stderr]    |
[INFO] [stderr] 2  |   macro_rules! addable_newtype(
[INFO] [stderr]    |  _____________________________^
[INFO] [stderr] 3  | |     ($T:ident) => (
[INFO] [stderr] 4  | |         impl Add<$T, $T> for $T {
[INFO] [stderr] 5  | |             fn add(&self, rhs: &$T) -> $T {
[INFO] [stderr] ...  |
[INFO] [stderr] 10 | |     )
[INFO] [stderr] 11 | | )
[INFO] [stderr]    | |_^
[INFO] [stderr]    |
[INFO] [stderr] help: change the delimiters to curly braces
[INFO] [stderr]    |
[INFO] [stderr] 2  | macro_rules! addable_newtype{
[INFO] [stderr] 3  |     ($T:ident) => (
[INFO] [stderr] 4  |         impl Add<$T, $T> for $T {
[INFO] [stderr] 5  |             fn add(&self, rhs: &$T) -> $T {
[INFO] [stderr] 6  |                 let ($T(self_val), $T(rhs_val)) = (*self, *rhs);
[INFO] [stderr] 7  |                 $T(self_val + rhs_val)
[INFO] [stderr]  ...
[INFO] [stderr] help: add a semicolon
[INFO] [stderr]    |
[INFO] [stderr] 11 | );
[INFO] [stderr]    |  ^
[INFO] [stderr] 
[INFO] [stderr] error: macros that expand to items must be delimited with braces or followed by a semicolon
[INFO] [stderr]   --> src/units.rs:13:29
[INFO] [stderr]    |
[INFO] [stderr] 13 |   macro_rules! subable_newtype(
[INFO] [stderr]    |  _____________________________^
[INFO] [stderr] 14 | |     ($T:ident) => (
[INFO] [stderr] 15 | |         impl Sub<$T, $T> for $T {
[INFO] [stderr] 16 | |             fn sub(&self, rhs: &$T) -> $T {
[INFO] [stderr] ...  |
[INFO] [stderr] 21 | |     )
[INFO] [stderr] 22 | | )
[INFO] [stderr]    | |_^
[INFO] [stderr]    |
[INFO] [stderr] help: change the delimiters to curly braces
[INFO] [stderr]    |
[INFO] [stderr] 13 | macro_rules! subable_newtype{
[INFO] [stderr] 14 |     ($T:ident) => (
[INFO] [stderr] 15 |         impl Sub<$T, $T> for $T {
[INFO] [stderr] 16 |             fn sub(&self, rhs: &$T) -> $T {
[INFO] [stderr] 17 |                 let ($T(self_val), $T(rhs_val)) = (*self, *rhs);
[INFO] [stderr] 18 |                 $T(self_val - rhs_val)
[INFO] [stderr]  ...
[INFO] [stderr] help: add a semicolon
[INFO] [stderr]    |
[INFO] [stderr] 22 | );
[INFO] [stderr]    |  ^
[INFO] [stderr] 
[INFO] [stderr] error: macros that expand to items must be delimited with braces or followed by a semicolon
[INFO] [stderr]   --> src/units.rs:24:30
[INFO] [stderr]    |
[INFO] [stderr] 24 |   macro_rules! scalable_newtype(
[INFO] [stderr]    |  ______________________________^
[INFO] [stderr] 25 | |     ($T:ident) => (
[INFO] [stderr] 26 | |         impl Mul<f64, $T> for $T {
[INFO] [stderr] 27 | |             fn mul(&self, &rhs: &f64) -> $T {
[INFO] [stderr] ...  |
[INFO] [stderr] 32 | |     )
[INFO] [stderr] 33 | | )
[INFO] [stderr]    | |_^
[INFO] [stderr]    |
[INFO] [stderr] help: change the delimiters to curly braces
[INFO] [stderr]    |
[INFO] [stderr] 24 | macro_rules! scalable_newtype{
[INFO] [stderr] 25 |     ($T:ident) => (
[INFO] [stderr] 26 |         impl Mul<f64, $T> for $T {
[INFO] [stderr] 27 |             fn mul(&self, &rhs: &f64) -> $T {
[INFO] [stderr] 28 |                 let $T(self_val) = *self;
[INFO] [stderr] 29 |                 $T(self_val * rhs)
[INFO] [stderr]  ...
[INFO] [stderr] help: add a semicolon
[INFO] [stderr]    |
[INFO] [stderr] 33 | );
[INFO] [stderr]    |  ^
[INFO] [stderr] 
[INFO] [stderr] error: macros that expand to items must be delimited with braces or followed by a semicolon
[INFO] [stderr]   --> src/units.rs:35:26
[INFO] [stderr]    |
[INFO] [stderr] 35 |   macro_rules! mul_newtypes(
[INFO] [stderr]    |  __________________________^
[INFO] [stderr] 36 | |     ($A:ident * $B:ident -> $C:ident) => (
[INFO] [stderr] 37 | |         impl Mul<$B, $C> for $A {
[INFO] [stderr] 38 | |             fn mul(&self, rhs: &$B) -> $C {
[INFO] [stderr] ...  |
[INFO] [stderr] 44 | |     )
[INFO] [stderr] 45 | | )
[INFO] [stderr]    | |_^
[INFO] [stderr]    |
[INFO] [stderr] help: change the delimiters to curly braces
[INFO] [stderr]    |
[INFO] [stderr] 35 | macro_rules! mul_newtypes{
[INFO] [stderr] 36 |     ($A:ident * $B:ident -> $C:ident) => (
[INFO] [stderr] 37 |         impl Mul<$B, $C> for $A {
[INFO] [stderr] 38 |             fn mul(&self, rhs: &$B) -> $C {
[INFO] [stderr] 39 |                 let $A(self_val) = *self;
[INFO] [stderr] 40 |                 let $B(rhs_val) = *rhs;
[INFO] [stderr]  ...
[INFO] [stderr] help: add a semicolon
[INFO] [stderr]    |
[INFO] [stderr] 45 | );
[INFO] [stderr]    |  ^
[INFO] [stderr] 
[INFO] [stderr] error: macros that expand to items must be delimited with braces or followed by a semicolon
[INFO] [stderr]   --> src/units.rs:73:17
[INFO] [stderr]    |
[INFO] [stderr] 73 | addable_newtype!(Length)
[INFO] [stderr]    |                 ^^^^^^^^
[INFO] [stderr]    |
[INFO] [stderr] help: change the delimiters to curly braces
[INFO] [stderr]    |
[INFO] [stderr] 73 | addable_newtype!{Length}
[INFO] [stderr]    |                 ^      ^
[INFO] [stderr] help: add a semicolon
[INFO] [stderr]    |
[INFO] [stderr] 73 | addable_newtype!(Length);
[INFO] [stderr]    |                         ^
[INFO] [stderr] 
[INFO] [stderr] error: macros that expand to items must be delimited with braces or followed by a semicolon
[INFO] [stderr]   --> src/units.rs:74:17
[INFO] [stderr]    |
[INFO] [stderr] 74 | subable_newtype!(Length)
[INFO] [stderr]    |                 ^^^^^^^^
[INFO] [stderr]    |
[INFO] [stderr] help: change the delimiters to curly braces
[INFO] [stderr]    |
[INFO] [stderr] 74 | subable_newtype!{Length}
[INFO] [stderr]    |                 ^      ^
[INFO] [stderr] help: add a semicolon
[INFO] [stderr]    |
[INFO] [stderr] 74 | subable_newtype!(Length);
[INFO] [stderr]    |                         ^
[INFO] [stderr] 
[INFO] [stderr] error: macros that expand to items must be delimited with braces or followed by a semicolon
[INFO] [stderr]   --> src/units.rs:75:18
[INFO] [stderr]    |
[INFO] [stderr] 75 | scalable_newtype!(Length)
[INFO] [stderr]    |                  ^^^^^^^^
[INFO] [stderr]    |
[INFO] [stderr] help: change the delimiters to curly braces
[INFO] [stderr]    |
[INFO] [stderr] 75 | scalable_newtype!{Length}
[INFO] [stderr]    |                  ^      ^
[INFO] [stderr] help: add a semicolon
[INFO] [stderr]    |
[INFO] [stderr] 75 | scalable_newtype!(Length);
[INFO] [stderr]    |                          ^
[INFO] [stderr] 
[INFO] [stderr] error: macros that expand to items must be delimited with braces or followed by a semicolon
[INFO] [stderr]   --> src/units.rs:76:17
[INFO] [stderr]    |
[INFO] [stderr] 76 | addable_newtype!(Velocity)
[INFO] [stderr]    |                 ^^^^^^^^^^
[INFO] [stderr]    |
[INFO] [stderr] help: change the delimiters to curly braces
[INFO] [stderr]    |
[INFO] [stderr] 76 | addable_newtype!{Velocity}
[INFO] [stderr]    |                 ^        ^
[INFO] [stderr] help: add a semicolon
[INFO] [stderr]    |
[INFO] [stderr] 76 | addable_newtype!(Velocity);
[INFO] [stderr]    |                           ^
[INFO] [stderr] 
[INFO] [stderr] error: macros that expand to items must be delimited with braces or followed by a semicolon
[INFO] [stderr]   --> src/units.rs:77:17
[INFO] [stderr]    |
[INFO] [stderr] 77 | subable_newtype!(Velocity)
[INFO] [stderr]    |                 ^^^^^^^^^^
[INFO] [stderr]    |
[INFO] [stderr] help: change the delimiters to curly braces
[INFO] [stderr]    |
[INFO] [stderr] 77 | subable_newtype!{Velocity}
[INFO] [stderr]    |                 ^        ^
[INFO] [stderr] help: add a semicolon
[INFO] [stderr]    |
[INFO] [stderr] 77 | subable_newtype!(Velocity);
[INFO] [stderr]    |                           ^
[INFO] [stderr] 
[INFO] [stderr] error: macros that expand to items must be delimited with braces or followed by a semicolon
[INFO] [stderr]   --> src/units.rs:78:18
[INFO] [stderr]    |
[INFO] [stderr] 78 | scalable_newtype!(Velocity)
[INFO] [stderr]    |                  ^^^^^^^^^^
[INFO] [stderr]    |
[INFO] [stderr] help: change the delimiters to curly braces
[INFO] [stderr]    |
[INFO] [stderr] 78 | scalable_newtype!{Velocity}
[INFO] [stderr]    |                  ^        ^
[INFO] [stderr] help: add a semicolon
[INFO] [stderr]    |
[INFO] [stderr] 78 | scalable_newtype!(Velocity);
[INFO] [stderr]    |                            ^
[INFO] [stderr] 
[INFO] [stderr] error: macros that expand to items must be delimited with braces or followed by a semicolon
[INFO] [stderr]   --> src/units.rs:79:17
[INFO] [stderr]    |
[INFO] [stderr] 79 | addable_newtype!(Force)
[INFO] [stderr]    |                 ^^^^^^^
[INFO] [stderr]    |
[INFO] [stderr] help: change the delimiters to curly braces
[INFO] [stderr]    |
[INFO] [stderr] 79 | addable_newtype!{Force}
[INFO] [stderr]    |                 ^     ^
[INFO] [stderr] help: add a semicolon
[INFO] [stderr]    |
[INFO] [stderr] 79 | addable_newtype!(Force);
[INFO] [stderr]    |                        ^
[INFO] [stderr] 
[INFO] [stderr] error: macros that expand to items must be delimited with braces or followed by a semicolon
[INFO] [stderr]   --> src/units.rs:80:17
[INFO] [stderr]    |
[INFO] [stderr] 80 | subable_newtype!(Force)
[INFO] [stderr]    |                 ^^^^^^^
[INFO] [stderr]    |
[INFO] [stderr] help: change the delimiters to curly braces
[INFO] [stderr]    |
[INFO] [stderr] 80 | subable_newtype!{Force}
[INFO] [stderr]    |                 ^     ^
[INFO] [stderr] help: add a semicolon
[INFO] [stderr]    |
[INFO] [stderr] 80 | subable_newtype!(Force);
[INFO] [stderr]    |                        ^
[INFO] [stderr] 
[INFO] [stderr] error: macros that expand to items must be delimited with braces or followed by a semicolon
[INFO] [stderr]   --> src/units.rs:82:14
[INFO] [stderr]    |
[INFO] [stderr] 82 | mul_newtypes!(Stiffness * Length -> Force)
[INFO] [stderr]    |              ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
[INFO] [stderr]    |
[INFO] [stderr] help: change the delimiters to curly braces
[INFO] [stderr]    |
[INFO] [stderr] 82 | mul_newtypes!{Stiffness * Length -> Force}
[INFO] [stderr]    |              ^                           ^
[INFO] [stderr] help: add a semicolon
[INFO] [stderr]    |
[INFO] [stderr] 82 | mul_newtypes!(Stiffness * Length -> Force);
[INFO] [stderr]    |                                           ^
[INFO] [stderr] 
[INFO] [stderr] error: macros that expand to items must be delimited with braces or followed by a semicolon
[INFO] [stderr]   --> src/units.rs:83:14
[INFO] [stderr]    |
[INFO] [stderr] 83 | mul_newtypes!(Damping * Velocity -> Force)
[INFO] [stderr]    |              ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
[INFO] [stderr]    |
[INFO] [stderr] help: change the delimiters to curly braces
[INFO] [stderr]    |
[INFO] [stderr] 83 | mul_newtypes!{Damping * Velocity -> Force}
[INFO] [stderr]    |              ^                           ^
[INFO] [stderr] help: add a semicolon
[INFO] [stderr]    |
[INFO] [stderr] 83 | mul_newtypes!(Damping * Velocity -> Force);
[INFO] [stderr]    |                                           ^
[INFO] [stderr] 
[INFO] [stderr] error: cannot find attribute `deriving` in this scope
[INFO] [stderr]   --> src/instrument.rs:88:3
[INFO] [stderr]    |
[INFO] [stderr] 88 | #[deriving(Clone, Show)]
[INFO] [stderr]    |   ^^^^^^^^
[INFO] [stderr] 
[INFO] [stderr] error: cannot find attribute `deriving` in this scope
[INFO] [stderr]    --> src/instrument.rs:118:3
[INFO] [stderr]     |
[INFO] [stderr] 118 | #[deriving(Clone)]
[INFO] [stderr]     |   ^^^^^^^^
[INFO] [stderr] 
[INFO] [stderr] error: cannot find attribute `deriving` in this scope
[INFO] [stderr]   --> src/units.rs:48:3
[INFO] [stderr]    |
[INFO] [stderr] 48 | #[deriving(Clone, Show)]
[INFO] [stderr]    |   ^^^^^^^^
[INFO] [stderr] 
[INFO] [stderr] error: cannot find attribute `deriving` in this scope
[INFO] [stderr]   --> src/units.rs:51:3
[INFO] [stderr]    |
[INFO] [stderr] 51 | #[deriving(Clone, Show)]
[INFO] [stderr]    |   ^^^^^^^^
[INFO] [stderr] 
[INFO] [stderr] error: cannot find attribute `deriving` in this scope
[INFO] [stderr]   --> src/units.rs:54:3
[INFO] [stderr]    |
[INFO] [stderr] 54 | #[deriving(Clone, Show)]
[INFO] [stderr]    |   ^^^^^^^^
[INFO] [stderr] 
[INFO] [stderr] error: cannot find attribute `deriving` in this scope
[INFO] [stderr]   --> src/units.rs:57:3
[INFO] [stderr]    |
[INFO] [stderr] 57 | #[deriving(Clone, Show)]
[INFO] [stderr]    |   ^^^^^^^^
[INFO] [stderr] 
[INFO] [stderr] error: cannot find attribute `deriving` in this scope
[INFO] [stderr]   --> src/units.rs:60:3
[INFO] [stderr]    |
[INFO] [stderr] 60 | #[deriving(Clone, Show)]
[INFO] [stderr]    |   ^^^^^^^^
[INFO] [stderr] 
[INFO] [stderr] error: cannot find attribute `deriving` in this scope
[INFO] [stderr]   --> src/units.rs:63:3
[INFO] [stderr]    |
[INFO] [stderr] 63 | #[deriving(Clone, Show)]
[INFO] [stderr]    |   ^^^^^^^^
[INFO] [stderr] 
[INFO] [stderr] error: cannot find attribute `deriving` in this scope
[INFO] [stderr]   --> src/units.rs:66:3
[INFO] [stderr]    |
[INFO] [stderr] 66 | #[deriving(Clone, Show)]
[INFO] [stderr]    |   ^^^^^^^^
[INFO] [stderr] 
[INFO] [stderr] error: cannot find attribute `deriving` in this scope
[INFO] [stderr]   --> src/units.rs:69:3
[INFO] [stderr]    |
[INFO] [stderr] 69 | #[deriving(Clone, Show)]
[INFO] [stderr]    |   ^^^^^^^^
[INFO] [stderr] 
[INFO] [stderr] error[E0412]: cannot find type `uint` in this scope
[INFO] [stderr]   --> src/instrument.rs:15:21
[INFO] [stderr]    |
[INFO] [stderr] 15 | pub struct Particle(uint);
[INFO] [stderr]    |                     ^^^^ not found in this scope
[INFO] [stderr] 
[INFO] [stderr] error[E0412]: cannot find type `uint` in this scope
[INFO] [stderr]   --> src/instrument.rs:16:19
[INFO] [stderr]    |
[INFO] [stderr] 16 | pub struct Spring(uint);
[INFO] [stderr]    |                   ^^^^ not found in this scope
[INFO] [stderr] 
[INFO] [stderr] error[E0412]: cannot find type `uint` in this scope
[INFO] [stderr]   --> src/instrument.rs:55:66
[INFO] [stderr]    |
[INFO] [stderr] 55 |     pub fn add_chain(&mut self, p_0: Particle, p_n: Particle, n: uint, mass: Mass, stiffness: Stiffness, damping: Damping) {
[INFO] [stderr]    |                                                                  ^^^^ not found in this scope
[INFO] [stderr] 
[INFO] [stderr] error[E0425]: cannot find function `range` in this scope
[INFO] [stderr]   --> src/instrument.rs:57:18
[INFO] [stderr]    |
[INFO] [stderr] 57 |         for _ in range(1, n) {
[INFO] [stderr]    |                  ^^^^^ not found in this scope
[INFO] [stderr] 
[INFO] [stderr] error[E0405]: cannot find trait `Add` in this scope
[INFO] [stderr]    --> src/instrument.rs:100:6
[INFO] [stderr]     |
[INFO] [stderr] 100 | impl Add<ParticleState, ParticleState> for ParticleState {
[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::ops::Add;
[INFO] [stderr]     |
[INFO] [stderr] 
[INFO] [stderr] error[E0405]: cannot find trait `Mul` in this scope
[INFO] [stderr]    --> src/instrument.rs:109:6
[INFO] [stderr]     |
[INFO] [stderr] 109 | impl Mul<f64, ParticleState> for ParticleState {
[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::ops::Mul;
[INFO] [stderr]     |
[INFO] [stderr] 
[INFO] [stderr] error[E0405]: cannot find trait `Add` in this scope
[INFO] [stderr]    --> src/instrument.rs:147:10
[INFO] [stderr]     |
[INFO] [stderr] 147 | impl<'a> Add<InstrumentState<'a>, InstrumentState<'a>> for InstrumentState<'a> {
[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::ops::Add;
[INFO] [stderr]     |
[INFO] [stderr] 
[INFO] [stderr] error[E0405]: cannot find trait `Mul` in this scope
[INFO] [stderr]    --> src/instrument.rs:159:10
[INFO] [stderr]     |
[INFO] [stderr] 159 | impl<'a> Mul<f64, InstrumentState<'a>> for InstrumentState<'a> {
[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::ops::Mul;
[INFO] [stderr]     |
[INFO] [stderr] 
[INFO] [stderr] error[E0405]: cannot find trait `Add` in this scope
[INFO] [stderr]   --> src/units.rs:4:14
[INFO] [stderr]    |
[INFO] [stderr] 4  |         impl Add<$T, $T> for $T {
[INFO] [stderr]    |              ^^^ not found in this scope
[INFO] [stderr] ...
[INFO] [stderr] 73 | addable_newtype!(Length)
[INFO] [stderr]    | ------------------------ in this macro invocation
[INFO] [stderr]    |
[INFO] [stderr]    = note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stderr] help: possible candidate is found in another module, you can import it into scope
[INFO] [stderr]    |
[INFO] [stderr] 2  | use std::ops::Add;
[INFO] [stderr]    |
[INFO] [stderr] 
[INFO] [stderr] error[E0405]: cannot find trait `Sub` in this scope
[INFO] [stderr]   --> src/units.rs:15:14
[INFO] [stderr]    |
[INFO] [stderr] 15 |         impl Sub<$T, $T> for $T {
[INFO] [stderr]    |              ^^^ not found in this scope
[INFO] [stderr] ...
[INFO] [stderr] 74 | subable_newtype!(Length)
[INFO] [stderr]    | ------------------------ in this macro invocation
[INFO] [stderr]    |
[INFO] [stderr]    = note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stderr] help: possible candidate is found in another module, you can import it into scope
[INFO] [stderr]    |
[INFO] [stderr] 2  | use std::ops::Sub;
[INFO] [stderr]    |
[INFO] [stderr] 
[INFO] [stderr] error[E0405]: cannot find trait `Mul` in this scope
[INFO] [stderr]   --> src/units.rs:26:14
[INFO] [stderr]    |
[INFO] [stderr] 26 |         impl Mul<f64, $T> for $T {
[INFO] [stderr]    |              ^^^ not found in this scope
[INFO] [stderr] ...
[INFO] [stderr] 75 | scalable_newtype!(Length)
[INFO] [stderr]    | ------------------------- in this macro invocation
[INFO] [stderr]    |
[INFO] [stderr]    = note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stderr] help: possible candidate is found in another module, you can import it into scope
[INFO] [stderr]    |
[INFO] [stderr] 2  | use std::ops::Mul;
[INFO] [stderr]    |
[INFO] [stderr] 
[INFO] [stderr] error[E0405]: cannot find trait `Add` in this scope
[INFO] [stderr]   --> src/units.rs:4:14
[INFO] [stderr]    |
[INFO] [stderr] 4  |         impl Add<$T, $T> for $T {
[INFO] [stderr]    |              ^^^ not found in this scope
[INFO] [stderr] ...
[INFO] [stderr] 76 | addable_newtype!(Velocity)
[INFO] [stderr]    | -------------------------- in this macro invocation
[INFO] [stderr]    |
[INFO] [stderr]    = note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stderr] help: possible candidate is found in another module, you can import it into scope
[INFO] [stderr]    |
[INFO] [stderr] 2  | use std::ops::Add;
[INFO] [stderr]    |
[INFO] [stderr] 
[INFO] [stderr] error[E0405]: cannot find trait `Sub` in this scope
[INFO] [stderr]   --> src/units.rs:15:14
[INFO] [stderr]    |
[INFO] [stderr] 15 |         impl Sub<$T, $T> for $T {
[INFO] [stderr]    |              ^^^ not found in this scope
[INFO] [stderr] ...
[INFO] [stderr] 77 | subable_newtype!(Velocity)
[INFO] [stderr]    | -------------------------- in this macro invocation
[INFO] [stderr]    |
[INFO] [stderr]    = note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stderr] help: possible candidate is found in another module, you can import it into scope
[INFO] [stderr]    |
[INFO] [stderr] 2  | use std::ops::Sub;
[INFO] [stderr]    |
[INFO] [stderr] 
[INFO] [stderr] error[E0405]: cannot find trait `Mul` in this scope
[INFO] [stderr]   --> src/units.rs:26:14
[INFO] [stderr]    |
[INFO] [stderr] 26 |         impl Mul<f64, $T> for $T {
[INFO] [stderr]    |              ^^^ not found in this scope
[INFO] [stderr] ...
[INFO] [stderr] 78 | scalable_newtype!(Velocity)
[INFO] [stderr]    | --------------------------- in this macro invocation
[INFO] [stderr]    |
[INFO] [stderr]    = note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stderr] help: possible candidate is found in another module, you can import it into scope
[INFO] [stderr]    |
[INFO] [stderr] 2  | use std::ops::Mul;
[INFO] [stderr]    |
[INFO] [stderr] 
[INFO] [stderr] error[E0405]: cannot find trait `Add` in this scope
[INFO] [stderr]   --> src/units.rs:4:14
[INFO] [stderr]    |
[INFO] [stderr] 4  |         impl Add<$T, $T> for $T {
[INFO] [stderr]    |              ^^^ not found in this scope
[INFO] [stderr] ...
[INFO] [stderr] 79 | addable_newtype!(Force)
[INFO] [stderr]    | ----------------------- in this macro invocation
[INFO] [stderr]    |
[INFO] [stderr]    = note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stderr] help: possible candidate is found in another module, you can import it into scope
[INFO] [stderr]    |
[INFO] [stderr] 2  | use std::ops::Add;
[INFO] [stderr]    |
[INFO] [stderr] 
[INFO] [stderr] error[E0405]: cannot find trait `Sub` in this scope
[INFO] [stderr]   --> src/units.rs:15:14
[INFO] [stderr]    |
[INFO] [stderr] 15 |         impl Sub<$T, $T> for $T {
[INFO] [stderr]    |              ^^^ not found in this scope
[INFO] [stderr] ...
[INFO] [stderr] 80 | subable_newtype!(Force)
[INFO] [stderr]    | ----------------------- in this macro invocation
[INFO] [stderr]    |
[INFO] [stderr]    = note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stderr] help: possible candidate is found in another module, you can import it into scope
[INFO] [stderr]    |
[INFO] [stderr] 2  | use std::ops::Sub;
[INFO] [stderr]    |
[INFO] [stderr] 
[INFO] [stderr] error[E0405]: cannot find trait `Mul` in this scope
[INFO] [stderr]   --> src/units.rs:37:14
[INFO] [stderr]    |
[INFO] [stderr] 37 |         impl Mul<$B, $C> for $A {
[INFO] [stderr]    |              ^^^ not found in this scope
[INFO] [stderr] ...
[INFO] [stderr] 82 | mul_newtypes!(Stiffness * Length -> Force)
[INFO] [stderr]    | ------------------------------------------ in this macro invocation
[INFO] [stderr]    |
[INFO] [stderr]    = note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stderr] help: possible candidate is found in another module, you can import it into scope
[INFO] [stderr]    |
[INFO] [stderr] 2  | use std::ops::Mul;
[INFO] [stderr]    |
[INFO] [stderr] 
[INFO] [stderr] error[E0405]: cannot find trait `Mul` in this scope
[INFO] [stderr]   --> src/units.rs:37:14
[INFO] [stderr]    |
[INFO] [stderr] 37 |         impl Mul<$B, $C> for $A {
[INFO] [stderr]    |              ^^^ not found in this scope
[INFO] [stderr] ...
[INFO] [stderr] 83 | mul_newtypes!(Damping * Velocity -> Force)
[INFO] [stderr]    | ------------------------------------------ in this macro invocation
[INFO] [stderr]    |
[INFO] [stderr]    = note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
[INFO] [stderr] help: possible candidate is found in another module, you can import it into scope
[INFO] [stderr]    |
[INFO] [stderr] 2  | use std::ops::Mul;
[INFO] [stderr]    |
[INFO] [stderr] 
[INFO] [stderr] error[E0405]: cannot find trait `Div` in this scope
[INFO] [stderr]   --> src/units.rs:86:6
[INFO] [stderr]    |
[INFO] [stderr] 86 | impl Div<Mass, Accel> for Force {
[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] 2  | use std::ops::Div;
[INFO] [stderr]    |
[INFO] [stderr] 
[INFO] [stderr] error[E0405]: cannot find trait `Add` in this scope
[INFO] [stderr]  --> src/runge_kutta.rs:3:18
[INFO] [stderr]   |
[INFO] [stderr] 3 | pub trait State: Add<Self, Self> + Mul<f64, Self> {
[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::ops::Add;
[INFO] [stderr]   |
[INFO] [stderr] 
[INFO] [stderr] error[E0405]: cannot find trait `Mul` in this scope
[INFO] [stderr]  --> src/runge_kutta.rs:3:36
[INFO] [stderr]   |
[INFO] [stderr] 3 | pub trait State: Add<Self, Self> + Mul<f64, Self> {
[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::ops::Mul;
[INFO] [stderr]   |
[INFO] [stderr] 
[INFO] [stderr] error: aborting due to 46 previous errors
[INFO] [stderr] 
[INFO] [stderr] Some errors have detailed explanations: E0405, E0412, E0425.
[INFO] [stderr] For more information about an error, try `rustc --explain E0405`.
[INFO] [stderr] error: could not compile `resonance`.
[INFO] [stderr] 
[INFO] [stderr] To learn more, run the command again with --verbose.
[INFO] running `"docker" "inspect" "6fa07c3ac59fbe5a4a9ea34833102a526c4998faf4b1ab2063816bed147a4574"`
[INFO] running `"docker" "rm" "-f" "6fa07c3ac59fbe5a4a9ea34833102a526c4998faf4b1ab2063816bed147a4574"`
[INFO] [stdout] 6fa07c3ac59fbe5a4a9ea34833102a526c4998faf4b1ab2063816bed147a4574
