mirror of
https://github.com/italicsjenga/winit-sonoma-fix.git
synced 2024-12-26 07:11:31 +11:00
10 lines
216 B
Rust
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>();
|
||
|
}
|