]> git.proxmox.com Git - rustc.git/blame - src/tools/clippy/tests/ui/attrs.stderr
New upstream version 1.52.1+dfsg1
[rustc.git] / src / tools / clippy / tests / ui / attrs.stderr
CommitLineData
f20569fa
XL
1error: you have declared `#[inline(always)]` on `test_attr_lint`. This is usually a bad idea
2 --> $DIR/attrs.rs:5:1
3 |
4LL | #[inline(always)]
5 | ^^^^^^^^^^^^^^^^^
6 |
7 = note: `-D clippy::inline-always` implied by `-D warnings`
8
9error: the since field must contain a semver-compliant version
10 --> $DIR/attrs.rs:25:14
11 |
12LL | #[deprecated(since = "forever")]
13 | ^^^^^^^^^^^^^^^^^
14 |
15 = note: `-D clippy::deprecated-semver` implied by `-D warnings`
16
17error: the since field must contain a semver-compliant version
18 --> $DIR/attrs.rs:28:14
19 |
20LL | #[deprecated(since = "1")]
21 | ^^^^^^^^^^^
22
23error: aborting due to 3 previous errors
24