Sign in
android
/
toolchain
/
rustc
/
977026a81a6cc1c304420586c1bb6527b72b4303
/
.
/
src
/
test
/
ui
/
closures
/
binder
/
nested-closures.rs
blob: b3c36e7eebb7aa37ccd8963a501be6a961d2a5e1 [
file
] [
log
] [
blame
]
// check-pass
#![
feature
(
closure_lifetime_binder
)]
fn
main
()
{
for
<
'a> || -> () { for<'
c
>
|
_
:
&
'
a
()|
->
()
{};
};
}