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