Skip to content

Commit 6bb4b84

Browse files
committed
Add a distinct error code and description for "main function has wrong type"
1 parent 876b761 commit 6bb4b84

File tree

6 files changed

+15
-4
lines changed

6 files changed

+15
-4
lines changed

src/librustc/diagnostics.rs

+8
Original file line numberDiff line numberDiff line change
@@ -1310,6 +1310,14 @@ error. To resolve it, add an `else` block having the same type as the `if`
13101310
block.
13111311
"##,
13121312

1313+
E0330: r##"
1314+
The `main` function is required to have the signature `fn main() { ... }`, with
1315+
no arguments and a return type of `()`.
1316+
1317+
To access command-line arguments, use `std::env::args`. To terminate the process
1318+
with a specified exit code, use `std::process::exit`.
1319+
"##,
1320+
13131321
E0398: r##"
13141322
In Rust 1.3, the default object lifetime bounds are expected to change, as
13151323
described in RFC #1156 [1]. You are getting a warning because the compiler

src/librustc/infer/error_reporting.rs

+3
Original file line numberDiff line numberDiff line change
@@ -604,6 +604,9 @@ impl<'a, 'gcx, 'tcx> InferCtxt<'a, 'gcx, 'tcx> {
604604
TypeOrigin::IfExpressionWithNoElse(_) => {
605605
struct_span_err!(self.tcx.sess, span, E0317, "{}", failure_str)
606606
},
607+
TypeOrigin::MainFunctionType(_) => {
608+
struct_span_err!(self.tcx.sess, span, E0330, "{}", failure_str)
609+
},
607610
_ => {
608611
struct_span_err!(self.tcx.sess, span, E0308, "{}", failure_str)
609612
},

src/test/compile-fail/bad-main.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
1010

11-
fn main(x: isize) { } //~ ERROR: main function has wrong type
11+
fn main(x: isize) { } //~ ERROR: main function has wrong type [E0330]

src/test/compile-fail/extern-main-fn.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
1010

11-
extern fn main() {} //~ ERROR: main function has wrong type
11+
extern fn main() {} //~ ERROR: main function has wrong type [E0330]

src/test/compile-fail/main-wrong-type-2.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,6 @@
99
// except according to those terms.
1010

1111
fn main() -> char {
12-
//~^ ERROR: main function has wrong type
12+
//~^ ERROR: main function has wrong type [E0330]
1313
' '
1414
}

src/test/compile-fail/main-wrong-type.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,5 @@ struct S {
1414
}
1515

1616
fn main(foo: S) {
17-
//~^ ERROR: main function has wrong type
17+
//~^ ERROR: main function has wrong type [E0330]
1818
}

0 commit comments

Comments
 (0)