2023-06-23 22:00:08 -05:00
error[E0038]: the trait `Foo` cannot be made into an object
2024-10-09 16:31:01 -05:00
--> $DIR/dyn-compatibility.rs:9:12
2023-06-23 22:00:08 -05:00
|
LL | let x: &dyn Foo = todo!();
| ^^^^^^^^ `Foo` cannot be made into an object
|
2024-09-25 03:38:40 -05:00
note: for a trait to be "dyn-compatible" it needs to allow building a vtable to allow the call to be resolvable dynamically; for more information visit <https://doc.rust-lang.org/reference/items/traits.html#object-safety>
2024-10-09 16:31:01 -05:00
--> $DIR/dyn-compatibility.rs:5:14
2023-06-23 22:00:08 -05:00
|
LL | trait Foo {
| --- this trait cannot be made into an object...
LL | async fn foo(&self);
| ^^^ ...because method `foo` is `async`
= help: consider moving `foo` to another trait
2023-11-21 09:44:16 -06:00
error: aborting due to 1 previous error
2023-06-23 22:00:08 -05:00
For more information about this error, try `rustc --explain E0038`.