mirror of
https://github.com/rust-windowing/winit.git
synced 2026-06-26 22:53:15 -04:00
10 lines
213 B
Rust
10 lines
213 B
Rust
extern crate winit;
|
|
|
|
#[cfg(feature = "window")]
|
|
#[test]
|
|
fn window_proxy_send() {
|
|
// ensures that `winit::WindowProxy` implements `Send`
|
|
fn needs_send<T:Send>() {}
|
|
needs_send::<winit::WindowProxy>();
|
|
}
|