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

9 lines
135 B
Rust

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