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 @@ -352,14 +352,14 @@ impl Span {
352352
353353 /// Creates a new span with the same line/column information as `self` but
354354 /// that resolves symbols as though it were at `other`.
355- #[ unstable ( feature = "proc_macro_span " , issue = "54725 " ) ]
355+ #[ stable ( feature = "proc_macro_span_resolved_at " , since = "1.43.0 " ) ]
356356 pub fn resolved_at ( & self , other : Span ) -> Span {
357357 Span ( self . 0 . resolved_at ( other. 0 ) )
358358 }
359359
360360 /// Creates a new span with the same name resolution behavior as `self` but
361361 /// with the line/column information of `other`.
362- #[ unstable ( feature = "proc_macro_span " , issue = "54725 " ) ]
362+ #[ stable ( feature = "proc_macro_span_located_at " , since = "1.43.0 " ) ]
363363 pub fn located_at ( & self , other : Span ) -> Span {
364364 other. resolved_at ( * self )
365365 }
You can’t perform that action at this time.
0 commit comments