Skip to content

Commit 97aa4ba

Browse files
committed
Fix unwrap on None
1 parent 34ccd04 commit 97aa4ba

File tree

3 files changed

+68
-2
lines changed

3 files changed

+68
-2
lines changed

compiler/rustc_hir_typeck/src/fn_ctxt/suggestions.rs

+1-2
Original file line numberDiff line numberDiff line change
@@ -1620,8 +1620,7 @@ impl<'a, 'tcx> FnCtxt<'a, 'tcx> {
16201620
.iter()
16211621
.enumerate()
16221622
.filter(|x| x.1.hir_id == *hir_id)
1623-
.map(|(i, _)| init_tup.get(i).unwrap())
1624-
.next()
1623+
.find_map(|(i, _)| init_tup.get(i))
16251624
{
16261625
self.note_type_is_not_clone_inner_expr(init)
16271626
} else {

tests/ui/typeck/issue-114423.rs

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
struct RGB {
2+
g: f64,
3+
b: f64,
4+
}
5+
6+
fn main() {
7+
let (r, alone_in_path, b): (f32, f32, f32) = (e.clone(), e.clone());
8+
//~^ ERROR cannot find value `e` in this scope
9+
//~| ERROR cannot find value `e` in this scope
10+
//~| ERROR mismatched types
11+
let _ = RGB { r, g, b };
12+
//~^ ERROR cannot find value `g` in this scope
13+
//~| ERROR struct `RGB` has no field named `r`
14+
//~| ERROR mismatched types
15+
}

tests/ui/typeck/issue-114423.stderr

+52
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
error[E0425]: cannot find value `e` in this scope
2+
--> $DIR/issue-114423.rs:7:51
3+
|
4+
LL | let (r, alone_in_path, b): (f32, f32, f32) = (e.clone(), e.clone());
5+
| ^ not found in this scope
6+
7+
error[E0425]: cannot find value `e` in this scope
8+
--> $DIR/issue-114423.rs:7:62
9+
|
10+
LL | let (r, alone_in_path, b): (f32, f32, f32) = (e.clone(), e.clone());
11+
| ^ not found in this scope
12+
13+
error[E0425]: cannot find value `g` in this scope
14+
--> $DIR/issue-114423.rs:11:22
15+
|
16+
LL | let _ = RGB { r, g, b };
17+
| ^ help: a local variable with a similar name exists: `b`
18+
19+
error[E0308]: mismatched types
20+
--> $DIR/issue-114423.rs:7:50
21+
|
22+
LL | let (r, alone_in_path, b): (f32, f32, f32) = (e.clone(), e.clone());
23+
| --------------- ^^^^^^^^^^^^^^^^^^^^^^ expected a tuple with 3 elements, found one with 2 elements
24+
| |
25+
| expected due to this
26+
|
27+
= note: expected tuple `(f32, f32, f32)`
28+
found tuple `(f32, f32)`
29+
30+
error[E0560]: struct `RGB` has no field named `r`
31+
--> $DIR/issue-114423.rs:11:19
32+
|
33+
LL | let _ = RGB { r, g, b };
34+
| ^ `RGB` does not have this field
35+
|
36+
= note: all struct fields are already assigned
37+
38+
error[E0308]: mismatched types
39+
--> $DIR/issue-114423.rs:11:25
40+
|
41+
LL | let _ = RGB { r, g, b };
42+
| ^ expected `f64`, found `f32`
43+
|
44+
help: you can convert an `f32` to an `f64`
45+
|
46+
LL | let _ = RGB { r, g, b: b.into() };
47+
| ++ +++++++
48+
49+
error: aborting due to 6 previous errors
50+
51+
Some errors have detailed explanations: E0308, E0425, E0560.
52+
For more information about an error, try `rustc --explain E0308`.

0 commit comments

Comments
 (0)