1 2 3 4 5 6 7 8 9
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>(); }