rust/src/test/ui/const-generics/generic_const_exprs/closures.rs

7 lines
189 B
Rust
Raw Normal View History

#![feature(const_generics, generic_const_exprs)]
#![allow(incomplete_features)]
fn test<const N: usize>() -> [u8; N + (|| 42)()] {}
//~^ ERROR overly complex generic constant
fn main() {}