File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -351,14 +351,14 @@ impl Span {
351351
352352 /// Creates a new span with the same line/column information as `self` but
353353 /// that resolves symbols as though it were at `other`.
354- #[ stable( feature = "proc_macro_span_resolved_at" , since = "1.43 .0" ) ]
354+ #[ stable( feature = "proc_macro_span_resolved_at" , since = "1.45 .0" ) ]
355355 pub fn resolved_at ( & self , other : Span ) -> Span {
356356 Span ( self . 0 . resolved_at ( other. 0 ) )
357357 }
358358
359359 /// Creates a new span with the same name resolution behavior as `self` but
360360 /// with the line/column information of `other`.
361- #[ stable( feature = "proc_macro_span_located_at" , since = "1.43 .0" ) ]
361+ #[ stable( feature = "proc_macro_span_located_at" , since = "1.45 .0" ) ]
362362 pub fn located_at ( & self , other : Span ) -> Span {
363363 other. resolved_at ( * self )
364364 }
You can’t perform that action at this time.
0 commit comments