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

9 lines
135 B
Rust
Raw Normal View History

2015-01-07 18:53:58 -08:00
#![feature(box_syntax)]
2012-03-22 20:06:01 -07:00
fn main() {
let f;
2015-01-12 01:01:44 -05:00
f = box f;
//~^ ERROR mismatched types
//~| cyclic type of infinite size
2012-03-22 20:06:01 -07:00
}