summary refs log tree commit diff
path: root/src/test/run-fail/assert-eq-macro-panic.rs
blob: 863fec12d7475fbd1affc1de0758c96236e8f053 (plain)
1
2
3
4
5
6
7
// error-pattern:assertion failed: `(left == right)`
// error-pattern: left: `14`
// error-pattern:right: `15`

fn main() {
    assert_eq!(14, 15);
}