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