@@ -1009,11 +1009,11 @@ impl<'a, 'tcx> BorrowckCtxt<'a, 'tcx> {
1009
1009
}
1010
1010
1011
1011
err_out_of_scope( super_scope, sub_scope, cause) => {
1012
- let ( value_kind, value_msg, is_temporary ) = match err. cmt . cat {
1012
+ let ( value_kind, value_msg) = match err. cmt . cat {
1013
1013
mc:: Categorization :: Rvalue ( _) =>
1014
- ( "temporary value" , "temporary value created here" , true ) ,
1014
+ ( "temporary value" , "temporary value created here" ) ,
1015
1015
_ =>
1016
- ( "borrowed value" , "does not live long enough" , false )
1016
+ ( "borrowed value" , "borrow occurs here" )
1017
1017
} ;
1018
1018
1019
1019
let is_closure = match cause {
@@ -1026,14 +1026,14 @@ impl<'a, 'tcx> BorrowckCtxt<'a, 'tcx> {
1026
1026
Some ( primary) => {
1027
1027
db. span = MultiSpan :: from_span ( s) ;
1028
1028
db. span_label ( primary, & format ! ( "capture occurs here" ) ) ;
1029
- db. span_label ( s, & value_msg ) ;
1029
+ db. span_label ( s, & "does not live long enough" ) ;
1030
1030
true
1031
1031
}
1032
1032
None => false
1033
1033
}
1034
1034
}
1035
1035
_ => {
1036
- db. span_label ( error_span, & value_msg ) ;
1036
+ db. span_label ( error_span, & "does not live long enough" ) ;
1037
1037
false
1038
1038
}
1039
1039
} ;
@@ -1043,11 +1043,11 @@ impl<'a, 'tcx> BorrowckCtxt<'a, 'tcx> {
1043
1043
1044
1044
match ( sub_span, super_span) {
1045
1045
( Some ( s1) , Some ( s2) ) if s1 == s2 => {
1046
- if !is_temporary && ! is_closure {
1046
+ if !is_closure {
1047
1047
db. span = MultiSpan :: from_span ( s1) ;
1048
- db. span_label ( error_span, & format ! ( "borrow occurs here" ) ) ;
1048
+ db. span_label ( error_span, & value_msg ) ;
1049
1049
let msg = match opt_loan_path ( & err. cmt ) {
1050
- None => "borrowed value" . to_string ( ) ,
1050
+ None => value_kind . to_string ( ) ,
1051
1051
Some ( lp) => {
1052
1052
format ! ( "`{}`" , self . loan_path_to_string( & lp) )
1053
1053
}
@@ -1060,17 +1060,16 @@ impl<'a, 'tcx> BorrowckCtxt<'a, 'tcx> {
1060
1060
db. note ( "values in a scope are dropped in the opposite order \
1061
1061
they are created") ;
1062
1062
}
1063
- ( Some ( s1) , Some ( s2) ) if !is_temporary && ! is_closure => {
1063
+ ( Some ( s1) , Some ( s2) ) if !is_closure => {
1064
1064
db. span = MultiSpan :: from_span ( s2) ;
1065
- db. span_label ( error_span, & format ! ( "borrow occurs here" ) ) ;
1065
+ db. span_label ( error_span, & value_msg ) ;
1066
1066
let msg = match opt_loan_path ( & err. cmt ) {
1067
- None => "borrowed value" . to_string ( ) ,
1067
+ None => value_kind . to_string ( ) ,
1068
1068
Some ( lp) => {
1069
1069
format ! ( "`{}`" , self . loan_path_to_string( & lp) )
1070
1070
}
1071
1071
} ;
1072
- db. span_label ( s2,
1073
- & format ! ( "{} dropped here while still borrowed" , msg) ) ;
1072
+ db. span_label ( s2, & format ! ( "{} dropped here while still borrowed" , msg) ) ;
1074
1073
db. span_label ( s1, & format ! ( "{} needs to live until here" , value_kind) ) ;
1075
1074
}
1076
1075
_ => {
0 commit comments