2015-01-07 18:53:58 -08:00
|
|
|
#![feature(box_syntax)]
|
2013-12-11 23:17:54 -08:00
|
|
|
|
2012-03-22 20:06:01 -07:00
|
|
|
fn main() {
|
2014-09-09 17:45:51 -04:00
|
|
|
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
|
|
|
}
|