summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/attrs.stderr
blob: df4e9e20b649c137467b2fcf2a5ced619d8e16cd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
error: you have declared `#[inline(always)]` on `test_attr_lint`. This is usually a bad idea
  --> $DIR/attrs.rs:5:1
   |
LL | #[inline(always)]
   | ^^^^^^^^^^^^^^^^^
   |
   = note: `-D clippy::inline-always` implied by `-D warnings`

error: the since field must contain a semver-compliant version
  --> $DIR/attrs.rs:25:14
   |
LL | #[deprecated(since = "forever")]
   |              ^^^^^^^^^^^^^^^^^
   |
   = note: `-D clippy::deprecated-semver` implied by `-D warnings`

error: the since field must contain a semver-compliant version
  --> $DIR/attrs.rs:28:14
   |
LL | #[deprecated(since = "1")]
   |              ^^^^^^^^^^^

error: aborting due to 3 previous errors