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, 0 insertions, 12 deletions
diff --git a/src/test/ui/type/type-recursive-box-shadowed.rs b/src/test/ui/type/type-recursive-box-shadowed.rs
deleted file mode 100644
index e141c2149..000000000
--- a/src/test/ui/type/type-recursive-box-shadowed.rs
+++ /dev/null
@@ -1,12 +0,0 @@
-//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() {}