In the process also document that new `--remap-path-scope` scopes may be added in the future, and that the `all` scope always represent all the scopes. Co-authored-by: David Wood <agile.lion3441@fuligin.ink>
11 lines
220 B
Rust
11 lines
220 B
Rust
//@ compile-flags: --remap-path-prefix={{src-base}}=remapped
|
|
//@ compile-flags: --remap-path-scope=debuginfo
|
|
|
|
#[macro_export]
|
|
macro_rules! my_file {
|
|
() => { file!() }
|
|
}
|
|
|
|
pub fn file() -> &'static str {
|
|
file!()
|
|
}
|