2020-09-02 10:40:56 +03:00
|
|
|
error[E0277]: `main` has invalid return type `impl Copy`
|
2018-12-25 08:56:47 -07:00
|
|
|
--> $DIR/termination-trait-impl-trait.rs:2:14
|
2018-05-11 11:29:04 -03:00
|
|
|
|
|
|
|
|
LL | fn main() -> impl Copy { }
|
2020-09-02 10:40:56 +03:00
|
|
|
| ^^^^^^^^^ `main` can only return types that implement `Termination`
|
2018-05-11 11:29:04 -03:00
|
|
|
|
|
|
|
|
= help: consider using `()`, or a `Result`
|
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0277`.
|