-
Notifications
You must be signed in to change notification settings - Fork 13.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
enable rust_2018_idioms
lint group for doctests
#106621
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -1474,20 +1474,22 @@ impl<'a, 'hir> LoweringContext<'a, 'hir> { | |
/// Given a function definition like: | ||
/// | ||
/// ```rust | ||
/// use std::fmt::Debug; | ||
/// | ||
/// fn test<'a, T: Debug>(x: &'a T) -> impl Debug + 'a { | ||
/// x | ||
/// } | ||
/// ``` | ||
/// | ||
/// we will create a TAIT definition in the HIR like | ||
/// | ||
/// ``` | ||
/// ```rust,ignore (pseudo-Rust) | ||
/// type TestReturn<'a, T, 'x> = impl Debug + 'x | ||
/// ``` | ||
/// | ||
/// and return a type like `TestReturn<'static, T, 'a>`, so that the function looks like: | ||
/// | ||
/// ```rust | ||
/// ```rust,ignore (pseudo-Rust) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. If it was compiling before, why not add a hidden import instead? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. It's using dummy type defined on the previous doc-comment which is also ignored. |
||
/// fn test<'a, T: Debug>(x: &'a T) -> TestReturn<'static, T, 'a> | ||
/// ``` | ||
/// | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -1038,7 +1038,7 @@ impl<'a> MethodDef<'a> { | |
/// `&self.x` because that might cause an unaligned ref. So for any trait | ||
/// method that takes a reference, we use a local block to force a copy. | ||
/// This requires that the field impl `Copy`. | ||
/// ``` | ||
/// ```rust,ignore (example) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Why ignoring this one? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
||
/// # struct A { x: u8, y: u8 } | ||
/// impl PartialEq for A { | ||
/// fn eq(&self, other: &A) -> bool { | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
If it was compiling before, why not add a hidden import instead?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There are multiple errors, and one of them was: