2023-03-20 20:53:43 +00:00
|
|
|
error[E0277]: `&T` needs to have the same ABI as a pointer
|
2023-05-12 00:58:02 +00:00
|
|
|
--> $DIR/check-size-at-cast-polymorphic-bad.rs:14:15
|
2022-11-12 22:27:18 +00:00
|
|
|
|
|
|
|
|
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`.
|