diff --git a/ices/85907.rs b/ices/85907.rs new file mode 100644 index 00000000..02054032 --- /dev/null +++ b/ices/85907.rs @@ -0,0 +1,9 @@ +#![feature(const_panic)] + +const fn hey() -> usize { + panic!(123); +} + +fn main() { + let _: [u8; hey()] = todo!(); +}