Sign in
chromium
/
external
/
github.com
/
rust-lang
/
rust
/
refs/heads/perf-tmp
/
.
/
tests
/
ui
/
entry-point
/
main-with-invalid-signature.rs
blob: 782da32756cc850b32aa7d2cefec84ab906f8cf9 [
file
] [
log
] [
blame
] [
edit
]
//! Regression test for <https://github.com/rust-lang/rust/issues/118772>
fn
main
(
_
:
&
i32
)
{
//~ ERROR `main` function has wrong type
println
!(
"Hello, world!"
);
}