Would be cool to be able to do: ```rust #[derive(Synonym)] pub struct MyInt(i32); let x = MyInt(10); let y = x + 1; // y: MyInt ```
Would be cool to be able to do: