Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
// Test that moves of unsized values within closures are caught
// and rejected.
fn main() {
(|| Box::new(*(&[0][..])))();
//~^ ERROR the size for values of type
}