Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
issues
/
issue-4335.rs
blob: c5914a17cf92486b960fbc488fc6bc2bd85961c3 [
file
] [
log
] [
blame
] [
edit
]
#![
feature
(
fn_traits
)]
fn
id
<
T
>(
t
:
T
)
->
T
{
t
}
fn
f
<
'r, T>(v: &'
r T
)
->
Box
<
dyn
FnMut
()
->
T
+
'
r
>
{
id
(
Box
::
new
(||
*
v
))
//~^ ERROR E0507
}
fn
main
()
{
let
v
=
&
5
;
println
!(
"{}"
,
f
(
v
).
call_mut
(()));
}