mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
7 lines
188 B
Rust
7 lines
188 B
Rust
fn main() -> i32 {
|
|
//~^ ERROR `main` has invalid return type `i32`
|
|
//~| NOTE `main` can only return types that implement `Termination`
|
|
//~| HELP consider using `()`, or a `Result`
|
|
0
|
|
}
|