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