rust/tests/ui/rfcs/rfc-1937-termination-trait/issue-103052-2.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

16 lines
607 B
Plaintext
Raw Normal View History

error[E0277]: the trait bound `Something: Termination` is not satisfied
2023-09-13 11:04:42 -05:00
--> $DIR/issue-103052-2.rs:11:22
|
LL | fn main() -> Something {
| ^^^^^^^^^ the trait `Termination` is not implemented for `Something`
|
note: required by a bound in `Main::{opaque#0}`
2023-09-13 11:04:42 -05:00
--> $DIR/issue-103052-2.rs:5:27
|
LL | fn main() -> impl std::process::Termination;
| ^^^^^^^^^^^^^^^^^^^^^^^^^ required by this bound in `Main::{opaque#0}`
error: aborting due to 1 previous error
For more information about this error, try `rustc --explain E0277`.