summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/min_rust_version_multiple_inner_attr.stderr
blob: e3ff6605cde87b891cd80d18b77bd64f1d77dcfd (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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
error: `msrv` is defined multiple times
  --> $DIR/min_rust_version_multiple_inner_attr.rs:3:1
   |
LL | #![clippy::msrv = "=1.35.0"]
   | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
   |
note: first definition found here
  --> $DIR/min_rust_version_multiple_inner_attr.rs:2:1
   |
LL | #![clippy::msrv = "1.40"]
   | ^^^^^^^^^^^^^^^^^^^^^^^^^

error: `msrv` is defined multiple times
  --> $DIR/min_rust_version_multiple_inner_attr.rs:4:1
   |
LL | #![clippy::msrv = "1.10.1"]
   | ^^^^^^^^^^^^^^^^^^^^^^^^^^^
   |
note: first definition found here
  --> $DIR/min_rust_version_multiple_inner_attr.rs:2:1
   |
LL | #![clippy::msrv = "1.40"]
   | ^^^^^^^^^^^^^^^^^^^^^^^^^

error: `msrv` is defined multiple times
  --> $DIR/min_rust_version_multiple_inner_attr.rs:8:5
   |
LL |     #![clippy::msrv = "1.0.0"]
   |     ^^^^^^^^^^^^^^^^^^^^^^^^^^
   |
note: first definition found here
  --> $DIR/min_rust_version_multiple_inner_attr.rs:7:5
   |
LL |     #![clippy::msrv = "1"]
   |     ^^^^^^^^^^^^^^^^^^^^^^

error: aborting due to 3 previous errors