@@ -8,25 +8,25 @@ 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:18 :11
11+ --> tests/ui/incompatible_msrv.rs:20 :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:22 :5
17+ --> tests/ui/incompatible_msrv.rs:24 :5
1818 |
1919LL | sleep(Duration::new(1, 0));
2020 | ^^^^^
2121
2222error: 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:46 :9
23+ --> tests/ui/incompatible_msrv.rs:48 :9
2424 |
2525LL | core::panicking::panic("foo");
2626 | ^^^^^^^^^^^^^^^^^^^^^^
2727
2828error: 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:53 :13
29+ --> tests/ui/incompatible_msrv.rs:55 :13
3030 |
3131LL | core::panicking::panic($msg)
3232 | ^^^^^^^^^^^^^^^^^^^^^^
@@ -37,16 +37,36 @@ LL | my_panic!("foo");
3737 = note: this error originates in the macro `my_panic` (in Nightly builds, run with -Z macro-backtrace for more info)
3838
3939error: current MSRV (Minimum Supported Rust Version) is `1.3.0` but this item is stable since `1.6.0`
40- --> tests/ui/incompatible_msrv.rs:59 :13
40+ --> tests/ui/incompatible_msrv.rs:61 :13
4141 |
4242LL | assert!(core::panicking::panic("out of luck"));
4343 | ^^^^^^^^^^^^^^^^^^^^^^
4444
4545error: 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:72 :13
46+ --> tests/ui/incompatible_msrv.rs:74 :13
4747 |
4848LL | let _ = std::iter::repeat_n((), 5);
4949 | ^^^^^^^^^^^^^^^^^^^
5050
51- error: aborting due to 7 previous errors
51+ error: 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:79:13
53+ |
54+ LL | let _ = std::iter::repeat_n((), 5);
55+ | ^^^^^^^^^^^^^^^^^^^
56+
57+ error: 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:84:17
59+ |
60+ LL | let _ = std::iter::repeat_n((), 5);
61+ | ^^^^^^^^^^^^^^^^^^^
62+ |
63+ = note: you may want to conditionally increase the MSRV considered by Clippy using the `clippy::msrv` attribute
64+
65+ error: 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:89:17
67+ |
68+ LL | let _ = std::iter::repeat_n((), 5);
69+ | ^^^^^^^^^^^^^^^^^^^
70+
71+ error: aborting due to 10 previous errors
5272
0 commit comments