mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 15:23:46 +00:00
12 lines
233 B
Rust
12 lines
233 B
Rust
#![feature(non_lifetime_binders)]
|
|
//~^ WARN the feature `non_lifetime_binders` is incomplete
|
|
|
|
fn b()
|
|
where
|
|
for<const C: usize> [(); C]: Copy,
|
|
//~^ ERROR cannot capture late-bound const parameter in constant
|
|
{
|
|
}
|
|
|
|
fn main() {}
|