9 lines
164 B
Rust
9 lines
164 B
Rust
#![feature(box_syntax)]
|
|
|
|
fn main() {
|
|
let x: Box<isize> = box 0;
|
|
|
|
println!("{}", x + 1);
|
|
//~^ ERROR cannot add `{integer}` to `std::boxed::Box<isize>`
|
|
}
|