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