2024-10-14 13:04:10 -04:00
|
|
|
error[E0277]: the trait bound `dyn Send: Trait` is not satisfied
|
2024-11-26 11:44:23 +01:00
|
|
|
--> $DIR/unsized_coercion3.rs:13:17
|
2024-05-31 09:51:10 +00:00
|
|
|
|
|
|
|
|
|
LL | let x = hello();
|
2024-10-14 13:04:10 -04:00
|
|
|
| ^^^^^^^ the trait `Trait` is not implemented for `dyn Send`
|
|
|
|
|
|
|
|
|
|
|
= help: the trait `Trait` is implemented for `u32`
|
2024-05-31 09:51:10 +00:00
|
|
|
|
2024-11-26 11:44:23 +01:00
|
|
|
error: aborting due to 1 previous error
|
2024-05-31 09:51:10 +00:00
|
|
|
|
2024-11-26 11:44:23 +01:00
|
|
|
For more information about this error, try `rustc --explain E0277`.
|