Files
winit/tests/sync_object.rs
2018-11-08 22:43:04 -05:00

10 lines
175 B
Rust

extern crate winit;
fn needs_sync<T:Sync>() {}
#[test]
fn window_sync() {
// ensures that `winit::Window` implements `Sync`
needs_sync::<winit::window::Window>();
}