]> git.proxmox.com Git - rustc.git/blame - src/test/ui/type/type-recursive-box-shadowed.rs
Update unsuspicious file list
[rustc.git] / src / test / ui / type / type-recursive-box-shadowed.rs
CommitLineData
ee023bcb
FG
1//FIXME(compiler-errors): This fixup should suggest the full box path, not just `Box`
2
3struct Box<T> {
4 t: T,
5}
6
7struct Foo {
8 //~^ ERROR recursive type `Foo` has infinite size
9 inner: Foo,
10}
11
12fn main() {}