Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
test-attrs
/
test-should-fail-good-message.rs
blob: bf277a343de2f1f0cbc842e3b1736d165ef3b8c9 [
file
] [
log
] [
blame
] [
edit
]
//@ run-pass
//@ needs-unwind
//@ compile-flags: --test
#[
test
]
#[
should_panic
(
expected
=
"foo"
)]
pub
fn
test_foo
()
{
panic
!(
"foo bar"
)
}
#[
test
]
#[
should_panic
(
expected
=
"foo"
)]
pub
fn
test_foo_dynamic
()
{
panic
!(
"{} bar"
,
"foo"
)
}