1
Fork 0

Rollup merge of #106897 - estebank:issue-99430, r=davidtwco

Tweak E0597

CC #99430
This commit is contained in:
Matthias Krüger 2023-01-25 22:19:52 +01:00 committed by GitHub
commit 9e3f330656
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
230 changed files with 853 additions and 354 deletions

View file

@ -2825,7 +2825,7 @@ pub struct FindExprBySpan<'hir> {
}
impl<'hir> FindExprBySpan<'hir> {
fn new(span: Span) -> Self {
pub fn new(span: Span) -> Self {
Self { span, result: None, ty_result: None }
}
}