about summary refs log tree commit diff
path: root/tests/ui/sized-hierarchy/reject-dyn-pointeesized.stderr
blob: 616b2400f86501e0b7b5a7d20f2a3f83e492436a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
error[E0224]: at least one trait is required for an object type
  --> $DIR/reject-dyn-pointeesized.rs:5:12
   |
LL | type Foo = dyn PointeeSized;
   |            ^^^^^^^^^^^^^^^^

error[E0224]: at least one trait is required for an object type
  --> $DIR/reject-dyn-pointeesized.rs:14:16
   |
LL |     let y: Box<dyn PointeeSized> = x;
   |                ^^^^^^^^^^^^^^^^

error: aborting due to 2 previous errors

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