summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/cfg_attr_rustfmt.stderr
blob: 8816ce2d837495d83692c2b3797c84187dee0596 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
error: `cfg_attr` is deprecated for rustfmt and got replaced by tool attributes
  --> $DIR/cfg_attr_rustfmt.rs:18:5
   |
LL |     #[cfg_attr(rustfmt, rustfmt::skip)]
   |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use: `#[rustfmt::skip]`
   |
   = note: `-D clippy::deprecated-cfg-attr` implied by `-D warnings`
   = help: to override `-D warnings` add `#[allow(clippy::deprecated_cfg_attr)]`

error: `cfg_attr` is deprecated for rustfmt and got replaced by tool attributes
  --> $DIR/cfg_attr_rustfmt.rs:22:1
   |
LL | #[cfg_attr(rustfmt, rustfmt_skip)]
   | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use: `#[rustfmt::skip]`

error: `cfg_attr` is deprecated for rustfmt and got replaced by tool attributes
  --> $DIR/cfg_attr_rustfmt.rs:41:5
   |
LL |     #[cfg_attr(rustfmt, rustfmt::skip)]
   |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use: `#[rustfmt::skip]`

error: aborting due to 3 previous errors