mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-15 17:14:50 +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
|
|
}
|