-
Notifications
You must be signed in to change notification settings - Fork 13.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Split refining_impl_trait lint into _reachable, _internal variants
- Loading branch information
Showing
13 changed files
with
239 additions
and
33 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
warning: impl trait in impl method signature does not match trait method signature | ||
--> $DIR/foreign.rs:23:21 | ||
| | ||
LL | fn bar(self) -> Arc<String> { | ||
| ^^^^^^^^^^^ | ||
| | ||
= note: add `#[allow(refining_impl_trait)]` if it is intended for this to be part of the public API of this crate | ||
= note: we are soliciting feedback, see issue #121718 <https://github.com/rust-lang/rust/issues/121718> for more information | ||
note: the lint level is defined here | ||
--> $DIR/foreign.rs:22:12 | ||
| | ||
LL | #[warn(refining_impl_trait)] | ||
| ^^^^^^^^^^^^^^^^^^^ | ||
= note: `#[warn(refining_impl_trait_internal)]` implied by `#[warn(refining_impl_trait)]` | ||
help: replace the return type so that it matches the trait | ||
| | ||
LL | fn bar(self) -> impl Deref<Target = impl Sized> { | ||
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | ||
|
||
warning: impl trait in impl method signature does not match trait method signature | ||
--> $DIR/foreign.rs:33:21 | ||
| | ||
LL | fn bar(self) -> Arc<String> { | ||
| ^^^^^^^^^^^ | ||
| | ||
= note: add `#[allow(refining_impl_trait)]` if it is intended for this to be part of the public API of this crate | ||
= note: we are soliciting feedback, see issue #121718 <https://github.com/rust-lang/rust/issues/121718> for more information | ||
note: the lint level is defined here | ||
--> $DIR/foreign.rs:31:12 | ||
| | ||
LL | #[warn(refining_impl_trait)] | ||
| ^^^^^^^^^^^^^^^^^^^ | ||
help: replace the return type so that it matches the trait | ||
| | ||
LL | fn bar(self) -> impl Deref<Target = impl Sized> { | ||
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | ||
|
||
warning: 2 warnings emitted | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.