@@ -11,7 +11,7 @@ use crate::{
11
11
use rustc_ast as ast;
12
12
use rustc_data_structures:: fx:: FxIndexSet ;
13
13
use rustc_errors:: {
14
- pluralize, Applicability , Diagnostic , DiagnosticId , ErrorGuaranteed , MultiSpan ,
14
+ pluralize, Applicability , Diagnostic , DiagnosticId , ErrorGuaranteed , MultiSpan , StashKey ,
15
15
} ;
16
16
use rustc_hir as hir;
17
17
use rustc_hir:: def:: { CtorOf , DefKind , Res } ;
@@ -26,6 +26,7 @@ use rustc_infer::infer::error_reporting::{FailureCode, ObligationCauseExt};
26
26
use rustc_infer:: infer:: type_variable:: { TypeVariableOrigin , TypeVariableOriginKind } ;
27
27
use rustc_infer:: infer:: TypeTrace ;
28
28
use rustc_infer:: infer:: { DefineOpaqueTypes , InferOk } ;
29
+ use rustc_middle:: traits:: ObligationCauseCode :: ExprBindingObligation ;
29
30
use rustc_middle:: ty:: adjustment:: AllowTwoPhase ;
30
31
use rustc_middle:: ty:: visit:: TypeVisitableExt ;
31
32
use rustc_middle:: ty:: { self , IsSuggestable , Ty } ;
@@ -1370,7 +1371,10 @@ impl<'a, 'tcx> FnCtxt<'a, 'tcx> {
1370
1371
}
1371
1372
_ => bug ! ( "unexpected type: {:?}" , ty. normalized) ,
1372
1373
} ,
1373
- Res :: Def ( DefKind :: Struct | DefKind :: Union | DefKind :: TyAlias | DefKind :: AssocTy , _)
1374
+ Res :: Def (
1375
+ DefKind :: Struct | DefKind :: Union | DefKind :: TyAlias { .. } | DefKind :: AssocTy ,
1376
+ _,
1377
+ )
1374
1378
| Res :: SelfTyParam { .. }
1375
1379
| Res :: SelfTyAlias { .. } => match ty. normalized . ty_adt_def ( ) {
1376
1380
Some ( adt) if !adt. is_enum ( ) => {
@@ -1840,6 +1844,54 @@ impl<'a, 'tcx> FnCtxt<'a, 'tcx> {
1840
1844
}
1841
1845
}
1842
1846
1847
+ pub ( super ) fn collect_unused_stmts_for_coerce_return_ty (
1848
+ & self ,
1849
+ errors_causecode : Vec < ( Span , ObligationCauseCode < ' tcx > ) > ,
1850
+ ) {
1851
+ for ( span, code) in errors_causecode {
1852
+ let Some ( mut diag) =
1853
+ self . tcx . sess . diagnostic ( ) . steal_diagnostic ( span, StashKey :: MaybeForgetReturn )
1854
+ else {
1855
+ continue ;
1856
+ } ;
1857
+
1858
+ if let Some ( fn_sig) = self . body_fn_sig ( )
1859
+ && let ExprBindingObligation ( _, _, hir_id, ..) = code
1860
+ && !fn_sig. output ( ) . is_unit ( ) {
1861
+ let mut block_num = 0 ;
1862
+ let mut found_semi = false ;
1863
+ for ( _, node) in self . tcx . hir ( ) . parent_iter ( hir_id) {
1864
+ match node {
1865
+ hir:: Node :: Stmt ( stmt) => if let hir:: StmtKind :: Semi ( ref expr) = stmt. kind {
1866
+ let expr_ty = self . typeck_results . borrow ( ) . expr_ty ( expr) ;
1867
+ let return_ty = fn_sig. output ( ) ;
1868
+ if !matches ! ( expr. kind, hir:: ExprKind :: Ret ( ..) ) &&
1869
+ self . can_coerce ( expr_ty, return_ty) {
1870
+ found_semi = true ;
1871
+ }
1872
+ } ,
1873
+ hir:: Node :: Block ( _block) => if found_semi {
1874
+ block_num += 1 ;
1875
+ }
1876
+ hir:: Node :: Item ( item) => if let hir:: ItemKind :: Fn ( ..) = item. kind {
1877
+ break ;
1878
+ }
1879
+ _ => { }
1880
+ }
1881
+ }
1882
+ if block_num > 1 && found_semi {
1883
+ diag. span_suggestion_verbose (
1884
+ span. shrink_to_lo ( ) ,
1885
+ "you might have meant to return this to infer its type parameters" ,
1886
+ "return " ,
1887
+ Applicability :: MaybeIncorrect ,
1888
+ ) ;
1889
+ }
1890
+ }
1891
+ diag. emit ( ) ;
1892
+ }
1893
+ }
1894
+
1843
1895
/// Given a vector of fulfillment errors, try to adjust the spans of the
1844
1896
/// errors to more accurately point at the cause of the failure.
1845
1897
///
0 commit comments