1
Fork 0

Rollup merge of #95293 - compiler-errors:braces, r=davidtwco

suggest wrapping single-expr blocks in square brackets

Suggests a fix in cases like:

```diff
- const A: [i32; 1] = { 1 };

+ const A: [i32; 1] = [ 1 ];
                      ^   ^
```

Also edit the message for the same suggestion in the parser (e.g. `{ 1, 2 }`).

Fixes #95289
This commit is contained in:
Matthias Krüger 2022-04-01 06:59:42 +02:00 committed by GitHub
commit 8f493fd46a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
8 changed files with 221 additions and 90 deletions

View file

@ -1919,16 +1919,12 @@ impl<'a> Parser<'a> {
match snapshot.parse_array_or_repeat_expr(attrs, token::Brace) { match snapshot.parse_array_or_repeat_expr(attrs, token::Brace) {
Ok(arr) => { Ok(arr) => {
let hi = snapshot.prev_token.span; let hi = snapshot.prev_token.span;
self.struct_span_err( self.struct_span_err(arr.span, "this is a block expression, not an array")
arr.span,
"this code is interpreted as a block expression, not an array",
)
.multipart_suggestion( .multipart_suggestion(
"try using [] instead of {}", "to make an array, use square brackets instead of curly braces",
vec![(lo, "[".to_owned()), (hi, "]".to_owned())], vec![(lo, "[".to_owned()), (hi, "]".to_owned())],
Applicability::MaybeIncorrect, Applicability::MaybeIncorrect,
) )
.note("to define an array, one would use square brackets instead of curly braces")
.emit(); .emit();
self.restore_snapshot(snapshot); self.restore_snapshot(snapshot);

View file

@ -39,6 +39,7 @@ impl<'a, 'tcx> FnCtxt<'a, 'tcx> {
self.suggest_no_capture_closure(err, expected, expr_ty); self.suggest_no_capture_closure(err, expected, expr_ty);
self.suggest_boxing_when_appropriate(err, expr, expected, expr_ty); self.suggest_boxing_when_appropriate(err, expr, expected, expr_ty);
self.suggest_missing_parentheses(err, expr); self.suggest_missing_parentheses(err, expr);
self.suggest_block_to_brackets_peeling_refs(err, expr, expr_ty, expected);
self.note_need_for_fn_pointer(err, expected, expr_ty); self.note_need_for_fn_pointer(err, expected, expr_ty);
self.note_internal_mutation_in_method(err, expr, expected, expr_ty); self.note_internal_mutation_in_method(err, expr, expected, expr_ty);
self.report_closure_inferred_return_type(err, expected); self.report_closure_inferred_return_type(err, expected);

View file

@ -774,8 +774,7 @@ impl<'a, 'tcx> FnCtxt<'a, 'tcx> {
let prev_diverges = self.diverges.get(); let prev_diverges = self.diverges.get();
let ctxt = BreakableCtxt { coerce: Some(coerce), may_break: false }; let ctxt = BreakableCtxt { coerce: Some(coerce), may_break: false };
let (ctxt, ()) = let (ctxt, ()) = self.with_breakable_ctxt(blk.hir_id, ctxt, || {
self.with_breakable_ctxt(blk.hir_id, ctxt, || {
for (pos, s) in blk.stmts.iter().enumerate() { for (pos, s) in blk.stmts.iter().enumerate() {
self.check_stmt(s, blk.stmts.len() - 1 == pos); self.check_stmt(s, blk.stmts.len() - 1 == pos);
} }
@ -790,9 +789,21 @@ impl<'a, 'tcx> FnCtxt<'a, 'tcx> {
if let Some(tail_expr_ty) = tail_expr_ty { if let Some(tail_expr_ty) = tail_expr_ty {
let tail_expr = tail_expr.unwrap(); let tail_expr = tail_expr.unwrap();
let span = self.get_expr_coercion_span(tail_expr); let span = self.get_expr_coercion_span(tail_expr);
let cause = let cause = self.cause(span, ObligationCauseCode::BlockTailExpression(blk.hir_id));
self.cause(span, ObligationCauseCode::BlockTailExpression(blk.hir_id)); let ty_for_diagnostic = coerce.merged_ty();
coerce.coerce(self, &cause, tail_expr, tail_expr_ty); // We use coerce_inner here because we want to augment the error
// suggesting to wrap the block in square brackets if it might've
// been mistaken array syntax
coerce.coerce_inner(
self,
&cause,
Some(tail_expr),
tail_expr_ty,
Some(&mut |diag: &mut Diagnostic| {
self.suggest_block_to_brackets(diag, blk, tail_expr_ty, ty_for_diagnostic);
}),
false,
);
} else { } else {
// Subtle: if there is no explicit tail expression, // Subtle: if there is no explicit tail expression,
// that is typically equivalent to a tail expression // that is typically equivalent to a tail expression
@ -837,21 +848,25 @@ impl<'a, 'tcx> FnCtxt<'a, 'tcx> {
// Our block must be a `assign desugar local; assignment` // Our block must be a `assign desugar local; assignment`
if let Some(hir::Node::Block(hir::Block { if let Some(hir::Node::Block(hir::Block {
stmts: stmts:
[hir::Stmt { [
hir::Stmt {
kind: kind:
hir::StmtKind::Local(hir::Local { hir::StmtKind::Local(hir::Local {
source: hir::LocalSource::AssignDesugar(_), source:
hir::LocalSource::AssignDesugar(_),
.. ..
}), }),
.. ..
}, hir::Stmt { },
hir::Stmt {
kind: kind:
hir::StmtKind::Expr(hir::Expr { hir::StmtKind::Expr(hir::Expr {
kind: hir::ExprKind::Assign(..), kind: hir::ExprKind::Assign(..),
.. ..
}), }),
.. ..
}], },
],
.. ..
})) = self.tcx.hir().find(blk.hir_id) })) = self.tcx.hir().find(blk.hir_id)
{ {

View file

@ -766,6 +766,77 @@ impl<'a, 'tcx> FnCtxt<'a, 'tcx> {
} }
} }
/// Given an expression type mismatch, peel any `&` expressions until we get to
/// a block expression, and then suggest replacing the braces with square braces
/// if it was possibly mistaken array syntax.
pub(crate) fn suggest_block_to_brackets_peeling_refs(
&self,
diag: &mut Diagnostic,
mut expr: &hir::Expr<'_>,
mut expr_ty: Ty<'tcx>,
mut expected_ty: Ty<'tcx>,
) {
loop {
match (&expr.kind, expr_ty.kind(), expected_ty.kind()) {
(
hir::ExprKind::AddrOf(_, _, inner_expr),
ty::Ref(_, inner_expr_ty, _),
ty::Ref(_, inner_expected_ty, _),
) => {
expr = *inner_expr;
expr_ty = *inner_expr_ty;
expected_ty = *inner_expected_ty;
}
(hir::ExprKind::Block(blk, _), _, _) => {
self.suggest_block_to_brackets(diag, *blk, expr_ty, expected_ty);
break;
}
_ => break,
}
}
}
/// Suggest wrapping the block in square brackets instead of curly braces
/// in case the block was mistaken array syntax, e.g. `{ 1 }` -> `[ 1 ]`.
pub(crate) fn suggest_block_to_brackets(
&self,
diag: &mut Diagnostic,
blk: &hir::Block<'_>,
blk_ty: Ty<'tcx>,
expected_ty: Ty<'tcx>,
) {
if let ty::Slice(elem_ty) | ty::Array(elem_ty, _) = expected_ty.kind() {
if self.can_coerce(blk_ty, *elem_ty)
&& blk.stmts.is_empty()
&& blk.rules == hir::BlockCheckMode::DefaultBlock
{
let source_map = self.tcx.sess.source_map();
if let Ok(snippet) = source_map.span_to_snippet(blk.span) {
if snippet.starts_with('{') && snippet.ends_with('}') {
diag.multipart_suggestion_verbose(
"to create an array, use square brackets instead of curly braces",
vec![
(
blk.span
.shrink_to_lo()
.with_hi(rustc_span::BytePos(blk.span.lo().0 + 1)),
"[".to_string(),
),
(
blk.span
.shrink_to_hi()
.with_lo(rustc_span::BytePos(blk.span.hi().0 - 1)),
"]".to_string(),
),
],
Applicability::MachineApplicable,
);
}
}
}
}
}
fn is_loop(&self, id: hir::HirId) -> bool { fn is_loop(&self, id: hir::HirId) -> bool {
let node = self.tcx.hir().get(id); let node = self.tcx.hir().get(id);
matches!(node, Node::Expr(Expr { kind: ExprKind::Loop(..), .. })) matches!(node, Node::Expr(Expr { kind: ExprKind::Loop(..), .. }))

View file

@ -0,0 +1,10 @@
const A: [&str; 1] = { "hello" };
//~^ ERROR mismatched types
const B: &[u32] = &{ 1 };
//~^ ERROR mismatched types
const C: &&[u32; 1] = &&{ 1 };
//~^ ERROR mismatched types
fn main() {}

View file

@ -0,0 +1,38 @@
error[E0308]: mismatched types
--> $DIR/brackets-to-braces-single-element.rs:1:24
|
LL | const A: [&str; 1] = { "hello" };
| ^^^^^^^ expected array `[&'static str; 1]`, found `&str`
|
help: to create an array, use square brackets instead of curly braces
|
LL | const A: [&str; 1] = [ "hello" ];
| ~ ~
error[E0308]: mismatched types
--> $DIR/brackets-to-braces-single-element.rs:4:19
|
LL | const B: &[u32] = &{ 1 };
| ^^^^^^ expected slice `[u32]`, found integer
|
= note: expected reference `&'static [u32]`
found reference `&{integer}`
help: to create an array, use square brackets instead of curly braces
|
LL | const B: &[u32] = &[ 1 ];
| ~ ~
error[E0308]: mismatched types
--> $DIR/brackets-to-braces-single-element.rs:7:27
|
LL | const C: &&[u32; 1] = &&{ 1 };
| ^ expected array `[u32; 1]`, found integer
|
help: to create an array, use square brackets instead of curly braces
|
LL | const C: &&[u32; 1] = &&[ 1 ];
| ~ ~
error: aborting due to 3 previous errors
For more information about this error, try `rustc --explain E0308`.

View file

@ -1,15 +1,16 @@
fn main() {} fn main() {}
const FOO: [u8; 3] = { //~ ERROR this code is interpreted as a block expression const FOO: [u8; 3] = {
//~^ ERROR this is a block expression, not an array
1, 2, 3 1, 2, 3
}; };
const BAR: [&str; 3] = {"one", "two", "three"}; const BAR: [&str; 3] = {"one", "two", "three"};
//~^ ERROR this code is interpreted as a block expression //~^ ERROR this is a block expression, not an array
fn foo() { fn foo() {
{1, 2, 3}; {1, 2, 3};
//~^ ERROR this code is interpreted as a block expression //~^ ERROR this is a block expression, not an array
} }
fn bar() { fn bar() {

View file

@ -1,46 +1,45 @@
error: this code is interpreted as a block expression, not an array error: this is a block expression, not an array
--> $DIR/issue-87830-try-brackets-for-arrays.rs:3:22 --> $DIR/issue-87830-try-brackets-for-arrays.rs:3:22
| |
LL | const FOO: [u8; 3] = { LL | const FOO: [u8; 3] = {
| ______________________^ | ______________________^
LL | |
LL | | 1, 2, 3 LL | | 1, 2, 3
LL | | }; LL | | };
| |_^ | |_^
| |
= note: to define an array, one would use square brackets instead of curly braces help: to make an array, use square brackets instead of curly braces
help: try using [] instead of {}
| |
LL ~ const FOO: [u8; 3] = [ LL ~ const FOO: [u8; 3] = [
LL |
LL | 1, 2, 3 LL | 1, 2, 3
LL ~ ]; LL ~ ];
| |
error: this code is interpreted as a block expression, not an array error: this is a block expression, not an array
--> $DIR/issue-87830-try-brackets-for-arrays.rs:7:24 --> $DIR/issue-87830-try-brackets-for-arrays.rs:8:24
| |
LL | const BAR: [&str; 3] = {"one", "two", "three"}; LL | const BAR: [&str; 3] = {"one", "two", "three"};
| ^^^^^^^^^^^^^^^^^^^^^^^ | ^^^^^^^^^^^^^^^^^^^^^^^
| |
= note: to define an array, one would use square brackets instead of curly braces help: to make an array, use square brackets instead of curly braces
help: try using [] instead of {}
| |
LL | const BAR: [&str; 3] = ["one", "two", "three"]; LL | const BAR: [&str; 3] = ["one", "two", "three"];
| ~ ~ | ~ ~
error: this code is interpreted as a block expression, not an array error: this is a block expression, not an array
--> $DIR/issue-87830-try-brackets-for-arrays.rs:11:5 --> $DIR/issue-87830-try-brackets-for-arrays.rs:12:5
| |
LL | {1, 2, 3}; LL | {1, 2, 3};
| ^^^^^^^^^ | ^^^^^^^^^
| |
= note: to define an array, one would use square brackets instead of curly braces help: to make an array, use square brackets instead of curly braces
help: try using [] instead of {}
| |
LL | [1, 2, 3]; LL | [1, 2, 3];
| ~ ~ | ~ ~
error: expected one of `.`, `;`, `?`, `}`, or an operator, found `,` error: expected one of `.`, `;`, `?`, `}`, or an operator, found `,`
--> $DIR/issue-87830-try-brackets-for-arrays.rs:16:6 --> $DIR/issue-87830-try-brackets-for-arrays.rs:17:6
| |
LL | 1, 2, 3 LL | 1, 2, 3
| ^ expected one of `.`, `;`, `?`, `}`, or an operator | ^ expected one of `.`, `;`, `?`, `}`, or an operator