summaryrefslogtreecommitdiffstats
path: root/src/test/ui/runtime/backtrace-debuginfo-aux.rs
blob: 1411bcf89e87f942a8da33e2da9567cc1309aeac (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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!()))
}