Skip to content

Commit 717f93c

Browse files
committed
Bless the suspicious-negative-impls-lint.rs
1 parent 23ba4ce commit 717f93c

File tree

1 file changed

+3
-33
lines changed

1 file changed

+3
-33
lines changed

tests/ui/auto-traits/suspicious-negative-impls-lint.stderr

+3-33
Original file line numberDiff line numberDiff line change
@@ -21,21 +21,6 @@ LL | #![deny(suspicious_auto_trait_impls)]
2121
error: cross-crate traits with a default impl, like `Send`, should not be specialized
2222
--> $DIR/suspicious-negative-impls-lint.rs:12:1
2323
|
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-
|
3924
LL | impl<T> !Send for WithPhantomDataSend<*const T, u8> {}
4025
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
4126
|
@@ -49,22 +34,7 @@ LL | pub struct WithPhantomDataSend<T, U>(PhantomData<T>, U);
4934
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
5035

5136
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
6838
|
6939
LL | impl<T> !Sync for WithLifetime<'static, Option<T>> {}
7040
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
@@ -73,10 +43,10 @@ LL | impl<T> !Sync for WithLifetime<'static, Option<T>> {}
7343
= note: for more information, see issue #93367 <https://github.com/rust-lang/rust/issues/93367>
7444
= note: `Option<T>` is not a generic parameter
7545
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
7747
|
7848
LL | pub struct WithLifetime<'a, T>(&'a (), T);
7949
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
8050

81-
error: aborting due to 5 previous errors
51+
error: aborting due to 3 previous errors
8252

0 commit comments

Comments
 (0)