-
-
Notifications
You must be signed in to change notification settings - Fork 117
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
fix: fix Rust v1.78.0 clippy warnings #382
Conversation
@@ -410,7 +410,7 @@ impl Report { | |||
} | |||
|
|||
/// Provide source code for this error | |||
pub fn with_source_code(self, source_code: impl SourceCode + Send + Sync + 'static) -> Report { | |||
pub fn with_source_code(self, source_code: impl SourceCode + 'static) -> Report { |
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.
warning: this bound is already specified as the supertrait of SourceCode
🤔 Rust v1.78.0 also surfaced 2 unspecified features
|
I think the
|
I've added I'll create an issue for removing these unexpected cfgs. |
Ahh sorry I totally forgot about this PR, MIRI is failing due to
You may |
No description provided.