Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
closures
/
binder
/
nested-closures.rs
blob: 072d615cfa9b25c7751cff13a986a641e5006561 [
file
] [
log
] [
blame
] [
edit
]
//@ check-pass
#![
feature
(
closure_lifetime_binder
)]
fn
main
()
{
for
<
'a> || -> () { for<'
c
>
|
_
:
&
'
a
()|
->
()
{};
};
}