mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-14 19:56:49 +00:00
12 lines
198 B
Rust
12 lines
198 B
Rust
#[macro_use]
|
|
extern crate debug_unreachable;
|
|
|
|
fn main() {
|
|
if 0 > 100 {
|
|
// Can't happen!
|
|
unsafe { debug_unreachable!() }
|
|
} else {
|
|
println!("Good, 0 <= 100.");
|
|
}
|
|
}
|