pub const fn assert_pyclass_send_sync<T>()
where
T: Send + Sync,
{
}
mod tests {
#[cfg(feature = "macros")]
#[test]
fn test_assert_pyclass_send_sync() {
#[crate::pyclass(crate = "crate")]
struct MyClass {}
super::assert_pyclass_send_sync::<MyClass>();
}
}