]> git.lizzy.rs Git - rust.git/blob - tests/ui/macros/assert-macro-explicit.rs
Rollup merge of #107180 - nvzqz:rm-fmt-ref, r=joshtriplett
[rust.git] / tests / ui / macros / assert-macro-explicit.rs
1 // run-fail
2 // error-pattern:panicked at 'assertion failed: false'
3 // ignore-emscripten no processes
4
5 fn main() {
6     assert!(false);
7 }