blob: c7c832dc40affae58284467c5c5762ed6ed13234 [file] [log] [blame]
error[E0033]: type `&dyn T` cannot be dereferenced
--> $DIR/trait-object-destructure.rs:21:9
|
LL | let &x = &1isize as &dyn T;
| ^^ type `&dyn T` cannot be dereferenced
error[E0033]: type `&dyn T` cannot be dereferenced
--> $DIR/trait-object-destructure.rs:22:10
|
LL | let &&x = &(&1isize as &dyn T);
| ^^ type `&dyn T` cannot be dereferenced
error[E0033]: type `Box<dyn T>` cannot be dereferenced
--> $DIR/trait-object-destructure.rs:23:9
|
LL | let box x = Box::new(1isize) as Box<dyn T>;
| ^^^^^ type `Box<dyn T>` cannot be dereferenced
error[E0308]: mismatched types
--> $DIR/trait-object-destructure.rs:26:10
|
LL | let &&x = &1isize as &dyn T;
| ^^ ----------------- this expression has type `&dyn T`
| |
| expected `dyn T`, found `&_`
|
= note: expected trait object `dyn T`
found reference `&_`
help: consider removing `&` from the pattern
|
LL - let &&x = &1isize as &dyn T;
LL + let &x = &1isize as &dyn T;
|
error[E0308]: mismatched types
--> $DIR/trait-object-destructure.rs:27:11
|
LL | let &&&x = &(&1isize as &dyn T);
| ^^ -------------------- this expression has type `&&dyn T`
| |
| expected `dyn T`, found `&_`
|
= note: expected trait object `dyn T`
found reference `&_`
help: consider removing `&` from the pattern
|
LL - let &&&x = &(&1isize as &dyn T);
LL + let &&x = &(&1isize as &dyn T);
|
error[E0308]: mismatched types
--> $DIR/trait-object-destructure.rs:28:13
|
LL | let box box x = Box::new(1isize) as Box<dyn T>;
| ^^^^^ ------------------------------ this expression has type `Box<dyn T>`
| |
| expected `dyn T`, found `Box<_>`
|
= note: expected trait object `dyn T`
found struct `Box<_>`
error: aborting due to 6 previous errors
Some errors have detailed explanations: E0033, E0308.
For more information about an error, try `rustc --explain E0033`.