2023-02-07 18:02:20 +00:00
|
|
|
error[E0277]: `&T` needs to have the same alignment and size as a pointer
|
2022-11-12 22:27:18 +00:00
|
|
|
--> $DIR/check-size-at-cast-polymorphic-bad.rs:11:15
|
|
|
|
|
|
|
|
|
LL | dyn_debug(t);
|
2023-02-07 18:02:20 +00:00
|
|
|
| ^ `&T` needs to be a pointer-like type
|
2022-11-12 22:27:18 +00:00
|
|
|
|
|
2023-02-07 18:02:20 +00:00
|
|
|
= help: the trait `PointerLike` is not implemented for `&T`
|
2022-11-12 22:27:18 +00:00
|
|
|
help: consider introducing a `where` clause, but there might be an alternative better way to express this requirement
|
|
|
|
|
|
2023-02-07 18:02:20 +00:00
|
|
|
LL | fn polymorphic<T: Debug + ?Sized>(t: &T) where &T: PointerLike {
|
|
|
|
| +++++++++++++++++++++
|
2022-11-12 22:27:18 +00:00
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0277`.
|