]> git.lizzy.rs Git - rust.git/blob - src/test/ui/type/type-recursive.rs
Rollup merge of #61389 - Zoxc:arena-cleanup, r=eddyb
[rust.git] / src / test / ui / type / type-recursive.rs
1 struct T1 { //~ ERROR E0072
2     foo: isize,
3     foolish: T1
4 }
5
6 fn main() { }