]> git.lizzy.rs Git - rust.git/blob - src/test/ui/macros/assert-macro-fmt.rs
Rollup merge of #71756 - carstenandrich:master, r=dtolnay
[rust.git] / src / test / ui / macros / assert-macro-fmt.rs
1 // run-fail
2 // error-pattern:panicked at 'test-assert-fmt 42 rust'
3 // ignore-emscripten no processes
4
5 fn main() {
6     assert!(false, "test-assert-fmt {} {}", 42, "rust");
7 }