rust/src/test/ui/resolve/resolve-inconsistent-binding-mode.stderr

54 lines
1.8 KiB
Plaintext
Raw Normal View History

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
|
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
|
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
|
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
|
LL | Opts::A(ref i) | Opts::B(i) => {}
2018-08-08 07:28:26 -05:00
| ^ expected &isize, found isize
|
= note: expected type `&isize`
found type `isize`
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
|
LL | Opts::A(ref i) | Opts::B(i) => {}
2018-08-08 07:28:26 -05:00
| ^ expected &isize, found isize
|
= note: expected type `&isize`
found type `isize`
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
|
LL | Opts::A(ref mut i) | Opts::B(ref i) => {}
2018-08-08 07:28:26 -05:00
| ^^^^^ types differ in mutability
|
= note: expected type `&mut isize`
found type `&isize`
error: aborting due to 6 previous errors
Some errors occurred: E0308, E0409.
For more information about an error, try `rustc --explain E0308`.