summary refs log tree commit diff
path: root/tests/ui/macros/assert-eq-macro-panic.rs
blob: 22c3a8a634f4b6c7504370264a2bd116b6b66cfb (plain)
1
2
3
4
5
6
7
8
9
//@ 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);
}