mirror of
https://github.com/rust-lang/rust.git
synced 2025-06-05 03:38:29 +00:00
7 lines
155 B
Rust
7 lines
155 B
Rust
![]() |
#![feature(closure_lifetime_binder)]
|
||
|
|
||
|
fn main() {
|
||
|
for<const N: i32> || -> () {};
|
||
|
//~^ ERROR only lifetime parameters can be used in this context
|
||
|
}
|