rust/src/test/ui/traits/trait-object-vs-lifetime-2.stderr

10 lines
285 B
Plaintext
Raw Normal View History

error[E0224]: at least one trait is required for an object type
2019-05-31 15:50:04 -05:00
--> $DIR/trait-object-vs-lifetime-2.rs:7:5
2018-08-08 07:28:26 -05:00
|
2019-05-28 13:46:13 -05:00
LL | dyn 'static +: 'static + Copy,
| ^^^^^^^^^^^^^
2018-08-08 07:28:26 -05:00
error: aborting due to previous error
2020-03-21 10:43:12 -05:00
For more information about this error, try `rustc --explain E0224`.