rust/src/test/ui/dst/dst-bad-coerce2.stderr
Vadim Petrochenkov fa72a81bea Update tests
2019-03-11 23:10:26 +03:00

40 lines
1.1 KiB
Plaintext

error[E0308]: mismatched types
--> $DIR/dst-bad-coerce2.rs:15:33
|
LL | let f3: &mut Fat<[isize]> = f2;
| ^^ types differ in mutability
|
= note: expected type `&mut Fat<[isize]>`
found type `&Fat<[isize; 3]>`
error[E0308]: mismatched types
--> $DIR/dst-bad-coerce2.rs:20:29
|
LL | let f3: &mut Fat<Bar> = f2;
| ^^ types differ in mutability
|
= note: expected type `&mut Fat<dyn Bar>`
found type `&Fat<Foo>`
error[E0308]: mismatched types
--> $DIR/dst-bad-coerce2.rs:25:31
|
LL | let f3: &mut ([isize],) = f2;
| ^^ types differ in mutability
|
= note: expected type `&mut ([isize],)`
found type `&([isize; 3],)`
error[E0308]: mismatched types
--> $DIR/dst-bad-coerce2.rs:30:27
|
LL | let f3: &mut (Bar,) = f2;
| ^^ 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`.