14 lines
240 B
Rust
14 lines
240 B
Rust
|
#![feature(generic_const_exprs)]
|
||
|
//~^ WARN the feature `generic_const_exprs` is incomplete
|
||
|
|
||
|
fn test<'a>(
|
||
|
_: &'a (),
|
||
|
) -> [(); {
|
||
|
let x: &'a ();
|
||
|
//~^ ERROR cannot capture late-bound lifetime in constant
|
||
|
1
|
||
|
}] {
|
||
|
}
|
||
|
|
||
|
fn main() {}
|