1
0
mirror of https://github.com/bspeice/qadapt synced 2024-11-14 18:18:08 -05:00
qadapt/tests/unused_panic.rs

7 lines
114 B
Rust
Raw Normal View History

2018-12-06 23:02:44 -05:00
use qadapt::enter_protected;
#[test]
#[should_panic]
fn guard_without_initialization() {
enter_protected();
}