File tree 2 files changed +0
-3
lines changed
2 files changed +0
-3
lines changed Original file line number Diff line number Diff line change @@ -163,7 +163,6 @@ infer_region_explanation = {$pref_kind ->
163
163
[ as_defined ] the lifetime `{ $desc_arg } ` as defined here
164
164
[ as_defined_anon ] the anonymous lifetime as defined here
165
165
[ defined_here ] the anonymous lifetime defined here
166
- [ anon_num_here ] the anonymous lifetime #{ $desc_num_arg } defined here
167
166
[ defined_here_reg ] the lifetime `{ $desc_arg } ` as defined here
168
167
} { $suff_kind ->
169
168
*[ should_not_happen ] [{ $suff_kind } ]
Original file line number Diff line number Diff line change @@ -9,7 +9,6 @@ struct DescriptionCtx<'a> {
9
9
span : Option < Span > ,
10
10
kind : & ' a str ,
11
11
arg : String ,
12
- num_arg : u32 ,
13
12
}
14
13
15
14
impl < ' a > DescriptionCtx < ' a > {
@@ -113,7 +112,6 @@ impl<'a> DescriptionCtx<'a> {
113
112
fn add_to ( self , diag : & mut rustc_errors:: Diagnostic ) {
114
113
diag. set_arg ( "desc_kind" , self . kind ) ;
115
114
diag. set_arg ( "desc_arg" , self . arg ) ;
116
- diag. set_arg ( "desc_num_arg" , self . num_arg ) ;
117
115
}
118
116
}
119
117
You can’t perform that action at this time.
0 commit comments