use super::*;
use crate::util::test::{assert_future, NopRawMutex};
#[cfg(all(not(loom), feature = "alloc"))]
mod alloc_tests;
#[cfg(any(loom, feature = "alloc"))]
mod loom;
#[test]
fn wait_future_is_future() {
assert_future::<Wait<'_>>();
assert_future::<Wait<'_, NopRawMutex>>();
}