Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
library
/
backtrace
/
tests
/
accuracy
/
auxiliary.rs
blob: 9c8015d9ae2adc5fc8f9fde922eadfffcfa99a73 [
file
] [
log
] [
blame
] [
edit
]
#[
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
!()))
}