Sign in
android
/
toolchain
/
rustc
/
d720b3f2ba07cb42ff7b311589c99daefe3aaa22
/
.
/
tests
/
ui
/
issues
/
issue-23354-2.rs
blob: c291d8a5eaf3d743b73fafd89610cb3e4b974229 [
file
] [
log
] [
blame
]
// run-fail
// error-pattern:panic evaluated
// ignore-emscripten no processes
#[
allow
(
unused_variables
)]
fn
main
()
{
// This used to trigger an LLVM assertion during compilation
let
x
=
[
panic
!(
"panic evaluated"
);
2
];
}