blob: a833c6952fdc5f702f882231f019dbf0584d123d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
error: `PointeeSized` cannot be used with trait objects
--> $DIR/reject-dyn-pointeesized.rs:5:12
|
LL | type Foo = dyn PointeeSized;
| ^^^^^^^^^^^^^^^^
error: `PointeeSized` cannot be used with trait objects
--> $DIR/reject-dyn-pointeesized.rs:14:16
|
LL | let y: Box<dyn PointeeSized> = x;
| ^^^^^^^^^^^^^^^^
error: aborting due to 2 previous errors
|