diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-17 13:39:29 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-17 13:39:29 +0000 |
commit | 1bbf3d3cebcb6ff09231ee43296d62d6a93fcfd0 (patch) | |
tree | 6dc13e28a6078185b871acc5b7f9a2df6c5d948a /build/probe.rs | |
parent | Initial commit. (diff) | |
download | rust-proc-macro2-1bbf3d3cebcb6ff09231ee43296d62d6a93fcfd0.tar.xz rust-proc-macro2-1bbf3d3cebcb6ff09231ee43296d62d6a93fcfd0.zip |
Adding upstream version 1.0.76.upstream/1.0.76
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'build/probe.rs')
-rw-r--r-- | build/probe.rs | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/build/probe.rs b/build/probe.rs new file mode 100644 index 0000000..5afa13a --- /dev/null +++ b/build/probe.rs @@ -0,0 +1,21 @@ +// This code exercises the surface area that we expect of Span's unstable API. +// If the current toolchain is able to compile it, then proc-macro2 is able to +// offer these APIs too. + +#![feature(proc_macro_span)] + +extern crate proc_macro; + +use core::ops::RangeBounds; +use proc_macro::{Literal, Span}; + +pub fn join(this: &Span, other: Span) -> Option<Span> { + this.join(other) +} + +pub fn subspan<R: RangeBounds<usize>>(this: &Literal, range: R) -> Option<Span> { + this.subspan(range) +} + +// Include in sccache cache key. +const _: Option<&str> = option_env!("RUSTC_BOOTSTRAP"); |