mirror of
https://github.com/rust-lang/rust.git
synced 2025-10-03 10:47:16 +00:00
12 lines
220 B
Rust
12 lines
220 B
Rust
//@ compile-flags: --remap-path-prefix={{src-base}}=remapped
|
|
//@ compile-flags: -Zremap-path-scope=debuginfo
|
|
|
|
#[macro_export]
|
|
macro_rules! my_file {
|
|
() => { file!() }
|
|
}
|
|
|
|
pub fn file() -> &'static str {
|
|
file!()
|
|
}
|