@@ -19,14 +19,26 @@ error: current MSRV (Minimum Supported Rust Version) is `1.3.0` but this item is
1919LL | sleep(Duration::new(1, 0));
2020 | ^^^^^
2121
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:30:33
24+ |
25+ LL | static NO_BODY_BAD_MSRV: Option<Duration> = None;
26+ | ^^^^^^^^
27+
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:37:19
30+ |
31+ LL | let _: Option<Duration> = None;
32+ | ^^^^^^^^
33+
2234error: current MSRV (Minimum Supported Rust Version) is `1.3.0` but this item is stable since `1.43.0`
23- --> tests/ui/incompatible_msrv.rs:49 :17
35+ --> tests/ui/incompatible_msrv.rs:61 :17
2436 |
2537LL | let _ = core::iter::once_with(|| 0);
2638 | ^^^^^^^^^^^^^^^^^^^^^
2739
2840error: current MSRV (Minimum Supported Rust Version) is `1.3.0` but this item is stable since `1.43.0`
29- --> tests/ui/incompatible_msrv.rs:56 :21
41+ --> tests/ui/incompatible_msrv.rs:68 :21
3042 |
3143LL | let _ = core::iter::once_with(|| $msg);
3244 | ^^^^^^^^^^^^^^^^^^^^^
@@ -37,48 +49,48 @@ LL | my_panic!("foo");
3749 = note: this error originates in the macro `my_panic` (in Nightly builds, run with -Z macro-backtrace for more info)
3850
3951error: current MSRV (Minimum Supported Rust Version) is `1.3.0` but this item is stable since `1.43.0`
40- --> tests/ui/incompatible_msrv.rs:63 :13
52+ --> tests/ui/incompatible_msrv.rs:75 :13
4153 |
4254LL | assert!(core::iter::once_with(|| 0).next().is_some());
4355 | ^^^^^^^^^^^^^^^^^^^^^
4456
4557error: current MSRV (Minimum Supported Rust Version) is `1.80.0` but this item is stable since `1.82.0`
46- --> tests/ui/incompatible_msrv.rs:76 :13
58+ --> tests/ui/incompatible_msrv.rs:88 :13
4759 |
4860LL | let _ = std::iter::repeat_n((), 5);
4961 | ^^^^^^^^^^^^^^^^^^^
5062
5163error: current MSRV (Minimum Supported Rust Version) is `1.3.0` but this item is stable since `1.82.0`
52- --> tests/ui/incompatible_msrv.rs:81 :13
64+ --> tests/ui/incompatible_msrv.rs:99 :13
5365 |
5466LL | let _ = std::iter::repeat_n((), 5);
5567 | ^^^^^^^^^^^^^^^^^^^
5668
5769error: current MSRV (Minimum Supported Rust Version) is `1.3.0` but this item is stable since `1.82.0`
58- --> tests/ui/incompatible_msrv.rs:86 :17
70+ --> tests/ui/incompatible_msrv.rs:104 :17
5971 |
6072LL | let _ = std::iter::repeat_n((), 5);
6173 | ^^^^^^^^^^^^^^^^^^^
6274 |
6375 = note: you may want to conditionally increase the MSRV considered by Clippy using the `clippy::msrv` attribute
6476
6577error: current MSRV (Minimum Supported Rust Version) is `1.3.0` but this item is stable since `1.82.0`
66- --> tests/ui/incompatible_msrv.rs:91 :17
78+ --> tests/ui/incompatible_msrv.rs:109 :17
6779 |
6880LL | let _ = std::iter::repeat_n((), 5);
6981 | ^^^^^^^^^^^^^^^^^^^
7082
7183error: current MSRV (Minimum Supported Rust Version) is `1.78.0` but this item is stable since `1.84.0`
72- --> tests/ui/incompatible_msrv.rs:104 :7
84+ --> tests/ui/incompatible_msrv.rs:122 :7
7385 |
7486LL | r.isqrt()
7587 | ^^^^^^^
7688
7789error: current MSRV (Minimum Supported Rust Version) is `1.3.0` but this item is stable since `1.85.0`
78- --> tests/ui/incompatible_msrv.rs:109 :13
90+ --> tests/ui/incompatible_msrv.rs:127 :13
7991 |
8092LL | let _ = std::io::ErrorKind::CrossesDevices;
8193 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
8294
83- error: aborting due to 12 previous errors
95+ error: aborting due to 14 previous errors
8496
0 commit comments