]> git.lizzy.rs Git - rust.git/blob - tests/ui/issues/issue-35988.rs
Rollup merge of #106148 - chenyukang:yukang/fix-105061-unused, r=lcnr
[rust.git] / tests / ui / issues / issue-35988.rs
1 enum E {
2     V([Box<E>]),
3     //~^ ERROR the size for values of type
4 }
5
6 fn main() {}