mirror of
https://github.com/rust-lang/rust.git
synced 2025-01-10 06:47:34 +00:00
10c36445ff
It's now split between two errors, one to remove the invalid derive macro and one suggesting adding a new non-derive macro
15 lines
369 B
Plaintext
15 lines
369 B
Plaintext
error: expected derive macro, found built-in attribute `inline`
|
|
--> $DIR/macro-path-prelude-fail-4.rs:1:10
|
|
|
|
|
LL | #[derive(inline)]
|
|
| ^^^^^^
|
|
| |
|
|
| not a derive macro
|
|
| help: Remove from the surrounding `derive()`
|
|
|
|
|
= help: Add as non-Derive macro
|
|
`#[inline]`
|
|
|
|
error: aborting due to previous error
|
|
|