()
| 7 | use wasmtime::*; |
| 8 | |
| 9 | fn async_store() -> Store<()> { |
| 10 | Store::new(&Engine::default(), ()) |
| 11 | } |
| 12 | |
| 13 | async fn run_smoke_test(store: &mut Store<()>, func: Func) { |
| 14 | func.call_async(&mut *store, &[], &mut []).await.unwrap(); |
no test coverage detected