Skip to content

Commit 0a51ab9

Browse files
Don't suggest break through nested items
1 parent ad8304a commit 0a51ab9

File tree

3 files changed

+119
-1
lines changed

3 files changed

+119
-1
lines changed

compiler/rustc_hir_typeck/src/fn_ctxt/suggestions.rs

+9-1
Original file line numberDiff line numberDiff line change
@@ -874,7 +874,15 @@ impl<'a, 'tcx> FnCtxt<'a, 'tcx> {
874874
let found = self.resolve_vars_with_obligations(found);
875875

876876
let in_loop = self.is_loop(id)
877-
|| self.tcx.hir().parent_iter(id).any(|(parent_id, _)| self.is_loop(parent_id));
877+
|| self
878+
.tcx
879+
.hir()
880+
.parent_iter(id)
881+
.take_while(|(_, node)| {
882+
// look at parents until we find the first body owner
883+
node.body_id().is_none()
884+
})
885+
.any(|(parent_id, _)| self.is_loop(parent_id));
878886

879887
let in_local_statement = self.is_local_statement(id)
880888
|| self
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
// edition:2021
2+
3+
#![feature(inline_const)]
4+
5+
fn closure() {
6+
loop {
7+
let closure = || {
8+
if true {
9+
Err(1)
10+
//~^ ERROR mismatched types
11+
}
12+
13+
Ok(())
14+
};
15+
}
16+
}
17+
18+
fn async_block() {
19+
loop {
20+
let fut = async {
21+
if true {
22+
Err(1)
23+
//~^ ERROR mismatched types
24+
}
25+
26+
Ok(())
27+
};
28+
}
29+
}
30+
31+
fn fn_item() {
32+
let _ = loop {
33+
fn foo() -> Result<(), ()> {
34+
if true {
35+
Err(1)
36+
//~^ ERROR mismatched types
37+
}
38+
Err(())
39+
}
40+
};
41+
}
42+
43+
fn const_block() {
44+
let _ = loop {
45+
const {
46+
if true {
47+
Err(1)
48+
//~^ ERROR mismatched types
49+
}
50+
Err(())
51+
};
52+
};
53+
}
54+
55+
fn main() {}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
error[E0308]: mismatched types
2+
--> $DIR/dont-suggest-break-thru-item.rs:9:17
3+
|
4+
LL | / if true {
5+
LL | | Err(1)
6+
| | ^^^^^^ expected `()`, found `Result<_, {integer}>`
7+
LL | |
8+
LL | | }
9+
| |_____________- expected this to be `()`
10+
|
11+
= note: expected unit type `()`
12+
found enum `Result<_, {integer}>`
13+
14+
error[E0308]: mismatched types
15+
--> $DIR/dont-suggest-break-thru-item.rs:22:17
16+
|
17+
LL | / if true {
18+
LL | | Err(1)
19+
| | ^^^^^^ expected `()`, found `Result<_, {integer}>`
20+
LL | |
21+
LL | | }
22+
| |_____________- expected this to be `()`
23+
|
24+
= note: expected unit type `()`
25+
found enum `Result<_, {integer}>`
26+
27+
error[E0308]: mismatched types
28+
--> $DIR/dont-suggest-break-thru-item.rs:35:17
29+
|
30+
LL | / if true {
31+
LL | | Err(1)
32+
| | ^^^^^^ expected `()`, found `Result<_, {integer}>`
33+
LL | |
34+
LL | | }
35+
| |_____________- expected this to be `()`
36+
|
37+
= note: expected unit type `()`
38+
found enum `Result<_, {integer}>`
39+
40+
error[E0308]: mismatched types
41+
--> $DIR/dont-suggest-break-thru-item.rs:47:17
42+
|
43+
LL | / if true {
44+
LL | | Err(1)
45+
| | ^^^^^^ expected `()`, found `Result<_, {integer}>`
46+
LL | |
47+
LL | | }
48+
| |_____________- expected this to be `()`
49+
|
50+
= note: expected unit type `()`
51+
found enum `Result<_, {integer}>`
52+
53+
error: aborting due to 4 previous errors
54+
55+
For more information about this error, try `rustc --explain E0308`.

0 commit comments

Comments
 (0)