1
1
error: current MSRV (Minimum Supported Rust Version) is `1.3.0` but this item is stable since `1.10.0`
2
- --> tests/ui/incompatible_msrv.rs:17 :39
2
+ --> tests/ui/incompatible_msrv.rs:16 :39
3
3
|
4
4
LL | assert_eq!(map.entry("poneyland").key(), &"poneyland");
5
5
| ^^^^^
@@ -8,37 +8,37 @@ LL | assert_eq!(map.entry("poneyland").key(), &"poneyland");
8
8
= help: to override `-D warnings` add `#[allow(clippy::incompatible_msrv)]`
9
9
10
10
error: current MSRV (Minimum Supported Rust Version) is `1.3.0` but this item is stable since `1.12.0`
11
- --> tests/ui/incompatible_msrv.rs:23 :11
11
+ --> tests/ui/incompatible_msrv.rs:22 :11
12
12
|
13
13
LL | v.into_key();
14
14
| ^^^^^^^^^^
15
15
16
16
error: current MSRV (Minimum Supported Rust Version) is `1.3.0` but this item is stable since `1.4.0`
17
- --> tests/ui/incompatible_msrv.rs:27 :5
17
+ --> tests/ui/incompatible_msrv.rs:26 :5
18
18
|
19
19
LL | sleep(Duration::new(1, 0));
20
20
| ^^^^^
21
21
22
22
error: current MSRV (Minimum Supported Rust Version) is `1.2.0` but this item is stable since `1.3.0`
23
- --> tests/ui/incompatible_msrv.rs:32 :33
23
+ --> tests/ui/incompatible_msrv.rs:31 :33
24
24
|
25
25
LL | static NO_BODY_BAD_MSRV: Option<Duration> = None;
26
26
| ^^^^^^^^
27
27
28
28
error: current MSRV (Minimum Supported Rust Version) is `1.2.0` but this item is stable since `1.3.0`
29
- --> tests/ui/incompatible_msrv.rs:39 :19
29
+ --> tests/ui/incompatible_msrv.rs:38 :19
30
30
|
31
31
LL | let _: Option<Duration> = None;
32
32
| ^^^^^^^^
33
33
34
34
error: current MSRV (Minimum Supported Rust Version) is `1.3.0` but this item is stable since `1.43.0`
35
- --> tests/ui/incompatible_msrv.rs:63 :17
35
+ --> tests/ui/incompatible_msrv.rs:62 :17
36
36
|
37
37
LL | let _ = core::iter::once_with(|| 0);
38
38
| ^^^^^^^^^^^^^^^^^^^^^
39
39
40
40
error: current MSRV (Minimum Supported Rust Version) is `1.3.0` but this item is stable since `1.43.0`
41
- --> tests/ui/incompatible_msrv.rs:70 :21
41
+ --> tests/ui/incompatible_msrv.rs:69 :21
42
42
|
43
43
LL | let _ = core::iter::once_with(|| $msg);
44
44
| ^^^^^^^^^^^^^^^^^^^^^
@@ -49,63 +49,63 @@ LL | my_panic!("foo");
49
49
= note: this error originates in the macro `my_panic` (in Nightly builds, run with -Z macro-backtrace for more info)
50
50
51
51
error: current MSRV (Minimum Supported Rust Version) is `1.3.0` but this item is stable since `1.43.0`
52
- --> tests/ui/incompatible_msrv.rs:77 :13
52
+ --> tests/ui/incompatible_msrv.rs:76 :13
53
53
|
54
54
LL | assert!(core::iter::once_with(|| 0).next().is_some());
55
55
| ^^^^^^^^^^^^^^^^^^^^^
56
56
57
57
error: current MSRV (Minimum Supported Rust Version) is `1.80.0` but this item is stable since `1.82.0`
58
- --> tests/ui/incompatible_msrv.rs:90 :13
58
+ --> tests/ui/incompatible_msrv.rs:89 :13
59
59
|
60
60
LL | let _ = std::iter::repeat_n((), 5);
61
61
| ^^^^^^^^^^^^^^^^^^^
62
62
63
63
error: current MSRV (Minimum Supported Rust Version) is `1.3.0` but this item is stable since `1.82.0`
64
- --> tests/ui/incompatible_msrv.rs:101 :13
64
+ --> tests/ui/incompatible_msrv.rs:100 :13
65
65
|
66
66
LL | let _ = std::iter::repeat_n((), 5);
67
67
| ^^^^^^^^^^^^^^^^^^^
68
68
69
69
error: current MSRV (Minimum Supported Rust Version) is `1.3.0` but this item is stable since `1.82.0`
70
- --> tests/ui/incompatible_msrv.rs:106 :17
70
+ --> tests/ui/incompatible_msrv.rs:105 :17
71
71
|
72
72
LL | let _ = std::iter::repeat_n((), 5);
73
73
| ^^^^^^^^^^^^^^^^^^^
74
74
|
75
75
= note: you may want to conditionally increase the MSRV considered by Clippy using the `clippy::msrv` attribute
76
76
77
77
error: current MSRV (Minimum Supported Rust Version) is `1.3.0` but this item is stable since `1.82.0`
78
- --> tests/ui/incompatible_msrv.rs:111 :17
78
+ --> tests/ui/incompatible_msrv.rs:110 :17
79
79
|
80
80
LL | let _ = std::iter::repeat_n((), 5);
81
81
| ^^^^^^^^^^^^^^^^^^^
82
82
83
83
error: current MSRV (Minimum Supported Rust Version) is `1.78.0` but this item is stable since `1.84.0`
84
- --> tests/ui/incompatible_msrv.rs:124 :7
84
+ --> tests/ui/incompatible_msrv.rs:123 :7
85
85
|
86
86
LL | r.isqrt()
87
87
| ^^^^^^^
88
88
89
89
error: current MSRV (Minimum Supported Rust Version) is `1.3.0` but this item is stable since `1.85.0`
90
- --> tests/ui/incompatible_msrv.rs:129 :13
90
+ --> tests/ui/incompatible_msrv.rs:128 :13
91
91
|
92
92
LL | let _ = std::io::ErrorKind::CrossesDevices;
93
93
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
94
94
95
95
error: current MSRV (Minimum Supported Rust Version) is `1.87.0` but this item is stable in a `const` context since `1.88.0`
96
- --> tests/ui/incompatible_msrv.rs:141 :15
96
+ --> tests/ui/incompatible_msrv.rs:140 :15
97
97
|
98
98
LL | _ = c.get();
99
99
| ^^^^^
100
100
101
101
error: current MSRV (Minimum Supported Rust Version) is `1.86.0` but this item is stable since `1.87.0`
102
- --> tests/ui/incompatible_msrv.rs:160 :13
102
+ --> tests/ui/incompatible_msrv.rs:159 :13
103
103
|
104
104
LL | let _ = std::io::ErrorKind::InvalidFilename;
105
105
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
106
106
107
107
error: current MSRV (Minimum Supported Rust Version) is `1.86.0` but this item is stable since `1.87.0`
108
- --> tests/ui/incompatible_msrv.rs:162 :21
108
+ --> tests/ui/incompatible_msrv.rs:161 :21
109
109
|
110
110
LL | let _ = const { std::io::ErrorKind::InvalidFilename };
111
111
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
0 commit comments