blob: fbb32cac1284d36004bb74fe0321ad3b16fec95b [file] [log] [blame] [edit]
// Check that dynamically sized rvalues are forbidden
pub fn main() {
let _x: Box<str> = Box::new(*"hello world");
//~^ ERROR E0277
let array: &[isize] = &[1, 2, 3];
let _x: Box<[isize]> = Box::new(*array);
//~^ ERROR E0277
}