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