rust/src/test/ui/error-codes/E0010.rs
Dylan MacKenzie 51fbd555f0 Bless tests
2020-09-29 19:20:33 -07:00

6 lines
105 B
Rust

#![feature(box_syntax)]
#![allow(warnings)]
const CON : Box<i32> = box 0; //~ ERROR E0010
fn main() {}