summaryrefslogtreecommitdiffstats
path: root/src/test/ui/regions/regions-assoc-type-region-bound-in-trait-not-met.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/regions/regions-assoc-type-region-bound-in-trait-not-met.rs')
-rw-r--r--src/test/ui/regions/regions-assoc-type-region-bound-in-trait-not-met.rs24
1 files changed, 0 insertions, 24 deletions
diff --git a/src/test/ui/regions/regions-assoc-type-region-bound-in-trait-not-met.rs b/src/test/ui/regions/regions-assoc-type-region-bound-in-trait-not-met.rs
deleted file mode 100644
index 575dfafe1..000000000
--- a/src/test/ui/regions/regions-assoc-type-region-bound-in-trait-not-met.rs
+++ /dev/null
@@ -1,24 +0,0 @@
-// Test that the compiler checks that arbitrary region bounds declared
-// in the trait must be satisfied on the impl. Issue #20890.
-
-trait Foo<'a> {
- type Value: 'a;
- fn dummy(&'a self) {}
-}
-
-impl<'a> Foo<'a> for &'a i16 {
- // OK.
- type Value = &'a i32;
-}
-
-impl<'a> Foo<'static> for &'a i32 {
- type Value = &'a i32;
- //~^ ERROR the type `&'a i32` does not fulfill the required lifetime
-}
-
-impl<'a, 'b> Foo<'b> for &'a i64 {
- type Value = &'a i32;
- //~^ ERROR the type `&'a i32` does not fulfill the required lifetime
-}
-
-fn main() {}