If the `Add` trait is missing its generic argument, rustc panics ``` rust #![feature(no_core, lang_items)] #![no_core] #[lang="sized"] trait Sized {} #[lang="add"] trait Add {} impl Add for i32 {} fn main() { let x = 5 + 6; } ```