@@ -439,7 +439,7 @@ fn visit_fn(v: &mut LivenessVisitor,
439
439
440
440
// check for various error conditions
441
441
lsets. visit_block ( body, ( ) ) ;
442
- lsets. check_ret ( id, sp, fk, entry_ln) ;
442
+ lsets. check_ret ( id, sp, fk, entry_ln, body ) ;
443
443
lsets. warn_about_unused_args ( decl, entry_ln) ;
444
444
}
445
445
@@ -1575,7 +1575,8 @@ impl Liveness {
1575
1575
id : NodeId ,
1576
1576
sp : Span ,
1577
1577
_fk : & FnKind ,
1578
- entry_ln : LiveNode ) {
1578
+ entry_ln : LiveNode ,
1579
+ body : & Block ) {
1579
1580
if self . live_on_entry ( entry_ln, self . s . no_ret_var ) . is_some ( ) {
1580
1581
// if no_ret_var is live, then we fall off the end of the
1581
1582
// function without any kind of return expression:
@@ -1588,9 +1589,30 @@ impl Liveness {
1588
1589
self . tcx . sess . span_err (
1589
1590
sp, "some control paths may return" ) ;
1590
1591
} else {
1592
+ let ends_with_stmt = match body. expr {
1593
+ None if body. stmts . len ( ) > 0 =>
1594
+ match body. stmts . last ( ) . node {
1595
+ StmtSemi ( e, _) => {
1596
+ let t_stmt = ty:: expr_ty ( self . tcx , e) ;
1597
+ ty:: get ( t_stmt) . sty == ty:: get ( t_ret) . sty
1598
+ } ,
1599
+ _ => false
1600
+ } ,
1601
+ _ => false
1602
+ } ;
1603
+ if ends_with_stmt {
1604
+ let last_stmt = body. stmts . last ( ) ;
1605
+ let span_semicolon = Span {
1606
+ lo : last_stmt. span . hi ,
1607
+ hi : last_stmt. span . hi ,
1608
+ expn_info : last_stmt. span . expn_info
1609
+ } ;
1610
+ self . tcx . sess . span_note (
1611
+ span_semicolon, "consider removing this semicolon:" ) ;
1612
+ }
1591
1613
self . tcx . sess . span_err (
1592
1614
sp, "not all control paths return a value" ) ;
1593
- }
1615
+ }
1594
1616
}
1595
1617
}
1596
1618
0 commit comments