blob: 2d44388f875f925fc57b596661f4838bf1990895 [file] [log] [blame]
#![feature(non_lifetime_binders)]
//~^ WARN the feature `non_lifetime_binders` is incomplete
fn b()
where
for<const C: usize> [(); C]: Copy,
//~^ ERROR late-bound const parameters cannot be used currently
{
}
fn main() {}