mirror of
https://github.com/italicsjenga/winit-sonoma-fix.git
synced 2025-01-15 14:50:40 +11:00
9 lines
213 B
Rust
9 lines
213 B
Rust
extern crate winit;
|
|
|
|
#[cfg(feature = "window")]
|
|
#[test]
|
|
fn window_proxy_send() {
|
|
// ensures that `winit::WindowProxy` implements `Send`
|
|
fn needs_send<T:Send>() {}
|
|
needs_send::<winit::WindowProxy>();
|
|
}
|