rust/tests/ui/dst/dst-bad-coerce2.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

48 lines
1.5 KiB
Plaintext
Raw Normal View History

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