mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 06:22:00 +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
21 lines
572 B
Plaintext
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
|
|
|