blob: 11abc0549a7b85e7c900dbf98f777b73c23f3843 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
//@ compile-flags: --remap-path-prefix={{src-base}}=remapped
//@ compile-flags: -Zremap-path-scope=macro
#[macro_export]
macro_rules! my_file {
() => { file!() }
}
pub fn file() -> &'static str {
file!()
}
|