rust/src/test/ui/dst/dst-bad-coerce2.stderr

40 lines
1.1 KiB
Plaintext
Raw Normal View History

2018-08-08 07:28:26 -05:00
error[E0308]: mismatched types
2018-12-25 09:56:47 -06:00
--> $DIR/dst-bad-coerce2.rs:15:33
2018-08-08 07:28:26 -05:00
|
2019-03-09 06:03:44 -06:00
LL | let f3: &mut Fat<[isize]> = f2;
2018-08-08 07:28:26 -05:00
| ^^ types differ in mutability
|
= note: expected type `&mut Fat<[isize]>`
found type `&Fat<[isize; 3]>`
error[E0308]: mismatched types
2018-12-25 09:56:47 -06:00
--> $DIR/dst-bad-coerce2.rs:20:29
2018-08-08 07:28:26 -05:00
|
2019-03-09 06:03:44 -06:00
LL | let f3: &mut Fat<Bar> = f2;
2018-08-08 07:28:26 -05:00
| ^^ types differ in mutability
|
= note: expected type `&mut Fat<dyn Bar>`
found type `&Fat<Foo>`
error[E0308]: mismatched types
2018-12-25 09:56:47 -06:00
--> $DIR/dst-bad-coerce2.rs:25:31
2018-08-08 07:28:26 -05:00
|
2019-03-09 06:03:44 -06:00
LL | let f3: &mut ([isize],) = f2;
2018-08-08 07:28:26 -05:00
| ^^ types differ in mutability
|
= note: expected type `&mut ([isize],)`
found type `&([isize; 3],)`
error[E0308]: mismatched types
2018-12-25 09:56:47 -06:00
--> $DIR/dst-bad-coerce2.rs:30:27
2018-08-08 07:28:26 -05:00
|
2019-03-09 06:03:44 -06:00
LL | let f3: &mut (Bar,) = f2;
2018-08-08 07:28:26 -05:00
| ^^ types differ in mutability
|
= note: expected type `&mut (dyn Bar,)`
found type `&(Foo,)`
error: aborting due to 4 previous errors
For more information about this error, try `rustc --explain E0308`.