summaryrefslogtreecommitdiffstats
path: root/tests/ui/dyn-star/check-size-at-cast-polymorphic-bad.stderr
blob: 350630f794138d31a4c28ffe45ed5c0bb0e29fb4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
error[E0277]: `&T` needs to have the same alignment and size as a pointer
  --> $DIR/check-size-at-cast-polymorphic-bad.rs:11:15
   |
LL |     dyn_debug(t);
   |               ^ `&T` needs to be a pointer-like type
   |
   = 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
   |
LL | fn polymorphic<T: Debug + ?Sized>(t: &T) where &T: PointerLike {
   |                                          +++++++++++++++++++++

error: aborting due to previous error

For more information about this error, try `rustc --explain E0277`.