2020-03-04 03:58:52 +01:00
|
|
|
error[E0409]: variable `i` is bound inconsistently across alternatives separated by `|`
|
|
|
|
--> $DIR/resolve-inconsistent-binding-mode.rs:9:34
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
2020-03-04 03:58:52 +01:00
|
|
|
LL | Opts::A(ref i) | Opts::B(i) => {}
|
|
|
|
| - ^ bound in different ways
|
|
|
|
| |
|
|
|
|
| first binding
|
2018-08-08 14:28:26 +02:00
|
|
|
|
2020-03-04 03:58:52 +01:00
|
|
|
error[E0409]: variable `i` is bound inconsistently across alternatives separated by `|`
|
|
|
|
--> $DIR/resolve-inconsistent-binding-mode.rs:18:34
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
2020-03-04 03:58:52 +01:00
|
|
|
LL | Opts::A(ref i) | Opts::B(i) => {}
|
|
|
|
| - ^ bound in different ways
|
|
|
|
| |
|
|
|
|
| first binding
|
2018-08-08 14:28:26 +02:00
|
|
|
|
2020-03-04 03:58:52 +01:00
|
|
|
error[E0409]: variable `i` is bound inconsistently across alternatives separated by `|`
|
|
|
|
--> $DIR/resolve-inconsistent-binding-mode.rs:27:42
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
2020-03-04 03:58:52 +01:00
|
|
|
LL | Opts::A(ref mut i) | Opts::B(ref i) => {}
|
|
|
|
| - first binding ^ bound in different ways
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
|
|
error[E0308]: mismatched types
|
2020-03-04 03:58:52 +01:00
|
|
|
--> $DIR/resolve-inconsistent-binding-mode.rs:9:34
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
2019-12-30 09:08:18 +01:00
|
|
|
LL | match x {
|
|
|
|
| - this expression has type `Opts`
|
2020-03-04 03:58:52 +01:00
|
|
|
LL | Opts::A(ref i) | Opts::B(i) => {}
|
|
|
|
| ----- ^ expected `&isize`, found `isize`
|
|
|
|
| |
|
|
|
|
| first introduced with type `&isize` here
|
2020-02-25 05:30:43 +01:00
|
|
|
|
|
|
|
|
= note: in the same arm, a binding must have the same type in all alternatives
|
2022-07-28 09:55:12 +09:00
|
|
|
help: consider adding `ref`
|
|
|
|
|
|
|
|
|
LL | Opts::A(ref i) | Opts::B(ref i) => {}
|
|
|
|
| +++
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
|
|
error[E0308]: mismatched types
|
2020-03-04 03:58:52 +01:00
|
|
|
--> $DIR/resolve-inconsistent-binding-mode.rs:18:34
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
2019-12-30 09:08:18 +01:00
|
|
|
LL | match x {
|
|
|
|
| - this expression has type `Opts`
|
2020-03-04 03:58:52 +01:00
|
|
|
LL | Opts::A(ref i) | Opts::B(i) => {}
|
|
|
|
| ----- ^ expected `&isize`, found `isize`
|
|
|
|
| |
|
|
|
|
| first introduced with type `&isize` here
|
2020-02-25 05:30:43 +01:00
|
|
|
|
|
|
|
|
= note: in the same arm, a binding must have the same type in all alternatives
|
2022-07-28 09:55:12 +09:00
|
|
|
help: consider adding `ref`
|
|
|
|
|
|
|
|
|
LL | Opts::A(ref i) | Opts::B(ref i) => {}
|
|
|
|
| +++
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
|
|
error[E0308]: mismatched types
|
2020-03-04 03:58:52 +01:00
|
|
|
--> $DIR/resolve-inconsistent-binding-mode.rs:27:38
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
2019-12-30 09:08:18 +01:00
|
|
|
LL | match x {
|
|
|
|
| - this expression has type `Opts`
|
2020-03-04 03:58:52 +01:00
|
|
|
LL | Opts::A(ref mut i) | Opts::B(ref i) => {}
|
|
|
|
| --------- ^^^^^ types differ in mutability
|
|
|
|
| |
|
|
|
|
| first introduced with type `&mut isize` here
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
2023-12-07 22:54:41 -05:00
|
|
|
= note: expected mutable reference `&mut _`
|
|
|
|
found reference `&_`
|
2020-02-25 05:30:43 +01:00
|
|
|
= note: in the same arm, a binding must have the same type in all alternatives
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
|
|
error: aborting due to 6 previous errors
|
|
|
|
|
2019-04-17 13:26:38 -04:00
|
|
|
Some errors have detailed explanations: E0308, E0409.
|
2018-08-08 14:28:26 +02:00
|
|
|
For more information about an error, try `rustc --explain E0308`.
|