]> git.lizzy.rs Git - rust.git/blob - src/test/ui/macros/assert-macro-explicit.rs
Add 'compiler/rustc_codegen_gcc/' from commit 'afae271d5d3719eeb92c18bc004bb6d1965a5f3f'
[rust.git] / src / test / 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 }