rust/tests/ui/entry-point/issue-118772.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

4 lines
93 B
Rust
Raw Normal View History

fn main(_: &i32) { //~ ERROR `main` function has wrong type
println!("Hello, world!");
}