]> git.lizzy.rs Git - rust.git/blob - src/test/run-fail/unreachable-fmt-msg.rs
Rollup merge of #68328 - jethrogb:jb/target-llvm-args, r=alexcrichton
[rust.git] / src / test / run-fail / unreachable-fmt-msg.rs
1 // error-pattern:internal error: entered unreachable code: 6 is not prime
2 fn main() {
3     unreachable!("{} is not {}", 6u32, "prime");
4 }