summary refs log tree commit diff
path: root/src/test/ui/occurs-check.rs
blob: 5f2c2362d24cd81c9230d47ae274eff901133b9d (plain)
1
2
3
4
5
6
7
8
#![feature(box_syntax)]

fn main() {
    let f;
    f = box f;
    //~^ ERROR mismatched types
    //~| cyclic type of infinite size
}