Files
wasmtime/wasmtime-environ/tests/cache_fail_usage_without_init.rs
2019-08-19 16:56:29 -07:00

8 lines
140 B
Rust

use wasmtime_environ::cache_conf;
#[test]
#[should_panic]
fn test_fail_usage_without_init() {
let _ = cache_conf::cache_directory();
}