| error: expected non-macro attribute, found attribute macro `id` |
| --> $DIR/proc-macro-cannot-be-used.rs:12:23 |
| | |
| LL | extern "C" { fn ffi(#[id] arg1: i32, #[id] ...); } |
| | ^^ not a non-macro attribute |
| |
| error: expected non-macro attribute, found attribute macro `id` |
| --> $DIR/proc-macro-cannot-be-used.rs:12:40 |
| | |
| LL | extern "C" { fn ffi(#[id] arg1: i32, #[id] ...); } |
| | ^^ not a non-macro attribute |
| |
| error: expected non-macro attribute, found attribute macro `id` |
| --> $DIR/proc-macro-cannot-be-used.rs:16:40 |
| | |
| LL | unsafe extern "C" fn cvar(arg1: i32, #[id] mut args: ...) {} |
| | ^^ not a non-macro attribute |
| |
| error: expected non-macro attribute, found attribute macro `id` |
| --> $DIR/proc-macro-cannot-be-used.rs:19:30 |
| | |
| LL | type Alias = extern "C" fn(#[id] u8, #[id] ...); |
| | ^^ not a non-macro attribute |
| |
| error: expected non-macro attribute, found attribute macro `id` |
| --> $DIR/proc-macro-cannot-be-used.rs:19:40 |
| | |
| LL | type Alias = extern "C" fn(#[id] u8, #[id] ...); |
| | ^^ not a non-macro attribute |
| |
| error: expected non-macro attribute, found attribute macro `id` |
| --> $DIR/proc-macro-cannot-be-used.rs:23:11 |
| | |
| LL | fn free(#[id] arg1: u8) { |
| | ^^ not a non-macro attribute |
| |
| error: expected non-macro attribute, found attribute macro `id` |
| --> $DIR/proc-macro-cannot-be-used.rs:25:18 |
| | |
| LL | let lam = |#[id] W(x), #[id] y: usize| (); |
| | ^^ not a non-macro attribute |
| |
| error: expected non-macro attribute, found attribute macro `id` |
| --> $DIR/proc-macro-cannot-be-used.rs:25:30 |
| | |
| LL | let lam = |#[id] W(x), #[id] y: usize| (); |
| | ^^ not a non-macro attribute |
| |
| error: expected non-macro attribute, found attribute macro `id` |
| --> $DIR/proc-macro-cannot-be-used.rs:31:20 |
| | |
| LL | fn inherent1(#[id] self, #[id] arg1: u8) {} |
| | ^^ not a non-macro attribute |
| |
| error: expected non-macro attribute, found attribute macro `id` |
| --> $DIR/proc-macro-cannot-be-used.rs:31:32 |
| | |
| LL | fn inherent1(#[id] self, #[id] arg1: u8) {} |
| | ^^ not a non-macro attribute |
| |
| error: expected non-macro attribute, found attribute macro `id` |
| --> $DIR/proc-macro-cannot-be-used.rs:34:20 |
| | |
| LL | fn inherent2(#[id] &self, #[id] arg1: u8) {} |
| | ^^ not a non-macro attribute |
| |
| error: expected non-macro attribute, found attribute macro `id` |
| --> $DIR/proc-macro-cannot-be-used.rs:34:33 |
| | |
| LL | fn inherent2(#[id] &self, #[id] arg1: u8) {} |
| | ^^ not a non-macro attribute |
| |
| error: expected non-macro attribute, found attribute macro `id` |
| --> $DIR/proc-macro-cannot-be-used.rs:37:24 |
| | |
| LL | fn inherent3<'a>(#[id] &'a mut self, #[id] arg1: u8) {} |
| | ^^ not a non-macro attribute |
| |
| error: expected non-macro attribute, found attribute macro `id` |
| --> $DIR/proc-macro-cannot-be-used.rs:37:44 |
| | |
| LL | fn inherent3<'a>(#[id] &'a mut self, #[id] arg1: u8) {} |
| | ^^ not a non-macro attribute |
| |
| error: expected non-macro attribute, found attribute macro `id` |
| --> $DIR/proc-macro-cannot-be-used.rs:40:24 |
| | |
| LL | fn inherent4<'a>(#[id] self: Box<Self>, #[id] arg1: u8) {} |
| | ^^ not a non-macro attribute |
| |
| error: expected non-macro attribute, found attribute macro `id` |
| --> $DIR/proc-macro-cannot-be-used.rs:40:47 |
| | |
| LL | fn inherent4<'a>(#[id] self: Box<Self>, #[id] arg1: u8) {} |
| | ^^ not a non-macro attribute |
| |
| error: expected non-macro attribute, found attribute macro `id` |
| --> $DIR/proc-macro-cannot-be-used.rs:43:40 |
| | |
| LL | fn issue_64682_associated_fn<'a>(#[id] arg1: u8, #[id] arg2: u8) {} |
| | ^^ not a non-macro attribute |
| |
| error: expected non-macro attribute, found attribute macro `id` |
| --> $DIR/proc-macro-cannot-be-used.rs:43:56 |
| | |
| LL | fn issue_64682_associated_fn<'a>(#[id] arg1: u8, #[id] arg2: u8) {} |
| | ^^ not a non-macro attribute |
| |
| error: expected non-macro attribute, found attribute macro `id` |
| --> $DIR/proc-macro-cannot-be-used.rs:49:17 |
| | |
| LL | fn trait1(#[id] self, #[id] arg1: u8); |
| | ^^ not a non-macro attribute |
| |
| error: expected non-macro attribute, found attribute macro `id` |
| --> $DIR/proc-macro-cannot-be-used.rs:49:29 |
| | |
| LL | fn trait1(#[id] self, #[id] arg1: u8); |
| | ^^ not a non-macro attribute |
| |
| error: expected non-macro attribute, found attribute macro `id` |
| --> $DIR/proc-macro-cannot-be-used.rs:52:17 |
| | |
| LL | fn trait2(#[id] &self, #[id] arg1: u8); |
| | ^^ not a non-macro attribute |
| |
| error: expected non-macro attribute, found attribute macro `id` |
| --> $DIR/proc-macro-cannot-be-used.rs:52:30 |
| | |
| LL | fn trait2(#[id] &self, #[id] arg1: u8); |
| | ^^ not a non-macro attribute |
| |
| error: expected non-macro attribute, found attribute macro `id` |
| --> $DIR/proc-macro-cannot-be-used.rs:55:21 |
| | |
| LL | fn trait3<'a>(#[id] &'a mut self, #[id] arg1: u8); |
| | ^^ not a non-macro attribute |
| |
| error: expected non-macro attribute, found attribute macro `id` |
| --> $DIR/proc-macro-cannot-be-used.rs:55:41 |
| | |
| LL | fn trait3<'a>(#[id] &'a mut self, #[id] arg1: u8); |
| | ^^ not a non-macro attribute |
| |
| error: expected non-macro attribute, found attribute macro `id` |
| --> $DIR/proc-macro-cannot-be-used.rs:58:21 |
| | |
| LL | fn trait4<'a>(#[id] self: Box<Self>, #[id] arg1: u8, #[id] Vec<u8>); |
| | ^^ not a non-macro attribute |
| |
| error: expected non-macro attribute, found attribute macro `id` |
| --> $DIR/proc-macro-cannot-be-used.rs:58:44 |
| | |
| LL | fn trait4<'a>(#[id] self: Box<Self>, #[id] arg1: u8, #[id] Vec<u8>); |
| | ^^ not a non-macro attribute |
| |
| error: expected non-macro attribute, found attribute macro `id` |
| --> $DIR/proc-macro-cannot-be-used.rs:58:60 |
| | |
| LL | fn trait4<'a>(#[id] self: Box<Self>, #[id] arg1: u8, #[id] Vec<u8>); |
| | ^^ not a non-macro attribute |
| |
| error: expected non-macro attribute, found attribute macro `id` |
| --> $DIR/proc-macro-cannot-be-used.rs:62:40 |
| | |
| LL | fn issue_64682_associated_fn<'a>(#[id] arg1: u8, #[id] arg2: u8); |
| | ^^ not a non-macro attribute |
| |
| error: expected non-macro attribute, found attribute macro `id` |
| --> $DIR/proc-macro-cannot-be-used.rs:62:56 |
| | |
| LL | fn issue_64682_associated_fn<'a>(#[id] arg1: u8, #[id] arg2: u8); |
| | ^^ not a non-macro attribute |
| |
| error: aborting due to 29 previous errors |
| |