mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
16 lines
617 B
Plaintext
16 lines
617 B
Plaintext
error[E0277]: the trait bound `Something: Termination` is not satisfied
|
|
--> $DIR/issue-103052-2.rs:12:22
|
|
|
|
|
LL | fn main() -> Something {
|
|
| ^^^^^^^^^ the trait `Termination` is not implemented for `Something`
|
|
|
|
|
note: required by a bound in `Main::main::{opaque#0}`
|
|
--> $DIR/issue-103052-2.rs:6:27
|
|
|
|
|
LL | fn main() -> impl std::process::Termination;
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^ required by this bound in `Main::main::{opaque#0}`
|
|
|
|
error: aborting due to previous error
|
|
|
|
For more information about this error, try `rustc --explain E0277`.
|