[INFO] fetching crate rust-leb128 0.1.0... [INFO] testing rust-leb128-0.1.0 against 1.90.0 for beta-1.91-3 [INFO] extracting crate rust-leb128 0.1.0 into /workspace/builds/worker-5-tc1/source [INFO] started tweaking crates.io crate rust-leb128 0.1.0 [INFO] finished tweaking crates.io crate rust-leb128 0.1.0 [INFO] tweaked toml for crates.io crate rust-leb128 0.1.0 written to /workspace/builds/worker-5-tc1/source/Cargo.toml [INFO] validating manifest of crates.io crate rust-leb128 0.1.0 on toolchain 1.90.0 [INFO] running `Command { std: CARGO_HOME="/workspace/cargo-home" RUSTUP_HOME="/workspace/rustup-home" "/workspace/cargo-home/bin/cargo" "+1.90.0" "metadata" "--manifest-path" "Cargo.toml" "--no-deps", kill_on_drop: false }` [INFO] running `Command { std: CARGO_HOME="/workspace/cargo-home" RUSTUP_HOME="/workspace/rustup-home" "/workspace/cargo-home/bin/cargo" "+1.90.0" "generate-lockfile" "--manifest-path" "Cargo.toml", kill_on_drop: false }` [INFO] [stderr] Updating crates.io index [INFO] [stderr] Locking 14 packages to latest compatible versions [INFO] [stderr] Adding rand v0.8.5 (available: v0.9.2) [INFO] running `Command { std: CARGO_HOME="/workspace/cargo-home" RUSTUP_HOME="/workspace/rustup-home" "/workspace/cargo-home/bin/cargo" "+1.90.0" "fetch" "--manifest-path" "Cargo.toml", kill_on_drop: false }` [INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-5-tc1/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-5-tc1/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" "CARGO_TARGET_DIR=/opt/rustwide/target" "-e" "CARGO_HOME=/opt/rustwide/cargo-home" "-e" "RUSTUP_HOME=/opt/rustwide/rustup-home" "-w" "/opt/rustwide/workdir" "-m" "1610612736" "--user" "0:0" "--network" "none" "ghcr.io/rust-lang/crates-build-env/linux@sha256:e90291280db7d1fac5b66fc6dad9f9662629e7365a55743daf9bdf73ebc4ea79" "/opt/rustwide/cargo-home/bin/cargo" "+1.90.0" "metadata" "--no-deps" "--format-version=1", kill_on_drop: false }` [INFO] [stdout] d3ca7879430ee6e971a628d8ff42bff9b3f21ad5066d84b1158eb16c0c51f3ba [INFO] running `Command { std: "docker" "start" "-a" "d3ca7879430ee6e971a628d8ff42bff9b3f21ad5066d84b1158eb16c0c51f3ba", kill_on_drop: false }` [INFO] running `Command { std: "docker" "inspect" "d3ca7879430ee6e971a628d8ff42bff9b3f21ad5066d84b1158eb16c0c51f3ba", kill_on_drop: false }` [INFO] running `Command { std: "docker" "rm" "-f" "d3ca7879430ee6e971a628d8ff42bff9b3f21ad5066d84b1158eb16c0c51f3ba", kill_on_drop: false }` [INFO] [stdout] d3ca7879430ee6e971a628d8ff42bff9b3f21ad5066d84b1158eb16c0c51f3ba [INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-5-tc1/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-5-tc1/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" "CARGO_TARGET_DIR=/opt/rustwide/target" "-e" "CARGO_INCREMENTAL=0" "-e" "RUST_BACKTRACE=full" "-e" "RUSTFLAGS=--cap-lints=warn" "-e" "RUSTDOCFLAGS=--cap-lints=warn" "-e" "CARGO_HOME=/opt/rustwide/cargo-home" "-e" "RUSTUP_HOME=/opt/rustwide/rustup-home" "-w" "/opt/rustwide/workdir" "-m" "1610612736" "--user" "0:0" "--network" "none" "ghcr.io/rust-lang/crates-build-env/linux@sha256:e90291280db7d1fac5b66fc6dad9f9662629e7365a55743daf9bdf73ebc4ea79" "/opt/rustwide/cargo-home/bin/cargo" "+1.90.0" "build" "--frozen" "--message-format=json", kill_on_drop: false }` [INFO] [stdout] 42cf88c9dacd04e0e07a0b4732ce296e3aec84db8631f3d253e5b1c54085c2c8 [INFO] running `Command { std: "docker" "start" "-a" "42cf88c9dacd04e0e07a0b4732ce296e3aec84db8631f3d253e5b1c54085c2c8", kill_on_drop: false }` [INFO] [stderr] Compiling rust-leb128 v0.1.0 (/opt/rustwide/workdir) [INFO] [stdout] warning: unnecessary qualification [INFO] [stdout] --> src/seq.rs:161:15 [INFO] [stdout] | [INFO] [stdout] 161 | const_assert!(mem::size_of::() == mem::size_of::<::Alias>(),); [INFO] [stdout] | ^^^^^^^^^^^^^^^^^^^^^ [INFO] [stdout] | [INFO] [stdout] note: the lint level is defined here [INFO] [stdout] --> src/lib.rs:27:5 [INFO] [stdout] | [INFO] [stdout] 27 | unused_qualifications [INFO] [stdout] | ^^^^^^^^^^^^^^^^^^^^^ [INFO] [stdout] help: remove the unnecessary path segments [INFO] [stdout] | [INFO] [stdout] 161 - const_assert!(mem::size_of::() == mem::size_of::<::Alias>(),); [INFO] [stdout] 161 + const_assert!(size_of::() == mem::size_of::<::Alias>(),); [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unnecessary qualification [INFO] [stdout] --> src/seq.rs:161:42 [INFO] [stdout] | [INFO] [stdout] 161 | const_assert!(mem::size_of::() == mem::size_of::<::Alias>(),); [INFO] [stdout] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stdout] | [INFO] [stdout] help: remove the unnecessary path segments [INFO] [stdout] | [INFO] [stdout] 161 - const_assert!(mem::size_of::() == mem::size_of::<::Alias>(),); [INFO] [stdout] 161 + const_assert!(mem::size_of::() == size_of::<::Alias>(),); [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unnecessary qualification [INFO] [stdout] --> src/seq.rs:162:15 [INFO] [stdout] | [INFO] [stdout] 162 | const_assert!(mem::size_of::() == mem::size_of::<::Alias>(),); [INFO] [stdout] | ^^^^^^^^^^^^^^^^^^^^^ [INFO] [stdout] | [INFO] [stdout] help: remove the unnecessary path segments [INFO] [stdout] | [INFO] [stdout] 162 - const_assert!(mem::size_of::() == mem::size_of::<::Alias>(),); [INFO] [stdout] 162 + const_assert!(size_of::() == mem::size_of::<::Alias>(),); [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unnecessary qualification [INFO] [stdout] --> src/seq.rs:162:42 [INFO] [stdout] | [INFO] [stdout] 162 | const_assert!(mem::size_of::() == mem::size_of::<::Alias>(),); [INFO] [stdout] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stdout] | [INFO] [stdout] help: remove the unnecessary path segments [INFO] [stdout] | [INFO] [stdout] 162 - const_assert!(mem::size_of::() == mem::size_of::<::Alias>(),); [INFO] [stdout] 162 + const_assert!(mem::size_of::() == size_of::<::Alias>(),); [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stderr] Finished `dev` profile [unoptimized + debuginfo] target(s) in 0.83s [INFO] running `Command { std: "docker" "inspect" "42cf88c9dacd04e0e07a0b4732ce296e3aec84db8631f3d253e5b1c54085c2c8", kill_on_drop: false }` [INFO] running `Command { std: "docker" "rm" "-f" "42cf88c9dacd04e0e07a0b4732ce296e3aec84db8631f3d253e5b1c54085c2c8", kill_on_drop: false }` [INFO] [stdout] 42cf88c9dacd04e0e07a0b4732ce296e3aec84db8631f3d253e5b1c54085c2c8 [INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-5-tc1/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-5-tc1/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" "CARGO_TARGET_DIR=/opt/rustwide/target" "-e" "CARGO_INCREMENTAL=0" "-e" "RUST_BACKTRACE=full" "-e" "RUSTFLAGS=--cap-lints=warn" "-e" "RUSTDOCFLAGS=--cap-lints=warn" "-e" "CARGO_HOME=/opt/rustwide/cargo-home" "-e" "RUSTUP_HOME=/opt/rustwide/rustup-home" "-w" "/opt/rustwide/workdir" "-m" "1610612736" "--user" "0:0" "--network" "none" "ghcr.io/rust-lang/crates-build-env/linux@sha256:e90291280db7d1fac5b66fc6dad9f9662629e7365a55743daf9bdf73ebc4ea79" "/opt/rustwide/cargo-home/bin/cargo" "+1.90.0" "test" "--frozen" "--no-run" "--message-format=json", kill_on_drop: false }` [INFO] [stdout] 5266c58c08ab3a27c029991360c4e4a883deda96ed13b590c1cc5c4821a244ea [INFO] running `Command { std: "docker" "start" "-a" "5266c58c08ab3a27c029991360c4e4a883deda96ed13b590c1cc5c4821a244ea", kill_on_drop: false }` [INFO] [stderr] Compiling getrandom v0.2.16 [INFO] [stdout] warning: unnecessary qualification [INFO] [stdout] --> src/seq.rs:161:15 [INFO] [stdout] | [INFO] [stdout] 161 | const_assert!(mem::size_of::() == mem::size_of::<::Alias>(),); [INFO] [stdout] | ^^^^^^^^^^^^^^^^^^^^^ [INFO] [stdout] | [INFO] [stdout] note: the lint level is defined here [INFO] [stdout] --> src/lib.rs:27:5 [INFO] [stdout] | [INFO] [stdout] 27 | unused_qualifications [INFO] [stdout] | ^^^^^^^^^^^^^^^^^^^^^ [INFO] [stdout] help: remove the unnecessary path segments [INFO] [stdout] | [INFO] [stdout] 161 - const_assert!(mem::size_of::() == mem::size_of::<::Alias>(),); [INFO] [stdout] 161 + const_assert!(size_of::() == mem::size_of::<::Alias>(),); [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unnecessary qualification [INFO] [stdout] --> src/seq.rs:161:42 [INFO] [stdout] | [INFO] [stdout] 161 | const_assert!(mem::size_of::() == mem::size_of::<::Alias>(),); [INFO] [stdout] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stdout] | [INFO] [stdout] help: remove the unnecessary path segments [INFO] [stdout] | [INFO] [stdout] 161 - const_assert!(mem::size_of::() == mem::size_of::<::Alias>(),); [INFO] [stdout] 161 + const_assert!(mem::size_of::() == size_of::<::Alias>(),); [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unnecessary qualification [INFO] [stdout] --> src/seq.rs:162:15 [INFO] [stdout] | [INFO] [stdout] 162 | const_assert!(mem::size_of::() == mem::size_of::<::Alias>(),); [INFO] [stdout] | ^^^^^^^^^^^^^^^^^^^^^ [INFO] [stdout] | [INFO] [stdout] help: remove the unnecessary path segments [INFO] [stdout] | [INFO] [stdout] 162 - const_assert!(mem::size_of::() == mem::size_of::<::Alias>(),); [INFO] [stdout] 162 + const_assert!(size_of::() == mem::size_of::<::Alias>(),); [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unnecessary qualification [INFO] [stdout] --> src/seq.rs:162:42 [INFO] [stdout] | [INFO] [stdout] 162 | const_assert!(mem::size_of::() == mem::size_of::<::Alias>(),); [INFO] [stdout] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stdout] | [INFO] [stdout] help: remove the unnecessary path segments [INFO] [stdout] | [INFO] [stdout] 162 - const_assert!(mem::size_of::() == mem::size_of::<::Alias>(),); [INFO] [stdout] 162 + const_assert!(mem::size_of::() == size_of::<::Alias>(),); [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stderr] Compiling rand_core v0.6.4 [INFO] [stderr] Compiling rand_chacha v0.3.1 [INFO] [stderr] Compiling rand v0.8.5 [INFO] [stderr] Compiling rust-leb128 v0.1.0 (/opt/rustwide/workdir) [INFO] [stdout] warning: unnecessary qualification [INFO] [stdout] --> src/seq.rs:161:15 [INFO] [stdout] | [INFO] [stdout] 161 | const_assert!(mem::size_of::() == mem::size_of::<::Alias>(),); [INFO] [stdout] | ^^^^^^^^^^^^^^^^^^^^^ [INFO] [stdout] | [INFO] [stdout] note: the lint level is defined here [INFO] [stdout] --> src/lib.rs:27:5 [INFO] [stdout] | [INFO] [stdout] 27 | unused_qualifications [INFO] [stdout] | ^^^^^^^^^^^^^^^^^^^^^ [INFO] [stdout] help: remove the unnecessary path segments [INFO] [stdout] | [INFO] [stdout] 161 - const_assert!(mem::size_of::() == mem::size_of::<::Alias>(),); [INFO] [stdout] 161 + const_assert!(size_of::() == mem::size_of::<::Alias>(),); [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unnecessary qualification [INFO] [stdout] --> src/seq.rs:161:42 [INFO] [stdout] | [INFO] [stdout] 161 | const_assert!(mem::size_of::() == mem::size_of::<::Alias>(),); [INFO] [stdout] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stdout] | [INFO] [stdout] help: remove the unnecessary path segments [INFO] [stdout] | [INFO] [stdout] 161 - const_assert!(mem::size_of::() == mem::size_of::<::Alias>(),); [INFO] [stdout] 161 + const_assert!(mem::size_of::() == size_of::<::Alias>(),); [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unnecessary qualification [INFO] [stdout] --> src/seq.rs:162:15 [INFO] [stdout] | [INFO] [stdout] 162 | const_assert!(mem::size_of::() == mem::size_of::<::Alias>(),); [INFO] [stdout] | ^^^^^^^^^^^^^^^^^^^^^ [INFO] [stdout] | [INFO] [stdout] help: remove the unnecessary path segments [INFO] [stdout] | [INFO] [stdout] 162 - const_assert!(mem::size_of::() == mem::size_of::<::Alias>(),); [INFO] [stdout] 162 + const_assert!(size_of::() == mem::size_of::<::Alias>(),); [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unnecessary qualification [INFO] [stdout] --> src/seq.rs:162:42 [INFO] [stdout] | [INFO] [stdout] 162 | const_assert!(mem::size_of::() == mem::size_of::<::Alias>(),); [INFO] [stdout] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stdout] | [INFO] [stdout] help: remove the unnecessary path segments [INFO] [stdout] | [INFO] [stdout] 162 - const_assert!(mem::size_of::() == mem::size_of::<::Alias>(),); [INFO] [stdout] 162 + const_assert!(mem::size_of::() == size_of::<::Alias>(),); [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error[E0599]: no method named `encoded_len` found for struct `Vec` in the current scope [INFO] [stdout] --> src/seq.rs:240:32 [INFO] [stdout] | [INFO] [stdout] 240 | let got = data.encoded_len(); [INFO] [stdout] | ^^^^^^^^^^^ method not found in `Vec` [INFO] [stdout] ... [INFO] [stdout] 246 | test_encoded_len!(test_encoded_len_usize, usize); [INFO] [stdout] | ------------------------------------------------ in this macro invocation [INFO] [stdout] | [INFO] [stdout] = help: items from traits can only be used if the trait is implemented and in scope [INFO] [stdout] = note: the following traits define an item `encoded_len`, perhaps you need to implement one of them: [INFO] [stdout] candidate #1: `int::Varint` [INFO] [stdout] candidate #2: `seq::Seq` [INFO] [stdout] = note: this error originates in the macro `test_encoded_len` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error[E0599]: no method named `encoded_len` found for struct `Vec` in the current scope [INFO] [stdout] --> src/seq.rs:240:32 [INFO] [stdout] | [INFO] [stdout] 240 | let got = data.encoded_len(); [INFO] [stdout] | ^^^^^^^^^^^ method not found in `Vec` [INFO] [stdout] ... [INFO] [stdout] 247 | test_encoded_len!(test_encoded_len_isize, isize); [INFO] [stdout] | ------------------------------------------------ in this macro invocation [INFO] [stdout] | [INFO] [stdout] = help: items from traits can only be used if the trait is implemented and in scope [INFO] [stdout] = note: the following traits define an item `encoded_len`, perhaps you need to implement one of them: [INFO] [stdout] candidate #1: `int::Varint` [INFO] [stdout] candidate #2: `seq::Seq` [INFO] [stdout] = note: this error originates in the macro `test_encoded_len` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error[E0599]: no method named `encoded_len` found for struct `Vec` in the current scope [INFO] [stdout] --> src/seq.rs:240:32 [INFO] [stdout] | [INFO] [stdout] 240 | let got = data.encoded_len(); [INFO] [stdout] | ^^^^^^^^^^^ method not found in `Vec` [INFO] [stdout] ... [INFO] [stdout] 248 | test_encoded_len!(test_encoded_len_u64, u64); [INFO] [stdout] | -------------------------------------------- in this macro invocation [INFO] [stdout] | [INFO] [stdout] = help: items from traits can only be used if the trait is implemented and in scope [INFO] [stdout] = note: the following traits define an item `encoded_len`, perhaps you need to implement one of them: [INFO] [stdout] candidate #1: `int::Varint` [INFO] [stdout] candidate #2: `seq::Seq` [INFO] [stdout] = note: this error originates in the macro `test_encoded_len` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error[E0599]: no method named `encoded_len` found for struct `Vec` in the current scope [INFO] [stdout] --> src/seq.rs:240:32 [INFO] [stdout] | [INFO] [stdout] 240 | let got = data.encoded_len(); [INFO] [stdout] | ^^^^^^^^^^^ method not found in `Vec` [INFO] [stdout] ... [INFO] [stdout] 249 | test_encoded_len!(test_encoded_len_i64, i64); [INFO] [stdout] | -------------------------------------------- in this macro invocation [INFO] [stdout] | [INFO] [stdout] = help: items from traits can only be used if the trait is implemented and in scope [INFO] [stdout] = note: the following traits define an item `encoded_len`, perhaps you need to implement one of them: [INFO] [stdout] candidate #1: `int::Varint` [INFO] [stdout] candidate #2: `seq::Seq` [INFO] [stdout] = note: this error originates in the macro `test_encoded_len` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error[E0599]: no method named `encoded_len` found for struct `Vec` in the current scope [INFO] [stdout] --> src/seq.rs:240:32 [INFO] [stdout] | [INFO] [stdout] 240 | let got = data.encoded_len(); [INFO] [stdout] | ^^^^^^^^^^^ method not found in `Vec` [INFO] [stdout] ... [INFO] [stdout] 250 | test_encoded_len!(test_encoded_len_u32, u32); [INFO] [stdout] | -------------------------------------------- in this macro invocation [INFO] [stdout] | [INFO] [stdout] = help: items from traits can only be used if the trait is implemented and in scope [INFO] [stdout] = note: the following traits define an item `encoded_len`, perhaps you need to implement one of them: [INFO] [stdout] candidate #1: `int::Varint` [INFO] [stdout] candidate #2: `seq::Seq` [INFO] [stdout] = note: this error originates in the macro `test_encoded_len` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error[E0599]: no method named `encoded_len` found for struct `Vec` in the current scope [INFO] [stdout] --> src/seq.rs:240:32 [INFO] [stdout] | [INFO] [stdout] 240 | let got = data.encoded_len(); [INFO] [stdout] | ^^^^^^^^^^^ method not found in `Vec` [INFO] [stdout] ... [INFO] [stdout] 251 | test_encoded_len!(test_encoded_len_i32, i32); [INFO] [stdout] | -------------------------------------------- in this macro invocation [INFO] [stdout] | [INFO] [stdout] = help: items from traits can only be used if the trait is implemented and in scope [INFO] [stdout] = note: the following traits define an item `encoded_len`, perhaps you need to implement one of them: [INFO] [stdout] candidate #1: `int::Varint` [INFO] [stdout] candidate #2: `seq::Seq` [INFO] [stdout] = note: this error originates in the macro `test_encoded_len` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error[E0599]: no method named `encoded_len` found for struct `Vec` in the current scope [INFO] [stdout] --> src/seq.rs:240:32 [INFO] [stdout] | [INFO] [stdout] 240 | let got = data.encoded_len(); [INFO] [stdout] | ^^^^^^^^^^^ method not found in `Vec` [INFO] [stdout] ... [INFO] [stdout] 252 | test_encoded_len!(test_encoded_len_u16, u16); [INFO] [stdout] | -------------------------------------------- in this macro invocation [INFO] [stdout] | [INFO] [stdout] = help: items from traits can only be used if the trait is implemented and in scope [INFO] [stdout] = note: the following traits define an item `encoded_len`, perhaps you need to implement one of them: [INFO] [stdout] candidate #1: `int::Varint` [INFO] [stdout] candidate #2: `seq::Seq` [INFO] [stdout] = note: this error originates in the macro `test_encoded_len` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error[E0599]: no method named `encoded_len` found for struct `Vec` in the current scope [INFO] [stdout] --> src/seq.rs:240:32 [INFO] [stdout] | [INFO] [stdout] 240 | let got = data.encoded_len(); [INFO] [stdout] | ^^^^^^^^^^^ method not found in `Vec` [INFO] [stdout] ... [INFO] [stdout] 253 | test_encoded_len!(test_encoded_len_i16, i16); [INFO] [stdout] | -------------------------------------------- in this macro invocation [INFO] [stdout] | [INFO] [stdout] = help: items from traits can only be used if the trait is implemented and in scope [INFO] [stdout] = note: the following traits define an item `encoded_len`, perhaps you need to implement one of them: [INFO] [stdout] candidate #1: `int::Varint` [INFO] [stdout] candidate #2: `seq::Seq` [INFO] [stdout] = note: this error originates in the macro `test_encoded_len` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error[E0599]: no method named `encoded_len` found for struct `Vec` in the current scope [INFO] [stdout] --> src/seq.rs:240:32 [INFO] [stdout] | [INFO] [stdout] 240 | let got = data.encoded_len(); [INFO] [stdout] | ^^^^^^^^^^^ method not found in `Vec` [INFO] [stdout] ... [INFO] [stdout] 254 | test_encoded_len!(test_encoded_len_u8, u8); [INFO] [stdout] | ------------------------------------------ in this macro invocation [INFO] [stdout] | [INFO] [stdout] = help: items from traits can only be used if the trait is implemented and in scope [INFO] [stdout] = note: the following traits define an item `encoded_len`, perhaps you need to implement one of them: [INFO] [stdout] candidate #1: `int::Varint` [INFO] [stdout] candidate #2: `seq::Seq` [INFO] [stdout] = note: this error originates in the macro `test_encoded_len` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error[E0599]: no method named `encoded_len` found for struct `Vec` in the current scope [INFO] [stdout] --> src/seq.rs:240:32 [INFO] [stdout] | [INFO] [stdout] 240 | let got = data.encoded_len(); [INFO] [stdout] | ^^^^^^^^^^^ method not found in `Vec` [INFO] [stdout] ... [INFO] [stdout] 255 | test_encoded_len!(test_encoded_len_i8, i8); [INFO] [stdout] | ------------------------------------------ in this macro invocation [INFO] [stdout] | [INFO] [stdout] = help: items from traits can only be used if the trait is implemented and in scope [INFO] [stdout] = note: the following traits define an item `encoded_len`, perhaps you need to implement one of them: [INFO] [stdout] candidate #1: `int::Varint` [INFO] [stdout] candidate #2: `seq::Seq` [INFO] [stdout] = note: this error originates in the macro `test_encoded_len` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] For more information about this error, try `rustc --explain E0599`. [INFO] [stdout] [INFO] [stderr] error: could not compile `rust-leb128` (lib test) due to 10 previous errors; 4 warnings emitted [INFO] running `Command { std: "docker" "inspect" "5266c58c08ab3a27c029991360c4e4a883deda96ed13b590c1cc5c4821a244ea", kill_on_drop: false }` [INFO] running `Command { std: "docker" "rm" "-f" "5266c58c08ab3a27c029991360c4e4a883deda96ed13b590c1cc5c4821a244ea", kill_on_drop: false }` [INFO] [stdout] 5266c58c08ab3a27c029991360c4e4a883deda96ed13b590c1cc5c4821a244ea