summaryrefslogtreecommitdiffstats
path: root/src/test/ui/type/type-recursive-box-shadowed.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/type/type-recursive-box-shadowed.rs')
-rw-r--r--src/test/ui/type/type-recursive-box-shadowed.rs12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/test/ui/type/type-recursive-box-shadowed.rs b/src/test/ui/type/type-recursive-box-shadowed.rs
new file mode 100644
index 000000000..e141c2149
--- /dev/null
+++ b/src/test/ui/type/type-recursive-box-shadowed.rs
@@ -0,0 +1,12 @@
+//FIXME(compiler-errors): This fixup should suggest the full box path, not just `Box`
+
+struct Box<T> {
+ t: T,
+}
+
+struct Foo {
+ //~^ ERROR recursive type `Foo` has infinite size
+ inner: Foo,
+}
+
+fn main() {}