2016-03-26 18:07:52 +01:00
|
|
|
extern crate winit;
|
2015-02-16 10:29:53 +01:00
|
|
|
|
|
|
|
|
#[cfg(feature = "window")]
|
|
|
|
|
#[test]
|
|
|
|
|
fn window_proxy_send() {
|
2016-03-26 18:07:52 +01:00
|
|
|
// ensures that `winit::WindowProxy` implements `Send`
|
2015-02-16 10:29:53 +01:00
|
|
|
fn needs_send<T:Send>() {}
|
2016-03-26 18:07:52 +01:00
|
|
|
needs_send::<winit::WindowProxy>();
|
2015-02-16 10:29:53 +01:00
|
|
|
}
|