1 2 3 4 5 6 7 8 9
#[lang = "sized"] pub trait Sized {} #[lang = "add"] pub trait Add<Rhs = Self> { type Output; fn add(self, rhs: Rhs) -> Self::Output; }