#[lang = "sized"] pub trait Sized {} #[lang = "add"] pub trait Add { type Output; fn add(self, rhs: Rhs) -> Self::Output; }