2019-07-03 09:47:24 +00:00
|
|
|
error: expected derive macro, found built-in attribute `inline`
|
2018-09-08 19:19:53 +00:00
|
|
|
--> $DIR/macro-path-prelude-fail-4.rs:1:10
|
|
|
|
|
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | #[derive(inline)]
|
2023-04-01 02:52:58 +00:00
|
|
|
| ^^^^^^ not a derive macro
|
|
|
|
|
|
2023-04-07 07:14:48 +00:00
|
|
|
help: remove from the surrounding `derive()`
|
2023-04-01 02:52:58 +00:00
|
|
|
--> $DIR/macro-path-prelude-fail-4.rs:1:10
|
2023-03-26 14:59:45 +00:00
|
|
|
|
|
2023-04-01 02:52:58 +00:00
|
|
|
LL | #[derive(inline)]
|
|
|
|
| ^^^^^^
|
2023-04-07 07:14:48 +00:00
|
|
|
= help: add as non-Derive macro
|
2023-03-30 20:43:32 +00:00
|
|
|
`#[inline]`
|
2018-09-08 19:19:53 +00:00
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|