diff --git a/tests/window_proxy_send.rs b/tests/window_proxy_send.rs new file mode 100644 index 00000000..559e7fef --- /dev/null +++ b/tests/window_proxy_send.rs @@ -0,0 +1,9 @@ +extern crate glutin; + +#[cfg(feature = "window")] +#[test] +fn window_proxy_send() { + // ensures that `glutin::WindowProxy` implements `Send` + fn needs_send() {} + needs_send::(); +}