mirror of
https://github.com/bspeice/qadapt
synced 2024-11-14 18:18:08 -05:00
8 lines
115 B
Rust
8 lines
115 B
Rust
use qadapt::enter_protected;
|
|
|
|
#[test]
|
|
#[should_panic]
|
|
fn guard_without_initialization() {
|
|
enter_protected();
|
|
}
|