mirror of
https://github.com/rust-lang/rust.git
synced 2025-06-06 04:08:40 +00:00
8 lines
168 B
Rust
8 lines
168 B
Rust
![]() |
const fn hey() -> usize {
|
||
|
panic!(123); //~ ERROR argument to `panic!()` in a const context must have type `&str`
|
||
|
}
|
||
|
|
||
|
fn main() {
|
||
|
let _: [u8; hey()] = todo!();
|
||
|
}
|