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.

21 lines
572 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)]
| ^^^^^^^^^^^^^
| |
| 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`
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