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