Files
2026-08-01 16:11:49 +03:00

12 lines
133 B
Rust

use ref_cast::RefCast;
#[derive(RefCast)]
#[repr(C)]
struct Test {
one: String,
#[trivial]
two: String,
}
fn main() {}