Skip to content

Commit 506a0df

Browse files
committed
Do not consider using a semicolon inside of a different-crate macro
Fixes rust-lang#81943
1 parent 7fafa4d commit 506a0df

File tree

3 files changed

+34
-1
lines changed

3 files changed

+34
-1
lines changed

compiler/rustc_typeck/src/check/coercion.rs

+9-1
Original file line numberDiff line numberDiff line change
@@ -1448,7 +1448,15 @@ impl<'tcx, 'exprs, E: AsCoercionSite> CoerceMany<'tcx, 'exprs, E> {
14481448
expected.is_unit(),
14491449
pointing_at_return_type,
14501450
) {
1451-
if cond_expr.span.desugaring_kind().is_none() {
1451+
// If the block is from a macro, then do not suggest
1452+
// adding a semicolon, because there's nowhere to put it.
1453+
// See issue #81943.
1454+
let hir = fcx.tcx.hir();
1455+
let body_owner =
1456+
hir.body_owner(hir.body_owned_by(hir.enclosing_body_owner(fcx.body_id)));
1457+
let from_same_crate = cond_expr.span.ctxt().dollar_crate_name()
1458+
== hir.span(body_owner).ctxt().dollar_crate_name();
1459+
if cond_expr.span.desugaring_kind().is_none() && from_same_crate {
14521460
err.span_label(cond_expr.span, "expected this to be `()`");
14531461
fcx.suggest_semicolon_at_end(cond_expr.span, &mut err);
14541462
}

src/test/ui/typeck/issue-81943.rs

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
fn f<F: Fn(i32)>(f: F) { f(0); }
2+
fn main() {
3+
f(|x| dbg!(x)); //~ERROR
4+
f(|x| match x { tmp => { tmp } }); //~ERROR
5+
}

src/test/ui/typeck/issue-81943.stderr

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
error[E0308]: mismatched types
2+
--> $DIR/issue-81943.rs:3:9
3+
|
4+
LL | f(|x| dbg!(x));
5+
| ^^^^^^^ expected `()`, found `i32`
6+
|
7+
= note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
8+
9+
error[E0308]: mismatched types
10+
--> $DIR/issue-81943.rs:4:28
11+
|
12+
LL | f(|x| match x { tmp => { tmp } });
13+
| -------------------^^^----- help: consider using a semicolon here
14+
| | |
15+
| | expected `()`, found `i32`
16+
| expected this to be `()`
17+
18+
error: aborting due to 2 previous errors
19+
20+
For more information about this error, try `rustc --explain E0308`.

0 commit comments

Comments
 (0)