Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
inference
/
newlambdas-ret-infer.rs
blob: 893b62e967ddb5f9533a68a2d2b1a76acd1e5ad1 [
file
] [
log
] [
blame
] [
edit
]
//@ 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
>
{
return
Box
::
new
(||
());
}
pub
fn
main
()
{
}