Sign in
rust
/
rust
/
d7e8f9fc7af4aa4cd65140afaebe48dd1e90e708
/
.
/
tests
/
ui
/
closures
/
binder
/
const-bound.rs
blob: e6984ed6d5592fb634506c79bf297c8471f3816f [
file
]
#![
feature
(
closure_lifetime_binder
,
non_lifetime_binders
)]
fn
main
()
{
for
<
const
N
:
i32
>
||
->
()
{};
//~^ ERROR late-bound const parameters cannot be used currently
//~| ERROR late-bound const parameter not allowed on closures
}