[INFO] crate cmd_wrk_macros 0.0.1 is already in cache [INFO] checking cmd_wrk_macros-0.0.1 against try#1a608893c03d7722effeb0058e82770bd36b4b3c for pr-66504-1 [INFO] extracting crate cmd_wrk_macros 0.0.1 into /workspace/builds/worker-6/source [INFO] validating manifest of crates.io crate cmd_wrk_macros 0.0.1 on toolchain 1a608893c03d7722effeb0058e82770bd36b4b3c [INFO] running `"/workspace/cargo-home/bin/cargo" "+1a608893c03d7722effeb0058e82770bd36b4b3c" "read-manifest" "--manifest-path" "Cargo.toml"` [INFO] started tweaking crates.io crate cmd_wrk_macros 0.0.1 [INFO] finished tweaking crates.io crate cmd_wrk_macros 0.0.1 [INFO] tweaked toml for crates.io crate cmd_wrk_macros 0.0.1 written to /workspace/builds/worker-6/source/Cargo.toml [INFO] running `"/workspace/cargo-home/bin/cargo" "+1a608893c03d7722effeb0058e82770bd36b4b3c" "generate-lockfile" "--manifest-path" "Cargo.toml" "-Zno-index-update"` [INFO] running `"/workspace/cargo-home/bin/cargo" "+1a608893c03d7722effeb0058e82770bd36b4b3c" "fetch" "--locked" "--manifest-path" "Cargo.toml"` [INFO] running `"docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-6/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-6/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" "+1a608893c03d7722effeb0058e82770bd36b4b3c" "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] 8f0d5b60e3f7f203692f8c328407bedeaa5958abb9236a1f00cc5aa109205acc [INFO] running `"docker" "start" "-a" "8f0d5b60e3f7f203692f8c328407bedeaa5958abb9236a1f00cc5aa109205acc"` [INFO] [stderr] Compiling proc-macro2 v1.0.6 [INFO] [stderr] Checking quote v1.0.2 [INFO] [stderr] Checking syn v1.0.11 [INFO] [stderr] Checking cmd_wrk_macros v0.0.1 (/opt/rustwide/workdir) [INFO] [stderr] error: `proc-macro` crate types currently cannot export any items other than functions tagged with `#[proc_macro]`, `#[proc_macro_derive]`, or `#[proc_macro_attribute]` [INFO] [stderr] --> src/lib.rs:15:1 [INFO] [stderr] | [INFO] [stderr] 15 | / pub fn cli(args: TokenStream, input: TokenStream) -> TokenStream { [INFO] [stderr] 16 | | let tree: ItemMod = parse_macro_input!(input as ItemMod); [INFO] [stderr] 17 | | [INFO] [stderr] 18 | | let mut ident_stack = Vec::new(); [INFO] [stderr] 19 | | [INFO] [stderr] 20 | | let cmds = parse_group(tree, &mut ident_stack); [INFO] [stderr] 21 | | } [INFO] [stderr] | |_^ [INFO] [stderr] [INFO] [stderr] error[E0432]: unresolved import `proc_macro` [INFO] [stderr] --> src/lib.rs:1:5 [INFO] [stderr] | [INFO] [stderr] 1 | use proc_macro::{TokenStream}; [INFO] [stderr] | ^^^^^^^^^^ help: a similar path exists: `syn::proc_macro` [INFO] [stderr] [INFO] [stderr] error[E0432]: unresolved import `proc_macro` [INFO] [stderr] --> src/lib.rs:1:5 [INFO] [stderr] | [INFO] [stderr] 1 | use proc_macro::{TokenStream}; [INFO] [stderr] | ^^^^^^^^^^ help: a similar path exists: `syn::proc_macro` [INFO] [stderr] [INFO] [stderr] warning: unused import: `PatIdent` [INFO] [stderr] --> src/lib.rs:2:85 [INFO] [stderr] | [INFO] [stderr] 2 | use syn::{parse_macro_input, Ident, Item, FnArg, Type, ItemFn, Visibility, PatType, PatIdent}; [INFO] [stderr] | ^^^^^^^^ [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(unused_imports)]` on by default [INFO] [stderr] [INFO] [stderr] warning: unused import: `syn::token::Token` [INFO] [stderr] --> src/lib.rs:3:5 [INFO] [stderr] | [INFO] [stderr] 3 | use syn::token::Token; [INFO] [stderr] | ^^^^^^^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: unused import: `PatIdent` [INFO] [stderr] --> src/lib.rs:2:85 [INFO] [stderr] | [INFO] [stderr] 2 | use syn::{parse_macro_input, Ident, Item, FnArg, Type, ItemFn, Visibility, PatType, PatIdent}; [INFO] [stderr] | ^^^^^^^^ [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(unused_imports)]` on by default [INFO] [stderr] [INFO] [stderr] warning: unused imports: `ParseBuffer`, `ParseStream`, `Parse` [INFO] [stderr] --> src/lib.rs:6:18 [INFO] [stderr] | [INFO] [stderr] 6 | use syn::parse::{Parse, ParseBuffer, ParseStream}; [INFO] [stderr] | ^^^^^ ^^^^^^^^^^^ ^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: unused imports: `TryFrom`, `TryInto` [INFO] [stderr] --> src/lib.rs:7:20 [INFO] [stderr] | [INFO] [stderr] 7 | use std::convert::{TryFrom, TryInto}; [INFO] [stderr] | ^^^^^^^ ^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: unused import: `std::borrow::Borrow` [INFO] [stderr] --> src/lib.rs:8:5 [INFO] [stderr] | [INFO] [stderr] 8 | use std::borrow::Borrow; [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: unused import: `syn::token::Token` [INFO] [stderr] --> src/lib.rs:3:5 [INFO] [stderr] | [INFO] [stderr] 3 | use syn::token::Token; [INFO] [stderr] | ^^^^^^^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: unused imports: `ParseBuffer`, `ParseStream`, `Parse` [INFO] [stderr] --> src/lib.rs:6:18 [INFO] [stderr] | [INFO] [stderr] 6 | use syn::parse::{Parse, ParseBuffer, ParseStream}; [INFO] [stderr] | ^^^^^ ^^^^^^^^^^^ ^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] error[E0658]: `match` is not allowed in a `static` [INFO] [stderr] --> src/lib.rs:12:30 [INFO] [stderr] | [INFO] [stderr] 12 | static INJECT_IDENT: Ident = format_ident!("inject"); [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] | [INFO] [stderr] = note: for more information, see https://github.com/rust-lang/rust/issues/49146 [INFO] [stderr] = help: add `#![feature(const_if_match)]` to the crate attributes to enable [INFO] [stderr] = note: this error originates in a macro outside of the current crate (in Nightly builds, run with -Z external-macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] error[E0658]: `match` is not allowed in a `static` [INFO] [stderr] --> src/lib.rs:13:28 [INFO] [stderr] | [INFO] [stderr] 13 | static NAME_IDENT: Ident = format_ident!("name"); [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] | [INFO] [stderr] = note: for more information, see https://github.com/rust-lang/rust/issues/49146 [INFO] [stderr] = help: add `#![feature(const_if_match)]` to the crate attributes to enable [INFO] [stderr] = note: this error originates in a macro outside of the current crate (in Nightly builds, run with -Z external-macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] warning: unused imports: `TryFrom`, `TryInto` [INFO] [stderr] --> src/lib.rs:7:20 [INFO] [stderr] | [INFO] [stderr] 7 | use std::convert::{TryFrom, TryInto}; [INFO] [stderr] | ^^^^^^^ ^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: unused import: `std::borrow::Borrow` [INFO] [stderr] --> src/lib.rs:8:5 [INFO] [stderr] | [INFO] [stderr] 8 | use std::borrow::Borrow; [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] error[E0658]: `match` is not allowed in a `static` [INFO] [stderr] --> src/lib.rs:12:30 [INFO] [stderr] | [INFO] [stderr] 12 | static INJECT_IDENT: Ident = format_ident!("inject"); [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] | [INFO] [stderr] = note: for more information, see https://github.com/rust-lang/rust/issues/49146 [INFO] [stderr] = help: add `#![feature(const_if_match)]` to the crate attributes to enable [INFO] [stderr] = note: this error originates in a macro outside of the current crate (in Nightly builds, run with -Z external-macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] error[E0658]: `match` is not allowed in a `static` [INFO] [stderr] --> src/lib.rs:13:28 [INFO] [stderr] | [INFO] [stderr] 13 | static NAME_IDENT: Ident = format_ident!("name"); [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] | [INFO] [stderr] = note: for more information, see https://github.com/rust-lang/rust/issues/49146 [INFO] [stderr] = help: add `#![feature(const_if_match)]` to the crate attributes to enable [INFO] [stderr] = note: this error originates in a macro outside of the current crate (in Nightly builds, run with -Z external-macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] error[E0599]: no method named `as_ref` found for type `&proc_macro2::Ident` in the current scope [INFO] [stderr] --> src/lib.rs:35:34 [INFO] [stderr] | [INFO] [stderr] 35 | s.push_str(i.as_ref()); s [INFO] [stderr] | ^^^^^^ method not found in `&proc_macro2::Ident` [INFO] [stderr] | [INFO] [stderr] = note: the method `as_ref` exists but the following trait bounds were not satisfied: [INFO] [stderr] `&proc_macro2::Ident : std::convert::AsRef<_>` [INFO] [stderr] [INFO] [stderr] error[E0277]: the trait bound `proc_macro2::TokenStream: quote::ident_fragment::IdentFragment` is not satisfied [INFO] [stderr] --> src/lib.rs:96:41 [INFO] [stderr] | [INFO] [stderr] 96 | ... name = Some(format_ident!("{}", attr.tokens)); [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `quote::ident_fragment::IdentFragment` is not implemented for `proc_macro2::TokenStream` [INFO] [stderr] | [INFO] [stderr] = note: required because of the requirements on the impl of `quote::ident_fragment::IdentFragment` for `&proc_macro2::TokenStream` [INFO] [stderr] = note: required by `quote::__rt::IdentFragmentAdapter` [INFO] [stderr] = note: this error originates in a macro outside of the current crate (in Nightly builds, run with -Z external-macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] error[E0277]: the trait bound `proc_macro2::TokenStream: quote::ident_fragment::IdentFragment` is not satisfied [INFO] [stderr] --> src/lib.rs:96:41 [INFO] [stderr] | [INFO] [stderr] 96 | ... name = Some(format_ident!("{}", attr.tokens)); [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `quote::ident_fragment::IdentFragment` is not implemented for `proc_macro2::TokenStream` [INFO] [stderr] | [INFO] [stderr] = note: required because of the requirements on the impl of `quote::ident_fragment::IdentFragment` for `&proc_macro2::TokenStream` [INFO] [stderr] = note: required by `quote::__rt::IdentFragmentAdapter` [INFO] [stderr] = note: this error originates in a macro outside of the current crate (in Nightly builds, run with -Z external-macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] error[E0277]: the trait bound `proc_macro2::TokenStream: quote::ident_fragment::IdentFragment` is not satisfied [INFO] [stderr] --> src/lib.rs:96:41 [INFO] [stderr] | [INFO] [stderr] 96 | ... name = Some(format_ident!("{}", attr.tokens)); [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `quote::ident_fragment::IdentFragment` is not implemented for `proc_macro2::TokenStream` [INFO] [stderr] | [INFO] [stderr] = note: required because of the requirements on the impl of `quote::ident_fragment::IdentFragment` for `&proc_macro2::TokenStream` [INFO] [stderr] = note: required by `quote::__rt::IdentFragmentAdapter` [INFO] [stderr] = note: this error originates in a macro outside of the current crate (in Nightly builds, run with -Z external-macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] error[E0277]: the trait bound `proc_macro2::TokenStream: quote::ident_fragment::IdentFragment` is not satisfied [INFO] [stderr] --> src/lib.rs:96:41 [INFO] [stderr] | [INFO] [stderr] 96 | ... name = Some(format_ident!("{}", attr.tokens)); [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `quote::ident_fragment::IdentFragment` is not implemented for `proc_macro2::TokenStream` [INFO] [stderr] | [INFO] [stderr] = note: required because of the requirements on the impl of `quote::ident_fragment::IdentFragment` for `&proc_macro2::TokenStream` [INFO] [stderr] = note: required because of the requirements on the impl of `std::fmt::Display` for `quote::__rt::IdentFragmentAdapter<&proc_macro2::TokenStream>` [INFO] [stderr] = note: required by `std::fmt::Display::fmt` [INFO] [stderr] = note: this error originates in a macro outside of the current crate (in Nightly builds, run with -Z external-macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] error[E0599]: no method named `span` found for type `quote::__rt::IdentFragmentAdapter<&proc_macro2::TokenStream>` in the current scope [INFO] [stderr] --> src/lib.rs:96:41 [INFO] [stderr] | [INFO] [stderr] 96 | ... name = Some(format_ident!("{}", attr.tokens)); [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ method not found in `quote::__rt::IdentFragmentAdapter<&proc_macro2::TokenStream>` [INFO] [stderr] | [INFO] [stderr] = note: the method `span` exists but the following trait bounds were not satisfied: [INFO] [stderr] `&proc_macro2::TokenStream : quote::ident_fragment::IdentFragment` [INFO] [stderr] = note: this error originates in a macro outside of the current crate (in Nightly builds, run with -Z external-macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] error[E0308]: mismatched types [INFO] [stderr] --> src/lib.rs:108:34 [INFO] [stderr] | [INFO] [stderr] 108 | ... Some(id) [INFO] [stderr] | ^^ expected struct `proc_macro2::Ident`, found struct `syn::pat::PatIdent` [INFO] [stderr] [INFO] [stderr] error[E0277]: the trait bound `std::boxed::Box: quote::ident_fragment::IdentFragment` is not satisfied [INFO] [stderr] --> src/lib.rs:110:34 [INFO] [stderr] | [INFO] [stderr] 110 | ... Some(format_ident!("_{}_{}", i, p.ty)) [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `quote::ident_fragment::IdentFragment` is not implemented for `std::boxed::Box` [INFO] [stderr] | [INFO] [stderr] = note: required because of the requirements on the impl of `quote::ident_fragment::IdentFragment` for `&std::boxed::Box` [INFO] [stderr] = note: required by `quote::__rt::IdentFragmentAdapter` [INFO] [stderr] = note: this error originates in a macro outside of the current crate (in Nightly builds, run with -Z external-macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] error[E0277]: the trait bound `std::boxed::Box: quote::ident_fragment::IdentFragment` is not satisfied [INFO] [stderr] --> src/lib.rs:110:34 [INFO] [stderr] | [INFO] [stderr] 110 | ... Some(format_ident!("_{}_{}", i, p.ty)) [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `quote::ident_fragment::IdentFragment` is not implemented for `std::boxed::Box` [INFO] [stderr] | [INFO] [stderr] = note: required because of the requirements on the impl of `quote::ident_fragment::IdentFragment` for `&std::boxed::Box` [INFO] [stderr] = note: required by `quote::__rt::IdentFragmentAdapter` [INFO] [stderr] = note: this error originates in a macro outside of the current crate (in Nightly builds, run with -Z external-macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] error[E0599]: no method named `as_ref` found for type `&proc_macro2::Ident` in the current scope [INFO] [stderr] --> src/lib.rs:35:34 [INFO] [stderr] | [INFO] [stderr] 35 | s.push_str(i.as_ref()); s [INFO] [stderr] | ^^^^^^ method not found in `&proc_macro2::Ident` [INFO] [stderr] | [INFO] [stderr] = note: the method `as_ref` exists but the following trait bounds were not satisfied: [INFO] [stderr] `&proc_macro2::Ident : std::convert::AsRef<_>` [INFO] [stderr] [INFO] [stderr] error[E0277]: the trait bound `std::boxed::Box: quote::ident_fragment::IdentFragment` is not satisfied [INFO] [stderr] --> src/lib.rs:110:34 [INFO] [stderr] | [INFO] [stderr] 110 | ... Some(format_ident!("_{}_{}", i, p.ty)) [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `quote::ident_fragment::IdentFragment` is not implemented for `std::boxed::Box` [INFO] [stderr] | [INFO] [stderr] = note: required because of the requirements on the impl of `quote::ident_fragment::IdentFragment` for `&std::boxed::Box` [INFO] [stderr] = note: required by `quote::__rt::IdentFragmentAdapter` [INFO] [stderr] = note: this error originates in a macro outside of the current crate (in Nightly builds, run with -Z external-macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] error[E0277]: the trait bound `std::boxed::Box: quote::ident_fragment::IdentFragment` is not satisfied [INFO] [stderr] --> src/lib.rs:110:34 [INFO] [stderr] | [INFO] [stderr] 110 | ... Some(format_ident!("_{}_{}", i, p.ty)) [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `quote::ident_fragment::IdentFragment` is not implemented for `std::boxed::Box` [INFO] [stderr] | [INFO] [stderr] = note: required because of the requirements on the impl of `quote::ident_fragment::IdentFragment` for `&std::boxed::Box` [INFO] [stderr] = note: required because of the requirements on the impl of `std::fmt::Display` for `quote::__rt::IdentFragmentAdapter<&std::boxed::Box>` [INFO] [stderr] = note: required by `std::fmt::Display::fmt` [INFO] [stderr] = note: this error originates in a macro outside of the current crate (in Nightly builds, run with -Z external-macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] error[E0277]: the trait bound `proc_macro2::TokenStream: quote::ident_fragment::IdentFragment` is not satisfied [INFO] [stderr] --> src/lib.rs:96:41 [INFO] [stderr] | [INFO] [stderr] 96 | ... name = Some(format_ident!("{}", attr.tokens)); [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `quote::ident_fragment::IdentFragment` is not implemented for `proc_macro2::TokenStream` [INFO] [stderr] | [INFO] [stderr] = note: required because of the requirements on the impl of `quote::ident_fragment::IdentFragment` for `&proc_macro2::TokenStream` [INFO] [stderr] = note: required by `quote::__rt::IdentFragmentAdapter` [INFO] [stderr] = note: this error originates in a macro outside of the current crate (in Nightly builds, run with -Z external-macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] error[E0277]: the trait bound `proc_macro2::TokenStream: quote::ident_fragment::IdentFragment` is not satisfied [INFO] [stderr] --> src/lib.rs:96:41 [INFO] [stderr] | [INFO] [stderr] 96 | ... name = Some(format_ident!("{}", attr.tokens)); [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `quote::ident_fragment::IdentFragment` is not implemented for `proc_macro2::TokenStream` [INFO] [stderr] | [INFO] [stderr] = note: required because of the requirements on the impl of `quote::ident_fragment::IdentFragment` for `&proc_macro2::TokenStream` [INFO] [stderr] = note: required by `quote::__rt::IdentFragmentAdapter` [INFO] [stderr] = note: this error originates in a macro outside of the current crate (in Nightly builds, run with -Z external-macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] error[E0599]: no method named `span` found for type `quote::__rt::IdentFragmentAdapter<&std::boxed::Box>` in the current scope [INFO] [stderr] --> src/lib.rs:110:34 [INFO] [stderr] | [INFO] [stderr] 110 | ... Some(format_ident!("_{}_{}", i, p.ty)) [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ method not found in `quote::__rt::IdentFragmentAdapter<&std::boxed::Box>` [INFO] [stderr] | [INFO] [stderr] = note: the method `span` exists but the following trait bounds were not satisfied: [INFO] [stderr] `&std::boxed::Box : quote::ident_fragment::IdentFragment` [INFO] [stderr] = note: this error originates in a macro outside of the current crate (in Nightly builds, run with -Z external-macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] error: aborting due to 15 previous errors [INFO] [stderr] [INFO] [stderr] Some errors have detailed explanations: E0277, E0308, E0432, E0599, E0658. [INFO] [stderr] For more information about an error, try `rustc --explain E0277`. [INFO] [stderr] error: could not compile `cmd_wrk_macros`. [INFO] [stderr] warning: build failed, waiting for other jobs to finish... [INFO] [stderr] error[E0277]: the trait bound `proc_macro2::TokenStream: quote::ident_fragment::IdentFragment` is not satisfied [INFO] [stderr] --> src/lib.rs:96:41 [INFO] [stderr] | [INFO] [stderr] 96 | ... name = Some(format_ident!("{}", attr.tokens)); [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `quote::ident_fragment::IdentFragment` is not implemented for `proc_macro2::TokenStream` [INFO] [stderr] | [INFO] [stderr] = note: required because of the requirements on the impl of `quote::ident_fragment::IdentFragment` for `&proc_macro2::TokenStream` [INFO] [stderr] = note: required by `quote::__rt::IdentFragmentAdapter` [INFO] [stderr] = note: this error originates in a macro outside of the current crate (in Nightly builds, run with -Z external-macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] error[E0277]: the trait bound `proc_macro2::TokenStream: quote::ident_fragment::IdentFragment` is not satisfied [INFO] [stderr] --> src/lib.rs:96:41 [INFO] [stderr] | [INFO] [stderr] 96 | ... name = Some(format_ident!("{}", attr.tokens)); [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `quote::ident_fragment::IdentFragment` is not implemented for `proc_macro2::TokenStream` [INFO] [stderr] | [INFO] [stderr] = note: required because of the requirements on the impl of `quote::ident_fragment::IdentFragment` for `&proc_macro2::TokenStream` [INFO] [stderr] = note: required because of the requirements on the impl of `std::fmt::Display` for `quote::__rt::IdentFragmentAdapter<&proc_macro2::TokenStream>` [INFO] [stderr] = note: required by `std::fmt::Display::fmt` [INFO] [stderr] = note: this error originates in a macro outside of the current crate (in Nightly builds, run with -Z external-macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] error[E0599]: no method named `span` found for type `quote::__rt::IdentFragmentAdapter<&proc_macro2::TokenStream>` in the current scope [INFO] [stderr] --> src/lib.rs:96:41 [INFO] [stderr] | [INFO] [stderr] 96 | ... name = Some(format_ident!("{}", attr.tokens)); [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ method not found in `quote::__rt::IdentFragmentAdapter<&proc_macro2::TokenStream>` [INFO] [stderr] | [INFO] [stderr] = note: the method `span` exists but the following trait bounds were not satisfied: [INFO] [stderr] `&proc_macro2::TokenStream : quote::ident_fragment::IdentFragment` [INFO] [stderr] = note: this error originates in a macro outside of the current crate (in Nightly builds, run with -Z external-macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] error[E0308]: mismatched types [INFO] [stderr] --> src/lib.rs:108:34 [INFO] [stderr] | [INFO] [stderr] 108 | ... Some(id) [INFO] [stderr] | ^^ expected struct `proc_macro2::Ident`, found struct `syn::pat::PatIdent` [INFO] [stderr] [INFO] [stderr] error[E0277]: the trait bound `std::boxed::Box: quote::ident_fragment::IdentFragment` is not satisfied [INFO] [stderr] --> src/lib.rs:110:34 [INFO] [stderr] | [INFO] [stderr] 110 | ... Some(format_ident!("_{}_{}", i, p.ty)) [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `quote::ident_fragment::IdentFragment` is not implemented for `std::boxed::Box` [INFO] [stderr] | [INFO] [stderr] = note: required because of the requirements on the impl of `quote::ident_fragment::IdentFragment` for `&std::boxed::Box` [INFO] [stderr] = note: required by `quote::__rt::IdentFragmentAdapter` [INFO] [stderr] = note: this error originates in a macro outside of the current crate (in Nightly builds, run with -Z external-macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] error[E0277]: the trait bound `std::boxed::Box: quote::ident_fragment::IdentFragment` is not satisfied [INFO] [stderr] --> src/lib.rs:110:34 [INFO] [stderr] | [INFO] [stderr] 110 | ... Some(format_ident!("_{}_{}", i, p.ty)) [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `quote::ident_fragment::IdentFragment` is not implemented for `std::boxed::Box` [INFO] [stderr] | [INFO] [stderr] = note: required because of the requirements on the impl of `quote::ident_fragment::IdentFragment` for `&std::boxed::Box` [INFO] [stderr] = note: required by `quote::__rt::IdentFragmentAdapter` [INFO] [stderr] = note: this error originates in a macro outside of the current crate (in Nightly builds, run with -Z external-macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] error[E0277]: the trait bound `std::boxed::Box: quote::ident_fragment::IdentFragment` is not satisfied [INFO] [stderr] --> src/lib.rs:110:34 [INFO] [stderr] | [INFO] [stderr] 110 | ... Some(format_ident!("_{}_{}", i, p.ty)) [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `quote::ident_fragment::IdentFragment` is not implemented for `std::boxed::Box` [INFO] [stderr] | [INFO] [stderr] = note: required because of the requirements on the impl of `quote::ident_fragment::IdentFragment` for `&std::boxed::Box` [INFO] [stderr] = note: required by `quote::__rt::IdentFragmentAdapter` [INFO] [stderr] = note: this error originates in a macro outside of the current crate (in Nightly builds, run with -Z external-macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] error[E0277]: the trait bound `std::boxed::Box: quote::ident_fragment::IdentFragment` is not satisfied [INFO] [stderr] --> src/lib.rs:110:34 [INFO] [stderr] | [INFO] [stderr] 110 | ... Some(format_ident!("_{}_{}", i, p.ty)) [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `quote::ident_fragment::IdentFragment` is not implemented for `std::boxed::Box` [INFO] [stderr] | [INFO] [stderr] = note: required because of the requirements on the impl of `quote::ident_fragment::IdentFragment` for `&std::boxed::Box` [INFO] [stderr] = note: required because of the requirements on the impl of `std::fmt::Display` for `quote::__rt::IdentFragmentAdapter<&std::boxed::Box>` [INFO] [stderr] = note: required by `std::fmt::Display::fmt` [INFO] [stderr] = note: this error originates in a macro outside of the current crate (in Nightly builds, run with -Z external-macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] error[E0599]: no method named `span` found for type `quote::__rt::IdentFragmentAdapter<&std::boxed::Box>` in the current scope [INFO] [stderr] --> src/lib.rs:110:34 [INFO] [stderr] | [INFO] [stderr] 110 | ... Some(format_ident!("_{}_{}", i, p.ty)) [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ method not found in `quote::__rt::IdentFragmentAdapter<&std::boxed::Box>` [INFO] [stderr] | [INFO] [stderr] = note: the method `span` exists but the following trait bounds were not satisfied: [INFO] [stderr] `&std::boxed::Box : quote::ident_fragment::IdentFragment` [INFO] [stderr] = note: this error originates in a macro outside of the current crate (in Nightly builds, run with -Z external-macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] error: aborting due to 16 previous errors [INFO] [stderr] [INFO] [stderr] Some errors have detailed explanations: E0277, E0308, E0432, E0599, E0658. [INFO] [stderr] For more information about an error, try `rustc --explain E0277`. [INFO] [stderr] error: could not compile `cmd_wrk_macros`. [INFO] [stderr] [INFO] [stderr] To learn more, run the command again with --verbose. [INFO] running `"docker" "inspect" "8f0d5b60e3f7f203692f8c328407bedeaa5958abb9236a1f00cc5aa109205acc"` [INFO] running `"docker" "rm" "-f" "8f0d5b60e3f7f203692f8c328407bedeaa5958abb9236a1f00cc5aa109205acc"` [INFO] [stdout] 8f0d5b60e3f7f203692f8c328407bedeaa5958abb9236a1f00cc5aa109205acc