summaryrefslogtreecommitdiffstats
path: root/src/test/ui/traits/object/bounds-cycle-4.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/traits/object/bounds-cycle-4.rs')
-rw-r--r--src/test/ui/traits/object/bounds-cycle-4.rs25
1 files changed, 0 insertions, 25 deletions
diff --git a/src/test/ui/traits/object/bounds-cycle-4.rs b/src/test/ui/traits/object/bounds-cycle-4.rs
deleted file mode 100644
index f83cb75c7..000000000
--- a/src/test/ui/traits/object/bounds-cycle-4.rs
+++ /dev/null
@@ -1,25 +0,0 @@
-// Check that we don't have a cycle when we try to normalize `Self::U` in the
-// bound below. Make sure that having a lifetime on the trait object doesn't break things
-
-// check-pass
-
-trait Is {
- type T;
-}
-
-impl<U> Is for U {
- type T = U;
-}
-
-trait Obj<'a> {
- type U: Is<T = Self::V>;
- type V;
-}
-
-fn is_obj<'a, T: ?Sized + Obj<'a>>(_: &T) {}
-
-fn f<'a>(x: &dyn Obj<'a, U = i32, V = i32>) {
- is_obj(x)
-}
-
-fn main() {}