os-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
Text
Raw Normal View History

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