rust/tests/ui/dyn-star/check-size-at-cast-polymorphic-bad.current.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

16 lines
639 B
Plaintext
Raw Normal View History

error[E0277]: `&T` needs to have the same ABI as a pointer
--> $DIR/check-size-at-cast-polymorphic-bad.rs:15:15
|
LL | dyn_debug(t);
2023-02-07 18:02:20 +00:00
| ^ `&T` needs to be a pointer-like type
|
2023-02-07 18:02:20 +00:00
= help: the trait `PointerLike` is not implemented for `&T`
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 {
| +++++++++++++++++++++
error: aborting due to 1 previous error
For more information about this error, try `rustc --explain E0277`.