blob: 559e7fefea03d008f1e6e3204d5edb4f881bcf6d (
plain)
1
2
3
4
5
6
7
8
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>();
}
|