Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
torvalds
GitHub Repository: torvalds/linux
Path: blob/master/rust/proc-macro2/probe.rs
38271 views
1
// SPDX-License-Identifier: Apache-2.0 OR MIT
2
3
#![allow(dead_code)]
4
5
#[cfg(proc_macro_span)]
6
pub(crate) mod proc_macro_span;
7
8
#[cfg(proc_macro_span_file)]
9
pub(crate) mod proc_macro_span_file;
10
11
#[cfg(proc_macro_span_location)]
12
pub(crate) mod proc_macro_span_location;
13
14