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