2023-03-13 17:38:37 -05: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 16:29:27 -05:00
|
|
|
//~^ ERROR cannot capture late-bound const parameter in constant
|
2023-03-13 17:38:37 -05:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {}
|