Sign in
android
/
toolchain
/
rustc
/
d720b3f2ba07cb42ff7b311589c99daefe3aaa22
/
.
/
tests
/
ui
/
closures
/
binder
/
suggestion-for-introducing-lifetime-into-binder.rs
blob: b476dd50cc986486e62d601ac7f3ea207a06ae73 [
file
] [
log
] [
blame
]
#![
feature
(
closure_lifetime_binder
)]
fn
main
()
{
for
<>
|
_
:
&
'
a
()|
->
()
{};
//~^ ERROR use of undeclared lifetime name `'a`
for
<
'a> |_: &'
b
()|
->
()
{};
//~^ ERROR use of undeclared lifetime name `'b`
}