rust/tests/ui/tool-attributes/tool-attributes-misplaced-2.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

21 lines
572 B
Plaintext

error: expected derive macro, found tool attribute `rustfmt::skip`
--> $DIR/tool-attributes-misplaced-2.rs:1:10
|
LL | #[derive(rustfmt::skip)]
| ^^^^^^^^^^^^^
| |
| not a derive macro
| help: Remove from the surrounding `derive()`
|
= help: Add as non-Derive macro
`#[rustfmt::skip]`
error: expected macro, found tool attribute `rustfmt::skip`
--> $DIR/tool-attributes-misplaced-2.rs:5:5
|
LL | rustfmt::skip!();
| ^^^^^^^^^^^^^ not a macro
error: aborting due to 2 previous errors