2021-08-27 11:04:57 -05:00
|
|
|
#![feature(generic_const_exprs)]
|
2020-09-21 15:01:18 -05:00
|
|
|
#![allow(incomplete_features)]
|
|
|
|
fn test<const N: usize>() -> [u8; N + (|| 42)()] {}
|
2022-05-10 09:19:19 -05:00
|
|
|
//~^ ERROR cycle detected when building an abstract representation
|
2020-09-21 15:01:18 -05:00
|
|
|
|
|
|
|
fn main() {}
|