Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
run-make
/
track-path-dep-info
/
macro_def.rs
blob: 8777ce21f8b8234c888b469edd469f6a72c62521 [
file
] [
log
] [
blame
] [
edit
]
#![
feature
(
track_path
)]
#![
crate_type
=
"proc-macro"
]
extern
crate proc_macro
;
use
proc_macro
::*;
#[
proc_macro
]
pub
fn
access_tracked_paths
(
_
:
TokenStream
)
->
TokenStream
{
tracked_path
::
path
(
"emojis.txt"
);
TokenStream
::
new
()
}