Skip to content

Commit 72334fe

Browse files
committed
typeck: Report main return type errors on return type span
1 parent 5ccf3ff commit 72334fe

File tree

3 files changed

+14
-3
lines changed

3 files changed

+14
-3
lines changed

src/librustc_typeck/check/mod.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -1114,8 +1114,9 @@ fn check_fn<'a, 'gcx, 'tcx>(inherited: &'a Inherited<'a, 'gcx, 'tcx>,
11141114
Some(config::EntryMain) => {
11151115
let substs = fcx.tcx.mk_substs(iter::once(Kind::from(ret_ty)));
11161116
let trait_ref = ty::TraitRef::new(term_id, substs);
1117+
let return_ty_span = decl.output.span();
11171118
let cause = traits::ObligationCause::new(
1118-
span, fn_id, ObligationCauseCode::MainFunctionType);
1119+
return_ty_span, fn_id, ObligationCauseCode::MainFunctionType);
11191120

11201121
inherited.register_predicate(
11211122
traits::Obligation::new(

src/test/compile-fail/rfc-1937-termination-trait/termination-trait-main-wrong-type.rs src/test/ui/rfc-1937-termination-trait/termination-trait-main-wrong-type.rs

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

11-
// error-pattern:`main` can only return types that implement std::process::Termination, not `char
12-
fn main() -> char {
11+
fn main() -> char { //~ ERROR
1312
' '
1413
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
error[E0277]: the trait bound `char: std::process::Termination` is not satisfied
2+
--> $DIR/termination-trait-main-wrong-type.rs:11:14
3+
|
4+
LL | fn main() -> char { //~ ERROR
5+
| ^^^^ `main` can only return types that implement std::process::Termination, not `char`
6+
|
7+
= help: the trait `std::process::Termination` is not implemented for `char`
8+
9+
error: aborting due to previous error
10+
11+
For more information about this error, try `rustc --explain E0277`.

0 commit comments

Comments
 (0)