summaryrefslogtreecommitdiffstats
path: root/src/test/ui/macros/assert-matches-macro-msg.rs
blob: fd8cd5a1a0566817323e85fd35be1de7f4dcd85d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// run-fail
// error-pattern:panicked at 'assertion failed: `(left matches right)`
// error-pattern: left: `2`
// error-pattern:right: `3`: 1 + 1 definitely should be 3'
// ignore-emscripten no processes

#![feature(assert_matches)]

use std::assert_matches::assert_matches;

fn main() {
    assert_matches!(1 + 1, 3, "1 + 1 definitely should be 3");
}