2023-06-23 22:00:08 -05:00
|
|
|
error[E0277]: the trait bound `Something: Termination` is not satisfied
|
2024-03-11 14:41:40 -05:00
|
|
|
--> $DIR/issue-103052-2.rs:9:22
|
2023-06-23 22:00:08 -05:00
|
|
|
|
|
|
|
|
LL | fn main() -> Something {
|
|
|
|
| ^^^^^^^^^ the trait `Termination` is not implemented for `Something`
|
|
|
|
|
|
2024-02-27 10:02:19 -06:00
|
|
|
note: required by a bound in `Main::{synthetic#0}`
|
2024-03-11 14:41:40 -05:00
|
|
|
--> $DIR/issue-103052-2.rs:3:27
|
2023-06-23 22:00:08 -05:00
|
|
|
|
|
|
|
|
LL | fn main() -> impl std::process::Termination;
|
2024-02-27 10:02:19 -06:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^ required by this bound in `Main::{synthetic#0}`
|
2023-06-23 22:00:08 -05:00
|
|
|
|
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 E0277`.
|