2023-03-13 22:38:37 +00:00
|
|
|
#![feature(non_lifetime_binders)]
|
|
|
|
//~^ WARN the feature `non_lifetime_binders` is incomplete
|
|
|
|
|
|
|
|
fn b()
|
|
|
|
where
|
|
|
|
for<const C: usize> [(); C]: Copy,
|
2023-09-02 21:29:27 +00:00
|
|
|
//~^ ERROR cannot capture late-bound const parameter in constant
|
2023-03-13 22:38:37 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {}
|