2014-10-12 15:14:36 -07:00
|
|
|
// Test that moves of unsized values within closures are caught
|
|
|
|
|
// and rejected.
|
|
|
|
|
|
|
|
|
|
fn main() {
|
2015-03-30 11:00:05 -07:00
|
|
|
(|| Box::new(*(&[0][..])))();
|
2018-07-10 23:10:13 +02:00
|
|
|
//~^ ERROR the size for values of type
|
2014-10-12 15:14:36 -07:00
|
|
|
}
|