2019-07-26 21:54:25 +00:00
|
|
|
//@ run-pass
|
2015-02-26 16:12:22 +00:00
|
|
|
//@ 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!()))
|
|
|
|
}
|
|
|
|
|
2017-11-15 17:01:09 +00:00
|
|
|
// We emit the wrong location for the caller here when inlined on MSVC
|
2015-09-04 22:17:16 +00:00
|
|
|
#[cfg_attr(not(target_env = "msvc"), inline(always))]
|
|
|
|
#[cfg_attr(target_env = "msvc", inline(never))]
|
2015-02-26 16:12:22 +00:00
|
|
|
pub fn callback_inlined<F>(f: F) where F: FnOnce((&'static str, u32)) {
|
|
|
|
f((file!(), line!()))
|
|
|
|
}
|