1 2 3 4 5 6 7 8
#![feature(box_syntax)] fn main() { let x: Box<isize> = box 0; println!("{}", x + 1); //~^ ERROR binary operation `+` cannot be applied to type `std::boxed::Box<isize>` }