summaryrefslogtreecommitdiffstats
path: root/src/test/ui/issues/issue-35988.rs
blob: 5cf2f8e5212d13cf84961febf15e794475307919 (plain)
1
2
3
4
5
6
enum E {
    V([Box<E>]),
    //~^ ERROR the size for values of type
}

fn main() {}