summary refs log tree commit diff
path: root/src/test/run-fail/assert-as-macro.rs
blob: 07813b91e571d7407e0cebc92b6be388ae380b25 (plain)
1
2
3
4
5
6
// error-pattern:assertion failed: 1 == 2

fn main() {
    assert!(1 == 2);
}