rust/tests/ui/macros/macro-path-prelude-fail-4.stderr
Tom Martin 10c36445ff
Update non-derive macro error message to match suggestion
It's now split between two errors, one to remove the invalid derive macro
and one suggesting adding a new non-derive macro
2023-03-30 21:43:32 +01:00

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