diff --git a/src/test/ui/associated-type-bounds/super-trait-referencing.rs b/src/test/ui/associated-type-bounds/super-trait-referencing.rs index fde6b91e6c4e..2e97535157fd 100644 --- a/src/test/ui/associated-type-bounds/super-trait-referencing.rs +++ b/src/test/ui/associated-type-bounds/super-trait-referencing.rs @@ -1,4 +1,8 @@ // check-pass + +// The goal of this test is to ensure that T: Bar +// in the where clause does not cycle + trait Foo { type Item; }