summaryrefslogtreecommitdiffstats
path: root/tests/ui/generic-associated-types/impl_bounds.rs
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--tests/ui/generic-associated-types/impl_bounds.rs (renamed from src/test/ui/generic-associated-types/impl_bounds.rs)1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/test/ui/generic-associated-types/impl_bounds.rs b/tests/ui/generic-associated-types/impl_bounds.rs
index 01165fceb..e45bdcf92 100644
--- a/src/test/ui/generic-associated-types/impl_bounds.rs
+++ b/tests/ui/generic-associated-types/impl_bounds.rs
@@ -15,7 +15,6 @@ impl<T> Foo for Fooy<T> {
//~^ ERROR impl has stricter requirements than trait
type B<'a, 'b> = (&'a(), &'b ()) where 'b: 'a;
//~^ ERROR impl has stricter requirements than trait
- //~| ERROR lifetime bound not satisfied
type C = String where Self: Copy;
//~^ ERROR the trait bound `T: Copy` is not satisfied
fn d() where Self: Copy {}