blob: e74a20de726628dd851c29a194974bc7ba6752b9 [file] [log] [blame]
//@ run-pass
// Check that codegen doesn't ICE when codegenning an array repeat
// expression with a count of 1 and a non-Copy element type.
fn main() {
let _ = [Box::new(1_usize); 1];
}