Sign in
chromium
/
external
/
github.com
/
rust-lang
/
rust
/
refs/heads/perf-tmp
/
.
/
tests
/
ui
/
macros
/
assert-with-custom-message.rs
blob: 78a4a2d61cb9b5738fa25cf8d211c0e2dc59c402 [
file
] [
edit
]
//! 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"
);
}