]> git.lizzy.rs Git - rust.git/blob - src/test/ui/macros/assert-ne-macro-panic.rs
Sync rust-lang/portable-simd@03f6fbb21e6050da2a05b3ce8f480c020b384916
[rust.git] / src / test / ui / macros / assert-ne-macro-panic.rs
1 // run-fail
2 // error-pattern:assertion failed: `(left != right)`
3 // error-pattern: left: `14`
4 // error-pattern:right: `14`
5 // ignore-emscripten no processes
6
7 fn main() {
8     assert_ne!(14, 14);
9 }