blob: 5f2c2362d24cd81c9230d47ae274eff901133b9d [file] [log] [blame]
#![feature(box_syntax)]
fn main() {
let f;
f = box f;
//~^ ERROR mismatched types
//~| cyclic type of infinite size
}