2018-08-30 07:18:55 -05:00
|
|
|
// run-pass
|
2018-05-08 08:10:16 -05:00
|
|
|
// Check that codegen doesn't ICE when codegenning an array repeat
|
2014-10-29 23:48:15 -05:00
|
|
|
// expression with a count of 1 and a non-Copy element type.
|
|
|
|
|
2015-03-22 15:13:15 -05:00
|
|
|
// pretty-expanded FIXME #23616
|
|
|
|
|
2014-10-29 23:48:15 -05:00
|
|
|
fn main() {
|
2015-02-15 02:52:21 -06:00
|
|
|
let _ = [Box::new(1_usize); 1];
|
2014-10-29 23:48:15 -05:00
|
|
|
}
|