rust/tests/ui/consts/const-eval/issue-85907.rs

8 lines
168 B
Rust
Raw Normal View History

2022-06-26 20:07:19 -05:00
const fn hey() -> usize {
panic!(123); //~ ERROR argument to `panic!()` in a const context must have type `&str`
}
fn main() {
let _: [u8; hey()] = todo!();
}