diff options
| author | Mara Bos <m-ou.se@m-ou.se> | 2021-07-28 16:34:45 +0200 |
|---|---|---|
| committer | Mara Bos <m-ou.se@m-ou.se> | 2021-07-28 16:34:45 +0200 |
| commit | f9be6cd8988a48a532c99a9f5b887a6d354e5b2f (patch) | |
| tree | ab885ab8cf39f454e7973c4475bac37c13f90484 | |
| parent | d5aec64c12db44ddcfbf8682b9ec4e515a6f9953 (diff) | |
| download | rust-f9be6cd8988a48a532c99a9f5b887a6d354e5b2f.tar.gz rust-f9be6cd8988a48a532c99a9f5b887a6d354e5b2f.zip | |
Add tracking issue number to proc_macro_span_shrink.
| -rw-r--r-- | library/proc_macro/src/lib.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/library/proc_macro/src/lib.rs b/library/proc_macro/src/lib.rs index b8ed3372aff..6de61497021 100644 --- a/library/proc_macro/src/lib.rs +++ b/library/proc_macro/src/lib.rs @@ -359,13 +359,13 @@ impl Span { } /// Creates an empty span pointing to directly before this span. - #[unstable(feature = "proc_macro_span_shrink", issue = "none")] + #[unstable(feature = "proc_macro_span_shrink", issue = "87552")] pub fn before(&self) -> Span { Span(self.0.before()) } /// Creates an empty span pointing to directly after this span. - #[unstable(feature = "proc_macro_span_shrink", issue = "none")] + #[unstable(feature = "proc_macro_span_shrink", issue = "87552")] pub fn after(&self) -> Span { Span(self.0.after()) } |
