rust/tests/ui/tool-attributes/tool-attributes-misplaced-2.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

23 lines
638 B
Plaintext
Raw Normal View History

error: expected derive macro, found tool attribute `rustfmt::skip`
2018-12-25 09:56:47 -06:00
--> $DIR/tool-attributes-misplaced-2.rs:1:10
|
2019-03-09 06:03:44 -06:00
LL | #[derive(rustfmt::skip)]
2023-03-31 21:52:58 -05:00
| ^^^^^^^^^^^^^ not a derive macro
|
help: Remove from the surrounding `derive()`
--> $DIR/tool-attributes-misplaced-2.rs:1:10
|
2023-03-31 21:52:58 -05:00
LL | #[derive(rustfmt::skip)]
| ^^^^^^^^^^^^^
= help: Add as non-Derive macro
`#[rustfmt::skip]`
error: expected macro, found tool attribute `rustfmt::skip`
2018-12-25 09:56:47 -06:00
--> $DIR/tool-attributes-misplaced-2.rs:5:5
|
2019-03-09 06:03:44 -06:00
LL | rustfmt::skip!();
| ^^^^^^^^^^^^^ not a macro
error: aborting due to 2 previous errors