winit-sonoma-fix/tests/window_proxy_send.rs
2015-02-16 10:29:53 +01:00

10 lines
216 B
Rust

extern crate glutin;
#[cfg(feature = "window")]
#[test]
fn window_proxy_send() {
// ensures that `glutin::WindowProxy` implements `Send`
fn needs_send<T:Send>() {}
needs_send::<glutin::WindowProxy>();
}