mirror of
https://github.com/girlbossceo/jemallocator.git
synced 2024-12-04 02:06:18 +00:00
9 lines
136 B
Rust
9 lines
136 B
Rust
|
extern crate jemalloc_sys;
|
||
|
|
||
|
#[test]
|
||
|
fn malloc_conf_empty() {
|
||
|
unsafe {
|
||
|
assert!(jemalloc_sys::malloc_conf.is_none());
|
||
|
}
|
||
|
}
|