mirror of
https://github.com/rust-lang/rust.git
synced 2025-05-02 13:07:37 +00:00
8 lines
173 B
Rust
8 lines
173 B
Rust
//@ run-fail
|
|
//@ error-pattern:internal error: entered unreachable code: 6 is not prime
|
|
//@ needs-subprocess
|
|
|
|
fn main() {
|
|
unreachable!("{} is not {}", 6u32, "prime");
|
|
}
|