mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-14 21:40:58 +00:00
10 lines
134 B
Rust
10 lines
134 B
Rust
#[macro_use]
|
|
extern crate debug_unreachable;
|
|
|
|
#[test]
|
|
#[should_panic]
|
|
fn explodes_in_debug() {
|
|
unsafe { debug_unreachable!() }
|
|
}
|
|
|