rust/tests/ui/rfcs/rfc-1937-termination-trait/termination-trait-not-satisfied.stderr
2023-06-05 16:09:46 +00:00

12 lines
391 B
Plaintext

error[E0277]: `main` has invalid return type `ReturnType`
--> $DIR/termination-trait-not-satisfied.rs:3:14
|
LL | fn main() -> ReturnType {
| ^^^^^^^^^^ `main` can only return types that implement `Termination`
|
= help: consider using `()`, or a `Result`
error: aborting due to previous error
For more information about this error, try `rustc --explain E0277`.