Sign in
fuchsia
/
third_party
/
github.com
/
rust-lang
/
rust
/
HEAD
/
.
/
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`
}