Sign in
fuchsia
/
third_party
/
rust
/
972fef232ec0dd7a3f42091aa6f36cd68aeb3eef
/
.
/
tests
/
ui
/
macros
/
assert-eq-macro-panic.rs
blob: 22c3a8a634f4b6c7504370264a2bd116b6b66cfb [
file
] [
log
] [
blame
]
//@ run-fail
//@ error-pattern:assertion `left == right` failed
//@ error-pattern: left: 14
//@ error-pattern: right: 15
//@ ignore-emscripten no processes
fn
main
()
{
assert_eq
!(
14
,
15
);
}