@@ -34,17 +34,6 @@ LL | let _: &mut u32 = x;
34
34
error[E0308]: mismatched types
35
35
--> $DIR/ref_pat_eat_one_layer_2024_fail.rs:17:23
36
36
|
37
- LL | if let Some(&Some(&_)) = Some(&Some(&mut 0)) {
38
- | ^^ ------------------- this expression has type `Option<&Option<&mut {integer}>>`
39
- | |
40
- | types differ in mutability
41
- |
42
- = note: expected mutable reference `&mut {integer}`
43
- found reference `&_`
44
-
45
- error[E0308]: mismatched types
46
- --> $DIR/ref_pat_eat_one_layer_2024_fail.rs:20:23
47
- |
48
37
LL | if let Some(&Some(&mut _)) = &mut Some(&Some(0)) {
49
38
| ^^^^^^ ------------------- this expression has type `&mut Option<&Option<{integer}>>`
50
39
| |
@@ -54,7 +43,7 @@ LL | if let Some(&Some(&mut _)) = &mut Some(&Some(0)) {
54
43
found mutable reference `&mut _`
55
44
56
45
error[E0308]: mismatched types
57
- --> $DIR/ref_pat_eat_one_layer_2024_fail.rs:23 :29
46
+ --> $DIR/ref_pat_eat_one_layer_2024_fail.rs:20 :29
58
47
|
59
48
LL | if let Some(&Some(Some((&mut _)))) = &Some(Some(&mut Some(0))) {
60
49
| ^^^^^^ ------------------------- this expression has type `&Option<Option<&mut Option<{integer}>>>`
@@ -65,18 +54,40 @@ LL | if let Some(&Some(Some((&mut _)))) = &Some(Some(&mut Some(0))) {
65
54
found mutable reference `&mut _`
66
55
67
56
error[E0308]: mismatched types
68
- --> $DIR/ref_pat_eat_one_layer_2024_fail.rs:28:9
57
+ --> $DIR/ref_pat_eat_one_layer_2024_fail.rs:23:17
58
+ |
59
+ LL | if let Some(&mut Some(x)) = &Some(Some(0)) {
60
+ | ^^^^^^^^^^^^ -------------- this expression has type `&Option<Option<{integer}>>`
61
+ | |
62
+ | expected `Option<{integer}>`, found `&mut _`
63
+ |
64
+ = note: expected enum `Option<{integer}>`
65
+ found mutable reference `&mut _`
66
+
67
+ error[E0308]: mismatched types
68
+ --> $DIR/ref_pat_eat_one_layer_2024_fail.rs:26:17
69
+ |
70
+ LL | if let Some(&mut Some(x)) = &Some(Some(0)) {
71
+ | ^^^^^^^^^^^^ -------------- this expression has type `&Option<Option<{integer}>>`
72
+ | |
73
+ | expected `Option<{integer}>`, found `&mut _`
74
+ |
75
+ = note: expected enum `Option<{integer}>`
76
+ found mutable reference `&mut _`
77
+
78
+ error[E0308]: mismatched types
79
+ --> $DIR/ref_pat_eat_one_layer_2024_fail.rs:30:9
69
80
|
70
- LL | let &mut _= &&0;
71
- | ^^^^^^ --- this expression has type `&&{integer}`
81
+ LL | let &mut _ = &&0;
82
+ | ^^^^^^ --- this expression has type `&&{integer}`
72
83
| |
73
84
| expected integer, found `&mut _`
74
85
|
75
86
= note: expected type `{integer}`
76
87
found mutable reference `&mut _`
77
88
78
89
error[E0308]: mismatched types
79
- --> $DIR/ref_pat_eat_one_layer_2024_fail.rs:31 :9
90
+ --> $DIR/ref_pat_eat_one_layer_2024_fail.rs:33 :9
80
91
|
81
92
LL | let &mut _ = &&&&&&&&&&&&&&&&&&&&&&&&&&&&0;
82
93
| ^^^^^^ ----------------------------- this expression has type `&&&&&&&&&&&&&&&&&&&&&&&&&&&&{integer}`
@@ -86,6 +97,6 @@ LL | let &mut _ = &&&&&&&&&&&&&&&&&&&&&&&&&&&&0;
86
97
= note: expected type `{integer}`
87
98
found mutable reference `&mut _`
88
99
89
- error: aborting due to 8 previous errors
100
+ error: aborting due to 9 previous errors
90
101
91
102
For more information about this error, try `rustc --explain E0308`.
0 commit comments