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