diff options
Diffstat (limited to '')
-rw-r--r-- | src/test/ui/runtime/backtrace-debuginfo-aux.rs | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/test/ui/runtime/backtrace-debuginfo-aux.rs b/src/test/ui/runtime/backtrace-debuginfo-aux.rs new file mode 100644 index 000000000..1411bcf89 --- /dev/null +++ b/src/test/ui/runtime/backtrace-debuginfo-aux.rs @@ -0,0 +1,14 @@ +// run-pass +// ignore-test: not a test, used by backtrace-debuginfo.rs to test file!() + +#[inline(never)] +pub fn callback<F>(f: F) where F: FnOnce((&'static str, u32)) { + f((file!(), line!())) +} + +// We emit the wrong location for the caller here when inlined on MSVC +#[cfg_attr(not(target_env = "msvc"), inline(always))] +#[cfg_attr(target_env = "msvc", inline(never))] +pub fn callback_inlined<F>(f: F) where F: FnOnce((&'static str, u32)) { + f((file!(), line!())) +} |