@@ -8,25 +8,25 @@ 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:18 :11
11
+ --> tests/ui/incompatible_msrv.rs:20 :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:22 :5
17
+ --> tests/ui/incompatible_msrv.rs:24 :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.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
24
24
|
25
25
LL | core::panicking::panic("foo");
26
26
| ^^^^^^^^^^^^^^^^^^^^^^
27
27
28
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:53 :13
29
+ --> tests/ui/incompatible_msrv.rs:55 :13
30
30
|
31
31
LL | core::panicking::panic($msg)
32
32
| ^^^^^^^^^^^^^^^^^^^^^^
@@ -37,16 +37,36 @@ LL | my_panic!("foo");
37
37
= note: this error originates in the macro `my_panic` (in Nightly builds, run with -Z macro-backtrace for more info)
38
38
39
39
error: 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
41
41
|
42
42
LL | assert!(core::panicking::panic("out of luck"));
43
43
| ^^^^^^^^^^^^^^^^^^^^^^
44
44
45
45
error: 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
47
47
|
48
48
LL | let _ = std::iter::repeat_n((), 5);
49
49
| ^^^^^^^^^^^^^^^^^^^
50
50
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
52
72
0 commit comments