@@ -33,7 +33,7 @@ use crate::ty::subst::Subst;
33
33
use crate :: ty:: SubtypePredicate ;
34
34
use crate :: util:: nodemap:: { FxHashMap , FxHashSet } ;
35
35
36
- use errors:: { Applicability , DiagnosticBuilder , pluralise , Style } ;
36
+ use errors:: { Applicability , DiagnosticBuilder , pluralize , Style } ;
37
37
use std:: fmt;
38
38
use syntax:: ast;
39
39
use syntax:: symbol:: { sym, kw} ;
@@ -1339,7 +1339,7 @@ impl<'a, 'tcx> InferCtxt<'a, 'tcx> {
1339
1339
param_env,
1340
1340
new_trait_ref. to_predicate ( ) ,
1341
1341
) ;
1342
- if self . predicate_may_hold ( & new_obligation) {
1342
+ if self . predicate_must_hold_modulo_regions ( & new_obligation) {
1343
1343
if let Ok ( snippet) = self . tcx . sess . source_map ( ) . span_to_snippet ( span) {
1344
1344
// We have a very specific type of error, where just borrowing this argument
1345
1345
// might solve the problem. In cases like this, the important part is the
@@ -1369,7 +1369,7 @@ impl<'a, 'tcx> InferCtxt<'a, 'tcx> {
1369
1369
span,
1370
1370
"consider borrowing here" ,
1371
1371
format ! ( "&{}" , snippet) ,
1372
- Applicability :: MachineApplicable ,
1372
+ Applicability :: MaybeIncorrect ,
1373
1373
) ;
1374
1374
return true ;
1375
1375
}
0 commit comments