slate-framework 1.0.1

GPU-accelerated Rust UI framework — umbrella crate
1
2
3
4
5
6
7
8
//! Compile-fail test: TextSystem must NOT be Send.
//! This file should fail to compile with an error about Send trait.

fn assert_send<T: Send>() {}

fn main() {
    assert_send::<slate_framework::TextSystem>();
}