@@ -21,21 +21,6 @@ LL | #![deny(suspicious_auto_trait_impls)]
21
21
error: cross-crate traits with a default impl, like `Send`, should not be specialized
22
22
--> $DIR/suspicious-negative-impls-lint.rs:12:1
23
23
|
24
- LL | unsafe impl<T> Send for WithPhantomDataSend<*const T, i8> {}
25
- | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
26
- |
27
- = warning: this will change its meaning in a future release!
28
- = note: for more information, see issue #93367 <https://github.com/rust-lang/rust/issues/93367>
29
- = note: `*const T` is not a generic parameter
30
- note: try using the same sequence of generic parameters as the struct definition
31
- --> $DIR/suspicious-negative-impls-lint.rs:11:1
32
- |
33
- LL | pub struct WithPhantomDataSend<T, U>(PhantomData<T>, U);
34
- | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
35
-
36
- error: cross-crate traits with a default impl, like `Send`, should not be specialized
37
- --> $DIR/suspicious-negative-impls-lint.rs:15:1
38
- |
39
24
LL | impl<T> !Send for WithPhantomDataSend<*const T, u8> {}
40
25
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
41
26
|
@@ -49,22 +34,7 @@ LL | pub struct WithPhantomDataSend<T, U>(PhantomData<T>, U);
49
34
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
50
35
51
36
error: cross-crate traits with a default impl, like `Sync`, should not be specialized
52
- --> $DIR/suspicious-negative-impls-lint.rs:21:1
53
- |
54
- LL | unsafe impl<T> Sync for WithLifetime<'static, Vec<T>> {}
55
- | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
56
- |
57
- = warning: this will change its meaning in a future release!
58
- = note: for more information, see issue #93367 <https://github.com/rust-lang/rust/issues/93367>
59
- = note: `Vec<T>` is not a generic parameter
60
- note: try using the same sequence of generic parameters as the struct definition
61
- --> $DIR/suspicious-negative-impls-lint.rs:19:1
62
- |
63
- LL | pub struct WithLifetime<'a, T>(&'a (), T);
64
- | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
65
-
66
- error: cross-crate traits with a default impl, like `Sync`, should not be specialized
67
- --> $DIR/suspicious-negative-impls-lint.rs:24:1
37
+ --> $DIR/suspicious-negative-impls-lint.rs:17:1
68
38
|
69
39
LL | impl<T> !Sync for WithLifetime<'static, Option<T>> {}
70
40
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
@@ -73,10 +43,10 @@ LL | impl<T> !Sync for WithLifetime<'static, Option<T>> {}
73
43
= note: for more information, see issue #93367 <https://github.com/rust-lang/rust/issues/93367>
74
44
= note: `Option<T>` is not a generic parameter
75
45
note: try using the same sequence of generic parameters as the struct definition
76
- --> $DIR/suspicious-negative-impls-lint.rs:19 :1
46
+ --> $DIR/suspicious-negative-impls-lint.rs:16 :1
77
47
|
78
48
LL | pub struct WithLifetime<'a, T>(&'a (), T);
79
49
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
80
50
81
- error: aborting due to 5 previous errors
51
+ error: aborting due to 3 previous errors
82
52
0 commit comments