Merge pull request #278 from tomaka/window-proxy-send

Add test for WindowProxy to implement Send
This commit is contained in:
tomaka 2015-02-16 11:50:53 +01:00
commit 495898ad98

View file

@ -0,0 +1,9 @@
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>();
}