2018-08-08 14:28:26 +02:00
|
|
|
error[E0033]: type `&dyn T` cannot be dereferenced
|
2018-12-25 08:56:47 -07:00
|
|
|
--> $DIR/destructure-trait-ref.rs:26:9
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
2019-03-09 15:03:44 +03:00
|
|
|
LL | let &x = &1isize as &T;
|
2018-08-08 14:28:26 +02:00
|
|
|
| ^^ type `&dyn T` cannot be dereferenced
|
|
|
|
|
|
|
|
error[E0033]: type `&dyn T` cannot be dereferenced
|
2018-12-25 08:56:47 -07:00
|
|
|
--> $DIR/destructure-trait-ref.rs:27:10
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
2019-03-09 15:03:44 +03:00
|
|
|
LL | let &&x = &(&1isize as &T);
|
2018-08-08 14:28:26 +02:00
|
|
|
| ^^ type `&dyn T` cannot be dereferenced
|
|
|
|
|
|
|
|
error[E0033]: type `std::boxed::Box<dyn T>` cannot be dereferenced
|
2018-12-25 08:56:47 -07:00
|
|
|
--> $DIR/destructure-trait-ref.rs:28:9
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
2019-03-09 15:03:44 +03:00
|
|
|
LL | let box x = box 1isize as Box<T>;
|
2018-08-08 14:28:26 +02:00
|
|
|
| ^^^^^ type `std::boxed::Box<dyn T>` cannot be dereferenced
|
|
|
|
|
|
|
|
error[E0308]: mismatched types
|
2018-12-25 08:56:47 -07:00
|
|
|
--> $DIR/destructure-trait-ref.rs:31:10
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
|
|
|
LL | let &&x = &1isize as &T;
|
2019-04-29 19:02:54 -07:00
|
|
|
| ^^
|
|
|
|
| |
|
|
|
|
| expected trait T, found reference
|
2019-04-29 19:56:50 -07:00
|
|
|
| help: you can probably remove the explicit borrow: `x`
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
|
|
|
= note: expected type `dyn T`
|
|
|
|
found type `&_`
|
|
|
|
|
|
|
|
error[E0308]: mismatched types
|
2018-12-25 08:56:47 -07:00
|
|
|
--> $DIR/destructure-trait-ref.rs:36:11
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
|
|
|
LL | let &&&x = &(&1isize as &T);
|
2019-04-29 19:02:54 -07:00
|
|
|
| ^^
|
|
|
|
| |
|
|
|
|
| expected trait T, found reference
|
2019-04-29 19:56:50 -07:00
|
|
|
| help: you can probably remove the explicit borrow: `x`
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
|
|
|
= note: expected type `dyn T`
|
|
|
|
found type `&_`
|
|
|
|
|
|
|
|
error[E0308]: mismatched types
|
2018-12-25 08:56:47 -07:00
|
|
|
--> $DIR/destructure-trait-ref.rs:41:13
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
|
|
|
LL | let box box x = box 1isize as Box<T>;
|
|
|
|
| ^^^^^ expected trait T, found struct `std::boxed::Box`
|
|
|
|
|
|
|
|
|
= note: expected type `dyn T`
|
|
|
|
found type `std::boxed::Box<_>`
|
|
|
|
|
|
|
|
error: aborting due to 6 previous errors
|
|
|
|
|
2019-04-17 13:26:38 -04:00
|
|
|
Some errors have detailed explanations: E0033, E0308.
|
2018-08-08 14:28:26 +02:00
|
|
|
For more information about an error, try `rustc --explain E0033`.
|