summaryrefslogtreecommitdiffstats
path: root/src/test/ui/macros/assert-ne-macro-panic.rs
blob: 4f507d7b54d9947e0f1b0977b526ab6dd7f1dcc5 (plain)
1
2
3
4
5
6
7
8
9
// run-fail
// error-pattern:assertion failed: `(left != right)`
// error-pattern: left: `14`
// error-pattern:right: `14`
// ignore-emscripten no processes

fn main() {
    assert_ne!(14, 14);
}