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:14 :39
2+ --> tests/ui/incompatible_msrv.rs:13 :39
33 |
44LL | assert_eq!(map.entry("poneyland").key(), &"poneyland");
55 | ^^^^^
@@ -8,39 +8,39 @@ 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:20 :11
11+ --> tests/ui/incompatible_msrv.rs:19 :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:24 :5
17+ --> tests/ui/incompatible_msrv.rs:23 :5
1818 |
1919LL | sleep(Duration::new(1, 0));
2020 | ^^^^^
2121
22- error: current MSRV (Minimum Supported Rust Version) is `1.3.0` but this item is stable since `1.6 .0`
23- --> tests/ui/incompatible_msrv.rs:48:9
22+ error: 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:47:17
2424 |
25- LL | core::panicking::panic("foo" );
26- | ^ ^^^^^^^^^^^^^^^^^^^^^
25+ LL | let _ = core::iter::once_with(|| 0 );
26+ | ^^^^^^^^^^^^^^^^^^^^^
2727
28- error: current MSRV (Minimum Supported Rust Version) is `1.3.0` but this item is stable since `1.6 .0`
29- --> tests/ui/incompatible_msrv.rs:55:13
28+ error: 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:54:21
3030 |
31- LL | core::panicking::panic( $msg)
32- | ^ ^^^^^^^^^^^^^^^^^^^^^
31+ LL | let _ = core::iter::once_with(|| $msg);
32+ | ^^^^^^^^^^^^^^^^^^^^^
3333...
3434LL | my_panic!("foo");
3535 | ---------------- in this macro invocation
3636 |
3737 = note: this error originates in the macro `my_panic` (in Nightly builds, run with -Z macro-backtrace for more info)
3838
39- error: current MSRV (Minimum Supported Rust Version) is `1.3.0` but this item is stable since `1.6 .0`
39+ error: current MSRV (Minimum Supported Rust Version) is `1.3.0` but this item is stable since `1.43 .0`
4040 --> tests/ui/incompatible_msrv.rs:61:13
4141 |
42- LL | assert!(core::panicking::panic("out of luck" ));
43- | ^^^^^^^^^^^^^^^^^^^^^^
42+ LL | assert!(core::iter::once_with(|| 0).next().is_some( ));
43+ | ^^^^^^^^^^^^^^^^^^^^^
4444
4545error: current MSRV (Minimum Supported Rust Version) is `1.80.0` but this item is stable since `1.82.0`
4646 --> tests/ui/incompatible_msrv.rs:74:13
0 commit comments