qadapt/tests/unused_panic.rs

8 lines
115 B
Rust

use qadapt::enter_protected;
#[test]
#[should_panic]
fn guard_without_initialization() {
enter_protected();
}