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