rust/src/test/ui/occurs-check-2.rs

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
}