blob: d6a96acb73cafb2040eb14babe703f8550fbc453 [file] [log] [blame] [edit]
pub trait Combine {
fn combine(&self, other: &Self) -> Self;
}
pub struct Thing;
impl Combine for Thing {
fn combine(&self, other: &Self) -> Self {
Self
}
}