about summary refs log tree commit diff
path: root/tests/ui/errors/auxiliary/file-debuginfo.rs
blob: 08113ec26bfd414a5d6a198f6d88b819060a2c21 (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=debuginfo

#[macro_export]
macro_rules! my_file {
    () => { file!() }
}

pub fn file() -> &'static str {
    file!()
}