Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
consts
/
const-eval
/
issue-85907.rs
blob: 6ae40ae6ddbf63df6067e9ee626b206816c618a7 [
file
] [
log
] [
blame
] [
edit
]
const
fn
hey
()
->
usize
{
panic
!(
123
);
//~ ERROR argument to `panic!()` in a const context must have type `&str`
}
fn
main
()
{
let
_
:
[
u8
;
hey
()]
=
todo
!();
}