mirror of
https://github.com/bspeice/qadapt
synced 2024-11-14 10:08:08 -05:00
11 lines
173 B
Rust
11 lines
173 B
Rust
use qadapt::QADAPT;
|
|
|
|
#[global_allocator]
|
|
static Q: QADAPT = QADAPT;
|
|
|
|
#[cfg(not(debug_assertions))]
|
|
#[test]
|
|
fn release_only_inactive() {
|
|
assert!(!qadapt::is_active());
|
|
}
|