]> git.lizzy.rs Git - rust.git/blob - src/test/ui/resolve/resolve-inconsistent-binding-mode.stderr
Rollup merge of #67807 - lzutao:toilet-closure, r=Centril
[rust.git] / src / test / ui / resolve / resolve-inconsistent-binding-mode.stderr
1 error[E0409]: variable `i` is bound in inconsistent ways within the same match arm
2   --> $DIR/resolve-inconsistent-binding-mode.rs:7:32
3    |
4 LL |       Opts::A(ref i) | Opts::B(i) => {}
5    |                   -            ^ bound in different ways
6    |                   |
7    |                   first binding
8
9 error[E0409]: variable `i` is bound in inconsistent ways within the same match arm
10   --> $DIR/resolve-inconsistent-binding-mode.rs:16:32
11    |
12 LL |       Opts::A(ref i) | Opts::B(i) => {}
13    |                   -            ^ bound in different ways
14    |                   |
15    |                   first binding
16
17 error[E0409]: variable `i` is bound in inconsistent ways within the same match arm
18   --> $DIR/resolve-inconsistent-binding-mode.rs:25:40
19    |
20 LL |       Opts::A(ref mut i) | Opts::B(ref i) => {}
21    |                       - first binding  ^ bound in different ways
22
23 error[E0308]: mismatched types
24   --> $DIR/resolve-inconsistent-binding-mode.rs:7:32
25    |
26 LL |     match x {
27    |           - this expression has type `Opts`
28 LL |       Opts::A(ref i) | Opts::B(i) => {}
29    |                                ^ expected `&isize`, found `isize`
30
31 error[E0308]: mismatched types
32   --> $DIR/resolve-inconsistent-binding-mode.rs:16:32
33    |
34 LL |     match x {
35    |           - this expression has type `Opts`
36 LL |       Opts::A(ref i) | Opts::B(i) => {}
37    |                                ^ expected `&isize`, found `isize`
38
39 error[E0308]: mismatched types
40   --> $DIR/resolve-inconsistent-binding-mode.rs:25:36
41    |
42 LL |     match x {
43    |           - this expression has type `Opts`
44 LL |       Opts::A(ref mut i) | Opts::B(ref i) => {}
45    |                                    ^^^^^ types differ in mutability
46    |
47    = note: expected type `&mut isize`
48               found type `&isize`
49
50 error: aborting due to 6 previous errors
51
52 Some errors have detailed explanations: E0308, E0409.
53 For more information about an error, try `rustc --explain E0308`.