mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-23 14:37:09 +00:00
9 lines
159 B
Rust
9 lines
159 B
Rust
#[test]
|
|
#[should_panic]
|
|
#[cfg(debug_assertions)]
|
|
fn explodes_in_debug() {
|
|
use debug_unreachable::debug_unreachable;
|
|
unsafe { debug_unreachable!() }
|
|
}
|
|
|