Remove redundant argument from subdiagnostic method
This commit is contained in:
@@ -666,7 +666,7 @@ impl<'a> Parser<'a> {
|
||||
{
|
||||
err.note("you may be trying to write a c-string literal");
|
||||
err.note("c-string literals require Rust 2021 or later");
|
||||
err.subdiagnostic(self.dcx(), HelpUseLatestEdition::new());
|
||||
err.subdiagnostic(HelpUseLatestEdition::new());
|
||||
}
|
||||
|
||||
// `pub` may be used for an item or `pub(crate)`
|
||||
@@ -2357,7 +2357,7 @@ impl<'a> Parser<'a> {
|
||||
let mut err = self.dcx().struct_span_err(span, msg);
|
||||
let sp = self.psess.source_map().start_point(self.token.span);
|
||||
if let Some(sp) = self.psess.ambiguous_block_expr_parse.borrow().get(&sp) {
|
||||
err.subdiagnostic(self.dcx(), ExprParenthesesNeeded::surrounding(*sp));
|
||||
err.subdiagnostic(ExprParenthesesNeeded::surrounding(*sp));
|
||||
}
|
||||
err.span_label(span, "expected expression");
|
||||
|
||||
|
||||
Reference in New Issue
Block a user