]> git.lizzy.rs Git - rust.git/blob - tests/ui/macros/assert-ne-macro-panic.rs
Rollup merge of #106973 - oli-obk:tait_ice_closure_in_impl_header, r=lcnr
[rust.git] / tests / 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 }