1 2 3 4 5 6 7 8 9 10
// Tests that the derive macro fails when a compulsory container attribute is missing use wsdf::*; #[derive(Protocol)] struct MyProtocol { foo: u32, } fn main() {}