9 lines
110 B
Rust
9 lines
110 B
Rust
#[macro_export]
|
|
macro_rules! my_file {
|
|
() => { file!() }
|
|
}
|
|
|
|
pub fn file() -> &'static str {
|
|
file!()
|
|
}
|