Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
panics
/
test-should-panic-bad-message.rs
blob: 1a3c52ea176d95ff4cdd8634dbb5ec2c64700871 [
file
] [
log
] [
blame
] [
edit
]
//@ run-fail
//@ compile-flags: --test
//@ check-stdout
//@ needs-unwind
#[
test
]
#[
should_panic
(
expected
=
"foo"
)]
pub
fn
test_bar
()
{
panic
!(
"bar"
)
}