mirror of
https://github.com/rust-lang/rust.git
synced 2025-05-09 16:37:36 +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
|
|
}
|