summaryrefslogtreecommitdiffstats
path: root/tests/ui/macros/assert-eq-macro-panic.rs
blob: 6745290cbfcf90b031e03989d6a0aae01f826926 (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);
}