2018-08-08 07:28:26 -05:00
|
|
|
error[E0038]: the trait `Expr` cannot be made into an object
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/object-safety-issue-22040.rs:12:23
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
2020-02-02 14:51:30 -06:00
|
|
|
LL | trait Expr: Debug + PartialEq {
|
|
|
|
| ---- --------- ...because it uses `Self` as a type parameter in this
|
|
|
|
| |
|
|
|
|
| this trait cannot be made into an object...
|
|
|
|
...
|
2019-05-28 13:46:13 -05:00
|
|
|
LL | elements: Vec<Box<dyn Expr + 'x>>,
|
|
|
|
| ^^^^^^^^^^^^^ the trait `Expr` cannot be made into an object
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0038`.
|