Sign in
rust
/
rust-lang
/
rust
/
refs/heads/perf-tmp
/
.
/
tests
/
ui
/
panics
/
while-body-panics.rs
blob: 8459a8d63bff3e7d7a69a2e06927db4ab717983f [
file
] [
log
] [
blame
]
#![
allow
(
while_true
)]
//@ run-fail
//@ error-pattern:quux
//@ needs-subprocess
fn
main
()
{
let
_x
:
isize
=
{
while
true
{
panic
!(
"quux"
);
}
8
};
}