diff options
| author | Vadim Petrochenkov <vadim.petrochenkov@gmail.com> | 2020-02-01 00:18:14 +0300 |
|---|---|---|
| committer | Vadim Petrochenkov <vadim.petrochenkov@gmail.com> | 2020-04-26 18:21:53 +0300 |
| commit | f5223a34354183f0f45e5c25c199b05e3422a045 (patch) | |
| tree | 7c34f2bd16b346ae167975e0436ff85a2eed0927 /src/libproc_macro | |
| parent | ec1f28f9614292c36b371d3758afffdd52cb9786 (diff) | |
| download | rust-f5223a34354183f0f45e5c25c199b05e3422a045.tar.gz rust-f5223a34354183f0f45e5c25c199b05e3422a045.zip | |
Stabilize `Span::mixed_site`
Diffstat (limited to 'src/libproc_macro')
| -rw-r--r-- | src/libproc_macro/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libproc_macro/lib.rs b/src/libproc_macro/lib.rs index 5995f64dc78..ad86028fb76 100644 --- a/src/libproc_macro/lib.rs +++ b/src/libproc_macro/lib.rs @@ -303,7 +303,7 @@ impl Span { /// definition site (local variables, labels, `$crate`) and sometimes at the macro /// call site (everything else). /// The span location is taken from the call-site. - #[unstable(feature = "proc_macro_mixed_site", issue = "65049")] + #[stable(feature = "proc_macro_mixed_site", since = "1.45.0")] pub fn mixed_site() -> Span { Span(bridge::client::Span::mixed_site()) } |
