mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 07:14:28 +00:00
12 lines
387 B
Plaintext
12 lines
387 B
Plaintext
error[E0277]: `main` has invalid return type `impl Copy`
|
|
--> $DIR/termination-trait-impl-trait.rs:2:14
|
|
|
|
|
LL | fn main() -> impl Copy { }
|
|
| ^^^^^^^^^ `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`.
|