Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
macros
/
assert-eq-macro-panic.rs
blob: 22c3a8a634f4b6c7504370264a2bd116b6b66cfb [
file
] [
log
] [
blame
] [
edit
]
//@ 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
);
}