mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 15:23:46 +00:00
12 lines
330 B
Rust
12 lines
330 B
Rust
#![feature(non_lifetime_binders, generic_const_exprs)]
|
|
//~^ WARN the feature `non_lifetime_binders` is incomplete
|
|
//~| WARN the feature `generic_const_exprs` is incomplete
|
|
|
|
fn foo() -> usize
|
|
where
|
|
for<T> [i32; { let _: T = todo!(); 0 }]:,
|
|
//~^ ERROR cannot capture late-bound type parameter in a constant
|
|
{}
|
|
|
|
fn main() {}
|