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

9 lines
135 B
Rust

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