]> git.lizzy.rs Git - rust.git/blob - tests/ui/macros/assert-eq-macro-panic.rs
Rollup merge of #106783 - WaffleLapkin:break-my-ident, r=wesleywiser
[rust.git] / tests / ui / macros / assert-eq-macro-panic.rs
1 // run-fail
2 // error-pattern:assertion failed: `(left == right)`
3 // error-pattern: left: `14`
4 // error-pattern:right: `15`
5 // ignore-emscripten no processes
6
7 fn main() {
8     assert_eq!(14, 15);
9 }