2023-02-18 03:34:27 +00:00
|
|
|
#![feature(closure_lifetime_binder, non_lifetime_binders)]
|
|
|
|
|
//~^ WARN is incomplete and may not be safe to use
|
|
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
|
for<const N: i32> || -> () {};
|
2024-07-20 17:58:05 -04:00
|
|
|
//~^ ERROR late-bound const parameters cannot be used currently
|
|
|
|
|
//~| ERROR late-bound const parameter not allowed on closures
|
2023-02-18 03:34:27 +00:00
|
|
|
}
|