2018-08-08 07:28:26 -05:00
|
|
|
error[E0409]: variable `i` is bound in inconsistent ways within the same match arm
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/resolve-inconsistent-binding-mode.rs:7:32
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
2018-12-16 21:21:47 -06:00
|
|
|
LL | Opts::A(ref i) | Opts::B(i) => {}
|
2018-08-08 07:28:26 -05:00
|
|
|
| - ^ bound in different ways
|
|
|
|
| |
|
|
|
|
| first binding
|
|
|
|
|
|
|
|
error[E0409]: variable `i` is bound in inconsistent ways within the same match arm
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/resolve-inconsistent-binding-mode.rs:16:32
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
2018-12-16 21:21:47 -06:00
|
|
|
LL | Opts::A(ref i) | Opts::B(i) => {}
|
2018-08-08 07:28:26 -05:00
|
|
|
| - ^ bound in different ways
|
|
|
|
| |
|
|
|
|
| first binding
|
|
|
|
|
|
|
|
error[E0409]: variable `i` is bound in inconsistent ways within the same match arm
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/resolve-inconsistent-binding-mode.rs:25:40
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
2018-12-16 21:21:47 -06:00
|
|
|
LL | Opts::A(ref mut i) | Opts::B(ref i) => {}
|
2018-08-08 07:28:26 -05:00
|
|
|
| - first binding ^ bound in different ways
|
|
|
|
|
|
|
|
error[E0308]: mismatched types
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/resolve-inconsistent-binding-mode.rs:7:32
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
2019-12-30 02:08:18 -06:00
|
|
|
LL | match x {
|
|
|
|
| - this expression has type `Opts`
|
2018-12-16 21:21:47 -06:00
|
|
|
LL | Opts::A(ref i) | Opts::B(i) => {}
|
2020-02-24 22:30:43 -06:00
|
|
|
| ----- ^ expected `&isize`, found `isize`
|
|
|
|
| |
|
|
|
|
| first introduced with type `&isize` here
|
|
|
|
|
|
|
|
|
= note: in the same arm, a binding must have the same type in all alternatives
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
error[E0308]: mismatched types
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/resolve-inconsistent-binding-mode.rs:16:32
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
2019-12-30 02:08:18 -06:00
|
|
|
LL | match x {
|
|
|
|
| - this expression has type `Opts`
|
2018-12-16 21:21:47 -06:00
|
|
|
LL | Opts::A(ref i) | Opts::B(i) => {}
|
2020-02-24 22:30:43 -06:00
|
|
|
| ----- ^ expected `&isize`, found `isize`
|
|
|
|
| |
|
|
|
|
| first introduced with type `&isize` here
|
|
|
|
|
|
|
|
|
= note: in the same arm, a binding must have the same type in all alternatives
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
error[E0308]: mismatched types
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/resolve-inconsistent-binding-mode.rs:25:36
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
2019-12-30 02:08:18 -06:00
|
|
|
LL | match x {
|
|
|
|
| - this expression has type `Opts`
|
2018-12-16 21:21:47 -06:00
|
|
|
LL | Opts::A(ref mut i) | Opts::B(ref i) => {}
|
2020-02-24 22:30:43 -06:00
|
|
|
| --------- ^^^^^ types differ in mutability
|
|
|
|
| |
|
|
|
|
| first introduced with type `&mut isize` here
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
|
= note: expected type `&mut isize`
|
|
|
|
found type `&isize`
|
2020-02-24 22:30:43 -06:00
|
|
|
= note: in the same arm, a binding must have the same type in all alternatives
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
error: aborting due to 6 previous errors
|
|
|
|
|
2019-04-17 12:26:38 -05:00
|
|
|
Some errors have detailed explanations: E0308, E0409.
|
2018-08-08 07:28:26 -05:00
|
|
|
For more information about an error, try `rustc --explain E0308`.
|