Sign in
android
/
toolchain
/
rustc
/
d720b3f2ba07cb42ff7b311589c99daefe3aaa22
/
.
/
tests
/
ui
/
inference
/
newlambdas-ret-infer2.rs
blob: abe31a05f2260953c43630a94b3da293b963315c [
file
] [
log
] [
blame
]
// run-pass
#![
allow
(
dead_code
)]
// Test that the lambda kind is inferred correctly as a return
// expression
// pretty-expanded FIXME #23616
fn
unique
()
->
Box
<
dyn
FnMut
()+
'
static
>
{
Box
::
new
(||
())
}
pub
fn
main
()
{
}