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