blob: 6fb5c4b32ef12449ad70151e1cac3f34f52a0e9b [file] [log] [blame]
error[E0308]: mismatched types
--> $DIR/dst-bad-coerce2.rs:15:33
|
LL | let f3: &mut Fat<[isize]> = f2; //~ ERROR mismatched types
| ^^ 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; //~ ERROR mismatched types
| ^^ 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; //~ ERROR mismatched types
| ^^ 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; //~ ERROR mismatched types
| ^^ 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`.