11error: 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
33 |
44LL | assert_eq!(map.entry("poneyland").key(), &"poneyland");
55 | ^^^^^
@@ -8,37 +8,37 @@ LL | assert_eq!(map.entry("poneyland").key(), &"poneyland");
88 = help: to override `-D warnings` add `#[allow(clippy::incompatible_msrv)]`
99
1010error: 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
1212 |
1313LL | v.into_key();
1414 | ^^^^^^^^^^
1515
1616error: 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
1818 |
1919LL | sleep(Duration::new(1, 0));
2020 | ^^^^^
2121
2222error: 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
2424 |
2525LL | static NO_BODY_BAD_MSRV: Option<Duration> = None;
2626 | ^^^^^^^^
2727
2828error: 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
3030 |
3131LL | let _: Option<Duration> = None;
3232 | ^^^^^^^^
3333
3434error: 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
3636 |
3737LL | let _ = core::iter::once_with(|| 0);
3838 | ^^^^^^^^^^^^^^^^^^^^^
3939
4040error: 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
4242 |
4343LL | let _ = core::iter::once_with(|| $msg);
4444 | ^^^^^^^^^^^^^^^^^^^^^
@@ -49,63 +49,63 @@ LL | my_panic!("foo");
4949 = note: this error originates in the macro `my_panic` (in Nightly builds, run with -Z macro-backtrace for more info)
5050
5151error: 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
5353 |
5454LL | assert!(core::iter::once_with(|| 0).next().is_some());
5555 | ^^^^^^^^^^^^^^^^^^^^^
5656
5757error: 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
5959 |
6060LL | let _ = std::iter::repeat_n((), 5);
6161 | ^^^^^^^^^^^^^^^^^^^
6262
6363error: 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
6565 |
6666LL | let _ = std::iter::repeat_n((), 5);
6767 | ^^^^^^^^^^^^^^^^^^^
6868
6969error: 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
7171 |
7272LL | let _ = std::iter::repeat_n((), 5);
7373 | ^^^^^^^^^^^^^^^^^^^
7474 |
7575 = note: you may want to conditionally increase the MSRV considered by Clippy using the `clippy::msrv` attribute
7676
7777error: 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
7979 |
8080LL | let _ = std::iter::repeat_n((), 5);
8181 | ^^^^^^^^^^^^^^^^^^^
8282
8383error: 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
8585 |
8686LL | r.isqrt()
8787 | ^^^^^^^
8888
8989error: 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
9191 |
9292LL | let _ = std::io::ErrorKind::CrossesDevices;
9393 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
9494
9595error: 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
9797 |
9898LL | _ = c.get();
9999 | ^^^^^
100100
101101error: 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
103103 |
104104LL | let _ = std::io::ErrorKind::InvalidFilename;
105105 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
106106
107107error: 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
109109 |
110110LL | let _ = const { std::io::ErrorKind::InvalidFilename };
111111 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
0 commit comments