Sign in
rust
/
rust
/
244fc326f23b58bc9db6bd985c59b80098ff14c1
/
.
/
tests
/
ui
/
closures
/
binder
/
disallow-const.rs
blob: 72ad6185d3761bfc5908b37a963363eb2eb6ade0 [
file
]
#![
feature
(
closure_lifetime_binder
)]
fn
main
()
{
for
<
const
N
:
i32
>
||
->
()
{};
//~^ ERROR only lifetime parameters can be used in this context
}