mirror of
https://github.com/italicsjenga/winit-sonoma-fix.git
synced 2024-12-26 07:11:31 +11:00
9 lines
199 B
Rust
9 lines
199 B
Rust
|
extern crate winit;
|
||
|
|
||
|
#[test]
|
||
|
fn events_loop_proxy_send() {
|
||
|
// ensures that `winit::EventsLoopProxy` implements `Send`
|
||
|
fn needs_send<T:Send>() {}
|
||
|
needs_send::<winit::EventsLoopProxy>();
|
||
|
}
|