]> git.lizzy.rs Git - rust.git/blob - src/test/ui/resolve/resolve-inconsistent-binding-mode.stderr
Rollup merge of #67059 - TommasoBianchi:dropck_fix_pr, r=pnkfelix
[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 |       Opts::A(ref i) | Opts::B(i) => {}
27    |                                ^ expected `&isize`, found `isize`
28
29 error[E0308]: mismatched types
30   --> $DIR/resolve-inconsistent-binding-mode.rs:16:32
31    |
32 LL |       Opts::A(ref i) | Opts::B(i) => {}
33    |                                ^ expected `&isize`, found `isize`
34
35 error[E0308]: mismatched types
36   --> $DIR/resolve-inconsistent-binding-mode.rs:25:36
37    |
38 LL |       Opts::A(ref mut i) | Opts::B(ref i) => {}
39    |                                    ^^^^^ types differ in mutability
40    |
41    = note: expected type `&mut isize`
42               found type `&isize`
43
44 error: aborting due to 6 previous errors
45
46 Some errors have detailed explanations: E0308, E0409.
47 For more information about an error, try `rustc --explain E0308`.