rust/src/test/ui/occurs-check-2.rs
2018-12-25 21:08:33 -07:00

11 lines
158 B
Rust

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