]> git.lizzy.rs Git - rust.git/blob - src/tools/clippy/tests/ui/attrs.stderr
Auto merge of #107843 - bjorn3:sync_cg_clif-2023-02-09, r=bjorn3
[rust.git] / src / tools / clippy / tests / ui / attrs.stderr
1 error: you have declared `#[inline(always)]` on `test_attr_lint`. This is usually a bad idea
2   --> $DIR/attrs.rs:5:1
3    |
4 LL | #[inline(always)]
5    | ^^^^^^^^^^^^^^^^^
6    |
7    = note: `-D clippy::inline-always` implied by `-D warnings`
8
9 error: the since field must contain a semver-compliant version
10   --> $DIR/attrs.rs:25:14
11    |
12 LL | #[deprecated(since = "forever")]
13    |              ^^^^^^^^^^^^^^^^^
14    |
15    = note: `-D clippy::deprecated-semver` implied by `-D warnings`
16
17 error: the since field must contain a semver-compliant version
18   --> $DIR/attrs.rs:28:14
19    |
20 LL | #[deprecated(since = "1")]
21    |              ^^^^^^^^^^^
22
23 error: aborting due to 3 previous errors
24