Sign in
android
/
toolchain
/
rustc
/
da60c8575e02ed54fcffcb7f2f9289b4705b60ff
/
.
/
vendor
/
backtrace
/
tests
/
accuracy
/
auxiliary.rs
blob: e710ec968e1adf1e563b001b3b67b9ef54be02f5 [
file
] [
log
] [
blame
]
#[
inline
(
never
)]
pub
fn
callback
<
F
>(
f
:
F
)
where F
:
FnOnce
((&
'
static
str
,
u32
))
{
f
((
file
!(),
line
!()))
}
#[
inline
(
always
)]
pub
fn
callback_inlined
<
F
>(
f
:
F
)
where F
:
FnOnce
((&
'
static
str
,
u32
))
{
f
((
file
!(),
line
!()))
}