]> git.lizzy.rs Git - rust.git/blob - tests/ui/macros/assert-as-macro.rs
Rollup merge of #106970 - kylematsuda:earlybinder-item-bounds, r=lcnr
[rust.git] / tests / ui / macros / assert-as-macro.rs
1 // run-fail
2 // error-pattern:assertion failed: 1 == 2
3 // ignore-emscripten no processes
4
5 fn main() {
6     assert!(1 == 2);
7 }