Sign in
rust
/
rust
/
dc0ec741a8a06b0c3bb5596fbb00a4e29fad3877
/
.
/
tests
/
ui
/
macros
/
assert-with-custom-message.rs
blob: 78a4a2d61cb9b5738fa25cf8d211c0e2dc59c402 [
file
]
//! Regression test for <https://github.com/rust-lang/rust/issues/2761>.
//@ run-fail
//@ error-pattern:custom message
//@ needs-subprocess
fn
main
()
{
assert
!(
false
,
"custom message"
);
}