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

40 lines
1.3 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 mutable reference `&mut Fat<[isize]>`
found reference `&Fat<[isize; 3]>`
2018-08-08 07:28:26 -05:00
error[E0308]: mismatched types
2019-05-28 13:46:13 -05:00
--> $DIR/dst-bad-coerce2.rs:20:33
2018-08-08 07:28:26 -05:00
|
2019-05-28 13:46:13 -05:00
LL | let f3: &mut Fat<dyn Bar> = f2;
| ^^ types differ in mutability
2018-08-08 07:28:26 -05:00
|
= note: expected mutable reference `&mut Fat<dyn Bar>`
found reference `&Fat<Foo>`
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: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 mutable reference `&mut ([isize],)`
found reference `&([isize; 3],)`
2018-08-08 07:28:26 -05:00
error[E0308]: mismatched types
2019-05-28 13:46:13 -05:00
--> $DIR/dst-bad-coerce2.rs:30:31
2018-08-08 07:28:26 -05:00
|
2019-05-28 13:46:13 -05:00
LL | let f3: &mut (dyn Bar,) = f2;
| ^^ types differ in mutability
2018-08-08 07:28:26 -05:00
|
= note: expected mutable reference `&mut (dyn Bar,)`
found reference `&(Foo,)`
2018-08-08 07:28:26 -05:00
error: aborting due to 4 previous errors
For more information about this error, try `rustc --explain E0308`.